diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 98a61c440..5d99f51aa 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -2,8 +2,13 @@ The following people have contributed to HDDM: * Thomas Wiecki * Imri Sofer +* Alexander Fengler +* Lakshmi Govindarajan +* Krishn Bera * Michael J. Frank * Guido Biele * Øystein Sandvik * Mads Pedersen -* Alex Fengler + + + diff --git a/LICENSE b/LICENSE index f46faaadf..b9b577cc8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2021, Thomas V. Wiecki, Imri Sofer, Mads Lund Pederson, Alexander Fengler, Michael J. Frank, Brown University +Copyright (c) 2021, Thomas V. Wiecki, Imri Sofer, Mads Lund Pederson, Alexander Fengler, Lakshmi Govindarajan, Krishn Bera, Michael J. Frank, Brown University All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.rst b/README.rst index 65a598dec..519731af4 100644 --- a/README.rst +++ b/README.rst @@ -2,8 +2,8 @@ Introduction ************ -:Author: Thomas V. Wiecki, Imri Sofer, Mads L. Pedersen, Alexander Fengler, Michael J. Frank -:Contact: thomas.wiecki@gmail.com, imri_sofer@brown.edu, madslupe@gmail.com, alexander_fengler@brown.edu, michael_frank@brown.edu +:Author: Thomas V. Wiecki, Imri Sofer, Mads L. Pedersen, Alexander Fengler, Lakshmi Govindarajan, Krishn Bera, Michael J. Frank +:Contact: thomas.wiecki@gmail.com, imri_sofer@brown.edu, madslupe@gmail.com, alexander_fengler@brown.edu, krishn_bera@brown.edu, michael_frank@brown.edu :Web site: https://hddm.readthedocs.io :Github: http://github.com/hddm-devs/hddm :Mailing list: https://groups.google.com/group/hddm-users/ @@ -105,6 +105,17 @@ Features Note also that the usage of **indirect betas** as well as **indirect regressors** may affect the speed of sampling in general. Both translate into more computational work at the stage of regression likelihood evaluation. +* HDDM 0.9.6 brings a host of new features. + HDDM now includes use of `likelihood approximation networks`_ in conjunction with reinforcement learning models via the **HDDMnnRL** class. + This allows researchers to study not only the across-trial dynamics of learning but the within-trial dynamics of choice processes, using a single model. + This module greatly extends the previous functionality for fitting RL+DDM models (via HDDMrl class) by allowing fitting of a number of variants of sequential sampling models in conjuction with a learning process (RL+SSM models). + + We have included a new **simulator**, which allows data generation for a host of variants of sequential sampling models + in conjunction with the Rescorla-Wagner update rule on a 2-armed bandit task environment. + There are some new, out-of-the-box **plots** and **utility function** in the **hddm.plotting** and **hddm.utils** modules, respectively, to facilitate posterior visualization and posterior predictive checks. + Lastly you can also save and load **HDDMnnRL** models. + Please see the **documentation** (under **HDDMnnRL Extension**) for illustrations on how to use the new features. + Comparison to other packages ============================ @@ -211,6 +222,11 @@ If HDDM was used in your research, please cite the publication_: Wiecki TV, Sofer I and Frank MJ (2013). HDDM: Hierarchical Bayesian estimation of the Drift-Diffusion Model in Python. Front. Neuroinform. 7:14. doi: 10.3389/fninf.2013.00014 +If you use the HDDMnn, HDDMnnRegressor, HDDMnnStimCoding or HDDMnnRL class, please cite the publication2_: + +Alexander Fengler, Lakshmi N Govindarajan, Tony Chen, Michael J Frank (2021). Likelihood approximation networks (LANs) for fast inference of simulation models in cognitive neuroscience. +eLife 10:e65074. doi: 10.7554/eLife.65074 + Published papers using HDDM =========================== @@ -245,5 +261,6 @@ Join our low-traffic `mailing list`_. .. _SciPy Superpack: http://fonnesbeck.github.com/ScipySuperpack/ .. _Anaconda: http://docs.continuum.io/anaconda/install.html .. _publication: http://www.frontiersin.org/Journal/10.3389/fninf.2013.00014/abstract +.. _publication2: https://elifesciences.org/articles/65074 .. _published papers: https://scholar.google.com/scholar?oi=bibs&hl=en&cites=17737314623978403194 .. _thread: https://groups.google.com/forum/#!topic/hddm-users/bdQXewfUzLs diff --git a/docs/source/conf.py b/docs/source/conf.py index ba7726e8c..ee773eca1 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -70,16 +70,16 @@ # General information about the project. project = u'HDDM' -copyright = u'2021, Thomas V. Wiecki, Mads Lund Pedersen, Alexander Fengler, Michael J. Frank, Brown University' +copyright = u'2022, Thomas V. Wiecki, Mads Lund Pedersen, Alexander Fengler, Krishn Bera, Michael J. Frank, Brown University' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.9.5' +version = '0.9.6' # The full version, including alpha/beta/rc tags. -release = '0.9.5' +release = '0.9.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/demo_HDDMnnRL.rst b/docs/source/demo_HDDMnnRL.rst new file mode 100644 index 000000000..813bbf392 --- /dev/null +++ b/docs/source/demo_HDDMnnRL.rst @@ -0,0 +1,223 @@ +.. index:: Demos +.. _chap_rl: + +Tutorial for analyzing instrumental learning data with the HDDMnnRL module +========================================================================== + +.. code:: ipython3 + + import hddm + import pickle + import pandas as pd + +Load the data +^^^^^^^^^^^^^ + +.. code:: ipython3 + + with open('./angle_d1_c3_s20_t500.pickle', 'rb') as handle: + datafile = pickle.load(handle) + + # Here, datafile is saved as a list of datasets. We pick the first dataset. + dataset = datafile[0] + + +.. parsed-literal:: + + 1 + + +.. code:: ipython3 + + # Reformat the dataset as a dataframe + data = hddm.utils.get_dataset_as_dataframe_rlssm(dataset) + +Initialize the HDDMnnRL model and sample +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. code:: ipython3 + + # Specify number of samples and burnins + nsamples = 100 + nburn = 50 + +.. code:: ipython3 + + m = hddm.HDDMnnRL(data, model='angle', rl_rule='RWupdate', non_centered=True, include=['z', 'theta', 'rl_alpha'], p_outlier = 0.0) + m.sample(nsamples, burn=nburn, dbname='traces.db', db='pickle') + + +.. parsed-literal:: + + + Printing model specifications -- + ssm: angle + rl rule: RWupdate + using non-centered dist.: False + Using default priors: Uninformative + Supplied model_config specifies params_std_upper for z as None. + Changed to 10 + Supplied model_config specifies params_std_upper for rl_alpha as None. + Changed to 10 + [-----------------101%-----------------] 101 of 100 complete in 256.1 sec + + + +.. parsed-literal:: + + + + + +Save the model +^^^^^^^^^^^^^^ + +.. code:: ipython3 + + # Save the model + m.save('rlssm_model') + +.. code:: ipython3 + + # Load the model + # model = hddm.load('rlssm_model') + +Check the posterior results +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. code:: ipython3 + + m.plot_posteriors() + + +.. parsed-literal:: + + Plotting v + Plotting v_std + Plotting a + Plotting a_std + Plotting z + Plotting z_std + Plotting t + Plotting t_std + Plotting theta + Plotting theta_std + Plotting rl_alpha + Plotting rl_alpha_std + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_1.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_2.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_3.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_4.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_5.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_6.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_7.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_8.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_9.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_10.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_11.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_12.png + + +.. code:: ipython3 + + # Load the trace + with open('./traces.db', 'rb') as handle: + tracefile = pickle.load(handle) + +.. code:: ipython3 + + # Re-format traces as a dataframe + traces = hddm.utils.get_traces_rlssm(tracefile) + +.. code:: ipython3 + + model_ssm = 'angle' + model_rl = 'RWupdate' + + config_ssm = hddm.model_config.model_config[model_ssm] + config_rl = hddm.model_config_rl.model_config_rl[model_rl] + +.. code:: ipython3 + + hddm.plotting.plot_posterior_pairs_rlssm(tracefile, config_ssm['params'] + config_rl['params']) + +Posterior Predictive Checks +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. code:: ipython3 + + num_posterior_samples = 3 + p_lower = {0: 0.15, 1:0.30, 2:0.45} + p_upper = {0: 0.85, 1:0.70, 2:0.55} + ppc_sdata = hddm.plotting.gen_ppc_rlssm(model_ssm, config_ssm, model_rl, config_rl, data, traces, num_posterior_samples, p_lower, p_upper, save_data=True, save_name='ppc_data') + + +.. parsed-literal:: + + 100%|██████████| 3/3 [05:49<00:00, 116.55s/it] + + +.. parsed-literal:: + + ppc data saved at ./ppc_data.csv + + +.. code:: ipython3 + + # Load the saved ppc data + # ppc_sdata = pd.read_csv('./ppc_data.csv') + +.. code:: ipython3 + + _ = hddm.plotting.plot_ppc_choice_rlssm(data, ppc_sdata, 40, 10) + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_20_0.png + + +.. code:: ipython3 + + _ = hddm.plotting.plot_ppc_rt_rlssm(data, ppc_sdata, 40, 0.06) + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_21_0.png + + diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_1.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_1.png new file mode 100644 index 000000000..77a1dd3ef Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_1.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_10.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_10.png new file mode 100644 index 000000000..deeaecf65 Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_10.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_11.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_11.png new file mode 100644 index 000000000..77f5d8470 Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_11.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_12.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_12.png new file mode 100644 index 000000000..08858aecd Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_12.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_2.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_2.png new file mode 100644 index 000000000..dbb66375c Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_2.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_3.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_3.png new file mode 100644 index 000000000..652eeb96f Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_3.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_4.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_4.png new file mode 100644 index 000000000..1e9b69314 Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_4.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_5.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_5.png new file mode 100644 index 000000000..315d5d093 Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_5.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_6.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_6.png new file mode 100644 index 000000000..42cee4b94 Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_6.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_7.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_7.png new file mode 100644 index 000000000..af3c8ff4d Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_7.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_8.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_8.png new file mode 100644 index 000000000..55c322258 Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_8.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_9.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_9.png new file mode 100644 index 000000000..ce8eb5197 Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_12_9.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_20_0.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_20_0.png new file mode 100644 index 000000000..1a62f75cc Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_20_0.png differ diff --git a/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_21_0.png b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_21_0.png new file mode 100644 index 000000000..6e01ecb02 Binary files /dev/null and b/docs/source/demo_HDDMnnRL_files/demo_HDDMnnRL_21_0.png differ diff --git a/docs/source/demos.rst b/docs/source/demos.rst index 9a97a911a..ae9f7d7bf 100644 --- a/docs/source/demos.rst +++ b/docs/source/demos.rst @@ -9,4 +9,5 @@ Demos :maxdepth: 2 demo_gonogo - demo_RLHDDMtutorial \ No newline at end of file + demo_RLHDDMtutorial + demo_HDDMnnRL \ No newline at end of file diff --git a/hddm/__init__.py b/hddm/__init__.py index 23c660de4..62850cca8 100644 --- a/hddm/__init__.py +++ b/hddm/__init__.py @@ -2,7 +2,7 @@ __docformat__ = "restructuredtext" -__version__ = "0.9.5" +__version__ = "0.9.6" from . import simulators from . import likelihoods @@ -20,6 +20,7 @@ from . import network_inspectors from . import models from . import model_config +from . import model_config_rl import cdfdif_wrapper from .models import * diff --git a/hddm/examples/TEST_RLHDDM_NN.ipynb b/hddm/examples/TEST_RLHDDM_NN.ipynb deleted file mode 100755 index b90b46be1..000000000 --- a/hddm/examples/TEST_RLHDDM_NN.ipynb +++ /dev/null @@ -1,1658 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "ename": "ModuleNotFoundError", - "evalue": "No module named 'torch'", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mpandas\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0mpd\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mnumpy\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 4\u001b[0;31m \u001b[0;32mimport\u001b[0m \u001b[0mhddm\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 5\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0mscipy\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mstats\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 6\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mseaborn\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0msns\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/opt/miniconda3/envs/hddm-krishn-dev/lib/python3.7/site-packages/hddm/__init__.py\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 13\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0;34m.\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mutils\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 14\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0;34m.\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mplotting\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 15\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0;34m.\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mnetwork_inspectors\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 16\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0;34m.\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mmodels\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 17\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0;34m.\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mmodel_config\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/opt/miniconda3/envs/hddm-krishn-dev/lib/python3.7/site-packages/hddm/network_inspectors.py\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 17\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0mhddm\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mkeras_models\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mload_mlp\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 18\u001b[0m \u001b[0;31m# from hddm.cnn.wrapper import load_cnn\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 19\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0mhddm\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtorch\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmlp_inference_class\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mload_torch_mlp\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 20\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0mhddm\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msimulators\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbasic_simulator\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0;34m*\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/opt/miniconda3/envs/hddm-krishn-dev/lib/python3.7/site-packages/hddm/torch/mlp_inference_class.py\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mimport\u001b[0m \u001b[0mtorch\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0;34m.\u001b[0m\u001b[0mtorch_config\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mTorchConfig\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0;34m.\u001b[0m\u001b[0mmlp_model_class\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mTorchMLP\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mhddm\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'torch'" - ] - } - ], - "source": [ - "#import\n", - "import pandas as pd\n", - "import numpy as np\n", - "import hddm\n", - "from scipy import stats\n", - "import seaborn as sns\n", - "import matplotlib.pyplot as plt\n", - "import pymc\n", - "import kabuki\n", - "sns.set(style=\"white\")\n", - "%matplotlib inline\n", - "from tqdm import tqdm\n", - "import warnings\n", - "warnings.filterwarnings(\"ignore\", category=np.VisibleDeprecationWarning)" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
subj_idxresponsecondrttrialsplit_byfeedbackq_init
0420.0CD1.2551.010.00.5
1421.0EF0.7781.020.00.5
2421.0AB0.6471.001.00.5
3421.0AB0.7502.001.00.5
4420.0EF0.7722.021.00.5
\n", - "
" - ], - "text/plain": [ - " subj_idx response cond rt trial split_by feedback q_init\n", - "0 42 0.0 CD 1.255 1.0 1 0.0 0.5\n", - "1 42 1.0 EF 0.778 1.0 2 0.0 0.5\n", - "2 42 1.0 AB 0.647 1.0 0 1.0 0.5\n", - "3 42 1.0 AB 0.750 2.0 0 1.0 0.5\n", - "4 42 0.0 EF 0.772 2.0 2 1.0 0.5" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "#load data. you will find this dataset in your hddm-folder under hddm/examples/rlddm_data.csv\n", - "data = hddm.load_csv('rlddm_data.csv')\n", - "#check structure\n", - "data.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The columns in the datafile represent: __subj_idx__ (subject id), __response__ (1=best option), __cond__ (identifies condition, but not used in model), __rt__ (in seconds), 0=worst option), __trial__ (the trial-iteration for a subject within each condition), __split_by__ (identifying condition, used for running the model), __feedback__ (whether the response given was rewarded or not), __q_init__ (the initial q-value used for the model, explained above)." - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{}\n", - "()\n", - "No model attribute --> setting up standard HDDM\n", - "Includes supplied: ()\n", - "printing self.nn\n", - "False\n", - "Set model to ddm\n", - " [--- 10% ] 10 of 100 complete in 58.9 secHalting at iteration 9 of 100\n", - "Could not generate output statistics for t\n", - "Could not generate output statistics for a_subj.4\n", - "Could not generate output statistics for a_subj.6\n", - "Could not generate output statistics for a_subj.3\n", - "Could not generate output statistics for a_subj.17\n", - "Could not generate output statistics for t_subj.22\n", - "Could not generate output statistics for a_subj.12\n", - "Could not generate output statistics for a_subj.71\n", - "Could not generate output statistics for alpha_subj.5\n", - "Could not generate output statistics for t_subj.5\n", - "Could not generate output statistics for t_subj.23\n", - "Could not generate output statistics for t_subj.24\n", - "Could not generate output statistics for a_subj.8\n", - "Could not generate output statistics for a_subj.18\n", - "Could not generate output statistics for t_subj.26\n", - "Could not generate output statistics for t_subj.33\n", - "Could not generate output statistics for a_subj.19\n", - "Could not generate output statistics for a_subj.20\n", - "Could not generate output statistics for a\n", - "Could not generate output statistics for t_subj.34\n", - "Could not generate output statistics for a_subj.22\n", - "Could not generate output statistics for t_subj.35\n", - "Could not generate output statistics for a_subj.23\n", - "Could not generate output statistics for t_std\n", - "Could not generate output statistics for t_subj.36\n", - "Could not generate output statistics for a_subj.24\n", - "Could not generate output statistics for v_subj.4\n", - "Could not generate output statistics for v_subj.3\n", - "Could not generate output statistics for t_subj.39\n", - "Could not generate output statistics for a_subj.26\n", - "Could not generate output statistics for v_subj.17\n", - "Could not generate output statistics for v_subj.6\n", - "Could not generate output statistics for v_subj.12\n", - "Could not generate output statistics for t_subj.42\n", - "Could not generate output statistics for a_subj.33\n", - "Could not generate output statistics for v_subj.42\n", - "Could not generate output statistics for v_subj.35\n", - "Could not generate output statistics for t_subj.50\n", - "Could not generate output statistics for a_subj.34\n", - "Could not generate output statistics for t_subj.52\n", - "Could not generate output statistics for a_subj.35\n", - "Could not generate output statistics for v_subj.18\n", - "Could not generate output statistics for t_subj.56\n", - "Could not generate output statistics for a_subj.36\n", - "Could not generate output statistics for v_subj.19\n", - "Could not generate output statistics for alpha\n", - "Could not generate output statistics for a_std\n", - "Could not generate output statistics for a_subj.63\n", - "Could not generate output statistics for v_subj.20\n", - "Could not generate output statistics for t_subj.59\n", - "Could not generate output statistics for a_subj.39\n", - "Could not generate output statistics for v_subj.22\n", - "Could not generate output statistics for v_subj.36\n", - "Could not generate output statistics for t_subj.63\n", - "Could not generate output statistics for a_subj.42\n", - "Could not generate output statistics for v_subj.23\n", - "Could not generate output statistics for v_subj.39\n", - "Could not generate output statistics for t_subj.71\n", - "Could not generate output statistics for a_subj.50\n", - "Could not generate output statistics for a_subj.80\n", - "Could not generate output statistics for v\n", - "Could not generate output statistics for v_subj.24\n", - "Could not generate output statistics for t_subj.75\n", - "Could not generate output statistics for a_subj.52\n", - "Could not generate output statistics for alpha_std\n", - "Could not generate output statistics for a_subj.75\n", - "Could not generate output statistics for v_subj.26\n", - "Could not generate output statistics for v_std\n", - "Could not generate output statistics for t_subj.80\n", - "Could not generate output statistics for a_subj.56\n", - "Could not generate output statistics for v_subj.5\n", - "Could not generate output statistics for v_subj.34\n", - "Could not generate output statistics for alpha_subj.42\n", - "Could not generate output statistics for v_subj.33\n", - "Could not generate output statistics for a_subj.59\n", - "Could not generate output statistics for v_subj.50\n", - "Could not generate output statistics for alpha_subj.71\n", - "Could not generate output statistics for alpha_subj.3\n", - "Could not generate output statistics for v_subj.52\n", - "Could not generate output statistics for alpha_subj.75\n", - "Could not generate output statistics for v_subj.56\n", - "Could not generate output statistics for alpha_subj.17\n", - "Could not generate output statistics for alpha_subj.80\n", - "Could not generate output statistics for v_subj.59\n", - "Could not generate output statistics for alpha_subj.4\n", - "Could not generate output statistics for alpha_subj.6\n", - "Could not generate output statistics for alpha_subj.12\n", - "Could not generate output statistics for v_subj.63\n", - "Could not generate output statistics for alpha_subj.52\n", - "Could not generate output statistics for a_subj.5\n", - "Could not generate output statistics for alpha_subj.63\n", - "Could not generate output statistics for v_subj.71\n", - "Could not generate output statistics for v_subj.75\n", - "Could not generate output statistics for v_subj.80\n", - "Could not generate output statistics for alpha_subj.18\n", - "Could not generate output statistics for t_subj.4\n", - "Could not generate output statistics for alpha_subj.19\n", - "Could not generate output statistics for t_subj.20\n", - "Could not generate output statistics for alpha_subj.20\n", - "Could not generate output statistics for alpha_subj.22\n", - "Could not generate output statistics for alpha_subj.23\n", - "Could not generate output statistics for alpha_subj.24\n", - "Could not generate output statistics for t_subj.17\n", - "Could not generate output statistics for alpha_subj.26\n", - "Could not generate output statistics for alpha_subj.50\n", - "Could not generate output statistics for t_subj.12\n", - "Could not generate output statistics for v_subj.8\n", - "Could not generate output statistics for alpha_subj.8\n", - "Could not generate output statistics for alpha_subj.33\n", - "Could not generate output statistics for alpha_subj.34\n", - "Could not generate output statistics for t_subj.18\n", - "Could not generate output statistics for alpha_subj.35\n", - "Could not generate output statistics for alpha_subj.36\n", - "Could not generate output statistics for t_subj.19\n", - "Could not generate output statistics for alpha_subj.56\n", - "Could not generate output statistics for alpha_subj.39\n", - "Could not generate output statistics for t_subj.3\n", - "Could not generate output statistics for alpha_subj.59\n", - "Could not generate output statistics for t_subj.8\n", - "Could not generate output statistics for t_subj.6\n" - ] - }, - { - "ename": "TypeError", - "evalue": "'NoneType' object is not subscriptable", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0mm\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mhddm\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mHDDMrl\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;31m#set sample and burn-in\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 4\u001b[0;31m \u001b[0mm\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msample\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m100\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mburn\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m10\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mdbname\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m'traces.db'\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mdb\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m'pickle'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 5\u001b[0m \u001b[0;31m#print stats to get an overview of posterior distribution of estimated parameters\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 6\u001b[0m \u001b[0mm\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mprint_stats\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda3/envs/hddm/lib/python3.6/site-packages/kabuki/hierarchical.py\u001b[0m in \u001b[0;36msample\u001b[0;34m(self, *args, **kwargs)\u001b[0m\n\u001b[1;32m 653\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msampled\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 654\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 655\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgen_stats\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 656\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmc\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 657\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda3/envs/hddm/lib/python3.6/site-packages/kabuki/hierarchical.py\u001b[0m in \u001b[0;36mgen_stats\u001b[0;34m(self, fname, print_hidden, **kwargs)\u001b[0m\n\u001b[1;32m 730\u001b[0m \u001b[0mprint_hidden\u001b[0m \u001b[0;34m<\u001b[0m\u001b[0mbool\u001b[0m\u001b[0;34m>\u001b[0m \u001b[0;34m-\u001b[0m \u001b[0mprint\u001b[0m \u001b[0mstatistics\u001b[0m \u001b[0mof\u001b[0m \u001b[0mhidden\u001b[0m \u001b[0mnodes\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 731\u001b[0m \"\"\"\n\u001b[0;32m--> 732\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend_stats_to_nodes_db\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 733\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 734\u001b[0m \u001b[0msliced_db\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mnodes_db\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcopy\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/anaconda3/envs/hddm/lib/python3.6/site-packages/kabuki/hierarchical.py\u001b[0m in \u001b[0;36mappend_stats_to_nodes_db\u001b[0;34m(self, *args, **kwargs)\u001b[0m\n\u001b[1;32m 782\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mnodes_db\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mloc\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'hidden'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 783\u001b[0m \u001b[0;32mcontinue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 784\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mnodes_db\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mloc\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'mean'\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mi_stats\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'mean'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 785\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mnodes_db\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mloc\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'std'\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mi_stats\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'standard deviation'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 786\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mnodes_db\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mloc\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'2.5q'\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mi_stats\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'quantiles'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m2.5\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mTypeError\u001b[0m: 'NoneType' object is not subscriptable" - ] - } - ], - "source": [ - "#run the model by calling hddm.HDDMrl (instead of hddm.HDDM for normal HDDM)\n", - "m = hddm.HDDMrl(data)\n", - "#set sample and burn-in\n", - "m.sample(100,burn=10,dbname='traces.db',db='pickle')\n", - "#print stats to get an overview of posterior distribution of estimated parameters\n", - "m.print_stats()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Interpreting output from print_stats:__
\n", - "The model estimates group mean and standard deviation parameters and subject parameters for the following latent variables:
\n", - "a = decision threshold
\n", - "v = scaling parameter
\n", - "t = non-decision time
\n", - "alpha = learning rate, note that it's not bound between 0 and 1. to transform take inverse logit: np.exp(alpha)/(1+np.exp(alpha))
\n", - "The columns represent the mean, standard deviation and quantiles of the approximated posterior distribution of each parameter" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### HDDMrl vs. HDDM\n", - "__There are a few things to note that is different from the normal HDDM model.__
\n", - "First of all, the estimated learning rate does not necessarily fall between 0 and 1. This is because it is estimated as a normal distribution for purposes of sampling hierarchically and then transformed by an inverse logit function to 0\n", - "Second, the v-parameter in the output is the scaling factor that is multiplied by the difference in q-values, so it is not the actual drift rate (or rather, it is the equivalent drift rate when the difference in Q values is exactly 1)." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 6. Checking results" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# plot the posteriors of parameters \n", - "m.plot_posteriors()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig__. The mixing of the posterior distribution and autocorrelation looks ok." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Convergence of chains\n", - "The Gelman-Rubin statistic is a test of whether the chains in the model converges. The Gelman-Ruben statistic measures the degree of variation between and within chains. Values close to 1 indicate convergence and that there is small variation between chains, i.e. that they end up as the same distribution across chains. A common heuristic is to assume convergence if all values are below 1.1. To run this you need to run multiple models, combine them and perform the Gelman-Rubin statistic:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# estimate convergence\n", - "from kabuki.analyze import gelman_rubin\n", - "\n", - "models = []\n", - "for i in range(3):\n", - " m = hddm.HDDMrl(data=data)\n", - " m.sample(1500, burn=500,dbname='traces.db',db='pickle')\n", - " models.append(m)\n", - "\n", - "gelman_rubin(models)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "np.max(list(gelman_rubin(models).values()))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The model seems to have converged, i.e. the Gelman-Rubin statistic is below 1.1 for all parameters. It is important to always run this test, especially for more complex models ([as with separate learning rates for positive and negative prediction errors](#9.-Separate-learning-rates-for-positive-and-negative-prediction-errors)). So now we can combine these three models to get a better approximation of the posterior distribution." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Combine the models we ran to test for convergence.\n", - "m = kabuki.utils.concat_models(models)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Joint posterior distribution\n", - "Another test of the model is to look at collinearity. If the estimation of parameters is very codependent (correlation is strong) it can indicate that their variance trades off, in particular if there is a negative correlation. The following plot shows there is generally low correlation across all combinations of parameters. It does not seem to be the case for this dataset, but common for RLDDM is a negative correlation between learning rate and the scaling factor, similar to what's usually observed between learning rate and inverse temperature for RL models that uses softmax as the choice rule (e.g. [Daw, 2011](https://www.oxfordscholarship.com/view/10.1093/acprof:oso/9780199600434.001.0001/acprof-9780199600434-chapter-001))." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "alpha, t, a, v = m.nodes_db.node[['alpha', 't', 'a','v']]\n", - "samples = {'alpha':alpha.trace(),'t':t.trace(),'a':a.trace(),'v':v.trace()}\n", - "samp = pd.DataFrame(data=samples)\n", - "\n", - "def corrfunc(x, y, **kws):\n", - " r, _ = stats.pearsonr(x, y)\n", - " ax = plt.gca()\n", - " ax.annotate(\"r = {:.2f}\".format(r),\n", - " xy=(.1, .9), xycoords=ax.transAxes)\n", - "\n", - "g = sns.PairGrid(samp, palette=[\"red\"])\n", - "g.map_upper(plt.scatter, s=10)\n", - "g.map_diag(sns.distplot, kde=False)\n", - "g.map_lower(sns.kdeplot, cmap=\"Blues_d\")\n", - "g.map_lower(corrfunc)\n", - "g.savefig('matrix_plot.png')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 7. Posterior predictive checks" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "An important test of the model is its ability to recreate the observed data. This can be tested with posterior predictive checks, which involves simulating data using estimated parameters and comparing observed and simulated results." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### extract traces\n", - "The first step then is to extract the traces from the estimated model. The function get_traces() gives you the samples (row) from the approaximated posterior distribution for all of the estimated group and subject parameters (column)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "traces = m.get_traces()\n", - "traces.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### simulating data\n", - "__Now that we have the traces the next step is to simulate data using the estimated parameters. The RLDDM includes a function to simulate data. Here's an example of how to use the simulation-function for RLDDM. This example explains how to generate data with binary outcomes. See [here](#11.-Probabilistic-binary-outcomes-vs.-normally-distributed-outcomes) for an example on simulating data with normally distributed outcomes. Inputs to function:
\n", - "a__ = decision threshold
\n", - "**t** = non-decision time
\n", - "__alpha__ = learning rate
\n", - "__pos_alpha__ = defaults to 0. if given it defines the learning rate for positive prediction errors. alpha then becomes the learning rate_ for negative prediction errors.
\n", - "__scaler__ = the scaling factor that is multiplied with the difference in q-values to calculate trial-by-trial drift rate
\n", - "__p_upper__ = the probability of reward for the option represented by the upper boundary. The current version thus only works for outcomes that are either 1 or 0
\n", - "__p_lower__ = the probability of reward for the option represented by the lower boundary.
\n", - "__subjs__ = number of subjects to simulate data for.
\n", - "__split_by__ = define the condition which makes it easier to append data from different conditions.
\n", - "__size__ = number of trials per subject.
" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hddm.generate.gen_rand_rlddm_data(a=1,t=0.3,alpha=0.2,scaler=2,p_upper=0.8,p_lower=0.2,subjs=1,split_by=0,size=10)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__How to interpret columns in the resulting dataframe__
\n", - "__q_up__ = expected reward for option represented by upper boundary
\n", - "__q_low__ = expected reward for option represented by lower boundary
\n", - "__sim_drift__ = the drift rate for each trial calculated as: (q_up-q_low)*scaler
\n", - "__response__ = simulated choice
\n", - "__rt__ = simulated response time
\n", - "__feedback__ = observed feedback for chosen option
\n", - "__subj_idx__ = subject id (starts at 0)
\n", - "__split_by__ = condition as integer
\n", - "__trial__ = current trial (starts at 1)
" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Simulate data with estimated parameter values and compare to observed data\n", - "Now that we know how to extract traces and simulate data we can combine this to create a dataset similar to our observed data. This process is currently not automated but the following is an example code using the dataset we analyzed above." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from tqdm import tqdm #progress tracker\n", - "#create empty dataframe to store simulated data\n", - "sim_data = pd.DataFrame()\n", - "#create a column samp to be used to identify the simulated data sets\n", - "data['samp'] = 0\n", - "#load traces\n", - "traces = m.get_traces()\n", - "#decide how many times to repeat simulation process. repeating this multiple times is generally recommended, \n", - "#as it better captures the uncertainty in the posterior distribution, but will also take some time\n", - "for i in tqdm(range(1,51)):\n", - " #randomly select a row in the traces to use for extracting parameter values\n", - " sample = np.random.randint(0,traces.shape[0]-1)\n", - " #loop through all subjects in observed data\n", - " for s in data.subj_idx.unique():\n", - " #get number of trials for each condition.\n", - " size0 = len(data[(data['subj_idx']==s) & (data['split_by']==0)].trial.unique())\n", - " size1 = len(data[(data['subj_idx']==s) & (data['split_by']==1)].trial.unique())\n", - " size2 = len(data[(data['subj_idx']==s) & (data['split_by']==2)].trial.unique())\n", - " #set parameter values for simulation\n", - " a = traces.loc[sample,'a_subj.'+str(s)]\n", - " t = traces.loc[sample,'t_subj.'+str(s)]\n", - " scaler = traces.loc[sample,'v_subj.'+str(s)]\n", - " alphaInv = traces.loc[sample,'alpha_subj.'+str(s)]\n", - " #take inverse logit of estimated alpha\n", - " alpha = np.exp(alphaInv)/(1+np.exp(alphaInv))\n", - " #simulate data for each condition changing only values of size, p_upper, p_lower and split_by between conditions.\n", - " sim_data0 = hddm.generate.gen_rand_rlddm_data(a=a,t=t,scaler=scaler,alpha=alpha,size=size0,p_upper=0.8,p_lower=0.2,split_by=0)\n", - " sim_data1 = hddm.generate.gen_rand_rlddm_data(a=a,t=t,scaler=scaler,alpha=alpha,size=size1,p_upper=0.7,p_lower=0.3,split_by=1)\n", - " sim_data2 = hddm.generate.gen_rand_rlddm_data(a=a,t=t,scaler=scaler,alpha=alpha,size=size2,p_upper=0.6,p_lower=0.4,split_by=2)\n", - " #append the conditions\n", - " sim_data0 = sim_data0.append([sim_data1,sim_data2],ignore_index=True)\n", - " #assign subj_idx\n", - " sim_data0['subj_idx'] = s\n", - " #identify that these are simulated data\n", - " sim_data0['type'] = 'simulated'\n", - " #identify the simulated data\n", - " sim_data0['samp'] = i\n", - " #append data from each subject\n", - " sim_data = sim_data.append(sim_data0,ignore_index=True)\n", - "#combine observed and simulated data\n", - "ppc_data = data[['subj_idx','response','split_by','rt','trial','feedback','samp']].copy()\n", - "ppc_data['type'] = 'observed'\n", - "ppc_sdata = sim_data[['subj_idx','response','split_by','rt','trial','feedback','type','samp']].copy()\n", - "ppc_data = ppc_data.append(ppc_sdata)\n", - "ppc_data.to_csv('ppc_data_tutorial.csv')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Plotting\n", - "Now that we have a dataframe with both observed and simulated data we can plot to see whether the simulated data are able to capture observed choice and reaction times. To capture the uncertainty in the simulated data we want to identify how much choice and reaction differs across the simulated data sets. A good measure of this is to calculate the highest posterior density/highest density interval for summary scores of the generated data. Below we calculate highest posterior density with an alpha set to 0.1, which means that we are describing the range of the 90% most likely values." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#for practical reasons we only look at the first 40 trials for each subject in a given condition\n", - "plot_ppc_data = ppc_data[ppc_data.trial<41].copy()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Choice" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#bin trials to for smoother estimate of response proportion across learning\n", - "plot_ppc_data['bin_trial'] = pd.cut(plot_ppc_data.trial,11,labels=np.linspace(0, 10,11)).astype('int64')\n", - "#calculate means for each sample\n", - "sums = plot_ppc_data.groupby(['bin_trial','split_by','samp','type']).mean().reset_index()\n", - "#calculate the overall mean response across samples\n", - "ppc_sim = sums.groupby(['bin_trial','split_by','type']).mean().reset_index()\n", - "#initiate columns that will have the upper and lower bound of the hpd\n", - "ppc_sim['upper_hpd'] = 0\n", - "ppc_sim['lower_hpd'] = 0\n", - "for i in range(0,ppc_sim.shape[0]):\n", - " #calculate the hpd/hdi of the predicted mean responses across bin_trials\n", - " hdi = pymc.utils.hpd(sums.response[(sums['bin_trial']==ppc_sim.bin_trial[i]) & (sums['split_by']==ppc_sim.split_by[i]) & (sums['type']==ppc_sim.type[i])],alpha=0.1)\n", - " ppc_sim.loc[i,'upper_hpd'] = hdi[1]\n", - " ppc_sim.loc[i,'lower_hpd'] = hdi[0]\n", - "#calculate error term as the distance from upper bound to mean\n", - "ppc_sim['up_err'] = ppc_sim['upper_hpd']-ppc_sim['response']\n", - "ppc_sim['low_err'] = ppc_sim['response']-ppc_sim['lower_hpd']\n", - "ppc_sim['model'] = 'RLDDM_single_learning'\n", - "ppc_sim.to_csv('ppc_choicedata_tutorial.csv')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#plotting evolution of choice proportion for best option across learning for observed and simulated data.\n", - "fig, axs = plt.subplots(figsize=(15, 5),nrows=1, ncols=3, sharex=True,sharey=True)\n", - "for i in range(0,3):\n", - " ax = axs[i]\n", - " d = ppc_sim[(ppc_sim.split_by==i) & (ppc_sim.type=='simulated')]\n", - " ax.errorbar(d.bin_trial, d.response, yerr=[d.low_err,d.up_err], label='simulated',color='orange')\n", - " d = ppc_sim[(ppc_sim.split_by==i) & (ppc_sim.type=='observed')]\n", - " ax.plot(d.bin_trial, d.response,linewidth=3,label='observed')\n", - " ax.set_title('split_by = %i' %i,fontsize=20)\n", - " ax.set_ylabel('mean response')\n", - " ax.set_xlabel('trial')\n", - "plt.legend()\n", - "fig.savefig('PPCchoice.pdf')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ The plots display the rate of choosing the best option (response = 1) across learning and condition. The model generates data (orange) that closely follows the observed behavior (blue), with the exception of overpredicting performance early in the most difficult condition (split_by=2). Uncertainty in the generated data is captured by the 90% highest density interval of the means across simulated datasets." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### RT" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#set reaction time to be negative for lower bound responses (response=0)\n", - "plot_ppc_data['reaction time'] = np.where(plot_ppc_data['response']==1,plot_ppc_data.rt,0-plot_ppc_data.rt)\n", - "#plotting evolution of choice proportion for best option across learning for observed and simulated data. We use bins of trials because plotting individual trials would be very noisy. \n", - "g = sns.FacetGrid(plot_ppc_data,col='split_by',hue='type')\n", - "g.map(sns.kdeplot, 'reaction time',bw=0.05).set_ylabels(\"Density\")\n", - "g.add_legend()\n", - "g.savefig('PPCrt_dist.pdf')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ Density plots of observed and predicted reaction time across conditions. RTs for lower boundary choices (i.e. worst option choices) are set to be negative (0-RT) to be able to separate upper and lower bound responses." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 8. Parameter recovery\n", - "To validate the RLDDM we ran a parameter recovery study to test to which degree the model can recover the parameter values used to simulate data. To do this we generated 81 synthetic datasets with 50 subjects performing 70 trials each. The 81 datasets were simulated using all combinations of three plausible parameter values for decision threshold, non-decision time, learning rate and the scaling parameter onto drift rate." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Estimated values split by simulated vales \n", - "We can plot simulated together with the estimated values to test the models ability to recover parameters, and to see if there are any values that are more difficult to recover than others." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "param_recovery = hddm.load_csv('recovery_sim_est_rlddm.csv')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "g = sns.catplot(x='a',y='e_a',data=param_recovery,palette='Set1')\n", - "g.set_axis_labels(\"Simulated threshold\", \"Estimated threshold\")\n", - "plt.title(\"Decision threshold\")\n", - "g.savefig('Threshold_recovery.pdf')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "g = sns.catplot(x='alpha',y='e_alphaT',data=param_recovery,palette='Set1')\n", - "g.set_axis_labels(\"Simulated alpha\", \"Estimated alpha\")\n", - "plt.title(\"Learning rate\")\n", - "g.savefig('Alpha_recovery.pdf')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "g = sns.catplot(x='scaler',y='e_v',data=param_recovery,palette='Set1')\n", - "g.set_axis_labels(\"Simulated scaling\", \"Estimated scaling\")\n", - "plt.title(\"Scaling drift rate\")\n", - "g.savefig('Scaler_recovery.pdf')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "g = sns.catplot(x='t',y='e_t',data=param_recovery,palette='Set1')\n", - "g.set_axis_labels(\"Simulated NDT\", \"Estimated NDT\")\n", - "plt.title(\"Non-decision time\")\n", - "g.savefig('NDT_recovery.pdf')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ The correlation between simulated and estimated parameter values are high, which means recovery is good. There is somewhat worse recovery for the learning rate and scaling parameter, which makes sense given that they to a degree can explain the same variance (see below)." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 9. Separate learning rates for positive and negative prediction errors\n", - "Several studies have reported differences in updating of expected rewards following positive and negative prediction errors (e.g. to capture differences between D1 and D2 receptor function). To model asymmetric updating rates for positive and negative prediction errors you can set dual=True in the model. This will produce two estimated learning rates; alpha and pos_alpha, of which alpha then becomes the estimated learning rate for negative prediction errors." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#set dual=True to model separate learning rates for positive and negative prediction errors.\n", - "m_dual = hddm.HDDMrl(data,dual=True)\n", - "#set sample and burn-in\n", - "m_dual.sample(1500,burn=500,dbname='traces.db',db='pickle')\n", - "#print stats to get an overview of posterior distribution of estimated parameters\n", - "m_dual.print_stats()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "m_dual.plot_posteriors()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ There's more autocorrelation in this model compared to the one with a single learning rate. First, let's test whether it converges." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# estimate convergence\n", - "models = []\n", - "for i in range(3):\n", - " m = hddm.HDDMrl(data=data,dual=True)\n", - " m.sample(1500, burn=500,dbname='traces.db',db='pickle')\n", - " models.append(m)\n", - "\n", - "#get max gelman-statistic value. shouldn't be higher than 1.1\n", - "np.max(list(gelman_rubin(models).values()))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "gelman_rubin(models)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Convergence looks good, i.e. no parameters with gelman-rubin statistic > 1.1." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Create a new model that has all traces concatenated\n", - "# of individual models.\n", - "m_dual = kabuki.utils.concat_models(models)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And then we can have a look at the joint posterior distribution:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "alpha, t, a, v, pos_alpha = m_dual.nodes_db.node[['alpha', 't', 'a','v','pos_alpha']]\n", - "samples = {'alpha':alpha.trace(),'pos_alpha':pos_alpha.trace(),'t':t.trace(),'a':a.trace(),'v':v.trace()}\n", - "samp = pd.DataFrame(data=samples)\n", - "\n", - "def corrfunc(x, y, **kws):\n", - " r, _ = stats.pearsonr(x, y)\n", - " ax = plt.gca()\n", - " ax.annotate(\"r = {:.2f}\".format(r),\n", - " xy=(.1, .9), xycoords=ax.transAxes)\n", - "\n", - "g = sns.PairGrid(samp, palette=[\"red\"])\n", - "g.map_upper(plt.scatter, s=10)\n", - "g.map_diag(sns.distplot, kde=False)\n", - "g.map_lower(sns.kdeplot, cmap=\"Blues_d\")\n", - "g.map_lower(corrfunc)\n", - "g.savefig('matrix_plot.png')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ The correlation between parameters is generally low. " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Posterior predictive check\n", - "The DIC for this dual learning rate model is better than for the single learning rate model. We can therefore check whether we can detect this improvement in the ability to recreate choice and RT patterns:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#create empty dataframe to store simulated data\n", - "sim_data = pd.DataFrame()\n", - "#create a column samp to be used to identify the simulated data sets\n", - "data['samp'] = 0\n", - "#get traces, note here we extract traces from m_dual\n", - "traces = m_dual.get_traces()\n", - "#decide how many times to repeat simulation process. repeating this multiple times is generally recommended as it better captures the uncertainty in the posterior distribution, but will also take some time\n", - "for i in tqdm(range(1,51)):\n", - " #randomly select a row in the traces to use for extracting parameter values\n", - " sample = np.random.randint(0,traces.shape[0]-1)\n", - " #loop through all subjects in observed data\n", - " for s in data.subj_idx.unique():\n", - " #get number of trials for each condition.\n", - " size0 = len(data[(data['subj_idx']==s) & (data['split_by']==0)].trial.unique())\n", - " size1 = len(data[(data['subj_idx']==s) & (data['split_by']==1)].trial.unique())\n", - " size2 = len(data[(data['subj_idx']==s) & (data['split_by']==2)].trial.unique())\n", - " #set parameter values for simulation\n", - " a = traces.loc[sample,'a_subj.'+str(s)]\n", - " t = traces.loc[sample,'t_subj.'+str(s)]\n", - " scaler = traces.loc[sample,'v_subj.'+str(s)]\n", - " #when generating data with two learning rates pos_alpha represents learning rate for positive prediction errors and alpha for negative prediction errors\n", - " alphaInv = traces.loc[sample,'alpha_subj.'+str(s)]\n", - " pos_alphaInv = traces.loc[sample,'pos_alpha_subj.'+str(s)]\n", - " #take inverse logit of estimated alpha and pos_alpha\n", - " alpha = np.exp(alphaInv)/(1+np.exp(alphaInv))\n", - " pos_alpha = np.exp(pos_alphaInv)/(1+np.exp(pos_alphaInv))\n", - " #simulate data for each condition changing only values of size, p_upper, p_lower and split_by between conditions.\n", - " sim_data0 = hddm.generate.gen_rand_rlddm_data(a=a,t=t,scaler=scaler,alpha=alpha,pos_alpha=pos_alpha,size=size0,p_upper=0.8,p_lower=0.2,split_by=0)\n", - " sim_data1 = hddm.generate.gen_rand_rlddm_data(a=a,t=t,scaler=scaler,alpha=alpha,pos_alpha=pos_alpha,size=size1,p_upper=0.7,p_lower=0.3,split_by=1)\n", - " sim_data2 = hddm.generate.gen_rand_rlddm_data(a=a,t=t,scaler=scaler,alpha=alpha,pos_alpha=pos_alpha,size=size2,p_upper=0.6,p_lower=0.4,split_by=2)\n", - " #append the conditions\n", - " sim_data0 = sim_data0.append([sim_data1,sim_data2],ignore_index=True)\n", - " #assign subj_idx\n", - " sim_data0['subj_idx'] = s\n", - " #identify that these are simulated data\n", - " sim_data0['type'] = 'simulated'\n", - " #identify the simulated data\n", - " sim_data0['samp'] = i\n", - " #append data from each subject\n", - " sim_data = sim_data.append(sim_data0,ignore_index=True)\n", - "#combine observed and simulated data\n", - "ppc_dual_data = data[['subj_idx','response','split_by','rt','trial','feedback','samp']].copy()\n", - "ppc_dual_data['type'] = 'observed'\n", - "ppc_dual_sdata = sim_data[['subj_idx','response','split_by','rt','trial','feedback','type','samp']].copy()\n", - "ppc_dual_data = ppc_dual_data.append(ppc_dual_sdata)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#for practical reasons we only look at the first 40 trials for each subject in a given condition\n", - "plot_ppc_dual_data = ppc_dual_data[ppc_dual_data.trial<41].copy()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Choice" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#bin trials to for smoother estimate of response proportion across learning\n", - "plot_ppc_dual_data['bin_trial'] = pd.cut(plot_ppc_dual_data.trial,11,labels=np.linspace(0, 10,11)).astype('int64')\n", - "#calculate means for each sample\n", - "sums = plot_ppc_dual_data.groupby(['bin_trial','split_by','samp','type']).mean().reset_index()\n", - "#calculate the overall mean response across samples\n", - "ppc_dual_sim = sums.groupby(['bin_trial','split_by','type']).mean().reset_index()\n", - "#initiate columns that will have the upper and lower bound of the hpd\n", - "ppc_dual_sim['upper_hpd'] = 0\n", - "ppc_dual_sim['lower_hpd'] = 0\n", - "for i in range(0,ppc_dual_sim.shape[0]):\n", - " #calculate the hpd/hdi of the predicted mean responses across bin_trials\n", - " hdi = pymc.utils.hpd(sums.response[(sums['bin_trial']==ppc_dual_sim.bin_trial[i]) & (sums['split_by']==ppc_dual_sim.split_by[i]) & (sums['type']==ppc_dual_sim.type[i])],alpha=0.1)\n", - " ppc_dual_sim.loc[i,'upper_hpd'] = hdi[1]\n", - " ppc_dual_sim.loc[i,'lower_hpd'] = hdi[0]\n", - "#calculate error term as the distance from upper bound to mean\n", - "ppc_dual_sim['up_err'] = ppc_dual_sim['upper_hpd']-ppc_dual_sim['response']\n", - "ppc_dual_sim['low_err'] = ppc_dual_sim['response']-ppc_dual_sim['lower_hpd']\n", - "ppc_dual_sim['model'] = 'RLDDM_dual_learning'" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#plotting evolution of choice proportion for best option across learning for observed and simulated data.\n", - "fig, axs = plt.subplots(figsize=(15, 5),nrows=1, ncols=3, sharex=True,sharey=True)\n", - "for i in range(0,3):\n", - " ax = axs[i]\n", - " d = ppc_dual_sim[(ppc_dual_sim.split_by==i) & (ppc_dual_sim.type=='simulated')]\n", - " ax.errorbar(d.bin_trial, d.response, yerr=[d.low_err,d.up_err], label='simulated',color='orange')\n", - " d = ppc_sim[(ppc_dual_sim.split_by==i) & (ppc_dual_sim.type=='observed')]\n", - " ax.plot(d.bin_trial, d.response,linewidth=3,label='observed')\n", - " ax.set_title('split_by = %i' %i,fontsize=20)\n", - " ax.set_ylabel('mean response')\n", - " ax.set_xlabel('trial')\n", - "plt.legend()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ The plots display the rate of choosing the best option (response = 1) across learning and condition. The model generates data (orange) that closely follows the observed behavior (blue), with the exception of performance early in the most difficult condition (split_by=2)." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### PPC for single vs. dual learning rate\n", - "To get a better sense of differences in ability to predict data between the single and dual learning rate model we can plot them together:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#plotting evolution of choice proportion for best option across learning for observed and simulated data. Compared for model with single and dual learning rate.\n", - "fig, axs = plt.subplots(figsize=(15, 5),nrows=1, ncols=3, sharex=True,sharey=True)\n", - "for i in range(0,3):\n", - " ax = axs[i]\n", - " d_single = ppc_sim[(ppc_sim.split_by==i) & (ppc_sim.type=='simulated')]\n", - " #slightly move bin_trial to avoid overlap in errorbars\n", - " d_single['bin_trial'] += 0.2\n", - " ax.errorbar(d_single.bin_trial, d_single.response, yerr=[d_single.low_err,d_single.up_err],label='simulated_single',color='orange')\n", - " d_dual = ppc_dual_sim[(ppc_dual_sim.split_by==i) & (ppc_dual_sim.type=='simulated')]\n", - " ax.errorbar(d_dual.bin_trial, d_dual.response, yerr=[d_dual.low_err,d_dual.up_err],label='simulated_dual',color='green')\n", - " d = ppc_sim[(ppc_dual_sim.split_by==i) & (ppc_dual_sim.type=='observed')]\n", - " ax.plot(d.bin_trial, d.response,linewidth=3,label='observed')\n", - " ax.set_title('split_by = %i' %i,fontsize=20)\n", - " ax.set_ylabel('mean response')\n", - " ax.set_xlabel('trial')\n", - "plt.xlim(-0.5,10.5)\n", - "plt.legend()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ The predictions from the model with two learning rates are not very different from the model with single learning rate, and a similar overprediction of performance early on for the most difficult condition (split_by =2)." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### RT" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "plot_ppc_data['type_compare'] = np.where(plot_ppc_data['type']=='observed',plot_ppc_data['type'],'simulated_single_learning')\n", - "plot_ppc_dual_data['type_compare'] = np.where(plot_ppc_dual_data['type']=='observed',plot_ppc_dual_data['type'],'simulated_dual_learning')\n", - "dual_vs_single_pcc = plot_ppc_data.append(plot_ppc_dual_data)\n", - "dual_vs_single_pcc['reaction time'] = np.where(dual_vs_single_pcc['response']==1,dual_vs_single_pcc.rt,0-dual_vs_single_pcc.rt)\n", - "#plotting evolution of choice proportion for best option across learning for observed and simulated data. We use bins of trials because plotting individual trials would be very noisy. \n", - "g = sns.FacetGrid(dual_vs_single_pcc,col='split_by',hue='type_compare',height=5)\n", - "g.map(sns.kdeplot, 'reaction time',bw=0.01).set_ylabels(\"Density\")\n", - "g.add_legend()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ Again there's not a big difference between the two models. Both models slightly overpredict performance for the medium (split_by =1) and hard (split_by = 2) conditions, as identified by lower densities for the negative (worst option choices) in the simulated compared to observed data." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Transform alpha and pos_alpha\n", - "To interpret the parameter estimates for alpha and pos_alpha you have to transform them with the inverse logit where learning rate for negative prediction error is alpha and learning rate for positive prediction errors is pos_alpha. For this dataset the learning rate is estimated to be higher for positive than negative prediction errors." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#plot alpha for positive and negative learning rate\n", - "traces = m_dual.get_traces()\n", - "neg_alpha = np.exp(traces['alpha'])/(1+np.exp(traces['alpha']))\n", - "pos_alpha = np.exp(traces['pos_alpha'])/(1+np.exp(traces['pos_alpha']))\n", - "sns.kdeplot(neg_alpha, color='r', label=\"neg_alpha: \" + str(np.round(np.mean(neg_alpha),3)))\n", - "sns.kdeplot(pos_alpha, color='b', label=\"pos_alpha: \" + str(np.round(np.mean(pos_alpha),3)))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ The positive learning rate is estimated to be stronger than the negative learning rate. Sticky choice, tendencies to repeat choices, could be driving some of this difference. The current model does not allow to test for this, however, but it could be tested in the future if we implement a regression version of RLDDM (similar to HDDMRegressor)." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Simulate data with learning rates for positive and negative prediction errors\n", - "Here's how you would simulate data with a learning rate for positive and negative predictions of 0.2 and 0.4, respectively:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "hddm.generate.gen_rand_rlddm_data(a=1,t=0.3,alpha=0.2,pos_alpha=0.4,scaler=2,p_upper=0.8,p_lower=0.2,size=10)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 10. depends_on vs. split_by\n", - "HDDMrl can be used to estimate separate parameters just as in the standard HDDM. But in RL you typically estimate the same learning rates and inverse temperature across conditions. That's one reason why you have to specify condition in the split_by-column instead of depends_on. (The other is that if you use depends_on the expected rewards will not get updated properly). But depends_on is still useful, for example if you want to estimate the effect of group on parameters. As an example we can simulate a dataset with two groups that have different decision thresholds:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "data1 = hddm.generate.gen_rand_rlddm_data(a=1,t=0.3,alpha=0.4,scaler=2,p_upper=0.8,p_lower=0.2,subjs=50,size=50)\n", - "data1['group'] = 'group1'\n", - "data2 = hddm.generate.gen_rand_rlddm_data(a=2,t=0.3,alpha=0.4,scaler=2,p_upper=0.8,p_lower=0.2,subjs=50,size=50)\n", - "data2['group'] = 'group2'\n", - "group_data = data1.append(data2)\n", - "group_data['q_init'] = 0.5\n", - "m = hddm.HDDMrl(group_data,depends_on={'v':'group','a':'group','t':'group','alpha':'group'})\n", - "m.sample(1500,burn=500,dbname='traces.db',db='pickle')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#the plot shows that the model was able to recover the different decision threshold across groups.\n", - "a_group1, a_group2 = m.nodes_db.node[['a(group1)', 'a(group2)']]\n", - "hddm.analyze.plot_posterior_nodes([a_group1, a_group2])\n", - "plt.xlabel('decision threshold')\n", - "plt.ylabel('Posterior probability')\n", - "plt.xlim(0.7,2.3)\n", - "plt.title('Posterior of decision threshold group means')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 11. Probabilistic binary outcomes vs. normally distributed outcomes\n", - "The examples so far have all been using a task structure where the outcomes are binary and probabilistic. But the model can also be applied to other types of outcomes. Here we show how you can generate and model data with normally distributed outcomes. As you will see you don't have to do any modifications to the model estimation process, but you have to change the input for generating data. Also note that the scaling parameter (v) will scale negatively with the values of the observed outcomes because the combined drift rate needs to be plausible." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# This is how we generated data so far, defining the probability of reward (1) for actions/stimuli associated with upper and lower boundary.\n", - "# binary probabilistic outcomes\n", - "hddm.generate.gen_rand_rlddm_data(a=2,t=0.3,scaler=2,alpha=0.2,size=10,p_upper=0.2,p_lower=0.8)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# If instead the outcomes are drawn from a normal distribution you will have to set binary_outcome to False and instead of p_upper and p_upper define the mean (mu) and sd \n", - "# of the normal distribution for both alternatives. Note that we change the initial q-value to 0, and that we reduce the scaling factor.\n", - "# normally distributed outcomes\n", - "hddm.generate.gen_rand_rlddm_data(a=2,t=0.3,scaler=0.2,alpha=0.2,size=10,mu_upper=8,mu_lower=2,sd_upper=1,sd_lower=1,binary_outcome=False,q_init=0)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# We can generate a dataset where 30 subjects perform 50 trials each. Note that we set the scaler to be lower than for the binary outcomes as otherwise \n", - "# the resulting drift will be unrealistically high.\n", - "norm_data = hddm.generate.gen_rand_rlddm_data(a=2,t=0.3,scaler=0.2,alpha=0.2,size=50,subjs=30,mu_upper=8,mu_lower=2,sd_upper=2,sd_lower=2,binary_outcome=False,q_init=0)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#and then we can do estimation as usual\n", - "#but first we need to define inital q-value\n", - "norm_data['q_init'] = 0\n", - "m_norm = hddm.HDDMrl(norm_data)\n", - "m_norm.sample(1500,burn=500,dbname='traces.db',db='pickle')\n", - "m_norm.print_stats()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 12. HDDMrlRegressor\n", - "\n", - "As of version 0.7.6. HDDM includes a module for estimating the impact of continuous regressor onto RLDDM parameters. The module, called HDDMrlRegressor, works the same way as the HDDMRegressor for the normal DDM. The method allows estimation of the association of e.g. neural measures onto parameters. To illustrate the method we extend the function to generate rlddm_data by adding a normally distributed regressor and including a coefficient called 'neural'.Note that to run the HDDMrlRegressor you need to include alpha when specifying the model. For more information on how to set up regressor models look at the tutorial for HDDM." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#function to generate rlddm-data that adds a neural regressor to decision threshold\n", - "def gen_rand_reg_rlddm_data(a, t, scaler, alpha, neural, size=1, p_upper=1, p_lower=0, z=0.5, q_init=0.5, split_by=0, subjs=1):\n", - " all_data = []\n", - " n = size\n", - " # set sd for variables to generate subject-parameters from group distribution\n", - " sd_t = 0.02\n", - " sd_a = 0.1\n", - " sd_alpha = 0.1\n", - " sd_v = 0.25\n", - " #save parameter values as group-values\n", - " tg = t\n", - " ag = a\n", - " alphag = alpha\n", - " scalerg = scaler\n", - " for s in range(0, subjs):\n", - " t = np.maximum(0.05, np.random.normal(\n", - " loc=tg, scale=sd_t, size=1)) if subjs > 1 else tg\n", - " a = np.maximum(0.05, np.random.normal(\n", - " loc=ag, scale=sd_a, size=1)) if subjs > 1 else ag\n", - " alpha = np.minimum(np.minimum(np.maximum(0.001, np.random.normal(loc=alphag, scale=sd_a, size=1)), alphag+alphag),1) if subjs > 1 else alphag\n", - " scaler = np.random.normal(loc=scalerg, scale=sd_v, size=1) if subjs > 1 else scalerg\n", - " #create a normalized regressor that is combined with the neural coefficient to create trial-by-trial values for decision threshold\n", - " neural_reg = np.random.normal(0,1,size=n)\n", - " q_up = np.tile([q_init], n)\n", - " q_low = np.tile([q_init], n)\n", - " response = np.tile([0.5], n)\n", - " feedback = np.tile([0.5], n)\n", - " rt = np.tile([0], n)\n", - " rew_up = np.random.binomial(1, p_upper, n).astype(float)\n", - " rew_low = np.random.binomial(1, p_lower, n).astype(float)\n", - " sim_drift = np.tile([0], n)\n", - " subj_idx = np.tile([s], n)\n", - " d = {'q_up': q_up, 'q_low': q_low, 'sim_drift': sim_drift, 'rew_up': rew_up, 'rew_low': rew_low,\n", - " 'response': response, 'rt': rt, 'feedback': feedback, 'subj_idx': subj_idx, 'split_by': split_by, 'trial': 1, 'neural_reg': neural_reg}\n", - " df = pd.DataFrame(data=d)\n", - " df = df[['q_up', 'q_low', 'sim_drift', 'rew_up', 'rew_low',\n", - " 'response', 'rt', 'feedback', 'subj_idx', 'split_by', 'trial','neural_reg']]\n", - " #generate data trial-by-trial using the Intercept (a), regressor (neural_reg) and coefficient (neural) for decision threshold.\n", - " data, params = hddm.generate.gen_rand_data(\n", - " {'a': a + neural*df.loc[0, 'neural_reg'], 't': t, 'v': df.loc[0, 'sim_drift'], 'z': z}, subjs=1, size=1)\n", - " df.loc[0, 'response'] = data.response[0]\n", - " df.loc[0, 'rt'] = data.rt[0]\n", - " if (data.response[0] == 1.0):\n", - " df.loc[0, 'feedback'] = df.loc[0, 'rew_up']\n", - " else:\n", - " df.loc[0, 'feedback'] = df.loc[0, 'rew_low']\n", - "\n", - " for i in range(1, n):\n", - " df.loc[i, 'trial'] = i + 1\n", - " df.loc[i, 'q_up'] = (df.loc[i - 1, 'q_up'] * (1 - df.loc[i - 1, 'response'])) + ((df.loc[i - 1, 'response'])\n", - " * (df.loc[i - 1, 'q_up'] + (alpha * (df.loc[i - 1, 'rew_up'] - df.loc[i - 1, 'q_up']))))\n", - " df.loc[i, 'q_low'] = (df.loc[i - 1, 'q_low'] * (df.loc[i - 1, 'response'])) + ((1 - df.loc[i - 1, 'response'])\n", - " * (df.loc[i - 1, 'q_low'] + (alpha * (df.loc[i - 1, 'rew_low'] - df.loc[i - 1, 'q_low']))))\n", - " df.loc[i, 'sim_drift'] = (df.loc[i, 'q_up'] - df.loc[i, 'q_low']) * (scaler)\n", - " data, params = hddm.generate.gen_rand_data(\n", - " {'a': a + neural*df.loc[i, 'neural_reg'], 't': t, 'v': df.loc[i, 'sim_drift'] , 'z': z}, subjs=1, size=1)\n", - " df.loc[i, 'response'] = data.response[0]\n", - " df.loc[i, 'rt'] = data.rt[0]\n", - " if (data.response[0] == 1.0):\n", - " df.loc[i, 'feedback'] = df.loc[i, 'rew_up']\n", - " else:\n", - " df.loc[i, 'feedback'] = df.loc[i, 'rew_low']\n", - " all_data.append(df)\n", - " all_data = pd.concat(all_data, axis=0)\n", - " all_data = all_data[['q_up', 'q_low', 'sim_drift', 'response',\n", - " 'rt', 'feedback', 'subj_idx', 'split_by', 'trial','neural_reg']]\n", - "\n", - " return all_data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#Create data with function defined above. \n", - "#This will create trial-by-trial values for decision threshold (a) by adding the coefficient neural (here set to 0.2) \n", - "#multiplied by a normalized regressor (neural_reg) to the 'Intercept' value of a (here set to 1) \n", - "data_neural = gen_rand_reg_rlddm_data(a=1,t=0.3,scaler=2,alpha=0.2,neural = 0.2,size=100,p_upper=0.7,p_lower=0.3,subjs=25)\n", - "data_neural['q_init'] = 0.5\n", - "data_neural.head()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#run a regressor model estimating the impact of 'neural' on decision threshold a. This should estimate the coefficient a_neural_reg to be 0.2\n", - "#to run the HDDMrlRegressor you need to include alpha\n", - "m_reg = hddm.HDDMrlRegressor(data_neural,'a ~ neural_reg',include='alpha')\n", - "m_reg.sample(1000,burn=250)\n", - "m_reg.print_stats()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 13. Regular RL without RT\n", - "HDDMrl also includes a module to run an RL-model that uses softmax to transform q-values to probability of choosing options associated with upper (response=1) or lower (response=0) boundary. To run this model you type hddm.Hrl instead of hddm.HDDMrl. The setup is the same as for HDDMrl, and for now, the model won't run if you don't include an rt-column. This will be fixed for a future version, but for now, if you don't have RTs you can just create an rt-column where you set all rts to e.g. 0.5. You can choose to estimate separate learning rates for positive and negative learning rate by setting dual=True (see [here](#9.-Separate-learning-rates-for-positive-and-negative-prediction-errors) for more information). The model will by default estimate posterior distributions for the alpha and v parameters. The probability of choosing upper boundary is captured as:

\n", - "      $p_{up} =(e^{-2*z*d_t}-1)/ (e^{-2*d_t}-1)$,

\n", - "where ${d_t}=q_{up_t}-q_{low}*v$ and z represents starting point (which for now is fixed to be 0.5).
\n", - "This calculation is equivalent to soft-max transformation when z=0.5." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#run the model by calling hddm.Hrl (instead of hddm.HDDM for normal model and hddm.HDDMrl for rlddm-model)\n", - "m_rl = hddm.Hrl(data)\n", - "#set sample and burn-in\n", - "m_rl.sample(1500,burn=500,dbname='traces.db',db='pickle')\n", - "#print stats to get an overview of posterior distribution of estimated parameters\n", - "m_rl.print_stats()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Parameter estimates from the pure RL-model are a bit different compared to the RLDDM. This is to be expected as probability of choice in DDM is dependent both on the decsision threshold and the scaled difference in q-values, whereas the RL model only uses the scaled difference in q-values. " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "m_rl.plot_posteriors()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ Mixing and autocorrelation looks good." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# estimate convergence\n", - "models = []\n", - "for i in range(3):\n", - " m = hddm.Hrl(data=data)\n", - " m.sample(1500, burn=500,dbname='traces.db',db='pickle')\n", - " models.append(m)\n", - "#get max gelman-statistic value. shouldn't be higher than 1.1\n", - "np.max(list(gelman_rubin(models).values()))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Convergence looks good, i.e. no parameters with gelman-rubin statistic > 1.1." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Create a new model that has all traces concatenated\n", - "# of individual models.\n", - "m_rl = kabuki.utils.concat_models(models)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "alpha, v = m_rl.nodes_db.node[['alpha','v']]\n", - "samples = {'alpha':alpha.trace(),'v':v.trace()}\n", - "samp = pd.DataFrame(data=samples)\n", - "\n", - "def corrfunc(x, y, **kws):\n", - " r, _ = stats.pearsonr(x, y)\n", - " ax = plt.gca()\n", - " ax.annotate(\"r = {:.2f}\".format(r),\n", - " xy=(.1, .9), xycoords=ax.transAxes)\n", - "\n", - "g = sns.PairGrid(samp, palette=[\"red\"])\n", - "g.map_upper(plt.scatter, s=10)\n", - "g.map_diag(sns.distplot, kde=False)\n", - "g.map_lower(sns.kdeplot, cmap=\"Blues_d\")\n", - "\n", - "g.map_lower(corrfunc)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ The correlation in the posterior distribution for alpha and v/scaling is somewhat negative." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Posterior predictive check\n", - "We can also do posterior predictive check on the RL-model by generating new data with hddm.generate.gen_rand_rl_data." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#create empty dataframe to store simulated data\n", - "sim_data = pd.DataFrame()\n", - "#create a column samp to be used to identify the simulated data sets\n", - "data['samp'] = 0\n", - "#load traces\n", - "traces = m_rl.get_traces()\n", - "#decide how many times to repeat simulation process. repeating this multiple times is generally recommended as it better captures the uncertainty in the posterior distribution, but will also take some time\n", - "for i in tqdm(range(1,51)):\n", - " #randomly select a row in the traces to use for extracting parameter values\n", - " sample = np.random.randint(0,traces.shape[0]-1)\n", - " #loop through all subjects in observed data\n", - " for s in data.subj_idx.unique():\n", - " #get number of trials for each condition.\n", - " size0 = len(data[(data['subj_idx']==s) & (data['split_by']==0)].trial.unique())\n", - " size1 = len(data[(data['subj_idx']==s) & (data['split_by']==1)].trial.unique())\n", - " size2 = len(data[(data['subj_idx']==s) & (data['split_by']==2)].trial.unique())\n", - " #set parameter values for simulation\n", - " scaler = traces.loc[sample,'v_subj.'+str(s)]\n", - " alphaInv = traces.loc[sample,'alpha_subj.'+str(s)]\n", - " #take inverse logit of estimated alpha\n", - " alpha = np.exp(alphaInv)/(1+np.exp(alphaInv))\n", - " #simulate data for each condition changing only values of size, p_upper, p_lower and split_by between conditions.\n", - " sim_data0 = hddm.generate.gen_rand_rl_data(scaler=scaler,alpha=alpha,size=size0,p_upper=0.8,p_lower=0.2,split_by=0)\n", - " sim_data1 = hddm.generate.gen_rand_rl_data(scaler=scaler,alpha=alpha,size=size1,p_upper=0.7,p_lower=0.3,split_by=1)\n", - " sim_data2 = hddm.generate.gen_rand_rl_data(scaler=scaler,alpha=alpha,size=size2,p_upper=0.6,p_lower=0.4,split_by=2)\n", - " #append the conditions\n", - " sim_data0 = sim_data0.append([sim_data1,sim_data2],ignore_index=True)\n", - " #assign subj_idx\n", - " sim_data0['subj_idx'] = s\n", - " #identify that these are simulated data\n", - " sim_data0['type'] = 'simulated'\n", - " #identify the simulated data\n", - " sim_data0['samp'] = i\n", - " #append data from each subject\n", - " sim_data = sim_data.append(sim_data0,ignore_index=True)\n", - "#combine observed and simulated data\n", - "ppc_rl_data = data[['subj_idx','response','split_by','trial','feedback','samp']].copy()\n", - "ppc_rl_data['type'] = 'observed'\n", - "ppc_rl_sdata = sim_data[['subj_idx','response','split_by','trial','feedback','type','samp']].copy()\n", - "ppc_rl_data = ppc_rl_data.append(ppc_rl_sdata)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#for practical reasons we only look at the first 40 trials for each subject in a given condition\n", - "plot_ppc_rl_data = ppc_rl_data[ppc_rl_data.trial<41].copy()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#bin trials to for smoother estimate of response proportion across learning\n", - "plot_ppc_rl_data['bin_trial'] = pd.cut(plot_ppc_rl_data.trial,11,labels=np.linspace(0, 10,11)).astype('int64')\n", - "#calculate means for each sample\n", - "sums = plot_ppc_rl_data.groupby(['bin_trial','split_by','samp','type']).mean().reset_index()\n", - "#calculate the overall mean response across samples\n", - "ppc_rl_sim = sums.groupby(['bin_trial','split_by','type']).mean().reset_index()\n", - "#initiate columns that will have the upper and lower bound of the hpd\n", - "ppc_rl_sim['upper_hpd'] = 0\n", - "ppc_rl_sim['lower_hpd'] = 0\n", - "for i in range(0,ppc_rl_sim.shape[0]):\n", - " #calculate the hpd/hdi of the predicted mean responses across bin_trials\n", - " hdi = pymc.utils.hpd(sums.response[(sums['bin_trial']==ppc_rl_sim.bin_trial[i]) & (sums['split_by']==ppc_rl_sim.split_by[i]) & (sums['type']==ppc_rl_sim.type[i])],alpha=0.1)\n", - " ppc_rl_sim.loc[i,'upper_hpd'] = hdi[1]\n", - " ppc_rl_sim.loc[i,'lower_hpd'] = hdi[0]\n", - "#calculate error term as the distance from upper bound to mean\n", - "ppc_rl_sim['up_err'] = ppc_rl_sim['upper_hpd']-ppc_rl_sim['response']\n", - "ppc_rl_sim['low_err'] = ppc_rl_sim['response']-ppc_rl_sim['lower_hpd']\n", - "ppc_rl_sim['model'] = 'RL'" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#plotting evolution of choice proportion for best option across learning for observed and simulated data. Compared for RL and RLDDM models, both with single learnign rate.\n", - "fig, axs = plt.subplots(figsize=(15, 5),nrows=1, ncols=3, sharex=True,sharey=True)\n", - "for i in range(0,3):\n", - " ax = axs[i]\n", - " d_single = ppc_sim[(ppc_sim.split_by==i) & (ppc_sim.type=='simulated')]\n", - " #slightly move bin_trial to avoid overlap in errorbars\n", - " d_single['bin_trial'] += 0.2\n", - " ax.errorbar(d_single.bin_trial, d_single.response, yerr=[d_single.low_err,d_single.up_err], label='simulated_RLDDM',color='orange')\n", - " ax = axs[i]\n", - " d_rl = ppc_rl_sim[(ppc_rl_sim.split_by==i) & (ppc_rl_sim.type=='simulated')]\n", - " ax.errorbar(d_rl.bin_trial, d_rl.response, yerr=[d_rl.low_err,d_rl.up_err], label='simulated_RL',color='green')\n", - " ax = axs[i]\n", - " d = ppc_sim[(ppc_dual_sim.split_by==i) & (ppc_dual_sim.type=='observed')]\n", - " ax.plot(d.bin_trial, d.response,linewidth=3,label='observed')\n", - " ax.set_title('split_by = %i' %i,fontsize=20)\n", - " ax.set_ylabel('mean response')\n", - " ax.set_xlabel('trial')\n", - "plt.xlim(-0.5,10.5)\n", - "plt.legend()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "__Fig.__ The predicted choice for the RL-model is very similar to what was predicted in the RLDDM. That is not surprising given that they use the same calculation to get the choice likelihood. The difference between them is instead that the RLDDM could potentially detect the unique contribution of the scaling/drift parameter and the decision threshold onto choice." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Misprediction across learning\n", - "Another way to visualize this is to look at how the predicted choice misses on the observed across learning, i.e. predicted-observed. As for the other plots we see that the two methods are very similar. " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#rl\n", - "error_prediction = plot_ppc_rl_data.groupby(['split_by','type','bin_trial'])['response'].mean().reset_index()\n", - "ep = error_prediction.pivot_table(index=['split_by','bin_trial'],columns='type',values='response').reset_index()\n", - "ep['diff'] = ep['simulated']-ep['observed']\n", - "ep['model'] = 'RL'\n", - "#rlddm\n", - "error_prediction = plot_ppc_data.groupby(['split_by','type','bin_trial'])['response'].mean().reset_index()\n", - "ep_rlddm = error_prediction.pivot_table(index=['split_by','bin_trial'],columns='type',values='response').reset_index()\n", - "ep_rlddm['diff'] = ep_rlddm['simulated']-ep_rlddm['observed']\n", - "ep_rlddm['model'] = 'RLDDM'\n", - "#combine\n", - "ep = ep.append(ep_rlddm)\n", - "#plot\n", - "g = sns.relplot(x='bin_trial',y='diff',col='split_by',hue='model',kind='line',ci=False,data=ep,palette=\"Set2_r\")\n", - "g.map(plt.axhline, y=0, ls=\":\", c=\".5\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "interpreter": { - "hash": "ddbb7df5507d00722003067fe4887a6177bdbfb65a95ad423bf9ea63b8d66998" - }, - "kernelspec": { - "display_name": "Python 3.7.11 64-bit ('hddm-krishn-dev': conda)", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.11" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/hddm/examples/Test_HDDMnn.ipynb b/hddm/examples/Test_HDDMnn.ipynb deleted file mode 100644 index a22150eb2..000000000 --- a/hddm/examples/Test_HDDMnn.ipynb +++ /dev/null @@ -1,652 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "c37ba0b2", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "PyTorch's version is 1.7.0\n" - ] - } - ], - "source": [ - "import hddm\n", - "\n", - "import torch\n", - "print(\"PyTorch's version is \", torch.__version__)" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "051252ac", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'/opt/conda/lib/python3.8/site-packages/hddm'" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "hddm.__path__[0]" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "16322cae", - "metadata": {}, - "outputs": [], - "source": [ - "# test the PyTorch modules\n", - "import torch\n", - "import torch.nn as nn\n", - "import uuid" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "033f6e1c", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/plain": [ - "['test',\n", - " 'ddm',\n", - " 'ddm_vanilla',\n", - " 'angle',\n", - " 'weibull',\n", - " 'levy',\n", - " 'full_ddm',\n", - " 'full_ddm_vanilla',\n", - " 'ornstein',\n", - " 'ddm_sdv',\n", - " 'ddm_par2',\n", - " 'ddm_par2_no_bias',\n", - " 'ddm_par2_angle_no_bias',\n", - " 'ddm_par2_weibull_no_bias',\n", - " 'ddm_seq2',\n", - " 'ddm_seq2_no_bias',\n", - " 'ddm_seq2_angle_no_bias',\n", - " 'ddm_seq2_weibull_no_bias',\n", - " 'ddm_mic2_adj',\n", - " 'ddm_mic2_adj_no_bias',\n", - " 'ddm_mic2_adj_angle_no_bias',\n", - " 'ddm_mic2_adj_weibull_no_bias',\n", - " 'race_no_bias_3',\n", - " 'race_no_bias_angle_3',\n", - " 'race_no_bias_4',\n", - " 'race_no_bias_angle_4',\n", - " 'lca_no_bias_3',\n", - " 'lca_no_bias_angle_3',\n", - " 'lca_no_bias_4',\n", - " 'lca_no_bias_angle_4',\n", - " 'weibull_cdf',\n", - " 'full_ddm2']" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# List all available models\n", - "list(hddm.model_config.model_config.keys())" - ] - }, - { - "cell_type": "markdown", - "id": "f1adacc4", - "metadata": {}, - "source": [ - "## Try the short example\n", - "\n", - "https://hddm.readthedocs.io/en/latest/lan_new_classes.html" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "3227517f", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Setting priors uninformative (LANs only work with uninformative priors for now)\n", - "Includes supplied: ['z', 'theta']\n" - ] - } - ], - "source": [ - "model = 'angle'\n", - "cavanagh_data = hddm.load_csv(hddm.__path__[0] + '/examples/cavanagh_theta_nn.csv')\n", - "model_ = hddm.HDDMnn(cavanagh_data,\n", - " model = model,\n", - " include = hddm.model_config.model_config[model]['hddm_include'],\n", - " is_group_model = False)" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "9e921b6e", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['z', 'theta']" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "hddm.model_config.model_config[model]['hddm_include']" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "f25d9620", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " [-----------------100%-----------------] 1001 of 1000 complete in 29.5 sec" - ] - }, - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "model_.sample(1000, burn = 200)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "30ecb075", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
vaz_transttheta
00.3807771.3344490.0209870.2709590.252253
10.3877821.319195-0.0095800.2776090.239410
20.3656731.310398-0.0007730.2802500.249452
30.3509491.3322800.0607320.2767330.251717
40.4067551.3229960.0305490.2780620.241687
..................
7950.3070881.2326690.0800790.3114940.194642
7960.3434861.2448650.0743610.2968370.189099
7970.3561981.2393700.0736510.3030500.201857
7980.3664801.2445700.0752980.3093950.201162
7990.3413751.2522220.0551300.3050520.206471
\n", - "

800 rows × 5 columns

\n", - "
" - ], - "text/plain": [ - " v a z_trans t theta\n", - "0 0.380777 1.334449 0.020987 0.270959 0.252253\n", - "1 0.387782 1.319195 -0.009580 0.277609 0.239410\n", - "2 0.365673 1.310398 -0.000773 0.280250 0.249452\n", - "3 0.350949 1.332280 0.060732 0.276733 0.251717\n", - "4 0.406755 1.322996 0.030549 0.278062 0.241687\n", - ".. ... ... ... ... ...\n", - "795 0.307088 1.232669 0.080079 0.311494 0.194642\n", - "796 0.343486 1.244865 0.074361 0.296837 0.189099\n", - "797 0.356198 1.239370 0.073651 0.303050 0.201857\n", - "798 0.366480 1.244570 0.075298 0.309395 0.201162\n", - "799 0.341375 1.252222 0.055130 0.305052 0.206471\n", - "\n", - "[800 rows x 5 columns]" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "model_.get_traces()" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "413a2113", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
meanstd2.5q25q50q75q97.5qmc err
v0.3671680.02256080.3260380.3508630.3660530.3829220.414180.00129757
a1.309690.02403941.267831.292971.308531.324971.360680.00207534
z0.5053110.006643940.491620.500830.5055830.5099580.517310.000359481
t0.2852120.0101720.263620.2783560.285370.2922960.3035660.000792915
theta0.2414560.01425720.2147280.2313460.2415340.2508080.2702110.00115392
\n", - "
" - ], - "text/plain": [ - " mean std 2.5q 25q 50q 75q 97.5q \\\n", - "v 0.367168 0.0225608 0.326038 0.350863 0.366053 0.382922 0.41418 \n", - "a 1.30969 0.0240394 1.26783 1.29297 1.30853 1.32497 1.36068 \n", - "z 0.505311 0.00664394 0.49162 0.50083 0.505583 0.509958 0.51731 \n", - "t 0.285212 0.010172 0.26362 0.278356 0.28537 0.292296 0.303566 \n", - "theta 0.241456 0.0142572 0.214728 0.231346 0.241534 0.250808 0.270211 \n", - "\n", - " mc err \n", - "v 0.00129757 \n", - "a 0.00207534 \n", - "z 0.000359481 \n", - "t 0.000792915 \n", - "theta 0.00115392 " - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "model_.gen_stats()" - ] - }, - { - "cell_type": "markdown", - "id": "5f0f9774", - "metadata": {}, - "source": [ - "## Try `full_ddm`" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "c40ca221", - "metadata": {}, - "outputs": [], - "source": [ - "model = 'full_ddm'" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "id": "cf6e88aa", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/plain": [ - "{'params': ['v', 'a', 'z', 't', 'sz', 'sv', 'st'],\n", - " 'params_trans': [0, 0, 1, 0, 0, 0, 0],\n", - " 'params_std_upper': [1.5, 1.0, None, 1.0, 0.1, 0.5, 0.1],\n", - " 'param_bounds': [[-3.0, 0.3, 0.3, 0.25, 0.001, 0.001, 0.001],\n", - " [3.0, 2.5, 0.7, 2.25, 0.2, 2.0, 0.25]],\n", - " 'param_bounds_cnn': [[-2.5, 0.2, 0.1, 0.25, 0.0, 0.0, 0.0],\n", - " [2.5, 2.0, 0.9, 2.5, 0.4, 1.0, 0.5]],\n", - " 'boundary': ,\n", - " 'n_params': 7,\n", - " 'default_params': [0.0, 1.0, 0.5, 0.25, 0.001, 0.001, 0.001],\n", - " 'hddm_include': ['z', 'st', 'sv', 'sz'],\n", - " 'n_choices': 2,\n", - " 'choices': [-1, 1],\n", - " 'slice_widths': {'v': 1.5,\n", - " 'v_std': 1,\n", - " 'a': 1,\n", - " 'a_std': 1,\n", - " 'z': 0.1,\n", - " 'z_trans': 0.2,\n", - " 't': 0.01,\n", - " 't_std': 0.15,\n", - " 'sz': 1.1,\n", - " 'st': 0.1,\n", - " 'sv': 0.5}}" - ] - }, - "execution_count": 11, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "hddm.model_config.model_config[model]" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "d0f6522b", - "metadata": {}, - "outputs": [], - "source": [ - "from hddm.torch.mlp_inference_class import load_torch_mlp" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "id": "a16129d3", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "ename": "KeyError", - "evalue": "'full_ddm'", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mnetwork\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mload_torch_mlp\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;32m/opt/conda/lib/python3.8/site-packages/hddm/torch/mlp_inference_class.py\u001b[0m in \u001b[0;36mload_torch_mlp\u001b[0;34m(model)\u001b[0m\n\u001b[1;32m 36\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 37\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mload_torch_mlp\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 38\u001b[0;31m \u001b[0mcfg\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mTorchConfig\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 39\u001b[0m infer_model = LoadTorchMLPInfer(\n\u001b[1;32m 40\u001b[0m \u001b[0mmodel_file_path\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mcfg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mnetwork_path\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m/opt/conda/lib/python3.8/site-packages/hddm/torch/torch_config.py\u001b[0m in \u001b[0;36m__init__\u001b[0;34m(self, model)\u001b[0m\n\u001b[1;32m 50\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 51\u001b[0m self.network_config = self.get_network_config(\n\u001b[0;32m---> 52\u001b[0;31m \u001b[0mfile_name\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mnetwork_config_files\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 53\u001b[0m )\n\u001b[1;32m 54\u001b[0m self.network_path = os.path.join(\n", - "\u001b[0;31mKeyError\u001b[0m: 'full_ddm'" - ] - } - ], - "source": [ - "network = load_torch_mlp(model=model)" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "19d7bcec", - "metadata": {}, - "outputs": [], - "source": [ - "from hddm.torch.torch_config import TorchConfig" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "id": "96acc66d", - "metadata": {}, - "outputs": [], - "source": [ - "cfg = TorchConfig(model=\"angle\") # This is correct" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "id": "bdb6251b", - "metadata": {}, - "outputs": [ - { - "ename": "KeyError", - "evalue": "'full_ddm'", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mcfg\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mTorchConfig\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m'full_ddm'\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;31m# this command can not run.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;32m/opt/conda/lib/python3.8/site-packages/hddm/torch/torch_config.py\u001b[0m in \u001b[0;36m__init__\u001b[0;34m(self, model)\u001b[0m\n\u001b[1;32m 50\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 51\u001b[0m self.network_config = self.get_network_config(\n\u001b[0;32m---> 52\u001b[0;31m \u001b[0mfile_name\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mnetwork_config_files\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mmodel\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 53\u001b[0m )\n\u001b[1;32m 54\u001b[0m self.network_path = os.path.join(\n", - "\u001b[0;31mKeyError\u001b[0m: 'full_ddm'" - ] - } - ], - "source": [ - "cfg = TorchConfig(model='full_ddm') # this command can not run." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "37e63235", - "metadata": {}, - "outputs": [], - "source": [ - "model_ = hddm.HDDMnn(cavanagh_data,\n", - " model = model,\n", - " include = hddm.model_config.model_config[model]['hddm_include'],\n", - " is_group_model = False)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.8.8" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/hddm/examples/demo_HDDMnnRL/angle_d1_c3_s20_t500.pickle b/hddm/examples/demo_HDDMnnRL/angle_d1_c3_s20_t500.pickle new file mode 100644 index 000000000..a5c307a65 Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/angle_d1_c3_s20_t500.pickle differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL.ipynb b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL.ipynb new file mode 100644 index 000000000..89daa175f --- /dev/null +++ b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL.ipynb @@ -0,0 +1,286 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Tutorial for analyzing instrumental learning data with the HDDMnnRL module" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import hddm\n", + "import pickle\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Load the data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "with open('./angle_d1_c3_s20_t500.pickle', 'rb') as handle:\n", + " datafile = pickle.load(handle)\n", + "\n", + "# Here, datafile is saved as a list of datasets. We pick the first dataset.\n", + "dataset = datafile[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Reformat the dataset as a dataframe\n", + "data = hddm.utils.get_dataset_as_dataframe_rlssm(dataset)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Initialize the HDDMnnRL model and sample" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Specify number of samples and burnins\n", + "nsamples = 100\n", + "nburn = 50" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "m = hddm.HDDMnnRL(data, model='angle', rl_rule='RWupdate', non_centered=True, include=['z', 'theta', 'rl_alpha'], p_outlier = 0.0)\n", + "m.sample(nsamples, burn=nburn, dbname='traces.db', db='pickle')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Save the model" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Save the model\n", + "m.save('rlssm_model')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Load the model\n", + "model = hddm.load('rlssm_model')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Check the posterior results" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "m.plot_posteriors()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# Load the trace\n", + "with open('./traces.db', 'rb') as handle:\n", + " tracefile = pickle.load(handle)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# Re-format traces as a dataframe\n", + "traces = hddm.utils.get_traces_rlssm(tracefile)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "model_ssm = 'angle'\n", + "model_rl = 'RWupdate'\n", + "\n", + "config_ssm = hddm.model_config.model_config[model_ssm]\n", + "config_rl = hddm.model_config_rl.model_config_rl[model_rl]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "_ = hddm.plotting.plot_posterior_pairs_rlssm(tracefile, config_ssm['params'] + config_rl['params'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Posterior Predictive Checks" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████| 3/3 [04:29<00:00, 89.79s/it]\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ppc data saved at ./ppc_data.csv\n" + ] + } + ], + "source": [ + "num_posterior_samples = 3\n", + "p_lower = {0: 0.15, 1:0.30, 2:0.45}\n", + "p_upper = {0: 0.85, 1:0.70, 2:0.55}\n", + "ppc_sdata = hddm.plotting.gen_ppc_rlssm(model_ssm, config_ssm, model_rl, config_rl, data, traces, num_posterior_samples, p_lower, p_upper, save_data=True, save_name='ppc_data')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Load the saved ppc data\n", + "# ppc_sdata = pd.read_csv('./ppc_data.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1IAAAEgCAYAAAC+U0LkAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAAsTAAALEwEAmpwYAAB6OklEQVR4nO3dd3hU1dbA4d9OL5AEAqTQa0gCIfSOQaqACIqCCiI2rop6LVzRK4heKyoqioifAhYQFAVBKQIamvRO6DUEEkogjfTM/v44A4SaSTKTmSTrfZ55MnPmzDlrJ8Ni1ux99lZaa4QQQgghhBBCWM7J3gEIIYQQQgghRGkjhZQQQgghhBBCFJIUUkIIIYQQQghRSFJICSGEEEIIIUQhSSElhBBCCCGEEIUkhZQQQgghhBBCFJIUUsKmlFLHlFLdzfdfVUp9XYRjPKyUWmP96IQQpYnkEyGEtUg+EdYghZQoMVrrd7TWjwEopeoopbRSysXecQEow/tKqUTz7X2llLJ3XEKIG3PwfNJVKfW3UipZKXXM3vEIIW7NwfPJaKXUbqVUqlLqqFJqtL1jEldIISWE4QlgANAMiADuBEbaMyAhRKl1EZgGyAceIURxKeAhoBLQGxillBpi35DEJVJICYsppV5WSp00fyuyXynVTSk1Xik1Vyk1x7x9q1Kq2U1eP14p9YP54SrzzySlVJpSqn3Bp1efm7/h3aeU6mbeeK9Sass1O76glPqtkM0bDnyktY7TWp8EPgIeLuQxhBAWKsv5RGu9UWv9PXCkMK8TQhRNGc8nE7TWW7XWuVrr/cBvQMfCHEPYjhRSwiJKqRBgFNBaa10R6AUcMz99F/AzUBmYBcxXSrkWcMgu5p9+WusKWut1BezfFjgMVAFeB35VSlUGFgB1lVKh+fYdBnxnjnuMUirpZrd8rwkHduR7vMO8TQhhZeUgnwghSkh5yidKKQV0BmIKiEmUECmkhKXyAHcgTCnlqrU+prU+bH5ui9Z6rtY6B5gIeADtrHz+M8AnWuscrfUcYD/QV2udBcwBhgIopcKBOsDvAFrr97TWfje75Tt+BSA53+NkoII5aQkhrKus5xMhRMkpT/lkPMZn9+lWboMoIimkhEW01oeAf2P8Iz6jlJqtlAo2P30i334mIA4IvvYYxXRSa63zPT6e7xzfAg+Yi55hwE/mBFYYaYBPvsc+QNo15xRCWEE5yCdCiBJSXvKJUmoUxrVSfSUnOQ4ppITFtNaztNadgNqABt43P1Xz0j5KKSegBnCqoMMV8vTVr+kdqnXpHFrr9UA2Rnf3A8D3+eJ51TzG+Ya3fMeLwZho4pJmSNe5EDZTxvOJEKIElfV8opR6BBgDdNNaxxUyPmFDUkgJiyilQpRStyul3IFMIAMwmZ9uqZS6WxlThf4byALWF3DIs+bX17MwhGrAs0opV6XUvUAosCjf898BnwM5WuvLazqYpzStcLPbNa9/QSlV3fxN1ovADAtjE0IUQlnPJ0opJ6WUB+BqPFQeSik3C2MTQhRCOcgnDwLvAD201jKBjYORQkpYyh14DzgHJGAkjlfMz/0GDAYuYHRd320ej3xTWut04G1grfnCyoLGLG8AGprP/zYwSGudmO/574EmwA83eK0lpgILgV3AbuAP8zYhhPWV9XzSBePD3CKMb6czgD+LeCwhxK2V9XzyFuAPbMrXY/VlEY8lrEzJJSCiOJRS44EGWuuhdo7DE+OCzxZa64P2jEUIUTSST4QQ1iL5RJQE6ZESZcWTwCZJUkIIK5B8IoSwFsknZViJFVJKqWlKqTNKqd03eV4ppSYppQ4ppXYqpVqUVGzC/pRSX97kgssCu6+VUseA5zCuaxLlgOQTcSuST0RhSU4RNyP5RNxKiQ3tU0p1wZhi+jutdZMbPN8HeAbog7G42ada67YlEpwQolSRfCKEsCbJKUKIoiixHimt9Srg/C12uQsjgWnzdJF+SqmgkolOCFGaSD4RQliT5BQhRFG42DuAfKqTb+E0jEXTqgPx+XdSSj0BPAHg6enZsmbNmjgKk8mEk5NtatOEi8ZMnoHetq19bdmGkiJtcAyFacOBAwfOaa2rWvH0FuUTcNycUt7eA46sLLSjvLXBXjnFUfMJlL/3gKOSNjgGa+UTRyqkLKK1/gr4CqBVq1Z68+bNdo7oiujoaKKiomxy7MFT1wEwZ2R7mxz/Elu2oaRIGxxDYdqglDpu22huzlFzSnl7DziystCO8tYGe+UUR80nUP7eA45K2uAYrJVPHKmcPEm+FagxVp8+aadYhBClm+QTIYQ1SU4RQlzHkQqpBcBD5plx2gHJWuvrhuEIIYQFJJ8IIaxJcooQ4jolNrRPKfUjEAVUUUrFAa8DrgBa6y8xVoDvAxwC0oERJRWbEKJ0kXwihLAmySlCiKIosUJKa31/Ac9r4OkSCkcIUYpJPhGlUU5ODnFxcWRmZpb4uX19fdm7d2+Jn9eabtQGDw8PatSogaura7GOLTlFlEb2yimST64odZNNCCGEEKVRXFwcFStWpE6dOiilSvTcqampVKxYsUTPaW3XtkFrTWJiInFxcdStW9eOkQlhH/bKKZJPrnCka6SEEEKIMiszMxN/f/8SL6LKKqUU/v7+dunhE8IRSE6xnqLmEymkhBBCiBIiH3isS36foryTfwPWU5TfpRRSQgghhIMaPHXd5XUEhRCiuCSnWJcUUkIIIUQ5duzYMZo0aWLvMK4TFRWFIy1oK4QoWHnLJ1JICSGEEMKqcnNz7R2CEKKMcOR8IoWUEEIIUY5MnDiRJk2a0KRJEz755BPA+KDy4IMPEhoayqBBg0hPTwdgzJgxhIWFERERwUsvvQTA2bNnueeee2jdujWtW7dm7dq1AIwfP55hw4bRsWNHhg0bRrt27YiJibl83kvfCF+8eJFHHnmENm3a0Lx5c3777TcAMjIyGDJkCKGhoQwcOJCMjIwS/K0IIYqivOcTmf5cCCGEKGFvLIxhz6mUAvfbE2/sY8k1DWHBPrx+Z/gt99myZQvTp09nw4YNaK1p27Ytt912G/v37+ebb76hY8eOPPLII3zxxReMGDGCefPmsW/fPpRSJCUlAfDcc8/x/PPP06lTJ2JjY+nVq9fl9Vj27NnDmjVr8PT05OOPP+ann37ijTfeID4+nvj4eFq1asWrr77K7bffzrRp00hKSqJNmzZ0796dqVOn4uXlxd69e9m5cyctWrQosM1CCIM9corkE+mREkIIIcqNNWvWMHDgQLy9valQoQJ33303q1evpmbNmnTs2BGAoUOHsmbNGnx9ffHw8ODRRx/l119/xcvLC4Dly5czatQoIiMj6d+/PykpKaSlpQHQv39/PD09AbjvvvuYO3cuAD/99BODBg0C4M8//+S9994jMjKSqKgoMjMziY2NZdWqVQwdOhSAiIgIIiIiSvR3I4QoHMkn0iMlhBBClLiCeo4uufSt8ZyR7W0ZznXT/iqlcHFxYePGjaxYsYK5c+fy+eef89dff2EymVi/fj0eHh7XHcfb2/vy/erVq+Pv78/OnTuZM2cOX375JWAsfPnLL78QEhJi0zYJUZ44Uk4pT/lEeqSEEEKIcqJz587Mnz+f9PR0Ll68yLx58+jcuTOxsbGsW2d8wJo1axadOnUiLS2N5ORk+vTpw8cff8yOHTsA6NmzJ5999tnlY27fvv2m5xs8eDATJkwgOTn58jfCvXr14rPPPkNrDcC2bdsA6NKlC7NmzQJg9+7d7Ny50+rtF0JYj+QTKaSEEEKIcqNFixY8/PDDtGnThrZt2/LYY49RqVIlQkJCmDx5MqGhoVy4cIEnn3yS1NRU+vXrR0REBJ06dWLixIkATJo0ic2bNxMREUFYWNjlb4ZvZNCgQcyePZv77rvv8raxY8eSk5NDREQE4eHhjB07FoAnn3yStLQ0QkNDGTduHC1btrTtL0MIUSyST2RonxDCFqb3JTIpCaLW2jsSIcQ1XnjhBV544YWrtu3bt++6/by8vNi4ceN126tUqcKcOXOu2z5+/PjrtgUEBFw3dbGnpydTp069bl9PT09mz55dUPhCCAdS3vOJFFJCCCGEg7L1tVFCiPJFcop1ydA+IYQQQgghhCikclFIDZ66zqL58oUoL+TfhBCO4fDZNA6fTbN3GEIIIYqgXBRSQgghhBBCCGFNRSqklFKeSil3awcjhBBCCCGEEKWBRYWUUupDpVQb8/2+wHngglLqTlsGJ4QQQpRr0/saNyGEsAbJKVZlaY/Ug8Bu8/1xwFCgP/COLYISwqGVgSQ0LnE04xJH2zsMIYQDeOyxx9izZ49VjlWnTh3OnTt3y33eeafwHx1mzJjBiy++WNSwhBAlpLzlE0sLKS+tdbpSyh+op7X+RWu9HKhtlSiEEGWLKRfnvAx7RyGEsMDXX39NWFhYiZ2vKB98hBClQ3nLJ5YWUgeUUg8Co4BlAEqpKoB8UhJCXO1iIpzehffFY5Als5EJ4UguXrxI3759adasGU2aNGHOnDlERUWxefNmACpUqMDo0aMJDw+ne/fubNy4kaioKOrVq8eCBQsA49vcUaNGXT5mv379iI6Ovu5cAwYMoGXLloSHh/PVV18BMGbMGDIyMoiMjOTBBx8E4IcffqBNmzZERkYycuRI8vLyAJg+fTqNGjWiTZs2rF0ri3sL4Wgkn1i+IO9TwKdADvCIeVsv4E+rRSKEKP1ST8N3d0FOBumeNangXsHeEQnhmBaPgYRdBOcY/8nj6nzj/RJ2Gj8tGU4c2BTueO+WuyxZsoTg4GD++OMPAJKTk5kyZcrl5y9evMjtt9/OBx98wMCBA3nttddYtmwZe/bsYfjw4fTv37/gOMymTZtG5cqVycjIoHXr1txzzz289957fP7552zfvh2AvXv3MmfOHNauXYurqytPPfUUM2fOpEePHrz++uts2bIFX19funbtSnh4uMXnFqLcMeeUAlkxp0g+sbCQ0lpvAjpcs20mMNMqUQghSr/kOPi2P6QmQNUwcrPsHZAQ4lpNmzblxRdf5OWXX6Zfv3507tz5qufd3Nzo3bv35X3d3d1xdXWladOmHDt2rFDnmjRpEvPmzQPgxIkTHDx4EH9//6v2WbFiBVu2bKF169YAZGRkUK1aNTZs2EBUVBRVq1YFYPDgwezevRshhOOQfGJ5jxRKqR7AEKCa1vpOpVQrwEdr/ZdVIhFClF7nj8J3/SEjCYbNgxVvQlaSvaMSwnGZv+U9ZV6Mt37Vm/TeXvrWeMQfVjlto0aN2Lp1K4sWLeK1116jW7duVz3v6uqKUgoAJycn3N3dL9/Pzc0FwMXFBZPJdPk1mZmZ150nOjqa5cuXs27dOry8vIiKirrhflprhg8fzrvvvnvV9vnz5xernUKUOwX0Rl9mxZwi+cTy6c+fAaYAB4Eu5s0ZwFs2ikvko7UmMS2LPfEpvLtoL1tjL2AyaXuHJYTh3EGY3geyUmH4AqjV1t4RCSFu4tSpU3h5eTF06FBGjx7N1q1bC32MOnXqsH37dkwmEydOnGDjxo3X7ZOcnEylSpXw8vJi3759rF+//vJzrq6u5OTkANCtWzfmzp3LmTNnADh//jzHjx+nbdu2rFy5ksTERHJycvj555+L2GIhhK1IPrG8R+rfQDet9TGl1MvmbfuAEKtFIm7oZFIGY+fv5tDZi7i7ODFt7VGmrjpCgI87vcID6R0eSJu6lXFxLtLaylcZPHUdSUkZREUVP+5bnQNgzsj2tjuJreRmwfopELcRnN1h8ctQvRVUbwGV64H5W5dy5XSMcU0UwPDfIbAJADHxyeTm5uFnv8iEEDewa9cuRo8ejZOTE66urkyZMoWXXnqpUMfo2LEjdevWJSwsjNDQUFq0aHHdPr179+bLL78kNDSUkJAQ2rVrd/m5J554goiICFq0aMHMmTN566236NmzJyaTCVdXVyZPnky7du0YP3487du3x8/Pj8jIyOI2XQhhZZJPLC+kKgInzPcvdYW4AtlWi0RcJc+k+WH9cSYs2YdJQ63KXgT6uPN/w1vz974zLNmdwE+bT/DduuP4ebnSIzSA3k0C6digCh43u2hZFI3WsHchLBsLF46Bh6+xbet3sOFLYx/PylC9pXGr0cr46VXZrmHb3Knt8P0AcPGAhxZA1Ub2jkgIUYBevXrRq1evq7blnyErLe3KTJvjx4+/ar9LzymlmDnzxpdI57/uYfHixTfc5/333+f999+//Hjw4MEMHjz4uv1GjBjBiBEjLj9OTU294fGEEPYh+cTyQmoVMAZ4O9+2Z4G/rRKFuMqB06mM+WUnW2OT6NKoKm8PaMJLP+8AwNfTlQHNqzOgeXUysvNYeeAsS2MSWBKTwM9b4vB2c6Zr42r0bhJIVEg1KrhbfBmcuJH4HbDkVTi+BqqFGdf/rPrIeO6h3+DsXojbDCc3w8mtcGg5l79rqFzPXFy1MoqrwKbg4m63pljViY3wwyCjqBz+m9FWIYT1WenaKCGEACSnWJmln7KfARYqpR4HKiql9gOpQD+bRVYOZeXm8cXfh/ki+hAV3F34eHAzBkRWv3yh3rU83Zzp3SSQ3k0Cyc41se5IIkt2J7BsTwK/74zHzcWJLg2r0Cs8kO6hAVTydivhFpViqafhrzdh20yjZ6nvRGgxHJxdrhRSzi5GcRTYFFqZv+XISoVT28zF1RY4tgZ2mcfiOrka+9ZoZR4S2BL8618/JHB6XyKTkiDKQddNOboaZg2GigEwfCH41rhulzf9PyApKYmldghPCCGEEKIkWDr9ebxSqjXQGqiNMcxvo9badOtXCkttOX6el3/ZxaEzaQyIDGZsvzD8K1jee+Hm4sRtjapyW6OqvDWgCVuOX2DJ7gSWxiSwfO8ZnJ0U7epVpnd4ID3DAwnw8bBha0qxnExYPxlWTzSuiWr/NHQZDZ5+lr3evSLU7WLcLkk+aRRVJzdD3BajONtoLCaHh9/VwwGrt7J2i64TdyGd7zO74Ot0kZwTSYQGVcTdxcLhoIeWw+wHoVIdo0euYqBNYxWirNFa3/TLMVF4WsvES6J8k5xiPUXJJxaP+9LG0TcCG5VSXYHOwMpCn1FcJTUzhw+W7uf79ccJ9vVk+ojWdA2pVqxjOjsp2tStTJu6lRnbL5RdJ5NZsjuBJbsTGPtbDGN/i6FFLT+jNys8iFr+XlZqTSmmNeyZD8vGQVIsNO4HPd40eoyKy7e6cQszLzxnyoOz+64eErjqA7j0vYSLB55OXkYB5lu9+Oc3O38xm8//OsQP64+Tk9cBjWLq5LW4OTsRFuxDZE2/y7fa/l7XJ+Z9f8DPD0PVEBg2H7yrWC02IcoDDw8PEhMT8ff3lw8+VqC1JjExEQ8P+WJQlE+SU6ynqPnEokJKKbUSeFVrvdY8a98LQK5SarLW+p3ChysAVuw9zWvzd5OQksnDHerwUs8QvK18TZNSiogafkTU8GN0rxAOnUkziqqYBN5ZtI93Fu0jNMiH3uGBpGfnls9v905tgyWvQOw6CGhiTJxQ7zbbnc/JGQLCjVvL4ca2rDSI324UV2sn4ZZxHj5rAW2egE7PF2viiotZuXyz5ihfrTpCenYu97asSZ99L6OBjLumsf1EEttOJDFn0wlm/HMMAD8vV5rVMBdWtfxonfY3FX5/EoKbw9C54Fmp2L8GIcqbGjVqEBcXx9mzZy9vO5tqrFydfc62109mZmaW+oLjRm3w8PCgRo3rhxcLUR7cKKeUBMknV1j6qb0JcGnS9seBrhjXSK0FLCqklFK9gU8BZ+BrrfV71zxfC/gW8DPvM0ZrvcjC+OyvENe1nE3N4o2FMfy+M56QgIp88WALmtey/QdTpRQNAyrSMKAiz3RryInz6cZEFbsT+GTFAbSGYJXIe4v3cUeTQCJq+JbtbzhS4o2FY3fMAq8qcOen0HyYUejcii0u1HSvAHU6GbeDy0g9fwafui3gn89gy7fQ6Tlo+yS4Wd57mJ1r4seNsXz210HOpWXTKzyA0b1CaFCtIjHvGLPVhDcN4o6mQQDk5pk4eCaN7SeS2B6bxI64JD776yB3O62ki8tXbHcOY5bXm4RuTaJZTQgL8rHrDJFlPqeIMsfV1ZW6detetW385SUhIm167ujoaJo3b27Tc9iaLdsg+USURjfKKSVB8skVlhZSToBWStUHlNZ6D4BSyqJP/0opZ2Ay0AOIAzYppRZcOo7Za8BPWuspSqkwYBFQx8L4SgWtNXO3xPHWH3vJyM7jxR6NGHlbfdxcir8GVFHUrOzFY53r8VjnepxJyWTGxNH8k92Q/1t9hC9XHibI18NYq6pJIK3rVMbZqYwUVTkZ8M/nsOZjMOVAx+eg84vGDHQOwuTkBndPhQ7PwF//Mwq+DV9B1MtGsefsevPXmjQLd57ioz8PEHs+nXb1KvN/DzUusFh3cXYiNMiH0CAf7m9TC4DMdV/hsXQqJyq14xu/cWw6nslPu4x/tq7OirAgH5rlGxJYt4p3iRTfklOEENYi+UQIUVSWFlJrgM+BIGAegLmoOmfh69sAh7TWR8yvnQ3cBeRPUhrwMd/3BU5ZeOxSITYxnVfn7WLNoXO0rlOJd++OoEG1CvYO67JqPh70ddtGL6dN1H5pFSv2nmFJTAI/boxlxj/H8Pd2o0dYAL2aBNKhvr/lkxM4Eq1h9y+w7HVIiYPQO43roBx56u7AJvDAHDj+DywfD78/bxSBt78GYQPA6UoRrrUm+sBZJizZz974FEKDfJgxojW3NapatOJm3WQ8lr4KjXpT895v+czV6AJPSM40eq1OJLH9xAV+2RLHd+uOA8b0/BE1fIm7kA652pYXwZb7nCLKhuxcE6byOKTasUg+EUIUibLkmhillD/wIpADfKC1TlNK9QUaaq0/seD1g4DeWuvHzI+HAW211qPy7RME/AlUAryB7lrrLTc41hPAEwABAQEtZ8+eXWD8727IAOCVtp4F7ltUlVaNAQ0XbrtqNAB5Js2fx3OZdzAbJwX3hbgRVdMFp0J+uKy0agwAF7q8V8CeRXejNmTmanady2PL6Vy2n8kjMw88XaBZVWdaBrgQUcUZdxfL22LrdkRu+y95eXnsanX18SumHKDBoa/xTdlPaoW6HK7/KEmVmtokhuJ6d0MGeXl5vNbhmkJba/wTN1HvyPd4p8eSWqE+R+o9xIXKkRxKyuPn/dnsv2CiqqfinoZutAlyvun7rKC/Q63jP1Hv6EzOVO3I3tDn0U636AHTmlNpmsPJeRxNMnE42cSJVBPOSvNNL8u+LOjatesWrbXFUxbaO6eUhLS0NCpUsN2XLbbOizd9H5dCtvpb5Jo0Ty5PJ0/DB1088fe03egEW7+fSkJh2lCYnFIe8gmUv/eAo5I2OAZr5RNLpz9PBF69Zpu1LxS5H5ihtf5IKdUe+F4p1eTaKda11l8BXwG0atVKR0VFFXjgKfuNMehRUe2tHPIVMf+4kJubS/54Yk4lM+aXXew6mU730AD+NyCcIN+ifWiJ+cf4U1nS3qK6URsAept/ZuXm8c+hRBbvjmfZntOsj8/C3Tzteu8mgXRrHICv180/cF86B9iwHUf9SEpKunL85JOw4g3YOQe8q0H/z6kY+QCRBV0HZUdT9q+7ug1X6QqmF2HnHCr+/Q7Ndr7OHs8WfJR0N4nejXnzroYMaV2rwOGiN/07aG0MJTw6EyKGUO2uyVRzLvwEKIOm/MO5CzdrQ4mxWU4pCdHR0Tb9/dk6L976fVy62Opv8e0/x8gxxaCAn2I9mfV4O5sNobb1+6kk2LkNpTqfgN1/f1YhbXAM0oYrLJ21zw14GIgErirftNYPWXCIk0DNfI9rmLfl9yjmz+xa63VKKQ+gCnDGkhgdSWZOHp+uOMhXq45QycuNyQ+0oE/TQMeduCE3C46sJCg3Dm3ScGAp1IsCl6tnkXJ3caZr42p0bVyN3DwTG4+d58+Y0yzZncCfe07j4qRoX9+f3k0C6REWQLWKdpzRJTsd/pkEaz4xphXv9AJ0fsFY56m0c3LmVJ2BfF69AZ6J3zEqfT4L3V8jt8FduDQcB0W95k5rWPoqrP8CWj4MfT++auhgYTg7Kdydbfp+L1c5RZQ9KZk5fLriID4eLlSp4M6Go+eZEn2IUbc3tHdo5ZHkEyFEkVj6VfO3QDNgIXC6COfZBDRUStXFSE5DgAeu2ScW6AbMUEqFAh5Ayc7naAXrDifyyq87OZaYzn2tavBqn1D8vNzsHdb1stKMxVX3LjQKp+xUfDF/aJ51H7hVhEa9jOuIGnQ3ZpXLx8XZiQ71q9ChfhXG9Qtj5+W1quL577zdvDZ/N61qV6JXeCC9wgOpWbmE1qrSGtfsJPi8FaScNK4j6vGGsYBsGXDhYjZfRB/i23XHQcOw9k+hO7wB27/EZd1k2P87tHgIbnsZfIIsP7DJBH+8AFumQ9t/Qe/3wFELf0O5ySmibPoy+jDnL2bTJNgHLzdnmlT35ePlB+nQoAotSmAWV3EVySdCiCKxtJDqDdTVWicV5SRa61yl1ChgKca0odO01jFKqTeBzVrrBRjXYP2fUup5jIs6H9alaFGjNO3O11m9WPZ/66lV2YuZj7WlYwMHW7A04wLsX2IUT4dXQG4mePlD+AAI7c/+n8eTm5tLxP1vwd4FsH8R7J4LLh5Qv5tRVIX0vm4NIScndXnWtpd7h3Dg9JW1qt76Yy9v/bGXJtWNtaoa5FWmpvN567brwnE4tsa4ndyMd14W+DWDe76G2h2sey47Sc/OZfraY3wZfZi07Fzubl6D53s0pEYlc4F6+3+hzePGwr6bp8OO2dDuX9Dx3+Dpd+uD5+XCglGw40ej567bOEcvospFThFl16mkDL5Zc5QBkcHEJ2cC8NbAJmyNvcBzs7ex6NnOVPS49TBpYT2ST4QQRWVpIRULFGu1QPN6C4uu2TYu3/09QMfinMNeluyO55W0J0jWXoy8rR7/7tYITzcHuQYn9TTs+90ono6tBlMuVAyGFsONwqhWezBfA6PVm2jlBI16Gre8XGOR2r0Ljdv+P8DJBep0Nl7buB9UDLjqdEopQgIrEhJYkee6N+R44sXLa1V9+OcBYCT/8ZxPeHHalL9wOrYGkmON7Z6Vwb0CF3VVvB+PLvKwNEeSk2di9qYTTFpxkLOpWXQPNdaCCgm8wRDFCtWgzwfQ7in4+21jevfN040hjW2eANcbXJ+XlwO/PAZ75kPX1+C20TZvk7WU5ZwiyraP/jTW7XuxZwgv/bwDAB8PVz4dEsl9U9czdv5uPhlSutdoKW0knwghisLSQuo74Del1KdcM7RPa/2X1aMqJU6nZDLut90sjTlNfac0xrr/yN13zLd3WEahcal4il0PaGOK7/ajILQ/BDe3rMhwdoG6nY1b7/fg1Dajp2rvAmMY2B8vQs22RlEV2u+Gw+dq+3vzRJf6PNGlPgnJmYyY8C2fZ/TmzvPplg330xqSri2cThjPeVaGOh2hwyhjIduqofDtneQkJZX6IkprzcIdp/joz/0cS0yndZ1KTHmwBa3qVC74xZXrGr1xHZ411p9aNg7WfwlRYyDywcuFs9ImmDMMDiyGnm8Za1YJIWxqz6kUft0Wx+Od612XA1vWrsxz3RoycdkBbgupysDmNewUpRBCCEtYWkhdmgL0nWu2a8CBF+GxDZNJM3vTCd5dtJfsPBOv3NGY9mveQ+fl2C+os/vNRc5CiDe+4SSgKUS9YhQ61UKLN1zLyQlqtDRu3cfDmb1Xeqr+/K9xC4yAsP5GsVY15LpDBPp68B/P3xiV9ijPzt7GzyPb4+J8TcGjNVw4ZhRMx9deXTh5+UPtjkaBUKcTVG18fcE04g+2R0cTVfSW2pXWmqT0HI6nap75cRuNAysy7eFWdA2pVvjJSoIiYOhc43e4fDwsfBbWfQ63j0VpE7Vyj8OBGOjzoTEsUAhhc+8u3ouPhytPRzW44fNPd23AmoPnGDs/hha1KlHb37uEIxRCCGEpS6c/r2vrQEqLw2fTeOXXXWw8ep4O9f15Z2BT6lTxJm7VeTxMF+Gvt41riPLfvCobPz38LvcGFJvWEL/9SjFz7oCxvUYb6PE/o4fIVgvNKgUBYcYt6mU4fwT2mnvA/nrLuFVpZO6puhOCIi8XcdWcUnjacwkTYgcwacVBXujR6ErhdOmWEmecx8vfKJg6Pmf8rBJS6nuabmXHiSTeX7KP/adTcXGCifc1467I6sWfDrlOJ3h0Gez7w+ih+mkYITjhhAnumgzNh1qnAUKIW1p54CyrD57jtb6hN10qwtlJ8fGQSO74ZBXPzt7O3H+1x/XaL5yEEEI4BIs/1SulXIAOQHUgDlintc61VWCOJifPxFerjvDpioN4uDgx4Z4I7m1Vw+glWPkBNfLiyMMJVn9oTLd9M+4+xsX/npVvXGxddbu0zc94rdZw/J8rxVPyCVDOxgflNk9A477gE1wSv46rVa4HHZ81binxV4YVrvkEVn8EvjWvFFVa091lO1Xq1cF19RdkbT+Me3q8cRyvKkZb6vz7So+Tg096YA2Hz6bx4dL9LN6dQGVvN2pX9sLNlMHdLaw4rEcpo7hu1Bt2ziZ7wUucc6pCTSmihCgReSbNu4v2UrOyJ8Pa177lvtX9PHnvngiemrmVT5YfYHSvxiUUpRBCiMKwdB2pxhhTn3sCJzDWW8hUSt2ptd5rw/gcwo4TSbz8y072JaTSt2kQr/cPu7JG0soP4O+3SHLy47gOpNnYdZCVbMyQl3EB0i9cuX/5dv7K/eQTkH4eMpNuWYA1vjQ1+fQ7wNkd6t9uDNsLucMowhyFT5AxTKzN40a79i82iqpN38D6LwhF4YSm0akJnHfxZU1mOB16PI9nw9uM4YDloHC6JCE5k09XHOCnzXF4uDjxXLeGPN6lHo/O2ERSUqZtTursAs2HcmTxl7Y5vhDihn7dGse+hFQ+u7857i4FT0bUp2kQg1vV5Ivow3RqUJX29f1LIEohhBCFYWmP1BcYK3V/eGm6T6XUS+btXW0Um92lZ+fy0Z8HmL72KFUruvPVsJb0DA+8ssPKCcbsaBFD8Es6AcnJxtCzSz1KhWEyQVbKNYVWkrkYO4/zlhlGodX7XWjYwyYLy4a/uobo6GjrHdCrMjR/0LhlpcLBZVz49UWylAfB/5pPXGY1Rk5ZR89jAUzuEOK4CxZfY/DUdQDMGdm+SK9PTs/hi5WHmLH2GCatGdauNqNub0CVCsWaGLNQwoN8bXr8OSPbW/e9JMQNFPffYknJyM7joz8P0KymH/0iLF/f7fX+YWw6dp7n52xn8XOdqeRdtDUJB09dR1JSBlFRRXq5RccH2/4dYt7pRKXcXIhab7NzCCFEYVlaSEUCPa5ZM+ET4L/WDshRrDpwllfn7SLuQgZD29XiP70b45N/XY/o9yH6HWh2v3Gdybf9i3dCJyfzkD8/4AaXpB1dZfxscnfxzmMv7hWhyd0kLJgIQHDVECKAl3qF8N7ifczZdIIhbWrZN0Yby8jOY8Y/x5gSfYjUrFwGRFbnhR6NSm6xYiGEXUxbe5SElEwm3d+8UF8Yebm5MOn+5gz8Yi1jft3Jl0NblpovnIQQojywtJA6BdwG5J/qvLN5e5ly4WI2//tjD79uPUm9qt78/K/2tL52yulriygnB1kzqhR6onM9Vh88yxsL99CqTmUaVKtg75CsLjfPxE+b4/h0xQFOp2TRNaQq/+ndmNAgH3uHJoSwsXNpWUyJPkyPsADa1C38MOwm1X35T6/GvL1oLz9uPMEDbcv2F05CCFGaWFpIvQosUEr9DhwHagN9gTJzpbrWmgU7TvHmwj0kZ+TwzO0NeLprAzxcrymSot+D6Heh2QNw1+dXiihbT7s94g9bHdmunJwUE++LpPcnq3hu9jZ+faqDRdcPlAZaaxbvTuDDpfs5cu4iLWr5MWlIc9rWk2sdhP2NS7y0+PIau8ZR1k1acZCMnDzG3FH0CSMe7VSXVQfP8ubvMbSuU4mGAdYf2l0c8l4SQpRXFs2pqrVeALQAdgMVzT9baq1/s2FsJeZkUgaPzNjEc7O3U7OyF78/24kXe4ZcX0T9/a5RREU+eHURJYolwMeDDwY1I+ZUCh8s2W/vcKxi7aFz3DV5LU/N3Iqzk+L/HmrFL092kCJKiHLkyNk0Zm2I5f42Nalftei97U5Oio/ua4a3mwvPzt5OZk6eFaMUQghRVBZPf661PqCUehuoApy75nqpUinPpPl+3TEmLDU+vI/rF8bwDnVuvG7P3+/Cyvcgcij0nyRFlJV1Dwvgofa1+XrNUTo3qsptjaraO6Qi2RWXzISl+1h98BzBvh58MCiCu1vUKP5aUEKIUuf9Jftwd3HiuW6Nin2sahU9+ODeCB6ZsZkJS/Yz7s4wK0QohBCiOCyd/twP+Ay4F3AFcpRSPwPPaa3P2y482zlwOpWXf9nJttgkujSqytsDmtz8ov+riqjPyvSisPb0ap9QNhw5z4s/7WDJvzuX6Cx2xXX03EU+/HM/f+yMx8/Lldf6hjK0Xe3rezWFEOXCpmPnWRpzmhd7NKJqRevkstsbB/BwhzpMW3uUzo2q0DWkmlWOK4QQomgs7ZGaDuQBzblyjdQbwDRggE0is5Gs3Dwm/32YKdGHqODuwieDI7krMvjGMyFpbQzlW/m+FFFW8qb/BwDMucFzHq7OTLq/OXd+voaXft7B9IdbO/wMVWdSMvl0xUHmbDqBq7MTz9zegMe71Lt6hkchyqFxiaPJzc0F7rB3KCVOa807i/YS4OPOY53rWfXYY+5ozPojiYz+eQeLn+tiUZFWnv8WQghhS5YWUrcDgVrrDPPjvUqphylls/ZtOX6el3/ZxaEzaQxsXp3X+obif7NeD63h73dg1QRoPhTulCKqJIQEVuS1vqGM+y2GGf8cY0THG0wF7wBy80x8sHQf09YcIyfPxANtazHq9gZXFmoWQpRbi3YlsC02iQn3RODpZt1e6ctfOH125Qsnp1sNHdYad1MmuVp6x4UQwtosLaT2AXWAvfm21QJKxcwAuSZN3Pl0Bn25jmBfT2aMaE3UrYZEXFVEDYM7J0kRVYKGtavNqgNneXfRPtrW9Scs2HGmCc/NMxGfnMGppEy2xCbRv1kwL/ZsRG1/b3uHJoRwANm5JiYs3UfjwIrc07KGTc7RKKAir/ULY+z83Uz/5xiPdrrJF05aw5+v0SD3IJm4waHl0KC7TWISQojyyNJCagXwp1Lqe+AEUBNj6vPvlVKPXNpJaz3N+iEWX1J6NqdTs3ikY11e7NkIb/dbNFtr+PttWPWBFFE2YMnK90opJgxqRu9PVvHs7G0sHNXJ4m91B09dR1JSBlFRxQz0BuKTM3j2x23Ens/A19OVmY+1pUl1X6ufZ87I9kRHR1v9uKL0sOX7WBROYf8WP6w/zvHEdGaMaG3RJDOW5MQbGdq2FqsOnOX9xftoW7fy9bkoLxcWPgvbZ5Ls5IuHKR1+uAca9oSeb0PV4k+AIYRwPIOnrgOKnltE4VhaIbQHDpl/3mf+eRjoAAwz3xx2TSl/bzeaVvdh3J1hBRdRf71lFFEtHpIiyo4qe7sx8b5IDp1J460/9tg7HP7ef4Y+n64m5lQK9at60ziwok2KKCFE6ZWckcOkvw7SqUEVm888qpTi/XsiqOTtynOzt5GenXvlyZxM+Hk4bJ8JUa8Q51yT/aoe9HwLYtfDF+1g8cuQXirnihJCCIdh6TpSXS243W7rYItKKYWXWwGdb1rDX/+D1R9Ci+HQ71MpouysU8MqjOxSj5kbYlmyO8EuMeTkmXhv8T5GTN9EgI8HC5/pVKpmExRClJwvog+RnJHDK30al8hEOZW93fj4vkiOnLvI/343j7zPTIGZg2Df73DHBIgaA0qhlRN0eAae3QYth8PGr2BSc9gwFfJybB6rEEKURRZVCkqpqkqpCub7zkqpEUqph5RSZaPSuFxEfWQuoj6RIspBvNgzhKbVfRnz607ikzMKfoEVnUrKYMhX6/ly5WHub1OL+U93LNaimkKIsivuQjrT1x5jYPPqhAeXXG91hwZV+Ndt9flxYywrtsTAt3fC8X/g7v+DtiOvf4F3Fej3MfxrDQRHwuL/wJQOcOBP4/9CIYQQFrO0WvgdaGi+/w7wEvAC8JEtgrK2cYmjGZc4+sZPag0r3jSKqJYPSxHlYNxcnPh0SCTZuSZemLODPFPJ/Ee/Yu9p+kxazb74FD4dEsm7dzeVNaFEiRmXOJoJWW/YOwxRCB/9eQAFvNQzpMTP/UKPRnQLyqbewkHoM/vg/h8h4r7Lz7/p/wH/cX/96hcFhMOw+XD/HDDlwax7jWuozuzF0WRk53EyrxJpWmZFFUI4Fksnm2gEbDfffxDj2qg0IAZ43vphlRCtYcUbsOZjaDkC+k6UIsoB1atagfH9w/nP3J18ufIwT3dtYLNz5eSZ+HDpfqauOkJokA+TH2hOPemFEkLcwu6TyczbdpIno+oT7OdZ4ud3vXCYqTmvkqEvMN7vLcY16IlFX/soBSG9of7tsOlrY+H5KR2h1SMQ9Qp4+9s0bq01F9JzSEjOJCElg4TkLBJSMklIziAhJYvTyZnEJ2eQkpkL/Ivn3ebT0aYRCSFE4VhaSOUBbkqpRkCy1jrWPKyv9H7CzF9EtXoE+nwkRZQDu7dlDVYdOMvEZQfoUN+f5rUqWf0cJ5MyeGbWVrbGJvFg21qM7RcmvVBCiFu6tPhuZW83noyqX/IBnNoGP9yDi3Jiw23f8+2f2VSNPsSo2xsW/NpLXNyg/VMQMdhYhH7zNNj1E9w2Blo/ZjxfSDl5Js6kZhlFUnImCSmZnE7JJD45k9PmxwkpmWTnmq56nVJQtYI7gb4e1PL3om29ygT4eJC38kMaE1voOIQQwpYsLaQWAz8B/sBs87Yw4KQtgrI5rWH5eFj7iRRRpYRSircHNmVbbBLPzd7Oouc6U+FWMzAW0vI9p3nxZ2Po4OcPNKdfRLDVji2EvWmtScnMvfKBNjmTnVkdqeV0jlCTvvWCruKWovef5Z/DiYy/MwwfD9eSPfnR1fDj/eBZCR6aT7fK9eh/ejsfLz9IhwZVaFHYL5y8/aHvh9D6UVj6Kix9xeip6vU2NOptVDn5ZOea2BufwuLslpzI8yfr282cNhdI59Kyrrvkys3FiSBfDwJ8PIis6Xf5fqCv+ebjQdWK7rg6X///ccy63eTm5l63XQgh7MnST6KPAcOBHOB787YqwHgbxGRbWsPy12Htp9DqUejzoRRRpYSvpyufDonkvqnrGDd/NxMHRxb7mNm5JiYs2cfXa44SHuzD5AdaUKeKLK4rSo88k+ZcWhbx5m/+L3/rn3KlJyAhOZOMnLxrXtkFgIWT1/Kf3iF0bmjb6brLotw8E+8u3ksdfy8eaFu7ZE++7w/4eQRUrgvD5oFPMAp4a2ATtsZe4LnZ21j0bGcqFqW4qxYKQ3+Fg8uMgurHIeh6UZxqM5ZNGUFsP5HE9hNJ7DmVQnaeCeiJNxnUOJ9OoK8HYUE+VxVHl376eblaPpuh1pAcB6dj4EwMNXJjOaP9Ct8WIYSwIYsKKa11FvCVeThfABCvtY62ZWA2oTUsGwf/TDKKqL4fXfcNm3BsrepU5tluDflk+UG6NKrKgObVi3ysE+fTeebHbWw/kcRD7Wvzap9QGconHEpmTt5VxdDln/mGSp1JzbpuEhYXJ3X5m/6wIB+6hlQzvv03f6AN8vXgzJQ+rM1pzJyL9zHsm410bODPy70bE1HDzz6NLYV+2RrHgdNpTHmwBW4uJfiF3PZZ8NsoY9a9B+eCV+XLT/l4uPLpkObcN3UdY+fv5pMhzYt0igvpOWzXkexs9B2V9/1A/yMzCDzcnbS82/lTDaFGjZqM6FiHyJp+eP72CFVUKk2eX1O09mSmGJNcnIkxCqfTMXB6D2QlX97FE1dcVem9mkAIUTZZVEgppfyAL4BBGL1S3kqp/kAbrfVrtgvPivIXUa0fM3qipIgqlUZ1bcCag+d4bf5uWtSqRC1/r0If48+YBF76eQdawxcPtqBP0yAbRCpE4aVk5vBtZheWZkeSPHbJdc9XcHchwMedIF9P6tevQqCvO4G+nsY3/+biyd/brcDheink0M11FyNfmswP62OZ/Pch+n++lr5Ng3ixZyOZZKUA6dm5fPTnAVrWrkTvJoEld+J1k41eonpRMHgmuF//d2pZuxLPdWvIxGUHuC2k4J7GzJw89sSnsMPc07T9RBLHE9MB47/JRtV6c7hxH+7PnMWDx2fzoNtGVJP/GNOru7gTszDVstjzcuH8ETi9G87sMRdMuyEp37VP7j5QLQyaDjJmFgwIh2qhHJzYV4b2CSEcjqVD+74ELgC1gT3mbeswpj93/EJKawLyEqSIKiNcnJ34ZEgkd3y6mufmbOOnke1vOKb+RrJzjQV2p609SpPqxlC+2v6FG8o3Z2T7ooQtypCYdzoBEP5qEb+Bv4HMnDy+W3eML6IPk5TdkfbOe+nY7a4rRZKvOwE+HtcP1crLhYwL5tsxOHXp/vl82y9Aev7HSYTnJGNC4fRZMx71CeahhoHsTPZixX5nPt1bibCQxtwd1ZqqQXXApfwuQj0ucbT5A/wdV23/evVRzqRmMWVoixJZfNdY7/AtY9H40P5wz9e3/Ls8bf7Caez8GOpXvZLjTCbNscSLlwumHSeS2BOfQk6e0asZaL5+aUjrWkTW9KNpDd9816N2grPPwZ+vwbKxxqQUPd8yYrv2d5B25krv0pk95uJpH+RlGc8rZ6jSEKq3MtZvDGgCAWHgW/OG/z+HB/mSlJRUnN+gEEJYnaWFVDcgWGudo5TSAFrrs0qparYLzXr8TElUMZ2D1o9Dnw+kiCoDalTy4t27mzJq1jYmrTjIixas3XLifDqjZm1lR1wyD3eowyt9GuPuIkP5hH3l5pn4detJPl5+gPjkTG5rVJV7494hTB+iXuVgo/CJvaYoulwkJUFWys0PrpzAw8+YjMCzElSoBlVDwLMSZzb/itKaqrU7QuopXM/G0DIlnpZOF40VBg+bb4DJ0x8n32CoGAw+QeBTHSoGXX3fw7fc5NazqVlMXXmYO5oE0rJ25YJfUFymPFg0GjZ/Ay0eMq93eOvc5eyk+HhIJHd8sopDZ9LwcDIx7JsN7DiRZJ5OHLzcnImo4cujneoRWdOXyJqVCPQtYK2mqiHw4M9wcLnRMzbnQWorb1Kc/GDJq1eG5108e+U1FQKMnqU2j5sLpnCo0ghcZV0oIUTpZmkhlYwxuUT8pQ1KqVr5HzuyZCdfFJpgKaLKlH4Rwazcf5bP/z5ExwZVaFfv5mueLNmdwOi5OwD4cmgLejeRoXzCvrTWLI05zYd/7ufQmTSa1fTj43tCaXfhd3JiV+NKLsx/0tg5f0HkVdn4YFq1MXhWvlIkeVYCr0pXP3b3velkOme3rQWg6t1T8wdlFGYppzhz8ijLN2wnIe4wNTOSaeOVQc2UUzid3ALp564/oKsX+ASbC6xgquUmkKmdjZ6JCqXiOzeLfbL8AFm5Jv7Tu7HtT5abDfNGQsyv0PHf0H28xf+PVffz5L17Inhq5lYuYhSAfSOCiKzpR7OafjSsVhHnos7Y2LC7Mbxwy3Q8Fr1MhbyTRg9VtcbQqBdUC78yNM+7StHOIYQQDs7SQupr4Bel1H8BJ6VUe+AdYOqtX+YYtHLignNlgqWIKnPG9w9n8/ELPD9nO4uf63zd81m5eby7aB8z/jlGRA1fPr+/RZGuqSpzRvxh7wjKtfVHEnl/yT62xSZRv6o3X93fhB4Zi1ELH4XUeLKVFycIpN4zC41iyd2nZGYXVcroWfLwpVq1UB5o3oc9p1KYsHQfo/efJdDHg393b8igZlVxST8NKfGQchJS4yHllHFLjYfj/1DFdBYFMDHUmDq75cPGwq8F9KQ4ukNn0pi96QRD29airq1n+My+CD89BIeWQ/c3oNO/C32IPk2DaFbDl/S0FJb8u4t143N2gTaPc3DZNFzIpeEr60v931cIIQrD0kLqfSADmAy4AtOAqVrrT2wUlxAW8XZ3YdKQ5tw9ZS1jftmFzrdwSWxiOk/P2squk8mM6FiHMXfIUD5hXzGnkpmwZD8rDxhFyYcDGjJQr8B52UhIS4BaHeDurzg26xVy8/Kgcj17h0xYsA8zRrS5XPyN+XUXX632ZnTPEHo3aXfT64P2vN0R59x0GrfrC9t/hH2/G8MAmw81bn61Srgl1vHe4n14uTrzbLdCLHhbFBkXYNZgiNsEd06ClsOLfCgPV2cybfhFokk5k42zFFFCiHLH0unPNfCp+XaZUqqv1lq+2hZ21bSGLy/1DOHdxfuoW8ULN2DRrnhenrsTpWDqsJb0Ci/BWbWEuEZsYjofLdvPb9tP4evpythedXjILRrXNU8ZBVTtjnDP/0GdzkavkAP2nrer58+vT3bgzz2n+WDpfp6cuZVmNXx5uXdjOjS4wdAtpchS7sZkBLePgwOLYcu3sHKCcat/u3G9T0gfcHEr+QYVwYYjiSzfe5rRvULwr2DDCThSE+D7uyHxINw7A8Lust25hBBCFFmBhZRSqiEQARzSWu8wb+sPvA7UBMrW4HdRKj3euR6rD57jn8PnqOAKT83cSrOafnx+f3NqVpahfMI+zqZm8flfB5m1MRZnJ8WzXarzZMU1eG4YBWmnoXYnY/a1utcPS3VESil6hQfSPTSAX7bG8cmyAzzw9QY6N6zCy70b06S6741f6OJmFANhdxlTXW+bCdt+gJ+Hg1cViLwfmj8EVRsVKp78PdC2ZjJp3lm0lyBfDx7tVNd2Jzp/FL4fAGln4YGfoH5X251LCFHmaK1LZiZRARRQSCmlHgb+DzgP+CulXsCYwa8pxtTn0yw9kVKqN0aPljPwtdb6vRvscx8wHtDADq31A5YeX5RvTk6Kifc1o8N7f5GSrXm0U11e7t24ZBfJFCXKkXNKamYO/7fqCF+vOUpWromhLavxkv9aKm5+ziig6nSGe74pNQXUtZydFPe1qkn/ZsH8sP44n/99iH6freHOZsG82KMRdW517ZBfLej6Ctz2Hzj8N2ydAeunwD+fQa32Ri9V2ADScSM+OZPT5sWH45ONBYjzL0x8NjUTd3IYPHUdkbX8iKzhR2QtP4J8Pa3e5t93xbMjLpkP721m3YW7p/c1fo74w5jt7vuBkJcNwxdCjZbWO09pN+IPtkdHE2WjwztyPikV8r+Phd2sOnCWzccvEOTrQZ5JF30yGWGxgnqkXgb6a60Xm3uhfgEmAYO01jmWnkQp5YxxfVUPIA7YpJRaoLXek2+fhsArQEet9YXSMrW6cBzVfDwIDapIUnIqY/uF2TscYUOOmlOycvP4ft1xJv99iAvpOQxoUomxgRvw3/5v2GUuoAZNgzqdbB1KifBwdeaxzvW4r3VNvlp5hG/WHGXxrniGtKlJL5M3PiRf9xqtNecvZhvFUG5TEuq8Tar3U9Q4sYCWpxYSFPskqfNfYH5uR2bndSVGX+n98fFwIcjXkwBfDxoHVsRp52zStAcncqsxbc3Ry2shBfi4X56ZLrKmHxE1/PKthVR4OdqZCUv2ERrkw8Dm1Yt8nFuK3QCz7gVXbxixxJj9TpQIR80nQhTG2dQsXvhpOwrFyaRMhn69gU+HRFLNR5YZsKWC/mcJ1lovNt9fCOQBYwpTRJm1wRgaeARAKTUbuIsri/sCPA5M1lpfANBanynkOYTAy82FbFf5BqYccKickmfSzNt2ko+XHeBkUgbd6lfgfzV2Ebz7Szh0Bup2gUHToU5HW4VgVz4errzUK4SH2tfms78O8ePGWH42/YueLtsI/GMPCSlZJCRnkJCSyemULLJzTVe93klB1YrdCfTtS2f3g3TPWMr9yX8zzLSctMrhZDYdilfLIXj5XL1mU8yBpwEIf/p1snLz2HMqhR3mhWa3n0hiacxpwLjkrGG1CkTW9COyZiUia/rRKKACLjdayDsvx+g1NM9CWCkvkaN5tWmd/CdPtArD+VA6uHiAq6dxc/E01kPK/7OwMyxmXDCG81UMgmHzoFLtwr1eFJdD5RMhCktrzei5O0jJzCUsuCIXs/LYduICfSat5pPBzenUUJYgsJWCCqnLn0i11loplV6EIgqgOnAi3+M4oO01+zQCUEqtxehaH6+1XnJdQEo9ATwBEBAQQHR0dIEnr5RrLD5oyb7FkZaWZvNz2Fppb0NSUgZ5eXmlug1Q+v8OYPM2OERO+fvvv9l+No+5B7I5maZpXDGHmXX+pvWZ+bidTOKCXwTHIv9Nsl84HMuBYwUfG+Bd5/+SRx6v2fA9YKu82M0PmnT04I9/drEwty2ua49S2UPh566o7qFoWtOZSu4u+HkoKnsoKnkofN2UeQhKHlCPJJ5kfc4wqp1ZRVD8n1RZ+Qp5q18noWpH4oN6kuwbCkrdsA11gDqBMCBQkZbtxZHkPI4kmziSlMHfO86xect5AtV5ajidp7FHEvXcLlDd6Tz++gLeOYm4ZSehuHLtVTAQ7HSKfm7rYLVlvwOTcsHk5E6esxsmJ3dMTm7m+5duV56rnBiDW04SaRXqsLPxOHJ2HAWOWuVvccmTIZCWZru8GOlp/L5K8f+xds0nJcWWOTkyKQmA7TZs77sbjP/fwXbnKAm2+Dv8eSyH6P3ZDA11Y1NCGq7A2DbuTN6eybBvNnBnfVcGNHDFyUrXTpX2zyjWfC8VVEh5K6Vi8z32veYxWmtrzWHrAjQEooAawCqlVFOtddI15/sK+AqgVatWOioqqsADx/xjNNOSfYsjOjra5uewtdLehin715GUlFSq2wCl/+8ADtEGm+aUmNwa/LTPnc3HLxDm78zXoVtofGQ6KuEs1L0NosZQqXYHKhUh8JJ4H9s6LzbZMY5nchbQatyaYlz43A/0+xC/Heet3xG482cCT/8N/g2hxUPsc4Y85UJUly6Qngipp65e2yo9HjJOQlY85MSDc7LxEfiSXEjK8SZBV2anrkySS22c/IKpWK0WAdXrUrtuQ977+nuWZTfjh4eb0aCSC+RkQm7G1T9z0iE3E3IyIDcTp5wMnHIzcTE/Jifj8nPGz4uQc854nJcKnn5UHLWSjh43mazDCmz67/GoH1Dm/4+1WT4pKaX9PSD/v9/YnlMpzF22lu6h1fjfQ60Y8tV6AB68sz0De+Uy7rcY5m6J47SpIpPub06AFYb6OcD/78VizfdSQYXU7cU+g+Ekxgx/l9Qwb8svDthg7vE6qpQ6gJG0NlkpBiFE2WG3nJKTZ+KN9EFszG1I7fPn+bXZVprHfYfadRbqRcFtY6B2++KcosxwU3nFnz1KKQhubtx6vgUx82Hrd7BsLI1Q5OICbwcYEzRc9TonqBAIPkHg38Aobn2CoGIw+JhvFYPwcvIgKz6F2LgktscaQwKP7LwIO0GpkygdRVfnnTRo/FDx2nEzly7St2ERJQokn1FEqZSRncezs7fh5+XKhEHNrsu3Xm4ufHhvM9rV82fs/N30+XQ1Hw+OpEujqnaKuOy5ZSGltV5ppfNsAhoqpepiJKchwLWz3cwH7gemK6WqYHSjH7HS+YUQZYvdcoqrsxPBKpGv3BfRw/Uwav85qNcVosZArXbFPby4FTdvaP6gcTu7n/NT+uBCLm7thhuL/VYMulIkeVcD54InmHADmpknpnjIXP8mp+ewI84oqnZEz2WYy1/Af23aNGFX8hlFlEr/+2MPh8+m8f0jbansffP1+Aa1rEGzGr48PWsrw6dv5OmoBvy7e8MbXycqCqXo0xgVgtY6Vyk1CliKMbBimtY6Rin1JrBZa73A/FxPpdQejIHyo7XWiSURnxCidLFrTsnLZYLzFNzIgaDbjR6oWtdeTiFsrmoIp12CAPDr8aZVD+3r5UqXRlXp0qgqMRv+INd8LZYom+QziiiNluxOYNaGWEbeVs+iySQaBlTkt6c78fqC3Xz+9yE2Hj3PpPubE+grs/oVR4kUUgBa60XAomu2jct3XwMvmG9CCHFLdsspzi6cdQ4gS7lRb9g8qx5aCGEf8hlFlCbxyRmM+XUnTav78mKPEItf5+nmzIRBzWhf35//zttNn0mrmXhfM6JCZDb/opI+PSGEKKQk50pkON1i0VkhhBDCBvJMmufnbCc718Sk+5vj5lL4j/IDm9dgwahOVK3gzsPTN/H+kn3k5pkKfqG4jkU9Ukqpl7TWH95g+wta64nWD8u63vT/AIA5do5DCCHKizf9PyApKYml9g5E2N6IP+wdgRDlxpcrD7P+yHk+GBRB3SpF/0KvQbUK/DaqI28sjGFK9GE2HzOG+gX5elox2rLP0jJ23E22v2atQIQQQgghhBA3ti32AhOXHaBfRBCDWtYo9vE8XJ159+4IPh0SyZ5TKfT5dDV/75O1pgvjlj1SSqlL0587K6W6km+BXqAekGqrwIQQQgghhBCQmpnDc7O3E+jjwdsDmxZ/aYl87oqsTpPqvjw9cysjZmxi5G31eKlnCK4yq1+BChra9435pwcwLd92DZwGnrFFUEIIIYQQQgjD67/FEHchnZ9GtsfX09Xqx69ftQLzn+7Im7/vYerKI2w+doHP7m9OsJ8M9buVgtaRqguglPpOa22j1Qhtb85IWRyzvJgzsj3R0dH2DkOUceFBtl08tSTex+GvrrHp8UuCXP8qhGUGT11HUlIGUVH2jqToxiWONi9FcIdNjj946jrAMT8zzt92kl+3neTf3RvSqk7lW+5bnPg9XJ15Z2BT2tXz55VfdtJn0mo+urcZ3UIDLu9TEu8lR/5bXMvSPruJSqn8q36jlKqplGpmg5iEEEIIIYQo92IT03lt/m5a1a7EqK4NSuSc/ZsF8/uznQny9eTRbzfzzqK95MisfjdkaSH1A3BtP6Ib8L11wxFCCCGEEELk5Jl4dvY2lIJPhkTiUoLXLNWt4s28pzowtF0tvlp1hPumriPuQnqJnb+0sHRB3lpa6yP5N2itDyul6lg/JCGEEKKckKnDhRA3MWnFQbafSOLzB5pTo5JXiZ/fw9WZtwYYQ/3G/LKLvpPWEODjjvWmubAfY43t4rO0tI1TSrXIv8H8+JRVohBCCCGEEEIAsP5IIp//fYh7W9agX0SwXWPpFxHM7890omZlTw6cTuNMuok8k3UKkZKmtSY+OYPT6doqxZSlPVIfA78ppSYAh4H6wEvA28WOQAghhBBClE7p5yEpFjIS4bsB4BNs3CoG5bsfDF7+4CTTaVsiKT2b5+dsp46/N+P7h9s7HADqVPHmlyc70Pn9vzmTmsW/ftjCp0Mi8XKztJSwv5w8E68viCH2fAYVXSHXpHF1Ll7/mkWt11r/n1IqCXgUqAmcAF7UWs8t1tmFEEIIIUTpkxQL6ybD1u8gJx3cfSArFY5EQ2oC6Lyr93dyBZ8go6jyCQKf6uZiK9/9ikHg4maX5jgKrTVjftnFubQsfn2yI97ujlOouLs4U7eKN+Rms2Lvae6buo5vhrcmwMfD3qEVKCUzh6dnbmX1wXME+3pQQWVZZZ0si/86WuufgZ+LfUYhhBCilHjT/wOSkpJYau9AhCgGq04dnrAL1k6C3b+AUhAxGE7vATfvK9f8mfIg7QyknILUU5ASDyknITXe2Ba/Ew4sNQqwa3lXNRdY1fMVXsF4m1JJ1aW8yJrel8ikJIhae9NdZm86wZKYBF65ozFNa9h2qY2iquSheG9wS56ZtY0Bk9fyzfDWhAX72DusmzpxPp1Hv93EkbMXmTAogl+2xJGUlG2VY1tUSClj+eTHgCFAVa11hFKqCxCotf7JKpEIIYQQQgjHozUcWw1rP4VDy8GtArR7Eto9Bb7VYXrfq/d3cjb3NAUBLW9+zMzka4qtfPeT4yBuI6QnAlAHyMIVkk8a5yyDDp1J442FMXRqUIXHO9ezdzi3dHvjAH7+VwcembGJe7/8h88faEHXxtXsHdZ1tsVe4PHvNpOda+K7R9vQoX4VftkSZ7XjW9oj9SbQA/gE+NK8LQ7j2ikppIQQQgghyhpTHuxdaBRQp7YavUW3j4XWj4JnpeIdWynw9DNuAWE33y8nE1LjWfnZY7Q17SD9q94cv3MO/sH18K/gjrNTWZhDDrJy83j2x214ubkw8b5mOJWCdoUF+/DbqI48+u0mHv12E6/fGc7wDnXsHdZli3bF8/yc7QT4eDD7idY0qFbB6uewtJB6GGiutT6nlJpi3nYUcOxyWQghbEGmrHYIJbHq/ZyR7YmOjrb5eUT5FfNOJwDCX11j50jyycmEHbPgn8/g/BGoXA/6fQzNHgDX66+HiYlPBsAW0yJk4spbq9L4IeMFItUhvkt7F69Zd3FX9ljOOlWhWkV3Anw9CPL1IMDHg0AfDwJ9r/wM8PHAw9XZBpEVXkx8Mrm5efjd4LkJS/azJz6Frx9qRbXiXHN0qXfQRv9PXZsTA3w8+Glke579cTuvL4jh6LmLjO0XZtcCV2vNlJWHmbBkPy1rV+KrYS3xr+B++XlrDnW1tJByBtIuxWf+WSHfNiGEEEIIUZplXIBN38CGqXDxDAQ3h3u/hdA7jeF6JezouYs8PXMre+JTGOi2gTud1nG6/4/UWTSUP73f54fGX3Awy5fTKZnsS0hl5f6zXMzOu+44lbxcjSLrRgWXuejSWmNcyVLyovef4Zs1RxnevjbdwwLsEkNxeLm5MHVYS95dtJev1xwl9nw6k+5vTgU7TJSRnWti7PzdzNl8gv7NgpkwKMKmhbSlLVwMTFRKPQ+Xr5n6H7DQVoEJIYQQQojiOXbuIm+kD8KfZN7LyMHX0/X6nZJPwvovYMsMyE6D+t2g07+hTmdjCJ4dLNhxild+2YmrixPfDG9F4Lx3yc3NpWGLrlBtAa7fD+DJY8/C8N/Br+bl16Vm5pCQnElCSqbx03z/dEom8cmZ7D6ZzLm06ycacFLg5uLE/37fQ+8mgbSoValEelXOpmbx0s87CAmoyCt9Qm1+PltxdlK81i+M2lW8Gb8ghnu/XMe0h1sR5OtZYjEkp+fw5Mwt/HM4kWe7NeT57g1tXhxbWkg9D8wAkgFXjJ6oP4GHbBOWEEIIIYQoqtw8E1+vOcrHyw7glFuLLFzZMnElb97VhN5NAo2dzuwzrn/a9ZMx+UOTu6HjcxDY1G5xZ+bk8ebve5i1IZaWtSsx6f7mVPfzJGZevp1qtIRh8+H7gTCjLzz8x+ViqqKHKxU9XGkYUPGm58jONXHaXFxdKri+Xn2UjJw8vl93nG/WHKVKBXd6hgfQOzyQdvX8cXOx/hpYJpNm9NwdpGbmMvOxdg4zBLE4hrWrTa3KXjw9cyt3fb6WaQ+3pkl1288+GJuYzogZG4k9n87E+5pxd4saNj8nWFBIKaWcgUHAA4APUBs4obVOsHFsQgghhBCikHafTOblX3YScyqFXuEBPHj8Nc7levB1hRf51w9beLreWZ71+B33I8vAxRNaPQrtn4ZKte0a9+GzaTw9cyv7ElIZeVs9XuoZcvO1fmq0hIfmwXeXiqnfwa+WRedxc3GiZmUvalb2urxt2Z7TAHzzcGv+3neGJTEJzN92klkbYvHxcKF7aAC9mgTSpWFVPN2sU/DM+OcY0fvP8r+7wgkJvHnh51AsmML9tkZVmftkex6dsZl7v1zHp0Mi6RkeaPEpxiWONt+z7LrBLcfP8/h3WzBpzQ+PtqVtPX+Lz1VcBRZSWus8pdRErfU0IBM4Y/uwhBBCCCFEYWRk5/HJ8gN8veYolb3d+HJoC3o3CSLmnTR81QUW9Ejm3JIJBJ7awQUqcqDhU4Tf9SJOFarYO3R+236SV3/dhZuLE9Mfbm3ZVNrV8xdT/QpVTN1MBXcX7mwWzJ3NgsnMyWPNwXMsiUlg2Z7T/LrtJJ6uzkSFVKV3k0C6Nq6Gj8cNhkpaYM+pFN5bvI/uodUY2s6+BawtNA70Yd7THXj8282M/GEL/+0TyqOd6lp9qN1v208yeu5Oqvt5Mu3h1saCwSXI0qF9C5VSd2qt5ZooIYQQQggHs/bQOV75dRex59O5v01NxtwRalwPlZuFX955/PVZXH56kEC/WiR2eYsXDjRl5a6LtE07yLt3e1CvqvWnhrZEZk4e4xfEMHvTCVrVrsRnDzQv3HU11VvCQ/PhuwH5hvkVr5i6xMPVme5hAXQPCyAnz8TGo+dZsjuBpTEJLN6dgKuzomODKvQOD6RHWMBVM8PdSkZ2Hs/8uBU/L1cmDGpmt0kubK1aRQ9mP9GeF37azlt/7OVY4kXG3xmOy816GQtBa83nfx3io2UHaFO3MlOHtqSSd8kv2GxpIeUBzFVKrQNOcGXmPrTWcp2UEEIIIYQdJKVn8/Yfe/l5Sxx1q3jz4+PtaF/f31jsdu0MWD+F6nnxZOAO93wDYQPwd3ZhRlfNz5vjeOuPPfT+dDXPdWvIE13q3XwonQ0cOpPGqFnGUL6nourzQo9GRfuQXb2FUUx9P8Aopob/bvVhiq7OTnRsUIWODarwRv9wtp1IMhdU8Yz5dRevzttFm7qV6R0eSM/wQIL9bl4M/u+PPRw5d5HvH2lLZTt8+C9Jnm7OTH6gBe8v3cfUlUeIPZ/B5AeaU7GIPXlgrLn1yi+7+HXbSe5uXp1372mKu4sFwy1zsyBuM1XzTqNN18/uWBSWFlK7zTchhBBCCGFnWmv+2BXP+AUxXEjP4amo+jzbrSEemWdh2euweRpkpUDd2ziW4U5yngfNmg66/HqlFPe1rklUSFXGL4zhg6X7+X1nPO/f05SIGn42j3/etjj+O283Hq7OzBjRmqgQC4by3Ur1FvDQb/DdXVeG+dnomi8nJ0XL2pVoWbsSr9zRmL3xqSyJSWDp7gTGL9zD+IV7aFbTj97hgfQKDzB6+9LPE5AbT2Ye9N06kieqelLnHy/4x8rBnd4Nbt4QMw+qtwLfGnabefESJyfFK3eEUsffm7HzdzNoyjq+ebgVNSp5Ffzia1y4mM3IH7aw8eh5XujRiGdub3DzHr2cTDi5BY6tgWOrIW4T5GZSFbhI4c99I5ZONlEPeEJrnWWVswohhBBCiCKJT85g7PzdLN97hqbVffnukbaEuZ2Gxf+GHbPBlAthd0GHZ6F6Cy6+08nYdgPVfDz44sGWLI1JYNxvuxkweS2PdqrL8z0a4eVm/XWAMrLzeH3Bbn7aHEebOpWZdH9zAn2LsQBtfsHNS6yYukQpRViwD2HBPrzQoxFHzqaxNOY0S2ISeH/JPiYu2c2Lfqt4OGcOlU1p7NT18HOHWr4ukJdj/YBMuZByCn5+2HhcIcAY/li9JdRoBcEtwMPH+ue1wP1talGzkhdPztzCgMn/8M3wVjSr6Wfx64+eu8gjMzZx8kIGnw6J5K7I6lfvkJMJJzebC6c1cGIj5GUBypiJstWjUKcj+3/5H1l50MwKbbJ0somegMkK5xNCCCGEEEVgMmlmbozl/cX7yDWZeK1vKA/XOovLqidh3x/g7AbNh0L7UeBfv1DH7hUeSPv6/ry/eB//t/ooS2ISeGdgUzo3rGq1+A+eTuXpWVs5eCaNUV0b8O/uDa1yvcxVLhdTA0qsmMqvXtUKPBlVgSdvq0fitgW4LB+Lb/pxVpma8r+cYZzQ1Vj8bE+cbDUpwvS+oE3Q622jNyZus1Fc7F9k3kFBlUZGUXWpwAoIB+eiD7UrjE4Nq/Drkx0YMWMTg79axyeDI+ndJKjA1204ksjIH7bgpBSzHm9LqzqVjcIpbtOVwilu05XCKSgC2jwOtTtC7fbgWenysfLUu8CNv1goLEu/avgYeEMp9brW2gblsxBCiLJkzsj2REdH2zsMIcqMQ2dSGfPLLjYfv0DnBv58FHmGartGwYq14OELnV+EtiOhwvVD5MKDfElKSirwHD4errw9sCl3RVZnzC87GfbNRu5pUYPX+obe8kL+N/0/AGDOLY49d0scY+fvxsvNmW9HtKFLI+sVaNe5qmfKPDV6pTq2O9+1Tu+Bpa/if+Rv8G8IA34mPKgLfT56gWr6HHWrDLTt+ZWTMdSxegujmADIuAAntxrF1cktcGApbJ9pPOfiCUHNzMVVC2NIoF8tmw0JbBhQkflPd+Tx7zbzrx+28sodjXmiS72bDtH7dWscL/+yk3qVXPi2BwQenQp/5yuclBMEmgunOp2gVnvw9Lvp+S3992AJSwupZ4BA4AWl1FmunmzCOlOjCCGEEEKIq2Tnmvhy5WE+/+sQFV01P7U7RutTb6F+3wM+1aHXO9DiIXC33jpEbepWZtFznZn89yGmRB8mev8ZXu8fzp0RQYWeYS49O5dxv8Uwd0scbesaQ/kCfKw0lO9WgiOvHuY3fCFUrmvbc148B3+/A1umg7sP9H4fWj8Kzq74Az3ddpKba52ekELzrAQNuhk3MBZgTjpu7rHaavRabfoa1mUaz3tXNfdYtTLW7ApuccvipLCqVHDnx8fb8eLPO3h38T6OJV7kzbuaXDXZic5OZ+5v8zi1YzkLvA/SOGM/al72NYVTZ6jVzqqxFYalhdRQm0YhhBBCCCGusjX2AmN+2Unc6XO8V3MLd2XOx3n7SagaCgO+hKaDbDYky8PVmRd7htA3IoiXf9nFsz9uY/62k/xvQBOq32JGuvwOnE7l6ZlbOXQ2jWdvb8Cz3WwwlO9WgiNh+AL4tj98e6ftiqncbNg4FVZ+ANlp0OYJuO1l8Kps/XNZi1JGL12lOsb7CIxrtk7HGEVV3Bbj54ElV17j3xAyk/HI1RD9XrFD8AA+C9I8kJ7Ixi3nWXDMi75NgwjIjcddZ5D3bi3u1TmYXJzAvxmq7sgrhZOHb7HPbw0WFVJa65W2DkQIIYQQQsDFrFxjFr11O3jaawVDfZbhejbZuN7jzo+hYc8Sm4mtcaAPvz7ZgRn/HOPDpfvpOXEl/+ndmGHtauPkdOMYtNb8vCWOcb/tpoK7C98/0pZODYu36O+b/h+QlJTE0sK+MKiZUUzln4DCWsWU1sa1R3++BuePGH+Xnm9B1RDrHL8oRvxR9Nc6uxrFZ3AktH7M2JaZfKXH6uRWOLgMD1MORL9rjWhxAjoCHV2BFGAtuAMHTDX42xRJjcju9O07EGXNHqcRf7A9OpooKxzKokJKKeUKvAYMA4KBU8D3wNta62wrxCGEEEIIUe79vf8MU35ZRv+MX1jnsRqXvBxUw77Q8d9Qs7VdYnJ2UjzaqS49wwL47/zdvL4ght+2n+S9eyJoFHD1kMKLWbmMnb+bX7edpH09fz4dEkm1khjKdytBzeChBfBdf3MxtRAq1yveMRN2w9JX4OgqqBICD/4CDbtbJ15H4uEL9bsaN4DpfUm6cAG/59da/VTrDifyrx+2kJyZgxu5fPxAW/pGFDwRhT1ZOrRvAtAG+BdwHKgNjAV8gOdtE5oQQgghRPmQmJbF9LnzaHx4Gj86b0K5uuAUOcSYwrxKQ3uHB0DNyl58O6I187ef5M2Fe+g7aTVPRTXApDVOSrE/IZWnZm7hyLmLPNetIc92a4jzTXqtSlxQxDXF1O9FK6bSzsBfb8G278HDD/p8CC1HgLP1p4p3WErZpEe0fYMq/Pp0R974dAp3uW2ib8QAq5/D2iz9q98LNNNaJ5of71dKbQV2IIWUEEIIIUSRaJPmUK4/aR/ezkvsJsvNG932GZzbPQk+jvdtvFKKgc1r0KVhVd78fQ+frjiIh6sTVbzduWvyGiq4uzLz0bZ0aFC8oXw2ERRhXCf17Z2FL6Zys2D9FFj1IeRmQNsn4bbRV02rLYqvftUKvOz1m73DsJilV/zdrOy0uBxVSvVWSu1XSh1SSo25xX73KKW0UqqVpccWQpQ/klOEENZiz3xyKsebAaykodMpzrb7L+6j9+LS802HLKLy86/gzqdDmjN9RGtMJohLyqBl7Uoseq6TYxZRlwQ2NYqpnAyjmEo8DMC4xNGMSxx9/f5aw57fYHIbWP66Mb32Uxug9ztSRAmLC6mfgYVKqV5KqVClVG9gPvCTJS9WSjkDk4E7gDDgfqVU2A32qwg8B2ywMC4hRDkkOUUIYS32zif+rlksoR2+Y/ZStfd/HGY2Mkt1DalGRA1fQgIq8N0jbalW0c7XQ1kisKkxAcU1xdR14ncY61D99BC4esGwefDAbKjSoGTjFQ7L0kLqP8ByjESzBfgM+Bt42cLXtwEOaa2PmCenmA3cdYP9/ge8D2RaeFwhRPkkOUUIYS12zSceTnnUdLuIs1spKEBuwtlJ4efl5jjXQ1niUs9UXhbM6IebzrryXOpp+O1pmHobnN0H/T6Gkauh/u32i1c4JEunP88GxplvRVEdOJHvcRzQNv8OSqkWQE2t9R9KqRv0rV7e7wngCYCAgACio6OLGJL1paWlOVQ8RSFtcAzShgKV+Zwi7wHHURbaIW24Jbvmk0rmBVpt+vepO5q0tDQq2OgcSUkZgG3b8GQIpKXlWf0c3mHjaLZjLLVzznBU1eTIt6OoFfszTqZc4mreRWyte8lNqwCr1xT7XJGemrw8G/+tbSwyKYm8POv/HfJ71/m/ALxiw3NYK5/cspBSSnUE+mutr+t5Ukq9B8zXWq8vbhBKKSdgIvBwQftqrb8CvgJo1aqVjoqKKu7prSY6OhpHiqcopA2OQdpQPGUhp8h7wHGUhXZIG4rO1vkk5h/jo5it22bL39+U/esAiIpqb5PjX2KzNrRuTe6UzoToo3D0KDTuBz3epJZ/fWpZ8zxH/UhKSird/xZLoA0l8X6y1nupoKF9rwKrbvLcSuC/Fp7nJFAz3+Ma5m2XVASaANFKqWNAO2CBXBwuhLgJySlCCGuRfFLeBYRzzKUeyU6+xhTpQ2aCf317RyVKgYIKqUhgyU2eWwa0tPA8m4CGSqm6Sik3YAiw4NKTWutkrXUVrXUdrXUdYD1GT9hmC48vhChfJKcIIaxF8okgy8mDOJdaUO82e4ciSpGCCikfwO0mz7lifEtTIK11LjAKWArsBX7SWscopd5USvW3NFghhADJKUII65F8IkrMiD/Y3vxte0dRPGWhDVZU0GQT+4CewI1Wxuppft4iWutFwKJrtt1w8gqtdZSlxxVClE+SU4QQ1iL5RAhRFAUVUh8DU81rLMzXWpvMF10OwJgK/QUbxyeEEEIIIYQQDueWhZTWepZSKhD4FnBXSp0DqgBZwOta6x9LIEYhhBBCCCFs5k3/DwCYY+c4ROlS4DpSWuuJSqmvgfaAP5AIrNNap9g6OCGEEEIIIYRwRJYuyJuCcRGmEEIIIYQQQpR7Bc3aJ4QQQgghhBDiGhb1SAkhhBBCCOsLD/K1dwjFNmdke3uHUGxloQ1lRWn6W9y0Ryr/2glKKdeSCUcIIYQQQgghHN+thvb9kO9+oq0DEUIIIYQQQojS4lZD+xKUUqOAPYCLUqoroK7dSWv9l62CE0IIIYQQQghHdKtC6mHgTeA5wA2YdoN9NFDP+mEJIYQQQgghhOO6aSGltf4H6A6glDqktW5QYlEJIYQQQgghhAOzdB2pBgBKqVpAdSBOa33CloEJIYQQQgghhKOyqJBSSgUCc4D2GBNP+Cul1gNDtNanbBifEEIIIUTZNeIPe0cghCgiSxfk/RLYAVTSWgcBlYBt5u1CCCGEEEIIUa5YuiBvJyBIa50DoLW+qJT6D3DSZpEJIYQQQgghhIOytEfqAhB2zbYQIMmq0QghhBBCCCFEKWBpj9QEYLlS6hvgOFAbGAGMtVVgQgghhBBCCOGoLJ217/+UUoeBB4AI4BTwgNZ6hS2DE0IIIYQQQghHZGmPFFrrv4C/bBiLEEIIIYQQQpQKll4jJYQQQgghhBDCTAopIYQQQgghhCgkKaSEEEIIIYQQopCkkBJCCCGEEEKIQrJosgmlVGXgJSASqJD/Oa11F+uHJYQQQgghhBCOy9JZ+2YB7sBPQLrtwhFCCCGEEEIIx2dpIdUBqKq1zrJlMEIIIYQQQghRGlh6jdROoIYtAxFCCCGEEEKI0sLSHqm/gCVKqelAQv4ntNbTrB6VEEIIIYQQQjgwSwupzkAc0OOa7RqQQkoIIYQQQghRrlhUSGmtu9o6ECGEEEIIIYQoLSztkUIpVQm4E6gOnAQWaq0v2CowIYQQQgghhHBUFk02oZRqDxwG/gVEACOBw+btQgghhBBCCFGuWNoj9QnwlNZ69qUNSqnBwCSgtQ3iEkIIIYQQQgiHZen0540wFuPNby7QwNITKaV6K6X2K6UOKaXG3OD5F5RSe5RSO5VSK5RStS09thCi/JGcIoSwFsknQoiisLSQOggMuWbbvRjD/QqklHIGJgN3AGHA/UqpsGt22wa00lpHYBRpEyyMTQhRzkhOEUJYi+QTIURRWVpI/Rv4XCm1Xik1Rym1AfgCeNbC17cBDmmtj2its4HZwF35d9Ba/621Tjc/XI8sACyEuDnJKUIIa5F8IoQoEkunP/9HKVUf6AsEAwuBRVrr8xaepzpwIt/jOKDtLfZ/FFh8oyeUUk8ATwAEBAQQHR1tYQi2l5aW5lDxFIW0wTFIGwpU5nOKvAccR1loh7Thlsp8PgF5DzgKaYNjsFYbLJ7+3DzV+Q/FPmMBlFJDgVbAbTeJ4yvgK4BWrVrpqKgoW4dksejoaBwpnqKQNjgGaYP1lNac4ii/v+IoC22AstEOaYN1lNZ8Ao7x+ysuaYNjkDZccdNCSim1RGvd23x/NaBvtJ/WuosF5zkJ1Mz3uIZ527Xn7A78F7hNa51lwXGFEOWT5BQhhLVIPhFCFMmteqS+y3f/62KeZxPQUClVFyM5DQEeyL+DUqo5MBXorbU+U8zzCSHKNskpQghrkXwihCiSmxZSWutZ+R7u01pvuHYfpVQbS06itc5VSo0ClgLOwDStdYxS6k1gs9Z6AfABUAH4WSkFEKu17m95Uww5OTnExcWRmZlZ2JcWm6+vL3v37i3x81rTjdrg4eFBjRo1cHV1tVNUQlytJHOKEKJsk3wihCgqS6+RWgb43GD7EqCyJQfQWi8CFl2zbVy++90tjOWW4uLiqFixInXq1MGc7EpMamoqFStWLNFzWtu1bdBak5iYSFxcHHXr1rVjZEJcraRyihCi7JN8IoQoiltOf66UcjKvr6DMnPLdGgK5JROm5TIzM/H39y/xIqqsUkrh7+9vlx4+IYQQQgghHFVBPVK5GJNMKK4vmkzA27YIqrikiLIu+X0KIYQQQghxtYIKqboYRdRKIP/sfBo4q7XOsFVgJWnw1HUAzBnZ3s6RCCGEEEIIIUqDWw7t01ofx1ik7iiQoLU+br7FlpUiqqQcO3aMJk2a2DuM60RFRbF582Z7hyGEEEIIIUSpcstCCkBrnYfRM1XgvqJk5eY63CVqQgghhBBClAuWFkdvAFOUUrWVUs75J52wZXCl2cSJE2nSpAlNmjThk08+AYzC58EHHyQ0NJRBgwaRnp4OwJgxYwgLCyMiIoKXXnoJgLNnz3LPPffQunVrWrduzdq1awEYP348w4YNo2PHjgwbNox27doRExNz+byXepguXrzII488Qps2bWjevDm//fYbABkZGQwZMoTQ0FAGDhxIRoZ0LAohhBBCCFFYlk5/fmlB3mH5timMa6WcrRqRFb2xMIY9p1IK3G9PvLHPpWulbiUs2IfX7wy/5T5btmxh+vTpbNiwAa01bdu25bbbbmP//v188803dOzYkUceeYQvvviCESNGMG/ePPbt24dSiqSkJACee+45nn/+eTp16kRsbCy9evW6vL7Tnj17WLNmDZ6ennz88cf89NNPvPHGG8THxxMfH0+rVq149dVXuf3225k2bRpJSUm0adOG7t27M3XqVLy8vNi7dy87d+6kRYsWBbZZCCGEEEIIcTVLe5Tqmm/18t0uPRbXWLNmDQMHDsTb25sKFSpw9913s3r1amrWrEnHjh0BGDp0KGvWrMHX1xcPDw8effRRfv31V7y8vABYvnw5o0aNIjIykv79+5OSkkJaWhoA/fv3x9PTE4D77ruPuXPnAvDTTz8xaNAgAP7880/ee+89IiMjiYqKIjMzk9jYWFatWsXQoUMBiIiIICIiokR/N0IIIYQQQpQFFvVImSedwDyULwA4rbU22TIwayio5+iSkpq179ppxJVSuLi4sHHjRlasWMHcuXP5/PPP+euvvzCZTKxfvx4PD4/rjuPt7X35fvXq1fH392fnzp3MmTOHL7/8EjAW0v3ll18ICQmxaZuEEEIIIYQojyzqkVJK+SilvgMygZNAhlLqW6WUr02jK6U6d+7M/PnzSU9P5+LFi8ybN4/OnTsTGxvLunVG0TZr1iw6depEWloaycnJ9OnTh48//pgdO3YA0LNnTz777LPLx9y+fftNzzd48GAmTJhAcnLy5R6mXr168dlnn6G1BmDbtm0AdOnShVmzZgGwe/dudu7cafX2CyGEEEIIUdZZOrRvEuANNAE8gaaAl3m7uEaLFi14+OGHadOmDW3btuWxxx6jUqVKhISEMHnyZEJDQ7lw4QJPPvkkqamp9OvXj4iICDp16sTEiRMBmDRpEps3byYiIoKwsLDLPU03MmjQIGbPns199913edvYsWPJyckhIiKC8PBwxo4dC8CTTz5JWloaoaGhjBs3jpYtW9r2lyGEEEIIIUQZZOlkE72BelrrdPPjA0qpEcBh24RV+r3wwgu88MILV23bt2/fdft5eXmxcePG67ZXqVKFOXPmXLd9/Pjx120LCAi4bip0T09Ppk6det2+np6ezJ49u6DwhRBCCCGEELdgaSGVCVQFjufbVgXIsnpEdmDra6OEEEIIIYQQZUthpj9fppSaiFFM1QaeB76yVWBCCCGEEEII4agsLaTeBk4BDwDB5vsTgGk2iksIIYQQQgghHJal059rjKJJCichhBBCCCFEuWfprH0opR5RSi1TSsWYfz6qrl0YSQghhBBCCCHKAYt6pJRSE4C7gE+4co3US0AI8B9bBVdipvc1fo74w75xCCGEEEIIIUoFS3ukHga6aa2naK0Xaa2nAD2BETaLrIx57LHH2LNnj1WOVadOHc6dO3fLfd55551CH3fGjBm8+OKLRQ1LCCGEEEKIcsPSQirVfLt2W4p1wym7vv76a8LCwkrsfEUppIQQQgghhBCWsbSQ+gT4VSnVQykVqpTqCfwMfKyUqnfpZrMoS5mLFy/St29fmjVrRpMmTZgzZw5RUVFs3rwZgAoVKjB69GjCw8Pp3r07GzduJCoqinr16rFgwQLA6B0aNWrU5WP269eP6Ojo6841YMAAWrZsSXh4OF99ZcxGP2bMGDIyMoiMjOTBBx8E4IcffqBNmzZERkYycuRI8vLyAJg+fTqNGjWiTZs2rF271pa/FiGEEEIIIcoMS6c//9T8s+s127sBk8z3NeBsjaCsZvEYSNhV8H4JO42fl66VupXApnDHe7fcZcmSJQQHB/PHH8Y1V8nJyUyZMuXy8xcvXuT222/ngw8+YODAgbz22mssW7aMPXv2MHz4cPr3719wHGbTpk2jcuXKZGRk0Lp1a+655x7ee+89Pv/8c7Zv3w7A3r17mTNnDmvXrsXV1ZWnnnqKmTNn0qNHD15//XW2bNmCr68vXbt2JTw83OJzCyGEEEIIUV5ZOv25xbP7CWjatCkvvvgiL7/8Mv369aNz585XPe/m5kbv3r0v7+vu7o6rqytNmzbl2LFjhTrXpEmTmDdvHgAnTpzg4MGD+Pv7X7XPihUr2LJlC61btwYgIyODatWqsWHDBqKioqhatSoAgwcPZvfu3UVpshBCCCGEEOWKpT1SACilagHVgTit9QnbhGRFBfQcXWblWfsaNWrE1q1bWbRoEa+99hrdunW76nlXV1cuzRzv5OSEu7v75fu5ubkAuLi4YDKZLr8mMzPzuvNER0ezfPly1q1bh5eXF1FRUTfcT2vN8OHDeffdd6/aPn/+/GK1UwghhBBCiPLKop4mpVSQUmolcAj4FTislFqllAq2aXSl1KlTp/Dy8mLo0KGMHj2arVu3FvoYderUYfv27ZhMJk6cOMHGjRuv2yc5OZlKlSrh5eXFvn37WL9+/eXnXF1dycnJAaBbt27MnTuXM2fOAHD+/HmOHz9O27ZtWblyJYmJieTk5PDzzz8XscVCCCGEEEKUL5b2SE0BdgB9tNYXlVLewDvAl4DlF/SUE7t27WL06NE4OTnh6urKlClTeOmllwp1jI4dO1K3bl3CwsIIDQ2lRYsW1+3Tu3dvvvzyS0JDQwkJCaFdu3aXn3viiSeIiIigRYsWzJw5k7feeouePXtiMplwdXVl8uTJtGvXjvHjx9O+fXv8/PyIjIwsbtOFEEIIIYQoFywtpDoBQVrrHABzMfUf4KTNIivFevXqRa9eva7aln/GvbS0tMv3x48ff9V+l55TSjFz5swbHj//dVSLFy++4T7vv/8+77///uXHgwcPZvDgwdftN2LECEaMuLIcWGrqtbPcCyGEEEIIIa5laSF1AQjD6JW6JARIsnZAdmGla6OEEEIIIYQQ5YOlhdQEYLlS6hvgOFAbGAGMtVVgQgghhBBCCOGoLJ3+/P+UUoeBB4AI4BTwgNZ6hS2DKyqt9eVZ8UTxaa3tHYIQQgghhBAOpcBCSinlDBwAwrTWf9k+pOLx8PAgMTERf39/KaasQGtNYmIiHh4e9g5FCCGEEEIIh1FgIaW1zlNK5QEeQJbtQyqeGjVqEBcXx9mzZ0v83JmZmaW+4LhRGzw8PKhRo4adIhJCCCGEEMLxWHqN1CfAT0qpd4A44PJYL631ERvEVWSurq7UrVvXLueOjo6mefPmdjm3tZSFNgghhBBCCGFrFi3IC3wO9AD+Bg5iLMx7yHzfIkqp3kqp/UqpQ0qpMTd43l0pNcf8/AalVB1Ljy2EKH8kpwghrEXyiRCiKCwqpLTWTje5OVvyevN1VpOBOzCmUb9fKRV2zW6PAhe01g2Aj4H3EUKIG5CcIoSwFsknQoiiumUhpZTyUkq9o5RaoJQar5RyL+J52gCHtNZHtNbZwGzgrmv2uQv41nx/LtBNyWwRQogbk5wihLAWySdCiCIp6BqpyUArYDEwCPAHninCeaoDJ/I9jgPa3mwfrXWuUirZfL5z+XdSSj0BPGF+mKaU2l+EeGylCtfEWwpJGxxDeWtD7UIeuzzklPL2HnBkZaEd5a0Nhckp5SGfQPl7DzgqaYNjsEo+KaiQ6g200FrHK6U+A1ZRtELKarTWXwFf2TOGm1FKbdZat7J3HMUhbXAM0oaS46g5pbT8/m6lLLQBykY7pA0lw1HzCZSO319BpA2OQdpwRUHXSHlrreMBtNYnAN8inuckUDPf4xrmbTfcRynlYj5XYhHPJ4Qo2ySnCCGsRfKJEKJICuqRclFKdQXUTR5j4SK9m4CGSqm6GMloCPDANfssAIYD6zCGEf6ltdYIIcT1JKcIIaxF8okQokgKKqTOANPyPU685rEG6hV0EvN44lHAUsAZmKa1jlFKvQls1lovAL4BvldKHQLOYySy0sYhu/MLSdrgGKQNt1BOcoq8BxxHWWiHtOEmykk+AXkPOAppg2OwShuUfKEihBBCCCGEEIVj6YK8QgghhBBCCCHMpJASQgghhBBCiEKSQsoKlFI1lVJ/K6X2KKVilFLP2TumolBKOSultimlfrd3LEWllPJTSs1VSu1TSu1VSrW3d0yFpZR63vw+2q2U+lEp5WHvmAqilJqmlDqjlNqdb1tlpdQypdRB889K9oyxtCgr+QRKf06RfGIfkk+sR/KJY5GcYh+2zClSSFlHLvCi1joMaAc8rZQKs3NMRfEcsNfeQRTTp8ASrXVjoBmlrD1KqerAs0ArrXUTjAufS8NFzTMw1p3LbwywQmvdEFhhfiwKVlbyCZT+nCL5xD5mIPnEWiSfOBbJKfYxAxvlFCmkrEBrHa+13mq+n4rxD6O6faMqHKVUDaAv8LW9YykqpZQv0AVjdiW01tla6yS7BlU0LoCnea0SL+CUneMpkNZ6FcZMVvndBXxrvv8tMKAkYyqtykI+gdKfUySf2I/kE+uRfOI4JKfYjy1zihRSVqaUqgM0BzbYOZTC+gT4D2CycxzFURc4C0w3d/9/rZTytndQhaG1Pgl8CMQC8UCy1vpP+0ZVZAGXFvQGEoAAewZTGpXifAKlP6dIPnEskk+KSfKJ3UlOcSxWySlSSFmRUqoC8Avwb611ir3jsZRSqh9wRmu9xd6xFJML0AKYorVuDlyklA3/MI/RvQsj4QYD3kqpofaNqvjMC1fKWguFUFrzCZSZnCL5xEFJPik8yScOQXKKgypOTpFCykqUUq4YSWqm1vpXe8dTSB2B/kqpY8Bs4Hal1A/2DalI4oA4rfWlb9vmYiSt0qQ7cFRrfVZrnQP8CnSwc0xFdVopFQRg/nnGzvGUGqU8n0DZyCmSTxyL5JMiknziMCSnOBar5BQppKxAKaUwxrzu1VpPtHc8haW1fkVrXUNrXQfjosG/tNal7hsGrXUCcEIpFWLe1A3YY8eQiiIWaKeU8jK/r7pRyi5GzWcBMNx8fzjwmx1jKTVKez6BspFTJJ84HMknRSD5xHFITnE4VskpUkhZR0dgGMa3JNvNtz72DqqcegaYqZTaCUQC79g3nMIxf1M1F9gK7ML4N/qVXYOygFLqR2AdEKKUilNKPQq8B/RQSh3E+BbrPXvGWIpIPnEckk/sQPKJVUk+cSySU+zAljlFGcMChRBCCCGEEEJYSnqkhBBCCCGEEKKQpJASQgghhBBCiEKSQkoIIYQQQgghCkkKKSGEEEIIIYQoJCmkhBBCCCGEEKKQpJASQgghhBBCiEKSQkoIIYQQQgghCkkKKSGEEEIIIYQoJCmkhBBCCCGEEKKQpJASQgghhBBCiEKSQkoIIYQQQgghCkkKKSGEEEIIIYQoJCmkhBBCCCGEEKKQpJASQgghhBBCiEKSQkoIIYQQQgghCkkKKSGEEEIIIYQoJCmkhBBCCCGEEKKQpJASQgghhBBCiEKSQkoIIYQQQgghCkkKKSGEEEIIIYQoJCmkhBBCWJVSqrNSar+F+z6slFpzk+fqKKW0UsrlJs+/qpT6ujixCiGEEEV1w/+chBBCiPyUUmn5HnoBWUCe+fFIrfXMS09qrVcDIbaOSWv9jq3PIYQQQtyMFFJCCCEKpLWucOm+UuoY8JjWevm1+ymlXLTWuSUZmxBCCGEPMrRPCCFEkSmlopRScUqpl5VSCcD0S9vy7TNGKXVYKZWqlNqjlBpYyNM8opQ6pZSKV0q9lO+445VSP5jvXxoGOFwpFauUOqeU+m++fdsopTYrpVKUUqeVUhOL23YhhBDlm/RICSGEKK5AoDJQG+MLurbXPH8Y6AwkAPcCPyilGmit4y08flegIVAP+Esptf1GvWFmnTCGFTYCNiqlftVa7wU+BT7VWn+vlKoANLG8eUIIIcT1pEdKCCFEcZmA17XWWVrrjGuf1Fr/rLU+pbU2aa3nAAeBNoU4/hta64ta613AdOD+AvbN0FrvAHYAzczbc4AGSqkqWus0rfX6QpxfCCGEuI4UUkIIIYrrrNY682ZPKqUeUkptV0olKaWSMHqDqhTi+Cfy3T8OBN9i34R899OBS9d2PYrRS7VPKbVJKdWvEOcXQgghriND+4QQQhSXvtkTSqnawP8B3YB1Wus8pdR2QBXi+DWBfeb7tYBThQ5Q64PA/UopJ+BuYK5Syl9rfbGwxxJCCCFAeqSEEELYljdGoXUWQCk1gsJfnzRWKeWllAoHRgBzChuEUmqoUqqq1toEJJk3mwp7HCGEEOIS6ZESQghhM1rrPUqpj4B1GIXLd8DaQh5mJXAI48u/D7XWfxYhlN7ARKWUF8bwwCE3up5LCCGEsJTS+qYjMoQQQgghhBBC3IAM7RNCCCGEEEKIQpJCSgghhBBCCCEKSQopIYQQQgghhCgkKaSEEEIIIYQQopCkkBJCCCGEEEKIQpJCSgghhBBCCCEKSQopIYQQQgghhCgkKaSEEEIIIYQQopD+Hyb5NkkJitoNAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "_ = hddm.plotting.plot_ppc_choice_rlssm(data, ppc_sdata, 40, 10)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1IAAAEgCAYAAAC+U0LkAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAAsTAAALEwEAmpwYAACYxklEQVR4nOzdd3hc1Zn48e+ZXtSrZblXXHABY5tuegmBhJAEkpCwKewmIY3fsiGNJcluNtlND6QSUkgIEEISk0CAAKKb4o5tjLsty1Yv0+v5/XFHRpZVRtLM3Bnp/TyPHmvu3Ln31Vg6c997znmP0lojhBBCCCGEECJ9FrMDEEIIIYQQQohCI4mUEEIIIYQQQoyQJFJCCCGEEEIIMUKSSAkhhBBCCCHECEkiJYQQQgghhBAjJImUEEIIIYQQQoyQJFIiq5RS+5VSF6a+/6JS6q5RHOMGpdTzmY9OCFFIpD0RQmSStClirCSREjmjtf6G1vqjAEqpGUoprZSymR0XgDJ8SynVnvr6llJKmR2XEGJged6enKeUelop1a2U2m92PEKI4eV5m3KLUup1pZRPKbVPKXWL2TEJgyRSQhhuBN4BLAWWAG8H/tXMgIQQBSsA3A3IxY4QIhMU8EGgHLgUuEkpda25IQmQREqMgFLq80qpw6k7IjuVUhcopW5XSj2olLo/tX2DUmrpIK+/XSn1u9TDZ1P/diml/Eqp04c/vbojdYf3DaXUBamN71ZKre+3481Kqb+O8Mf7EPAdrXWj1vow8B3ghhEeQwiRpvHcnmitX9Fa3wPsHcnrhBCjN87blP/VWm/QWse11juBvwJnjuQYIjskkRJpUUrNB24CTtNaFwOXAPtTT18F/BGoAO4F/qKUsg9zyHNS/5ZprYu01i8Ns/8qYA9QBfwn8JBSqgJYC8xUSi3os+/1wG9Tcd+qlOoa7KvPaxYBm/s83pzaJoTIsAnQngghcmgitSlKKQWcDWwbJiaRA5JIiXQlACewUCll11rv11rvST23Xmv9oNY6BnwXcAGrM3z+FuD7WuuY1vp+YCfwNq11BLgf+ACAUmoRMAP4G4DW+pta67LBvvocvwjo7vO4GyhKNVhCiMwa7+2JECK3JlKbcjvG9fuvMvwziFGQREqkRWu9G/gsxh9wi1LqPqXU5NTTh/rslwQagcn9jzFGh7XWus/jA33O8Rvgfamk53rggVTjNRJ+oKTP4xLA3++cQogMmADtiRAihyZKm6KUugljrtTbpF3KD5JIibRpre/VWp8FTAc08K3UU1N791FKWYApQNNwhxvh6ev79Q5N6z2H1nodEMXo6n4fcE+feL6YGt884Fef423DKDTRaynSbS5E1ozz9kQIkWPjvU1RSn0YuBW4QGvdOML4RJZIIiXSopSar5Q6XynlBMJACEimnj5VKXW1MsqEfhaIAOuGOWRr6vWz0gyhBvi0UsqulHo3sAB4pM/zvwXuAGJa62PrOaTKmRYN9tXv9TcrpepTd7H+H/DrNGMTQozAeG9PlFIWpZQLsBsPlUsp5UgzNiHECE2ANuX9wDeAi7TWUsQmj0giJdLlBL4JtAFHMRqNL6Se+yvwXqATo9v66tRY5EFprYPAfwMvpCZVDjde+WVgbur8/w1co7Vu7/P8PcBi4HcDvDYdPwMeBrYCrwN/T20TQmTeeG9PzsG4kHsE4850CHh8lMcSQgxvvLcp/wVUAq/26bH66SiPJTJIyRQQMRZKqduBOVrrD5gchxtjsucpWutdZsYihBgdaU+EEJkkbYrINumREuPFx4FXpYESQmSAtCdCiEySNmWcspkdgBAAqS7qge4Y/U5r/W/DvHY/xqrf78h8ZEKIQiPtiRAik6RNEYORoX1CCCGEEEIIMUIytE8IIYQQQgghRqjgh/ZVVVXpGTNmHLctEAjg9XrNCWgI+RoX5G9sEtfI5WtsQ8W1fv36Nq11dY5DOsFA7Um68vF9z7eY8i0eyL+Y8i0eyL+Y0oknH9qUdNuTfHt/If9ikniGJvEMbazxDNmeaK0L+uvUU0/V/T399NMnbMsH+RqX1vkbm8Q1cvka21BxAa/pPG1PMvHzmSXfYsq3eLTOv5jyLR6t8y+mdOLJhzYl3fYk395frfMvJolnaBLP0MYaz1DtiQztE0IIIYQQQogRkkRKCCGEEEIIIUZIEikhhBBCCCGEGKGCLzYxEKUU+/btIxwOmx3KcUpLS9mxY4fZYQxoqNhcLhdTpkzBbrfnOCohzBeLxWhsbBy2PcnHv+98i6m0tJR9+/ZJeyKEGFL/djcf27JCikeu47JnXCZSXq+X4uJiZsyYgVLK7HCO8fl8FBcXmx3GgAaLTWtNe3s7jY2NzJw504TIhDBXY2NjWu1JPv5951tMPT09RKNRaU+EEEPq3+7mW1tWSPHIdVx2jcuhfVarlcrKyrxKogqVUorKysq8690TIlfC4bC0Jxki7YkQIh3S7maOtLvZNS4TKUD++DJI3ksx0cnfQObIeymESIe0FZkj72X2jNtESoi85DsKvmazoxBCjEfxKHQeMDsKIQbVE46xvy0AoS7j81CIAieJVI589KMf5Y033sjIsWbMmEFbW9uQ+3zjG98Y8XF//etfc9NNN402LDGceATuvgTuu87sSMQ48NGPfpTt27dn5FjSpowTf/oI3HEadB82OxIhBvTFh7Zy7Q/+Dt+aDr+4wOxwRkzaXdGfJFI5ctddd3HSSSfl7Hyj+eMTWfbqL6FzPxxeD+17zI5GFLi77rqLhQsX5ux80qbkuZ3/gB1rIRGBl+4wOxohTnCoI8gjW4/wH/zG2NDTCNGguUGNkLS7or+cJVJKqbuVUi1KqdeH2e80pVRcKXVNrmLLtEAgwNve9jaWLl3K4sWLuf/++1mzZg0bNmwAoKioiFtuuYVFixZx4YUX8sorr7BmzRpmzZrF2rVrgRPvKFxxxRU0NDSccK53vOMdnHrqqSxatIif//znANx6662EQiGWLVvG+9//fgB+97vfsXLlSpYtW8a//uu/kkgkAPjVr37FvHnzWLNmDS+88EI23xbxys9h0smAgq0Pmh2NKCCDtSmvvfYaMHibsmTJEtPalJUrV0qbkkubfgcl9bD4Glj/a4gGzI5IiOPcs+4ASinOdu8jrlOXn62ZGamTDaNtd824lvvd734n7a5Jcln+/NfAHcBvB9tBKWUFvgU8nqmTfvXhbWxv6snU4QBYOLmE/3z7okGf/8c//sHkyZP5+9//DkB3dzc/+clPjj0fCAQ4//zz+b//+z/e+c538uUvf5knnniC7du386EPfYgrr7wy7VjuvvtuKioqCIVCnHbaabzrXe/im9/8JnfccQebNm0CYMeOHdx///288MIL2O12PvGJT/D73/+eiy66iP/8z/9k/fr1WCwWrrzySpYvXz66N0UMLR6BrgM0Lb2JCosX146HYc3nzY5KjNBQ7UkikcBqtY74mMO1JzD6NuXVV1/lE5/4hCltSmlpKeedd560KbnStBmmroRF74TXH4SWN2DKqWZHJcQxL+1p54wZxVQdOcrDyVVcaX0JmrdB/SlDvu6rD29j66HOUbWvg8lmu2vGtdw3vvENNmzYIO2uCXLWI6W1fhboGGa3TwF/AlqyH1H2nHzyyTzxxBN8/vOf57nnnqO0tPS45x0OB5deeumxfc8991zsdjsnn3wy+/fvH9G5fvjDH7J06VJWr17NoUOH2LVr1wn7PPnkk6xfv57TTjuNZcuW8eSTT7J3715efvll1qxZQ3V1NQ6Hg/e+972j/pnFMLoOgk7y7VdjPNFdD21vQjJpdlSiQIy2TVm0aJG0KRNBsAO6D0LdMqhZYGxrycw8DiEyIZ5IsrPZxxnlPpRO0JBYStzqMhKpPFVI13JnnXWWtLsmyZsFeZVS9cA7gfOA0zJ13OHuOGTDvHnz2LBhA4888ghf/vKXueCC4ydU2u32Y6UoLRYLTqfz2PfxeBwAm81Gss+F9kD1/xsaGvjnP//JSy+9hMfjYc2aNQPup7XmQx/6EP/zP/9z3Pa//OUvY/o5RfoS7XuxAo2qjpe6orzdHjHGh5dNMzs0MQJDtSfZXKBR2hQxpKaNxr+Tl0H5DLC5JZESeWVfW4BoPMkyj1Fcock+jSPOWUxtHnK2B2C0u2YsgCvtrkhH3iRSwPeBz2utk8PVu1dK3QjcCFBbW3vCeNOSkhJ8Pl92okzDkSNHKC8v56qrrsLhcPDb3/6WRCJBMpk8Flfvv5FIBLvdfly8Pp+Pmpoa1q9fT3d3N01NTbzyyisEg0F8Ph9aa/x+P0ePHqW4uJhEIsH69etZt27dsX3sdjsdHR3Y7XZWr17Ntddey8c+9jGqq6vp6OjA7/ezaNEiPv3pT7N//368Xi/33XcfixcvHvC9C4fDA47rzTa/32/KeYcz0rhK9z7GcmBq3WT2HY4AsPmph+isWGZ6bLmSr3EVgqamJioqKvjABz5AWVkZd91114iPMWPGDH784x+TTCY5fPgwr7zyygn7dHd3U15ejsfj4Y033mDdunXHnrPb7cRiMex2OxdccAFXXXUVn/vc56ipqaGjowOfz8eqVav4zGc+Q3t7OyUlJfzxj39k6dKlY/rZRRqObDL+rVsKFivUnCSJlMgr248YQ6JnW44AYK2ey+7AFKa2bTEzrCEVUrv76U9/Wtpdk+RTIrUCuC+VRFUBlyul4lrrv/TfUWv9c+DnACtWrNBr1qw57vmNGzfm/M5FXy+++CLXXHMNFosFu93OT37yE/793/8di8VyLK7ef51OJ06n87h4i4uLueiii/jNb37DqlWrWLBgAaeccgoej4fi4mKUUhQVFfHOd76T3/zmN6xcuZL58+ezevXqY/vceOONnHnmmZxyyin8/ve/5xvf+AZXX301yWQSu93OnXfeyerVq/nqV7/KxRdfTHFxMaeeeioOh2PA987lcpky5rahoYH+/7/5YKRxHWx8EJ928763XcC3HngagrB0ihdWpn+MbMWWK/kaVyHYunUrt9xyywltykiceeaZzJw5k4ULFx5rU/q79NJL+elPf8qCBQuOtSm9brzxRpYsWXKsTfmv//ovLr744hPalNtvv53TTz+dsrIyli1bNtYfXaTj6FYomw7ucuNxzULY9YS5MQnRx/YjPditisrQAfDWMGXSJPZv84JqB60hDxeMLaR29wtf+IK0u2bRWufsC5gBvJ7Gfr8GrknnmKeeeqrub8OGDSdsywc9PT1mhzCo4WLbvn17jiI53tNPP23KeYcz0rgO/OAyvfUrS3RXMKpvvm+jDv5ntdaP3poXseXKUHEBr+mRtSV3Y8ylHLA9ARTwQ2A3sAU4JZ3jDtSepPu7n49/3/kWU288ZrUnA8m3v5dRxfOzc7X+7TveevzCD7X+zxKt/a3mxZRF6cQzijblUmBnqs24dYDnpwFPAxtTbcrlwx1zoPZktD9PrmU6put/+bK+9PvPan3XxVr/8lL9i2f36K9/8ePG72mo64T9+7cR+dqW5Yt04sllu5tvv9NjjWeo9iSX5c//ALwEzFdKNSqlPqKU+jel1L/lKgYhzOL2H+CotY5St515k4rZl5xErOXEyaQibb/GuPAZzGXA3NTXjcBPhthXiMLWdfD4+ZaVc4x/O/ebEk6hSVUMvhOj3VgIXKeU6r9Y0JeBB7TWy4FrgR/nNsrCtq/Nz5yaIvA1QekUplV46NCp0S/BdnODE2IMcja0T2t93Qj2vSGLoQiRW1pTFj1KqOh0AObVFrNP1zKrbRd2k0MrVFrrZ5VSM4bY5Srgt6k7SeuUUmVKqTqt9ZHcRChEjkQDxoVo30SqpN74t+cwxqh5MYyVwG6t9V4ApdR9GG1I34lmGihJfV8KNOU0wgIWTyRp6gpz5RIX7G6G4lpqSlx0kEqkAu1QMcvcIIUYpXyaIyXEuKQjPdiJ4yipAWBubRF/07XYfRvzdmz4OFAPHOrzuDG17YREarjiNaWlpWkVr0kkEqYWuRlIvsXUG49ZxWsGkm9FUEYajydwkJXA9iY/LanX2aM9nAnsXv8MjS2lQ708KzFlWxbiGai9WNVvn9uBx5VSnwK8wIUDHWi49mQg+fb+QmZjag0mSSQ1yaM7IBFhd3OAPYkNdGgjL936cgPte45fQLp/u5uvbVm+SCeeXLa7+fY7nc14JJESIsu625spA9xlRiJVX+am01KBVccg1AmeClPjm+j0MMVrduzYkVbxGjPK8w4n32Lqjces4jUDybciKCOO583H4VVYePqlLJyWuvbXGl5xMafGzZwM/GwF/x5lxnXAr7XW31FKnQ7co5RarLU+bkHA4dqTgeTb+wuZjenF3W3w7MtcvHgS7Ic5y85k6oJz+d6zBwA4eXYdLD/+XP3b3Xxty/JFOvHkst3Nt9/pbMaTszlSQkxUPe1HAXCUGomUUgpraZ3xpO+oWWGNd4eBqX0eT0ltE2J86T5o/FvW59ddKSiZnBraJ9KQTnvxEeABAK31S4ALo8KwGMahziAA9TajBDrFk3DarCRcqZuIMkdKFDBJpITIsmBXCwDuVCIF4K5MzWHwyZSdLFkLfFAZVgPdMj9KjEtdB8Fih6JJx28vqYcemcaTpleBuUqpmUopB0YxibX99jkIXACglFqAkUi15jTKAnWwI4jVoqjUHcaGYuNGYlFRKTFlh0CbidEJMTaSSOXI/v37WbWq/5Br861Zs4bXXnvN7DDGtUiP8VlbVP5WIuWtmAJAvFt6pEYjjSqgjwB7MUoZ/wL4hEmhZsX+/ftZvHix2WGcQNoTE3QdMnqjLP0+zkvqoVt6pNKhtY4DNwGPATswqvNtU0p9TSl1ZWq3/wd8TCm1GfgDcEOqmI0YxqGOEHWlLqyBZmNDUS0A1SUuulUpBDtMjC59+dzubtiwwewwJiyZI1XA4vE4Npv8F+a7mM/okSqpfOuOcVmtkUj52g5RbkpUhW24KqCpC5xP5iiccUHakwLV3QilU07cXlpv9HgnE2Cx5j6uAqO1fgTjBkzfbbf1+X47cGau4xoPDnUGmVruAV8zOIrAWQRAdbGTjqZiqoITt0dK2t3CJz1SWfLd736XxYsXs3jxYr7//e8Dxh/M+9//fhYsWMA111xDMGiMG7711ltZuHAhS5YsObZqdmtrK+9617s47bTTOO2003jhhRcAuP3227n++us588wzuf7661m9ejXbtm07dt7eO8KBQIAPf/jDrFy5kuXLl/PXv/4VgFAoxLXXXsuCBQt45zvfSSgUyuG7MjHpQDtRbaWsrPLYtrqqSnq0h1CH3DEWwxtte/KlL30JkPZkXPM3nzisD4w5UjphPC+EiRo7Q0ytcIP/KBS/9btaU+ykNVmEztM5UkO1uytWrBgf13HrfwN//jdIJoffVwxo/KfBj94KR7dm9piTTobLvjno0+vXr+dXv/oVL7/8MlprVq1axbnnnsuuXbv41a9+xZlnnsmHP/xhfvzjH/Mv//Iv/PnPf+aNN95AKUVXVxcAn/nMZ/jc5z7HWWedxcGDB7nkkkvYsWMHANu3b+f555/H7Xbzve99jwceeICvfvWrHDlyhCNHjrBixQq++MUvcv7553P33XfT1dXFypUrufDCC/nZz36Gx+Nhx44dbNmyhVNOOSWz7404gQp10KVKqLG9dVd4SrmbFl2Gs1um7RSUIdoTdyIO1lE0qaNsT3bu3Mkvf/nLIduTQ4eMis7SnoxTWoO/BYpqTnyuJNVL1X3YSKqEMEE0nqTNH6Gu1A2Hjk/6q4udtCWL0f4jDLkIyKO34j68cXTt62DG2O4uWbKEz3zmM4V9Hde+Bx65BRIRmH0BLHn36I4zwUmPVBY8//zzvPOd78Tr9VJUVMTVV1/Nc889x5QpUzjzTGNkwAc+8AGef/55SktLcblcfOQjH+Ghhx7C4/EA8M9//pObbrqJZcuWceWVV9LT04Pf7wfgyiuvxO12A/Ce97yHBx98EIAHHniAa665BoDHH3+cb37zmyxbtow1a9YQDoc5ePAgzz77LB/4wAcAWLJkCUuWLMnpezMR2cKd+Cwlx22rK3XRQjmWgNwtFkMbrD2ZOnWqtCcTXdQP8RAU1bDhYCc/fHIX8UTqznJvchVoMS8+MeG1+MJobXzmGb2nbyX91cVOOnRxXvZITYh297nvgNUO1SfB0/9l3JgRIzb+e6SGuOOQa6rfwqtKKWw2G6+88gpPPvkkDz74IHfccQdPPfUUyWSSdevW4XK5TjiO1+s99n19fT2VlZVs2bKF+++/n5/+9KcAaK3505/+xPz587P7Q4lhuWKdhGxlx22zWS34bJW4wm+aE5QYnSHak1CO1xVJpz35wQ9+wDPPPCPtyXjlN5KkgKOSf7tnPS2+CG82+/jRdctRxxIpKSwnzNPcEwagttRlVOfrm0gVuTiEG0vMP/Ti9Jd9M+ft62DG1XVc46sw8xyYdR48eotR5bO0PjvnGsekRyoLzj77bP7yl78QDAYJBAL8+c9/5uyzz+bQoUO89NJLANx7772cddZZ+P1+uru7ufzyy/ne977H5s2bAbj44ov50Y9+dOyYmzZtGvR8733ve/nf//1furu7j92ZuOSSS/jRj35Eb1GhjRs3AnDOOedw7733AvD666+zZcuWjP/84njeeBdhe9kJ2yPuaopj7XIXSAxpsPbk4MGDw7YnW7cawxClPRmnUvOf/rQzRkcgyjWnTuFvW46w8VAXeFJLHPklkRLmOdJtJFKTixREut/6vQTKPHb82o3SSYgFzQpxQGNpdwviOi7ih7ZdULcUJi8zth3ZPPLjCEmksuGUU07hhhtuYOXKlaxatYqPfvSjlJeXM3fuXO68804WLFhAZ2cnH//4x/H5fFxxxRUsWbKEs846i+9+97sA/PCHP+S1115jyZIlLFy48NgdioFcc8013HfffbznPe85tu0rX/kKsViMJUuWsGjRIr7yla8A8PGPfxy/38+CBQu47bbbOPXUU7P7ZgiKkz3Eexce7EMX1eIgBuFuE6IShWKw9mT+/PnDtiff+MY3AGlPxq1Uj9RzRxRnz63itrcvxGGz8PDmJrC7wFkqPVLCVEdTidQkWypR8r6VSJW67fgxhsER8eU6tCEN1+6uWLGisK/jml8HtJFI1S4GZYEjm0Z+HDEBhvaZ5Oabb+bmm28+btv69etP6Jr2eDy88sorJ7y+qqqK+++//4Ttt99++wnbamtricfjx21zu9387Gc/O2Fft9vNfffdd8J2ny+/GrHxIhmPU6L9aHflCc85iquhGRL+NqzustwHJwrGQO3JG2+8ccJ+/duT3r/rXLcnIkdSidSGdgc3nFJOicvOefOr+duWI3z5bQuxeqtkjpQw1dHuMC67hZJEp7HBe2KPFGAkUsUDVJ800VDtrq/PUMN8uI4b8TVcb+9T3VJweKBqvvRIjZL0SAmRRd1dbViUxuI9cbUoR6kxVry7Qyr3CSFGIdCCVlY6KeaU6UYbc8WSybT6Imxu7DLmowQm7ho9wnxHe8JMKnGhegtKeKuPPVfktBFUvYlUjwnRTWBHNhv/F8V1xuO6pZJIjZIkUkJkUXeXsWK73VN2wnPeMiOR8rUfzWVIQojxwt9MwF6OVhaWTCkFYPUso/d7/f5O4+6/X3qkhHmOdoeZ1FtoAo6bI6WUQjuMxXnzbWjfuNe+26jW11s8o3aRsYB3qMvUsArRuE2ktEzgzxh5L0cv5DOGM9i9pSc8V1Jp3AkKdMqFTr6Tv4HMkfcyg/wttOtS5tYUUeyyA0ZJ6emVHl470AHeGpkjJUx1tCdsrCEVTCVSfYb2AShnarrDAImUtBWZc8J72d0IpVPeelw+3fi362DughonxmUilUgkaG9vlz/CDNBa097ePmD5TjG8aKALAMcAPVKVNcYimZFuSaTymcvlkvYkQ6Q9yTB/C0eTpcytOX7u7anTy3ltfyfaWwWhDkjETApQTGTJpKa5J0xtictI6C12cB1/U9HiST3ul0hJu5s5J7S7ibjR+9Q3kSqbZvwridSIjctiE4FAAJ/PR2trft2JC4fDeXsBMVRsLpeLKVOmDPicGFo0YFTkcxWVnfBcZVkZYW0n4Zc5DPlsypQpNDY2Dtue5OPfd77FFA6HKSsrk/YkQ3SglabYTKaUu4/bvmJ6BQ9tOEw7ZVQBBNvzbiK/GP86glFiCW0sxtvaZvRG9VuHyebuTaT8x23v3+7mY1tWSPEcdx3nOwI62S+Rkh6p0RqXiZTWmpkzZ5odxgkaGhpYvny52WEMKJ9jK2TxYBcAruITi03YbFbaVCkqJIlUPrPb7Wm1J/n4N5RvMeVbPIVOB9tpTy6mvl8idcr0MgD2Bt1GIuVvkURK5Fxv6fPaEhfsbztuflQvp6fE+KZfsYn+7W6+tR0FHU93o/Fv30TKXQ6OYug6kPngxrmcDe1TSt2tlGpRSr0+yPPvV0ptUUptVUq9qJRamqvYhMiWZNj4cPAUlw34vN9aii3cmcOIhBDjQjyCJRakUxef0CM1u7oIh9XCTn/qDrWUQBcm6F2Mt67UZcyR8p6YSHm9HqLYpNhELh1LpKa+tU0pY3if9EiNWC7nSP0auHSI5/cB52qtTwa+Dvw8F0EJkU29iZS3+MQFeQHC9jJcUUmkhBAjFDQqgnZSTH2Z57in7FYLc2qK2NJpP25fMTil1KVKqZ1Kqd1KqVsHeP57SqlNqa83lVJdJoRZUI72pBbjLU3NkRogkSpzO/BpN1oSqdzpSSVSJfXHb5dEalRylkhprZ8FBm3NtdYvaq17ryjXATKIXhS+iI+YtmJxuAd8OuaqwJvoym1MQojCF0olUrrohKF9AAvqStjQZjUe9K7hIwaklLICdwKXAQuB65RSC/vuo7X+nNZ6mdZ6GfAj4KGcB1pgjnaHsFoUVUVOCLQft4ZUr1K3sShvPNRtQoQTVHcjuMrAWXT89vLpRiIlBT5GJF/nSH0EeHSwJ5VSNwI3grEadENDw3HP+/3+E7blg3yNC/I3tkKPK955lIBys+mZZwbeIWZnjvbxz6eexmZRA++TpdhyLV/jEqIgpZKjmLOMIueJH+UL6op5aIMN7bagZFHe4awEdmut9wIope4DrgK2D7L/dcB/5ii2gnW0O0JNsRNrIgJRH3gqT9in1G3Hj5t4sAe7CTFOSN2Nxw/r61U61ZirFu4y5kyJtORdIqWUOg8jkTprsH201j8nNfRvxYoVes2aNcc939DQQP9t+SBf44L8ja3Q41r32o8IRb2D7rv58D8p3vUIi5Yup66yLKex5Vq+xiVEQUoN13OVnDhcCmBhXQkaCzFHGQ7pkRpOPXCoz+NGYNVAOyqlpgMzgadyEFdBO9oTMob1HVtD6sQeqZJUItU7DF7kgO/IwMVnSupSzx+VRGoE8iqRUkotAe4CLtNaS8svCp49HiBs9Q76vLPE+GDpaD2SsURKCDEBpIb2ectOvDgFOKnOqIYWsEkilWHXAg9qrRMDPTnciJmB5GNvfSZi2nskSH2Rhdee/QcrgK37jtLuO/6Y+9oT2LWbQGcLrw5xvnx7jwo5ntUdh+lKVvJGv/1Lu46yHNj8/GN0VjTnLJ5cyGY8eZNIKaWmYYw5vl5r/abZ8QiRCY64n8gQiZSnvAaArvZmYEGOohJCFLxUcuQtqxnw6Qqvgwqvg06KKZdiE8M5DPQd6zQltW0g1wKfHOxAw42YGUg+9tZnIqaep/7BpXOmsuIkG6yHk1edB1NXHrdP7ZEe3tzkxmvtGPJ8+fYeFWw8WsNzPibNXsyk/vu3T4VNX2TprFpYlsaxMhFPjmQznpwlUkqpPwBrgCqlVCPG+GI7gNb6p8BtQCXwY2Us2BbXWq/IVXxCZIMrGSDsrB30+eJy425yoFPKEwsh0pcIdBDWTkqKiwfdZ051ES2dRcwKyhypYbwKzFVKzcRIoK4F3td/J6XUSUA58FJuwys8vnCMQDRhlD4PpBYzH6BqX0mq2IQ1JlX7ciLqh0RkwP+LY8P9fEdyG1OBy1kipbW+bpjnPwp8NEfhCJET7mSAgL1o0OdLKowkK9wjFzpCiPRFfW10UkxlkXPQfWbXeDnc7IGgDPIYitY6rpS6CXgMsAJ3a623KaW+BrymtV6b2vVa4D6tpazZcI5bjLc3kR9gQd4ipw0fbmzxQC7Dm7iOJbUDDAl2eMFZAv6xDeubaPJmaJ8Q45FHB0nYB79jbPUY60tFfTKHQQiRvoS/jS5dRJXXMeg+s6uLaIp50cEOVDIJllwuHVlYtNaPAI/023Zbv8e35zKmQta7hlRdqRtaW8HqBOeJn4VFThtB7cKWjEAiDla5LM2qQOpaY4CkFoCiWumRGiFpVYXIklg8QRFB9AAfHsekEqmkzGEQQoxAMtBBpy4apkeqiE5djNIJo6SxEDlyJNUjNanEBYE2YyiZOnGJD6tFEbO6jAcx6ZXKuj7DLP+y8TCfvW8jD65vfOv54kngkx6pkZBESogs8QcCOFQCXCWD72R3E1FOLOHOwfcRQoh+LOEOOimmYogeqTnVRXTo1I0cuVkjcqg5lUjVlDjfSqQGkbR5jG+iwVyENrGlhllGnBXc+tAW/rq5ia8+vI1gNG48XzxJeqRGSBIpIbIk0GMkR5ahEikgbCvBHu3KQURCiPHCHukyhvYVDZ5I1Ze58VlT7Y+UQBc5dKQnTIXXgctuNXpBBhtKBmBPJVIxSaSyLtUjtandRjiW5MazZ+ELx/nb5lTyVFRrzJGSaYBpk0RKiCwJ+Y1EyuYeOpGKOcpwx3uIxAdclkQIIY6XTOKI++hRRZS47IPuZrEoHCWp8uiSSIkcau4OG8P6wOgFGai4QS+HJFI5E2gHu5fn9gewWhQ3nT+HuTVF/OHVg8bzxXUQD8tQ4BGQREqILAn5jZXa7e4h5kgBCWcZZcpPS08kF2EJIQpd1IdCE7eXYLGcOO+kr+Ly1PILUgJd5NCR7rBR+lzrYYf2YU+ttShD+7Iv0AreKp7b3cayqWUUu+y8bUkdmw510R2MGT1SIPOkRkASKSGyJBY21sWwe4bukVKeCsrx0+KTREoIkYZwNwDaOXTbAlBWZawNowPSIyVyp7knTG2py1i3KBaEooEXjgawuFKJlBSbyL5gG0lPFVsbu1g9yyh2dcbsKrSGdfvaoSjVc9hblEIMSxIpIbIkFvID4HAPvo4UgK2ogjLlp1USqRFRSl2qlNqplNqtlLp1gOenKaWeVkptVEptUUpdbkacQmRcqAsA5SkfdtfJ1ZWEtINgtyz6LXIjEk/QHohSV+ICf+r3rmjwheltDumRyplAK2FHOUkNMyqN933Z1DJcdgsv7WkHbyrhDUh7kS5JpITIkkTYuLvmGGZon7OkijL8tPaEchHWuKCUsgJ3ApcBC4HrlFIL++32ZeABrfVyjIU0f5zbKIXIklSPlNVdNuyu0yu9dFBMqEsujERu9A5Try3tm0gN3iNlc/f2SEkilXWhLvwW45pkSrkxN81hs3DajApe2N321v+TX3qk0iWJlBBZkowYQ/tcnqETKXdJDXaVoLNbSqCPwEpgt9Z6r9Y6CtwHXNVvHw30jn0qBZpyGJ8Q2ZOaCG4vGr5Halqlh05dTKxHLoxEbvSuIVVX6jIqwMGQPVJ2lzFqQ0dlaF/WhbroShqJ65Ry97HNq2dVsqvFTzfFoKzSIzUCsoS0EFmSTH0ouLxDz2OwpIbnBDvlQmcE6oFDfR43Aqv67XM78LhS6lOAF7hwoAMppW4EbgSora2loaFhVAH5/f5RvzZb8i2mfIsH8i+mdOKpbnqZRUBrV2DYfWNJjUsXU9TZNG5+t/MtHnG8I93G6Iq6UjfsG35oX++ojXjYz+A1KMWYJeIQ9dEad2O1KCPRTVk+tQyATYd7ONdb9VZPohiWJFJCZEvESKScnqHnSOExJnyGe6SqVoZdB/xaa/0dpdTpwD1KqcVa62TfnbTWPwd+DrBixQq9Zs2aUZ2soaGB0b42W/ItpnyLB/IvpnTiCTyzBd6EOQuWsubcJcMe8/Hny/Gye9Q/ZyG+R8I8TV1Gj9TkslSPlLKCu2LQ/V1eI5GKhiSRyqrUkODmqIu6Uhc261uD0k6eUopSsPFgJ+d6a6TYxAjI0D4hsiU13lv1lnYdjNvokYpLVa2ROAxM7fN4SmpbXx8BHgDQWr8EuIAhavAKURii/naSWuEqLktr/4S7Ak+8O7tBCZFypDtEqduOx2EzEilvNVgGv9z0uN3EtPVYgSaRJakhwY1h53HD+gCKXXbm1RSz6VCXUblPeqTSJomUEFliiQUI4RzyAwQ4dqdOBztyENW48SowVyk1UynlwCgmsbbfPgeBCwCUUgswEim5zSYKXjzQhR83pR5nWvtbvZV4dQDi0SxHJoTRI3Vs2Ji/ZchCEwBFThshnMQjMkcqq1LVPvcH7ccKTfS1bGoZmw51ob3V0iM1ApJICZElKhYkhGv4HVM9UtZwF4mkznJU44PWOg7cBDwG7MCozrdNKfU1pdSVqd3+H/AxpdRm4A/ADVpreYNFwUsGO+nWXkrd6Q2EcpYaa8MEpAS6yIEj3SEml6V6PAItQ86PAiORCuIkKYlUdoWNglYHAg6mDpBILZ9WRlcwRre13EiA5eMyLTJHSogsscWDRCzpJ1Kl+GgPRKgpTuM1Aq31I8Aj/bbd1uf77cCZuY5LiGzT4W568KSdSBVVGIvyHjlymDmVU7IZmhA0dYVYlipegL8FahYNuX+Ry0ZQO/FIIpVdqR6pbrzHFZrotWxaGQCHIkWUJSIQ6QFXaQ4DLEzSIyVEllgTIaIW9/A72hzEbV7KVEAW5RVCDEtFuunRXkpc6SVSFVV1ALQ3ywoAgxluge/UPu9RSm1XSm1TSt2b6xgLQSiaoDMYM3qkksm0h/aFcaJlHansChk9Ut3aS2WR44Sn59YU43VY2elPXbfIWlJpkURKiCyxJ4LpJVJAwlVGmfLRIomUEGIYtkgP3XgpSbNHqmbSZAB6Oo5mM6yClc4C30qpucAXgDO11ouAz+Y6zkLwVulzl1HcIBkbPpFyGUP7kHWksitVbKIHL5VFJ86vtFoUS6aUsaUzlWTJWlJpkURKiCxxJMPErOklUspdQTl+WnskkRJCDM0e6yGgvLjs1rT295YbQ/uCnXJhNIh0Fvj+GHCn1roTQGstb+YA3lqM191nMd7he6SC2olFeqSyK9RF3OIigoNK74k9UmAM79vQkbpBI5X70pKzOVJKqbuBK4AWrfXiAZ5XwA+Ay4EgxsTwDbmKT4hMcyTDhKzpVdu2FlVQpg6z3RfOclRCiELnTPgJ24rTf0FqHmZMhuoMJp0FvucBKKVeAKzA7Vrrf/Q/0GgW+M7HBYZHG9NzjTEADu3cjDuylWXAxt1H6G4b/Fhaa6I4SYSaBz1nvr1HhRjP/H1v4FHGzd1tG15mj02dsI+tO05zogTs8OamF2hqLctaPLmUzXhyWWzi18AdwG8Hef4yYG7qaxXwE05syIQoGC4dwmc7sTLOQKyeSiosb8ocKSHE0BIxnMkQcecIEimrnaClCEtQ1qobAxvG9ckajHXrnlVKnay17uq702gW+M7HBYZHG9OWJ3fB629y1cXn4tzeBpth+VmXQNXcIV/3t4Zv47YkBj1nvr1HBRnP0V/Q0l2OK2rhkgvWYPRfHG9uV4gfb3wCjWJeXRnzZBHvYeVsaJ/W+llgqIVyrgJ+qw3rgDKlVF1uohMi85w6jLalN7QPTwXlyi9zpIQQQ4v4AEg4RpBIAWF7GY5oJ0lZYmEg6Szw3Qis1VrHtNb7gDcxEivRx5HuEFVFDpw261tDw4YZ2gcQs7qxJWVERlaFu/HjpdLrHDCJAphc6qLY4yJgLZE5UmnKp/LnA3Wt1wNH+u84XNd5vnUp9srXuCB/YyvUuJJas4ow3eFEWvHPaOlhqvaz+9DRMf+8hfqeCSHSkEqkGGEiFXdXUho0CtpMGqD08QR3bIFvjATqWuB9/fb5C3Ad8CulVBXGUL+9uQyyEBiL8fZWfWsGmwucJcO+Lm51Y4+HshzdBBfqopuBK/b1UkqxeHIp7UfKKJKhwGnJp0QqbcN1nedbl2KvfI0L8je2Qo0rGIniaohSXFnHinTid26HAw9gG2JoQ6ZiM0u+xiVEQUklUhbXyBIpi7eSio49HO4KSiLVj9Y6rpTqXeDbCtzdu8A38JrWem3quYuVUtuBBHCL1lrGSvZzpDvEjEqv8cDfAt4aGKT3o6+EzY0jFjYWgU1jfzEK4S46kjVUDFJooteiySU0HSxiqr9FKtKlIZ8SqXS61oUoCIGAH4/SKEd6c6R6J4Mn/O1orQftdhdCTHCpRMrqHv4uf1+O4moq1CZe6Qxx6vRsBFbY0ljgWwM3p77EII50hTljdqrIkr85rWF9ANrmxoKGeBjsaQ6JFyMT6aEj7ho2kVo4uYQWXUq8p5Gh9xSQX+XP1wIfVIbVQLfW+oRhfUIUgkjAD4DFWZTeCzwVxj/xHnyReLbCEkIUuETYSKRsI0yk3GU1VOCjsUNKTIvs8IVj+CJxYw0pSC3GW5vWa7U91YsVld/PrNAaHfHRFnNQNcAaUn0tmlxCmy7FEpShfenIZfnzP2BUu6lSSjUC/wnYAbTWP8W4E3Q5sBuj/Pm/5Co2ITItEuoGwOL0pveCVI9UmfLT0hOhxJXeQptCiIkl4u/CA9g9pSN6nb24GlSMlvahaj4JMXrH1pAq6zNHaurKtF6re3uhYgGgMgvRTXDRAEon6UoM3yM1vdJLhyrFlggZiyQ70ryOmaBylkhpra8b5nkNfDJH4QiRVeFUj5TVlWaPlNvokSrDT4svzJyaNF8nhJhQwgEjkXJ6y0b2Qo9xcdrTcTTjMQkB0NRlFIuYXOqCRByC7Wn3SCmH9EhlVWpIsB83s4dJpOxWC5aiWghh9CpWzMxBgIUrn4b2CTFuxENGo2VPd0J4amhfmfLLWlJCiEHFgkZvt7NoZD1SvYlUuEtKGovsOK5HKtAC6LTnSFl6E6lYIEvRTXCpRMqnPVQOk0gBuMsnGd8EZHjfcCSREiILYmGjR8ruTrNnyVWKRlGu/BztlrU0hBADS6Ru0rg8I5sjhccoABD3t2IMABEis5q6QlgtitpiJ/Q0GRtLp6T1WovLSKR0VBKprIj0AODDTYl7+KkD5TXG/1ukS3qwhyOJlBBZ0Dsh3O5Js0fKYkW5SqmyBjjaI4mUEGJgiXAPfu2iyDP0hPETpHq9ixI9tPql11tk3uHOEJNKXNisFuhJFV0umZzWa22pwkyRkCRSWZFKpPzandYc7EmTjSLabUcPDbOnkERKiCxIhI0PgxHdNXaXM8kekh4pIcSgkuEe/Lgpdo5winNqaF+F8tHYKQufisxr7AxRX54qGtHbI1VSn9Zr7akeqUjQn43QRJ85UiXu4duOadOMNRK62mQVouFIIiVEFiQjxoeBM90eKQBPBdXSIyWEGIKK+PBrN0WuESZSrlK0xUaF6uGwJFIiCw53hZjSW7Gv5zDYXMcq0g7H5jY+K2Opoasiw3rnSOGhOI0eqWnVZXRpL9Gu5mxHVvAkkRIiC3rHebu9I0ik3OWUKT/N0iMlhBiEivrx46JopD1SSqHdlZQjPVIi8+KJJEd7wsf3SJVMhjQXl3em5hP3zi8WGRY2hvYFcON1WIfd3W610G0pTxUNEUORREqIbEglUmlX7QNwV1CifTT7IiSSMhlcCHEiS8yPX7vxOka+eonFW0mtLUBjp5SYFpl1pDtMIqmpL+ubSKU3rA/A6TESqbgkUtmR6pGyOItRaSa3IUcF9nBbNqMaFySREiILVCxIBDtYR3Cx46nAk/CRSGraZTK4EGIA9rifkMWDxZLexdBxPEYidbhLeqREZvX+Tk0p9xgbeg6nXWgCwJUaBh+PSLGJrIj0EFEuPB5X2i+Ju6spinVKlc9hSCIlRBZYYgHCjLCqlrscR9yHlYTMkxJCDMgeDxCxekf3Yk8llVJsQmRB77y7+nI3JJPQcwSK69J+fZHLQUg70JJIZUfER8jiodg5/PyoXtaSGirokrUthyGJlBBZYImHCCv3yF7kTi3Ki//YwoZCCNGXMxEgOoZEqkQbxSbkLrPIpN4eqbpSFwTbIBkb0dA+j8NKECdJWUcqOyI9BNOs2NfLVVZHiQqxr7kji4EVPkmkhMgCayJIxJJ+FzpwrLpRmfLTLD1SQoj+tMaVDJKwp7nQd3+eStzxHiKxGB2BaGZjExNaY2eQmmInLrsVug4aG8umpv16r9NGCCdEZf5eVkR8RunzNCr29SqtMoZmNjcdzFZU44IkUkJkgS0RImoZYY+Ux0ikKi0B6ZESQpwoFsJCkoRt9ImUhSSl+GV4n8iow1191pDqOmD8WzY97dd7nVaC2gkx+b3MioiPbp1e6fNepdVGj2Jni6wlNRRJpITIAkciRGykiVSqR2qGJyol0IUQJ0pV3ko6RplIeasAY1FeKThxPKXUpUqpnUqp3UqpWwd4/galVKtSalPq66NmxJmvDneG3qrY19mbSE1L+/UOq4UQLiwx6ZHKinAP3QnXiIb2WYtrjZd2NmUrqnFBEikhssCRDBG3jm6O1FRXSIpNCCFOlEqktHMEyyr05THaGGMtKblg7aWUsgJ3ApcBC4HrlFILB9j1fq31stTXXTkNMo8lk5qmrvBbFfu6DoKnEpzpJ/xKKSIWF5a4/F5mg4746Eq6RtQjRfEkABI9R7MU1fggiZQQWeDQYeI2z8helLrIqXcGOSo9UkKI/iLGopqWUSdSlYDRxsjQvuOsBHZrrfdqraPAfcBVJsdUMFr9EaKJ5PFD+0bQG9UrbnFiS8jvZVZEevBpNyWuESzJUlRLEoUt0Jy9uMaBka/oJ4QYlluHSI40kXKWgNVBrTXA0Z4wWuu0F84TQox/OuJDARZXyegO4DGG9s3yhNkiiVRf9cChPo8bgVUD7PcupdQ5wJvA57TWh/rvoJS6EbgRoLa2loaGhmFP7vf709ovl0YS0+7OBAAdh3bREN7HyqY38BfNZPsIf6aEtqOiA583396jgopHa86N+PDhpvvAHhoS6RePOMVSSkm0lcf++TROW/rXIwX1/oyRJFJCZIFLR9D2ESZSSoGniipLD8FoAl8kPqIKOxONUupS4AeAFbhLa/3NAfZ5D3A7oIHNWuv35TRIITIoGuzGCVg9o02kUsOHnSEekURqpB4G/qC1jiil/hX4DXB+/5201j8Hfg6wYsUKvWbNmmEP3NDQQDr75dJIYurZ3AQvb+Syc1Yxr9oLz7XhmXsNNSP8mZ586Ue44rEBz5tv71FBxRPxwTMav3Zz2rLFrFmc/vpeXRsnU9vRyZSTVzC3Nv2e8IJ6f8ZIhvYJkWHxeAIPYbRjFGu9eKsoTXYDyPC+IaQzp0EpNRf4AnCm1noR8NlcxylEJkX8Rttgc5eO7gB2N9i91NkDNHYGZS2ptxwG+tbqnpLadozWul1r3bsy6V3AqTmKLe/1zrerL3ODvxkSUShPv2Jfr4TNjSMpCX7GpeZW+vGM/OZsyWRqVZcMBR6CJFJCZFgwHMKmkjDKRKoo3glIIjWMdOY0fAy4U2vdCaC1bslxjEJkVCRoJFLOolEmUgCeSqosPgLRBF3BWIYiK3ivAnOVUjOVUg7gWmBt3x2UUn1v418J7MhhfHntcGeIco8dr9M2qtLnvRI2Dy4tn3sZl0qkfNo9smITgLN8MjWqk0NSnGZQOUuk0igtOk0p9bRSaqNSaotS6vJcxSZEJoX8qQnho0qkqnHFUomUVO4bykBzGur77TMPmKeUekEptS41FFCIghVPJVIuzxgSqaIaypNGGyMl0A1a6zhwE/AYRoL0gNZ6m1Lqa0qpK1O7fVoptU0ptRn4NHCDOdHmn+PXkOpdjHfkiRR2D3bikIhnLjjxViKFe0TlzwFcFfVUqR6a2nuyEdm4kJM5Un2G4VyEccHzqlJqrdZ6e5/dvozReP0kNUTnEWBGLuITIpPCQaPRsoyg9OsxniqsoXZAeqQywAbMBdZgDNV5Vil1sta6q+9Oo5kcPpB8m1wL+RdTvsUD+RfTUPEUH9hNlbby5pu7UO37RnX8RRErNn8jAI89/ypttcNfBhTSezRaWutHMK47+m67rc/3X8AYKiz6OdwZYnZ16vPu2BpSUwd/wSCOzSuOBcE6ynmA4kRh4waMX7tHPLRPlUwGwNd6CFiS6cjGhbQTKaXUVcDfU3duRurYMJzUsXqH4fRNpDTQ+5dTCsgKYKIgRYO9JYpHN7RPxYLUe5Ic6Za7xUMYdk4Dxk2bl7XWMWCfUupNjMTq1b47jWZy+EDybXIt5F9M+RYP5F9MQ8Vz8NAD+FvcnHX6aSyaPMpeKf9aktt2AVA6eRZrzp41ppjMkG/xTGRaaxo7Q5wzr9rY0HUAimqN+XgjpBx9EqnRVqYUJzrWI+WhaCTlzwGKjRGtEVmUd1AjeUe/BtyllLofuEdr/fIIXptOadHbgceVUp8CvMCFgx1suDvI+Xb3rFe+xgX5G1shxtV5+A3mAoeOtNE5wtgnHWnnJGCqtYOte+w0NHRkNDYzZTiuY3MaMBKoa4H+Ffn+AlwH/EopVYUx1G9vpgIQItd0xIdfuylyjmEwSVEtllAHZQ4tQ/vEmHUGY4RiCaPQBIx6DSkAlRrFkYgEsI5yqTQxgFQilbAXYbeOcEZPalFefJJIDSbt1lhrvVQptRT4APAnpVQAuAf4ndZ6fwZiuQ74tdb6O0qp04F7lFKLtdbJAWIZ8g5yvt6tyte4IH9jK8S4Nj3bA7tg7sLFzF898D6D2hmCnXewrNbG492uUf3shfiejZTWOq6U6p3TYAXu7p3TALymtV6beu5ipdR2IAHcorVuz0gAQphARXz4cVMzlkSquBaARaVhDkslLjFGvb9DU/rOkapfMapjWVPzisOBbrxVGQlPwLGFvBnNQt6lU4x/oi34wrERF6uYCEaUmmqtN2utb8EYUvNJ4N3AHqXUs0qp9yulBjteOsNwPgI8kDrPS4ALkD8lUXDiYT8ADvcoGq3UgpnTXUGaukJSnngIWutHtNbztNaztdb/ndp2WyqJQhtu1lov1FqfrLW+z9yIhRgbS8yHH9fIh+f0VWTcYT7JG5CSxmLMjpU+L3dDMgHdjaMqfQ5gdRmJVCToz1h8gmM9UtbRDJd0lRG3epis2qW9GMSIq/YppWYDtwE/wUh2bgN+gVHx5sFBXjZsaVHgIHBB6hwLUsduHWl8QpgtkUqknJ5RJFKp23D1jgDhWJKOQDSToQkhCpg1FiCIB6fNOvqDpHqkZrsCMrRPjFnv79CUMg/0NEEyPuqhffbUzcdIqmCTyJCIj7By4XU7R/5apYgXT2ayapNEahAjKTbxSeB6jMna9wPXa63X9Xn+T8CA67SkOQzn/wG/UEp9DqPwxA1abseLApSM9CZSo7j7k0qkaq3GB8nhrhCVRaNo/IQQ444t7idsLR/bQVI9UlMcPXSHYjJcR4xJY2eIIqfNKKvdvN/YOJrS54DNZcyRioakRyqjIj0ElIcS9+j+zi1lU6nrOMCGDllLaiAjGR9wGfAdYG2f1b2P0VoHlVJXD/biNEqLbgfOHEE8QuSlZNRobFyj6ZFyFIHNTSVGudLDnSGWTCnLYHRCiELljAeIWEZRDbQvbzWgmGTpAoybNSdNkkRKjM7hrhBTyt0opaDdqAZJ5ZxRHcvpNhKpWEh6pDIq3ENgFKXPe9krplG/bwNrpUdqQCMZ2tegtf5j/yRKKXVz7/da68czFpkQBUpHAgC4vaPokVIKiidREjdqIsjQGyFEL2cySMw2ivXp+rLawFtNRe+ivHJxJMbgUEfwrUIT7XvA5oaS/mujp8eZ+syMR6RHKqMiPnq0m+JRzq1UpVOpVt0cae/KbFzjxEgSqdsG2f7lTAQixHihYgHi2oLFPsohecWTsAeb8TqsMiZZCGFIJnDqMAn7GHukAIprKY63AUgbI0ZNa83BjiDTKlK/k227oHI2WEY8/R4Al9cYxZEIBzIVosBYNqE76Rr10L7eyn2RjkPD7DgxDZueKqXO791XKXUeoPo8PQuQPlgh+lCxACHlolip4XceSPEk1JEt1Je7pUdKCGHosxbMmBVPxtFzGKfNIm2MGLVWf4RgNMGMqtRCuu27YdLiUR/PnZpXnJQeqYzSkR56dPGoe6R6EynV05jBqMaPdN7VX6b+dQJ399mugaPApzIdlBCFzBILEcbFqNcTLK6DXU9QX+eWYTdCCEMqkdKODKxUWjoF1fgK9WXuY+WrhRipA+3G7860Cg8kYtC5Hxa9c9TH87qdRLQdHZUeqUzSoR78umbUc6R6E6mK2FG6QzFKR9uzNU4Nm0hprWcCKKV+q7X+YPZDEqKwWRNBIhbX6A9QPAmifmaWaDYclERK5J83jvbwu3UHWDa1nHedUm9MNBfZlUqkcGUikaqHUCcz65XcrBGj1ptIzaj0GkmUToy60ASAx2HFhxOiktxnVNSHDw9VYxjal1RWpqkWDnUEKa0vzWx8BS7tgaySRAmRHls8SMTiHv0BUuWJ57r9dIdi+CPxDEUmxNiFYwk++fsN/P7lg/z7Hzfzzx0DrnohMi2VSFmcoyhi01+JcYd5odcnQ/vEqB1oD2C1KGMx3tadxsaquaM+nt1qIYQLYtIjlTHJJJaoHz+u0Q/ts9qJF9UzXTXLnMoBDJlIKaV29Pn+kFLq4EBf2Q9TiMJhT4SIjbVHCpjmSK0lJQ2XyCM/e2Yve1oD3P2h06grdfGbF/ebHdKEEA/3AGB1Z6hHCpjj7KTNHyUUTYz9mGLCOdAepL7Mjd1qgZbtxsbqk8Z0zIhyYYnJZ17GxAIoND7tGf3QPkBVzkolUtJb2N9wPVIf6/P9BzAW5B3oSwiRYk+GiFk9oz9AcR0Adal1XprkjrHIE/FEkntfOcCa+dWcd1INH1g9ned3t7GnVSaHZ1vE3wWAzZOBYTWp8tRTrakS6NLGoJS6VCm1Uym1Wyl16xD7vUsppZVSK3IZXz460B5gemXqs655G5TPAOfYiqGElQtrXHqkMibVk+3HTcloe6QAW9UcZkqP1ICGTKS01s/3+f6Zwb6yH6YQhcOZDJGwjmFoX6pHqgrjIqdRLnJEnnh2VyvNPRGuPW0aAFcunQzAS3vazQxrQogEjEW67RlJpCYDilqM/7eJfpdZKWUF7gQuAxYC1ymlFg6wXzHwGeDl3EaYn/a3B49PpGpHX7GvV8zixpaQz7yM6U2ktHv05c8xeqRKVIDOtqOZimzcSHuOlFLqZqXUstT3q1PD+vYppU7PWnRCFCCnDpOwjaFHylkMdg/F0VbsVpkMLvLHg+sbqSpycMFU4I//wpS17+YUdzNbGrvMDm3ciwWNRMqZiUTK5oSiGsrjxvw26ZFiJbBba71Xax0F7gOuGmC/rwPfAsK5DC4fdQWjdIdiTK/wQiwEHXug5oTcc8RiVpckUpmUGhLswz2moX2UzwRAd+zLRFTjykj6+T7HW6XQ/wf4LsYaUt8HVmU2LCEKl1uHSdrHkEgpBSWTUT2HqSuVtaREfgjHEjTsbOWdy+uxP/VV2PEwymLjP9w2bm8cfaUukZ54yLiz7CrKUMWsknrcwaPYLHKzBqgH+q422ki/6xql1CnAVK3135VStwx2IKXUjcCNALW1tTQ0NAx7cr/fn9Z+uTRcTHu7jXl1viN7ee0fT7FCJ9nWBq1j/DksCSu1ycAJ586396hQ4inv2MhSIIibdS88O+oKq55AGysBR9denn766WGPUyjvTyaMJJEq1Vp3p7q2lwIXaq0TSqnvZCUyIQqQ1ho3EbTdO7YDlU2DroNMKZd1XkR+eHFPG8FognfWtcM/7oUzPwM6ycoXf0yw8x0Eo2fgcYx+DL4YWiLcQ1A78bqdmTlg2VRU8zbqylwy72EYSikLxs3jG4bbV2v9c+DnACtWrNBr1qwZ9vgNDQ2ks18uDRdTz+YmeGkjbzt3FfMPN8J6WHTBtVA5e0znfX79T3D5d51w7nx7jwomnm1dsAWUq4Tzzjtv9CeIhdGvfpo63cyylWdS7nWMLh6TZDOetIf2AYeUUmcA1wLPppKoEkDK/QiREolGcaoYeiw9UnAskZpW4eFguyRSwnxPbG+myGljedvDYHPBWTfDqo9jIcHllnW8frjH7BDHNR3uGfOE8eOUz4DOA0wtdUqvNxwGpvZ5PCW1rVcxsBhoUErtB1YDaydywYkDbUZBiGkVHjj0KrgroGLWmI+r7R5cesKPnMyc3oW8x7psgt1F2D2JGRYpONHfSBKpW4AHgS9hjBMGuAJ4JdNBCVGoQgGj0VJjrFxE2TQItjGrTNEeiMpaUsJUyaTmnztaOG9uOdZtD8H8y8FdBqX1xMtmstSyhzeOSiKVVREfPu2myDmGeQ59lc+EZIxFRX7p9YZXgblKqZlKKQfGDeO1vU9qrbu11lVa6xla6xnAOuBKrfVr5oRrvgMdQWpLnLgdVmh8BaauMoalj5G2eXDJFLTM6V1/zjX29eeSZTOYrpo5JO3FcUayIO8jWuvJqYZkfWrzH4ErsxOaEIUnHDQuJi2OsQ7tmw7AfKdRuU96pYSZNjd20eqL8L7KXRDqgCXvPfacdeoKlln2ckB+R7NKRX34cVOUqR6pCmPy+HxHGy2+CNF4MjPHLUBa6zhwE/AYsAN4QGu9TSn1NaWUXOMMwCh97oVgB7S9CVNPy8hxtcODnQTEoxk53oSXSqRs7rEnUvbq2UxXR+XGSz8japGVUqXAfKD/7fanMhaREAUsEui9+zPWHikjkZpubQOcHOwIsHDy2BtCIUbjie3NWC2KU4MvgLMU5lxw7DlVfyp1W/9IV/NBjMrRIhssUT9+3Hjs1swcMFWFa4alBa3LONIdMi6MJyit9SPAI/223TbIvmtyEVM+O9Ae5Nx51dD4qrFhamZqjimH8dkZC/uxF1Vk5JgTWqSHME6K3K4xH8pRM4dq1UNLWxswtrlw40naiZRS6gaMdRb8QN90VANjHxgrxDgQTfVIWZ0ZKDYB1CabgWlyt1+Y6ontzayaXoZj7+Mw90Kw9hleVn8qAN62zcCl5gQ4AdjiASKqDItl7MOnACidAhY7k5JHgHk0dk7sREqkzxeO0eKLMKPKC7v/CTb3sXZgrCypz85QwCeJVCZEjJ7sEncGerJTc+CirXuQYt1vGckcqf8GrtFa12qtZ/b5kiRKiJRoyA+A3V08tgMV1YDNhdvfSLnHzoEOSaSEOfa3BdjV4ue6Ka0QaDXmR/U16WSSWKkNvEEyqc0JcgJwxP1ErBlMdCxWKJtGRcSoqSDDdUS6drcYn3Nzq73wxiMw+3ywj2ER+j6sjt5ESuZcZkRqbmXxWNaQ6pXqxbZ17R/7scaRkSRSNuDx0Z5IKXWpUmqnUmq3UurWQfZ5j1Jqu1Jqm1Lq3tGeSwizxMKpRGqsQ/uUSlXuOyCV+4SpntjeDMC5+lVQ1uOG9QFgdxNwT2KKPkqLL2JChBODIxEkastwj1HFTNz+g1gtioNys0akaVez8Tm32HoQehph/mUZO7Y1dROyd3SHGJtkpIcePcbFeHul5lV6AwflplkfI0mkvgV8ObWewogopawYwwIvwxhEf51SamG/feYCXwDO1FovAj470vMIYbZEKpFyeMbYIwVQMRvadjOt0suBjsDYjyfEKDyxvZmTJhVTcvBJmH4GuMtP2CdWalRzOtAuv6dZoTWuZIC4bYw3aPqrmI3q2Et9qYuDHVLSWKRnV4sPp83CpANrjZsr8y7J2LHtLuNmQTjoz9gxJ7JkqAe/dlOciSI1zmKCzhqm68Mc7ZHKir1GkhR9Dvgy4FNKHez7lcZrVwK7tdZ7tdZR4D7gqn77fAy4U2vdCaC1bhlBbELkhUTEuJB0ejNQGKLmJGjfzcwyB01dYWKJiVtVS5ijIxDltQMdXDMrDi3bB73zbKuabSRS0quRHfEINhIk7Bm4QdNX9TyI+llWGpAeKZG2XS1+Tq5SWDb8Bha9wxiKniG9w+JjIV/GjjmRJXvXn3NnZtmEaMU85qhG9rfJTbNeI0lRPzCG89QDh/o8buTEmWrzAJRSLwBW4Hat9T/GcE4hci6ZKjXqGuscKYDqkyAZY4GrlURS09Qlk8FFbj25o5mkhssdm40NgyRS3klzsb7up7XlKMevayoyondRzbEuq9Bf9UkALHO38PzBsVf1EhPDrmY/txQ3QNQHp9+U0WM7U6M5YmG5UM+IiA8/1RlbyNs+aQFzm17lz60+zphTlZFjFrq031mt9TPZDAQjlrnAGoxVxZ9VSp2ste7qv6NS6kbgRoDa2loaGhqOe97v95+wLR/ka1yQv7EVWlyBI8b9gvWbtmB17BrTOYp8AVYA1v3PA8t5+OmXWFw1/J9sob1nIn89sb2ZulIXdc1PQdX8Y1Wb+rNWGaVwE+17gcysJyP6iBjzRbQjwz1SVfMBmG9toiMwCV84lplJ6WLc8kfiNHf5uEA/BDPOhvpTMnr83kQqEZYeqUywRI1iE5Mz9HftnrwIy8YIHU17gZkZOWahG0n5cydwG3AdUKm1LlVKXQzM01rfMczLD3P8bcopqW19NQIva61jwD6l1JsYidWr/Q+mtf458HOAFStW6DVr1hz3fENDA/235YN8jQvyN7ZCi+ulXX8l0aU4/8JLUJYRTyc8XnQlrP9/nD7ZAjuhdMpc1qyePurYzJavcYmBhWMJntvVxvVLS1DbXoCzPjv4zqlqTlap5pQdqR4p5crwWnLeKnBXMDVxEDiFgx1BFk0uzew5xLjyxpEeLre8THGkGc74UcaP7/KmEqmI9EiNmdZYo358eDJT/hyw1Bi92InmN4ALht55ghjJld73gMXA+zHWjgLYBnw8jde+CsxVSs1USjmAa4G1/fb5C0ZvFEqpKoyhfntHEJ8QplMxP0FcY0+iABweKJtGUc9unDYLB2Uiv8ihV/d3EIoleId3K+gEnPS2wXcunwGA138gN8FNMMlw70LfGU6klILq+VSG9gNwSOZJiWFsO9zNjba/E6+YC3MuyvjxPan5xUlJpMYuFkSRxJ+pqn0A1UYvtqtrbCNuxpORXO29E3if1volIAmgtT6MMf9pSFrrOHAT8BiwA3hAa71NKfU1pdSVqd0eA9qVUtuBp4FbtNbtI4hPCNNZowFCKjPraQBQswDVso1pFR5ZlFfk1PO72nBYLczrfAaKJ0Pd8sF3dnjosVVSEmnKXYATSDjQBYDNk+FECqB6Pu6uXYCWghNiWOFdDSy27Md65qcgEzcM+3F7ikhqhY5KIjVmqZ5sPxlMpDwVBOwVVIX2SQGslJH8FUTpNxRQKVUNpJXsaK0f0VrP01rP1lr/d2rbbVrrtanvtdb6Zq31Qq31yVrr+0YQmxB5wRIPELZkMJGavBxadzKvDLnI6SedtelS+71LKaWVUityGV+he25XG6unurDtfcrojRrmoinknkRlop1QNJGjCCeOSKAbAIc7C4lUzSIs4U7muX3SxohhLTz8R3ospagl783K8a1WKyEcIInU2KUSKZ92U5ShYhMAgZI5zFaNNHbKkgkwskTqj8BvlFIzAZRSdcAdGKXMhRCAPR4gkskeqfoVgGaV6yAH2oNoLYvgQXpr06X2KwY+A7yc2wgLW5s/wvYjPby3ci/EQ0MP60uJe+uYpDpkfZEsiPUmUkVZmL806WQAzio+Ir3eYkjRQDenRV9hV/VFYM9elcewcqHi8rs4ZqkiNQl7EVaLytxxq09ijjrMvlYpCAIjS6S+iDFnaStQBuwCjgBfzXxYQhQmeyJI1OrJ3AFTFZEW612EYgmaeyKZO3ZhS2dtOoCvYywmLlf3I/DC7jYAVkdfAmcpzDhr2Neo0snUqQ6OdstbnWmxkJFIOb1lmT947SIAltkbZY6UGFLza3/BpWKE570jq+eJKBeWmPwujtmxZRMyu5C3d8piSlSIo437MnrcQjWSvr45wE7gGxjrPP1Fa701K1EJUaAcyRA+R23mDuipgIpZTA/vAFaxt9XPpFJZ74U01qZTSp0CTNVa/10pdctgBxpuOYV05WN599HG9ODWCGX2GCX7HuFo5Wm88dwLw76m1K+ZrIK88NKLRA4NXKZ7PL1H2TJQPN4Du6nVFnbu3EWyNfMXLyvddUwNvM6h7gt46umnsajj714Xwnsksi+57a8c1eVMX35eVs8TsbixxmXY2Jj1JlLOzA4J9tQbgz+iR7YDp2f02IVo2ERKKaWAXwIfwrhYacK4iPlPpdQ9wIe1jDcSAgBXMkinLYM9UgD1p1K291lAs7ctIIvgpUEpZQG+C9ww3L7DLaeQrnws7z6amLTWfOGlp/i3+v3YjwaYdNGnmDRn+GOEi4/A4XuYUuEe9Jzj5T3KpoHi2X/oj/hb3JxzxirmT8rwWlIALSuZs38DCQ3zlq1iSvnxbVghvEciy5JJqtpe4SnraVxRnt2F4WMWF7aE9EiNWaS32mdm2wxVswAAa/vOjB63UKUztO9GjLLkq7XW07XWp2utp2GkoWcD/5rF+IQoKC4dJmHP8IfMtNVYA83Ms7ext1Um4KYMtzZdMcZyDQ1Kqf3AamCtFJwY3p7WAEe6w1yunwNvNcxck9brXJXGf0eko/8SgWKsdKQHP5mdMH6cSUsoDh6ihAAHJ+g8qeGK1yil/k0ptVUptUkp9fxAczLHteateJM+2qtXoVQG59sMIGZxY09Ij9SYhY05UlZ3hudWeqvwW0sp9e3O7HELVDqJ1PXAp7XWxy2Mm3r82dTzQgjArUMkM51ITT8TgMuK97K3zZ/ZYxeuIdem01p3a62rtNYztNYzgHXAlVrr18wJt3A8v6uVYoJMbXsOFr8LrGlevJdMBkD5JJHKNBXx49duipxZSqRSczGXWPZOyMp9aRavuTdVUXgZ8L8YPd4Thm/HUwA40uidHqu4zYM9KXMtxyzVI2V3Z74Xu6N4PjPie6VKK+klUguBZwZ57pnU80JMeMl4HI+KQIYndlI1H9wVrLbtZF+b9EhB2mvTiVF4fncb7yvZjEpE4OR3p//CYiORsgeOZimyiUvF/EaPVNYSqVPRKE6x7ObABEykSKN4jda6p89DLzChpjSEdjWwJ1nHgvnzs36uhM2NKyk9UmMW6SGCHa8380MxY9WLma8Osa+5I+PHLjTptMpWrfWANQ611r7UXAQhJrxQsAcvZD6Rslhg+hks2LeRQz1BIvEETps1s+coQFrrR4BH+m27bZB91+QipkIXSyRZt7eDW4tfBO9MqD81/RfbXfgtJXjDzdkLcIKyxfyElCezJYz7cpWiquZxeuc+fjsxb9YMW7wGQCn1SeBmwAGcP9CBRlO8Jh+LZxwXk9Ysb97I83oJJbs30bA3u0P7VEQzVYePe0/y7T0qhHjm7tuJU7vpaG6ioaEto+ezJcqYreK8+MRfaJk1N614zJTNeNJJpOxKqfOAwf5ysnSLTIjCEvJ34wUszgwnUgDTz6Dsjb9Ro9s51BFkTk0WJpyLCW/zoS48kVZmqw1w7n/ACOdC+J01FIdasxTdxGWPB4hYsrCGVF9TTmNxx8PsaZG1YQajtb4TuFMp9T7gyxhFuPrvM+LiNflYPOO4mLob4ZluOssWc/X52a3YB/Dazj/gDkU499xzj83Hyrf3qBDiibf8lkOH3Zw8fzZrzp2d0fPFWibDj79Lna1rwPehEN6fTEknCWoB7h7meSEmvHBq0UyLOzuJFMBKy072tAYkkRJZ8dyuNq6yvYhCj2xYX0rEVU1FoJlwLIHLLr2mmeKIB4jaslspjSkrKN70OxLte4knzsFmnVCDTYYrXtPffcBPshpRHokeXI8DsE0dQQ/1GGi7FzdhovEETrvcqx+teKgbP26KXfaMH9teNYcgbpytsgrSsC1larL2zKG+chGoEPkuHDCG0NtcmV2zAYBJS9COIlZadsg8KZE1z+9u472ul6FuGVSdOFxjOElvLTWqi1afLBydSc5kgJgtCzdo+ppmrAdzCjs41Dnh5qcMWbwGQCnV9w/ibcCuHMZnqvZd64hpK5NPWpmT81kcXqxKEwjIZ91YJMM+/NpDiTsLyajFwhH3HGr8UgJ9Qt1yEiKbYkEjkcpGhRwsVtS00zndtpO9rVK5T2ReTzhG56E3mBPfPareKABL8SSq6KbVN+EuxLMnmcStQySynUhVzyfmqmCV5Q32tEysNibN4jU3KaW2KaU2YcyTOmFY33iVOLSBN/UUls2clJPzWZxG72so0DPMnmJIYWPZhJIs9EgBBCoWMTu5j57gxK6wKImUEBkSC6VKjXqyNJdh+hnMppG2ZikvLTJv3Z52LlXrjAeL3jGqY9jL6rCrBD1tUrkvY6JGUpNwZHk4r1Iw7QxWqR3snoA3a7TWj2it52mtZ2ut/zu17Tat9drU95/RWi/SWi/TWp+ntd5mbsS5U9zzJgcds6kudubkfFaXcdMgHJx4v4eZpKI+fLgpztL6c7b6ZXhVhINvTuzhfZJICZEh8bCRSDk9WbrgSa0nVdG+ITvHFxPa87vbeLvtZZL1p0HplFEdw11RD0BAFuXNnNRaMBmvBjoA+6yzmWpppb1xT9bPJQqDDrRTmuggWnFSzs75ViIlhU/GwhIz1p8rcWenR6pmnjHUs3PPq8PsOb5JIiVEhiRDxjAEV1GWeqQmLyducbIg+jrdwVh2ziEmrL07t7JA7cey+J2jPkZxtZFIRbuaMhWW6E2knDkoMDPzHADKjj6X/XOJgtC6dxMARVMX5+ycjlQiFQ3K0L5R0xpbav25bPVIVc44mQh2kkc2Z+X4hUISKSEyJBkxJsa6vWXZOYHNQU/VclZZJubQG5E9h7tCLOl+2niw8Kqhdx6CraQOAN0jQ/syRUeMi0mLOwtFbPqrWUC3vYb5vnVoPaHWmxWDOLJrIwDTTlqRs3P2Do+PSY/U6MXDWHXc6JHK0hwpZXPQ6JhFedfrWTl+oZBESogM0ak7x56i7N05tkw/g4XqAAcPH8naOcTE8/yuVi63vkyo9pRRD+sDoNiYjG4JyKK8mRIJGssqWLNRDbQ/pThacxYr9VZau+VmjYBI0zZ6tIdZAyy6mi0Or5FIJUJdOTvnuJO6HglZPFldiqKzYilzY28SiUzcghOSSAmRISoaIKid2O3ZufsDUDz/XCxKE9r/ctbOISaebdu2sNiyH9fSq8d2ILubgPLikEV5MybiMxIpuycHiRSQmH0hJSpE63YZ3ifA2/0mTY4ZWHO4rpirqAyAZFiG9o1a2Gg3YvbsDgm2TD8Dt4pyaPsrWT1PPpNESogMsUR7CChPVs9hrV8GgKNlS1bPIyaOWCKJY/9TAKj5l4/5eH57JZ5o25iPIwyRQBcA9mwNGe6nYvFFRLUVdj2ek/OJ/BWPJ6iP7idQmrveKAB3cQXw1igPMQqp3ryEI0tztlNqF54LQNfOZ7N6nnyWs0RKKXWpUmqnUmq3UurWIfZ7l1JKK6VyNyBXiAywxXxZT6Rwl9Fin0J1z4SpvCuy7NX9HaxKbCTonQoVs8Z8vJCzmpJ4u8yxyZBYoBMAZ+riMttqq6vZyElUHZm4F0bCsO/gPsqUH3vdopye1+VN9b5Kj9TopXqktDu7idTkaTM5TA32w9IjlVVKKStwJ3AZsBC4Tim1cID9ioHPADJuSRQcR9xHyJL9EsWdZYuYk9hNMBrP+rnE+Pf0tsOcYdmGfd6FxlpCYxTz1FClOwlEExmITiRDXSS1wu3N7gVRL6UU272rqA3vgW4pYz+RNe00ltqonLUsp+dVNgch7cASlXl6oxbuAkC5y7J6GqUU+4uWMd23EZLJrJ4rX+WqR2olsFtrvVdrHQXuAwYqDfV14FvAxJ21JgqWI+4nYs1+IpWYtIx61c6BA/uzfi4xvmmtad3+DF4VwT7/4swcs6iWGtVFa48045mQDHXhw02Ry5Gzc7ZMMsqgy/C+iS3YaCy0Wjdnee7PrTxYYpJIjVoqkbJ7yrN+qtCUsymjh57967N+rnyUq0SqHjjU53FjatsxSqlTgKla67/nKCYhMsqVCBC1ZT+RKp51GgBdeyZuV7rIjL1tAeb7XyGpbDDz7Iwc01Zah0vF6OiQeVKZoEPd9Ghv1taCGUjljCUcTFYT3fa3nJ1T5B9b+xt0W0qxFNfk/NxB5cEWkzlSo5Ya2ucoyv6Q4LLFxk241s2PZf1c+Sh3LfMQlFIW4LvADWnufyNwI0BtbS0NDQ3HPe/3+0/Ylg/yNS7I39gKKa6Tk358cVvW49XRGPVa0b7taRpck9OKLR/ka1wT2ZM7mjnXsoVY/UqcGVrw1Vlu/E762xph/oyMHHMis0R99OBhsjN3H9cLJ5fyeHIFHz7w5FsLAosJJZHUVIf20VEyh9wMKj1e2OLBHpceqdFKBruIaTteb/Zv7i6cN4edyak49zUAX876+fJNrlrmw8DUPo+npLb1KgYWAw3KGKM/CVirlLpSa/1a/4NprX8O/BxgxYoVes2aNcc939DQQP9t+SBf44L8ja2Q4go3hHCU1nB2DuLdv66eqYlDLB3gXIX0nglzvfr6G9xoOQDzb8jYMYsqjXWowh0yvyYTrJEeerSXuTlMpBbUlfCDxAo+mnwUdj8JlOXs3CI/NPmTrOIQLVVjXBJhlCJWL454wJRzjwexQCfdeCl1Z285ll4eh43tRSu5ouevRk+Yy4zU2zy5Gtr3KjBXKTVTKeUArgXW9j6pte7WWldprWdorWcA64ABkygh8pGOR3ARRTtzs9bLEc8C6kNv5ORcYnxq6QlTcjhVmW3OhRk7bnGVkUjFu49m7JgTmS3WQ8DiwWHL3Wol5V4Hh4uX4LeWwM5HcnZekT8625spUmGKpi0x5fxRWxGupCRSoxUPdNKjPZR5sp9IAQRnXYadOOHtj+bkfPkkJy2z1joO3AQ8BuwAHtBab1NKfU0pdWUuYhAimyL+LgCUKzeJVLDqZKp0J9FOuesvRufhLUc4x7KFuLsaahdn7LiWkknGN35JpDLBEfcRzkERm/7mTy7nRcsKePMfqKRUCJ1okl0HAKiaucyU88dsRbiSQVPOPR4kQ130kLtEavqSc2nWZfRsfCgn58snObvFpbV+RGs9T2s9W2v936ltt2mt1w6w7xrpjRKFJNDTDoAly2s29LJNPQWA1p3rcnI+Mf78beNB1thexzbvQrBk8KPAWUwYJ7ZgS+aOOYG5En6itszMXxuJRZNL+FNwKYS7Ke2WdesmGk/gIACW2gWmnD9h9+LRkkiNlg530629lLpzU+3z1BmVPJFcSXljw7FCFxNF7sYKCDGOhXzGopk2T24Sqao5p5HQiuB+ud8gRm5/W4BE02ZKdQ/MviCzB1eKblslrkhrZo87ESUTuJMBEvbc9HT3tXRqGc8mTiZpdVLVNv6XdlRKXaqU2qmU2q2UunWA529WSm1XSm1RSj2plJpuRpy5EE8kqYkcpMdeDVleh2gw2lGMR4dAFvYeFUuki54czZECcDus7Ky7EruOwNYHc3LOfCGJlBAZEPYbiZTdm/01GwBmT65ml56C9eimnJxPjC9rNzdxnnUTGgWzz8v48QOOKoqi7Rk/7oSTqpiXcOZ+8vaSKWWEcHGofLWRSI3jC1qllBW4E7gMWAhcp5Ra2G+3jcAKrfUS4EHgf3MbZe7saQ0wWzUSKp9nWgzKVYxdJYiEZZ7UaNiiPrq1N2dD+wBmLTmTHclpRF759bhuL/qTREqIDIim5kg5cpRIuexW9jvnUdWzfUI1WGLstNb8ZdNhrnJtQk1dBd6qjJ8j6qqmLNmBlt/NsekdIpOjuZd9VRc7qS9z85x1Fa5IGxzdkvMYcmglsFtrvVdrHQXuA67qu4PW+mmtj401W4dRfXhc2nqwjbnqMI66zM2dHClrqvKbr7vDtBgKltY4YsayCbnqkQK4cOEkfp+4AGfrFkq7t+fsvGbLi3WkhCh0sUAXAO7ispyd01dxMiXNT0J3I5RNHf4FQgDbmnoItx5glmsPnPShrJwj4a1hcvuLdIdilHlyM0Z/XEolUrmae9nf0qml3N+4kPdjQb3xd6hbakocOVAPHOrzuBFYNcT+HwEGLE823DqXA8m3NfY2b9nNNSrGnoibzSbF1dNprCH10vPPUFw1Ne/eo3yOxxoPcjYJgsrLC889m9M4XnStoSvxJ+r33kdDw6Kcnnso2fz/kkRqPGjeBn+8wfjQvfz/YOFVw75EZFYiZFzwuEuyv4p4L9vUU6AZfPtepXi5JFIiPQ9vbuIS23rjwfy3ZeUcluI6SlSI3R1dlHlqsnKOiSAe7MIG2Dy56enub+mUMh7ZepTOqrlU7P4nnPdFU+LIJ0qpDwArgHMHen64dS4Hkm9r7G3a8BwAi857L9T2H+GYG1uSR+AozJk5jQWnnpt371Fex9PdCM9D0lmW8xi36d38/J+X8R8991MzywXTVuf0/IPJ5v+XDO0rdLEQPPhhCHWCtxr+/HFo3Wl2VBOODvcAUFSSuwuemjkriGkrXbtfydk5RWFLJjVrNzfxfu8rULMIquZk5Tz2sjoAulsPDbOnGEowVQ3U7i0z5fwrZhjt2U7XEmjaaHzOjE+Hgb53o6akth1HKXUh8CWMdS4jOYotp+KJJCVdO4hhhyrz5ki5iozfvYhv3P7OZU/QGA4Zc5bl/NTvWF7PrxKX0G0ph8e/PCGmHkgiVeg23AOtb8A7fgLvfxCsNnj6G2ZHNfGEuwhoJ0UuV85OedKUKnbqqaimjTk7pyhsrx3oxNmzjzmRHbD0vVk7j7uiHoBgh6xzNha9RWycRbnr6e5rcX0pDpuF55Ing07CvudMiSMHXgXmKqVmKqUcwLXAcUuzKKWWAz/DSKLGbW3/Pa0B5un9tDqnGdcTJnGXVAIQDcgcqRELGjdgku7ctxv1ZW6Wzarnh8l3Q+OrsP0vOY8h1ySRKmDhaJz2537BPvscznjQwuo7tvM320UkdzxsdO2KnLFEffjxYLGonJ2zssjJbtscyru3TYi7PmLs/r6liXfbnzeq9Z387qydp6TGmIcf7TyStXNMBBG/cRHpLjUnkXLarCybWsbj/lngKIK9DabEkW1a6zhwE/AYsAN4QGu9TSn1NaXUland/g8oAv6olNqklDphDczxYGtjF4ssBwgWzzI1Dm9pNQAJSaRGLpVIWb2Vppz+g6dP51fhc/CVzIN/fhXiUVPiyBVJpArU0e4wn/3+r6n0v8mj9otYPbuSM+dU8dv4Rehkki1//b7ZIU4otmgPAUtRzs/bVbYYb9IHnftzfm5RWJJJzZNbD3K9/WnU3IuhZHLWzlVUafRIJX2SSI1Fwt9GQiu8OZx72d9pM8rZ67MQn3Ym7H3atDiyTWv9iNZ6ntZ6ttb6v1PbbtNar019f6HWulZrvSz1deXQRyxMR/a+TrnyE6+Ya2ocRWVGIqWDMrRvxFJDcJ0l1aac/uJFk6h0W/m+5Xro3Aev/dKUOHJFEqkCFIomeN9d61gTeIyE1cknPnUr333PMr7znqXce8t7eMN9CqV71rL1UJfZoU4YrlgnfkvuK2up+uUARA+tz/m5zSYLaI7Mawc6WR1qoCTRBad/IqvnUp5KYtiw+MftCKic0IEOuiii1OM0LYaVMytJathfchp07IXOA6bFIrJPHVoHQE/pAlPjcLi9hLV9PM/Ly5q4vw0AV2nml7ZIh9WiuGSGnV8enUXnpDPhmW+9tZTDOCSJVAH6zuM7aWrt4BrHS1gXXnXcyuM2q4VZ532A6aqZvz3+mHlBTjDueA9BW+4TqerZy4loGz27X875uc0kC2iO3N83H+Yjtn+QqF4AMwcsOJY5StFlKccRlkRqLFSog05dnNO1YPo7bUY5VgVPR1N/XuN0eJ8wCk3Udm8mZC0m6DF/maweVYw10mV2GAUn2tNCl/ZSXuQxLYZzp9qoL/Pw9dC7jWR4/W9MiyXbJJEqMLtb/Nz9wj6+PncPtpgPTrn+hH3cJ7+DJFbK9z3MoY7gAEcRmVaU6CbiKMv5eRdMqWKzno3l4As5P7fJZAHNEUgkNc1bn2SBOoD19E+Ayv5cPp+9Ek+kLevnGc+s4U46KTI1kfI4bMwps/CXw8VQNGlcD++b6N446mM5O+muOgWU+ZeHAUsxjtj47cnIlpivjQ5dTFWReWv42S2Kz1w4l4eaa2ivXgUv/xQSMdPiySZZR6rA3PHULpw2K+/QT0H5TJh+1ok7eSqITT2D8w9s4K+bDnPT+eaOdR73tKZI+4g7cz+PYXqFh0fUyazofsi46+M2Z70ZE5i6gOZA8m2BRngrpp0dCa6OriXoKOG1zlqSOYizRBdRHGs+7j3J5/coX/SNZ3aglW6qcr6oZn9zihM8ctBH49STqHnzKV58+umcJOODybf/s/Hijd27ucbSRNfsG8wOBYCQtQSnJFIjlgy000kxFV7zhgQDXL28np8+s4fvBS7mv4Jfhzf+DoveYWpM2SCJVAE50B5g7eYmbjnNjn3Li3D+V8Ay8F0j54JLmHfoy3x72+sgiVRW6XAXNpJoE5IYi0XRUXM6ltYHYf8LsOCKnMeQ77KxgOZA8m2BRngrpo0P/IMLLRuIr7qZcy64JCfn3rzjN1QdfYPZ55yLNVXNMp/fo3zRN57u5wOEbHN4u8nx7e56kr8fDNM65UKmtDawZmGtaQu1Qv79n40XyTf+AUDpksvhjXaTo4GwvYTyiCyhMFIq1E6HLmaWiT1SYEw1ufmieXz6Xh9fKqvFven34zKRMr/vVqTtNy8ewKIUH3Q0GN3uy943+M5zLwag6uhzdATGd+lJs4W7WwFQXnMmdpbMOZ2gdhLd9ZQp5zeJLKCZpngiyaQdvyGprDhWfyxn59VFtVQoPx09/pydc1zRGk+8m6gJQ4b7m1VqoarIyUNds40N+8ztIRPZUd/aQJutFlW72OxQAIg5SvEmfGaHUXBs4U46dTGVXnMTKYDLF9cxv66MP8bPQe/+J/Q0mR1SxkkiVSD8kTh/fO0Q1y5w4N38K1j4jqHLF1fNI1o0hTWWTTzzpkz4ziZfp5FI2YvMWbPhlFk1vJBcRPKNRyfSelKygGaaXt11mLcln6Zl6qVQUpez89pKjXN1tsiadqMSDWAnRtxl/nBdi1JctLCWh/ZY0GXTYf+4XZh3wurq6uSU2Caaas41ddhmXwlnGcVaEqkR0RpntIsuVUyJy7y5lb0sFsUtl8zjV4HVKJ2EbX8xO6SMk0QqX/lbYftaaNoIySR/Wt+IPxLlZv0bSETh/C8P/XqlsM+/mDOt23htd3NuYp6ggl3G+2vWmg3Lp5Xzj+RKXMEmODwxyqDLAprpO/T8HyhRISrP/decntdVYdzo8bdJIjUqodRCpG7z1pDq6+KFtQSiCY5UnAb7n4dkwuyQRAY1Pvtb3CqKfek1ZodyjHaV4VZR4uGA2aEUjlgQu44QtpdjseRHQnze/BrKpy5gl5pOchwmUjJHKh+9djf8/d9BGx9Uumw6nsBSHig5QsXeV+G8L0Hl7GEPo+ZehHf93UT2vQCcmuWgJ65wt1GZzFNWY8r5i5w2DtecR7zzLmzb/gzOi0yJI9e01o8Aj/Tbdluf7y/MeVB5Jp7UzGp8iFZ7PdWzz87pub2VRpHEcMf4G8qRCzrYjgKsJvV093f67Eq8DivPxRby3vCDcHQrTF5mdlgiE7Smavtv2aGnM/uU/Gk2rV6jN7YrNepDpCFo3ICJO83vye6llOLfL5nP2rtP4+bGP0HPkZyOjsg26ZHKN1sfhL99DmafBx9+DN75Mzqd9VwZfYQl7Ibzvgzn3JLesWaeQ0LZmduzjq6gzJPKlrjfaOS95eYkUgCnnjSDhuQSklseQCXHZ4lRMXKHmw6xgh10L7g258N1SquNRCrecySn5x0vem/Q2IvMmXvZn8tuZc38Gn59JDU1UYb3jR+7nmBSeDcvVl6Nw241O5pjnMXG735Px4QdmT1ywdSSE578SaQATp9Vye6qC1Bo9I6HzQ4no3KWSCmlLlVK7VRK7VZK3TrA8zcrpbYrpbYopZ5USk3PVWx5I9AGj9wCU06Da/8A01bD0mv5V/UVLnTei7plN5x7S/oXRM4ifLWnscaymY0Hu7Ia+kSWCLQT1xbKys274Fkzv4Z74hdhCbRQ3Trh1pQSgyg/9ARxLEw776M5P7envI6kVuA7mvNzjwf+1JBhV6k5Q4YHcvGiWnb4vYRLZsE+SaTGhUSc+D++xL5kLYmTrzU7muO4S4zPVJ/0SKXPZ7QbSe8kkwM5nlKKC845h13Jero3/MnscDIqJ4mUUsoK3AlcBiwErlNK9a+duhFYobVeAjwI/G8uYssrDf8DER9c+SOwGdVW1u1t59X9nXzk3Hk47CMfielZcBHzLY3s2LUr09GKXsFOuiii1GNehZzlU8vY6FhOq2MqUw+tnUhFJ8QgOnoCnB5+hl2lZ+IoH6IwTbZYbXRZSrEF5W7yaIS6zO/p7m/N/BrsVsXrjqVw4EVIxM0OSYzVujuxdbzJ/8Tfx5nz82u4lbfcuInQ2zsrhqd9xggAU9r8YVyxpI6nradT0vyKUQdgnMhVj9RKYLfWeq/WOgrcB1zVdwet9dNa62Dq4TqMcsYTh68ZNtwDy66DmgUAJJKarz28nUklLq5dOW1Uh3XMPQ8ALeVqs8YW6aBblRxbK8eUGKwW1syfxJ2xt1Hs3wPjrOtcjNyGx39Hteqm+Izc90b16rZW4AqPnw/MXIr5jPetNI8SqVK3nQtOquXB9pkQ9cGRTWaHJMaifQ88/Q02uE9nZ9k5LKwrMTui45RW1QMQ65Fe7XSFO5tIaoW3Ir+SYjCGBztOfgcWknRseMjscDImV8Um6oFDfR43AquG2P8jwKODPamUuhG4EaC2tvaEFc7zddXzoeKatec3TE3EeMV2OqHUPo/ui7H9SJRPLHWy7oVRDqPQCVYoL5Pa1vHU009jGWRYYCG+Z2bqG1eNr5luikyPc44tzg9CZ/LJ4rV4H/48rx71oi35M949X/8vx6NYIknp9t/TrKqYctrbTYsj4KiiKGz+wp6FSPuaadUlVJZ4zA7lOO9eMYX/2DaXb7ow1pOassLskMRoaA0PfwZtsfOp7g9wxdl1qDwpe96ruGKSMTzYL73a6Qp3HMZPMZPK8ysp7nXJ+Rewf/MkkusfouKc3FaSzZa8q9qnlPoAsAI4d7B9tNY/B34OsGLFCt1/hfN8XfV80LhCnfDi47D4nay63Fhk97FtR3nw8Q1ctLCWW649dUwN3KGdp7PqyCaii1Ywq6Z4ZLGZrBDiOvp8N7udc02P86xEknvefIq7bO/jC6Fvc27JQVjxL6bG1Fe+/l+OR0889xKXJzfzUvW11JqYTEdcNdQEZVjxaFgDzbTocmbnwaKafZ07rxpLcQ2NzGTKvmfh7JvNDikjlFKXAj8ArMBdWutv9nv+HOD7wBLgWq31gzkPMpO23A/7n+PlRbdxeH05ly/Ovx4MZXPQqYqxBluQQaTpSXQ30arLmVTqNDuUAdWVeXisfA3nd/2RcE87rpL8qEo6Frka2ncYmNrn8ZTUtuMopS4EvoSxgGYkR7GZ75VfQNQPZ91Mmz/CZ+/byL/es575tcV8773LxnyXyD5nDVNUG7vf3JqhgMUxWlMWbyfgNH/4jc1q4T0rpvDzzuWEJp1mzLmLyvobE004lqDz+V+QwEJy9sWmxpLw1lKpu4hEJ05zninOUAvtqgJXHlVRA6OduXp5PU+G56EProN44f/fpjmP+yBwA3BvbqPLgmgQ/vlV9OTl3HbwFBbXl7BkSqnZUQ1IhgePjMXfTLMuo7bEZXYog6pb/R7sJNjy1P1mh5IRuUqkXgXmKqVmKqUcwLXAcYtjKqWWAz/DSKImTj9uxA/rfoyedykPHCrlwu8+w9+3HuHT58/hoU+cQZFz7J2GVScbF1ORN58e87FEP+EuXESIesxPpAA+fOZM7FbFzxwfBH8zrPux2SGJHPvVs29ySexJuqZcQMxl7t0+S8UMrErT0rjX1DgKkTfais+en3dr371iCs8kTkbFQ3BgXFQJTWce936t9RYgaUaAGfXSneBrYsui/+DN1iA3nDEz74b19fLbK/HEZHhwuhyhFloop6Y4fxOpk1euoUVVkdy+dvidC0BOhvZpreNKqZuAxzC6ze/WWm9TSn0NeE1rvRb4P6AI+GPqD/qg1vrKXMRnqg2/gVAnt3Vcyj1/2sJpM8r5xjtPZm7twEPwRsNWM492SxXlzS9l7JjCEOs6jB1QJflRIaeyyMmF0+z8YFclN8y9iLLnfwCnfhi8+XlBJjLrQHuApmfupsrSA+d94viZqSbw1hoLh3c2vsnUWQvMDaaQJOIUJzoJevOn9Hlfc2qKCdafQaTVgePNx1Gzzzc7pLEa6TzuQQ03h3sguZw/6oh0sOrlb9NetZpPP6OocEFJ1y4aGnabFtNQLEkv8+L72ZUn8fTKl/enl9/vp+HpJzkn1k6XpZwXnze3wNhw74+z+DSWd/+Tex76G1MrikyPZyxyNkdKa/0I8Ei/bbf1+T5/ltPOlYif2LPfYxOL+VNLHf9z9ULeu2IqlkxXf1OKw+WnsbDteaKx+KjKqIuB9bQcohJwVuRPkckrZ9vZ3Gnjc21XcXfsSdSz/weXfXP4F4qClkxqbv3jRv5X/ZVo7VIcs86DQ8+YGlPFlLkAhFqkR2pEAq1Y0CSK8mstmL7ed9YCXnxwASu3PYpX2pdjhpvDPZCczh9d+ykgwcuLvsKBx7r5/nuXcfHyenNjGsJLOx+koukFvB5PXsTTK1/en14NDQ2sOfUkeEaTLJpkemzDvT+ByeC691F0x27WXP1Z0+MZi5wtyCtO1PzYt7GHWrnLeT1rbzqL61ZOy3wSlZKYcQ4VysfBHa9m5fgTla/1IABF1fmTSLlsiv+5+mSe7qhgQ8Xb4NW7oPOA2WGJLPvdyweYeeghpqpmHOd9Pv2Fu7OoavIsYtpKsmOf2aEUlGSPsRaMtTT/CgD0umzxJNY7V+L174fWN80OZ6zSmsdd8Jq3wcbf0bn4Bv7jKT+rZ1Vw5dL8GE0xqKJaHCpBIuI3O5L8l1pDKpFni/EOxDvnbHy2CmoP/p3OQNTscMZEEimTdB3YStmGO3nScgZf++QNzKnJbtdm7dJLAOje9s+snmeiiXQYn7UVtaNb5ytbzplXzQ1nzOCThy82BvS/dIfZIYksOtAe4MePvsYXnH9ETz8T5l9udkgAWG02mi3VOHwmjzEsMD2pGzSePOrp7s9utVC78l0ANL9c8JPGh53HXfC0hkc/j3aV8uF95+F1WvnhtcuzdvM2U2ypmwkRf4fJkRSA7kYALGUn9jDmHYuV2IJ3skZt4K/rtpkdzZhIImWChK8V3z3vx6fd1F37w5xUV6mbOot9TMZ7eJTrUYkBJbqb6NBFTKooNzuUE9x62UmU1s7gb/os9IbfQVA+iMajeCLJZ+/fxJcsv6ZIB1CXfjMveqN6dTrqKA41mh1GQelpNRLPkpqpw+xprivPWsEGPY/E1j+bHcqYaK3jQO887h3AA73zuJVSVwIopU5TSjUC7wZ+ppQqrKu/bQ/B/ud4qOzDbGqD7713GTV5XNmtV3GV0WMmidTwQs3GPDdP7RyTI0lPxenX41RxWl6+n0RSmx3OqEkilUMqmYCtD9Jzx7lUxY7w+urvsHDe3NycWyn2Fp3KdP9miBd2N2o+sQWO0koFJe78m3fmslv5wXXL+GnsclQ8iH7lF2aHJLLgxw17mNr4d97Oc6hzboG6JWaHdJygdyrV8aNmh1FQwh1NJLWiqjZ/e6QASj12mqdcyuTIHo7s3mx2OGOitX5Eaz1Paz1ba/3fqW23pYphobV+VWs9RWvt1VpXaq0XmRvxCET88NiX6ShdyC37lvOp8+Zw9tz8LGTSX+Wk6QBouRE4rMDR3XRpL5Mn5e+Q4OPULcNfPItzw0/zxPbC/YyQRCoXEjF47VesfOUT8KeP0BaC38z9AWsue3dOwwjWn4WbMKH9r+T0vOOZK9RMl60qb0vHnjSphGsuvYinEsuIvPhTiIXMDklk0PoDnTz51GN82/kLmHYGnPPvZod0gkTJNMrpIeTrNDuUgqG7DtFKKZMrMle9NVtOvfyjxLWFHY/+1OxQxGCe+zb4mvh4+7WcPqeaz1w4z+yI0lY5eRZJrXCEms0OJe8l2vdyUNcwq9prdijpUQrPivexyvIGf2lYZ3Y0oyaJVLb1NMGvLoe/fZagpYhPJf+d/6j5Gf9y7XtzHkrZwvNJakX71sdzfu5xSWsqok30OPN7su4NZ8zg+ZrrcEU76Hn5HrPDERlyqCPIF377JL9wfBdbcQ2857dgtZsd1glstfMBaN67xeRICofbd4BD1FHqzr//z/5q6qezt+wMFrc9wu6jXWaHI/pr241+8Q7+YTuffe5FfP+9y7Hm+byoviwON62WSkoihdtjkStO30EO6lqmVnjMDiVtliVGh8KsI4+w4WBh3myTRCqbeo7Ar98GLdsJXflzrgh/jRftq/nx9Stw2nK/Wv3C2dPZpqdj3W/u+gLjRqCVIu3HXzzT7EiGZLEoPnjtB9iqZxF65vvoRNzskMQYvdns47qfPs9/Jb5LlTWA5bo/QFF+DtWpmLkUgM79kkilqyx8kFZHfg/r62vSeR+jRnXx1F9/bXYooi+t4dH/IKIcfNn/br7/3mVUFzvNjmrE2h31VMrw4CGpZILi8BE6nfWmXF+OWvkMEtPO5H32Bu5+do/Z0YyKJFLZEg3Ave8BfwuJ9z/Ep7bOpjkEd7zvFOpK3aaEVFnkZItjGdXdW434xJjEW3Ya/5bPNjmS4c2oLuLo4hupjR1m/eO/NzscMUqJpOYXz+7l7T96nuvjD7KSbViu+F7ezYvqa+qsBYS0g8TRwpqbbxZrPEBJogufd7rZoaSt5OQr6HJOZsXhe9h4QOay5I03/g57nuR/I1dz0cqTOWNOldkRjUrAM5W6pCRSQ3FGWrGSIFJSOO1GL+tpH2YKLfi2P87+tsK7NpVEKhuSSfjzv8HRrSTfdTdf2eDhnzuaue4kB6fPrjQ1tM7a07ERRx940dQ4xoP2A8aFYcnUhSZHkp7z3vERjljqKH75Oxxo85kdjhihN5t9XP2TF/nvR3bw0SmN3Kj/CEuvg2XvMzu0ITkdDg5ap+Hu2mV2KAXBFWwyvqnM/xs0x1htuM/5NKdYdvOHB+8nnkiaHZGIhdD/uJV9luk85r6SL1x+ktkRjVq8bAaVqodAT2EO/coFV9BYQ8pWOcvkSEZhwdtJuiv5gO0p7nx6t9nRjJgkUtnw5O2wYy2xC7/Gv2+q5d6XD/LxNbO5aLr5490rF5xLVFvp3i7rSY1VoGkHYW2nfnphTNy12R3YL76N+Rzgj3d/l3AsYXZIIk3P7Wrlqjte4FBHkDves4B/D/8QVTELLv+22aGlpdM7i5rwXrPDKAixLiORKqkvrAtf52kfIuyq5truu/jdS/vNDkc8/31U9yFuDX2Qr129lBKX+dcfo2WrNm4qtB7caXIk+cvabSx67p5SOMUkj7E5sZxyPRdYNvDixi0F1ysliVSmvfpLeOEHdC76IO9Yv4yHNh7m/100j/+4ZL7ZkQFw+knT2KjnktjdYHYoha9tN/v1JGbXlJgdSdqqVl5LT/lirg/czdcfXIfWhbt2w0SxvamHj/zmNaZXevjHZ8/miu77UF0H4e0/AGd2F/LOlFjlSVTrDpLhHrNDyXvJHmOR7ymzCuyCyOHBefFtnGLZzRtP/JLmnrDZEU1cHftIPv89Hk6ewaSlF3DBglqzIxqT8nrj+qnt4A6TI8lfts7dHNaVzJuZ33O2B3XqDVhI8D57A9989A2zoxkRSaQyJZmEZ78Nf7+ZvWVnsnrjxRztifCLD67gUxfMzZvy2NMrPWx1LKPct1MWaB2jIv8+jtqn4nYU0MROi4WSa35Eteph0bZv89WHt0sylceC0Tg3/WEDZW47v//oKmpiTfD892HxNTDjLLPDS5tr6jIAoq0yvG84rsBhmnQlc+oLbz6LWvZ+IrWn8AV+xX/f+0+SBbzIZsHSmuSjtxJJKH5s/xC3XVEYQ8+HMm3OYpJaETws8ywHUxHcy3Y9i4WTC+fG7nEqZsKci/gXx1M8ve0gL+xuMzuitEkiNVZaw95n4FeXwlNf5ynbOVx69EYuXzqVJ24+l4sW5tedIKUU8elnY0ET3/WU2eEULFvMR1Wsia7iwhjWd5z6U1Bn3MT7bE/Rse5evvmPNySZylO3r93GvrYA3792GZVeBzz6eaPE+cX/ZXZoIzLl5HOJawuONrkQGk59ZDd77XNw2QvoBk0vixXne+7CY0vy4aavcNfTr5sd0cTz+p+w7PoH34m9i5vfdR6VRYVXpa8/h7eUg5Z6itsKe9HnrAn3UJs4QnPRSYVVsa+/sz6LJ9bBv5a8xOf/tAV/pDAqDEsiNVpaw+5/wi8vgt9eSbh1L19IfoIvqE/zs385g++9dxkVXofZUQ5o/qkX0KpL6XjlPrNDKVhFXduxoAnUrTI7lFFRF9yGnrqab7vu4slnn+Xrf9shyVSeWbu5iQdea+STa+Zwxuwq2Pko7Hoc1twKJQWycn1KXU0Vu6yzqfVLIjUkfyt1yaO0li0zO5LRq5yN7d13s8SynyXPfIxNb+43O6KJI9BG7O+3sCk5m+6lH827G7ljcdA5lxmRHeikFDLpL9FkJJiqbqnJkYzR9DNhymncZH+Ytq5u/uPBzQXRqy2J1Ggc2Qy/ugx+9y607yhPz7mVpV3/x/baK3j4U2dz3vwasyMc0lnza3lcnUl5UwOEuswOpyCplu1EtZXK+aebHcroWO2od/8au7uY+0ru4M8vbOaLf95KogAarYngYHuQLz60lVOnl/PZC+dCxA//+DxUnwSr/s3s8EalteJU5sT3kIiGzA4lb3W++TwAamph3qDppU66nPDbf8Kpll2U3Ps2mvZLkYCs05rw2psh3MN33J/mK1eebHZEGdVdPI9yfBzeu93sUPJO29Z/ktCK8rkFej3SSym48HYcgSbuWfAaj2w9ytf+tj3vkylJpEZCa3jxR/CL86FjL9FLvs1nan7Jv7y+hMuXz+T+G1dTU+IyO8ph2a0Wuua8A7uOEd7ykNnhFKSSrm1s0bM5fV7hLJp5gpI61Ht+S2WihUcrv88/XtnGzQ9sIiali00VSyT51H0bsSj4wbXLsFkt8PiXoOsQXPF9Y2hfAXLMOguninFw05Nmh5K3jr7+DBFtY+Gp55gdyph5Tr2Wlqt+TxUdOH99MS07XjA7pHEt9NIvcO38K3cm38UXPnR1QVfpG4iuNApONG17zuRI8tDOR9ig57H65AKcatDfjLPgpCtYcfAuvnBKgl+/uJ9P3ruBrmDU7MgGJYlUumJhY22ox78M8y/jyAee4erXTuLh19u49bKT+O57lhbUmPazzrmY7cnpBJ/9kVEoQ6Qv2MHU2F4OFC2l1FPgH1bTz0C95x4mhffxdPk32LP5ea7/5cu0+KTiVk4lE+A7ig528vW/bWfzoS6+9a4lTCn3wLqfwvpfw5mfhumFe8dx1qor6NFuAq/ea3Yoecvb+Bw71CzmFmChiYHUL7+Uw1f/lRAOSu+/igMNvzU7pHGpa8uj2B+/lYbkMpa972uFW3BgCEU10+miGP3mY2aHkld05wFqg2+yxbkib6eTjNgV30O5Srmx6Ut861wnT2xv5pLvP8vTO1vMjmxANrMDKAid++GPN0DTRvR5X+Jvpe/nP3/xOtF4kl9+aAXnn1R445CXTivnzqpr+WTHt4jueBTwmh1SwQi8+ju8JAjOe4fZoWTGvIvhg3+l7MF/4WHnbTzfuJi/f2cGK6cVMb80ic3u+P/t3Xt8VPWdxvHPd5JwkUDCJYBclTtCBQURqwJSEbAoarHeqvXa7QWlW11btau2W7ey6raKdsUK20pVrGItKipoBS9brKgICkIDggG5hDsIgZB894856IgQGEjm/JI879crL87MnJl5ZpI84TvnzBlo1hW6nwWNq9+npgeteFFyK/fCqVCyGQMuL2/J+a1787XNi2HyHPjoOeg2AgbfGnfaw9K8aWOm1zmJU4pfoXTHVnLqN4w7UlBKiubSblchr+VeQe9AjvJaGbof24/FudP5aNJF9Jp5LW/+8336fPdO6tWp5i9CBeKDWVPo9Or3WextsVETGNitZdyRqkQikU1h86H0WvNXNm9cT17jpnFHCsLqNx/lSGB7y+q9O/CX5DaHiyZjj32bC+ZcxPDOpzF9VT3mTcpiVfOWnHraN2nb8+TkroAB0BapirjjC6ZS/uAAdhcXMq3HPQx/rz/XTp5Lm8b1eeZHJ1fLIWqPE868kmXlLdg29UYSZTvjjlM9uLNz9sO8U96ZE08aGHeaytP+JPjhbGzA9ZzY5DMu4QXaLv8La+fNYPP7z8H0W/D7joNnx8Bn6+NOW72VlcLC5+DR8+GBfjD/Kcq6nMm0tjcwtvRCtjbqRM+Sd+Hl2+Hj12DQzTBqImRV/9e9NrYezBGUsHjauLijBKfwpd+x03Moaz8o7iiVrkuHo2n/rzOYkz+Mk1c+zOyxZ/H07EXajfgwrN+ynRnjb6Tb366mKNEau/RpBh7bKe5YVSq//6XUs1I+nD4x7ihh2LmNBu8+yJv0okO7dnGnqVytj4fvzYQ+l9No6z/5ls9gTPbTXLzhd7Sd8k1Wj+3LhjlPJ99yE7OM/WU2s2HAvUAW8LC737nX5XWBR4A+wHrgAndflql8e2zfWcqcuXNZt/ANuq6cQo/S+XxYfhQ/KB1D0TstOLZNgrvP78U5vVsl37tQjfXr1JL/7XILVxReR977D8JpQyBRvR9TVds2axxNdixnUu61jGlRw15Rr58Pg39OncE/B2D+8g1MnfspL364mpztK7gmexqXvDOJ3fP+QsmAfyf/5Kti/XmpLp3C9g2w8l1YOQdWzIEVb0PJJshtSdmAnzIr/xzunFXM4jXbuPzr59FzxDHJF9pKNkO9vGBedasMBe168NaKvvScfy+bT7qAvFYd444UhE1L36HLiim81WAQ7Qvy445TJfIbNaTvmMkse3Ysp747lsXTRnH1zJ8w4JRBjDq+Tey7SVeXPlmxcTvT//YKx8z7NUPsQz5o8g06XTmBeg0bZzpKxnXsPYDCF7rQdeE4itdcTEGL1nFHio87Hz9xI0eXb2Zd3+vJy6k5fyc+l9cGzrwLAAMoL2f92hW89tyfOPaTR2j53BUseflu1va/hW4nDKFxTLs2ZmSQMrMs4AFgCLACeNvMprp76uFXrgI2unsnM7sQGAtcUKXBykopK17MhsI5FP/zHyRWz6NVSSEDbDsAxYnmvNB6DBt7XMbdLRvTuUXDmrMPauTCb3+HKffN5ltbHmPhvWeTN+IOWnWu5ofQrAq7d1E8azz5r/+Cl8v70qz7aXEnqnJ92jehT/sm3HZWD+at3MzLC07ih/PP4sotD9D/lRtYPOv3FHW/hiP7jqBzmxbkZPCFhWA7pXQHrF0AK975YnDasAQAxyht0oVt7YayMO9Upu/6Gs+9Wcz6zz6mfdMjePiyvpyeerji+vlVGjUOiUSCJqPuxR8/nZKHh7J+2P0c3fcMrLa+gOPO0vde4Yhnf8Aub0iz8+5izYpP4k5Vdcw46uyf4d370PGpa5hQcj1/fnEA17w0mBZd+3PaMa3o36EpR+bVy+iH2AfbJ0BJaRkLV21h3qIlrFnwGr3WPc+VWXPYkdWANQPuoufAa2rUiy0VsUSCut/6HQ0fH8rHD41k43nj6dKjT9yxMm7HhlUse/rf6b7iSabWP4dhw0bw9zdqwUE4EgmatmzHuVffzIr1o5n27AOcsOxBOs68mBdfOYFpDc6hpMVxtG/emI4FuXQoyKVjQYMq/397prZI9QMK3X0pgJlNBkYCqSU1Erg9Wn4KuN/MzCvjw23WL4EZt7Jq3Ua2bNtKdtlO8srW06R8PVk4BUBDz2Fp1lEsKhhK4459OKrn1ylofRzDa/gf+Pp1svjmdeN44r4szt70BPUfHcBamrApqyk7cvJwywISUVEbGJTvtUeokfot+mLZKvjW7fc6fPk6ubt2Me+tOhVep+IMe9/z/u9rf+fnlO2gVelyCijhTT+W3AseIru4aJ/XrYkSCaN323x6t82HoV35uPhcZrwykV6L7qPL/BsonfdT1tCEjVnN2JndkKL63Xi+yWXkZCX4n+9U2R+5WDtl3LN/5+SFvyKnvITs8p3UKS+h5+51MHPj5+uspTFzyzsyt+wC3vNOzC8/mm2fHgGfJi+vl7OK07o257zj2zCoa0FGB9E4de7Wk7eHPU77l66gw7QLWD8tj3XZLSnNbkCp1U35T2HyX7PkELpH6nJyreS30/2L5c/P+/xW9pyKrvP5j4CTW1rK+2/9Z8p1v1jzS13g/tXzUq7z1fN877O+fF75bpqUrqYD61nlTVk1/GF6depQswepiHUeQp3r5sDMX3Phu5O4uOxVSguzWb64OZ+QR6HV5dN6HXki7yqOqJNF/ZxsshJwUb92DKqajxeJtU8WbSjj8Ulz2Lm7nF27yxm85Rl6lbxN1u7t1CnbzpG2meMs2S0ldRux+fjryTvtWurXr/lbofbWttsJLBh4P21f+wkNnxzMqiebsSm7gJ05jUj+H8Wijoj+jfrki9+96PfzK9+2vc/f1+/7F6cb7drF/Nk5GB71zF7rHeh29nF5Rbez5/IGZVtoVfYpXYEXG57LoB+Nr94fwnuI2jRtRJvLb6J0x2hWTr+HwfPGM6zkbcqWJyha1py1nsd2r8djfjS/z76Y+okyWnzwBo3q5VA3O0FWwmiVX5/bz+5x2FksEx/CaWajgGHufnV0+lLgRHcfnbLOB9E6K6LTS6J11u3j9r4HfC862RXY+0MqmgFfuV4AQs0F4WZTrvSFmq2iXO3dveBgb6gyO+Ug+uRghfi8h5YptDwQXqbQ8kB4mQ4mz0F3SgB9EtrzC+FlUp6KKU/FDjfPfvukWr572d0fAh7a3+VmNsfd+2Yw0kEJNReEm0250hdqtlBzHahPDlaIjy+0TKHlgfAyhZYHwssUWp5Uh9InIT6e0DIpT8WUp2JVmSdT+5KsBNqmnG4TnbfPdcwsG8gj+YZOEZG9qVNEpLKoT0TkkGRqkHob6GxmR5tZHeBCYOpe60wFvhstjwL+VinvjxKRmkidIiKVRX0iIockI7v2uftuMxsNvETy0KIT3f1DM/slMMfdpwITgElmVghsIFlkh+qwd9OpIqHmgnCzKVf6Qs1Wabli6JSDEeLzHlqm0PJAeJlCywPhZarUPAH0SWjPL4SXSXkqpjwVq7I8GTnYhIiIiIiISE1SO463KyIiIiIiUok0SImIiIiIiKSpxg5SZvYfZjbPzOaa2XQzaxV3JgAzu8vMPoqy/cXM8uPOBGBm55vZh2ZWbmaxH7LSzIaZ2SIzKzSzn8WdZw8zm2hma6PPFAmGmbU1s1fNbEH0fRwTd6Y9zKyemf3DzN6Psv0i7kxVJbTeCbFvQuma0DomtG4JsVNqcpeoOw6YR72x7zzB9EZonZGxvnD3GvkFNEpZvg54MO5MUZYzgOxoeSwwNu5MUZbuJD88cCbQN+YsWcASoANQB3gfOCbu5yjKNgA4Hvgg7ix75ToSOD5abggsDug5MyA3Ws4B3gL6x52rih5rUL0TYt+E0DUhdkxo3RJip9TkLlF3HDCPemPfmYLpjdA6I1N9UWO3SLn7lpSTDYAgjqrh7tPdfXd0cjbJz6uInbsvdPeD+QT2TOgHFLr7UnffBUwGRsacCQB3f43kEZuC4u6r3P3daHkrsBBoHW+qJE/aFp3Mib6C+H2sbKH1Toh9E0jXBNcxoXVLiJ1Sk7tE3XHAPOqNfQipN0LrjEz1RY0dpADM7A4zKwIuAW6NO88+XAm8EHeIALUGilJOryCQoaA6MLOjgONIvvoSBDPLMrO5wFpghrsHk62yBdw76psvqGPSEFKn1OQuUXcET71xkELpjEz0RbUepMzsZTP7YB9fIwHc/RZ3bws8CowOJVe0zi3A7ihbMLmkejOzXGAK8OO9XuGMlbuXuXtvkq9q9jOznjFHOmSh9U6IfaOuqTlC65Tq3CXqjsPPI+ELqTMy0RcZ+UDequLupx/kqo8C04DbqjDO5w6Uy8wuB0YA3/Bo581MSOP5ittKoG3K6TbReVIBM8shWV6PuvvTcefZF3ffZGavAsOA2N8ceyhC650Q+6YadI065iCE3CnVsUvUHYeXJwDqjQMItTOqsi+q9RapiphZ55STI4GP4sqSysyGATcCZ7v79rjzBOptoLOZHW1mdUh+gvzUmDMFzcwMmAAsdPf/jjtPKjMr2HPEJzOrDwwhkN/HyhZa76hv9ksdcwAhdkpN7hJ1R7Wg3qhAaJ2Rqb6wDG4QySgzm0LyCC/lwHLg++4e+ysHZlYI1AXWR2fNdvfvxxgJADM7FxgHFACbgLnuPjTGPGcCvyV5lJyJ7n5HXFlSmdnjwCCgGbAGuM3dJ8QaCjCzU4DXgfkkf+YBbnb3afGlSjKzY4E/kvxeJoA/u/sv401VNULrnRD7JpSuCa1jQuuWEDulJneJuuOAedQb+84TTG+E1hmZ6osaO0iJiIiIiIhUlRq7a5+IiIiIiEhV0SAlIiIiIiKSJg1SIiIiIiIiadIgJSIiIiIikiYNUiIiIiIiImnSICUiIiIiIpImDVIiIiIiIiJp0iAlIiIiIiKSJg1SIiIiIiIiadIgJSIiIiIikiYNUiIiIiIiImnSICUiIiIiIpImDVIiIiIiIiJp0iAlIiIiIiKSJg1SIiIiIiIiadIgJSIiIiIikiYNUiIiIiIiImnSICUiIiIiIpImDVIiIiIiIiJp0iAlIiIiIiKSJg1SIiKSUWa2zcw6ZPg+PzSzQZm8TxERqdk0SImI1BJmtszMdkSDzGoz+4OZ5Vbxfc40s6tTz3P3XHdfWsn3sy3lqzzlcW4zs0vcvYe7z6zM+xQRkdpNg5SISO1ylrvnAr2B44Cb4o1TOaLhLDd6bJ8QPc7o69G484mISM2jQUpEpBZy99XASyQHKgDMrL+Z/Z+ZbTKz91N3hTOzK8xsoZltNbOlZvYvqbdnZiPNbK6ZbTGzJWY2zMzuAE4F7o+2DN0fretm1ilazjOzR8ys2MyWm9nPzSwRXXa5mb1hZneb2UYz+9jMhh/K4422xp0eLd9uZk+a2Z+ixzPfzLqY2U1mttbMiszsjJTr5pnZBDNbZWYrzexXZpZ1KDlERKTm0CAlIlILmVkbYDhQGJ1uDTwP/ApoAtwATDGzgugqa4ERQCPgCuA3ZnZ8dN1+wCPAvwH5wABgmbvfArwOjI62DI3eR5RxQB7QARgIXBbd/h4nAouAZsB/ARPMzCrhKTgLmAQ0Bt4jOVQmgNbAL4HxKev+AdgNdCK5Fe8M4Eu7K4qISO2jQUpEpHZ5xsy2AkUkh6PbovO/A0xz92nuXu7uM4A5wJkA7v68uy/xpFnAdJJbmwCuAia6+4zouivd/aMDBYm26lwI3OTuW919GXAPcGnKasvd/ffuXgb8ETgSaHF4TwEAr7v7S+6+G3gSKADudPdSYDJwlJnlm1mL6Dn4sbt/5u5rgd9EuUVEpBbTICUiUruc4+4NgUFAN5JbegDaA+dHu/VtMrNNwCkkBxfMbLiZzTazDdFlZ6Zcty2w5BCyNANygOUp5y0nuVVoj9V7Ftx9e7RYGQfIWJOyvANYFw1re07vuZ/2UcZVKc/LeKB5JWQQEZFqLDvuACIiknnuPsvM/gDcDZxDcgvVJHe/Zu91zawuMIXkbnd/dfdSM3sG2LOLXRHQcX93VUGMdUApyWFlQXReO2BlOo+lihUBO4Fm0dYrERERQFukRERqs98CQ8ysF/An4CwzG2pmWWZWz8wGRe+lqgPUBYqB3dEBH85IuZ0JwBVm9g0zS5hZazPrFl22huT7n74i2gL0Z+AOM2toZu2Bn0RZguDuq0juxniPmTWKHl9HMxsYdzYREYmXBikRkVrK3YtJHiTiVncvAkYCN5McmIpIHjwi4e5bgetIDj0bgYuBqSm38w+iA1AAm4FZJLcyAdwLjIqOunffPmJcC3wGLAXeAB4DJlbuIz1sl5EcJheQfPxPEe3yKCIitZe5V7TXhYiIiIiIiOxNW6RERERERETSpEFKREREREQkTRqkRERERERE0qRBSkREREREJE0apERERERERNKkQUpERERERCRNGqRERERERETSpEFKREREREQkTf8PZPP6Mta1aesAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "_ = hddm.plotting.plot_ppc_rt_rlssm(data, ppc_sdata, 40, 0.06)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "interpreter": { + "hash": "5587a213148f6aa44f7cf56f4c169dd7dec8165a677b0d4cff73a0585abb702e" + }, + "kernelspec": { + "display_name": "Python 3.8.13 ('test_py38')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.13" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL.rst b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL.rst new file mode 100644 index 000000000..39f8369d6 --- /dev/null +++ b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL.rst @@ -0,0 +1,243 @@ +Tutorial for analyzing instrumental learning data with the HDDMnnRL module +========================================================================== + +This is a tutorial for using the HDDMrl module to simultaneously +estimate reinforcement learning parameters and decision parameters +within a fully hierarchical bayesian estimation framework, including +steps for sampling, assessing convergence, model fit, parameter +recovery, and posterior predictive checks (model validation). The module +uses the reinforcement learning drift diffusion model (RLDDM), a +reinforcement learning model that replaces the standard “softmax” choice +function with a drift diffusion process. The softmax and drift diffusion +process is equivalent for capturing choice proportions, but the DDM also +takes RT distributions into account; options are provided to also only +fit RL parameters without RT. The RLDDM estimates trial-by-trial drift +rate as a scaled difference in expected rewards (expected reward for +upper bound alternative minus expected reward for lower bound +alternative). Expected rewards are updated with a delta learning rule +using either a single learning rate or with separate learning rates for +positive and negative prediction errors. The model also includes the +standard DDM-parameters. The RLDDM is described in detail in `Pedersen, +Frank & Biele +(2017). `__ +(Note this approach differs from Frank et al (2015) who used HDDM to fit +instrumental learning but did not allow for simultaneous estimation of +learning parameters). + +.. code:: ipython3 + + import hddm + import pickle + import pandas as pd + +Load the data +^^^^^^^^^^^^^ + +.. code:: ipython3 + + with open('./angle_d1_c3_s20_t500.pickle', 'rb') as handle: + datafile = pickle.load(handle) + + # Here, datafile is saved as a list of datasets. We pick the first dataset. + dataset = datafile[0] + + +.. parsed-literal:: + + 1 + + +.. code:: ipython3 + + # Reformat the dataset as a dataframe + data = hddm.utils.get_dataset_as_dataframe_rlssm(dataset) + +Initialize the HDDMnnRL model and sample +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. code:: ipython3 + + # Specify number of samples and burnins + nsamples = 100 + nburn = 50 + +.. code:: ipython3 + + m = hddm.HDDMnnRL(data, model='angle', rl_rule='RWupdate', non_centered=True, include=['z', 'theta', 'rl_alpha'], p_outlier = 0.0) + m.sample(nsamples, burn=nburn, dbname='traces.db', db='pickle') + + +.. parsed-literal:: + + + Printing model specifications -- + ssm: angle + rl rule: RWupdate + using non-centered dist.: False + Using default priors: Uninformative + Supplied model_config specifies params_std_upper for z as None. + Changed to 10 + Supplied model_config specifies params_std_upper for rl_alpha as None. + Changed to 10 + [-----------------101%-----------------] 101 of 100 complete in 256.1 sec + + + +.. parsed-literal:: + + + + + +Save the model +^^^^^^^^^^^^^^ + +.. code:: ipython3 + + # Save the model + m.save('rlssm_model') + +.. code:: ipython3 + + # Load the model + # model = hddm.load('rlssm_model') + +Check the posterior results +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. code:: ipython3 + + m.plot_posteriors() + + +.. parsed-literal:: + + Plotting v + Plotting v_std + Plotting a + Plotting a_std + Plotting z + Plotting z_std + Plotting t + Plotting t_std + Plotting theta + Plotting theta_std + Plotting rl_alpha + Plotting rl_alpha_std + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_1.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_2.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_3.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_4.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_5.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_6.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_7.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_8.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_9.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_10.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_11.png + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_12_12.png + + +.. code:: ipython3 + + # Load the trace + with open('./traces.db', 'rb') as handle: + tracefile = pickle.load(handle) + +.. code:: ipython3 + + # Re-format traces as a dataframe + traces = hddm.utils.get_traces_rlssm(tracefile) + +.. code:: ipython3 + + model_ssm = 'angle' + model_rl = 'RWupdate' + + config_ssm = hddm.model_config.model_config[model_ssm] + config_rl = hddm.model_config_rl.model_config_rl[model_rl] + +.. code:: ipython3 + + hddm.plotting.plot_posterior_pairs_rlssm(tracefile, config_ssm['params'] + config_rl['params']) + +Posterior Predictive Checks +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. code:: ipython3 + + num_posterior_samples = 3 + p_lower = {0: 0.15, 1:0.30, 2:0.45} + p_upper = {0: 0.85, 1:0.70, 2:0.55} + ppc_sdata = hddm.plotting.gen_ppc_rlssm(model_ssm, config_ssm, model_rl, config_rl, data, traces, num_posterior_samples, p_lower, p_upper, save_data=True, save_name='ppc_data') + + +.. parsed-literal:: + + 100%|██████████| 3/3 [05:49<00:00, 116.55s/it] + + +.. parsed-literal:: + + ppc data saved at ./ppc_data.csv + + +.. code:: ipython3 + + # Load the saved ppc data + # ppc_sdata = pd.read_csv('./ppc_data.csv') + +.. code:: ipython3 + + _ = hddm.plotting.plot_ppc_choice_rlssm(data, ppc_sdata, 40, 10) + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_20_0.png + + +.. code:: ipython3 + + _ = hddm.plotting.plot_ppc_rt_rlssm(data, ppc_sdata, 40, 0.06) + + + +.. image:: demo_HDDMnnRL_files/demo_HDDMnnRL_21_0.png + + diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_1.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_1.png new file mode 100644 index 000000000..77a1dd3ef Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_1.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_10.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_10.png new file mode 100644 index 000000000..deeaecf65 Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_10.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_11.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_11.png new file mode 100644 index 000000000..77f5d8470 Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_11.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_12.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_12.png new file mode 100644 index 000000000..08858aecd Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_12.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_2.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_2.png new file mode 100644 index 000000000..dbb66375c Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_2.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_3.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_3.png new file mode 100644 index 000000000..652eeb96f Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_3.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_4.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_4.png new file mode 100644 index 000000000..1e9b69314 Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_4.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_5.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_5.png new file mode 100644 index 000000000..315d5d093 Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_5.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_6.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_6.png new file mode 100644 index 000000000..42cee4b94 Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_6.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_7.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_7.png new file mode 100644 index 000000000..af3c8ff4d Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_7.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_8.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_8.png new file mode 100644 index 000000000..55c322258 Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_8.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_9.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_9.png new file mode 100644 index 000000000..ce8eb5197 Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_12_9.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_20_0.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_20_0.png new file mode 100644 index 000000000..1a62f75cc Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_20_0.png differ diff --git a/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_21_0.png b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_21_0.png new file mode 100644 index 000000000..6e01ecb02 Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/demo_HDDMnnRL_files/demo_HDDMnnRL_21_0.png differ diff --git a/hddm/examples/demo_HDDMnnRL/ppc_data.csv b/hddm/examples/demo_HDDMnnRL/ppc_data.csv new file mode 100644 index 000000000..62892aeea --- /dev/null +++ b/hddm/examples/demo_HDDMnnRL/ppc_data.csv @@ -0,0 +1,90001 @@ +,subj_idx,response,split_by,rt,trial,feedback,samp +0,0,1.0,0,1.5119954347610474,1,1.0,1 +1,0,0.0,0,2.288996934890747,2,0.0,1 +2,0,1.0,0,1.7719920873641968,3,1.0,1 +3,0,1.0,0,1.6299939155578613,4,0.0,1 +4,0,1.0,0,1.7479923963546753,5,1.0,1 +5,0,0.0,0,1.6589934825897217,6,0.0,1 +6,0,1.0,0,1.6569936275482178,7,0.0,1 +7,0,0.0,0,1.3229974508285522,8,0.0,1 +8,0,0.0,0,1.4819958209991455,9,1.0,1 +9,0,0.0,0,1.6409938335418701,10,0.0,1 +10,0,1.0,0,2.1529905796051025,11,1.0,1 +11,0,1.0,0,1.3549973964691162,12,1.0,1 +12,0,1.0,0,1.6749932765960693,13,1.0,1 +13,0,1.0,0,1.4669959545135498,14,1.0,1 +14,0,1.0,0,1.976989507675171,15,1.0,1 +15,0,1.0,0,1.6179940700531006,16,1.0,1 +16,0,1.0,0,1.5489948987960815,17,1.0,1 +17,0,1.0,0,1.834991216659546,18,1.0,1 +18,0,0.0,0,1.3179974555969238,19,0.0,1 +19,0,1.0,0,1.5049954652786255,20,1.0,1 +20,0,1.0,0,2.260995626449585,21,1.0,1 +21,0,1.0,0,1.435996413230896,22,1.0,1 +22,0,1.0,0,1.2909973859786987,23,1.0,1 +23,0,1.0,0,1.4779958724975586,24,1.0,1 +24,0,1.0,0,1.2939974069595337,25,0.0,1 +25,0,0.0,0,1.9169902801513672,26,0.0,1 +26,0,0.0,0,2.1899924278259277,27,0.0,1 +27,0,0.0,0,1.9299900531768799,28,0.0,1 +28,0,0.0,0,1.2289973497390747,29,0.0,1 +29,0,1.0,0,1.811991572380066,30,1.0,1 +30,0,0.0,0,1.6739933490753174,31,0.0,1 +31,0,1.0,0,1.3239974975585938,32,0.0,1 +32,0,0.0,0,2.0499885082244873,33,0.0,1 +33,0,0.0,0,2.1569907665252686,34,0.0,1 +34,0,1.0,0,1.7939918041229248,35,1.0,1 +35,0,1.0,0,1.3269975185394287,36,1.0,1 +36,0,0.0,0,1.4719959497451782,37,0.0,1 +37,0,1.0,0,1.7709920406341553,38,1.0,1 +38,0,1.0,0,1.5269951820373535,39,1.0,1 +39,0,1.0,0,1.594994306564331,40,1.0,1 +40,0,1.0,0,1.4009968042373657,41,1.0,1 +41,0,0.0,0,1.6989929676055908,42,0.0,1 +42,0,1.0,0,1.3169975280761719,43,1.0,1 +43,0,1.0,0,1.4709959030151367,44,1.0,1 +44,0,1.0,0,1.3579974174499512,45,1.0,1 +45,0,1.0,0,1.711992859840393,46,0.0,1 +46,0,0.0,0,1.5609947443008423,47,1.0,1 +47,0,0.0,0,1.6189939975738525,48,0.0,1 +48,0,1.0,0,2.0469884872436523,49,1.0,1 +49,0,0.0,0,2.0889880657196045,50,0.0,1 +50,0,1.0,0,1.3709971904754639,51,0.0,1 +51,0,1.0,0,1.6139941215515137,52,1.0,1 +52,0,1.0,0,1.7259926795959473,53,0.0,1 +53,0,1.0,0,1.8609910011291504,54,0.0,1 +54,0,0.0,0,1.5349950790405273,55,0.0,1 +55,0,0.0,0,1.2499973773956299,56,0.0,1 +56,0,0.0,0,1.6119941473007202,57,0.0,1 +57,0,0.0,0,1.5889943838119507,58,0.0,1 +58,0,0.0,0,2.0819880962371826,59,0.0,1 +59,0,1.0,0,1.4989955425262451,60,1.0,1 +60,0,1.0,0,1.2839974164962769,61,1.0,1 +61,0,1.0,0,1.3289974927902222,62,1.0,1 +62,0,1.0,0,1.2189972400665283,63,0.0,1 +63,0,1.0,0,1.311997413635254,64,1.0,1 +64,0,0.0,0,1.2289973497390747,65,0.0,1 +65,0,1.0,0,1.2659974098205566,66,0.0,1 +66,0,1.0,0,1.8199914693832397,67,1.0,1 +67,0,1.0,0,1.3339974880218506,68,1.0,1 +68,0,1.0,0,1.1889972686767578,69,0.0,1 +69,0,1.0,0,1.784991979598999,70,1.0,1 +70,0,1.0,0,1.9529898166656494,71,1.0,1 +71,0,1.0,0,1.4559961557388306,72,1.0,1 +72,0,0.0,0,1.2339973449707031,73,0.0,1 +73,0,1.0,0,1.3399975299835205,74,1.0,1 +74,0,1.0,0,1.9929893016815186,75,1.0,1 +75,0,1.0,0,1.6649935245513916,76,1.0,1 +76,0,1.0,0,1.3579974174499512,77,0.0,1 +77,0,0.0,0,1.1959972381591797,78,0.0,1 +78,0,0.0,0,1.740992546081543,79,0.0,1 +79,0,1.0,0,2.2049930095672607,80,1.0,1 +80,0,1.0,0,1.365997314453125,81,1.0,1 +81,0,1.0,0,1.4469962120056152,82,1.0,1 +82,0,1.0,0,2.0479884147644043,83,1.0,1 +83,0,1.0,0,1.924990177154541,84,1.0,1 +84,0,1.0,0,1.50199556350708,85,1.0,1 +85,0,0.0,0,1.1959972381591797,86,0.0,1 +86,0,1.0,0,1.6139941215515137,87,1.0,1 +87,0,0.0,0,1.6259939670562744,88,0.0,1 +88,0,1.0,0,1.6579935550689697,89,1.0,1 +89,0,0.0,0,1.8949904441833496,90,0.0,1 +90,0,1.0,0,1.9419898986816406,91,1.0,1 +91,0,1.0,0,2.0439887046813965,92,1.0,1 +92,0,1.0,0,1.8189914226531982,93,1.0,1 +93,0,1.0,0,1.435996413230896,94,1.0,1 +94,0,1.0,0,1.5449949502944946,95,1.0,1 +95,0,1.0,0,1.4339964389801025,96,1.0,1 +96,0,1.0,0,1.2669973373413086,97,1.0,1 +97,0,1.0,0,1.6519936323165894,98,0.0,1 +98,0,0.0,0,1.212997317314148,99,0.0,1 +99,0,1.0,0,2.1189889907836914,100,1.0,1 +100,0,0.0,0,1.646993637084961,101,1.0,1 +101,0,0.0,0,1.2919974327087402,102,0.0,1 +102,0,1.0,0,1.3779971599578857,103,1.0,1 +103,0,1.0,0,2.0849881172180176,104,1.0,1 +104,0,1.0,0,1.4829957485198975,105,1.0,1 +105,0,1.0,0,1.5629947185516357,106,1.0,1 +106,0,1.0,0,1.3439974784851074,107,1.0,1 +107,0,1.0,0,1.4439963102340698,108,1.0,1 +108,0,0.0,0,1.4289964437484741,109,0.0,1 +109,0,1.0,0,1.527995228767395,110,0.0,1 +110,0,1.0,0,1.462996006011963,111,0.0,1 +111,0,0.0,0,1.2689974308013916,112,0.0,1 +112,0,1.0,0,1.807991623878479,113,1.0,1 +113,0,0.0,0,1.3689972162246704,114,0.0,1 +114,0,0.0,0,1.7039929628372192,115,0.0,1 +115,0,1.0,0,2.3429994583129883,116,0.0,1 +116,0,1.0,0,1.5629947185516357,117,1.0,1 +117,0,1.0,0,1.410996675491333,118,1.0,1 +118,0,1.0,0,1.71599280834198,119,1.0,1 +119,0,1.0,0,1.9199901819229126,120,1.0,1 +120,0,1.0,0,1.4009968042373657,121,1.0,1 +121,0,1.0,0,1.4519962072372437,122,1.0,1 +122,0,1.0,0,1.8209915161132812,123,1.0,1 +123,0,1.0,0,1.575994610786438,124,1.0,1 +124,0,1.0,0,1.6659934520721436,125,1.0,1 +125,0,1.0,0,1.8219914436340332,126,1.0,1 +126,0,1.0,0,2.1639909744262695,127,1.0,1 +127,0,1.0,0,1.4719959497451782,128,1.0,1 +128,0,1.0,0,2.075988292694092,129,1.0,1 +129,0,1.0,0,1.6139941215515137,130,0.0,1 +130,0,0.0,0,1.301997423171997,131,1.0,1 +131,0,0.0,0,1.4419963359832764,132,0.0,1 +132,0,0.0,0,1.4989955425262451,133,0.0,1 +133,0,1.0,0,1.7939918041229248,134,0.0,1 +134,0,0.0,0,2.496006488800049,135,0.0,1 +135,0,0.0,0,1.6189939975738525,136,0.0,1 +136,0,0.0,0,1.593994379043579,137,0.0,1 +137,0,0.0,0,1.4969955682754517,138,1.0,1 +138,0,0.0,0,1.4339964389801025,139,1.0,1 +139,0,0.0,0,2.028988838195801,140,0.0,1 +140,0,1.0,0,1.6699934005737305,141,0.0,1 +141,0,1.0,0,1.8639909029006958,142,1.0,1 +142,0,1.0,0,1.6589934825897217,143,1.0,1 +143,0,1.0,0,1.6379938125610352,144,1.0,1 +144,0,1.0,0,1.6349937915802002,145,1.0,1 +145,0,1.0,0,1.6709933280944824,146,1.0,1 +146,0,1.0,0,1.7009930610656738,147,1.0,1 +147,0,1.0,0,1.3299975395202637,148,0.0,1 +148,0,0.0,0,1.36299729347229,149,0.0,1 +149,0,0.0,0,1.4779958724975586,150,0.0,1 +150,0,1.0,0,1.5159953832626343,151,1.0,1 +151,0,1.0,0,1.4239965677261353,152,1.0,1 +152,0,1.0,0,1.527995228767395,153,1.0,1 +153,0,1.0,0,1.246997356414795,154,1.0,1 +154,0,1.0,0,1.6179940700531006,155,1.0,1 +155,0,1.0,0,1.6079941987991333,156,0.0,1 +156,0,1.0,0,1.6659934520721436,157,1.0,1 +157,0,0.0,0,1.7209928035736084,158,0.0,1 +158,0,1.0,0,1.9169902801513672,159,1.0,1 +159,0,1.0,0,1.3549973964691162,160,1.0,1 +160,0,1.0,0,1.740992546081543,161,1.0,1 +161,0,1.0,0,1.7039929628372192,162,1.0,1 +162,0,1.0,0,1.30399751663208,163,0.0,1 +163,0,1.0,0,1.966989517211914,164,1.0,1 +164,0,0.0,0,1.270997405052185,165,0.0,1 +165,0,0.0,0,1.1939972639083862,166,0.0,1 +166,0,1.0,0,1.3249975442886353,167,1.0,1 +167,0,1.0,0,1.2279973030090332,168,1.0,1 +168,0,1.0,0,2.295997142791748,169,1.0,1 +169,0,1.0,0,1.476995825767517,170,1.0,1 +170,0,1.0,0,1.6439937353134155,171,1.0,1 +171,0,1.0,0,1.3199975490570068,172,1.0,1 +172,0,1.0,0,1.3989968299865723,173,1.0,1 +173,0,1.0,0,1.711992859840393,174,1.0,1 +174,0,1.0,0,1.6529936790466309,175,1.0,1 +175,0,1.0,0,1.3329975605010986,176,1.0,1 +176,0,1.0,0,1.2319972515106201,177,1.0,1 +177,0,1.0,0,1.7799919843673706,178,1.0,1 +178,0,1.0,0,1.5199953317642212,179,1.0,1 +179,0,0.0,0,1.3459975719451904,180,0.0,1 +180,0,1.0,0,1.646993637084961,181,1.0,1 +181,0,1.0,0,1.2899974584579468,182,1.0,1 +182,0,1.0,0,1.3799971342086792,183,1.0,1 +183,0,1.0,0,1.369997262954712,184,1.0,1 +184,0,0.0,0,1.8619909286499023,185,0.0,1 +185,0,1.0,0,1.2339973449707031,186,0.0,1 +186,0,0.0,0,2.253995418548584,187,0.0,1 +187,0,0.0,0,2.319998264312744,188,1.0,1 +188,0,1.0,0,1.5009955167770386,189,1.0,1 +189,0,1.0,0,1.5229952335357666,190,1.0,1 +190,0,1.0,0,1.9279900789260864,191,1.0,1 +191,0,0.0,0,1.3999968767166138,192,0.0,1 +192,0,1.0,0,1.5129953622817993,193,1.0,1 +193,0,0.0,0,1.8959904909133911,194,0.0,1 +194,0,1.0,0,1.6629934310913086,195,1.0,1 +195,0,1.0,0,1.3029974699020386,196,1.0,1 +196,0,1.0,0,1.3429975509643555,197,0.0,1 +197,0,0.0,0,1.4229965209960938,198,0.0,1 +198,0,0.0,0,1.601994276046753,199,0.0,1 +199,0,0.0,0,1.7079929113388062,200,0.0,1 +200,0,1.0,0,1.527995228767395,201,1.0,1 +201,0,1.0,0,1.7399924993515015,202,1.0,1 +202,0,1.0,0,1.2339973449707031,203,1.0,1 +203,0,1.0,0,1.5409950017929077,204,1.0,1 +204,0,1.0,0,1.4019968509674072,205,1.0,1 +205,0,1.0,0,1.5609947443008423,206,1.0,1 +206,0,1.0,0,1.2509973049163818,207,1.0,1 +207,0,0.0,0,1.5919944047927856,208,0.0,1 +208,0,1.0,0,1.3639973402023315,209,1.0,1 +209,0,1.0,0,1.3989968299865723,210,1.0,1 +210,0,1.0,0,2.1429901123046875,211,1.0,1 +211,0,1.0,0,2.0989880561828613,212,0.0,1 +212,0,1.0,0,1.9339900016784668,213,1.0,1 +213,0,1.0,0,1.7509922981262207,214,0.0,1 +214,0,0.0,0,2.226994037628174,215,0.0,1 +215,0,1.0,0,1.5479949712753296,216,1.0,1 +216,0,1.0,0,1.3729971647262573,217,1.0,1 +217,0,1.0,0,1.3399975299835205,218,1.0,1 +218,0,1.0,0,2.276996374130249,219,1.0,1 +219,0,0.0,0,1.2659974098205566,220,0.0,1 +220,0,1.0,0,1.3709971904754639,221,1.0,1 +221,0,1.0,0,1.3639973402023315,222,1.0,1 +222,0,1.0,0,1.3089975118637085,223,0.0,1 +223,0,1.0,0,1.3939969539642334,224,1.0,1 +224,0,0.0,0,1.7269926071166992,225,0.0,1 +225,0,1.0,0,1.4169965982437134,226,1.0,1 +226,0,1.0,0,1.4219965934753418,227,1.0,1 +227,0,1.0,0,1.3129974603652954,228,1.0,1 +228,0,1.0,0,1.4349963665008545,229,1.0,1 +229,0,1.0,0,1.3159974813461304,230,1.0,1 +230,0,1.0,0,1.7129929065704346,231,1.0,1 +231,0,1.0,0,1.2859973907470703,232,1.0,1 +232,0,1.0,0,1.8709907531738281,233,1.0,1 +233,0,1.0,0,2.021988868713379,234,1.0,1 +234,0,1.0,0,1.5109953880310059,235,1.0,1 +235,0,1.0,0,1.966989517211914,236,1.0,1 +236,0,0.0,0,1.2149972915649414,237,0.0,1 +237,0,1.0,0,1.600994348526001,238,1.0,1 +238,0,1.0,0,2.0499885082244873,239,0.0,1 +239,0,1.0,0,1.3639973402023315,240,1.0,1 +240,0,1.0,0,1.8359912633895874,241,1.0,1 +241,0,1.0,0,1.4489961862564087,242,0.0,1 +242,0,1.0,0,2.0989880561828613,243,0.0,1 +243,0,1.0,0,1.593994379043579,244,1.0,1 +244,0,0.0,0,1.7619922161102295,245,0.0,1 +245,0,1.0,0,1.5859944820404053,246,1.0,1 +246,0,1.0,0,1.6709933280944824,247,0.0,1 +247,0,1.0,0,2.3860015869140625,248,1.0,1 +248,0,1.0,0,1.4479962587356567,249,1.0,1 +249,0,1.0,0,1.6279939413070679,250,1.0,1 +250,0,1.0,0,1.3329975605010986,251,1.0,1 +251,0,1.0,0,1.811991572380066,252,1.0,1 +252,0,1.0,0,2.1899924278259277,253,1.0,1 +253,0,1.0,0,1.3439974784851074,254,1.0,1 +254,0,1.0,0,1.6549935340881348,255,1.0,1 +255,0,1.0,0,1.7069928646087646,256,1.0,1 +256,0,1.0,0,1.484995722770691,257,1.0,1 +257,0,1.0,0,1.4309964179992676,258,1.0,1 +258,0,1.0,0,1.1959972381591797,259,1.0,1 +259,0,1.0,0,1.3059974908828735,260,0.0,1 +260,0,1.0,0,1.4339964389801025,261,1.0,1 +261,0,1.0,0,1.9329900741577148,262,1.0,1 +262,0,1.0,0,1.7009930610656738,263,0.0,1 +263,0,0.0,0,1.4009968042373657,264,1.0,1 +264,0,0.0,0,1.6479936838150024,265,1.0,1 +265,0,0.0,0,1.7059929370880127,266,0.0,1 +266,0,1.0,0,1.786991834640503,267,1.0,1 +267,0,1.0,0,1.3909969329833984,268,1.0,1 +268,0,1.0,0,1.7229926586151123,269,1.0,1 +269,0,0.0,0,1.9319900274276733,270,0.0,1 +270,0,1.0,0,1.3749971389770508,271,1.0,1 +271,0,1.0,0,1.3059974908828735,272,0.0,1 +272,0,0.0,0,1.5009955167770386,273,0.0,1 +273,0,0.0,0,1.6139941215515137,274,0.0,1 +274,0,1.0,0,1.3089975118637085,275,1.0,1 +275,0,0.0,0,2.3580002784729004,276,0.0,1 +276,0,1.0,0,2.058988332748413,277,1.0,1 +277,0,1.0,0,1.6919931173324585,278,1.0,1 +278,0,1.0,0,1.337997555732727,279,0.0,1 +279,0,1.0,0,1.5459949970245361,280,1.0,1 +280,0,1.0,0,1.737992525100708,281,1.0,1 +281,0,1.0,0,1.7029929161071777,282,1.0,1 +282,0,1.0,0,1.7629921436309814,283,1.0,1 +283,0,1.0,0,1.388996958732605,284,1.0,1 +284,0,1.0,0,1.39199697971344,285,1.0,1 +285,0,1.0,0,2.1089885234832764,286,1.0,1 +286,0,1.0,0,1.3279974460601807,287,1.0,1 +287,0,1.0,0,1.2719974517822266,288,1.0,1 +288,0,1.0,0,1.4309964179992676,289,0.0,1 +289,0,1.0,0,1.6809933185577393,290,1.0,1 +290,0,0.0,0,1.3249975442886353,291,1.0,1 +291,0,0.0,0,1.9149901866912842,292,0.0,1 +292,0,1.0,0,2.0009891986846924,293,0.0,1 +293,0,1.0,0,1.5419950485229492,294,1.0,1 +294,0,1.0,0,1.3599973917007446,295,1.0,1 +295,0,1.0,0,1.7909917831420898,296,0.0,1 +296,0,1.0,0,1.5349950790405273,297,0.0,1 +297,0,0.0,0,1.571994662284851,298,0.0,1 +298,0,0.0,0,1.3179974555969238,299,0.0,1 +299,0,1.0,0,1.5899944305419922,300,1.0,1 +300,0,0.0,0,1.6789932250976562,301,0.0,1 +301,0,1.0,0,1.855991005897522,302,1.0,1 +302,0,1.0,0,1.3709971904754639,303,1.0,1 +303,0,1.0,0,1.3729971647262573,304,0.0,1 +304,0,0.0,0,2.1249892711639404,305,0.0,1 +305,0,0.0,0,1.9009904861450195,306,0.0,1 +306,0,1.0,0,1.8979904651641846,307,1.0,1 +307,0,1.0,0,1.277997374534607,308,1.0,1 +308,0,1.0,0,1.5369950532913208,309,1.0,1 +309,0,0.0,0,1.277997374534607,310,1.0,1 +310,0,0.0,0,1.5229952335357666,311,0.0,1 +311,0,1.0,0,1.5839945077896118,312,1.0,1 +312,0,0.0,0,1.3509974479675293,313,0.0,1 +313,0,0.0,0,1.6159940958023071,314,0.0,1 +314,0,1.0,0,1.7579922676086426,315,1.0,1 +315,0,1.0,0,1.5419950485229492,316,0.0,1 +316,0,1.0,0,2.1369898319244385,317,1.0,1 +317,0,1.0,0,1.3099974393844604,318,0.0,1 +318,0,1.0,0,1.638993740081787,319,1.0,1 +319,0,1.0,0,1.740992546081543,320,1.0,1 +320,0,1.0,0,1.334997534751892,321,1.0,1 +321,0,1.0,0,1.369997262954712,322,0.0,1 +322,0,0.0,0,1.3239974975585938,323,0.0,1 +323,0,1.0,0,1.5599948167800903,324,1.0,1 +324,0,1.0,0,1.903990387916565,325,1.0,1 +325,0,1.0,0,1.3469974994659424,326,0.0,1 +326,0,1.0,0,2.1689913272857666,327,1.0,1 +327,0,1.0,0,1.476995825767517,328,1.0,1 +328,0,1.0,0,1.2939974069595337,329,0.0,1 +329,0,0.0,0,1.3969968557357788,330,0.0,1 +330,0,0.0,0,1.5039955377578735,331,0.0,1 +331,0,1.0,0,2.311997890472412,332,1.0,1 +332,0,0.0,0,1.5529948472976685,333,0.0,1 +333,0,1.0,0,1.4609960317611694,334,1.0,1 +334,0,1.0,0,1.4529961347579956,335,1.0,1 +335,0,1.0,0,1.7489924430847168,336,1.0,1 +336,0,1.0,0,1.3509974479675293,337,1.0,1 +337,0,1.0,0,1.4389963150024414,338,0.0,1 +338,0,0.0,0,1.3899970054626465,339,0.0,1 +339,0,0.0,0,1.6799932718276978,340,0.0,1 +340,0,1.0,0,2.0339887142181396,341,1.0,1 +341,0,1.0,0,1.572994589805603,342,1.0,1 +342,0,1.0,0,1.2939974069595337,343,1.0,1 +343,0,0.0,0,1.788991928100586,344,0.0,1 +344,0,1.0,0,1.73899245262146,345,1.0,1 +345,0,1.0,0,1.3149974346160889,346,1.0,1 +346,0,1.0,0,1.3599973917007446,347,0.0,1 +347,0,0.0,0,1.7109928131103516,348,0.0,1 +348,0,1.0,0,1.4179966449737549,349,1.0,1 +349,0,0.0,0,1.7649922370910645,350,0.0,1 +350,0,1.0,0,1.4119967222213745,351,1.0,1 +351,0,1.0,0,1.4779958724975586,352,1.0,1 +352,0,0.0,0,1.3899970054626465,353,0.0,1 +353,0,1.0,0,1.5669946670532227,354,1.0,1 +354,0,1.0,0,2.007988929748535,355,1.0,1 +355,0,0.0,0,1.3489974737167358,356,0.0,1 +356,0,1.0,0,1.5679947137832642,357,0.0,1 +357,0,0.0,0,1.509995460510254,358,1.0,1 +358,0,0.0,0,1.3529974222183228,359,0.0,1 +359,0,1.0,0,1.5429949760437012,360,1.0,1 +360,0,1.0,0,1.4609960317611694,361,1.0,1 +361,0,0.0,0,1.3209974765777588,362,1.0,1 +362,0,1.0,0,1.310997486114502,363,0.0,1 +363,0,1.0,0,1.7079929113388062,364,1.0,1 +364,0,1.0,0,1.3529974222183228,365,1.0,1 +365,0,1.0,0,1.3969968557357788,366,0.0,1 +366,0,0.0,0,1.7319926023483276,367,0.0,1 +367,0,0.0,0,1.476995825767517,368,0.0,1 +368,0,1.0,0,1.7689921855926514,369,1.0,1 +369,0,1.0,0,1.6989929676055908,370,1.0,1 +370,0,1.0,0,1.5179953575134277,371,1.0,1 +371,0,1.0,0,1.6479936838150024,372,1.0,1 +372,0,1.0,0,1.2879974842071533,373,1.0,1 +373,0,1.0,0,1.7979917526245117,374,0.0,1 +374,0,1.0,0,1.5089954137802124,375,1.0,1 +375,0,1.0,0,1.5609947443008423,376,1.0,1 +376,0,0.0,0,1.7619922161102295,377,0.0,1 +377,0,1.0,0,1.6059942245483398,378,1.0,1 +378,0,1.0,0,1.7989916801452637,379,1.0,1 +379,0,1.0,0,1.3489974737167358,380,0.0,1 +380,0,1.0,0,2.1789917945861816,381,1.0,1 +381,0,1.0,0,1.432996392250061,382,1.0,1 +382,0,1.0,0,1.803991675376892,383,1.0,1 +383,0,1.0,0,1.6349937915802002,384,1.0,1 +384,0,1.0,0,1.601994276046753,385,1.0,1 +385,0,1.0,0,1.2219972610473633,386,1.0,1 +386,0,1.0,0,1.409996747970581,387,0.0,1 +387,0,1.0,0,1.9809894561767578,388,1.0,1 +388,0,0.0,0,1.5389950275421143,389,0.0,1 +389,0,1.0,0,1.7629921436309814,390,1.0,1 +390,0,1.0,0,1.6149940490722656,391,1.0,1 +391,0,1.0,0,1.6379938125610352,392,1.0,1 +392,0,1.0,0,1.2609974145889282,393,1.0,1 +393,0,1.0,0,1.3279974460601807,394,1.0,1 +394,0,1.0,0,1.2359973192214966,395,1.0,1 +395,0,1.0,0,1.5929943323135376,396,1.0,1 +396,0,1.0,0,1.5559948682785034,397,1.0,1 +397,0,1.0,0,2.1589908599853516,398,1.0,1 +398,0,1.0,0,1.2699973583221436,399,1.0,1 +399,0,1.0,0,1.4039968252182007,400,1.0,1 +400,0,1.0,0,1.301997423171997,401,1.0,1 +401,0,1.0,0,1.7489924430847168,402,1.0,1 +402,0,1.0,0,1.3829970359802246,403,1.0,1 +403,0,1.0,0,1.3439974784851074,404,1.0,1 +404,0,1.0,0,1.5689946413040161,405,1.0,1 +405,0,1.0,0,1.4249964952468872,406,1.0,1 +406,0,1.0,0,1.851991057395935,407,1.0,1 +407,0,0.0,0,1.7269926071166992,408,1.0,1 +408,0,1.0,0,2.4080023765563965,409,1.0,1 +409,0,1.0,0,1.413996696472168,410,1.0,1 +410,0,1.0,0,1.8759907484054565,411,1.0,1 +411,0,0.0,0,1.365997314453125,412,0.0,1 +412,0,1.0,0,1.3969968557357788,413,1.0,1 +413,0,1.0,0,1.5269951820373535,414,1.0,1 +414,0,1.0,0,1.8149914741516113,415,1.0,1 +415,0,1.0,0,1.5749945640563965,416,1.0,1 +416,0,1.0,0,1.3679972887039185,417,1.0,1 +417,0,1.0,0,1.3739972114562988,418,1.0,1 +418,0,1.0,0,1.781991958618164,419,1.0,1 +419,0,0.0,0,1.5879944562911987,420,0.0,1 +420,0,1.0,0,2.024988889694214,421,1.0,1 +421,0,1.0,0,1.7329926490783691,422,1.0,1 +422,0,1.0,0,1.2309973239898682,423,0.0,1 +423,0,0.0,0,1.239997386932373,424,0.0,1 +424,0,1.0,0,1.6559935808181763,425,1.0,1 +425,0,1.0,0,1.572994589805603,426,1.0,1 +426,0,1.0,0,1.3779971599578857,427,0.0,1 +427,0,0.0,0,1.5139954090118408,428,0.0,1 +428,0,0.0,0,1.3579974174499512,429,0.0,1 +429,0,0.0,0,1.298997402191162,430,0.0,1 +430,0,0.0,0,1.5529948472976685,431,0.0,1 +431,0,0.0,0,1.3209974765777588,432,0.0,1 +432,0,1.0,0,2.013988971710205,433,1.0,1 +433,0,1.0,0,2.012989044189453,434,1.0,1 +434,0,1.0,0,1.8129916191101074,435,0.0,1 +435,0,0.0,0,2.017988920211792,436,0.0,1 +436,0,0.0,0,1.5789945125579834,437,1.0,1 +437,0,0.0,0,1.6159940958023071,438,0.0,1 +438,0,0.0,0,1.453996181488037,439,0.0,1 +439,0,0.0,0,1.9159902334213257,440,0.0,1 +440,0,0.0,0,1.8579909801483154,441,0.0,1 +441,0,0.0,0,1.341997504234314,442,0.0,1 +442,0,1.0,0,2.235994338989258,443,1.0,1 +443,0,1.0,0,1.5869944095611572,444,1.0,1 +444,0,1.0,0,1.527995228767395,445,1.0,1 +445,0,1.0,0,1.274997353553772,446,1.0,1 +446,0,1.0,0,1.8469910621643066,447,1.0,1 +447,0,1.0,0,1.7219927310943604,448,0.0,1 +448,0,0.0,0,1.965989589691162,449,0.0,1 +449,0,1.0,0,2.3640003204345703,450,1.0,1 +450,0,1.0,0,1.5889943838119507,451,1.0,1 +451,0,1.0,0,1.8689908981323242,452,0.0,1 +452,0,1.0,0,1.3599973917007446,453,1.0,1 +453,0,1.0,0,1.641993761062622,454,1.0,1 +454,0,1.0,0,1.3229974508285522,455,1.0,1 +455,0,0.0,0,1.8019917011260986,456,0.0,1 +456,0,1.0,0,1.6609935760498047,457,1.0,1 +457,0,1.0,0,1.2919974327087402,458,1.0,1 +458,0,0.0,0,1.4749958515167236,459,0.0,1 +459,0,1.0,0,1.2659974098205566,460,1.0,1 +460,0,1.0,0,1.6409938335418701,461,1.0,1 +461,0,1.0,0,1.5349950790405273,462,1.0,1 +462,0,1.0,0,1.4019968509674072,463,0.0,1 +463,0,1.0,0,2.1199889183044434,464,1.0,1 +464,0,1.0,0,1.6999930143356323,465,1.0,1 +465,0,1.0,0,1.9179902076721191,466,1.0,1 +466,0,1.0,0,1.3469974994659424,467,1.0,1 +467,0,1.0,0,1.7949917316436768,468,1.0,1 +468,0,1.0,0,1.4489961862564087,469,1.0,1 +469,0,1.0,0,1.50199556350708,470,0.0,1 +470,0,1.0,0,1.811991572380066,471,1.0,1 +471,0,1.0,0,1.8669908046722412,472,0.0,1 +472,0,0.0,0,2.1709914207458496,473,0.0,1 +473,0,1.0,0,1.3789970874786377,474,1.0,1 +474,0,0.0,0,1.6269938945770264,475,1.0,1 +475,0,1.0,0,1.7329926490783691,476,1.0,1 +476,0,0.0,0,1.2909973859786987,477,0.0,1 +477,0,0.0,0,1.234997272491455,478,0.0,1 +478,0,1.0,0,1.8989903926849365,479,1.0,1 +479,0,1.0,0,1.3479975461959839,480,1.0,1 +480,0,1.0,0,1.280997395515442,481,1.0,1 +481,0,1.0,0,1.461996078491211,482,1.0,1 +482,0,1.0,0,1.3649972677230835,483,1.0,1 +483,0,1.0,0,1.5349950790405273,484,1.0,1 +484,0,1.0,0,1.6739933490753174,485,1.0,1 +485,0,1.0,0,1.476995825767517,486,1.0,1 +486,0,1.0,0,1.8169915676116943,487,1.0,1 +487,0,1.0,0,1.7969918251037598,488,0.0,1 +488,0,1.0,0,2.0869879722595215,489,1.0,1 +489,0,1.0,0,1.947989821434021,490,1.0,1 +490,0,1.0,0,1.6139941215515137,491,1.0,1 +491,0,1.0,0,1.3509974479675293,492,1.0,1 +492,0,1.0,0,1.4499962329864502,493,1.0,1 +493,0,1.0,0,1.6039942502975464,494,0.0,1 +494,0,0.0,0,1.638993740081787,495,0.0,1 +495,0,0.0,0,1.7109928131103516,496,0.0,1 +496,0,1.0,0,1.8449912071228027,497,1.0,1 +497,0,1.0,0,2.229994297027588,498,1.0,1 +498,0,1.0,0,1.4049967527389526,499,1.0,1 +499,0,1.0,0,1.644993782043457,500,1.0,1 +500,0,1.0,1,1.9829893112182617,1,1.0,1 +501,0,0.0,1,1.6629934310913086,2,1.0,1 +502,0,0.0,1,1.5589947700500488,3,1.0,1 +503,0,0.0,1,2.29099702835083,4,1.0,1 +504,0,0.0,1,1.9589896202087402,5,0.0,1 +505,0,1.0,1,1.3959969282150269,6,1.0,1 +506,0,1.0,1,1.7929918766021729,7,1.0,1 +507,0,1.0,1,1.4719959497451782,8,1.0,1 +508,0,1.0,1,1.9889893531799316,9,0.0,1 +509,0,0.0,1,1.6349937915802002,10,0.0,1 +510,0,0.0,1,1.2219972610473633,11,1.0,1 +511,0,0.0,1,1.3289974927902222,12,1.0,1 +512,0,0.0,1,1.479995846748352,13,1.0,1 +513,0,0.0,1,1.301997423171997,14,0.0,1 +514,0,0.0,1,1.4459962844848633,15,0.0,1 +515,0,1.0,1,1.8469910621643066,16,1.0,1 +516,0,1.0,1,1.3369975090026855,17,1.0,1 +517,0,1.0,1,1.3979969024658203,18,1.0,1 +518,0,1.0,1,1.644993782043457,19,1.0,1 +519,0,1.0,1,1.596994400024414,20,0.0,1 +520,0,1.0,1,2.289997100830078,21,1.0,1 +521,0,1.0,1,1.4199966192245483,22,1.0,1 +522,0,1.0,1,1.5339951515197754,23,0.0,1 +523,0,0.0,1,1.8509910106658936,24,0.0,1 +524,0,0.0,1,1.4029967784881592,25,0.0,1 +525,0,0.0,1,2.071988105773926,26,0.0,1 +526,0,0.0,1,1.829991340637207,27,0.0,1 +527,0,0.0,1,2.1099886894226074,28,0.0,1 +528,0,0.0,1,1.6509935855865479,29,0.0,1 +529,0,1.0,1,2.055988311767578,30,1.0,1 +530,0,1.0,1,1.4119967222213745,31,0.0,1 +531,0,0.0,1,1.4119967222213745,32,0.0,1 +532,0,1.0,1,1.9019904136657715,33,1.0,1 +533,0,0.0,1,1.3639973402023315,34,1.0,1 +534,0,0.0,1,1.2029972076416016,35,0.0,1 +535,0,0.0,1,1.3639973402023315,36,0.0,1 +536,0,0.0,1,1.2579973936080933,37,0.0,1 +537,0,1.0,1,2.1919922828674316,38,1.0,1 +538,0,1.0,1,1.5109953880310059,39,0.0,1 +539,0,0.0,1,1.5679947137832642,40,0.0,1 +540,0,1.0,1,1.623993992805481,41,0.0,1 +541,0,0.0,1,1.3069974184036255,42,0.0,1 +542,0,1.0,1,1.828991413116455,43,0.0,1 +543,0,0.0,1,1.6769933700561523,44,1.0,1 +544,0,0.0,1,1.2579973936080933,45,1.0,1 +545,0,0.0,1,1.236997365951538,46,0.0,1 +546,0,1.0,1,1.410996675491333,47,1.0,1 +547,0,1.0,1,1.2849974632263184,48,1.0,1 +548,0,1.0,1,1.734992504119873,49,0.0,1 +549,0,0.0,1,1.8379912376403809,50,0.0,1 +550,0,1.0,1,1.8669908046722412,51,1.0,1 +551,0,1.0,1,1.36299729347229,52,1.0,1 +552,0,1.0,1,1.4989955425262451,53,1.0,1 +553,0,1.0,1,2.0859880447387695,54,1.0,1 +554,0,0.0,1,1.3809970617294312,55,1.0,1 +555,0,1.0,1,1.4429962635040283,56,1.0,1 +556,0,1.0,1,1.6119941473007202,57,1.0,1 +557,0,0.0,1,1.6379938125610352,58,0.0,1 +558,0,1.0,1,1.4409962892532349,59,1.0,1 +559,0,0.0,1,1.600994348526001,60,0.0,1 +560,0,1.0,1,1.4659960269927979,61,0.0,1 +561,0,0.0,1,2.0389885902404785,62,1.0,1 +562,0,0.0,1,1.5309951305389404,63,1.0,1 +563,0,0.0,1,1.484995722770691,64,1.0,1 +564,0,0.0,1,1.5049954652786255,65,0.0,1 +565,0,0.0,1,1.36299729347229,66,1.0,1 +566,0,0.0,1,1.4939956665039062,67,0.0,1 +567,0,1.0,1,2.019989013671875,68,1.0,1 +568,0,1.0,1,1.3979969024658203,69,0.0,1 +569,0,1.0,1,2.014988899230957,70,0.0,1 +570,0,0.0,1,1.7399924993515015,71,0.0,1 +571,0,0.0,1,1.4239965677261353,72,0.0,1 +572,0,1.0,1,1.7879918813705444,73,1.0,1 +573,0,1.0,1,1.6179940700531006,74,1.0,1 +574,0,1.0,1,1.2629973888397217,75,1.0,1 +575,0,0.0,1,1.365997314453125,76,0.0,1 +576,0,1.0,1,1.365997314453125,77,1.0,1 +577,0,1.0,1,1.4209965467453003,78,1.0,1 +578,0,1.0,1,1.2249972820281982,79,1.0,1 +579,0,1.0,1,1.2939974069595337,80,1.0,1 +580,0,1.0,1,1.462996006011963,81,0.0,1 +581,0,0.0,1,1.203997254371643,82,0.0,1 +582,0,0.0,1,1.9979891777038574,83,1.0,1 +583,0,0.0,1,1.479995846748352,84,0.0,1 +584,0,1.0,1,2.1669912338256836,85,1.0,1 +585,0,0.0,1,1.3589973449707031,86,0.0,1 +586,0,1.0,1,1.5609947443008423,87,1.0,1 +587,0,1.0,1,1.9059903621673584,88,0.0,1 +588,0,0.0,1,1.7299926280975342,89,0.0,1 +589,0,1.0,1,1.3469974994659424,90,1.0,1 +590,0,0.0,1,1.6109941005706787,91,0.0,1 +591,0,1.0,1,1.734992504119873,92,1.0,1 +592,0,1.0,1,1.3679972887039185,93,0.0,1 +593,0,0.0,1,1.413996696472168,94,0.0,1 +594,0,1.0,1,1.6309938430786133,95,1.0,1 +595,0,0.0,1,1.3479975461959839,96,0.0,1 +596,0,1.0,1,1.2569973468780518,97,1.0,1 +597,0,1.0,1,1.6119941473007202,98,1.0,1 +598,0,1.0,1,1.3769971132278442,99,1.0,1 +599,0,1.0,1,1.338997483253479,100,1.0,1 +600,0,0.0,1,1.803991675376892,101,0.0,1 +601,0,1.0,1,1.3989968299865723,102,1.0,1 +602,0,1.0,1,1.203997254371643,103,1.0,1 +603,0,1.0,1,1.3649972677230835,104,1.0,1 +604,0,1.0,1,1.2879974842071533,105,1.0,1 +605,0,0.0,1,1.5689946413040161,106,0.0,1 +606,0,1.0,1,1.8969905376434326,107,1.0,1 +607,0,1.0,1,1.3579974174499512,108,0.0,1 +608,0,0.0,1,1.830991268157959,109,0.0,1 +609,0,0.0,1,2.1549906730651855,110,0.0,1 +610,0,0.0,1,1.2639973163604736,111,0.0,1 +611,0,1.0,1,1.506995439529419,112,1.0,1 +612,0,1.0,1,1.7169928550720215,113,0.0,1 +613,0,0.0,1,1.2089972496032715,114,0.0,1 +614,0,1.0,1,1.6299939155578613,115,1.0,1 +615,0,1.0,1,1.6339938640594482,116,1.0,1 +616,0,1.0,1,1.4049967527389526,117,1.0,1 +617,0,1.0,1,1.366997241973877,118,1.0,1 +618,0,1.0,1,1.9969892501831055,119,1.0,1 +619,0,0.0,1,2.0309886932373047,120,1.0,1 +620,0,1.0,1,1.8649909496307373,121,1.0,1 +621,0,1.0,1,1.6559935808181763,122,0.0,1 +622,0,0.0,1,1.4429962635040283,123,0.0,1 +623,0,1.0,1,1.973989486694336,124,0.0,1 +624,0,1.0,1,1.8829905986785889,125,1.0,1 +625,0,1.0,1,1.5379951000213623,126,0.0,1 +626,0,0.0,1,1.307997465133667,127,1.0,1 +627,0,0.0,1,1.310997486114502,128,0.0,1 +628,0,0.0,1,1.4909956455230713,129,0.0,1 +629,0,1.0,1,1.6269938945770264,130,1.0,1 +630,0,1.0,1,1.3469974994659424,131,1.0,1 +631,0,0.0,1,1.4749958515167236,132,0.0,1 +632,0,1.0,1,1.4409962892532349,133,1.0,1 +633,0,1.0,1,1.9759894609451294,134,1.0,1 +634,0,1.0,1,1.3169975280761719,135,1.0,1 +635,0,1.0,1,1.5749945640563965,136,1.0,1 +636,0,1.0,1,1.3289974927902222,137,1.0,1 +637,0,1.0,1,1.5049954652786255,138,1.0,1 +638,0,1.0,1,1.5959943532943726,139,0.0,1 +639,0,0.0,1,1.6149940490722656,140,0.0,1 +640,0,0.0,1,1.5339951515197754,141,0.0,1 +641,0,1.0,1,1.7129929065704346,142,1.0,1 +642,0,1.0,1,1.4639960527420044,143,0.0,1 +643,0,0.0,1,1.9119902849197388,144,0.0,1 +644,0,0.0,1,1.4119967222213745,145,0.0,1 +645,0,1.0,1,1.369997262954712,146,1.0,1 +646,0,1.0,1,1.4899957180023193,147,1.0,1 +647,0,1.0,1,1.5109953880310059,148,1.0,1 +648,0,1.0,1,1.4979956150054932,149,1.0,1 +649,0,0.0,1,1.3509974479675293,150,0.0,1 +650,0,1.0,1,1.3359975814819336,151,1.0,1 +651,0,1.0,1,1.435996413230896,152,0.0,1 +652,0,0.0,1,1.6799932718276978,153,0.0,1 +653,0,0.0,1,2.0389885902404785,154,1.0,1 +654,0,0.0,1,1.8849906921386719,155,0.0,1 +655,0,1.0,1,1.50199556350708,156,1.0,1 +656,0,1.0,1,1.4049967527389526,157,1.0,1 +657,0,1.0,1,1.579994559288025,158,0.0,1 +658,0,1.0,1,1.689993143081665,159,0.0,1 +659,0,0.0,1,1.924990177154541,160,0.0,1 +660,0,1.0,1,1.9139902591705322,161,1.0,1 +661,0,0.0,1,1.3269975185394287,162,0.0,1 +662,0,1.0,1,1.2929974794387817,163,1.0,1 +663,0,1.0,1,1.9529898166656494,164,1.0,1 +664,0,1.0,1,1.6409938335418701,165,1.0,1 +665,0,1.0,1,1.4179966449737549,166,1.0,1 +666,0,1.0,1,1.6339938640594482,167,0.0,1 +667,0,1.0,1,1.667993426322937,168,1.0,1 +668,0,1.0,1,1.3579974174499512,169,0.0,1 +669,0,1.0,1,1.6849932670593262,170,0.0,1 +670,0,1.0,1,1.5109953880310059,171,1.0,1 +671,0,1.0,1,1.926990032196045,172,1.0,1 +672,0,1.0,1,1.9089903831481934,173,1.0,1 +673,0,1.0,1,1.439996361732483,174,1.0,1 +674,0,1.0,1,1.5039955377578735,175,1.0,1 +675,0,1.0,1,1.807991623878479,176,1.0,1 +676,0,1.0,1,1.8909904956817627,177,0.0,1 +677,0,0.0,1,1.4559961557388306,178,1.0,1 +678,0,0.0,1,1.991989254951477,179,0.0,1 +679,0,0.0,1,1.3579974174499512,180,0.0,1 +680,0,0.0,1,2.3640003204345703,181,1.0,1 +681,0,0.0,1,1.3319975137710571,182,1.0,1 +682,0,0.0,1,1.4829957485198975,183,0.0,1 +683,0,0.0,1,1.3189975023269653,184,0.0,1 +684,0,0.0,1,1.2359973192214966,185,0.0,1 +685,0,1.0,1,1.3159974813461304,186,1.0,1 +686,0,1.0,1,1.829991340637207,187,1.0,1 +687,0,1.0,1,1.528995156288147,188,1.0,1 +688,0,1.0,1,1.851991057395935,189,1.0,1 +689,0,1.0,1,1.2589973211288452,190,0.0,1 +690,0,1.0,1,1.3989968299865723,191,0.0,1 +691,0,0.0,1,1.2619973421096802,192,1.0,1 +692,0,0.0,1,1.3779971599578857,193,0.0,1 +693,0,1.0,1,1.6619935035705566,194,1.0,1 +694,0,1.0,1,1.2969974279403687,195,0.0,1 +695,0,1.0,1,1.8539910316467285,196,1.0,1 +696,0,0.0,1,1.369997262954712,197,0.0,1 +697,0,1.0,1,1.2149972915649414,198,1.0,1 +698,0,1.0,1,1.596994400024414,199,1.0,1 +699,0,1.0,1,1.671993374824524,200,1.0,1 +700,0,0.0,1,1.4829957485198975,201,1.0,1 +701,0,1.0,1,1.5369950532913208,202,0.0,1 +702,0,0.0,1,1.2669973373413086,203,0.0,1 +703,0,0.0,1,1.2949974536895752,204,1.0,1 +704,0,0.0,1,2.0799880027770996,205,1.0,1 +705,0,0.0,1,1.236997365951538,206,0.0,1 +706,0,1.0,1,2.3820013999938965,207,1.0,1 +707,0,1.0,1,1.6609935760498047,208,0.0,1 +708,0,1.0,1,1.71599280834198,209,1.0,1 +709,0,1.0,1,2.0299887657165527,210,1.0,1 +710,0,0.0,1,1.2419973611831665,211,0.0,1 +711,0,1.0,1,1.2949974536895752,212,1.0,1 +712,0,0.0,1,1.789991855621338,213,1.0,1 +713,0,1.0,1,1.8239914178848267,214,1.0,1 +714,0,0.0,1,1.3859970569610596,215,0.0,1 +715,0,1.0,1,1.733992576599121,216,1.0,1 +716,0,1.0,1,1.6289939880371094,217,0.0,1 +717,0,0.0,1,2.0829880237579346,218,0.0,1 +718,0,0.0,1,1.1789971590042114,219,0.0,1 +719,0,1.0,1,1.3309974670410156,220,1.0,1 +720,0,1.0,1,1.462996006011963,221,1.0,1 +721,0,1.0,1,1.3599973917007446,222,1.0,1 +722,0,1.0,1,1.2999974489212036,223,1.0,1 +723,0,1.0,1,1.3169975280761719,224,1.0,1 +724,0,1.0,1,1.6289939880371094,225,1.0,1 +725,0,1.0,1,1.5479949712753296,226,1.0,1 +726,0,1.0,1,1.9309899806976318,227,0.0,1 +727,0,1.0,1,1.7919918298721313,228,1.0,1 +728,0,1.0,1,1.4209965467453003,229,1.0,1 +729,0,1.0,1,1.2569973468780518,230,1.0,1 +730,0,1.0,1,1.6999930143356323,231,1.0,1 +731,0,1.0,1,1.7479923963546753,232,1.0,1 +732,0,1.0,1,1.4079967737197876,233,0.0,1 +733,0,0.0,1,1.3939969539642334,234,0.0,1 +734,0,1.0,1,1.976989507675171,235,1.0,1 +735,0,1.0,1,1.7709920406341553,236,1.0,1 +736,0,1.0,1,1.2789974212646484,237,1.0,1 +737,0,1.0,1,1.6729934215545654,238,0.0,1 +738,0,0.0,1,1.5089954137802124,239,0.0,1 +739,0,1.0,1,1.9139902591705322,240,1.0,1 +740,0,0.0,1,1.2569973468780518,241,0.0,1 +741,0,0.0,1,1.3569973707199097,242,0.0,1 +742,0,1.0,1,1.5859944820404053,243,1.0,1 +743,0,1.0,1,1.5149953365325928,244,1.0,1 +744,0,0.0,1,1.5339951515197754,245,0.0,1 +745,0,1.0,1,1.4979956150054932,246,1.0,1 +746,0,1.0,1,2.028988838195801,247,1.0,1 +747,0,1.0,1,1.6349937915802002,248,0.0,1 +748,0,1.0,1,1.9939892292022705,249,1.0,1 +749,0,1.0,1,1.301997423171997,250,1.0,1 +750,0,1.0,1,1.2139972448349,251,0.0,1 +751,0,1.0,1,1.6189939975738525,252,0.0,1 +752,0,0.0,1,1.9929893016815186,253,0.0,1 +753,0,0.0,1,1.597994327545166,254,1.0,1 +754,0,0.0,1,1.597994327545166,255,1.0,1 +755,0,0.0,1,1.2869974374771118,256,0.0,1 +756,0,0.0,1,1.6289939880371094,257,0.0,1 +757,0,1.0,1,2.234994411468506,258,1.0,1 +758,0,1.0,1,1.6749932765960693,259,1.0,1 +759,0,1.0,1,2.056988477706909,260,0.0,1 +760,0,1.0,1,1.301997423171997,261,1.0,1 +761,0,0.0,1,1.1919972896575928,262,0.0,1 +762,0,1.0,1,1.9489898681640625,263,0.0,1 +763,0,0.0,1,1.803991675376892,264,0.0,1 +764,0,0.0,1,1.6259939670562744,265,0.0,1 +765,0,0.0,1,1.2199972867965698,266,1.0,1 +766,0,0.0,1,1.696993112564087,267,0.0,1 +767,0,1.0,1,1.3749971389770508,268,1.0,1 +768,0,1.0,1,1.2869974374771118,269,1.0,1 +769,0,1.0,1,1.5109953880310059,270,1.0,1 +770,0,1.0,1,1.4079967737197876,271,0.0,1 +771,0,0.0,1,1.9389898777008057,272,1.0,1 +772,0,1.0,1,1.4519962072372437,273,1.0,1 +773,0,0.0,1,1.7259926795959473,274,0.0,1 +774,0,1.0,1,1.6609935760498047,275,0.0,1 +775,0,0.0,1,1.2019972801208496,276,0.0,1 +776,0,0.0,1,1.3589973449707031,277,0.0,1 +777,0,1.0,1,1.8209915161132812,278,0.0,1 +778,0,0.0,1,2.0299887657165527,279,1.0,1 +779,0,0.0,1,1.579994559288025,280,0.0,1 +780,0,0.0,1,1.5119954347610474,281,1.0,1 +781,0,0.0,1,1.7329926490783691,282,0.0,1 +782,0,0.0,1,1.2979974746704102,283,0.0,1 +783,0,0.0,1,1.4829957485198975,284,1.0,1 +784,0,0.0,1,1.2869974374771118,285,0.0,1 +785,0,1.0,1,1.50199556350708,286,1.0,1 +786,0,1.0,1,1.5119954347610474,287,0.0,1 +787,0,0.0,1,1.2029972076416016,288,0.0,1 +788,0,1.0,1,1.579994559288025,289,1.0,1 +789,0,1.0,1,1.4179966449737549,290,1.0,1 +790,0,0.0,1,1.8419911861419678,291,0.0,1 +791,0,0.0,1,1.30399751663208,292,1.0,1 +792,0,0.0,1,1.6149940490722656,293,0.0,1 +793,0,1.0,1,1.7109928131103516,294,1.0,1 +794,0,1.0,1,1.5959943532943726,295,1.0,1 +795,0,1.0,1,1.4339964389801025,296,1.0,1 +796,0,0.0,1,1.5209952592849731,297,0.0,1 +797,0,1.0,1,1.6729934215545654,298,1.0,1 +798,0,1.0,1,1.6649935245513916,299,1.0,1 +799,0,0.0,1,1.5129953622817993,300,0.0,1 +800,0,0.0,1,1.2549973726272583,301,0.0,1 +801,0,1.0,1,1.4049967527389526,302,1.0,1 +802,0,1.0,1,1.7619922161102295,303,0.0,1 +803,0,1.0,1,1.9929893016815186,304,0.0,1 +804,0,1.0,1,1.8979904651641846,305,0.0,1 +805,0,0.0,1,2.1699914932250977,306,0.0,1 +806,0,1.0,1,1.432996392250061,307,1.0,1 +807,0,1.0,1,1.6289939880371094,308,1.0,1 +808,0,1.0,1,1.3819971084594727,309,1.0,1 +809,0,1.0,1,1.432996392250061,310,1.0,1 +810,0,1.0,1,1.638993740081787,311,1.0,1 +811,0,1.0,1,1.4239965677261353,312,1.0,1 +812,0,1.0,1,1.3069974184036255,313,1.0,1 +813,0,1.0,1,1.4959956407546997,314,0.0,1 +814,0,0.0,1,1.274997353553772,315,0.0,1 +815,0,1.0,1,1.5409950017929077,316,1.0,1 +816,0,1.0,1,1.310997486114502,317,1.0,1 +817,0,1.0,1,1.3319975137710571,318,0.0,1 +818,0,1.0,1,1.7729921340942383,319,1.0,1 +819,0,1.0,1,1.410996675491333,320,0.0,1 +820,0,0.0,1,1.4669959545135498,321,0.0,1 +821,0,1.0,1,1.5869944095611572,322,1.0,1 +822,0,1.0,1,1.3199975490570068,323,0.0,1 +823,0,1.0,1,1.4779958724975586,324,1.0,1 +824,0,1.0,1,1.3989968299865723,325,1.0,1 +825,0,1.0,1,1.593994379043579,326,1.0,1 +826,0,1.0,1,1.5049954652786255,327,1.0,1 +827,0,0.0,1,1.30399751663208,328,1.0,1 +828,0,1.0,1,1.4239965677261353,329,1.0,1 +829,0,1.0,1,1.3989968299865723,330,1.0,1 +830,0,1.0,1,1.5449949502944946,331,0.0,1 +831,0,0.0,1,1.461996078491211,332,0.0,1 +832,0,0.0,1,1.6859931945800781,333,1.0,1 +833,0,0.0,1,1.4439963102340698,334,0.0,1 +834,0,1.0,1,1.5629947185516357,335,0.0,1 +835,0,1.0,1,1.598994255065918,336,1.0,1 +836,0,1.0,1,1.5349950790405273,337,1.0,1 +837,0,1.0,1,1.598994255065918,338,1.0,1 +838,0,1.0,1,2.1169888973236084,339,1.0,1 +839,0,1.0,1,1.5619947910308838,340,1.0,1 +840,0,1.0,1,2.0959877967834473,341,0.0,1 +841,0,0.0,1,1.881990671157837,342,0.0,1 +842,0,1.0,1,2.231994152069092,343,1.0,1 +843,0,1.0,1,1.7219927310943604,344,1.0,1 +844,0,1.0,1,1.5299952030181885,345,1.0,1 +845,0,1.0,1,1.5819945335388184,346,1.0,1 +846,0,1.0,1,2.3419995307922363,347,1.0,1 +847,0,0.0,1,1.26799738407135,348,0.0,1 +848,0,1.0,1,2.1529905796051025,349,1.0,1 +849,0,1.0,1,1.2839974164962769,350,1.0,1 +850,0,1.0,1,2.01098895072937,351,1.0,1 +851,0,1.0,1,1.3729971647262573,352,1.0,1 +852,0,1.0,1,1.4739959239959717,353,1.0,1 +853,0,1.0,1,1.8489911556243896,354,0.0,1 +854,0,0.0,1,1.3939969539642334,355,0.0,1 +855,0,1.0,1,1.7729921340942383,356,1.0,1 +856,0,1.0,1,1.9119902849197388,357,0.0,1 +857,0,1.0,1,2.054988384246826,358,1.0,1 +858,0,1.0,1,1.304997444152832,359,1.0,1 +859,0,1.0,1,1.5009955167770386,360,1.0,1 +860,0,0.0,1,1.3489974737167358,361,0.0,1 +861,0,1.0,1,1.7799919843673706,362,1.0,1 +862,0,1.0,1,1.2879974842071533,363,1.0,1 +863,0,1.0,1,1.55399489402771,364,1.0,1 +864,0,1.0,1,1.3939969539642334,365,1.0,1 +865,0,1.0,1,1.4079967737197876,366,1.0,1 +866,0,0.0,1,1.4189965724945068,367,0.0,1 +867,0,1.0,1,1.671993374824524,368,1.0,1 +868,0,1.0,1,1.4899957180023193,369,1.0,1 +869,0,1.0,1,1.9169902801513672,370,0.0,1 +870,0,0.0,1,1.246997356414795,371,0.0,1 +871,0,1.0,1,1.8239914178848267,372,1.0,1 +872,0,1.0,1,1.3549973964691162,373,0.0,1 +873,0,0.0,1,1.8099915981292725,374,0.0,1 +874,0,0.0,1,1.3739972114562988,375,0.0,1 +875,0,1.0,1,1.4199966192245483,376,1.0,1 +876,0,1.0,1,1.3979969024658203,377,1.0,1 +877,0,1.0,1,1.3509974479675293,378,1.0,1 +878,0,1.0,1,1.7089929580688477,379,1.0,1 +879,0,1.0,1,1.6179940700531006,380,0.0,1 +880,0,0.0,1,1.179997205734253,381,1.0,1 +881,0,0.0,1,1.4309964179992676,382,0.0,1 +882,0,1.0,1,1.5259952545166016,383,0.0,1 +883,0,1.0,1,1.9469897747039795,384,1.0,1 +884,0,0.0,1,1.572994589805603,385,0.0,1 +885,0,1.0,1,1.3429975509643555,386,1.0,1 +886,0,1.0,1,1.4009968042373657,387,0.0,1 +887,0,0.0,1,1.554994821548462,388,0.0,1 +888,0,1.0,1,1.3829970359802246,389,0.0,1 +889,0,0.0,1,1.920990228652954,390,0.0,1 +890,0,0.0,1,1.571994662284851,391,0.0,1 +891,0,0.0,1,1.298997402191162,392,0.0,1 +892,0,1.0,1,1.7479923963546753,393,1.0,1 +893,0,1.0,1,2.1329896450042725,394,1.0,1 +894,0,1.0,1,1.7269926071166992,395,0.0,1 +895,0,0.0,1,2.0789880752563477,396,0.0,1 +896,0,1.0,1,1.788991928100586,397,1.0,1 +897,0,0.0,1,1.788991928100586,398,0.0,1 +898,0,1.0,1,1.4299964904785156,399,1.0,1 +899,0,1.0,1,2.1359896659851074,400,0.0,1 +900,0,0.0,1,1.175997257232666,401,0.0,1 +901,0,1.0,1,1.366997241973877,402,0.0,1 +902,0,0.0,1,1.4789958000183105,403,0.0,1 +903,0,1.0,1,1.8619909286499023,404,1.0,1 +904,0,1.0,1,1.6409938335418701,405,0.0,1 +905,0,1.0,1,1.4339964389801025,406,1.0,1 +906,0,1.0,1,1.4279965162277222,407,1.0,1 +907,0,1.0,1,1.6959930658340454,408,1.0,1 +908,0,1.0,1,1.2359973192214966,409,1.0,1 +909,0,1.0,1,2.0979881286621094,410,1.0,1 +910,0,1.0,1,1.6339938640594482,411,1.0,1 +911,0,1.0,1,1.3979969024658203,412,1.0,1 +912,0,1.0,1,2.027988910675049,413,1.0,1 +913,0,1.0,1,1.3129974603652954,414,0.0,1 +914,0,0.0,1,1.3129974603652954,415,0.0,1 +915,0,0.0,1,1.313997507095337,416,0.0,1 +916,0,0.0,1,2.1339898109436035,417,0.0,1 +917,0,0.0,1,1.384997010231018,418,0.0,1 +918,0,1.0,1,1.5109953880310059,419,1.0,1 +919,0,1.0,1,1.4819958209991455,420,1.0,1 +920,0,1.0,1,1.4529961347579956,421,0.0,1 +921,0,1.0,1,1.7059929370880127,422,0.0,1 +922,0,0.0,1,1.6659934520721436,423,0.0,1 +923,0,0.0,1,1.6119941473007202,424,0.0,1 +924,0,0.0,1,1.4349963665008545,425,0.0,1 +925,0,1.0,1,1.3359975814819336,426,0.0,1 +926,0,0.0,1,1.9939892292022705,427,0.0,1 +927,0,1.0,1,2.027988910675049,428,0.0,1 +928,0,0.0,1,1.1929972171783447,429,0.0,1 +929,0,1.0,1,1.6259939670562744,430,1.0,1 +930,0,1.0,1,1.7749919891357422,431,0.0,1 +931,0,0.0,1,1.2119972705841064,432,0.0,1 +932,0,0.0,1,1.2149972915649414,433,1.0,1 +933,0,0.0,1,1.8859906196594238,434,1.0,1 +934,0,0.0,1,1.9419898986816406,435,1.0,1 +935,0,0.0,1,1.3509974479675293,436,0.0,1 +936,0,0.0,1,1.3839970827102661,437,0.0,1 +937,0,0.0,1,1.3099974393844604,438,0.0,1 +938,0,0.0,1,1.8319913148880005,439,0.0,1 +939,0,0.0,1,1.5269951820373535,440,1.0,1 +940,0,0.0,1,1.874990701675415,441,0.0,1 +941,0,0.0,1,1.4669959545135498,442,0.0,1 +942,0,1.0,1,1.9629895687103271,443,0.0,1 +943,0,0.0,1,1.3229974508285522,444,1.0,1 +944,0,0.0,1,1.5219953060150146,445,1.0,1 +945,0,0.0,1,1.5569947957992554,446,0.0,1 +946,0,1.0,1,1.5669946670532227,447,0.0,1 +947,0,1.0,1,1.601994276046753,448,1.0,1 +948,0,1.0,1,1.9179902076721191,449,1.0,1 +949,0,0.0,1,1.506995439529419,450,0.0,1 +950,0,1.0,1,2.1149888038635254,451,1.0,1 +951,0,1.0,1,1.6699934005737305,452,1.0,1 +952,0,0.0,1,1.8479911088943481,453,0.0,1 +953,0,0.0,1,1.851991057395935,454,0.0,1 +954,0,1.0,1,1.307997465133667,455,0.0,1 +955,0,1.0,1,1.5659947395324707,456,0.0,1 +956,0,1.0,1,2.006989002227783,457,0.0,1 +957,0,1.0,1,1.3329975605010986,458,0.0,1 +958,0,1.0,1,1.39199697971344,459,0.0,1 +959,0,1.0,1,1.239997386932373,460,1.0,1 +960,0,1.0,1,2.0429885387420654,461,0.0,1 +961,0,1.0,1,2.011989116668701,462,1.0,1 +962,0,1.0,1,1.874990701675415,463,1.0,1 +963,0,1.0,1,1.4599961042404175,464,0.0,1 +964,0,1.0,1,1.39199697971344,465,1.0,1 +965,0,1.0,1,1.4999955892562866,466,1.0,1 +966,0,1.0,1,1.7319926023483276,467,0.0,1 +967,0,0.0,1,1.8699908256530762,468,0.0,1 +968,0,1.0,1,1.7249927520751953,469,1.0,1 +969,0,1.0,1,1.4479962587356567,470,0.0,1 +970,0,0.0,1,1.4759958982467651,471,1.0,1 +971,0,1.0,1,2.1559906005859375,472,0.0,1 +972,0,0.0,1,1.7749919891357422,473,0.0,1 +973,0,1.0,1,1.334997534751892,474,1.0,1 +974,0,1.0,1,2.2109932899475098,475,1.0,1 +975,0,1.0,1,1.8169915676116943,476,0.0,1 +976,0,1.0,1,2.025988817214966,477,1.0,1 +977,0,1.0,1,1.3789970874786377,478,1.0,1 +978,0,1.0,1,1.6799932718276978,479,0.0,1 +979,0,0.0,1,1.277997374534607,480,0.0,1 +980,0,1.0,1,1.3799971342086792,481,1.0,1 +981,0,1.0,1,1.476995825767517,482,1.0,1 +982,0,1.0,1,1.3999968767166138,483,1.0,1 +983,0,1.0,1,1.740992546081543,484,1.0,1 +984,0,1.0,1,1.5899944305419922,485,1.0,1 +985,0,1.0,1,1.782991886138916,486,0.0,1 +986,0,1.0,1,1.3989968299865723,487,1.0,1 +987,0,1.0,1,1.6559935808181763,488,0.0,1 +988,0,0.0,1,2.009989023208618,489,0.0,1 +989,0,0.0,1,1.3999968767166138,490,0.0,1 +990,0,1.0,1,1.527995228767395,491,1.0,1 +991,0,1.0,1,1.7249927520751953,492,1.0,1 +992,0,1.0,1,1.2619973421096802,493,0.0,1 +993,0,0.0,1,1.5959943532943726,494,1.0,1 +994,0,0.0,1,2.1849920749664307,495,0.0,1 +995,0,1.0,1,1.7959917783737183,496,0.0,1 +996,0,1.0,1,1.476995825767517,497,0.0,1 +997,0,0.0,1,1.4779958724975586,498,0.0,1 +998,0,0.0,1,1.995989203453064,499,0.0,1 +999,0,0.0,1,1.1549971103668213,500,0.0,1 +1000,0,0.0,2,2.0019891262054443,1,0.0,1 +1001,0,0.0,2,1.505995512008667,2,0.0,1 +1002,0,1.0,2,1.476995825767517,3,0.0,1 +1003,0,0.0,2,1.7739920616149902,4,1.0,1 +1004,0,0.0,2,1.4309964179992676,5,0.0,1 +1005,0,0.0,2,1.6859931945800781,6,0.0,1 +1006,0,1.0,2,1.3729971647262573,7,1.0,1 +1007,0,1.0,2,1.7529923915863037,8,1.0,1 +1008,0,0.0,2,1.277997374534607,9,0.0,1 +1009,0,1.0,2,1.5379951000213623,10,1.0,1 +1010,0,1.0,2,1.344997525215149,11,1.0,1 +1011,0,1.0,2,1.597994327545166,12,1.0,1 +1012,0,0.0,2,1.3359975814819336,13,0.0,1 +1013,0,0.0,2,1.8929905891418457,14,0.0,1 +1014,0,1.0,2,1.571994662284851,15,0.0,1 +1015,0,1.0,2,1.6309938430786133,16,0.0,1 +1016,0,0.0,2,1.413996696472168,17,1.0,1 +1017,0,0.0,2,1.8679908514022827,18,1.0,1 +1018,0,0.0,2,1.7019929885864258,19,1.0,1 +1019,0,0.0,2,1.6649935245513916,20,1.0,1 +1020,0,0.0,2,2.1739916801452637,21,0.0,1 +1021,0,0.0,2,1.9509897232055664,22,1.0,1 +1022,0,0.0,2,1.2219972610473633,23,0.0,1 +1023,0,0.0,2,1.337997555732727,24,0.0,1 +1024,0,0.0,2,1.3729971647262573,25,0.0,1 +1025,0,0.0,2,1.27399742603302,26,0.0,1 +1026,0,0.0,2,1.1779972314834595,27,1.0,1 +1027,0,0.0,2,1.6169941425323486,28,0.0,1 +1028,0,0.0,2,1.337997555732727,29,0.0,1 +1029,0,0.0,2,1.3459975719451904,30,1.0,1 +1030,0,0.0,2,1.6399937868118286,31,0.0,1 +1031,0,1.0,2,1.711992859840393,32,0.0,1 +1032,0,1.0,2,1.8929905891418457,33,0.0,1 +1033,0,0.0,2,1.6959930658340454,34,0.0,1 +1034,0,0.0,2,1.5829944610595703,35,1.0,1 +1035,0,0.0,2,1.6149940490722656,36,1.0,1 +1036,0,0.0,2,1.246997356414795,37,0.0,1 +1037,0,1.0,2,1.7439924478530884,38,0.0,1 +1038,0,0.0,2,1.3339974880218506,39,1.0,1 +1039,0,0.0,2,2.0909879207611084,40,0.0,1 +1040,0,0.0,2,1.7169928550720215,41,1.0,1 +1041,0,0.0,2,1.277997374534607,42,0.0,1 +1042,0,0.0,2,1.7799919843673706,43,1.0,1 +1043,0,0.0,2,1.8239914178848267,44,1.0,1 +1044,0,0.0,2,1.4349963665008545,45,1.0,1 +1045,0,0.0,2,1.3859970569610596,46,1.0,1 +1046,0,0.0,2,1.3099974393844604,47,1.0,1 +1047,0,0.0,2,1.274997353553772,48,0.0,1 +1048,0,0.0,2,1.6659934520721436,49,0.0,1 +1049,0,0.0,2,1.3579974174499512,50,1.0,1 +1050,0,0.0,2,1.2719974517822266,51,1.0,1 +1051,0,0.0,2,1.2239973545074463,52,1.0,1 +1052,0,0.0,2,1.6249940395355225,53,0.0,1 +1053,0,0.0,2,1.3509974479675293,54,0.0,1 +1054,0,0.0,2,1.138997197151184,55,0.0,1 +1055,0,1.0,2,1.719992756843567,56,0.0,1 +1056,0,0.0,2,1.6099941730499268,57,1.0,1 +1057,0,0.0,2,1.55399489402771,58,0.0,1 +1058,0,0.0,2,1.9409899711608887,59,1.0,1 +1059,0,0.0,2,1.4209965467453003,60,0.0,1 +1060,0,1.0,2,1.4219965934753418,61,0.0,1 +1061,0,0.0,2,1.4449962377548218,62,0.0,1 +1062,0,1.0,2,1.8869905471801758,63,1.0,1 +1063,0,1.0,2,1.8149914741516113,64,0.0,1 +1064,0,1.0,2,2.007988929748535,65,1.0,1 +1065,0,1.0,2,1.5519949197769165,66,0.0,1 +1066,0,0.0,2,1.2759974002838135,67,0.0,1 +1067,0,0.0,2,1.4879957437515259,68,1.0,1 +1068,0,0.0,2,1.182997226715088,69,1.0,1 +1069,0,0.0,2,1.2309973239898682,70,0.0,1 +1070,0,0.0,2,1.2229973077774048,71,0.0,1 +1071,0,1.0,2,1.453996181488037,72,0.0,1 +1072,0,0.0,2,1.454996109008789,73,1.0,1 +1073,0,0.0,2,1.406996726989746,74,1.0,1 +1074,0,0.0,2,1.7139928340911865,75,0.0,1 +1075,0,0.0,2,1.3469974994659424,76,0.0,1 +1076,0,0.0,2,1.3209974765777588,77,0.0,1 +1077,0,0.0,2,1.2429972887039185,78,1.0,1 +1078,0,0.0,2,1.7079929113388062,79,1.0,1 +1079,0,0.0,2,1.1789971590042114,80,1.0,1 +1080,0,0.0,2,1.3539974689483643,81,0.0,1 +1081,0,0.0,2,1.2619973421096802,82,1.0,1 +1082,0,0.0,2,1.1979972124099731,83,1.0,1 +1083,0,0.0,2,1.1789971590042114,84,1.0,1 +1084,0,0.0,2,1.8009917736053467,85,0.0,1 +1085,0,0.0,2,1.2189972400665283,86,1.0,1 +1086,0,0.0,2,1.4529961347579956,87,0.0,1 +1087,0,1.0,2,1.7539923191070557,88,1.0,1 +1088,0,1.0,2,1.4379963874816895,89,0.0,1 +1089,0,1.0,2,1.4049967527389526,90,0.0,1 +1090,0,1.0,2,1.3769971132278442,91,1.0,1 +1091,0,1.0,2,1.5349950790405273,92,1.0,1 +1092,0,1.0,2,1.5479949712753296,93,1.0,1 +1093,0,1.0,2,1.57699453830719,94,0.0,1 +1094,0,1.0,2,1.826991319656372,95,1.0,1 +1095,0,1.0,2,2.059988498687744,96,1.0,1 +1096,0,1.0,2,1.6149940490722656,97,1.0,1 +1097,0,1.0,2,1.3559974431991577,98,1.0,1 +1098,0,1.0,2,1.3529974222183228,99,1.0,1 +1099,0,1.0,2,1.71599280834198,100,0.0,1 +1100,0,0.0,2,1.3589973449707031,101,1.0,1 +1101,0,0.0,2,1.1669971942901611,102,1.0,1 +1102,0,0.0,2,2.225994110107422,103,0.0,1 +1103,0,1.0,2,1.9069902896881104,104,1.0,1 +1104,0,1.0,2,1.527995228767395,105,1.0,1 +1105,0,1.0,2,1.9149901866912842,106,1.0,1 +1106,0,1.0,2,1.4409962892532349,107,1.0,1 +1107,0,1.0,2,1.338997483253479,108,0.0,1 +1108,0,0.0,2,1.1839971542358398,109,0.0,1 +1109,0,0.0,2,1.8169915676116943,110,0.0,1 +1110,0,1.0,2,1.7049930095672607,111,0.0,1 +1111,0,1.0,2,2.0969879627227783,112,1.0,1 +1112,0,1.0,2,1.8919905424118042,113,1.0,1 +1113,0,1.0,2,1.8129916191101074,114,1.0,1 +1114,0,1.0,2,1.6119941473007202,115,1.0,1 +1115,0,1.0,2,1.3719972372055054,116,0.0,1 +1116,0,0.0,2,1.57699453830719,117,0.0,1 +1117,0,1.0,2,1.6799932718276978,118,1.0,1 +1118,0,1.0,2,1.5269951820373535,119,0.0,1 +1119,0,0.0,2,2.255995273590088,120,1.0,1 +1120,0,0.0,2,1.2169972658157349,121,0.0,1 +1121,0,0.0,2,1.4859957695007324,122,1.0,1 +1122,0,0.0,2,1.3189975023269653,123,0.0,1 +1123,0,1.0,2,1.3519974946975708,124,0.0,1 +1124,0,0.0,2,1.8599909543991089,125,0.0,1 +1125,0,0.0,2,1.2659974098205566,126,0.0,1 +1126,0,0.0,2,1.5589947700500488,127,1.0,1 +1127,0,1.0,2,1.3519974946975708,128,0.0,1 +1128,0,0.0,2,1.8499910831451416,129,1.0,1 +1129,0,0.0,2,1.3069974184036255,130,1.0,1 +1130,0,0.0,2,1.2049973011016846,131,0.0,1 +1131,0,1.0,2,2.0329887866973877,132,0.0,1 +1132,0,0.0,2,1.3979969024658203,133,1.0,1 +1133,0,0.0,2,1.4529961347579956,134,0.0,1 +1134,0,0.0,2,1.9599896669387817,135,1.0,1 +1135,0,0.0,2,1.2719974517822266,136,1.0,1 +1136,0,0.0,2,1.4269964694976807,137,1.0,1 +1137,0,0.0,2,1.8699908256530762,138,0.0,1 +1138,0,0.0,2,1.509995460510254,139,1.0,1 +1139,0,0.0,2,1.5389950275421143,140,0.0,1 +1140,0,0.0,2,1.575994610786438,141,0.0,1 +1141,0,1.0,2,1.6759933233261108,142,0.0,1 +1142,0,0.0,2,1.23799729347229,143,0.0,1 +1143,0,1.0,2,1.4429962635040283,144,1.0,1 +1144,0,1.0,2,1.2119972705841064,145,1.0,1 +1145,0,1.0,2,1.3679972887039185,146,1.0,1 +1146,0,0.0,2,1.921990156173706,147,0.0,1 +1147,0,1.0,2,1.2759974002838135,148,0.0,1 +1148,0,1.0,2,1.3839970827102661,149,1.0,1 +1149,0,1.0,2,1.2229973077774048,150,1.0,1 +1150,0,1.0,2,2.0319886207580566,151,0.0,1 +1151,0,1.0,2,1.6439937353134155,152,0.0,1 +1152,0,0.0,2,1.6229939460754395,153,0.0,1 +1153,0,0.0,2,1.8459911346435547,154,0.0,1 +1154,0,1.0,2,1.5129953622817993,155,1.0,1 +1155,0,1.0,2,1.6149940490722656,156,0.0,1 +1156,0,1.0,2,1.5689946413040161,157,1.0,1 +1157,0,0.0,2,1.7309925556182861,158,1.0,1 +1158,0,0.0,2,1.1589971780776978,159,1.0,1 +1159,0,0.0,2,1.2909973859786987,160,1.0,1 +1160,0,1.0,2,1.3939969539642334,161,1.0,1 +1161,0,0.0,2,1.7039929628372192,162,0.0,1 +1162,0,1.0,2,1.5659947395324707,163,0.0,1 +1163,0,1.0,2,1.924990177154541,164,0.0,1 +1164,0,1.0,2,1.413996696472168,165,1.0,1 +1165,0,1.0,2,1.9819893836975098,166,1.0,1 +1166,0,1.0,2,1.2959973812103271,167,0.0,1 +1167,0,0.0,2,1.9429898262023926,168,0.0,1 +1168,0,0.0,2,1.8459911346435547,169,1.0,1 +1169,0,1.0,2,1.509995460510254,170,0.0,1 +1170,0,0.0,2,1.5479949712753296,171,1.0,1 +1171,0,1.0,2,2.0419886112213135,172,0.0,1 +1172,0,0.0,2,1.7149927616119385,173,0.0,1 +1173,0,0.0,2,1.4219965934753418,174,1.0,1 +1174,0,0.0,2,1.4179966449737549,175,0.0,1 +1175,0,0.0,2,1.9299900531768799,176,0.0,1 +1176,0,1.0,2,2.3519997596740723,177,1.0,1 +1177,0,1.0,2,1.5869944095611572,178,1.0,1 +1178,0,1.0,2,1.4309964179992676,179,1.0,1 +1179,0,1.0,2,1.2759974002838135,180,1.0,1 +1180,0,1.0,2,1.1949971914291382,181,1.0,1 +1181,0,1.0,2,1.2819974422454834,182,1.0,1 +1182,0,1.0,2,1.5389950275421143,183,0.0,1 +1183,0,1.0,2,2.025988817214966,184,0.0,1 +1184,0,0.0,2,1.2429972887039185,185,1.0,1 +1185,0,0.0,2,1.361997365951538,186,0.0,1 +1186,0,1.0,2,1.5679947137832642,187,1.0,1 +1187,0,1.0,2,1.3319975137710571,188,0.0,1 +1188,0,1.0,2,1.4669959545135498,189,0.0,1 +1189,0,0.0,2,1.3029974699020386,190,0.0,1 +1190,0,0.0,2,1.3189975023269653,191,0.0,1 +1191,0,0.0,2,1.2549973726272583,192,1.0,1 +1192,0,0.0,2,1.9889893531799316,193,0.0,1 +1193,0,0.0,2,1.8179914951324463,194,1.0,1 +1194,0,0.0,2,1.1959972381591797,195,1.0,1 +1195,0,0.0,2,1.170997142791748,196,1.0,1 +1196,0,0.0,2,1.2559974193572998,197,0.0,1 +1197,0,0.0,2,1.7229926586151123,198,0.0,1 +1198,0,1.0,2,1.5189952850341797,199,1.0,1 +1199,0,1.0,2,1.3059974908828735,200,1.0,1 +1200,0,1.0,2,1.392996907234192,201,0.0,1 +1201,0,1.0,2,1.6559935808181763,202,1.0,1 +1202,0,1.0,2,1.8409912586212158,203,0.0,1 +1203,0,0.0,2,1.2589973211288452,204,0.0,1 +1204,0,0.0,2,1.2859973907470703,205,1.0,1 +1205,0,0.0,2,1.5709946155548096,206,0.0,1 +1206,0,0.0,2,1.623993992805481,207,1.0,1 +1207,0,0.0,2,1.2239973545074463,208,0.0,1 +1208,0,0.0,2,1.645993709564209,209,0.0,1 +1209,0,0.0,2,1.4609960317611694,210,0.0,1 +1210,0,0.0,2,1.9819893836975098,211,1.0,1 +1211,0,0.0,2,1.3789970874786377,212,1.0,1 +1212,0,0.0,2,1.4599961042404175,213,0.0,1 +1213,0,0.0,2,1.3169975280761719,214,1.0,1 +1214,0,0.0,2,1.502995491027832,215,1.0,1 +1215,0,0.0,2,1.6339938640594482,216,1.0,1 +1216,0,0.0,2,1.2839974164962769,217,1.0,1 +1217,0,0.0,2,1.276997447013855,218,0.0,1 +1218,0,1.0,2,1.4019968509674072,219,0.0,1 +1219,0,1.0,2,1.7979917526245117,220,1.0,1 +1220,0,1.0,2,1.6729934215545654,221,1.0,1 +1221,0,1.0,2,2.1379899978637695,222,0.0,1 +1222,0,0.0,2,1.24399733543396,223,0.0,1 +1223,0,0.0,2,1.9539897441864014,224,1.0,1 +1224,0,0.0,2,1.2299972772598267,225,0.0,1 +1225,0,1.0,2,1.6279939413070679,226,1.0,1 +1226,0,1.0,2,1.832991361618042,227,1.0,1 +1227,0,1.0,2,1.3249975442886353,228,0.0,1 +1228,0,0.0,2,1.8969905376434326,229,0.0,1 +1229,0,1.0,2,1.6559935808181763,230,0.0,1 +1230,0,1.0,2,1.8979904651641846,231,1.0,1 +1231,0,0.0,2,1.6159940958023071,232,1.0,1 +1232,0,0.0,2,1.7579922676086426,233,0.0,1 +1233,0,1.0,2,1.5129953622817993,234,0.0,1 +1234,0,1.0,2,1.4119967222213745,235,1.0,1 +1235,0,1.0,2,1.4819958209991455,236,1.0,1 +1236,0,1.0,2,1.7189927101135254,237,0.0,1 +1237,0,1.0,2,1.972989559173584,238,0.0,1 +1238,0,0.0,2,1.2689974308013916,239,0.0,1 +1239,0,0.0,2,1.2829973697662354,240,0.0,1 +1240,0,0.0,2,1.7979917526245117,241,1.0,1 +1241,0,0.0,2,1.3229974508285522,242,1.0,1 +1242,0,1.0,2,1.369997262954712,243,1.0,1 +1243,0,0.0,2,1.8189914226531982,244,0.0,1 +1244,0,1.0,2,1.4239965677261353,245,0.0,1 +1245,0,0.0,2,1.6069941520690918,246,1.0,1 +1246,0,0.0,2,1.9579896926879883,247,0.0,1 +1247,0,1.0,2,1.310997486114502,248,0.0,1 +1248,0,0.0,2,1.8139915466308594,249,1.0,1 +1249,0,0.0,2,1.209997296333313,250,0.0,1 +1250,0,1.0,2,1.6069941520690918,251,1.0,1 +1251,0,1.0,2,1.8049917221069336,252,1.0,1 +1252,0,1.0,2,1.575994610786438,253,1.0,1 +1253,0,0.0,2,1.2599973678588867,254,1.0,1 +1254,0,1.0,2,1.9639896154403687,255,0.0,1 +1255,0,0.0,2,1.4079967737197876,256,1.0,1 +1256,0,0.0,2,1.2229973077774048,257,0.0,1 +1257,0,0.0,2,1.546994924545288,258,1.0,1 +1258,0,0.0,2,1.2639973163604736,259,1.0,1 +1259,0,0.0,2,1.2509973049163818,260,0.0,1 +1260,0,1.0,2,1.9629895687103271,261,0.0,1 +1261,0,1.0,2,1.4349963665008545,262,1.0,1 +1262,0,1.0,2,1.5589947700500488,263,1.0,1 +1263,0,1.0,2,1.2969974279403687,264,1.0,1 +1264,0,1.0,2,1.410996675491333,265,1.0,1 +1265,0,1.0,2,1.7979917526245117,266,1.0,1 +1266,0,1.0,2,1.5129953622817993,267,1.0,1 +1267,0,1.0,2,1.6959930658340454,268,1.0,1 +1268,0,1.0,2,2.060988426208496,269,0.0,1 +1269,0,0.0,2,1.3179974555969238,270,1.0,1 +1270,0,0.0,2,1.276997447013855,271,0.0,1 +1271,0,1.0,2,1.6739933490753174,272,1.0,1 +1272,0,1.0,2,1.480995774269104,273,0.0,1 +1273,0,0.0,2,1.6549935340881348,274,0.0,1 +1274,0,1.0,2,1.9169902801513672,275,1.0,1 +1275,0,1.0,2,1.4059967994689941,276,0.0,1 +1276,0,1.0,2,1.8549909591674805,277,0.0,1 +1277,0,0.0,2,1.8199914693832397,278,0.0,1 +1278,0,0.0,2,1.3169975280761719,279,1.0,1 +1279,0,0.0,2,1.4409962892532349,280,0.0,1 +1280,0,1.0,2,1.9049904346466064,281,0.0,1 +1281,0,0.0,2,1.4459962844848633,282,0.0,1 +1282,0,0.0,2,1.2559974193572998,283,0.0,1 +1283,0,0.0,2,1.4299964904785156,284,1.0,1 +1284,0,1.0,2,1.7529923915863037,285,0.0,1 +1285,0,0.0,2,1.1469972133636475,286,0.0,1 +1286,0,0.0,2,1.4689959287643433,287,1.0,1 +1287,0,0.0,2,1.6209940910339355,288,1.0,1 +1288,0,0.0,2,1.2969974279403687,289,0.0,1 +1289,0,0.0,2,1.2909973859786987,290,0.0,1 +1290,0,1.0,2,1.5919944047927856,291,1.0,1 +1291,0,1.0,2,1.688993215560913,292,0.0,1 +1292,0,0.0,2,1.432996392250061,293,1.0,1 +1293,0,1.0,2,1.4679960012435913,294,0.0,1 +1294,0,0.0,2,1.3429975509643555,295,0.0,1 +1295,0,0.0,2,1.878990650177002,296,1.0,1 +1296,0,0.0,2,1.3129974603652954,297,1.0,1 +1297,0,0.0,2,2.28399658203125,298,0.0,1 +1298,0,0.0,2,1.5429949760437012,299,0.0,1 +1299,0,0.0,2,1.8199914693832397,300,0.0,1 +1300,0,0.0,2,1.5139954090118408,301,0.0,1 +1301,0,0.0,2,1.4919956922531128,302,1.0,1 +1302,0,0.0,2,1.3599973917007446,303,0.0,1 +1303,0,1.0,2,1.9969892501831055,304,1.0,1 +1304,0,1.0,2,1.7629921436309814,305,1.0,1 +1305,0,1.0,2,1.8799906969070435,306,0.0,1 +1306,0,1.0,2,1.4409962892532349,307,0.0,1 +1307,0,0.0,2,1.8319913148880005,308,1.0,1 +1308,0,0.0,2,1.3299975395202637,309,0.0,1 +1309,0,1.0,2,1.6779932975769043,310,1.0,1 +1310,0,0.0,2,1.7839919328689575,311,0.0,1 +1311,0,1.0,2,1.9599896669387817,312,0.0,1 +1312,0,1.0,2,1.7629921436309814,313,0.0,1 +1313,0,0.0,2,1.604994297027588,314,1.0,1 +1314,0,0.0,2,1.3459975719451904,315,1.0,1 +1315,0,0.0,2,1.4879957437515259,316,0.0,1 +1316,0,0.0,2,1.688993215560913,317,0.0,1 +1317,0,1.0,2,1.8729908466339111,318,1.0,1 +1318,0,0.0,2,1.3529974222183228,319,0.0,1 +1319,0,1.0,2,1.384997010231018,320,0.0,1 +1320,0,1.0,2,1.7239927053451538,321,1.0,1 +1321,0,0.0,2,1.832991361618042,322,1.0,1 +1322,0,1.0,2,1.1929972171783447,323,1.0,1 +1323,0,1.0,2,1.5379951000213623,324,1.0,1 +1324,0,0.0,2,1.6669933795928955,325,0.0,1 +1325,0,1.0,2,1.7619922161102295,326,1.0,1 +1326,0,1.0,2,1.3909969329833984,327,1.0,1 +1327,0,1.0,2,1.457996129989624,328,1.0,1 +1328,0,0.0,2,1.5219953060150146,329,0.0,1 +1329,0,1.0,2,1.2539973258972168,330,0.0,1 +1330,0,1.0,2,1.5159953832626343,331,1.0,1 +1331,0,1.0,2,1.2619973421096802,332,1.0,1 +1332,0,1.0,2,1.2329972982406616,333,0.0,1 +1333,0,0.0,2,1.2419973611831665,334,1.0,1 +1334,0,0.0,2,1.3909969329833984,335,0.0,1 +1335,0,0.0,2,2.028988838195801,336,0.0,1 +1336,0,1.0,2,1.3009974956512451,337,1.0,1 +1337,0,1.0,2,1.3719972372055054,338,0.0,1 +1338,0,1.0,2,1.7399924993515015,339,1.0,1 +1339,0,1.0,2,1.851991057395935,340,0.0,1 +1340,0,1.0,2,1.239997386932373,341,0.0,1 +1341,0,0.0,2,1.6589934825897217,342,0.0,1 +1342,0,1.0,2,1.413996696472168,343,1.0,1 +1343,0,1.0,2,1.7739920616149902,344,0.0,1 +1344,0,1.0,2,2.0019891262054443,345,0.0,1 +1345,0,0.0,2,1.7089929580688477,346,1.0,1 +1346,0,0.0,2,1.3459975719451904,347,1.0,1 +1347,0,0.0,2,1.340997576713562,348,1.0,1 +1348,0,0.0,2,1.9369900226593018,349,0.0,1 +1349,0,0.0,2,1.57699453830719,350,0.0,1 +1350,0,0.0,2,2.028988838195801,351,1.0,1 +1351,0,1.0,2,1.9589896202087402,352,1.0,1 +1352,0,0.0,2,1.6989929676055908,353,1.0,1 +1353,0,0.0,2,1.304997444152832,354,0.0,1 +1354,0,1.0,2,1.969989538192749,355,0.0,1 +1355,0,0.0,2,1.4049967527389526,356,0.0,1 +1356,0,1.0,2,1.9319900274276733,357,0.0,1 +1357,0,0.0,2,1.310997486114502,358,0.0,1 +1358,0,0.0,2,1.6359938383102417,359,0.0,1 +1359,0,0.0,2,1.277997374534607,360,1.0,1 +1360,0,0.0,2,1.3759971857070923,361,0.0,1 +1361,0,0.0,2,1.7909917831420898,362,0.0,1 +1362,0,0.0,2,1.3329975605010986,363,1.0,1 +1363,0,0.0,2,1.431996464729309,364,0.0,1 +1364,0,1.0,2,1.2929974794387817,365,0.0,1 +1365,0,0.0,2,1.4959956407546997,366,1.0,1 +1366,0,0.0,2,1.2969974279403687,367,0.0,1 +1367,0,0.0,2,1.7589921951293945,368,1.0,1 +1368,0,0.0,2,1.71599280834198,369,1.0,1 +1369,0,0.0,2,1.6399937868118286,370,0.0,1 +1370,0,0.0,2,1.7759920358657837,371,0.0,1 +1371,0,1.0,2,1.903990387916565,372,0.0,1 +1372,0,0.0,2,1.6359938383102417,373,0.0,1 +1373,0,1.0,2,1.3799971342086792,374,0.0,1 +1374,0,0.0,2,1.2599973678588867,375,1.0,1 +1375,0,0.0,2,1.4779958724975586,376,1.0,1 +1376,0,0.0,2,1.3009974956512451,377,0.0,1 +1377,0,1.0,2,1.4019968509674072,378,1.0,1 +1378,0,1.0,2,1.2689974308013916,379,1.0,1 +1379,0,1.0,2,1.2939974069595337,380,1.0,1 +1380,0,1.0,2,1.4049967527389526,381,1.0,1 +1381,0,1.0,2,1.2579973936080933,382,0.0,1 +1382,0,0.0,2,2.225994110107422,383,0.0,1 +1383,0,0.0,2,1.432996392250061,384,0.0,1 +1384,0,0.0,2,2.239994525909424,385,0.0,1 +1385,0,1.0,2,2.0529885292053223,386,0.0,1 +1386,0,0.0,2,1.5639947652816772,387,1.0,1 +1387,0,0.0,2,1.3779971599578857,388,1.0,1 +1388,0,0.0,2,1.4219965934753418,389,1.0,1 +1389,0,0.0,2,1.2549973726272583,390,1.0,1 +1390,0,0.0,2,1.3099974393844604,391,0.0,1 +1391,0,1.0,2,1.7009930610656738,392,0.0,1 +1392,0,1.0,2,1.4429962635040283,393,1.0,1 +1393,0,1.0,2,1.2159972190856934,394,1.0,1 +1394,0,1.0,2,1.594994306564331,395,1.0,1 +1395,0,0.0,2,2.312998056411743,396,1.0,1 +1396,0,0.0,2,1.4669959545135498,397,0.0,1 +1397,0,1.0,2,2.0369887351989746,398,1.0,1 +1398,0,1.0,2,1.785991907119751,399,0.0,1 +1399,0,1.0,2,1.8239914178848267,400,0.0,1 +1400,0,1.0,2,2.013988971710205,401,0.0,1 +1401,0,0.0,2,1.457996129989624,402,0.0,1 +1402,0,0.0,2,1.5009955167770386,403,1.0,1 +1403,0,0.0,2,1.1859972476959229,404,1.0,1 +1404,0,0.0,2,1.5259952545166016,405,1.0,1 +1405,0,0.0,2,1.2839974164962769,406,1.0,1 +1406,0,0.0,2,1.5359951257705688,407,0.0,1 +1407,0,0.0,2,1.4519962072372437,408,0.0,1 +1408,0,0.0,2,1.4919956922531128,409,1.0,1 +1409,0,0.0,2,1.3589973449707031,410,0.0,1 +1410,0,0.0,2,1.23799729347229,411,1.0,1 +1411,0,0.0,2,1.3689972162246704,412,0.0,1 +1412,0,0.0,2,1.6209940910339355,413,1.0,1 +1413,0,0.0,2,1.3319975137710571,414,0.0,1 +1414,0,1.0,2,1.785991907119751,415,1.0,1 +1415,0,1.0,2,1.763992190361023,416,0.0,1 +1416,0,0.0,2,1.5079954862594604,417,0.0,1 +1417,0,0.0,2,1.9999891519546509,418,0.0,1 +1418,0,0.0,2,1.4119967222213745,419,0.0,1 +1419,0,1.0,2,2.1509904861450195,420,1.0,1 +1420,0,1.0,2,1.554994821548462,421,0.0,1 +1421,0,0.0,2,1.4469962120056152,422,1.0,1 +1422,0,1.0,2,1.9409899711608887,423,1.0,1 +1423,0,0.0,2,1.9859893321990967,424,1.0,1 +1424,0,1.0,2,2.291996955871582,425,0.0,1 +1425,0,0.0,2,1.4479962587356567,426,1.0,1 +1426,0,0.0,2,1.453996181488037,427,1.0,1 +1427,0,0.0,2,1.384997010231018,428,0.0,1 +1428,0,1.0,2,1.5139954090118408,429,1.0,1 +1429,0,1.0,2,1.431996464729309,430,1.0,1 +1430,0,1.0,2,1.3719972372055054,431,1.0,1 +1431,0,0.0,2,1.3369975090026855,432,0.0,1 +1432,0,1.0,2,1.5739946365356445,433,1.0,1 +1433,0,1.0,2,1.3999968767166138,434,0.0,1 +1434,0,0.0,2,1.505995512008667,435,1.0,1 +1435,0,0.0,2,1.5389950275421143,436,1.0,1 +1436,0,0.0,2,1.4449962377548218,437,0.0,1 +1437,0,0.0,2,1.1619971990585327,438,0.0,1 +1438,0,0.0,2,1.4159966707229614,439,1.0,1 +1439,0,1.0,2,2.6260128021240234,440,1.0,1 +1440,0,0.0,2,1.458996057510376,441,1.0,1 +1441,0,1.0,2,1.9159902334213257,442,0.0,1 +1442,0,0.0,2,1.3329975605010986,443,1.0,1 +1443,0,0.0,2,1.3519974946975708,444,1.0,1 +1444,0,0.0,2,1.2169972658157349,445,0.0,1 +1445,0,1.0,2,2.251995086669922,446,0.0,1 +1446,0,0.0,2,1.642993688583374,447,0.0,1 +1447,0,1.0,2,1.4659960269927979,448,0.0,1 +1448,0,0.0,2,1.7629921436309814,449,0.0,1 +1449,0,1.0,2,1.8069915771484375,450,1.0,1 +1450,0,1.0,2,1.4789958000183105,451,0.0,1 +1451,0,0.0,2,1.2719974517822266,452,1.0,1 +1452,0,1.0,2,1.4119967222213745,453,0.0,1 +1453,0,0.0,2,1.270997405052185,454,1.0,1 +1454,0,0.0,2,1.8949904441833496,455,0.0,1 +1455,0,0.0,2,2.4170029163360596,456,1.0,1 +1456,0,0.0,2,1.3469974994659424,457,1.0,1 +1457,0,0.0,2,1.7749919891357422,458,1.0,1 +1458,0,0.0,2,2.326998710632324,459,1.0,1 +1459,0,0.0,2,1.387997031211853,460,1.0,1 +1460,0,0.0,2,1.4869956970214844,461,0.0,1 +1461,0,0.0,2,1.811991572380066,462,0.0,1 +1462,0,0.0,2,1.4759958982467651,463,0.0,1 +1463,0,0.0,2,1.3899970054626465,464,0.0,1 +1464,0,1.0,2,2.0949878692626953,465,1.0,1 +1465,0,1.0,2,2.1569907665252686,466,0.0,1 +1466,0,1.0,2,1.41499662399292,467,1.0,1 +1467,0,1.0,2,1.7529923915863037,468,0.0,1 +1468,0,0.0,2,1.3479975461959839,469,1.0,1 +1469,0,0.0,2,1.2729973793029785,470,0.0,1 +1470,0,0.0,2,1.276997447013855,471,1.0,1 +1471,0,0.0,2,1.1899971961975098,472,1.0,1 +1472,0,0.0,2,1.388996958732605,473,0.0,1 +1473,0,1.0,2,1.4429962635040283,474,1.0,1 +1474,0,1.0,2,1.3779971599578857,475,1.0,1 +1475,0,0.0,2,1.3719972372055054,476,1.0,1 +1476,0,1.0,2,1.2719974517822266,477,0.0,1 +1477,0,0.0,2,2.0439887046813965,478,1.0,1 +1478,0,0.0,2,1.2639973163604736,479,0.0,1 +1479,0,1.0,2,1.4039968252182007,480,0.0,1 +1480,0,1.0,2,1.995989203453064,481,0.0,1 +1481,0,0.0,2,1.5199953317642212,482,1.0,1 +1482,0,1.0,2,1.9309899806976318,483,1.0,1 +1483,0,0.0,2,1.7039929628372192,484,0.0,1 +1484,0,1.0,2,1.5389950275421143,485,1.0,1 +1485,0,1.0,2,1.5919944047927856,486,1.0,1 +1486,0,1.0,2,1.6249940395355225,487,1.0,1 +1487,0,1.0,2,1.5489948987960815,488,0.0,1 +1488,0,1.0,2,1.619994044303894,489,0.0,1 +1489,0,0.0,2,1.2389973402023315,490,1.0,1 +1490,0,0.0,2,2.1079883575439453,491,0.0,1 +1491,0,0.0,2,1.648993730545044,492,1.0,1 +1492,0,0.0,2,1.361997365951538,493,0.0,1 +1493,0,0.0,2,1.6759933233261108,494,1.0,1 +1494,0,0.0,2,1.1949971914291382,495,1.0,1 +1495,0,0.0,2,1.5179953575134277,496,1.0,1 +1496,0,0.0,2,1.5149953365325928,497,0.0,1 +1497,0,1.0,2,1.5129953622817993,498,1.0,1 +1498,0,1.0,2,1.334997534751892,499,1.0,1 +1499,0,1.0,2,1.645993709564209,500,1.0,1 +1500,1,0.0,0,1.8982343673706055,1,0.0,1 +1501,1,1.0,0,1.340241551399231,2,1.0,1 +1502,1,1.0,0,1.433240294456482,3,0.0,1 +1503,1,1.0,0,1.4392402172088623,4,1.0,1 +1504,1,1.0,0,1.1402413845062256,5,1.0,1 +1505,1,1.0,0,1.2712416648864746,6,1.0,1 +1506,1,0.0,0,1.1672414541244507,7,0.0,1 +1507,1,1.0,0,1.8112354278564453,8,0.0,1 +1508,1,0.0,0,1.2742416858673096,9,0.0,1 +1509,1,1.0,0,1.4882396459579468,10,1.0,1 +1510,1,1.0,0,1.4682399034500122,11,1.0,1 +1511,1,1.0,0,1.502239465713501,12,1.0,1 +1512,1,1.0,0,1.642237663269043,13,0.0,1 +1513,1,0.0,0,2.113234281539917,14,0.0,1 +1514,1,1.0,0,1.4432401657104492,15,1.0,1 +1515,1,1.0,0,1.7032368183135986,16,1.0,1 +1516,1,1.0,0,1.4052406549453735,17,1.0,1 +1517,1,1.0,0,1.5072393417358398,18,1.0,1 +1518,1,1.0,0,1.6172380447387695,19,1.0,1 +1519,1,1.0,0,1.4342403411865234,20,1.0,1 +1520,1,1.0,0,1.3942408561706543,21,0.0,1 +1521,1,1.0,0,2.164236545562744,22,1.0,1 +1522,1,1.0,0,1.4052406549453735,23,1.0,1 +1523,1,1.0,0,1.5452388525009155,24,1.0,1 +1524,1,1.0,0,1.3982408046722412,25,1.0,1 +1525,1,1.0,0,1.481239676475525,26,1.0,1 +1526,1,1.0,0,2.0432324409484863,27,1.0,1 +1527,1,1.0,0,1.306241750717163,28,1.0,1 +1528,1,1.0,0,1.3432414531707764,29,1.0,1 +1529,1,1.0,0,1.56523859500885,30,1.0,1 +1530,1,1.0,0,1.3312416076660156,31,1.0,1 +1531,1,1.0,0,2.1702370643615723,32,1.0,1 +1532,1,1.0,0,1.4312403202056885,33,1.0,1 +1533,1,1.0,0,1.3832409381866455,34,1.0,1 +1534,1,1.0,0,1.5142393112182617,35,1.0,1 +1535,1,1.0,0,1.3192417621612549,36,1.0,1 +1536,1,1.0,0,1.2302416563034058,37,1.0,1 +1537,1,1.0,0,1.3832409381866455,38,1.0,1 +1538,1,1.0,0,1.5892384052276611,39,1.0,1 +1539,1,1.0,0,1.637237787246704,40,0.0,1 +1540,1,0.0,0,2.144235610961914,41,0.0,1 +1541,1,1.0,0,2.2242393493652344,42,1.0,1 +1542,1,1.0,0,1.5992381572723389,43,1.0,1 +1543,1,0.0,0,1.2292416095733643,44,0.0,1 +1544,1,1.0,0,1.2952417135238647,45,1.0,1 +1545,1,1.0,0,1.4212404489517212,46,1.0,1 +1546,1,1.0,0,1.668237328529358,47,1.0,1 +1547,1,1.0,0,1.4872395992279053,48,0.0,1 +1548,1,1.0,0,1.6792371273040771,49,1.0,1 +1549,1,1.0,0,1.450240135192871,50,1.0,1 +1550,1,1.0,0,1.3912408351898193,51,0.0,1 +1551,1,1.0,0,1.4832396507263184,52,1.0,1 +1552,1,1.0,0,1.5742385387420654,53,1.0,1 +1553,1,1.0,0,1.6292378902435303,54,1.0,1 +1554,1,1.0,0,1.3892408609390259,55,0.0,1 +1555,1,1.0,0,1.5012394189834595,56,1.0,1 +1556,1,1.0,0,1.6142380237579346,57,1.0,1 +1557,1,1.0,0,1.4862396717071533,58,1.0,1 +1558,1,1.0,0,1.411240577697754,59,0.0,1 +1559,1,0.0,0,1.546238899230957,60,1.0,1 +1560,1,0.0,0,1.2702417373657227,61,0.0,1 +1561,1,1.0,0,2.165236711502075,62,1.0,1 +1562,1,1.0,0,1.499239444732666,63,1.0,1 +1563,1,1.0,0,1.336241602897644,64,0.0,1 +1564,1,1.0,0,1.8362351655960083,65,0.0,1 +1565,1,0.0,0,1.5402389764785767,66,0.0,1 +1566,1,1.0,0,1.2962417602539062,67,0.0,1 +1567,1,0.0,0,1.4302403926849365,68,0.0,1 +1568,1,0.0,0,1.8882344961166382,69,1.0,1 +1569,1,0.0,0,2.061232328414917,70,0.0,1 +1570,1,0.0,0,1.782235860824585,71,0.0,1 +1571,1,1.0,0,1.6312377452850342,72,1.0,1 +1572,1,1.0,0,1.5332390069961548,73,1.0,1 +1573,1,1.0,0,1.4452401399612427,74,1.0,1 +1574,1,1.0,0,1.425240397453308,75,1.0,1 +1575,1,1.0,0,1.3382415771484375,76,1.0,1 +1576,1,1.0,0,1.8572349548339844,77,1.0,1 +1577,1,0.0,0,1.1642415523529053,78,0.0,1 +1578,1,1.0,0,1.2312415838241577,79,1.0,1 +1579,1,1.0,0,1.278241753578186,80,1.0,1 +1580,1,1.0,0,1.6582374572753906,81,1.0,1 +1581,1,1.0,0,1.385240912437439,82,1.0,1 +1582,1,1.0,0,1.5852384567260742,83,1.0,1 +1583,1,1.0,0,1.3562413454055786,84,1.0,1 +1584,1,0.0,0,1.5402389764785767,85,0.0,1 +1585,1,1.0,0,1.7682360410690308,86,0.0,1 +1586,1,0.0,0,1.4472401142120361,87,0.0,1 +1587,1,0.0,0,1.6012382507324219,88,0.0,1 +1588,1,1.0,0,1.4612399339675903,89,1.0,1 +1589,1,1.0,0,1.4342403411865234,90,1.0,1 +1590,1,1.0,0,1.5712385177612305,91,0.0,1 +1591,1,1.0,0,2.104233741760254,92,1.0,1 +1592,1,1.0,0,1.3702411651611328,93,1.0,1 +1593,1,1.0,0,1.7652361392974854,94,1.0,1 +1594,1,1.0,0,1.503239393234253,95,1.0,1 +1595,1,1.0,0,1.2902417182922363,96,1.0,1 +1596,1,1.0,0,1.4202405214309692,97,1.0,1 +1597,1,1.0,0,1.2982417345046997,98,1.0,1 +1598,1,1.0,0,1.871234655380249,99,1.0,1 +1599,1,1.0,0,1.498239517211914,100,1.0,1 +1600,1,1.0,0,1.7992355823516846,101,1.0,1 +1601,1,1.0,0,1.4192404747009277,102,1.0,1 +1602,1,1.0,0,1.5732386112213135,103,1.0,1 +1603,1,1.0,0,1.2192416191101074,104,1.0,1 +1604,1,1.0,0,1.3672411441802979,105,1.0,1 +1605,1,1.0,0,1.4192404747009277,106,1.0,1 +1606,1,1.0,0,1.2982417345046997,107,1.0,1 +1607,1,1.0,0,1.2932417392730713,108,1.0,1 +1608,1,1.0,0,1.359241247177124,109,1.0,1 +1609,1,1.0,0,1.458240032196045,110,1.0,1 +1610,1,1.0,0,1.2972418069839478,111,1.0,1 +1611,1,1.0,0,1.312241792678833,112,0.0,1 +1612,1,0.0,0,1.3202418088912964,113,0.0,1 +1613,1,0.0,0,1.3312416076660156,114,1.0,1 +1614,1,0.0,0,1.2552416324615479,115,1.0,1 +1615,1,0.0,0,1.214241623878479,116,0.0,1 +1616,1,1.0,0,1.4092406034469604,117,1.0,1 +1617,1,1.0,0,1.6332378387451172,118,1.0,1 +1618,1,1.0,0,1.9572336673736572,119,1.0,1 +1619,1,1.0,0,1.6102380752563477,120,0.0,1 +1620,1,1.0,0,1.214241623878479,121,1.0,1 +1621,1,0.0,0,1.473239779472351,122,0.0,1 +1622,1,1.0,0,1.5732386112213135,123,1.0,1 +1623,1,1.0,0,1.3602412939071655,124,1.0,1 +1624,1,1.0,0,1.5492388010025024,125,1.0,1 +1625,1,1.0,0,1.528239130973816,126,1.0,1 +1626,1,1.0,0,1.312241792678833,127,0.0,1 +1627,1,1.0,0,1.336241602897644,128,1.0,1 +1628,1,1.0,0,1.2612416744232178,129,1.0,1 +1629,1,1.0,0,1.8632347583770752,130,1.0,1 +1630,1,1.0,0,2.12223482131958,131,1.0,1 +1631,1,1.0,0,1.8122354745864868,132,1.0,1 +1632,1,1.0,0,1.306241750717163,133,1.0,1 +1633,1,1.0,0,1.5612386465072632,134,1.0,1 +1634,1,1.0,0,1.2472416162490845,135,1.0,1 +1635,1,1.0,0,1.5132392644882202,136,1.0,1 +1636,1,1.0,0,1.502239465713501,137,1.0,1 +1637,1,1.0,0,1.4532400369644165,138,1.0,1 +1638,1,1.0,0,1.4242404699325562,139,1.0,1 +1639,1,1.0,0,1.6792371273040771,140,1.0,1 +1640,1,1.0,0,1.7892358303070068,141,1.0,1 +1641,1,1.0,0,1.5142393112182617,142,1.0,1 +1642,1,1.0,0,1.5002394914627075,143,1.0,1 +1643,1,1.0,0,1.4642399549484253,144,1.0,1 +1644,1,1.0,0,1.481239676475525,145,1.0,1 +1645,1,1.0,0,1.2562416791915894,146,1.0,1 +1646,1,1.0,0,1.638237714767456,147,1.0,1 +1647,1,1.0,0,1.4532400369644165,148,1.0,1 +1648,1,1.0,0,1.664237380027771,149,1.0,1 +1649,1,1.0,0,1.4202405214309692,150,0.0,1 +1650,1,1.0,0,2.085232973098755,151,1.0,1 +1651,1,1.0,0,1.4412401914596558,152,1.0,1 +1652,1,1.0,0,1.3132418394088745,153,1.0,1 +1653,1,1.0,0,1.6582374572753906,154,0.0,1 +1654,1,0.0,0,1.5812385082244873,155,0.0,1 +1655,1,0.0,0,2.2152390480041504,156,0.0,1 +1656,1,1.0,0,1.734236478805542,157,1.0,1 +1657,1,1.0,0,1.7452363967895508,158,1.0,1 +1658,1,1.0,0,1.5402389764785767,159,1.0,1 +1659,1,1.0,0,2.067232131958008,160,0.0,1 +1660,1,1.0,0,1.568238615989685,161,1.0,1 +1661,1,1.0,0,1.2962417602539062,162,1.0,1 +1662,1,1.0,0,1.4692398309707642,163,1.0,1 +1663,1,0.0,0,1.8442350625991821,164,0.0,1 +1664,1,1.0,0,1.3652411699295044,165,0.0,1 +1665,1,1.0,0,1.6342377662658691,166,1.0,1 +1666,1,1.0,0,1.4262404441833496,167,1.0,1 +1667,1,1.0,0,1.760236144065857,168,1.0,1 +1668,1,1.0,0,1.359241247177124,169,1.0,1 +1669,1,1.0,0,1.5602387189865112,170,1.0,1 +1670,1,1.0,0,1.5572386980056763,171,1.0,1 +1671,1,1.0,0,1.3472414016723633,172,1.0,1 +1672,1,0.0,0,1.429240345954895,173,0.0,1 +1673,1,1.0,0,1.4312403202056885,174,1.0,1 +1674,1,1.0,0,1.2652417421340942,175,1.0,1 +1675,1,1.0,0,1.3892408609390259,176,1.0,1 +1676,1,1.0,0,1.781235933303833,177,1.0,1 +1677,1,1.0,0,2.0492324829101562,178,1.0,1 +1678,1,1.0,0,1.3002417087554932,179,1.0,1 +1679,1,1.0,0,1.3962408304214478,180,1.0,1 +1680,1,1.0,0,1.6122380495071411,181,1.0,1 +1681,1,1.0,0,1.450240135192871,182,1.0,1 +1682,1,1.0,0,1.5702385902404785,183,1.0,1 +1683,1,1.0,0,1.2102415561676025,184,1.0,1 +1684,1,0.0,0,1.406240701675415,185,0.0,1 +1685,1,0.0,0,1.2402416467666626,186,0.0,1 +1686,1,1.0,0,1.388240933418274,187,1.0,1 +1687,1,1.0,0,1.245241641998291,188,1.0,1 +1688,1,1.0,0,1.3322416543960571,189,0.0,1 +1689,1,0.0,0,1.5702385902404785,190,0.0,1 +1690,1,1.0,0,2.2242393493652344,191,1.0,1 +1691,1,1.0,0,1.7662360668182373,192,0.0,1 +1692,1,0.0,0,2.387247085571289,193,0.0,1 +1693,1,1.0,0,1.4422402381896973,194,1.0,1 +1694,1,1.0,0,1.9322339296340942,195,1.0,1 +1695,1,1.0,0,1.3232417106628418,196,1.0,1 +1696,1,1.0,0,1.642237663269043,197,1.0,1 +1697,1,1.0,0,1.5352389812469482,198,1.0,1 +1698,1,1.0,0,1.3252416849136353,199,1.0,1 +1699,1,1.0,0,1.2372416257858276,200,1.0,1 +1700,1,1.0,0,1.337241530418396,201,1.0,1 +1701,1,1.0,0,1.3442414999008179,202,1.0,1 +1702,1,1.0,0,1.4742398262023926,203,1.0,1 +1703,1,1.0,0,1.3262417316436768,204,0.0,1 +1704,1,0.0,0,1.4042407274246216,205,0.0,1 +1705,1,0.0,0,1.775235891342163,206,0.0,1 +1706,1,1.0,0,1.752236247062683,207,1.0,1 +1707,1,1.0,0,1.4152405261993408,208,1.0,1 +1708,1,1.0,0,1.1632415056228638,209,0.0,1 +1709,1,1.0,0,1.5642386674880981,210,0.0,1 +1710,1,0.0,0,1.184241533279419,211,0.0,1 +1711,1,0.0,0,1.8372352123260498,212,0.0,1 +1712,1,0.0,0,2.015232801437378,213,0.0,1 +1713,1,0.0,0,1.3652411699295044,214,1.0,1 +1714,1,0.0,0,1.2562416791915894,215,0.0,1 +1715,1,1.0,0,1.7622361183166504,216,1.0,1 +1716,1,0.0,0,2.2692415714263916,217,0.0,1 +1717,1,0.0,0,1.410240650177002,218,0.0,1 +1718,1,1.0,0,1.3382415771484375,219,1.0,1 +1719,1,1.0,0,1.275241732597351,220,1.0,1 +1720,1,1.0,0,1.639237642288208,221,1.0,1 +1721,1,1.0,0,1.5872383117675781,222,0.0,1 +1722,1,1.0,0,1.4612399339675903,223,1.0,1 +1723,1,1.0,0,1.738236427307129,224,0.0,1 +1724,1,0.0,0,1.5532387495040894,225,0.0,1 +1725,1,0.0,0,1.428240418434143,226,0.0,1 +1726,1,0.0,0,1.306241750717163,227,0.0,1 +1727,1,0.0,0,1.2022415399551392,228,0.0,1 +1728,1,1.0,0,1.3762410879135132,229,1.0,1 +1729,1,1.0,0,1.2762417793273926,230,1.0,1 +1730,1,1.0,0,1.306241750717163,231,1.0,1 +1731,1,1.0,0,1.8542349338531494,232,1.0,1 +1732,1,1.0,0,1.2622417211532593,233,1.0,1 +1733,1,1.0,0,1.7112367153167725,234,0.0,1 +1734,1,0.0,0,1.3392415046691895,235,0.0,1 +1735,1,1.0,0,2.1942381858825684,236,0.0,1 +1736,1,0.0,0,1.922234058380127,237,0.0,1 +1737,1,0.0,0,1.8862345218658447,238,1.0,1 +1738,1,0.0,0,1.6612374782562256,239,1.0,1 +1739,1,0.0,0,1.4932395219802856,240,0.0,1 +1740,1,1.0,0,1.3962408304214478,241,1.0,1 +1741,1,1.0,0,1.3702411651611328,242,1.0,1 +1742,1,1.0,0,1.5012394189834595,243,1.0,1 +1743,1,1.0,0,1.312241792678833,244,0.0,1 +1744,1,0.0,0,1.436240315437317,245,0.0,1 +1745,1,1.0,0,1.8592348098754883,246,1.0,1 +1746,1,1.0,0,1.4012407064437866,247,0.0,1 +1747,1,1.0,0,1.8532350063323975,248,1.0,1 +1748,1,1.0,0,1.4202405214309692,249,1.0,1 +1749,1,1.0,0,1.499239444732666,250,1.0,1 +1750,1,1.0,0,1.4792397022247314,251,1.0,1 +1751,1,1.0,0,1.1642415523529053,252,1.0,1 +1752,1,1.0,0,1.7882357835769653,253,1.0,1 +1753,1,1.0,0,1.8382351398468018,254,1.0,1 +1754,1,1.0,0,1.385240912437439,255,1.0,1 +1755,1,1.0,0,1.9092342853546143,256,0.0,1 +1756,1,0.0,0,1.4312403202056885,257,0.0,1 +1757,1,1.0,0,1.2802417278289795,258,1.0,1 +1758,1,1.0,0,1.7032368183135986,259,1.0,1 +1759,1,1.0,0,1.8132355213165283,260,1.0,1 +1760,1,1.0,0,1.4592399597167969,261,1.0,1 +1761,1,1.0,0,1.473239779472351,262,1.0,1 +1762,1,1.0,0,1.639237642288208,263,1.0,1 +1763,1,1.0,0,1.9022343158721924,264,1.0,1 +1764,1,1.0,0,1.3502414226531982,265,1.0,1 +1765,1,1.0,0,1.3132418394088745,266,1.0,1 +1766,1,1.0,0,1.2902417182922363,267,0.0,1 +1767,1,1.0,0,1.6362377405166626,268,1.0,1 +1768,1,1.0,0,1.5822384357452393,269,1.0,1 +1769,1,1.0,0,1.3502414226531982,270,1.0,1 +1770,1,1.0,0,1.4522401094436646,271,1.0,1 +1771,1,1.0,0,1.2332416772842407,272,1.0,1 +1772,1,1.0,0,1.4342403411865234,273,1.0,1 +1773,1,1.0,0,1.2572417259216309,274,1.0,1 +1774,1,1.0,0,1.2472416162490845,275,0.0,1 +1775,1,1.0,0,1.6062381267547607,276,1.0,1 +1776,1,1.0,0,1.4782397747039795,277,1.0,1 +1777,1,1.0,0,1.4742398262023926,278,1.0,1 +1778,1,1.0,0,1.8432350158691406,279,1.0,1 +1779,1,1.0,0,1.4122406244277954,280,1.0,1 +1780,1,1.0,0,1.4182405471801758,281,1.0,1 +1781,1,1.0,0,1.355241298675537,282,1.0,1 +1782,1,1.0,0,1.528239130973816,283,1.0,1 +1783,1,1.0,0,1.248241662979126,284,0.0,1 +1784,1,0.0,0,1.660237431526184,285,0.0,1 +1785,1,0.0,0,1.3002417087554932,286,0.0,1 +1786,1,0.0,0,1.642237663269043,287,1.0,1 +1787,1,0.0,0,2.4372494220733643,288,0.0,1 +1788,1,0.0,0,1.8912343978881836,289,0.0,1 +1789,1,0.0,0,1.9462337493896484,290,0.0,1 +1790,1,1.0,0,1.5262391567230225,291,1.0,1 +1791,1,1.0,0,1.638237714767456,292,1.0,1 +1792,1,1.0,0,2.0012331008911133,293,1.0,1 +1793,1,1.0,0,1.1712415218353271,294,1.0,1 +1794,1,1.0,0,1.3772410154342651,295,1.0,1 +1795,1,1.0,0,1.9412338733673096,296,1.0,1 +1796,1,1.0,0,1.2042415142059326,297,1.0,1 +1797,1,1.0,0,1.7722359895706177,298,1.0,1 +1798,1,1.0,0,1.528239130973816,299,1.0,1 +1799,1,1.0,0,1.6992368698120117,300,1.0,1 +1800,1,1.0,0,1.3192417621612549,301,1.0,1 +1801,1,1.0,0,1.7052369117736816,302,1.0,1 +1802,1,1.0,0,1.7952356338500977,303,1.0,1 +1803,1,1.0,0,1.5322390794754028,304,0.0,1 +1804,1,1.0,0,1.7262365818023682,305,1.0,1 +1805,1,1.0,0,1.2302416563034058,306,0.0,1 +1806,1,0.0,0,1.4832396507263184,307,0.0,1 +1807,1,0.0,0,1.9682334661483765,308,1.0,1 +1808,1,0.0,0,1.355241298675537,309,0.0,1 +1809,1,0.0,0,1.4022407531738281,310,1.0,1 +1810,1,0.0,0,1.5742385387420654,311,1.0,1 +1811,1,0.0,0,1.5482388734817505,312,0.0,1 +1812,1,0.0,0,1.686237096786499,313,0.0,1 +1813,1,0.0,0,1.3942408561706543,314,0.0,1 +1814,1,1.0,0,1.7592360973358154,315,1.0,1 +1815,1,1.0,0,1.425240397453308,316,1.0,1 +1816,1,1.0,0,1.2332416772842407,317,1.0,1 +1817,1,1.0,0,1.4652398824691772,318,1.0,1 +1818,1,1.0,0,1.9782333374023438,319,1.0,1 +1819,1,0.0,0,1.2682416439056396,320,0.0,1 +1820,1,1.0,0,2.1962380409240723,321,1.0,1 +1821,1,1.0,0,1.8692348003387451,322,1.0,1 +1822,1,1.0,0,1.3072417974472046,323,1.0,1 +1823,1,0.0,0,1.5052393674850464,324,0.0,1 +1824,1,1.0,0,1.7192366123199463,325,1.0,1 +1825,1,1.0,0,1.3832409381866455,326,1.0,1 +1826,1,1.0,0,1.9502336978912354,327,1.0,1 +1827,1,1.0,0,1.2962417602539062,328,1.0,1 +1828,1,1.0,0,1.782235860824585,329,1.0,1 +1829,1,1.0,0,1.4742398262023926,330,0.0,1 +1830,1,0.0,0,1.2312415838241577,331,0.0,1 +1831,1,0.0,0,1.3802410364151,332,0.0,1 +1832,1,0.0,0,1.3502414226531982,333,0.0,1 +1833,1,1.0,0,1.8932344913482666,334,1.0,1 +1834,1,1.0,0,1.4162405729293823,335,1.0,1 +1835,1,1.0,0,1.4372402429580688,336,1.0,1 +1836,1,1.0,0,1.9312338829040527,337,1.0,1 +1837,1,1.0,0,1.4492400884628296,338,1.0,1 +1838,1,1.0,0,1.7692360877990723,339,0.0,1 +1839,1,1.0,0,1.4922395944595337,340,1.0,1 +1840,1,1.0,0,1.312241792678833,341,0.0,1 +1841,1,1.0,0,1.8072354793548584,342,1.0,1 +1842,1,1.0,0,1.7612361907958984,343,1.0,1 +1843,1,1.0,0,1.4522401094436646,344,1.0,1 +1844,1,1.0,0,1.6952369213104248,345,0.0,1 +1845,1,0.0,0,1.7172367572784424,346,0.0,1 +1846,1,0.0,0,2.3052432537078857,347,0.0,1 +1847,1,0.0,0,1.4442402124404907,348,0.0,1 +1848,1,1.0,0,1.7542362213134766,349,1.0,1 +1849,1,1.0,0,1.6612374782562256,350,0.0,1 +1850,1,0.0,0,1.5632386207580566,351,0.0,1 +1851,1,0.0,0,1.6052381992340088,352,0.0,1 +1852,1,0.0,0,1.3282417058944702,353,0.0,1 +1853,1,0.0,0,2.332244396209717,354,0.0,1 +1854,1,0.0,0,1.1422414779663086,355,0.0,1 +1855,1,0.0,0,2.061232328414917,356,1.0,1 +1856,1,0.0,0,1.2312415838241577,357,0.0,1 +1857,1,0.0,0,1.6192378997802734,358,0.0,1 +1858,1,0.0,0,2.091233253479004,359,0.0,1 +1859,1,1.0,0,1.5962382555007935,360,0.0,1 +1860,1,1.0,0,1.3562413454055786,361,1.0,1 +1861,1,1.0,0,1.248241662979126,362,1.0,1 +1862,1,1.0,0,1.7402364015579224,363,1.0,1 +1863,1,1.0,0,1.8102355003356934,364,1.0,1 +1864,1,1.0,0,1.6052381992340088,365,0.0,1 +1865,1,0.0,0,2.079232692718506,366,0.0,1 +1866,1,1.0,0,1.6092381477355957,367,1.0,1 +1867,1,1.0,0,1.4132405519485474,368,1.0,1 +1868,1,1.0,0,1.5492388010025024,369,1.0,1 +1869,1,1.0,0,1.2612416744232178,370,1.0,1 +1870,1,1.0,0,2.1992383003234863,371,1.0,1 +1871,1,1.0,0,1.4472401142120361,372,1.0,1 +1872,1,1.0,0,1.6142380237579346,373,1.0,1 +1873,1,1.0,0,1.9432337284088135,374,1.0,1 +1874,1,1.0,0,2.2802419662475586,375,1.0,1 +1875,1,1.0,0,1.5782384872436523,376,1.0,1 +1876,1,1.0,0,1.3302416801452637,377,1.0,1 +1877,1,1.0,0,1.3692411184310913,378,1.0,1 +1878,1,1.0,0,1.211241602897644,379,1.0,1 +1879,1,1.0,0,1.5582387447357178,380,1.0,1 +1880,1,1.0,0,1.6622374057769775,381,1.0,1 +1881,1,1.0,0,1.5292390584945679,382,1.0,1 +1882,1,1.0,0,1.3962408304214478,383,1.0,1 +1883,1,1.0,0,1.2842416763305664,384,1.0,1 +1884,1,1.0,0,1.598238229751587,385,1.0,1 +1885,1,1.0,0,1.2562416791915894,386,1.0,1 +1886,1,1.0,0,1.5532387495040894,387,1.0,1 +1887,1,1.0,0,1.407240629196167,388,1.0,1 +1888,1,1.0,0,1.454240083694458,389,0.0,1 +1889,1,0.0,0,1.7662360668182373,390,0.0,1 +1890,1,1.0,0,2.4572503566741943,391,1.0,1 +1891,1,1.0,0,1.4042407274246216,392,1.0,1 +1892,1,1.0,0,1.5162392854690552,393,1.0,1 +1893,1,1.0,0,1.2572417259216309,394,1.0,1 +1894,1,1.0,0,1.598238229751587,395,1.0,1 +1895,1,0.0,0,1.2382416725158691,396,1.0,1 +1896,1,0.0,0,1.7762359380722046,397,1.0,1 +1897,1,0.0,0,1.8392350673675537,398,0.0,1 +1898,1,1.0,0,1.708236813545227,399,1.0,1 +1899,1,0.0,0,1.685237169265747,400,1.0,1 +1900,1,0.0,0,1.6142380237579346,401,0.0,1 +1901,1,1.0,0,1.5322390794754028,402,1.0,1 +1902,1,1.0,0,1.1982415914535522,403,1.0,1 +1903,1,1.0,0,2.391247272491455,404,1.0,1 +1904,1,1.0,0,1.4912395477294922,405,1.0,1 +1905,1,1.0,0,1.5812385082244873,406,0.0,1 +1906,1,0.0,0,1.355241298675537,407,0.0,1 +1907,1,0.0,0,1.4442402124404907,408,0.0,1 +1908,1,1.0,0,2.2612411975860596,409,1.0,1 +1909,1,1.0,0,1.275241732597351,410,1.0,1 +1910,1,1.0,0,1.2682416439056396,411,1.0,1 +1911,1,1.0,0,1.3902409076690674,412,1.0,1 +1912,1,1.0,0,1.2382416725158691,413,1.0,1 +1913,1,1.0,0,1.450240135192871,414,1.0,1 +1914,1,1.0,0,1.2932417392730713,415,1.0,1 +1915,1,1.0,0,1.3522413969039917,416,1.0,1 +1916,1,1.0,0,1.8192353248596191,417,0.0,1 +1917,1,1.0,0,1.2592417001724243,418,1.0,1 +1918,1,1.0,0,1.1922415494918823,419,1.0,1 +1919,1,1.0,0,1.4532400369644165,420,1.0,1 +1920,1,0.0,0,1.3002417087554932,421,0.0,1 +1921,1,1.0,0,1.3342416286468506,422,0.0,1 +1922,1,0.0,0,1.1892415285110474,423,0.0,1 +1923,1,1.0,0,1.3142417669296265,424,1.0,1 +1924,1,0.0,0,2.118234634399414,425,0.0,1 +1925,1,1.0,0,1.8842345476150513,426,1.0,1 +1926,1,1.0,0,1.9372339248657227,427,1.0,1 +1927,1,1.0,0,1.275241732597351,428,1.0,1 +1928,1,1.0,0,1.6752371788024902,429,1.0,1 +1929,1,1.0,0,1.359241247177124,430,1.0,1 +1930,1,1.0,0,1.2972418069839478,431,1.0,1 +1931,1,1.0,0,1.2602417469024658,432,1.0,1 +1932,1,1.0,0,1.2832417488098145,433,1.0,1 +1933,1,1.0,0,1.4422402381896973,434,1.0,1 +1934,1,1.0,0,1.5002394914627075,435,1.0,1 +1935,1,1.0,0,1.525239109992981,436,1.0,1 +1936,1,1.0,0,1.6402376890182495,437,0.0,1 +1937,1,0.0,0,1.7492363452911377,438,0.0,1 +1938,1,1.0,0,2.112234115600586,439,1.0,1 +1939,1,0.0,0,1.2352416515350342,440,0.0,1 +1940,1,1.0,0,1.8182353973388672,441,1.0,1 +1941,1,1.0,0,1.3002417087554932,442,1.0,1 +1942,1,1.0,0,1.407240629196167,443,1.0,1 +1943,1,1.0,0,1.3142417669296265,444,0.0,1 +1944,1,0.0,0,1.309241771697998,445,0.0,1 +1945,1,0.0,0,1.948233723640442,446,0.0,1 +1946,1,1.0,0,1.643237590789795,447,1.0,1 +1947,1,1.0,0,1.275241732597351,448,1.0,1 +1948,1,1.0,0,1.5272390842437744,449,1.0,1 +1949,1,1.0,0,1.6002382040023804,450,0.0,1 +1950,1,0.0,0,1.822235345840454,451,1.0,1 +1951,1,0.0,0,1.2992417812347412,452,0.0,1 +1952,1,1.0,0,2.084232807159424,453,1.0,1 +1953,1,0.0,0,1.4472401142120361,454,0.0,1 +1954,1,1.0,0,1.363241195678711,455,1.0,1 +1955,1,1.0,0,1.251241683959961,456,1.0,1 +1956,1,1.0,0,1.2532416582107544,457,1.0,1 +1957,1,1.0,0,1.4162405729293823,458,1.0,1 +1958,1,1.0,0,1.568238615989685,459,1.0,1 +1959,1,1.0,0,1.2712416648864746,460,1.0,1 +1960,1,1.0,0,1.6942369937896729,461,0.0,1 +1961,1,0.0,0,1.590238332748413,462,0.0,1 +1962,1,0.0,0,1.181241512298584,463,0.0,1 +1963,1,0.0,0,1.3952407836914062,464,0.0,1 +1964,1,1.0,0,1.5532387495040894,465,1.0,1 +1965,1,1.0,0,1.2402416467666626,466,1.0,1 +1966,1,1.0,0,1.3272416591644287,467,1.0,1 +1967,1,1.0,0,1.6182379722595215,468,1.0,1 +1968,1,1.0,0,1.3542413711547852,469,1.0,1 +1969,1,1.0,0,1.5192391872406006,470,1.0,1 +1970,1,1.0,0,1.4162405729293823,471,1.0,1 +1971,1,1.0,0,1.4652398824691772,472,1.0,1 +1972,1,1.0,0,1.275241732597351,473,1.0,1 +1973,1,1.0,0,1.3262417316436768,474,1.0,1 +1974,1,1.0,0,1.6302378177642822,475,1.0,1 +1975,1,1.0,0,1.385240912437439,476,0.0,1 +1976,1,1.0,0,1.3642412424087524,477,1.0,1 +1977,1,1.0,0,1.4592399597167969,478,1.0,1 +1978,1,1.0,0,1.4012407064437866,479,1.0,1 +1979,1,1.0,0,1.4662399291992188,480,1.0,1 +1980,1,1.0,0,1.4152405261993408,481,0.0,1 +1981,1,0.0,0,1.3972407579421997,482,0.0,1 +1982,1,0.0,0,1.2102415561676025,483,0.0,1 +1983,1,0.0,0,1.6242378950119019,484,0.0,1 +1984,1,0.0,0,1.543238878250122,485,0.0,1 +1985,1,1.0,0,1.454240083694458,486,0.0,1 +1986,1,0.0,0,1.6762372255325317,487,0.0,1 +1987,1,0.0,0,1.641237735748291,488,0.0,1 +1988,1,1.0,0,1.4622399806976318,489,1.0,1 +1989,1,1.0,0,1.3542413711547852,490,0.0,1 +1990,1,0.0,0,1.8062355518341064,491,1.0,1 +1991,1,0.0,0,1.306241750717163,492,1.0,1 +1992,1,0.0,0,1.1732414960861206,493,0.0,1 +1993,1,1.0,0,2.146235942840576,494,1.0,1 +1994,1,1.0,0,1.638237714767456,495,0.0,1 +1995,1,0.0,0,1.6032381057739258,496,0.0,1 +1996,1,0.0,0,1.3422415256500244,497,0.0,1 +1997,1,0.0,0,1.5572386980056763,498,0.0,1 +1998,1,1.0,0,1.4682399034500122,499,1.0,1 +1999,1,1.0,0,1.8902344703674316,500,1.0,1 +2000,1,1.0,1,1.2252416610717773,1,1.0,1 +2001,1,1.0,1,1.9582335948944092,2,1.0,1 +2002,1,1.0,1,1.5102393627166748,3,1.0,1 +2003,1,1.0,1,1.7912356853485107,4,1.0,1 +2004,1,1.0,1,2.114234447479248,5,1.0,1 +2005,1,1.0,1,1.3272416591644287,6,0.0,1 +2006,1,0.0,1,1.5182392597198486,7,1.0,1 +2007,1,0.0,1,2.0262327194213867,8,0.0,1 +2008,1,0.0,1,1.2132415771484375,9,1.0,1 +2009,1,0.0,1,1.3972407579421997,10,0.0,1 +2010,1,0.0,1,1.9842332601547241,11,1.0,1 +2011,1,0.0,1,1.4162405729293823,12,0.0,1 +2012,1,1.0,1,1.873234748840332,13,1.0,1 +2013,1,1.0,1,1.4962395429611206,14,1.0,1 +2014,1,1.0,1,1.2912417650222778,15,1.0,1 +2015,1,0.0,1,1.282241702079773,16,0.0,1 +2016,1,1.0,1,1.3902409076690674,17,1.0,1 +2017,1,1.0,1,1.4092406034469604,18,1.0,1 +2018,1,1.0,1,1.4712398052215576,19,0.0,1 +2019,1,0.0,1,1.686237096786499,20,1.0,1 +2020,1,0.0,1,1.4002407789230347,21,1.0,1 +2021,1,0.0,1,1.285241723060608,22,0.0,1 +2022,1,0.0,1,1.7042368650436401,23,1.0,1 +2023,1,0.0,1,1.2242416143417358,24,0.0,1 +2024,1,1.0,1,1.7072367668151855,25,0.0,1 +2025,1,1.0,1,1.3242417573928833,26,1.0,1 +2026,1,1.0,1,1.503239393234253,27,1.0,1 +2027,1,1.0,1,1.31624174118042,28,1.0,1 +2028,1,1.0,1,1.3652411699295044,29,0.0,1 +2029,1,1.0,1,2.624258041381836,30,1.0,1 +2030,1,1.0,1,2.138235569000244,31,1.0,1 +2031,1,1.0,1,1.6652374267578125,32,1.0,1 +2032,1,1.0,1,1.6052381992340088,33,1.0,1 +2033,1,1.0,1,1.333241581916809,34,0.0,1 +2034,1,1.0,1,1.306241750717163,35,1.0,1 +2035,1,0.0,1,1.4632399082183838,36,0.0,1 +2036,1,1.0,1,1.337241530418396,37,1.0,1 +2037,1,0.0,1,1.5112392902374268,38,1.0,1 +2038,1,1.0,1,1.6022381782531738,39,1.0,1 +2039,1,1.0,1,2.1952381134033203,40,1.0,1 +2040,1,1.0,1,1.45524001121521,41,1.0,1 +2041,1,0.0,1,1.6192378997802734,42,1.0,1 +2042,1,1.0,1,2.067232131958008,43,1.0,1 +2043,1,1.0,1,1.5172392129898071,44,1.0,1 +2044,1,0.0,1,1.3862409591674805,45,0.0,1 +2045,1,1.0,1,1.4202405214309692,46,0.0,1 +2046,1,0.0,1,1.4052406549453735,47,0.0,1 +2047,1,0.0,1,1.3052418231964111,48,0.0,1 +2048,1,1.0,1,1.830235242843628,49,1.0,1 +2049,1,1.0,1,1.3942408561706543,50,1.0,1 +2050,1,1.0,1,1.7262365818023682,51,0.0,1 +2051,1,0.0,1,1.3532413244247437,52,1.0,1 +2052,1,0.0,1,1.2052415609359741,53,1.0,1 +2053,1,0.0,1,1.2022415399551392,54,1.0,1 +2054,1,0.0,1,1.1682415008544922,55,0.0,1 +2055,1,0.0,1,2.365246057510376,56,0.0,1 +2056,1,0.0,1,1.3992407321929932,57,0.0,1 +2057,1,0.0,1,1.6302378177642822,58,1.0,1 +2058,1,0.0,1,1.1492414474487305,59,0.0,1 +2059,1,1.0,1,1.31624174118042,60,1.0,1 +2060,1,1.0,1,1.4942395687103271,61,1.0,1 +2061,1,1.0,1,1.281241774559021,62,1.0,1 +2062,1,1.0,1,1.6632373332977295,63,0.0,1 +2063,1,1.0,1,1.616237998008728,64,0.0,1 +2064,1,0.0,1,1.4602400064468384,65,0.0,1 +2065,1,0.0,1,1.5352389812469482,66,0.0,1 +2066,1,1.0,1,1.214241623878479,67,1.0,1 +2067,1,1.0,1,1.285241723060608,68,1.0,1 +2068,1,1.0,1,1.2802417278289795,69,0.0,1 +2069,1,1.0,1,1.4972394704818726,70,1.0,1 +2070,1,1.0,1,1.2952417135238647,71,1.0,1 +2071,1,1.0,1,1.4272403717041016,72,0.0,1 +2072,1,0.0,1,1.1852415800094604,73,1.0,1 +2073,1,0.0,1,1.2952417135238647,74,0.0,1 +2074,1,1.0,1,1.4472401142120361,75,1.0,1 +2075,1,0.0,1,1.4462401866912842,76,0.0,1 +2076,1,1.0,1,1.1702414751052856,77,1.0,1 +2077,1,1.0,1,1.355241298675537,78,1.0,1 +2078,1,0.0,1,1.3232417106628418,79,0.0,1 +2079,1,1.0,1,1.8032355308532715,80,1.0,1 +2080,1,1.0,1,1.3602412939071655,81,1.0,1 +2081,1,1.0,1,1.4392402172088623,82,0.0,1 +2082,1,1.0,1,1.251241683959961,83,1.0,1 +2083,1,1.0,1,1.242241621017456,84,0.0,1 +2084,1,1.0,1,2.083232879638672,85,1.0,1 +2085,1,0.0,1,1.2502416372299194,86,1.0,1 +2086,1,1.0,1,1.7672359943389893,87,0.0,1 +2087,1,0.0,1,1.5962382555007935,88,1.0,1 +2088,1,0.0,1,1.2222416400909424,89,1.0,1 +2089,1,0.0,1,1.2702417373657227,90,0.0,1 +2090,1,1.0,1,1.1762415170669556,91,0.0,1 +2091,1,0.0,1,1.8192353248596191,92,1.0,1 +2092,1,0.0,1,1.7612361907958984,93,0.0,1 +2093,1,0.0,1,1.3222417831420898,94,0.0,1 +2094,1,0.0,1,1.1952415704727173,95,0.0,1 +2095,1,1.0,1,1.5632386207580566,96,1.0,1 +2096,1,1.0,1,1.4212404489517212,97,1.0,1 +2097,1,1.0,1,2.169236898422241,98,0.0,1 +2098,1,0.0,1,1.3192417621612549,99,0.0,1 +2099,1,0.0,1,1.359241247177124,100,0.0,1 +2100,1,0.0,1,1.358241319656372,101,1.0,1 +2101,1,0.0,1,1.598238229751587,102,0.0,1 +2102,1,0.0,1,1.4152405261993408,103,1.0,1 +2103,1,0.0,1,1.5572386980056763,104,0.0,1 +2104,1,0.0,1,1.451240062713623,105,0.0,1 +2105,1,0.0,1,1.8072354793548584,106,0.0,1 +2106,1,1.0,1,2.1812374591827393,107,1.0,1 +2107,1,1.0,1,1.1962416172027588,108,1.0,1 +2108,1,1.0,1,1.4142405986785889,109,0.0,1 +2109,1,1.0,1,2.2222394943237305,110,0.0,1 +2110,1,0.0,1,1.9072341918945312,111,0.0,1 +2111,1,1.0,1,1.9242340326309204,112,1.0,1 +2112,1,1.0,1,1.2672417163848877,113,1.0,1 +2113,1,1.0,1,1.4392402172088623,114,1.0,1 +2114,1,1.0,1,1.4712398052215576,115,1.0,1 +2115,1,1.0,1,1.830235242843628,116,1.0,1 +2116,1,1.0,1,1.458240032196045,117,1.0,1 +2117,1,1.0,1,1.5562387704849243,118,1.0,1 +2118,1,0.0,1,1.1642415523529053,119,0.0,1 +2119,1,1.0,1,1.281241774559021,120,1.0,1 +2120,1,0.0,1,1.6092381477355957,121,0.0,1 +2121,1,1.0,1,1.7802358865737915,122,1.0,1 +2122,1,1.0,1,1.1582415103912354,123,0.0,1 +2123,1,0.0,1,2.4262490272521973,124,0.0,1 +2124,1,0.0,1,1.180241584777832,125,0.0,1 +2125,1,0.0,1,1.3252416849136353,126,0.0,1 +2126,1,0.0,1,1.3672411441802979,127,0.0,1 +2127,1,0.0,1,1.3212417364120483,128,1.0,1 +2128,1,0.0,1,1.3782410621643066,129,0.0,1 +2129,1,0.0,1,1.4382402896881104,130,0.0,1 +2130,1,1.0,1,1.3782410621643066,131,1.0,1 +2131,1,1.0,1,1.1832414865493774,132,1.0,1 +2132,1,1.0,1,1.2992417812347412,133,1.0,1 +2133,1,1.0,1,1.315241813659668,134,1.0,1 +2134,1,1.0,1,1.2912417650222778,135,1.0,1 +2135,1,1.0,1,2.2742419242858887,136,0.0,1 +2136,1,1.0,1,2.08823299407959,137,0.0,1 +2137,1,1.0,1,1.781235933303833,138,0.0,1 +2138,1,0.0,1,1.8882344961166382,139,1.0,1 +2139,1,0.0,1,1.208241581916809,140,0.0,1 +2140,1,0.0,1,1.8012356758117676,141,0.0,1 +2141,1,1.0,1,1.682237148284912,142,0.0,1 +2142,1,1.0,1,1.5772385597229004,143,0.0,1 +2143,1,1.0,1,1.6132380962371826,144,1.0,1 +2144,1,1.0,1,1.8162354230880737,145,1.0,1 +2145,1,1.0,1,1.358241319656372,146,1.0,1 +2146,1,1.0,1,1.7622361183166504,147,1.0,1 +2147,1,1.0,1,1.4532400369644165,148,1.0,1 +2148,1,1.0,1,1.5872383117675781,149,1.0,1 +2149,1,1.0,1,1.3542413711547852,150,0.0,1 +2150,1,1.0,1,2.003232955932617,151,1.0,1 +2151,1,1.0,1,1.285241723060608,152,0.0,1 +2152,1,0.0,1,2.141235589981079,153,0.0,1 +2153,1,1.0,1,2.152235984802246,154,1.0,1 +2154,1,1.0,1,1.281241774559021,155,1.0,1 +2155,1,1.0,1,1.309241771697998,156,0.0,1 +2156,1,1.0,1,1.503239393234253,157,1.0,1 +2157,1,1.0,1,1.2722417116165161,158,1.0,1 +2158,1,1.0,1,1.5762385129928589,159,1.0,1 +2159,1,1.0,1,1.3932408094406128,160,1.0,1 +2160,1,1.0,1,1.5802384614944458,161,1.0,1 +2161,1,1.0,1,1.2702417373657227,162,1.0,1 +2162,1,1.0,1,1.6722372770309448,163,1.0,1 +2163,1,1.0,1,1.4142405986785889,164,1.0,1 +2164,1,1.0,1,1.3032417297363281,165,1.0,1 +2165,1,1.0,1,1.4312403202056885,166,1.0,1 +2166,1,1.0,1,1.499239444732666,167,1.0,1 +2167,1,1.0,1,1.3712410926818848,168,0.0,1 +2168,1,1.0,1,1.3052418231964111,169,0.0,1 +2169,1,1.0,1,1.4412401914596558,170,1.0,1 +2170,1,1.0,1,1.242241621017456,171,1.0,1 +2171,1,1.0,1,1.5582387447357178,172,1.0,1 +2172,1,1.0,1,1.5352389812469482,173,0.0,1 +2173,1,1.0,1,1.5122393369674683,174,0.0,1 +2174,1,0.0,1,1.8862345218658447,175,1.0,1 +2175,1,0.0,1,2.006232976913452,176,0.0,1 +2176,1,0.0,1,1.2882417440414429,177,0.0,1 +2177,1,1.0,1,1.7592360973358154,178,1.0,1 +2178,1,0.0,1,2.0322327613830566,179,0.0,1 +2179,1,1.0,1,1.4702398777008057,180,0.0,1 +2180,1,1.0,1,1.1652414798736572,181,1.0,1 +2181,1,1.0,1,1.3892408609390259,182,0.0,1 +2182,1,0.0,1,1.5392389297485352,183,0.0,1 +2183,1,1.0,1,1.3762410879135132,184,1.0,1 +2184,1,1.0,1,1.358241319656372,185,1.0,1 +2185,1,1.0,1,1.5412389039993286,186,1.0,1 +2186,1,1.0,1,1.6212379932403564,187,1.0,1 +2187,1,1.0,1,1.451240062713623,188,0.0,1 +2188,1,0.0,1,1.5162392854690552,189,0.0,1 +2189,1,1.0,1,1.6762372255325317,190,1.0,1 +2190,1,1.0,1,1.239241600036621,191,1.0,1 +2191,1,1.0,1,1.2732417583465576,192,1.0,1 +2192,1,1.0,1,1.3652411699295044,193,1.0,1 +2193,1,1.0,1,1.4972394704818726,194,0.0,1 +2194,1,0.0,1,1.1612415313720703,195,0.0,1 +2195,1,1.0,1,1.7732360363006592,196,1.0,1 +2196,1,1.0,1,1.8552348613739014,197,1.0,1 +2197,1,1.0,1,1.8202353715896606,198,0.0,1 +2198,1,0.0,1,1.639237642288208,199,1.0,1 +2199,1,0.0,1,1.4622399806976318,200,0.0,1 +2200,1,1.0,1,1.8442350625991821,201,0.0,1 +2201,1,1.0,1,1.6152379512786865,202,0.0,1 +2202,1,1.0,1,1.9362338781356812,203,1.0,1 +2203,1,1.0,1,1.4702398777008057,204,1.0,1 +2204,1,1.0,1,1.4372402429580688,205,1.0,1 +2205,1,1.0,1,1.5582387447357178,206,1.0,1 +2206,1,1.0,1,1.279241681098938,207,0.0,1 +2207,1,1.0,1,1.7182366847991943,208,1.0,1 +2208,1,1.0,1,1.5232391357421875,209,0.0,1 +2209,1,0.0,1,1.923233985900879,210,0.0,1 +2210,1,0.0,1,1.9102342128753662,211,1.0,1 +2211,1,1.0,1,1.6042381525039673,212,1.0,1 +2212,1,1.0,1,1.520239233970642,213,1.0,1 +2213,1,0.0,1,2.2392401695251465,214,0.0,1 +2214,1,0.0,1,1.9952330589294434,215,1.0,1 +2215,1,1.0,1,1.4962395429611206,216,1.0,1 +2216,1,1.0,1,1.5782384872436523,217,1.0,1 +2217,1,0.0,1,1.3872408866882324,218,0.0,1 +2218,1,0.0,1,2.0492324829101562,219,1.0,1 +2219,1,1.0,1,1.4792397022247314,220,1.0,1 +2220,1,0.0,1,1.9082342386245728,221,0.0,1 +2221,1,1.0,1,1.2132415771484375,222,0.0,1 +2222,1,1.0,1,1.2882417440414429,223,1.0,1 +2223,1,1.0,1,1.45524001121521,224,0.0,1 +2224,1,1.0,1,1.8112354278564453,225,0.0,1 +2225,1,1.0,1,1.9722334146499634,226,0.0,1 +2226,1,0.0,1,1.9682334661483765,227,0.0,1 +2227,1,1.0,1,1.6252379417419434,228,1.0,1 +2228,1,1.0,1,1.5442389249801636,229,1.0,1 +2229,1,1.0,1,1.5352389812469482,230,0.0,1 +2230,1,1.0,1,1.4002407789230347,231,1.0,1 +2231,1,1.0,1,1.3422415256500244,232,1.0,1 +2232,1,1.0,1,1.524239182472229,233,1.0,1 +2233,1,1.0,1,1.2642416954040527,234,1.0,1 +2234,1,1.0,1,1.4492400884628296,235,1.0,1 +2235,1,1.0,1,1.4222404956817627,236,1.0,1 +2236,1,1.0,1,1.3422415256500244,237,1.0,1 +2237,1,1.0,1,1.4562400579452515,238,1.0,1 +2238,1,1.0,1,1.5482388734817505,239,1.0,1 +2239,1,1.0,1,1.3232417106628418,240,1.0,1 +2240,1,1.0,1,1.6492376327514648,241,0.0,1 +2241,1,0.0,1,1.7052369117736816,242,0.0,1 +2242,1,1.0,1,1.5382390022277832,243,1.0,1 +2243,1,1.0,1,1.6212379932403564,244,0.0,1 +2244,1,0.0,1,1.5422389507293701,245,1.0,1 +2245,1,0.0,1,1.2532416582107544,246,1.0,1 +2246,1,0.0,1,1.5492388010025024,247,1.0,1 +2247,1,0.0,1,1.6272377967834473,248,0.0,1 +2248,1,0.0,1,1.6012382507324219,249,0.0,1 +2249,1,1.0,1,2.2012383937835693,250,1.0,1 +2250,1,1.0,1,1.6232378482818604,251,1.0,1 +2251,1,1.0,1,1.3952407836914062,252,0.0,1 +2252,1,1.0,1,1.5492388010025024,253,1.0,1 +2253,1,1.0,1,1.2902417182922363,254,1.0,1 +2254,1,1.0,1,1.388240933418274,255,1.0,1 +2255,1,1.0,1,1.778235912322998,256,1.0,1 +2256,1,1.0,1,1.877234697341919,257,1.0,1 +2257,1,1.0,1,2.4452497959136963,258,1.0,1 +2258,1,1.0,1,1.2992417812347412,259,0.0,1 +2259,1,1.0,1,1.7242366075515747,260,0.0,1 +2260,1,0.0,1,1.4742398262023926,261,0.0,1 +2261,1,1.0,1,1.3682411909103394,262,1.0,1 +2262,1,1.0,1,1.341241478919983,263,0.0,1 +2263,1,1.0,1,1.3932408094406128,264,1.0,1 +2264,1,1.0,1,1.7472362518310547,265,1.0,1 +2265,1,1.0,1,1.5772385597229004,266,0.0,1 +2266,1,1.0,1,1.2272416353225708,267,1.0,1 +2267,1,1.0,1,1.7952356338500977,268,1.0,1 +2268,1,1.0,1,1.4022407531738281,269,0.0,1 +2269,1,1.0,1,1.3072417974472046,270,1.0,1 +2270,1,1.0,1,1.3212417364120483,271,1.0,1 +2271,1,1.0,1,1.2302416563034058,272,1.0,1 +2272,1,1.0,1,1.4972394704818726,273,1.0,1 +2273,1,1.0,1,1.3932408094406128,274,1.0,1 +2274,1,1.0,1,1.5292390584945679,275,1.0,1 +2275,1,1.0,1,1.5322390794754028,276,1.0,1 +2276,1,1.0,1,1.6982369422912598,277,1.0,1 +2277,1,1.0,1,1.3832409381866455,278,0.0,1 +2278,1,1.0,1,2.1822376251220703,279,1.0,1 +2279,1,1.0,1,1.3042417764663696,280,1.0,1 +2280,1,1.0,1,2.096233367919922,281,1.0,1 +2281,1,1.0,1,1.3282417058944702,282,1.0,1 +2282,1,1.0,1,1.6002382040023804,283,0.0,1 +2283,1,1.0,1,2.397247552871704,284,1.0,1 +2284,1,1.0,1,1.1962416172027588,285,1.0,1 +2285,1,1.0,1,1.473239779472351,286,1.0,1 +2286,1,1.0,1,1.2582416534423828,287,1.0,1 +2287,1,1.0,1,1.1962416172027588,288,1.0,1 +2288,1,1.0,1,1.8412351608276367,289,0.0,1 +2289,1,1.0,1,1.3522413969039917,290,1.0,1 +2290,1,1.0,1,1.2882417440414429,291,1.0,1 +2291,1,1.0,1,1.4262404441833496,292,1.0,1 +2292,1,1.0,1,1.2762417793273926,293,1.0,1 +2293,1,1.0,1,1.7062368392944336,294,1.0,1 +2294,1,1.0,1,1.6102380752563477,295,0.0,1 +2295,1,0.0,1,1.6072380542755127,296,1.0,1 +2296,1,0.0,1,1.3432414531707764,297,0.0,1 +2297,1,1.0,1,1.6512374877929688,298,1.0,1 +2298,1,1.0,1,1.9202340841293335,299,1.0,1 +2299,1,1.0,1,1.5292390584945679,300,1.0,1 +2300,1,1.0,1,1.2022415399551392,301,1.0,1 +2301,1,1.0,1,1.6572375297546387,302,1.0,1 +2302,1,1.0,1,1.388240933418274,303,1.0,1 +2303,1,1.0,1,1.3702411651611328,304,0.0,1 +2304,1,1.0,1,1.8022356033325195,305,1.0,1 +2305,1,1.0,1,1.2202415466308594,306,1.0,1 +2306,1,1.0,1,1.6082381010055542,307,1.0,1 +2307,1,1.0,1,1.3692411184310913,308,0.0,1 +2308,1,1.0,1,1.2652417421340942,309,0.0,1 +2309,1,1.0,1,1.40324068069458,310,1.0,1 +2310,1,0.0,1,1.31624174118042,311,1.0,1 +2311,1,0.0,1,1.2342416048049927,312,0.0,1 +2312,1,1.0,1,1.7242366075515747,313,1.0,1 +2313,1,1.0,1,1.4572399854660034,314,1.0,1 +2314,1,1.0,1,1.4122406244277954,315,1.0,1 +2315,1,1.0,1,1.5872383117675781,316,0.0,1 +2316,1,1.0,1,1.9742333889007568,317,1.0,1 +2317,1,1.0,1,1.6362377405166626,318,1.0,1 +2318,1,1.0,1,1.4832396507263184,319,0.0,1 +2319,1,0.0,1,1.7052369117736816,320,1.0,1 +2320,1,0.0,1,1.242241621017456,321,0.0,1 +2321,1,0.0,1,1.5272390842437744,322,0.0,1 +2322,1,0.0,1,1.4222404956817627,323,0.0,1 +2323,1,1.0,1,1.499239444732666,324,0.0,1 +2324,1,1.0,1,2.125234842300415,325,0.0,1 +2325,1,0.0,1,1.3052418231964111,326,0.0,1 +2326,1,1.0,1,1.900234341621399,327,1.0,1 +2327,1,1.0,1,1.281241774559021,328,1.0,1 +2328,1,1.0,1,1.4742398262023926,329,1.0,1 +2329,1,1.0,1,1.2532416582107544,330,1.0,1 +2330,1,1.0,1,1.5752384662628174,331,0.0,1 +2331,1,0.0,1,1.878234624862671,332,1.0,1 +2332,1,0.0,1,1.5572386980056763,333,0.0,1 +2333,1,0.0,1,1.870234727859497,334,1.0,1 +2334,1,0.0,1,1.4712398052215576,335,1.0,1 +2335,1,0.0,1,1.1252413988113403,336,0.0,1 +2336,1,0.0,1,1.4592399597167969,337,0.0,1 +2337,1,0.0,1,1.4752397537231445,338,0.0,1 +2338,1,0.0,1,1.2632416486740112,339,1.0,1 +2339,1,0.0,1,1.1942415237426758,340,1.0,1 +2340,1,0.0,1,2.14223575592041,341,0.0,1 +2341,1,1.0,1,1.6302378177642822,342,0.0,1 +2342,1,0.0,1,1.473239779472351,343,0.0,1 +2343,1,1.0,1,1.366241216659546,344,0.0,1 +2344,1,0.0,1,1.1432414054870605,345,0.0,1 +2345,1,1.0,1,1.8102355003356934,346,0.0,1 +2346,1,0.0,1,1.2272416353225708,347,0.0,1 +2347,1,0.0,1,1.9092342853546143,348,0.0,1 +2348,1,0.0,1,1.3822410106658936,349,0.0,1 +2349,1,0.0,1,1.174241542816162,350,0.0,1 +2350,1,0.0,1,2.343245029449463,351,1.0,1 +2351,1,0.0,1,1.406240701675415,352,0.0,1 +2352,1,1.0,1,1.9932332038879395,353,0.0,1 +2353,1,0.0,1,1.8122354745864868,354,0.0,1 +2354,1,1.0,1,1.9392337799072266,355,0.0,1 +2355,1,1.0,1,1.8102355003356934,356,0.0,1 +2356,1,1.0,1,2.2232394218444824,357,1.0,1 +2357,1,1.0,1,1.4632399082183838,358,0.0,1 +2358,1,0.0,1,1.2592417001724243,359,0.0,1 +2359,1,1.0,1,1.5382390022277832,360,1.0,1 +2360,1,1.0,1,1.318241834640503,361,1.0,1 +2361,1,1.0,1,1.874234676361084,362,1.0,1 +2362,1,1.0,1,1.3992407321929932,363,0.0,1 +2363,1,0.0,1,1.4012407064437866,364,0.0,1 +2364,1,1.0,1,1.687237024307251,365,0.0,1 +2365,1,0.0,1,1.6272377967834473,366,0.0,1 +2366,1,1.0,1,2.058232307434082,367,1.0,1 +2367,1,1.0,1,1.3562413454055786,368,0.0,1 +2368,1,1.0,1,1.9352338314056396,369,1.0,1 +2369,1,1.0,1,1.2732417583465576,370,1.0,1 +2370,1,1.0,1,1.3832409381866455,371,1.0,1 +2371,1,1.0,1,1.4632399082183838,372,0.0,1 +2372,1,1.0,1,1.3642412424087524,373,0.0,1 +2373,1,0.0,1,1.825235366821289,374,1.0,1 +2374,1,0.0,1,1.3602412939071655,375,1.0,1 +2375,1,0.0,1,1.917234182357788,376,0.0,1 +2376,1,0.0,1,1.5112392902374268,377,1.0,1 +2377,1,0.0,1,1.8682347536087036,378,1.0,1 +2378,1,0.0,1,1.3602412939071655,379,0.0,1 +2379,1,0.0,1,1.239241600036621,380,0.0,1 +2380,1,1.0,1,2.4452497959136963,381,1.0,1 +2381,1,1.0,1,1.5752384662628174,382,1.0,1 +2382,1,1.0,1,1.7402364015579224,383,1.0,1 +2383,1,1.0,1,1.5352389812469482,384,1.0,1 +2384,1,1.0,1,1.336241602897644,385,0.0,1 +2385,1,1.0,1,1.6742372512817383,386,1.0,1 +2386,1,1.0,1,1.3992407321929932,387,1.0,1 +2387,1,1.0,1,1.4862396717071533,388,1.0,1 +2388,1,1.0,1,1.6762372255325317,389,1.0,1 +2389,1,1.0,1,1.5052393674850464,390,1.0,1 +2390,1,1.0,1,2.019232749938965,391,1.0,1 +2391,1,1.0,1,1.3672411441802979,392,1.0,1 +2392,1,1.0,1,1.3002417087554932,393,1.0,1 +2393,1,1.0,1,1.2882417440414429,394,1.0,1 +2394,1,1.0,1,1.4082406759262085,395,1.0,1 +2395,1,1.0,1,1.340241551399231,396,1.0,1 +2396,1,1.0,1,1.2832417488098145,397,1.0,1 +2397,1,1.0,1,1.2552416324615479,398,1.0,1 +2398,1,1.0,1,1.4852396249771118,399,1.0,1 +2399,1,1.0,1,1.3712410926818848,400,1.0,1 +2400,1,1.0,1,1.385240912437439,401,1.0,1 +2401,1,1.0,1,1.6532375812530518,402,1.0,1 +2402,1,1.0,1,1.4562400579452515,403,1.0,1 +2403,1,1.0,1,1.3832409381866455,404,0.0,1 +2404,1,1.0,1,1.9382338523864746,405,1.0,1 +2405,1,1.0,1,1.6472375392913818,406,0.0,1 +2406,1,1.0,1,2.081232786178589,407,1.0,1 +2407,1,1.0,1,1.7872357368469238,408,0.0,1 +2408,1,0.0,1,2.058232307434082,409,0.0,1 +2409,1,1.0,1,1.7402364015579224,410,1.0,1 +2410,1,1.0,1,1.9132342338562012,411,1.0,1 +2411,1,1.0,1,1.4392402172088623,412,1.0,1 +2412,1,1.0,1,1.7962356805801392,413,1.0,1 +2413,1,1.0,1,1.4822397232055664,414,1.0,1 +2414,1,1.0,1,1.5992381572723389,415,0.0,1 +2415,1,1.0,1,1.5012394189834595,416,1.0,1 +2416,1,0.0,1,1.4942395687103271,417,0.0,1 +2417,1,1.0,1,1.520239233970642,418,1.0,1 +2418,1,1.0,1,1.3492413759231567,419,1.0,1 +2419,1,1.0,1,1.4242404699325562,420,1.0,1 +2420,1,1.0,1,1.2732417583465576,421,0.0,1 +2421,1,0.0,1,1.9382338523864746,422,1.0,1 +2422,1,0.0,1,2.315243721008301,423,0.0,1 +2423,1,1.0,1,1.3722411394119263,424,1.0,1 +2424,1,1.0,1,1.1862415075302124,425,1.0,1 +2425,1,1.0,1,1.3262417316436768,426,1.0,1 +2426,1,1.0,1,1.4902396202087402,427,1.0,1 +2427,1,1.0,1,1.4862396717071533,428,1.0,1 +2428,1,1.0,1,1.4682399034500122,429,0.0,1 +2429,1,0.0,1,1.2682416439056396,430,0.0,1 +2430,1,0.0,1,1.4692398309707642,431,0.0,1 +2431,1,1.0,1,1.5962382555007935,432,0.0,1 +2432,1,1.0,1,1.8662347793579102,433,1.0,1 +2433,1,1.0,1,1.6482375860214233,434,0.0,1 +2434,1,0.0,1,1.477239727973938,435,1.0,1 +2435,1,0.0,1,1.411240577697754,436,0.0,1 +2436,1,0.0,1,1.9512336254119873,437,0.0,1 +2437,1,0.0,1,1.4722398519515991,438,0.0,1 +2438,1,1.0,1,1.7172367572784424,439,1.0,1 +2439,1,1.0,1,1.521239161491394,440,1.0,1 +2440,1,1.0,1,1.693237066268921,441,1.0,1 +2441,1,1.0,1,1.4212404489517212,442,1.0,1 +2442,1,1.0,1,1.5762385129928589,443,0.0,1 +2443,1,0.0,1,1.2712416648864746,444,1.0,1 +2444,1,0.0,1,1.8612349033355713,445,0.0,1 +2445,1,0.0,1,1.8062355518341064,446,0.0,1 +2446,1,1.0,1,1.782235860824585,447,1.0,1 +2447,1,1.0,1,2.0052330493927,448,1.0,1 +2448,1,1.0,1,1.428240418434143,449,0.0,1 +2449,1,0.0,1,1.6402376890182495,450,0.0,1 +2450,1,1.0,1,2.050232410430908,451,0.0,1 +2451,1,0.0,1,1.5872383117675781,452,0.0,1 +2452,1,1.0,1,1.641237735748291,453,1.0,1 +2453,1,1.0,1,1.4122406244277954,454,0.0,1 +2454,1,0.0,1,1.366241216659546,455,1.0,1 +2455,1,0.0,1,1.5842384099960327,456,1.0,1 +2456,1,0.0,1,1.691236972808838,457,1.0,1 +2457,1,0.0,1,1.5702385902404785,458,0.0,1 +2458,1,1.0,1,1.7582361698150635,459,1.0,1 +2459,1,1.0,1,1.6542375087738037,460,1.0,1 +2460,1,1.0,1,1.5342390537261963,461,1.0,1 +2461,1,1.0,1,1.3772410154342651,462,0.0,1 +2462,1,1.0,1,1.4442402124404907,463,1.0,1 +2463,1,1.0,1,1.7872357368469238,464,0.0,1 +2464,1,1.0,1,1.1732414960861206,465,0.0,1 +2465,1,1.0,1,1.381240963935852,466,1.0,1 +2466,1,0.0,1,1.9762333631515503,467,1.0,1 +2467,1,1.0,1,2.0432324409484863,468,1.0,1 +2468,1,1.0,1,1.3322416543960571,469,0.0,1 +2469,1,0.0,1,1.1612415313720703,470,0.0,1 +2470,1,0.0,1,1.4492400884628296,471,0.0,1 +2471,1,1.0,1,1.6192378997802734,472,1.0,1 +2472,1,1.0,1,1.252241611480713,473,0.0,1 +2473,1,1.0,1,1.7092368602752686,474,1.0,1 +2474,1,1.0,1,1.2922418117523193,475,1.0,1 +2475,1,1.0,1,1.3212417364120483,476,1.0,1 +2476,1,1.0,1,1.4432401657104492,477,0.0,1 +2477,1,0.0,1,1.7062368392944336,478,0.0,1 +2478,1,0.0,1,1.254241704940796,479,1.0,1 +2479,1,0.0,1,1.407240629196167,480,0.0,1 +2480,1,0.0,1,1.458240032196045,481,0.0,1 +2481,1,1.0,1,1.2022415399551392,482,1.0,1 +2482,1,1.0,1,1.2382416725158691,483,0.0,1 +2483,1,0.0,1,2.1922378540039062,484,1.0,1 +2484,1,0.0,1,1.2072415351867676,485,0.0,1 +2485,1,1.0,1,1.4702398777008057,486,1.0,1 +2486,1,1.0,1,1.590238332748413,487,1.0,1 +2487,1,1.0,1,1.3562413454055786,488,0.0,1 +2488,1,0.0,1,1.4182405471801758,489,0.0,1 +2489,1,1.0,1,1.5742385387420654,490,0.0,1 +2490,1,1.0,1,1.6552374362945557,491,1.0,1 +2491,1,1.0,1,1.3222417831420898,492,1.0,1 +2492,1,1.0,1,1.451240062713623,493,0.0,1 +2493,1,0.0,1,1.56523859500885,494,1.0,1 +2494,1,0.0,1,1.1932415962219238,495,0.0,1 +2495,1,0.0,1,1.73323655128479,496,1.0,1 +2496,1,0.0,1,1.878234624862671,497,1.0,1 +2497,1,0.0,1,1.275241732597351,498,0.0,1 +2498,1,1.0,1,1.685237169265747,499,1.0,1 +2499,1,1.0,1,1.829235315322876,500,1.0,1 +2500,1,1.0,2,1.3872408866882324,1,0.0,1 +2501,1,1.0,2,2.2592411041259766,2,0.0,1 +2502,1,0.0,2,2.157236337661743,3,1.0,1 +2503,1,0.0,2,1.2272416353225708,4,1.0,1 +2504,1,0.0,2,1.411240577697754,5,1.0,1 +2505,1,0.0,2,1.3302416801452637,6,1.0,1 +2506,1,0.0,2,1.6542375087738037,7,0.0,1 +2507,1,1.0,2,1.5192391872406006,8,0.0,1 +2508,1,0.0,2,1.2902417182922363,9,1.0,1 +2509,1,0.0,2,1.988233208656311,10,0.0,1 +2510,1,0.0,2,1.3492413759231567,11,0.0,1 +2511,1,1.0,2,1.2982417345046997,12,1.0,1 +2512,1,1.0,2,1.3652411699295044,13,1.0,1 +2513,1,1.0,2,1.3932408094406128,14,1.0,1 +2514,1,1.0,2,1.4052406549453735,15,1.0,1 +2515,1,1.0,2,1.282241702079773,16,1.0,1 +2516,1,1.0,2,1.9812333583831787,17,1.0,1 +2517,1,1.0,2,1.2802417278289795,18,0.0,1 +2518,1,0.0,2,1.8322352170944214,19,0.0,1 +2519,1,1.0,2,1.3912408351898193,20,0.0,1 +2520,1,0.0,2,1.7132368087768555,21,0.0,1 +2521,1,1.0,2,1.5082393884658813,22,1.0,1 +2522,1,1.0,2,1.4482401609420776,23,1.0,1 +2523,1,1.0,2,1.5122393369674683,24,1.0,1 +2524,1,1.0,2,1.2772417068481445,25,0.0,1 +2525,1,0.0,2,1.3862409591674805,26,0.0,1 +2526,1,1.0,2,1.2922418117523193,27,1.0,1 +2527,1,1.0,2,1.3072417974472046,28,0.0,1 +2528,1,1.0,2,1.3432414531707764,29,0.0,1 +2529,1,0.0,2,1.7682360410690308,30,0.0,1 +2530,1,1.0,2,1.2922418117523193,31,1.0,1 +2531,1,1.0,2,1.4192404747009277,32,0.0,1 +2532,1,0.0,2,1.2532416582107544,33,1.0,1 +2533,1,0.0,2,1.2802417278289795,34,0.0,1 +2534,1,1.0,2,1.2562416791915894,35,1.0,1 +2535,1,0.0,2,1.214241623878479,36,1.0,1 +2536,1,1.0,2,1.499239444732666,37,0.0,1 +2537,1,0.0,2,1.4742398262023926,38,1.0,1 +2538,1,0.0,2,1.2122416496276855,39,0.0,1 +2539,1,0.0,2,1.6512374877929688,40,0.0,1 +2540,1,1.0,2,1.690237045288086,41,1.0,1 +2541,1,1.0,2,1.5992381572723389,42,0.0,1 +2542,1,1.0,2,1.6262378692626953,43,0.0,1 +2543,1,1.0,2,1.7882357835769653,44,1.0,1 +2544,1,1.0,2,1.6522375345230103,45,1.0,1 +2545,1,1.0,2,1.406240701675415,46,1.0,1 +2546,1,1.0,2,1.4392402172088623,47,0.0,1 +2547,1,1.0,2,1.635237693786621,48,1.0,1 +2548,1,1.0,2,1.5552387237548828,49,1.0,1 +2549,1,1.0,2,1.5582387447357178,50,1.0,1 +2550,1,1.0,2,1.358241319656372,51,0.0,1 +2551,1,1.0,2,1.6212379932403564,52,0.0,1 +2552,1,1.0,2,1.9422338008880615,53,1.0,1 +2553,1,1.0,2,1.4092406034469604,54,1.0,1 +2554,1,1.0,2,1.3432414531707764,55,1.0,1 +2555,1,1.0,2,2.059232234954834,56,1.0,1 +2556,1,1.0,2,1.3522413969039917,57,0.0,1 +2557,1,0.0,2,1.5802384614944458,58,1.0,1 +2558,1,0.0,2,1.6672372817993164,59,1.0,1 +2559,1,0.0,2,1.4372402429580688,60,0.0,1 +2560,1,1.0,2,1.4052406549453735,61,0.0,1 +2561,1,0.0,2,2.2832422256469727,62,0.0,1 +2562,1,0.0,2,1.3952407836914062,63,1.0,1 +2563,1,0.0,2,1.56523859500885,64,0.0,1 +2564,1,0.0,2,1.6612374782562256,65,1.0,1 +2565,1,0.0,2,1.2552416324615479,66,1.0,1 +2566,1,0.0,2,1.2242416143417358,67,1.0,1 +2567,1,0.0,2,1.217241644859314,68,0.0,1 +2568,1,0.0,2,1.451240062713623,69,1.0,1 +2569,1,1.0,2,1.7052369117736816,70,0.0,1 +2570,1,0.0,2,1.3222417831420898,71,1.0,1 +2571,1,0.0,2,1.4412401914596558,72,1.0,1 +2572,1,1.0,2,1.3102418184280396,73,0.0,1 +2573,1,0.0,2,1.309241771697998,74,0.0,1 +2574,1,0.0,2,1.2922418117523193,75,0.0,1 +2575,1,0.0,2,1.5892384052276611,76,0.0,1 +2576,1,0.0,2,1.480239748954773,77,0.0,1 +2577,1,0.0,2,1.2682416439056396,78,0.0,1 +2578,1,1.0,2,2.054232358932495,79,0.0,1 +2579,1,0.0,2,2.184237480163574,80,0.0,1 +2580,1,0.0,2,2.063232183456421,81,0.0,1 +2581,1,0.0,2,1.6512374877929688,82,0.0,1 +2582,1,0.0,2,1.3682411909103394,83,1.0,1 +2583,1,0.0,2,1.3892408609390259,84,1.0,1 +2584,1,0.0,2,1.4302403926849365,85,1.0,1 +2585,1,0.0,2,1.318241834640503,86,0.0,1 +2586,1,0.0,2,1.3682411909103394,87,1.0,1 +2587,1,0.0,2,1.4372402429580688,88,0.0,1 +2588,1,1.0,2,1.6662373542785645,89,1.0,1 +2589,1,1.0,2,1.3222417831420898,90,1.0,1 +2590,1,0.0,2,1.174241542816162,91,0.0,1 +2591,1,1.0,2,1.2612416744232178,92,1.0,1 +2592,1,1.0,2,1.2072415351867676,93,1.0,1 +2593,1,1.0,2,1.8382351398468018,94,1.0,1 +2594,1,1.0,2,1.4412401914596558,95,0.0,1 +2595,1,1.0,2,2.0272326469421387,96,0.0,1 +2596,1,0.0,2,1.2192416191101074,97,0.0,1 +2597,1,0.0,2,2.071232318878174,98,0.0,1 +2598,1,0.0,2,1.3772410154342651,99,0.0,1 +2599,1,1.0,2,1.4082406759262085,100,1.0,1 +2600,1,1.0,2,1.8352351188659668,101,1.0,1 +2601,1,1.0,2,1.4192404747009277,102,0.0,1 +2602,1,0.0,2,1.2292416095733643,103,1.0,1 +2603,1,0.0,2,1.3282417058944702,104,1.0,1 +2604,1,0.0,2,1.7492363452911377,105,0.0,1 +2605,1,1.0,2,1.8122354745864868,106,1.0,1 +2606,1,1.0,2,1.4222404956817627,107,0.0,1 +2607,1,1.0,2,1.7072367668151855,108,1.0,1 +2608,1,1.0,2,1.4122406244277954,109,1.0,1 +2609,1,1.0,2,1.2742416858673096,110,1.0,1 +2610,1,1.0,2,1.499239444732666,111,1.0,1 +2611,1,1.0,2,1.8362351655960083,112,1.0,1 +2612,1,1.0,2,1.3902409076690674,113,0.0,1 +2613,1,1.0,2,2.1812374591827393,114,1.0,1 +2614,1,1.0,2,1.6242378950119019,115,1.0,1 +2615,1,1.0,2,1.5442389249801636,116,0.0,1 +2616,1,1.0,2,1.45524001121521,117,1.0,1 +2617,1,1.0,2,2.2482404708862305,118,0.0,1 +2618,1,0.0,2,1.4422402381896973,119,1.0,1 +2619,1,0.0,2,1.2592417001724243,120,1.0,1 +2620,1,0.0,2,1.6212379932403564,121,1.0,1 +2621,1,0.0,2,1.3692411184310913,122,1.0,1 +2622,1,0.0,2,1.2882417440414429,123,0.0,1 +2623,1,1.0,2,1.2882417440414429,124,1.0,1 +2624,1,1.0,2,1.572238564491272,125,0.0,1 +2625,1,0.0,2,2.083232879638672,126,0.0,1 +2626,1,1.0,2,1.5142393112182617,127,1.0,1 +2627,1,1.0,2,1.2802417278289795,128,1.0,1 +2628,1,1.0,2,1.2962417602539062,129,1.0,1 +2629,1,0.0,2,1.2872416973114014,130,1.0,1 +2630,1,1.0,2,1.9292340278625488,131,1.0,1 +2631,1,0.0,2,1.3612412214279175,132,0.0,1 +2632,1,1.0,2,1.3192417621612549,133,1.0,1 +2633,1,1.0,2,1.8692348003387451,134,1.0,1 +2634,1,1.0,2,1.5002394914627075,135,1.0,1 +2635,1,0.0,2,1.4532400369644165,136,1.0,1 +2636,1,1.0,2,1.5732386112213135,137,1.0,1 +2637,1,0.0,2,1.4302403926849365,138,1.0,1 +2638,1,1.0,2,1.7262365818023682,139,0.0,1 +2639,1,0.0,2,1.5312390327453613,140,0.0,1 +2640,1,0.0,2,2.024232864379883,141,1.0,1 +2641,1,0.0,2,1.660237431526184,142,1.0,1 +2642,1,0.0,2,1.4612399339675903,143,0.0,1 +2643,1,0.0,2,2.407248020172119,144,0.0,1 +2644,1,0.0,2,1.6062381267547607,145,1.0,1 +2645,1,0.0,2,1.2632416486740112,146,0.0,1 +2646,1,0.0,2,1.6572375297546387,147,0.0,1 +2647,1,1.0,2,1.547238826751709,148,1.0,1 +2648,1,1.0,2,1.3722411394119263,149,0.0,1 +2649,1,0.0,2,1.8182353973388672,150,0.0,1 +2650,1,1.0,2,1.7682360410690308,151,0.0,1 +2651,1,0.0,2,1.498239517211914,152,1.0,1 +2652,1,0.0,2,1.1292414665222168,153,1.0,1 +2653,1,0.0,2,1.1632415056228638,154,1.0,1 +2654,1,0.0,2,1.4272403717041016,155,0.0,1 +2655,1,0.0,2,2.2352399826049805,156,1.0,1 +2656,1,0.0,2,1.502239465713501,157,1.0,1 +2657,1,0.0,2,1.312241792678833,158,0.0,1 +2658,1,1.0,2,1.5862383842468262,159,0.0,1 +2659,1,0.0,2,1.9242340326309204,160,1.0,1 +2660,1,0.0,2,1.2102415561676025,161,0.0,1 +2661,1,0.0,2,1.4122406244277954,162,1.0,1 +2662,1,0.0,2,1.3642412424087524,163,1.0,1 +2663,1,0.0,2,1.2532416582107544,164,1.0,1 +2664,1,0.0,2,1.1972415447235107,165,0.0,1 +2665,1,1.0,2,1.9972331523895264,166,0.0,1 +2666,1,0.0,2,1.2492417097091675,167,1.0,1 +2667,1,0.0,2,1.4432401657104492,168,1.0,1 +2668,1,0.0,2,1.6142380237579346,169,1.0,1 +2669,1,0.0,2,1.1422414779663086,170,1.0,1 +2670,1,0.0,2,1.211241602897644,171,0.0,1 +2671,1,0.0,2,1.8642348051071167,172,1.0,1 +2672,1,0.0,2,1.242241621017456,173,1.0,1 +2673,1,0.0,2,1.6502375602722168,174,0.0,1 +2674,1,0.0,2,1.2992417812347412,175,0.0,1 +2675,1,1.0,2,1.3762410879135132,176,0.0,1 +2676,1,0.0,2,1.2282416820526123,177,0.0,1 +2677,1,0.0,2,1.6952369213104248,178,0.0,1 +2678,1,0.0,2,1.9582335948944092,179,0.0,1 +2679,1,0.0,2,1.4182405471801758,180,0.0,1 +2680,1,1.0,2,1.9362338781356812,181,1.0,1 +2681,1,1.0,2,1.480239748954773,182,1.0,1 +2682,1,1.0,2,1.337241530418396,183,1.0,1 +2683,1,1.0,2,1.211241602897644,184,0.0,1 +2684,1,1.0,2,1.543238878250122,185,0.0,1 +2685,1,1.0,2,2.0352325439453125,186,1.0,1 +2686,1,0.0,2,1.6632373332977295,187,0.0,1 +2687,1,1.0,2,1.7072367668151855,188,1.0,1 +2688,1,1.0,2,1.3482414484024048,189,1.0,1 +2689,1,0.0,2,1.3242417573928833,190,0.0,1 +2690,1,1.0,2,1.3992407321929932,191,1.0,1 +2691,1,0.0,2,1.4742398262023926,192,1.0,1 +2692,1,1.0,2,1.4272403717041016,193,0.0,1 +2693,1,0.0,2,1.2922418117523193,194,0.0,1 +2694,1,1.0,2,1.4572399854660034,195,1.0,1 +2695,1,1.0,2,1.3572412729263306,196,1.0,1 +2696,1,1.0,2,1.2722417116165161,197,0.0,1 +2697,1,0.0,2,1.7942357063293457,198,0.0,1 +2698,1,1.0,2,2.003232955932617,199,1.0,1 +2699,1,1.0,2,1.687237024307251,200,1.0,1 +2700,1,1.0,2,1.5422389507293701,201,1.0,1 +2701,1,1.0,2,1.3042417764663696,202,1.0,1 +2702,1,1.0,2,1.3312416076660156,203,0.0,1 +2703,1,1.0,2,1.735236406326294,204,1.0,1 +2704,1,1.0,2,1.4662399291992188,205,0.0,1 +2705,1,0.0,2,2.2512407302856445,206,1.0,1 +2706,1,0.0,2,1.6482375860214233,207,1.0,1 +2707,1,0.0,2,1.2012416124343872,208,1.0,1 +2708,1,0.0,2,1.4882396459579468,209,1.0,1 +2709,1,0.0,2,2.15523624420166,210,1.0,1 +2710,1,0.0,2,1.664237380027771,211,1.0,1 +2711,1,0.0,2,1.4372402429580688,212,1.0,1 +2712,1,0.0,2,1.5232391357421875,213,1.0,1 +2713,1,0.0,2,1.407240629196167,214,1.0,1 +2714,1,0.0,2,1.597238302230835,215,0.0,1 +2715,1,0.0,2,1.760236144065857,216,1.0,1 +2716,1,0.0,2,1.4052406549453735,217,0.0,1 +2717,1,1.0,2,1.6232378482818604,218,1.0,1 +2718,1,1.0,2,1.4002407789230347,219,1.0,1 +2719,1,1.0,2,1.2892417907714844,220,0.0,1 +2720,1,1.0,2,1.5732386112213135,221,1.0,1 +2721,1,1.0,2,1.9742333889007568,222,0.0,1 +2722,1,0.0,2,2.2222394943237305,223,1.0,1 +2723,1,0.0,2,1.4082406759262085,224,1.0,1 +2724,1,0.0,2,1.3992407321929932,225,0.0,1 +2725,1,1.0,2,1.5342390537261963,226,1.0,1 +2726,1,1.0,2,1.406240701675415,227,0.0,1 +2727,1,1.0,2,1.3702411651611328,228,1.0,1 +2728,1,1.0,2,1.3542413711547852,229,1.0,1 +2729,1,1.0,2,1.5222392082214355,230,1.0,1 +2730,1,1.0,2,1.686237096786499,231,0.0,1 +2731,1,1.0,2,1.2702417373657227,232,0.0,1 +2732,1,0.0,2,1.6882370710372925,233,0.0,1 +2733,1,0.0,2,1.7262365818023682,234,0.0,1 +2734,1,0.0,2,1.6082381010055542,235,0.0,1 +2735,1,0.0,2,1.239241600036621,236,1.0,1 +2736,1,0.0,2,1.2232415676116943,237,0.0,1 +2737,1,0.0,2,1.4942395687103271,238,0.0,1 +2738,1,0.0,2,2.5022525787353516,239,0.0,1 +2739,1,0.0,2,1.8872344493865967,240,0.0,1 +2740,1,0.0,2,1.4412401914596558,241,1.0,1 +2741,1,0.0,2,1.2712416648864746,242,1.0,1 +2742,1,0.0,2,1.2962417602539062,243,0.0,1 +2743,1,0.0,2,1.3292416334152222,244,1.0,1 +2744,1,0.0,2,1.2302416563034058,245,1.0,1 +2745,1,0.0,2,1.3032417297363281,246,0.0,1 +2746,1,1.0,2,1.425240397453308,247,0.0,1 +2747,1,0.0,2,1.1462414264678955,248,1.0,1 +2748,1,0.0,2,1.1832414865493774,249,1.0,1 +2749,1,0.0,2,1.7472362518310547,250,1.0,1 +2750,1,0.0,2,1.3452414274215698,251,0.0,1 +2751,1,0.0,2,1.9282339811325073,252,0.0,1 +2752,1,1.0,2,1.6072380542755127,253,1.0,1 +2753,1,1.0,2,1.642237663269043,254,1.0,1 +2754,1,1.0,2,1.5352389812469482,255,0.0,1 +2755,1,1.0,2,1.7422363758087158,256,1.0,1 +2756,1,1.0,2,1.4702398777008057,257,0.0,1 +2757,1,0.0,2,1.5182392597198486,258,0.0,1 +2758,1,1.0,2,1.9612336158752441,259,0.0,1 +2759,1,1.0,2,1.7432363033294678,260,1.0,1 +2760,1,1.0,2,1.9132342338562012,261,1.0,1 +2761,1,0.0,2,1.568238615989685,262,1.0,1 +2762,1,0.0,2,2.058232307434082,263,0.0,1 +2763,1,0.0,2,1.2802417278289795,264,1.0,1 +2764,1,1.0,2,1.8242353200912476,265,1.0,1 +2765,1,1.0,2,1.686237096786499,266,0.0,1 +2766,1,0.0,2,1.2902417182922363,267,1.0,1 +2767,1,0.0,2,1.4042407274246216,268,0.0,1 +2768,1,0.0,2,1.5592386722564697,269,0.0,1 +2769,1,0.0,2,2.4182486534118652,270,1.0,1 +2770,1,0.0,2,1.3272416591644287,271,0.0,1 +2771,1,1.0,2,1.9462337493896484,272,1.0,1 +2772,1,1.0,2,1.1942415237426758,273,0.0,1 +2773,1,0.0,2,1.8622348308563232,274,1.0,1 +2774,1,0.0,2,1.5782384872436523,275,0.0,1 +2775,1,0.0,2,1.433240294456482,276,0.0,1 +2776,1,1.0,2,1.6462376117706299,277,0.0,1 +2777,1,1.0,2,1.9972331523895264,278,1.0,1 +2778,1,1.0,2,2.0332326889038086,279,1.0,1 +2779,1,1.0,2,1.217241644859314,280,0.0,1 +2780,1,1.0,2,1.5272390842437744,281,1.0,1 +2781,1,1.0,2,1.318241834640503,282,0.0,1 +2782,1,1.0,2,1.78523588180542,283,0.0,1 +2783,1,1.0,2,1.7732360363006592,284,1.0,1 +2784,1,1.0,2,1.433240294456482,285,1.0,1 +2785,1,0.0,2,1.362241268157959,286,0.0,1 +2786,1,1.0,2,1.4822397232055664,287,1.0,1 +2787,1,1.0,2,1.4372402429580688,288,1.0,1 +2788,1,1.0,2,1.6482375860214233,289,0.0,1 +2789,1,0.0,2,1.4392402172088623,290,0.0,1 +2790,1,0.0,2,1.892234444618225,291,0.0,1 +2791,1,0.0,2,1.5662386417388916,292,0.0,1 +2792,1,1.0,2,1.3642412424087524,293,0.0,1 +2793,1,0.0,2,1.4472401142120361,294,0.0,1 +2794,1,1.0,2,1.4522401094436646,295,0.0,1 +2795,1,1.0,2,1.4352402687072754,296,1.0,1 +2796,1,1.0,2,1.5572386980056763,297,1.0,1 +2797,1,1.0,2,1.381240963935852,298,0.0,1 +2798,1,1.0,2,1.7042368650436401,299,1.0,1 +2799,1,1.0,2,1.7262365818023682,300,1.0,1 +2800,1,1.0,2,1.7392363548278809,301,1.0,1 +2801,1,1.0,2,1.9682334661483765,302,0.0,1 +2802,1,0.0,2,1.3172417879104614,303,0.0,1 +2803,1,0.0,2,1.6712372303009033,304,1.0,1 +2804,1,0.0,2,1.2072415351867676,305,0.0,1 +2805,1,1.0,2,1.2662416696548462,306,0.0,1 +2806,1,1.0,2,1.385240912437439,307,1.0,1 +2807,1,0.0,2,1.2712416648864746,308,1.0,1 +2808,1,1.0,2,1.31624174118042,309,1.0,1 +2809,1,0.0,2,1.8472349643707275,310,1.0,1 +2810,1,0.0,2,1.9412338733673096,311,0.0,1 +2811,1,1.0,2,1.4972394704818726,312,1.0,1 +2812,1,1.0,2,1.8992342948913574,313,0.0,1 +2813,1,1.0,2,1.8832345008850098,314,0.0,1 +2814,1,1.0,2,1.7452363967895508,315,1.0,1 +2815,1,0.0,2,1.3002417087554932,316,1.0,1 +2816,1,0.0,2,1.7542362213134766,317,1.0,1 +2817,1,0.0,2,1.5092393159866333,318,0.0,1 +2818,1,1.0,2,1.1952415704727173,319,1.0,1 +2819,1,1.0,2,1.433240294456482,320,1.0,1 +2820,1,1.0,2,1.2992417812347412,321,1.0,1 +2821,1,1.0,2,1.59423828125,322,0.0,1 +2822,1,0.0,2,1.8592348098754883,323,0.0,1 +2823,1,0.0,2,1.7862358093261719,324,1.0,1 +2824,1,0.0,2,1.1992415189743042,325,1.0,1 +2825,1,0.0,2,1.3712410926818848,326,1.0,1 +2826,1,0.0,2,1.2382416725158691,327,0.0,1 +2827,1,0.0,2,1.5382390022277832,328,0.0,1 +2828,1,0.0,2,1.9372339248657227,329,0.0,1 +2829,1,1.0,2,1.7142367362976074,330,0.0,1 +2830,1,0.0,2,1.4452401399612427,331,1.0,1 +2831,1,0.0,2,1.2732417583465576,332,1.0,1 +2832,1,0.0,2,2.0442323684692383,333,1.0,1 +2833,1,0.0,2,1.3102418184280396,334,1.0,1 +2834,1,0.0,2,1.3112417459487915,335,0.0,1 +2835,1,1.0,2,1.3452414274215698,336,1.0,1 +2836,1,1.0,2,1.731236457824707,337,0.0,1 +2837,1,1.0,2,1.5922383069992065,338,0.0,1 +2838,1,0.0,2,1.638237714767456,339,0.0,1 +2839,1,0.0,2,1.5302391052246094,340,0.0,1 +2840,1,1.0,2,1.6662373542785645,341,1.0,1 +2841,1,1.0,2,1.5762385129928589,342,0.0,1 +2842,1,0.0,2,1.340241551399231,343,1.0,1 +2843,1,0.0,2,1.2572417259216309,344,1.0,1 +2844,1,0.0,2,1.9122341871261597,345,1.0,1 +2845,1,0.0,2,1.6672372817993164,346,1.0,1 +2846,1,0.0,2,1.5482388734817505,347,0.0,1 +2847,1,0.0,2,1.7742359638214111,348,0.0,1 +2848,1,0.0,2,1.355241298675537,349,0.0,1 +2849,1,1.0,2,2.2572410106658936,350,0.0,1 +2850,1,0.0,2,1.4612399339675903,351,1.0,1 +2851,1,0.0,2,1.8442350625991821,352,0.0,1 +2852,1,0.0,2,1.5312390327453613,353,1.0,1 +2853,1,0.0,2,1.3222417831420898,354,0.0,1 +2854,1,0.0,2,1.3172417879104614,355,0.0,1 +2855,1,0.0,2,1.7502362728118896,356,1.0,1 +2856,1,0.0,2,1.6982369422912598,357,1.0,1 +2857,1,0.0,2,1.2842416763305664,358,0.0,1 +2858,1,0.0,2,1.91823410987854,359,0.0,1 +2859,1,1.0,2,1.7642360925674438,360,0.0,1 +2860,1,0.0,2,1.4912395477294922,361,0.0,1 +2861,1,0.0,2,1.7762359380722046,362,0.0,1 +2862,1,0.0,2,2.0392324924468994,363,0.0,1 +2863,1,1.0,2,1.7972357273101807,364,1.0,1 +2864,1,1.0,2,1.8022356033325195,365,1.0,1 +2865,1,1.0,2,1.5322390794754028,366,1.0,1 +2866,1,1.0,2,1.4392402172088623,367,1.0,1 +2867,1,1.0,2,1.546238899230957,368,1.0,1 +2868,1,1.0,2,1.3772410154342651,369,0.0,1 +2869,1,0.0,2,1.550238847732544,370,1.0,1 +2870,1,0.0,2,1.3392415046691895,371,1.0,1 +2871,1,0.0,2,1.6672372817993164,372,1.0,1 +2872,1,0.0,2,1.3492413759231567,373,1.0,1 +2873,1,0.0,2,1.3532413244247437,374,1.0,1 +2874,1,0.0,2,1.3042417764663696,375,1.0,1 +2875,1,0.0,2,1.6002382040023804,376,0.0,1 +2876,1,1.0,2,1.495239496231079,377,0.0,1 +2877,1,0.0,2,1.7662360668182373,378,0.0,1 +2878,1,0.0,2,1.690237045288086,379,1.0,1 +2879,1,0.0,2,1.7442363500595093,380,1.0,1 +2880,1,0.0,2,1.3702411651611328,381,1.0,1 +2881,1,0.0,2,1.215241551399231,382,1.0,1 +2882,1,0.0,2,1.1712415218353271,383,0.0,1 +2883,1,1.0,2,2.331244468688965,384,1.0,1 +2884,1,0.0,2,1.6172380447387695,385,1.0,1 +2885,1,1.0,2,1.2972418069839478,386,1.0,1 +2886,1,0.0,2,1.4692398309707642,387,0.0,1 +2887,1,1.0,2,1.6152379512786865,388,1.0,1 +2888,1,1.0,2,1.5692386627197266,389,1.0,1 +2889,1,1.0,2,1.3382415771484375,390,0.0,1 +2890,1,0.0,2,1.8552348613739014,391,0.0,1 +2891,1,1.0,2,1.31624174118042,392,1.0,1 +2892,1,1.0,2,1.2092416286468506,393,0.0,1 +2893,1,1.0,2,2.394247531890869,394,1.0,1 +2894,1,1.0,2,1.940233826637268,395,0.0,1 +2895,1,1.0,2,1.337241530418396,396,0.0,1 +2896,1,0.0,2,1.3972407579421997,397,1.0,1 +2897,1,0.0,2,1.366241216659546,398,0.0,1 +2898,1,1.0,2,1.689237117767334,399,1.0,1 +2899,1,1.0,2,1.5642386674880981,400,1.0,1 +2900,1,1.0,2,1.7362364530563354,401,1.0,1 +2901,1,1.0,2,1.4652398824691772,402,1.0,1 +2902,1,1.0,2,1.9982330799102783,403,1.0,1 +2903,1,0.0,2,1.7422363758087158,404,0.0,1 +2904,1,1.0,2,1.341241478919983,405,0.0,1 +2905,1,0.0,2,1.6272377967834473,406,0.0,1 +2906,1,1.0,2,1.7592360973358154,407,1.0,1 +2907,1,1.0,2,1.43224036693573,408,0.0,1 +2908,1,1.0,2,1.664237380027771,409,0.0,1 +2909,1,1.0,2,1.4402402639389038,410,0.0,1 +2910,1,1.0,2,1.783235788345337,411,0.0,1 +2911,1,1.0,2,1.6302378177642822,412,0.0,1 +2912,1,0.0,2,1.5222392082214355,413,0.0,1 +2913,1,1.0,2,1.7912356853485107,414,1.0,1 +2914,1,1.0,2,1.3172417879104614,415,1.0,1 +2915,1,1.0,2,1.547238826751709,416,1.0,1 +2916,1,1.0,2,1.8342351913452148,417,0.0,1 +2917,1,1.0,2,1.3242417573928833,418,1.0,1 +2918,1,1.0,2,1.384240984916687,419,0.0,1 +2919,1,0.0,2,1.9082342386245728,420,0.0,1 +2920,1,0.0,2,1.3932408094406128,421,1.0,1 +2921,1,0.0,2,1.8642348051071167,422,0.0,1 +2922,1,0.0,2,2.085232973098755,423,1.0,1 +2923,1,0.0,2,1.2312415838241577,424,0.0,1 +2924,1,1.0,2,1.2642416954040527,425,1.0,1 +2925,1,1.0,2,1.5082393884658813,426,0.0,1 +2926,1,0.0,2,1.3392415046691895,427,0.0,1 +2927,1,0.0,2,1.3002417087554932,428,0.0,1 +2928,1,0.0,2,1.7542362213134766,429,1.0,1 +2929,1,0.0,2,1.6772372722625732,430,0.0,1 +2930,1,0.0,2,1.503239393234253,431,0.0,1 +2931,1,1.0,2,1.5992381572723389,432,0.0,1 +2932,1,0.0,2,1.5882383584976196,433,1.0,1 +2933,1,0.0,2,1.333241581916809,434,1.0,1 +2934,1,0.0,2,1.275241732597351,435,1.0,1 +2935,1,0.0,2,1.1452414989471436,436,0.0,1 +2936,1,0.0,2,1.2972418069839478,437,0.0,1 +2937,1,1.0,2,1.5232391357421875,438,1.0,1 +2938,1,1.0,2,1.7762359380722046,439,1.0,1 +2939,1,1.0,2,1.5872383117675781,440,0.0,1 +2940,1,1.0,2,1.6022381782531738,441,0.0,1 +2941,1,1.0,2,1.4272403717041016,442,1.0,1 +2942,1,1.0,2,1.3002417087554932,443,1.0,1 +2943,1,1.0,2,1.480239748954773,444,0.0,1 +2944,1,0.0,2,1.388240933418274,445,1.0,1 +2945,1,0.0,2,1.2552416324615479,446,1.0,1 +2946,1,0.0,2,1.572238564491272,447,0.0,1 +2947,1,0.0,2,1.9942331314086914,448,0.0,1 +2948,1,0.0,2,1.8032355308532715,449,0.0,1 +2949,1,1.0,2,1.6142380237579346,450,0.0,1 +2950,1,1.0,2,1.3822410106658936,451,1.0,1 +2951,1,1.0,2,1.3342416286468506,452,0.0,1 +2952,1,0.0,2,1.6282378435134888,453,1.0,1 +2953,1,0.0,2,1.2692416906356812,454,1.0,1 +2954,1,0.0,2,1.340241551399231,455,1.0,1 +2955,1,0.0,2,1.1982415914535522,456,1.0,1 +2956,1,0.0,2,1.2652417421340942,457,0.0,1 +2957,1,0.0,2,1.9112341403961182,458,1.0,1 +2958,1,0.0,2,1.315241813659668,459,0.0,1 +2959,1,0.0,2,1.4892395734786987,460,1.0,1 +2960,1,1.0,2,1.366241216659546,461,1.0,1 +2961,1,0.0,2,1.6752371788024902,462,1.0,1 +2962,1,0.0,2,1.1982415914535522,463,1.0,1 +2963,1,1.0,2,2.110234260559082,464,1.0,1 +2964,1,0.0,2,1.2052415609359741,465,0.0,1 +2965,1,1.0,2,1.3642412424087524,466,1.0,1 +2966,1,0.0,2,1.6252379417419434,467,1.0,1 +2967,1,1.0,2,1.6242378950119019,468,1.0,1 +2968,1,1.0,2,1.3382415771484375,469,0.0,1 +2969,1,0.0,2,1.8172354698181152,470,0.0,1 +2970,1,0.0,2,1.4352402687072754,471,0.0,1 +2971,1,1.0,2,1.4202405214309692,472,1.0,1 +2972,1,1.0,2,1.4092406034469604,473,1.0,1 +2973,1,1.0,2,1.1792415380477905,474,0.0,1 +2974,1,0.0,2,1.5092393159866333,475,0.0,1 +2975,1,0.0,2,1.306241750717163,476,1.0,1 +2976,1,0.0,2,1.686237096786499,477,1.0,1 +2977,1,0.0,2,1.3352415561676025,478,1.0,1 +2978,1,0.0,2,1.275241732597351,479,0.0,1 +2979,1,1.0,2,1.8572349548339844,480,0.0,1 +2980,1,0.0,2,1.1492414474487305,481,0.0,1 +2981,1,0.0,2,1.3522413969039917,482,0.0,1 +2982,1,0.0,2,1.616237998008728,483,1.0,1 +2983,1,0.0,2,1.244241714477539,484,0.0,1 +2984,1,0.0,2,1.3602412939071655,485,1.0,1 +2985,1,0.0,2,1.4682399034500122,486,0.0,1 +2986,1,1.0,2,2.2842421531677246,487,1.0,1 +2987,1,1.0,2,1.6882370710372925,488,1.0,1 +2988,1,1.0,2,1.3892408609390259,489,0.0,1 +2989,1,0.0,2,2.0472323894500732,490,0.0,1 +2990,1,0.0,2,1.2022415399551392,491,1.0,1 +2991,1,0.0,2,1.4572399854660034,492,1.0,1 +2992,1,0.0,2,1.2922418117523193,493,0.0,1 +2993,1,0.0,2,1.9982330799102783,494,0.0,1 +2994,1,1.0,2,1.7892358303070068,495,1.0,1 +2995,1,1.0,2,1.635237693786621,496,1.0,1 +2996,1,1.0,2,1.5102393627166748,497,0.0,1 +2997,1,0.0,2,1.867234706878662,498,0.0,1 +2998,1,1.0,2,1.4652398824691772,499,1.0,1 +2999,1,1.0,2,1.664237380027771,500,1.0,1 +3000,2,0.0,0,1.7565761804580688,1,0.0,1 +3001,2,0.0,0,1.4525800943374634,2,0.0,1 +3002,2,1.0,0,1.4095805883407593,3,0.0,1 +3003,2,1.0,0,2.0445735454559326,4,1.0,1 +3004,2,1.0,0,1.7765759229660034,5,1.0,1 +3005,2,1.0,0,1.376581072807312,6,0.0,1 +3006,2,1.0,0,1.6435775756835938,7,0.0,1 +3007,2,0.0,0,1.9685734510421753,8,1.0,1 +3008,2,0.0,0,1.246582269668579,9,0.0,1 +3009,2,0.0,0,1.307581901550293,10,0.0,1 +3010,2,0.0,0,1.512579321861267,11,0.0,1 +3011,2,1.0,0,1.633577823638916,12,1.0,1 +3012,2,1.0,0,2.148578405380249,13,1.0,1 +3013,2,0.0,0,1.7015769481658936,14,0.0,1 +3014,2,1.0,0,1.5485788583755493,15,1.0,1 +3015,2,1.0,0,1.2475823163986206,16,1.0,1 +3016,2,1.0,0,1.4325803518295288,17,1.0,1 +3017,2,1.0,0,1.5885783433914185,18,1.0,1 +3018,2,1.0,0,1.2145822048187256,19,1.0,1 +3019,2,1.0,0,1.8365751504898071,20,1.0,1 +3020,2,1.0,0,1.2425823211669922,21,1.0,1 +3021,2,1.0,0,1.5775785446166992,22,1.0,1 +3022,2,1.0,0,1.4975794553756714,23,0.0,1 +3023,2,1.0,0,1.2355822324752808,24,1.0,1 +3024,2,0.0,0,1.682577133178711,25,0.0,1 +3025,2,1.0,0,1.984573245048523,26,1.0,1 +3026,2,1.0,0,1.862574815750122,27,0.0,1 +3027,2,1.0,0,1.7565761804580688,28,1.0,1 +3028,2,1.0,0,1.5625786781311035,29,0.0,1 +3029,2,0.0,0,1.1415820121765137,30,0.0,1 +3030,2,1.0,0,1.402580738067627,31,1.0,1 +3031,2,1.0,0,1.2765823602676392,32,1.0,1 +3032,2,1.0,0,1.380581021308899,33,1.0,1 +3033,2,1.0,0,1.2735823392868042,34,1.0,1 +3034,2,1.0,0,1.3005820512771606,35,1.0,1 +3035,2,1.0,0,1.2745823860168457,36,1.0,1 +3036,2,1.0,0,1.4015806913375854,37,1.0,1 +3037,2,1.0,0,1.7875757217407227,38,1.0,1 +3038,2,1.0,0,1.194582223892212,39,1.0,1 +3039,2,1.0,0,1.4635798931121826,40,1.0,1 +3040,2,1.0,0,1.3965808153152466,41,1.0,1 +3041,2,1.0,0,1.2885822057724,42,1.0,1 +3042,2,1.0,0,1.7805758714675903,43,1.0,1 +3043,2,1.0,0,1.5185792446136475,44,1.0,1 +3044,2,1.0,0,1.5405789613723755,45,1.0,1 +3045,2,1.0,0,1.3315815925598145,46,1.0,1 +3046,2,1.0,0,1.490579605102539,47,1.0,1 +3047,2,1.0,0,1.7395763397216797,48,0.0,1 +3048,2,0.0,0,1.9015743732452393,49,0.0,1 +3049,2,0.0,0,1.2175822257995605,50,1.0,1 +3050,2,0.0,0,1.1875821352005005,51,1.0,1 +3051,2,0.0,0,1.652577519416809,52,1.0,1 +3052,2,0.0,0,1.2475823163986206,53,0.0,1 +3053,2,1.0,0,1.3115818500518799,54,0.0,1 +3054,2,0.0,0,1.3045819997787476,55,0.0,1 +3055,2,1.0,0,1.2485822439193726,56,1.0,1 +3056,2,1.0,0,1.5915782451629639,57,1.0,1 +3057,2,1.0,0,1.3925808668136597,58,0.0,1 +3058,2,0.0,0,1.3835809230804443,59,0.0,1 +3059,2,1.0,0,2.158578872680664,60,1.0,1 +3060,2,0.0,0,1.8365751504898071,61,0.0,1 +3061,2,1.0,0,1.469579815864563,62,1.0,1 +3062,2,1.0,0,1.2105822563171387,63,0.0,1 +3063,2,1.0,0,1.185582160949707,64,1.0,1 +3064,2,1.0,0,1.5885783433914185,65,0.0,1 +3065,2,1.0,0,1.2865822315216064,66,1.0,1 +3066,2,1.0,0,1.249582290649414,67,1.0,1 +3067,2,1.0,0,1.5185792446136475,68,1.0,1 +3068,2,1.0,0,1.2485822439193726,69,1.0,1 +3069,2,1.0,0,1.5465788841247559,70,1.0,1 +3070,2,1.0,0,1.769576072692871,71,1.0,1 +3071,2,1.0,0,1.2695822715759277,72,1.0,1 +3072,2,1.0,0,1.4065806865692139,73,1.0,1 +3073,2,1.0,0,1.2335822582244873,74,1.0,1 +3074,2,1.0,0,1.5715785026550293,75,1.0,1 +3075,2,1.0,0,1.4705798625946045,76,0.0,1 +3076,2,0.0,0,1.4755797386169434,77,0.0,1 +3077,2,1.0,0,1.5535788536071777,78,1.0,1 +3078,2,1.0,0,1.1365820169448853,79,1.0,1 +3079,2,1.0,0,1.255582332611084,80,1.0,1 +3080,2,1.0,0,1.186582088470459,81,1.0,1 +3081,2,1.0,0,1.5985782146453857,82,1.0,1 +3082,2,1.0,0,1.3085819482803345,83,1.0,1 +3083,2,1.0,0,1.6595773696899414,84,1.0,1 +3084,2,1.0,0,1.3225817680358887,85,1.0,1 +3085,2,1.0,0,1.2625823020935059,86,1.0,1 +3086,2,1.0,0,1.2385822534561157,87,1.0,1 +3087,2,1.0,0,2.0435733795166016,88,1.0,1 +3088,2,1.0,0,1.355581283569336,89,1.0,1 +3089,2,1.0,0,1.1735820770263672,90,1.0,1 +3090,2,1.0,0,1.351581335067749,91,1.0,1 +3091,2,1.0,0,1.2645822763442993,92,1.0,1 +3092,2,1.0,0,1.7495763301849365,93,1.0,1 +3093,2,1.0,0,1.5965782403945923,94,0.0,1 +3094,2,0.0,0,1.3395814895629883,95,1.0,1 +3095,2,0.0,0,2.001573085784912,96,0.0,1 +3096,2,1.0,0,1.3165818452835083,97,1.0,1 +3097,2,1.0,0,1.2025821208953857,98,1.0,1 +3098,2,1.0,0,1.9125741720199585,99,1.0,1 +3099,2,1.0,0,1.6225779056549072,100,1.0,1 +3100,2,1.0,0,1.3915808200836182,101,1.0,1 +3101,2,1.0,0,1.2785823345184326,102,1.0,1 +3102,2,1.0,0,1.3625812530517578,103,1.0,1 +3103,2,1.0,0,1.5235791206359863,104,1.0,1 +3104,2,1.0,0,1.4825797080993652,105,1.0,1 +3105,2,1.0,0,1.222582221031189,106,1.0,1 +3106,2,0.0,0,1.9375739097595215,107,0.0,1 +3107,2,1.0,0,1.1735820770263672,108,1.0,1 +3108,2,1.0,0,1.376581072807312,109,1.0,1 +3109,2,1.0,0,1.213582158088684,110,1.0,1 +3110,2,1.0,0,1.3945808410644531,111,1.0,1 +3111,2,1.0,0,1.6735773086547852,112,1.0,1 +3112,2,1.0,0,1.3115818500518799,113,1.0,1 +3113,2,0.0,0,1.5145792961120605,114,0.0,1 +3114,2,1.0,0,1.512579321861267,115,1.0,1 +3115,2,0.0,0,1.9215741157531738,116,0.0,1 +3116,2,1.0,0,1.403580665588379,117,1.0,1 +3117,2,1.0,0,1.564578652381897,118,1.0,1 +3118,2,0.0,0,1.513579249382019,119,0.0,1 +3119,2,1.0,0,1.4235804080963135,120,0.0,1 +3120,2,1.0,0,1.42158043384552,121,1.0,1 +3121,2,1.0,0,1.3205817937850952,122,1.0,1 +3122,2,1.0,0,1.4805797338485718,123,1.0,1 +3123,2,1.0,0,1.9355738162994385,124,1.0,1 +3124,2,1.0,0,1.4975794553756714,125,1.0,1 +3125,2,1.0,0,1.630577802658081,126,1.0,1 +3126,2,1.0,0,1.4135805368423462,127,1.0,1 +3127,2,1.0,0,1.9005743265151978,128,1.0,1 +3128,2,1.0,0,1.2355822324752808,129,1.0,1 +3129,2,1.0,0,1.58957839012146,130,1.0,1 +3130,2,1.0,0,1.395580768585205,131,1.0,1 +3131,2,1.0,0,1.5815784931182861,132,1.0,1 +3132,2,1.0,0,1.4625799655914307,133,1.0,1 +3133,2,1.0,0,1.53757905960083,134,1.0,1 +3134,2,1.0,0,1.3435814380645752,135,1.0,1 +3135,2,1.0,0,1.3125818967819214,136,0.0,1 +3136,2,1.0,0,1.1775821447372437,137,1.0,1 +3137,2,1.0,0,1.3705811500549316,138,0.0,1 +3138,2,1.0,0,1.8085755109786987,139,1.0,1 +3139,2,1.0,0,1.6405776739120483,140,1.0,1 +3140,2,1.0,0,1.310581922531128,141,1.0,1 +3141,2,1.0,0,1.5785784721374512,142,1.0,1 +3142,2,1.0,0,1.5015794038772583,143,1.0,1 +3143,2,1.0,0,1.3155817985534668,144,1.0,1 +3144,2,1.0,0,1.284582257270813,145,1.0,1 +3145,2,1.0,0,1.7105767726898193,146,1.0,1 +3146,2,1.0,0,1.325581669807434,147,1.0,1 +3147,2,1.0,0,1.3785810470581055,148,1.0,1 +3148,2,1.0,0,1.6715772151947021,149,1.0,1 +3149,2,1.0,0,1.4925795793533325,150,1.0,1 +3150,2,1.0,0,1.2405822277069092,151,1.0,1 +3151,2,1.0,0,1.8295753002166748,152,1.0,1 +3152,2,1.0,0,1.2625823020935059,153,1.0,1 +3153,2,1.0,0,1.284582257270813,154,1.0,1 +3154,2,1.0,0,1.539578914642334,155,1.0,1 +3155,2,1.0,0,2.0545740127563477,156,1.0,1 +3156,2,1.0,0,1.6365777254104614,157,1.0,1 +3157,2,1.0,0,1.4755797386169434,158,1.0,1 +3158,2,1.0,0,1.61257803440094,159,1.0,1 +3159,2,1.0,0,1.2345821857452393,160,1.0,1 +3160,2,1.0,0,1.3425815105438232,161,1.0,1 +3161,2,1.0,0,1.4645799398422241,162,1.0,1 +3162,2,1.0,0,1.3565813302993774,163,1.0,1 +3163,2,1.0,0,1.5815784931182861,164,1.0,1 +3164,2,1.0,0,1.6405776739120483,165,1.0,1 +3165,2,1.0,0,1.3535813093185425,166,1.0,1 +3166,2,1.0,0,1.5845783948898315,167,1.0,1 +3167,2,1.0,0,1.5055793523788452,168,1.0,1 +3168,2,1.0,0,1.5705785751342773,169,1.0,1 +3169,2,1.0,0,1.2885822057724,170,1.0,1 +3170,2,1.0,0,1.3605812788009644,171,1.0,1 +3171,2,1.0,0,1.4785797595977783,172,1.0,1 +3172,2,1.0,0,1.8095755577087402,173,1.0,1 +3173,2,0.0,0,1.4185805320739746,174,0.0,1 +3174,2,1.0,0,1.4645799398422241,175,0.0,1 +3175,2,1.0,0,1.351581335067749,176,0.0,1 +3176,2,0.0,0,2.429591655731201,177,1.0,1 +3177,2,0.0,0,1.9725733995437622,178,1.0,1 +3178,2,0.0,0,1.3785810470581055,179,0.0,1 +3179,2,0.0,0,1.7605761289596558,180,0.0,1 +3180,2,0.0,0,1.7645760774612427,181,0.0,1 +3181,2,0.0,0,2.144578218460083,182,0.0,1 +3182,2,0.0,0,1.1705820560455322,183,0.0,1 +3183,2,1.0,0,1.246582269668579,184,1.0,1 +3184,2,1.0,0,1.6705772876739502,185,1.0,1 +3185,2,1.0,0,1.6715772151947021,186,1.0,1 +3186,2,1.0,0,1.5035793781280518,187,1.0,1 +3187,2,1.0,0,1.6285778284072876,188,1.0,1 +3188,2,1.0,0,1.4405802488327026,189,0.0,1 +3189,2,1.0,0,1.7825758457183838,190,1.0,1 +3190,2,1.0,0,1.5555787086486816,191,1.0,1 +3191,2,1.0,0,1.5045794248580933,192,1.0,1 +3192,2,1.0,0,1.2825822830200195,193,1.0,1 +3193,2,1.0,0,1.7085767984390259,194,1.0,1 +3194,2,1.0,0,1.2245821952819824,195,1.0,1 +3195,2,1.0,0,1.6045781373977661,196,1.0,1 +3196,2,1.0,0,1.3265817165374756,197,1.0,1 +3197,2,1.0,0,1.3625812530517578,198,1.0,1 +3198,2,1.0,0,1.5145792961120605,199,1.0,1 +3199,2,1.0,0,1.5725785493850708,200,1.0,1 +3200,2,1.0,0,1.8905744552612305,201,1.0,1 +3201,2,1.0,0,1.2635823488235474,202,1.0,1 +3202,2,1.0,0,1.6995768547058105,203,0.0,1 +3203,2,1.0,0,1.2085821628570557,204,1.0,1 +3204,2,1.0,0,1.2235822677612305,205,1.0,1 +3205,2,1.0,0,1.256582260131836,206,1.0,1 +3206,2,1.0,0,1.3945808410644531,207,1.0,1 +3207,2,1.0,0,1.2375822067260742,208,0.0,1 +3208,2,1.0,0,1.6705772876739502,209,1.0,1 +3209,2,1.0,0,1.915574073791504,210,1.0,1 +3210,2,1.0,0,1.6555774211883545,211,1.0,1 +3211,2,1.0,0,1.1965821981430054,212,1.0,1 +3212,2,1.0,0,1.4115805625915527,213,1.0,1 +3213,2,0.0,0,1.1815820932388306,214,0.0,1 +3214,2,1.0,0,1.1415820121765137,215,1.0,1 +3215,2,1.0,0,1.4625799655914307,216,1.0,1 +3216,2,1.0,0,1.6895771026611328,217,0.0,1 +3217,2,1.0,0,1.4315803050994873,218,0.0,1 +3218,2,0.0,0,1.7825758457183838,219,0.0,1 +3219,2,1.0,0,1.6685773134231567,220,1.0,1 +3220,2,1.0,0,1.2045822143554688,221,1.0,1 +3221,2,1.0,0,1.1595821380615234,222,1.0,1 +3222,2,1.0,0,1.3085819482803345,223,0.0,1 +3223,2,1.0,0,1.2005821466445923,224,1.0,1 +3224,2,1.0,0,1.2985820770263672,225,1.0,1 +3225,2,1.0,0,1.2725822925567627,226,1.0,1 +3226,2,1.0,0,1.2435822486877441,227,1.0,1 +3227,2,1.0,0,1.469579815864563,228,1.0,1 +3228,2,1.0,0,1.3345816135406494,229,1.0,1 +3229,2,1.0,0,1.2625823020935059,230,1.0,1 +3230,2,1.0,0,1.2015821933746338,231,0.0,1 +3231,2,0.0,0,1.5155792236328125,232,0.0,1 +3232,2,1.0,0,1.373581051826477,233,1.0,1 +3233,2,1.0,0,1.4365803003311157,234,1.0,1 +3234,2,1.0,0,1.2575823068618774,235,1.0,1 +3235,2,1.0,0,1.6495776176452637,236,1.0,1 +3236,2,1.0,0,1.1475820541381836,237,1.0,1 +3237,2,1.0,0,1.862574815750122,238,1.0,1 +3238,2,1.0,0,1.859574794769287,239,1.0,1 +3239,2,1.0,0,1.8135755062103271,240,1.0,1 +3240,2,1.0,0,1.5255790948867798,241,1.0,1 +3241,2,1.0,0,1.729576587677002,242,1.0,1 +3242,2,1.0,0,1.6145780086517334,243,1.0,1 +3243,2,1.0,0,1.6865770816802979,244,1.0,1 +3244,2,1.0,0,1.6035780906677246,245,1.0,1 +3245,2,1.0,0,1.2735823392868042,246,0.0,1 +3246,2,1.0,0,1.2935820817947388,247,1.0,1 +3247,2,1.0,0,1.3125818967819214,248,1.0,1 +3248,2,1.0,0,1.122581958770752,249,0.0,1 +3249,2,0.0,0,1.4005807638168335,250,0.0,1 +3250,2,0.0,0,1.9205740690231323,251,0.0,1 +3251,2,0.0,0,1.6585774421691895,252,0.0,1 +3252,2,0.0,0,1.4375802278518677,253,0.0,1 +3253,2,0.0,0,1.4705798625946045,254,0.0,1 +3254,2,1.0,0,1.7885757684707642,255,1.0,1 +3255,2,1.0,0,1.5405789613723755,256,1.0,1 +3256,2,1.0,0,1.4615799188613892,257,1.0,1 +3257,2,1.0,0,1.5285791158676147,258,1.0,1 +3258,2,1.0,0,1.5015794038772583,259,0.0,1 +3259,2,1.0,0,1.7585761547088623,260,1.0,1 +3260,2,1.0,0,1.2275822162628174,261,0.0,1 +3261,2,0.0,0,1.8085755109786987,262,0.0,1 +3262,2,0.0,0,1.2335822582244873,263,1.0,1 +3263,2,0.0,0,1.2105822563171387,264,0.0,1 +3264,2,1.0,0,2.10957670211792,265,1.0,1 +3265,2,1.0,0,1.4995794296264648,266,1.0,1 +3266,2,1.0,0,1.1535820960998535,267,0.0,1 +3267,2,0.0,0,1.5265791416168213,268,1.0,1 +3268,2,0.0,0,1.7325764894485474,269,0.0,1 +3269,2,0.0,0,1.4975794553756714,270,0.0,1 +3270,2,1.0,0,1.535578966140747,271,0.0,1 +3271,2,0.0,0,1.3375815153121948,272,0.0,1 +3272,2,0.0,0,2.2645838260650635,273,0.0,1 +3273,2,0.0,0,1.3855808973312378,274,0.0,1 +3274,2,1.0,0,1.957573652267456,275,1.0,1 +3275,2,1.0,0,1.777575969696045,276,0.0,1 +3276,2,0.0,0,1.5065793991088867,277,1.0,1 +3277,2,0.0,0,1.4515800476074219,278,0.0,1 +3278,2,1.0,0,1.7725759744644165,279,1.0,1 +3279,2,1.0,0,1.446580171585083,280,1.0,1 +3280,2,1.0,0,1.5365790128707886,281,1.0,1 +3281,2,1.0,0,1.2275822162628174,282,1.0,1 +3282,2,1.0,0,1.7065768241882324,283,1.0,1 +3283,2,0.0,0,1.1115820407867432,284,1.0,1 +3284,2,1.0,0,1.182582139968872,285,1.0,1 +3285,2,1.0,0,2.2895851135253906,286,1.0,1 +3286,2,1.0,0,1.6885770559310913,287,1.0,1 +3287,2,1.0,0,1.6885770559310913,288,1.0,1 +3288,2,1.0,0,1.4095805883407593,289,0.0,1 +3289,2,0.0,0,1.5685786008834839,290,0.0,1 +3290,2,1.0,0,2.391589641571045,291,1.0,1 +3291,2,1.0,0,1.8385751247406006,292,1.0,1 +3292,2,1.0,0,1.6405776739120483,293,1.0,1 +3293,2,1.0,0,1.8315751552581787,294,1.0,1 +3294,2,1.0,0,1.3495813608169556,295,1.0,1 +3295,2,1.0,0,1.8835744857788086,296,1.0,1 +3296,2,1.0,0,1.329581618309021,297,1.0,1 +3297,2,0.0,0,1.9305739402770996,298,0.0,1 +3298,2,1.0,0,1.402580738067627,299,1.0,1 +3299,2,1.0,0,1.9935731887817383,300,1.0,1 +3300,2,1.0,0,1.3265817165374756,301,1.0,1 +3301,2,1.0,0,1.2925821542739868,302,1.0,1 +3302,2,1.0,0,1.191582202911377,303,1.0,1 +3303,2,1.0,0,1.3595812320709229,304,0.0,1 +3304,2,1.0,0,1.6575775146484375,305,1.0,1 +3305,2,0.0,0,1.911574125289917,306,0.0,1 +3306,2,1.0,0,1.2795822620391846,307,1.0,1 +3307,2,1.0,0,1.9245740175247192,308,1.0,1 +3308,2,1.0,0,1.545578956604004,309,0.0,1 +3309,2,1.0,0,1.1775821447372437,310,1.0,1 +3310,2,1.0,0,1.2455822229385376,311,1.0,1 +3311,2,1.0,0,1.7245765924453735,312,1.0,1 +3312,2,1.0,0,1.258582353591919,313,1.0,1 +3313,2,1.0,0,1.4445801973342896,314,0.0,1 +3314,2,1.0,0,1.9495737552642822,315,1.0,1 +3315,2,0.0,0,1.1535820960998535,316,0.0,1 +3316,2,1.0,0,1.4145805835723877,317,1.0,1 +3317,2,1.0,0,1.3485814332962036,318,1.0,1 +3318,2,1.0,0,1.3145818710327148,319,1.0,1 +3319,2,1.0,0,1.255582332611084,320,0.0,1 +3320,2,0.0,0,1.5585787296295166,321,0.0,1 +3321,2,0.0,0,1.8245753049850464,322,0.0,1 +3322,2,1.0,0,1.4785797595977783,323,1.0,1 +3323,2,1.0,0,1.329581618309021,324,1.0,1 +3324,2,1.0,0,1.4005807638168335,325,1.0,1 +3325,2,1.0,0,1.6975769996643066,326,1.0,1 +3326,2,1.0,0,1.9275739192962646,327,1.0,1 +3327,2,0.0,0,2.0515737533569336,328,0.0,1 +3328,2,1.0,0,1.4235804080963135,329,0.0,1 +3329,2,0.0,0,1.3175817728042603,330,1.0,1 +3330,2,1.0,0,1.6175780296325684,331,1.0,1 +3331,2,0.0,0,2.0545740127563477,332,1.0,1 +3332,2,0.0,0,1.6075780391693115,333,1.0,1 +3333,2,0.0,0,1.8775746822357178,334,0.0,1 +3334,2,1.0,0,1.4665799140930176,335,1.0,1 +3335,2,1.0,0,1.6435775756835938,336,1.0,1 +3336,2,1.0,0,1.4135805368423462,337,1.0,1 +3337,2,1.0,0,1.6935770511627197,338,1.0,1 +3338,2,1.0,0,1.4325803518295288,339,1.0,1 +3339,2,1.0,0,1.3425815105438232,340,0.0,1 +3340,2,0.0,0,2.2505831718444824,341,0.0,1 +3341,2,0.0,0,1.5715785026550293,342,0.0,1 +3342,2,1.0,0,1.9885731935501099,343,0.0,1 +3343,2,1.0,0,1.90757417678833,344,0.0,1 +3344,2,1.0,0,1.4515800476074219,345,1.0,1 +3345,2,0.0,0,1.7135767936706543,346,0.0,1 +3346,2,1.0,0,2.166579246520996,347,1.0,1 +3347,2,1.0,0,2.0495738983154297,348,1.0,1 +3348,2,1.0,0,1.7155766487121582,349,1.0,1 +3349,2,1.0,0,1.748576283454895,350,0.0,1 +3350,2,1.0,0,1.4595799446105957,351,1.0,1 +3351,2,0.0,0,1.7175767421722412,352,0.0,1 +3352,2,1.0,0,1.372581124305725,353,1.0,1 +3353,2,1.0,0,1.8895745277404785,354,1.0,1 +3354,2,1.0,0,1.1625821590423584,355,0.0,1 +3355,2,0.0,0,1.3225817680358887,356,0.0,1 +3356,2,1.0,0,1.3135818243026733,357,1.0,1 +3357,2,0.0,0,1.685577154159546,358,0.0,1 +3358,2,1.0,0,1.4745798110961914,359,1.0,1 +3359,2,1.0,0,1.5495789051055908,360,1.0,1 +3360,2,1.0,0,1.821575403213501,361,1.0,1 +3361,2,1.0,0,1.1875821352005005,362,1.0,1 +3362,2,1.0,0,1.4305803775787354,363,1.0,1 +3363,2,1.0,0,1.9955730438232422,364,1.0,1 +3364,2,1.0,0,1.6385776996612549,365,1.0,1 +3365,2,1.0,0,1.3425815105438232,366,1.0,1 +3366,2,1.0,0,1.770576000213623,367,1.0,1 +3367,2,1.0,0,1.5015794038772583,368,0.0,1 +3368,2,0.0,0,1.6695773601531982,369,1.0,1 +3369,2,0.0,0,1.5185792446136475,370,0.0,1 +3370,2,1.0,0,1.5885783433914185,371,1.0,1 +3371,2,1.0,0,1.4305803775787354,372,1.0,1 +3372,2,1.0,0,1.5365790128707886,373,1.0,1 +3373,2,1.0,0,1.1265820264816284,374,1.0,1 +3374,2,1.0,0,1.5275790691375732,375,1.0,1 +3375,2,1.0,0,1.329581618309021,376,1.0,1 +3376,2,1.0,0,1.2915821075439453,377,1.0,1 +3377,2,1.0,0,1.8935744762420654,378,1.0,1 +3378,2,1.0,0,1.4305803775787354,379,1.0,1 +3379,2,1.0,0,2.0345730781555176,380,1.0,1 +3380,2,1.0,0,1.5285791158676147,381,1.0,1 +3381,2,1.0,0,1.7545762062072754,382,1.0,1 +3382,2,0.0,0,1.4645799398422241,383,0.0,1 +3383,2,1.0,0,1.1745821237564087,384,0.0,1 +3384,2,0.0,0,1.3375815153121948,385,0.0,1 +3385,2,0.0,0,2.00057315826416,386,0.0,1 +3386,2,0.0,0,1.9925731420516968,387,0.0,1 +3387,2,1.0,0,1.7165766954421997,388,1.0,1 +3388,2,0.0,0,1.4115805625915527,389,0.0,1 +3389,2,1.0,0,1.3015819787979126,390,1.0,1 +3390,2,1.0,0,1.3395814895629883,391,1.0,1 +3391,2,1.0,0,1.520579218864441,392,1.0,1 +3392,2,1.0,0,1.2635823488235474,393,1.0,1 +3393,2,1.0,0,1.2315822839736938,394,1.0,1 +3394,2,1.0,0,1.6265778541564941,395,0.0,1 +3395,2,1.0,0,1.9305739402770996,396,1.0,1 +3396,2,1.0,0,1.6505775451660156,397,1.0,1 +3397,2,1.0,0,1.3715810775756836,398,1.0,1 +3398,2,0.0,0,1.4815796613693237,399,0.0,1 +3399,2,1.0,0,1.3815809488296509,400,1.0,1 +3400,2,1.0,0,1.219582200050354,401,1.0,1 +3401,2,1.0,0,1.443580150604248,402,1.0,1 +3402,2,1.0,0,1.4055806398391724,403,1.0,1 +3403,2,1.0,0,1.250582218170166,404,1.0,1 +3404,2,1.0,0,1.5195791721343994,405,1.0,1 +3405,2,1.0,0,1.4805797338485718,406,1.0,1 +3406,2,1.0,0,1.3885809183120728,407,1.0,1 +3407,2,1.0,0,1.674577236175537,408,1.0,1 +3408,2,1.0,0,1.303581953048706,409,1.0,1 +3409,2,1.0,0,1.2185821533203125,410,0.0,1 +3410,2,0.0,0,1.2975820302963257,411,0.0,1 +3411,2,1.0,0,1.3755810260772705,412,1.0,1 +3412,2,1.0,0,1.3145818710327148,413,0.0,1 +3413,2,0.0,0,1.3015819787979126,414,0.0,1 +3414,2,0.0,0,1.250582218170166,415,0.0,1 +3415,2,1.0,0,2.3225865364074707,416,1.0,1 +3416,2,1.0,0,1.9485737085342407,417,1.0,1 +3417,2,1.0,0,1.4235804080963135,418,0.0,1 +3418,2,1.0,0,1.9725733995437622,419,1.0,1 +3419,2,1.0,0,1.7975757122039795,420,0.0,1 +3420,2,1.0,0,1.216582179069519,421,1.0,1 +3421,2,0.0,0,1.155582070350647,422,0.0,1 +3422,2,1.0,0,1.627577781677246,423,1.0,1 +3423,2,1.0,0,1.7855758666992188,424,1.0,1 +3424,2,1.0,0,1.2375822067260742,425,1.0,1 +3425,2,1.0,0,1.7335765361785889,426,1.0,1 +3426,2,1.0,0,1.4445801973342896,427,1.0,1 +3427,2,1.0,0,1.3685811758041382,428,1.0,1 +3428,2,1.0,0,1.4855796098709106,429,0.0,1 +3429,2,1.0,0,1.6435775756835938,430,1.0,1 +3430,2,1.0,0,1.4925795793533325,431,1.0,1 +3431,2,1.0,0,1.3315815925598145,432,1.0,1 +3432,2,1.0,0,1.2665822505950928,433,1.0,1 +3433,2,1.0,0,1.3425815105438232,434,0.0,1 +3434,2,1.0,0,2.132577657699585,435,1.0,1 +3435,2,1.0,0,1.2705823183059692,436,1.0,1 +3436,2,1.0,0,1.3095818758010864,437,1.0,1 +3437,2,1.0,0,1.376581072807312,438,1.0,1 +3438,2,1.0,0,1.2965821027755737,439,1.0,1 +3439,2,1.0,0,1.7375764846801758,440,0.0,1 +3440,2,0.0,0,1.6405776739120483,441,0.0,1 +3441,2,1.0,0,1.859574794769287,442,1.0,1 +3442,2,0.0,0,1.3135818243026733,443,0.0,1 +3443,2,1.0,0,1.3045819997787476,444,1.0,1 +3444,2,1.0,0,1.5325790643692017,445,1.0,1 +3445,2,1.0,0,1.3435814380645752,446,0.0,1 +3446,2,0.0,0,1.9085742235183716,447,0.0,1 +3447,2,0.0,0,1.376581072807312,448,1.0,1 +3448,2,0.0,0,1.512579321861267,449,1.0,1 +3449,2,0.0,0,1.6865770816802979,450,0.0,1 +3450,2,0.0,0,1.6285778284072876,451,0.0,1 +3451,2,0.0,0,1.194582223892212,452,0.0,1 +3452,2,0.0,0,1.4105806350708008,453,0.0,1 +3453,2,1.0,0,1.6045781373977661,454,0.0,1 +3454,2,1.0,0,1.7035768032073975,455,1.0,1 +3455,2,1.0,0,1.380581021308899,456,1.0,1 +3456,2,1.0,0,1.2975820302963257,457,1.0,1 +3457,2,1.0,0,1.1875821352005005,458,1.0,1 +3458,2,1.0,0,1.303581953048706,459,1.0,1 +3459,2,1.0,0,1.2425823211669922,460,1.0,1 +3460,2,1.0,0,1.259582281112671,461,0.0,1 +3461,2,1.0,0,2.2745842933654785,462,0.0,1 +3462,2,0.0,0,1.2345821857452393,463,1.0,1 +3463,2,0.0,0,1.5445789098739624,464,0.0,1 +3464,2,1.0,0,1.3925808668136597,465,1.0,1 +3465,2,0.0,0,1.4795796871185303,466,0.0,1 +3466,2,1.0,0,1.767575979232788,467,1.0,1 +3467,2,1.0,0,1.6845771074295044,468,1.0,1 +3468,2,1.0,0,1.2125822305679321,469,1.0,1 +3469,2,1.0,0,2.0665745735168457,470,1.0,1 +3470,2,1.0,0,1.3245817422866821,471,0.0,1 +3471,2,0.0,0,1.2215821743011475,472,0.0,1 +3472,2,0.0,0,1.3835809230804443,473,0.0,1 +3473,2,1.0,0,1.216582179069519,474,0.0,1 +3474,2,0.0,0,1.5975782871246338,475,0.0,1 +3475,2,1.0,0,1.9045742750167847,476,1.0,1 +3476,2,1.0,0,1.4545800685882568,477,1.0,1 +3477,2,1.0,0,1.814575433731079,478,1.0,1 +3478,2,1.0,0,1.2615822553634644,479,1.0,1 +3479,2,1.0,0,1.351581335067749,480,1.0,1 +3480,2,1.0,0,1.5465788841247559,481,1.0,1 +3481,2,1.0,0,1.1735820770263672,482,1.0,1 +3482,2,1.0,0,1.2625823020935059,483,1.0,1 +3483,2,1.0,0,1.4055806398391724,484,1.0,1 +3484,2,1.0,0,1.7095768451690674,485,1.0,1 +3485,2,0.0,0,1.3055819272994995,486,0.0,1 +3486,2,1.0,0,1.6065781116485596,487,1.0,1 +3487,2,1.0,0,1.545578956604004,488,1.0,1 +3488,2,1.0,0,1.4895795583724976,489,1.0,1 +3489,2,1.0,0,1.6135780811309814,490,1.0,1 +3490,2,1.0,0,1.2545822858810425,491,0.0,1 +3491,2,1.0,0,1.446580171585083,492,1.0,1 +3492,2,1.0,0,1.5005794763565063,493,1.0,1 +3493,2,1.0,0,1.3745810985565186,494,1.0,1 +3494,2,1.0,0,1.4085806608200073,495,0.0,1 +3495,2,1.0,0,1.5995781421661377,496,0.0,1 +3496,2,0.0,0,1.6435775756835938,497,0.0,1 +3497,2,1.0,0,1.2875821590423584,498,1.0,1 +3498,2,1.0,0,1.4005807638168335,499,1.0,1 +3499,2,1.0,0,1.395580768585205,500,1.0,1 +3500,2,0.0,1,1.6925770044326782,1,0.0,1 +3501,2,1.0,1,1.8305752277374268,2,1.0,1 +3502,2,1.0,1,1.7135767936706543,3,1.0,1 +3503,2,1.0,1,2.163578987121582,4,1.0,1 +3504,2,0.0,1,1.8555748462677002,5,0.0,1 +3505,2,1.0,1,1.6405776739120483,6,1.0,1 +3506,2,1.0,1,1.2605823278427124,7,1.0,1 +3507,2,1.0,1,1.1465821266174316,8,1.0,1 +3508,2,1.0,1,1.3535813093185425,9,1.0,1 +3509,2,1.0,1,1.2625823020935059,10,1.0,1 +3510,2,1.0,1,1.2645822763442993,11,1.0,1 +3511,2,1.0,1,1.637577772140503,12,1.0,1 +3512,2,1.0,1,1.2315822839736938,13,1.0,1 +3513,2,1.0,1,1.395580768585205,14,0.0,1 +3514,2,0.0,1,1.2425823211669922,15,0.0,1 +3515,2,1.0,1,1.9775733947753906,16,1.0,1 +3516,2,0.0,1,1.7845758199691772,17,0.0,1 +3517,2,1.0,1,1.5255790948867798,18,1.0,1 +3518,2,1.0,1,1.752576231956482,19,1.0,1 +3519,2,1.0,1,1.91357421875,20,1.0,1 +3520,2,1.0,1,1.3275816440582275,21,0.0,1 +3521,2,1.0,1,1.3195817470550537,22,0.0,1 +3522,2,1.0,1,1.3675811290740967,23,1.0,1 +3523,2,1.0,1,1.3145818710327148,24,0.0,1 +3524,2,0.0,1,1.8915743827819824,25,0.0,1 +3525,2,1.0,1,1.446580171585083,26,0.0,1 +3526,2,0.0,1,2.2705841064453125,27,0.0,1 +3527,2,0.0,1,1.6045781373977661,28,0.0,1 +3528,2,0.0,1,1.2235822677612305,29,0.0,1 +3529,2,1.0,1,1.4275803565979004,30,1.0,1 +3530,2,1.0,1,1.2675822973251343,31,1.0,1 +3531,2,1.0,1,1.2405822277069092,32,1.0,1 +3532,2,1.0,1,1.2245821952819824,33,1.0,1 +3533,2,1.0,1,1.2365822792053223,34,1.0,1 +3534,2,1.0,1,1.8075754642486572,35,1.0,1 +3535,2,0.0,1,1.7145767211914062,36,0.0,1 +3536,2,1.0,1,1.5935783386230469,37,0.0,1 +3537,2,1.0,1,1.1165820360183716,38,1.0,1 +3538,2,1.0,1,1.4665799140930176,39,1.0,1 +3539,2,1.0,1,1.520579218864441,40,0.0,1 +3540,2,1.0,1,1.4575799703598022,41,1.0,1 +3541,2,1.0,1,1.4715797901153564,42,1.0,1 +3542,2,1.0,1,1.4485801458358765,43,1.0,1 +3543,2,1.0,1,1.3385815620422363,44,0.0,1 +3544,2,1.0,1,2.117577075958252,45,1.0,1 +3545,2,1.0,1,1.2275822162628174,46,0.0,1 +3546,2,0.0,1,1.1455820798873901,47,0.0,1 +3547,2,1.0,1,1.7105767726898193,48,1.0,1 +3548,2,1.0,1,1.3315815925598145,49,0.0,1 +3549,2,1.0,1,1.347581386566162,50,1.0,1 +3550,2,1.0,1,1.2365822792053223,51,0.0,1 +3551,2,0.0,1,1.3005820512771606,52,0.0,1 +3552,2,1.0,1,1.8455750942230225,53,0.0,1 +3553,2,0.0,1,1.6695773601531982,54,0.0,1 +3554,2,1.0,1,2.128577470779419,55,1.0,1 +3555,2,1.0,1,1.5915782451629639,56,1.0,1 +3556,2,1.0,1,1.819575309753418,57,1.0,1 +3557,2,1.0,1,1.5285791158676147,58,1.0,1 +3558,2,1.0,1,1.4525800943374634,59,1.0,1 +3559,2,1.0,1,1.6175780296325684,60,1.0,1 +3560,2,1.0,1,1.2725822925567627,61,0.0,1 +3561,2,1.0,1,2.2935853004455566,62,1.0,1 +3562,2,1.0,1,1.2775822877883911,63,0.0,1 +3563,2,1.0,1,1.656577467918396,64,1.0,1 +3564,2,1.0,1,1.2345821857452393,65,1.0,1 +3565,2,1.0,1,1.5055793523788452,66,1.0,1 +3566,2,1.0,1,1.4395802021026611,67,1.0,1 +3567,2,1.0,1,1.980573296546936,68,0.0,1 +3568,2,1.0,1,2.002573013305664,69,1.0,1 +3569,2,1.0,1,1.582578420639038,70,1.0,1 +3570,2,1.0,1,1.3715810775756836,71,1.0,1 +3571,2,1.0,1,1.250582218170166,72,1.0,1 +3572,2,1.0,1,1.3145818710327148,73,1.0,1 +3573,2,1.0,1,1.4195804595947266,74,1.0,1 +3574,2,1.0,1,1.225582242012024,75,0.0,1 +3575,2,1.0,1,1.3705811500549316,76,1.0,1 +3576,2,1.0,1,1.443580150604248,77,1.0,1 +3577,2,1.0,1,1.2835822105407715,78,1.0,1 +3578,2,1.0,1,1.6985769271850586,79,0.0,1 +3579,2,1.0,1,1.8795745372772217,80,0.0,1 +3580,2,0.0,1,2.0175728797912598,81,0.0,1 +3581,2,0.0,1,1.3455814123153687,82,0.0,1 +3582,2,0.0,1,1.6395776271820068,83,0.0,1 +3583,2,0.0,1,1.246582269668579,84,1.0,1 +3584,2,0.0,1,1.2825822830200195,85,0.0,1 +3585,2,0.0,1,1.255582332611084,86,0.0,1 +3586,2,1.0,1,1.8165754079818726,87,0.0,1 +3587,2,1.0,1,1.8475749492645264,88,0.0,1 +3588,2,0.0,1,1.8285752534866333,89,0.0,1 +3589,2,0.0,1,1.3885809183120728,90,0.0,1 +3590,2,0.0,1,1.152582049369812,91,0.0,1 +3591,2,1.0,1,1.7545762062072754,92,0.0,1 +3592,2,0.0,1,1.4825797080993652,93,0.0,1 +3593,2,1.0,1,1.866574764251709,94,1.0,1 +3594,2,1.0,1,1.2945821285247803,95,1.0,1 +3595,2,1.0,1,1.3885809183120728,96,0.0,1 +3596,2,0.0,1,1.4015806913375854,97,0.0,1 +3597,2,1.0,1,2.001573085784912,98,1.0,1 +3598,2,1.0,1,1.4235804080963135,99,1.0,1 +3599,2,1.0,1,1.5795783996582031,100,1.0,1 +3600,2,1.0,1,1.5025794506072998,101,1.0,1 +3601,2,1.0,1,1.1955821514129639,102,1.0,1 +3602,2,1.0,1,1.3045819997787476,103,1.0,1 +3603,2,1.0,1,1.2485822439193726,104,1.0,1 +3604,2,1.0,1,1.4265804290771484,105,1.0,1 +3605,2,1.0,1,1.2625823020935059,106,1.0,1 +3606,2,1.0,1,1.2715823650360107,107,0.0,1 +3607,2,1.0,1,1.7435762882232666,108,1.0,1 +3608,2,1.0,1,1.3265817165374756,109,1.0,1 +3609,2,1.0,1,1.539578914642334,110,0.0,1 +3610,2,1.0,1,1.4195804595947266,111,0.0,1 +3611,2,0.0,1,1.443580150604248,112,0.0,1 +3612,2,1.0,1,1.1975821256637573,113,0.0,1 +3613,2,1.0,1,1.957573652267456,114,1.0,1 +3614,2,1.0,1,1.771575927734375,115,1.0,1 +3615,2,1.0,1,1.2445822954177856,116,0.0,1 +3616,2,0.0,1,1.4075806140899658,117,0.0,1 +3617,2,0.0,1,1.285582184791565,118,0.0,1 +3618,2,1.0,1,1.4125806093215942,119,0.0,1 +3619,2,0.0,1,1.4925795793533325,120,0.0,1 +3620,2,0.0,1,1.3435814380645752,121,1.0,1 +3621,2,0.0,1,1.2205822467803955,122,0.0,1 +3622,2,1.0,1,2.188580274581909,123,1.0,1 +3623,2,0.0,1,1.2725822925567627,124,0.0,1 +3624,2,1.0,1,1.7505762577056885,125,0.0,1 +3625,2,1.0,1,1.3485814332962036,126,1.0,1 +3626,2,1.0,1,1.1965821981430054,127,1.0,1 +3627,2,1.0,1,1.7145767211914062,128,1.0,1 +3628,2,1.0,1,1.3945808410644531,129,1.0,1 +3629,2,1.0,1,1.402580738067627,130,0.0,1 +3630,2,1.0,1,1.6025781631469727,131,0.0,1 +3631,2,0.0,1,1.2835822105407715,132,0.0,1 +3632,2,0.0,1,1.2785823345184326,133,0.0,1 +3633,2,1.0,1,1.6205779314041138,134,1.0,1 +3634,2,1.0,1,1.6045781373977661,135,1.0,1 +3635,2,1.0,1,1.4515800476074219,136,0.0,1 +3636,2,1.0,1,1.4755797386169434,137,1.0,1 +3637,2,1.0,1,1.446580171585083,138,0.0,1 +3638,2,1.0,1,1.256582260131836,139,1.0,1 +3639,2,1.0,1,1.8295753002166748,140,1.0,1 +3640,2,1.0,1,1.5735785961151123,141,1.0,1 +3641,2,1.0,1,1.6105780601501465,142,1.0,1 +3642,2,1.0,1,1.2795822620391846,143,1.0,1 +3643,2,1.0,1,1.4705798625946045,144,1.0,1 +3644,2,1.0,1,1.5725785493850708,145,1.0,1 +3645,2,1.0,1,1.4305803775787354,146,1.0,1 +3646,2,1.0,1,1.4395802021026611,147,1.0,1 +3647,2,1.0,1,1.2715823650360107,148,1.0,1 +3648,2,1.0,1,1.6095781326293945,149,1.0,1 +3649,2,1.0,1,1.255582332611084,150,1.0,1 +3650,2,1.0,1,1.564578652381897,151,1.0,1 +3651,2,1.0,1,1.6195778846740723,152,1.0,1 +3652,2,1.0,1,1.4015806913375854,153,1.0,1 +3653,2,1.0,1,1.3005820512771606,154,1.0,1 +3654,2,1.0,1,1.2905821800231934,155,0.0,1 +3655,2,1.0,1,1.3635811805725098,156,1.0,1 +3656,2,1.0,1,1.6135780811309814,157,1.0,1 +3657,2,1.0,1,1.3135818243026733,158,1.0,1 +3658,2,1.0,1,1.4665799140930176,159,0.0,1 +3659,2,1.0,1,1.351581335067749,160,1.0,1 +3660,2,1.0,1,2.0675745010375977,161,0.0,1 +3661,2,1.0,1,2.0755748748779297,162,0.0,1 +3662,2,0.0,1,1.9375739097595215,163,1.0,1 +3663,2,0.0,1,1.1775821447372437,164,0.0,1 +3664,2,0.0,1,1.637577772140503,165,0.0,1 +3665,2,1.0,1,1.285582184791565,166,1.0,1 +3666,2,1.0,1,1.541579008102417,167,1.0,1 +3667,2,1.0,1,1.2965821027755737,168,1.0,1 +3668,2,1.0,1,1.3125818967819214,169,0.0,1 +3669,2,1.0,1,1.5225791931152344,170,0.0,1 +3670,2,1.0,1,1.399580717086792,171,1.0,1 +3671,2,1.0,1,1.5545787811279297,172,1.0,1 +3672,2,0.0,1,1.5935783386230469,173,0.0,1 +3673,2,1.0,1,1.4105806350708008,174,1.0,1 +3674,2,1.0,1,1.355581283569336,175,0.0,1 +3675,2,1.0,1,1.6385776996612549,176,1.0,1 +3676,2,0.0,1,1.1725821495056152,177,0.0,1 +3677,2,0.0,1,1.152582049369812,178,0.0,1 +3678,2,1.0,1,1.538578987121582,179,1.0,1 +3679,2,1.0,1,1.2275822162628174,180,0.0,1 +3680,2,1.0,1,1.5245791673660278,181,1.0,1 +3681,2,1.0,1,1.4765797853469849,182,0.0,1 +3682,2,1.0,1,2.0265727043151855,183,1.0,1 +3683,2,1.0,1,1.7605761289596558,184,1.0,1 +3684,2,1.0,1,1.796575665473938,185,0.0,1 +3685,2,1.0,1,1.7345764636993408,186,1.0,1 +3686,2,1.0,1,1.8035755157470703,187,1.0,1 +3687,2,1.0,1,1.2995820045471191,188,1.0,1 +3688,2,1.0,1,1.4545800685882568,189,0.0,1 +3689,2,1.0,1,1.4965795278549194,190,0.0,1 +3690,2,0.0,1,1.4315803050994873,191,0.0,1 +3691,2,0.0,1,1.7075767517089844,192,0.0,1 +3692,2,1.0,1,1.47357976436615,193,0.0,1 +3693,2,1.0,1,1.2665822505950928,194,0.0,1 +3694,2,1.0,1,1.582578420639038,195,1.0,1 +3695,2,1.0,1,1.3125818967819214,196,1.0,1 +3696,2,1.0,1,1.1995822191238403,197,1.0,1 +3697,2,1.0,1,1.3085819482803345,198,0.0,1 +3698,2,0.0,1,1.660577416419983,199,1.0,1 +3699,2,0.0,1,1.3385815620422363,200,0.0,1 +3700,2,0.0,1,1.333581566810608,201,1.0,1 +3701,2,0.0,1,1.5765784978866577,202,0.0,1 +3702,2,1.0,1,1.3175817728042603,203,0.0,1 +3703,2,0.0,1,1.1815820932388306,204,0.0,1 +3704,2,0.0,1,1.402580738067627,205,1.0,1 +3705,2,0.0,1,1.3595812320709229,206,1.0,1 +3706,2,0.0,1,1.3835809230804443,207,0.0,1 +3707,2,1.0,1,1.72257661819458,208,1.0,1 +3708,2,1.0,1,1.6805771589279175,209,1.0,1 +3709,2,1.0,1,1.329581618309021,210,1.0,1 +3710,2,1.0,1,1.2625823020935059,211,1.0,1 +3711,2,1.0,1,1.7585761547088623,212,1.0,1 +3712,2,1.0,1,1.487579584121704,213,1.0,1 +3713,2,1.0,1,1.7545762062072754,214,1.0,1 +3714,2,1.0,1,1.4335802793502808,215,1.0,1 +3715,2,0.0,1,1.5745785236358643,216,0.0,1 +3716,2,1.0,1,1.3245817422866821,217,1.0,1 +3717,2,1.0,1,1.3315815925598145,218,0.0,1 +3718,2,0.0,1,1.5795783996582031,219,0.0,1 +3719,2,1.0,1,1.3935807943344116,220,1.0,1 +3720,2,1.0,1,1.1805821657180786,221,0.0,1 +3721,2,0.0,1,1.6595773696899414,222,1.0,1 +3722,2,0.0,1,1.417580485343933,223,1.0,1 +3723,2,0.0,1,1.2185821533203125,224,0.0,1 +3724,2,1.0,1,1.8565748929977417,225,1.0,1 +3725,2,1.0,1,1.634577751159668,226,0.0,1 +3726,2,1.0,1,1.3495813608169556,227,1.0,1 +3727,2,1.0,1,1.6015782356262207,228,0.0,1 +3728,2,0.0,1,1.6615774631500244,229,0.0,1 +3729,2,0.0,1,1.5005794763565063,230,0.0,1 +3730,2,1.0,1,1.3925808668136597,231,1.0,1 +3731,2,1.0,1,1.3945808410644531,232,1.0,1 +3732,2,1.0,1,1.259582281112671,233,0.0,1 +3733,2,1.0,1,2.112576723098755,234,1.0,1 +3734,2,1.0,1,1.2175822257995605,235,1.0,1 +3735,2,1.0,1,1.6005781888961792,236,0.0,1 +3736,2,0.0,1,1.4805797338485718,237,1.0,1 +3737,2,0.0,1,1.2095822095870972,238,0.0,1 +3738,2,1.0,1,1.3875808715820312,239,1.0,1 +3739,2,1.0,1,1.428580403327942,240,0.0,1 +3740,2,0.0,1,1.7205766439437866,241,0.0,1 +3741,2,1.0,1,1.1845821142196655,242,1.0,1 +3742,2,1.0,1,1.4235804080963135,243,1.0,1 +3743,2,1.0,1,1.328581690788269,244,1.0,1 +3744,2,1.0,1,1.1975821256637573,245,1.0,1 +3745,2,1.0,1,1.2215821743011475,246,1.0,1 +3746,2,0.0,1,1.303581953048706,247,0.0,1 +3747,2,1.0,1,1.3385815620422363,248,1.0,1 +3748,2,1.0,1,1.7455763816833496,249,1.0,1 +3749,2,1.0,1,1.4445801973342896,250,1.0,1 +3750,2,0.0,1,1.2185821533203125,251,0.0,1 +3751,2,1.0,1,1.4265804290771484,252,0.0,1 +3752,2,1.0,1,1.6675772666931152,253,0.0,1 +3753,2,0.0,1,1.284582257270813,254,0.0,1 +3754,2,0.0,1,1.58957839012146,255,0.0,1 +3755,2,1.0,1,1.3315815925598145,256,1.0,1 +3756,2,1.0,1,1.4225804805755615,257,1.0,1 +3757,2,1.0,1,1.6015782356262207,258,1.0,1 +3758,2,0.0,1,1.4575799703598022,259,0.0,1 +3759,2,1.0,1,1.3405815362930298,260,1.0,1 +3760,2,1.0,1,1.255582332611084,261,1.0,1 +3761,2,1.0,1,1.3965808153152466,262,1.0,1 +3762,2,1.0,1,1.9505736827850342,263,0.0,1 +3763,2,0.0,1,2.0655746459960938,264,0.0,1 +3764,2,1.0,1,1.2795822620391846,265,1.0,1 +3765,2,1.0,1,1.5215791463851929,266,0.0,1 +3766,2,0.0,1,1.7425763607025146,267,1.0,1 +3767,2,0.0,1,2.374588966369629,268,1.0,1 +3768,2,0.0,1,1.1625821590423584,269,0.0,1 +3769,2,1.0,1,2.371588706970215,270,1.0,1 +3770,2,1.0,1,1.660577416419983,271,1.0,1 +3771,2,1.0,1,1.5245791673660278,272,1.0,1 +3772,2,1.0,1,1.2125822305679321,273,0.0,1 +3773,2,0.0,1,1.284582257270813,274,0.0,1 +3774,2,1.0,1,1.5275790691375732,275,1.0,1 +3775,2,1.0,1,1.194582223892212,276,0.0,1 +3776,2,1.0,1,2.2725841999053955,277,0.0,1 +3777,2,0.0,1,1.2935820817947388,278,0.0,1 +3778,2,0.0,1,1.6135780811309814,279,1.0,1 +3779,2,0.0,1,1.5775785446166992,280,1.0,1 +3780,2,0.0,1,1.329581618309021,281,0.0,1 +3781,2,0.0,1,2.5015950202941895,282,1.0,1 +3782,2,0.0,1,1.5365790128707886,283,0.0,1 +3783,2,0.0,1,1.4085806608200073,284,1.0,1 +3784,2,0.0,1,1.6845771074295044,285,1.0,1 +3785,2,0.0,1,1.284582257270813,286,1.0,1 +3786,2,0.0,1,1.2905821800231934,287,0.0,1 +3787,2,1.0,1,1.2485822439193726,288,1.0,1 +3788,2,1.0,1,1.2475823163986206,289,1.0,1 +3789,2,1.0,1,1.373581051826477,290,0.0,1 +3790,2,1.0,1,1.5695786476135254,291,1.0,1 +3791,2,1.0,1,1.5515787601470947,292,1.0,1 +3792,2,1.0,1,1.5685786008834839,293,0.0,1 +3793,2,1.0,1,2.2435827255249023,294,1.0,1 +3794,2,1.0,1,1.3935807943344116,295,0.0,1 +3795,2,0.0,1,1.4545800685882568,296,0.0,1 +3796,2,0.0,1,1.3055819272994995,297,1.0,1 +3797,2,0.0,1,1.2995820045471191,298,1.0,1 +3798,2,0.0,1,1.2915821075439453,299,0.0,1 +3799,2,0.0,1,1.9255740642547607,300,0.0,1 +3800,2,1.0,1,1.5775785446166992,301,1.0,1 +3801,2,1.0,1,1.631577730178833,302,0.0,1 +3802,2,1.0,1,1.958573579788208,303,1.0,1 +3803,2,1.0,1,1.4165805578231812,304,1.0,1 +3804,2,1.0,1,1.4295803308486938,305,1.0,1 +3805,2,1.0,1,1.3895808458328247,306,0.0,1 +3806,2,1.0,1,1.39858078956604,307,0.0,1 +3807,2,0.0,1,1.188582181930542,308,1.0,1 +3808,2,0.0,1,1.564578652381897,309,1.0,1 +3809,2,0.0,1,1.1075819730758667,310,0.0,1 +3810,2,1.0,1,1.3275816440582275,311,0.0,1 +3811,2,0.0,1,1.417580485343933,312,0.0,1 +3812,2,1.0,1,2.08957576751709,313,0.0,1 +3813,2,1.0,1,1.6645773649215698,314,0.0,1 +3814,2,1.0,1,1.542578935623169,315,1.0,1 +3815,2,1.0,1,1.6005781888961792,316,1.0,1 +3816,2,1.0,1,1.4015806913375854,317,1.0,1 +3817,2,1.0,1,1.332581639289856,318,1.0,1 +3818,2,1.0,1,1.5185792446136475,319,1.0,1 +3819,2,1.0,1,1.3365815877914429,320,1.0,1 +3820,2,1.0,1,1.5795783996582031,321,1.0,1 +3821,2,1.0,1,1.2745823860168457,322,1.0,1 +3822,2,1.0,1,1.347581386566162,323,1.0,1 +3823,2,1.0,1,1.1565821170806885,324,1.0,1 +3824,2,1.0,1,1.5595786571502686,325,1.0,1 +3825,2,1.0,1,1.125581979751587,326,0.0,1 +3826,2,0.0,1,1.8755745887756348,327,1.0,1 +3827,2,0.0,1,1.5365790128707886,328,0.0,1 +3828,2,1.0,1,1.5475788116455078,329,1.0,1 +3829,2,1.0,1,1.4485801458358765,330,1.0,1 +3830,2,1.0,1,1.4195804595947266,331,1.0,1 +3831,2,1.0,1,1.2905821800231934,332,1.0,1 +3832,2,1.0,1,1.8785746097564697,333,1.0,1 +3833,2,1.0,1,1.4395802021026611,334,1.0,1 +3834,2,0.0,1,1.219582200050354,335,0.0,1 +3835,2,1.0,1,1.2435822486877441,336,1.0,1 +3836,2,1.0,1,1.3385815620422363,337,1.0,1 +3837,2,1.0,1,1.8475749492645264,338,1.0,1 +3838,2,1.0,1,2.159578800201416,339,1.0,1 +3839,2,1.0,1,1.704576849937439,340,1.0,1 +3840,2,1.0,1,1.660577416419983,341,0.0,1 +3841,2,1.0,1,1.5675785541534424,342,1.0,1 +3842,2,1.0,1,1.3685811758041382,343,1.0,1 +3843,2,1.0,1,1.219582200050354,344,0.0,1 +3844,2,1.0,1,2.0375733375549316,345,1.0,1 +3845,2,1.0,1,1.3085819482803345,346,1.0,1 +3846,2,1.0,1,1.3455814123153687,347,1.0,1 +3847,2,1.0,1,1.3495813608169556,348,1.0,1 +3848,2,1.0,1,1.253582239151001,349,1.0,1 +3849,2,1.0,1,1.332581639289856,350,1.0,1 +3850,2,1.0,1,1.814575433731079,351,0.0,1 +3851,2,0.0,1,1.7605761289596558,352,0.0,1 +3852,2,1.0,1,1.333581566810608,353,1.0,1 +3853,2,1.0,1,1.417580485343933,354,1.0,1 +3854,2,1.0,1,1.3435814380645752,355,1.0,1 +3855,2,1.0,1,1.4085806608200073,356,1.0,1 +3856,2,1.0,1,1.586578369140625,357,1.0,1 +3857,2,1.0,1,1.3015819787979126,358,1.0,1 +3858,2,1.0,1,1.347581386566162,359,1.0,1 +3859,2,1.0,1,1.4395802021026611,360,1.0,1 +3860,2,1.0,1,1.1135820150375366,361,1.0,1 +3861,2,1.0,1,1.4775797128677368,362,1.0,1 +3862,2,1.0,1,1.395580768585205,363,0.0,1 +3863,2,1.0,1,1.4095805883407593,364,1.0,1 +3864,2,1.0,1,1.5315790176391602,365,0.0,1 +3865,2,1.0,1,1.4275803565979004,366,0.0,1 +3866,2,1.0,1,1.58957839012146,367,1.0,1 +3867,2,0.0,1,2.0375733375549316,368,0.0,1 +3868,2,1.0,1,1.2235822677612305,369,0.0,1 +3869,2,1.0,1,1.752576231956482,370,0.0,1 +3870,2,1.0,1,1.2925821542739868,371,1.0,1 +3871,2,1.0,1,1.2175822257995605,372,1.0,1 +3872,2,1.0,1,1.1985821723937988,373,1.0,1 +3873,2,1.0,1,1.3565813302993774,374,0.0,1 +3874,2,0.0,1,1.520579218864441,375,0.0,1 +3875,2,0.0,1,1.402580738067627,376,1.0,1 +3876,2,0.0,1,1.6485775709152222,377,0.0,1 +3877,2,0.0,1,2.3395872116088867,378,1.0,1 +3878,2,0.0,1,1.1435821056365967,379,1.0,1 +3879,2,0.0,1,1.3245817422866821,380,1.0,1 +3880,2,0.0,1,1.6385776996612549,381,0.0,1 +3881,2,0.0,1,1.8465750217437744,382,1.0,1 +3882,2,0.0,1,1.1285820007324219,383,0.0,1 +3883,2,0.0,1,1.249582290649414,384,0.0,1 +3884,2,1.0,1,1.6475775241851807,385,0.0,1 +3885,2,0.0,1,1.93657386302948,386,0.0,1 +3886,2,1.0,1,1.2625823020935059,387,1.0,1 +3887,2,0.0,1,1.4125806093215942,388,1.0,1 +3888,2,1.0,1,1.5985782146453857,389,1.0,1 +3889,2,1.0,1,1.7325764894485474,390,0.0,1 +3890,2,0.0,1,1.191582202911377,391,0.0,1 +3891,2,1.0,1,1.6055781841278076,392,0.0,1 +3892,2,0.0,1,1.7495763301849365,393,1.0,1 +3893,2,0.0,1,1.7825758457183838,394,0.0,1 +3894,2,0.0,1,1.7315764427185059,395,1.0,1 +3895,2,0.0,1,1.285582184791565,396,0.0,1 +3896,2,1.0,1,2.441592216491699,397,1.0,1 +3897,2,0.0,1,1.844575047492981,398,0.0,1 +3898,2,1.0,1,1.6205779314041138,399,0.0,1 +3899,2,0.0,1,1.3395814895629883,400,0.0,1 +3900,2,1.0,1,1.541579008102417,401,0.0,1 +3901,2,1.0,1,1.4665799140930176,402,1.0,1 +3902,2,1.0,1,1.9855732917785645,403,1.0,1 +3903,2,1.0,1,1.5325790643692017,404,1.0,1 +3904,2,1.0,1,1.2835822105407715,405,1.0,1 +3905,2,0.0,1,1.191582202911377,406,0.0,1 +3906,2,1.0,1,1.3675811290740967,407,1.0,1 +3907,2,1.0,1,1.380581021308899,408,0.0,1 +3908,2,1.0,1,1.8245753049850464,409,0.0,1 +3909,2,0.0,1,1.752576231956482,410,0.0,1 +3910,2,1.0,1,1.8085755109786987,411,1.0,1 +3911,2,1.0,1,1.3915808200836182,412,0.0,1 +3912,2,0.0,1,1.395580768585205,413,0.0,1 +3913,2,0.0,1,1.1975821256637573,414,1.0,1 +3914,2,0.0,1,1.252582311630249,415,0.0,1 +3915,2,1.0,1,1.5255790948867798,416,1.0,1 +3916,2,1.0,1,1.5215791463851929,417,0.0,1 +3917,2,0.0,1,1.6035780906677246,418,0.0,1 +3918,2,1.0,1,1.4555799961090088,419,0.0,1 +3919,2,1.0,1,1.5765784978866577,420,0.0,1 +3920,2,0.0,1,1.3435814380645752,421,0.0,1 +3921,2,1.0,1,1.5565787553787231,422,1.0,1 +3922,2,1.0,1,1.6135780811309814,423,1.0,1 +3923,2,1.0,1,1.1575820446014404,424,1.0,1 +3924,2,1.0,1,1.5805784463882446,425,0.0,1 +3925,2,1.0,1,1.5405789613723755,426,1.0,1 +3926,2,1.0,1,1.1975821256637573,427,0.0,1 +3927,2,1.0,1,2.3155860900878906,428,1.0,1 +3928,2,1.0,1,1.5215791463851929,429,1.0,1 +3929,2,1.0,1,1.2285822629928589,430,1.0,1 +3930,2,1.0,1,1.8815746307373047,431,1.0,1 +3931,2,1.0,1,1.2235822677612305,432,1.0,1 +3932,2,1.0,1,1.4325803518295288,433,0.0,1 +3933,2,1.0,1,1.7515761852264404,434,0.0,1 +3934,2,1.0,1,1.4395802021026611,435,1.0,1 +3935,2,1.0,1,1.3445814847946167,436,1.0,1 +3936,2,1.0,1,1.6805771589279175,437,1.0,1 +3937,2,1.0,1,1.1815820932388306,438,0.0,1 +3938,2,1.0,1,1.2875821590423584,439,1.0,1 +3939,2,1.0,1,1.3375815153121948,440,0.0,1 +3940,2,1.0,1,1.2675822973251343,441,0.0,1 +3941,2,1.0,1,1.8735747337341309,442,1.0,1 +3942,2,1.0,1,1.5275790691375732,443,0.0,1 +3943,2,0.0,1,1.6425776481628418,444,0.0,1 +3944,2,0.0,1,1.2755823135375977,445,0.0,1 +3945,2,0.0,1,1.957573652267456,446,0.0,1 +3946,2,0.0,1,1.5075793266296387,447,0.0,1 +3947,2,0.0,1,1.7915756702423096,448,0.0,1 +3948,2,1.0,1,1.6635773181915283,449,1.0,1 +3949,2,1.0,1,1.8085755109786987,450,0.0,1 +3950,2,1.0,1,1.590578317642212,451,1.0,1 +3951,2,1.0,1,1.443580150604248,452,1.0,1 +3952,2,1.0,1,1.4745798110961914,453,0.0,1 +3953,2,0.0,1,1.545578956604004,454,1.0,1 +3954,2,0.0,1,1.3345816135406494,455,1.0,1 +3955,2,0.0,1,1.3845809698104858,456,0.0,1 +3956,2,0.0,1,1.9885731935501099,457,0.0,1 +3957,2,1.0,1,1.6155779361724854,458,0.0,1 +3958,2,0.0,1,1.2575823068618774,459,0.0,1 +3959,2,0.0,1,1.863574743270874,460,1.0,1 +3960,2,0.0,1,1.216582179069519,461,0.0,1 +3961,2,1.0,1,1.9715733528137207,462,1.0,1 +3962,2,1.0,1,1.9345738887786865,463,0.0,1 +3963,2,1.0,1,1.9085742235183716,464,0.0,1 +3964,2,0.0,1,1.5965782403945923,465,1.0,1 +3965,2,0.0,1,1.2945821285247803,466,1.0,1 +3966,2,0.0,1,1.2375822067260742,467,0.0,1 +3967,2,0.0,1,1.5665786266326904,468,1.0,1 +3968,2,0.0,1,1.191582202911377,469,0.0,1 +3969,2,0.0,1,1.6895771026611328,470,0.0,1 +3970,2,1.0,1,1.5595786571502686,471,1.0,1 +3971,2,0.0,1,1.6045781373977661,472,0.0,1 +3972,2,1.0,1,1.5185792446136475,473,1.0,1 +3973,2,1.0,1,1.1935821771621704,474,0.0,1 +3974,2,0.0,1,1.2115821838378906,475,0.0,1 +3975,2,1.0,1,1.4075806140899658,476,1.0,1 +3976,2,1.0,1,1.5545787811279297,477,1.0,1 +3977,2,1.0,1,1.3305816650390625,478,1.0,1 +3978,2,1.0,1,1.3485814332962036,479,1.0,1 +3979,2,1.0,1,1.4275803565979004,480,1.0,1 +3980,2,1.0,1,1.3975807428359985,481,1.0,1 +3981,2,1.0,1,1.1675821542739868,482,0.0,1 +3982,2,0.0,1,1.8075754642486572,483,0.0,1 +3983,2,1.0,1,1.303581953048706,484,1.0,1 +3984,2,1.0,1,1.259582281112671,485,0.0,1 +3985,2,0.0,1,1.5885783433914185,486,0.0,1 +3986,2,1.0,1,1.5105793476104736,487,1.0,1 +3987,2,1.0,1,1.2175822257995605,488,0.0,1 +3988,2,0.0,1,1.4305803775787354,489,1.0,1 +3989,2,1.0,1,1.2915821075439453,490,1.0,1 +3990,2,1.0,1,1.4195804595947266,491,1.0,1 +3991,2,1.0,1,1.6055781841278076,492,0.0,1 +3992,2,1.0,1,1.6105780601501465,493,0.0,1 +3993,2,0.0,1,1.329581618309021,494,0.0,1 +3994,2,0.0,1,1.376581072807312,495,0.0,1 +3995,2,0.0,1,1.179582118988037,496,0.0,1 +3996,2,1.0,1,1.6595773696899414,497,1.0,1 +3997,2,1.0,1,1.590578317642212,498,0.0,1 +3998,2,1.0,1,1.6655774116516113,499,1.0,1 +3999,2,1.0,1,1.2945821285247803,500,1.0,1 +4000,2,1.0,2,1.652577519416809,1,0.0,1 +4001,2,0.0,2,1.8825745582580566,2,0.0,1 +4002,2,0.0,2,2.3205864429473877,3,0.0,1 +4003,2,1.0,2,1.5475788116455078,4,1.0,1 +4004,2,1.0,2,1.4345803260803223,5,1.0,1 +4005,2,1.0,2,1.39858078956604,6,1.0,1 +4006,2,1.0,2,1.5715785026550293,7,0.0,1 +4007,2,1.0,2,1.7995755672454834,8,1.0,1 +4008,2,1.0,2,1.425580382347107,9,0.0,1 +4009,2,1.0,2,1.2965821027755737,10,1.0,1 +4010,2,1.0,2,1.5755784511566162,11,0.0,1 +4011,2,1.0,2,1.1845821142196655,12,0.0,1 +4012,2,1.0,2,1.814575433731079,13,0.0,1 +4013,2,0.0,2,1.9065742492675781,14,0.0,1 +4014,2,1.0,2,1.3855808973312378,15,0.0,1 +4015,2,0.0,2,1.5695786476135254,16,0.0,1 +4016,2,0.0,2,1.1715821027755737,17,1.0,1 +4017,2,0.0,2,1.2765823602676392,18,0.0,1 +4018,2,0.0,2,1.631577730178833,19,0.0,1 +4019,2,1.0,2,1.844575047492981,20,0.0,1 +4020,2,0.0,2,1.472579836845398,21,0.0,1 +4021,2,0.0,2,1.2345821857452393,22,0.0,1 +4022,2,1.0,2,1.3205817937850952,23,1.0,1 +4023,2,1.0,2,1.3645812273025513,24,1.0,1 +4024,2,1.0,2,1.6385776996612549,25,0.0,1 +4025,2,1.0,2,1.6095781326293945,26,1.0,1 +4026,2,1.0,2,1.4845796823501587,27,1.0,1 +4027,2,1.0,2,1.512579321861267,28,1.0,1 +4028,2,1.0,2,1.3115818500518799,29,0.0,1 +4029,2,0.0,2,1.1875821352005005,30,1.0,1 +4030,2,0.0,2,1.909574270248413,31,1.0,1 +4031,2,1.0,2,2.0415735244750977,32,1.0,1 +4032,2,0.0,2,1.6115779876708984,33,0.0,1 +4033,2,1.0,2,1.2625823020935059,34,0.0,1 +4034,2,0.0,2,1.627577781677246,35,0.0,1 +4035,2,1.0,2,1.3885809183120728,36,1.0,1 +4036,2,0.0,2,1.683577060699463,37,0.0,1 +4037,2,1.0,2,1.1805821657180786,38,1.0,1 +4038,2,1.0,2,1.420580506324768,39,0.0,1 +4039,2,1.0,2,1.4575799703598022,40,1.0,1 +4040,2,1.0,2,1.395580768585205,41,0.0,1 +4041,2,1.0,2,1.4485801458358765,42,0.0,1 +4042,2,0.0,2,1.6145780086517334,43,1.0,1 +4043,2,1.0,2,1.2405822277069092,44,1.0,1 +4044,2,0.0,2,1.3355815410614014,45,0.0,1 +4045,2,1.0,2,1.3605812788009644,46,1.0,1 +4046,2,1.0,2,1.91357421875,47,1.0,1 +4047,2,1.0,2,1.5665786266326904,48,1.0,1 +4048,2,1.0,2,1.535578966140747,49,1.0,1 +4049,2,1.0,2,1.773576021194458,50,0.0,1 +4050,2,0.0,2,2.172579526901245,51,1.0,1 +4051,2,0.0,2,1.2325822114944458,52,1.0,1 +4052,2,0.0,2,2.0535740852355957,53,1.0,1 +4053,2,0.0,2,1.11558198928833,54,0.0,1 +4054,2,0.0,2,1.8025755882263184,55,0.0,1 +4055,2,0.0,2,1.255582332611084,56,1.0,1 +4056,2,0.0,2,1.3185818195343018,57,1.0,1 +4057,2,0.0,2,1.5555787086486816,58,0.0,1 +4058,2,1.0,2,1.8075754642486572,59,1.0,1 +4059,2,1.0,2,1.5325790643692017,60,0.0,1 +4060,2,1.0,2,1.3115818500518799,61,0.0,1 +4061,2,0.0,2,1.6115779876708984,62,0.0,1 +4062,2,0.0,2,2.3195862770080566,63,0.0,1 +4063,2,0.0,2,1.4825797080993652,64,0.0,1 +4064,2,0.0,2,1.487579584121704,65,0.0,1 +4065,2,1.0,2,1.2985820770263672,66,0.0,1 +4066,2,1.0,2,1.7465763092041016,67,0.0,1 +4067,2,0.0,2,1.6095781326293945,68,1.0,1 +4068,2,0.0,2,1.2825822830200195,69,0.0,1 +4069,2,0.0,2,1.7835757732391357,70,1.0,1 +4070,2,0.0,2,1.3615812063217163,71,0.0,1 +4071,2,1.0,2,2.16957950592041,72,0.0,1 +4072,2,0.0,2,1.222582221031189,73,1.0,1 +4073,2,0.0,2,1.8805745840072632,74,0.0,1 +4074,2,0.0,2,1.9445737600326538,75,0.0,1 +4075,2,0.0,2,1.58957839012146,76,0.0,1 +4076,2,0.0,2,2.010572910308838,77,0.0,1 +4077,2,1.0,2,1.6115779876708984,78,1.0,1 +4078,2,1.0,2,1.302582025527954,79,1.0,1 +4079,2,1.0,2,1.5215791463851929,80,1.0,1 +4080,2,1.0,2,1.2825822830200195,81,1.0,1 +4081,2,1.0,2,1.2485822439193726,82,1.0,1 +4082,2,1.0,2,1.2085821628570557,83,1.0,1 +4083,2,1.0,2,1.6195778846740723,84,0.0,1 +4084,2,1.0,2,1.517579197883606,85,0.0,1 +4085,2,1.0,2,2.159578800201416,86,1.0,1 +4086,2,1.0,2,1.3615812063217163,87,0.0,1 +4087,2,0.0,2,1.627577781677246,88,1.0,1 +4088,2,1.0,2,1.53757905960083,89,1.0,1 +4089,2,0.0,2,1.6885770559310913,90,1.0,1 +4090,2,0.0,2,1.9185740947723389,91,0.0,1 +4091,2,1.0,2,1.9525736570358276,92,0.0,1 +4092,2,1.0,2,1.682577133178711,93,1.0,1 +4093,2,1.0,2,1.2485822439193726,94,1.0,1 +4094,2,1.0,2,1.6585774421691895,95,0.0,1 +4095,2,1.0,2,1.7025768756866455,96,1.0,1 +4096,2,1.0,2,1.3525813817977905,97,0.0,1 +4097,2,0.0,2,1.7945756912231445,98,1.0,1 +4098,2,0.0,2,1.252582311630249,99,0.0,1 +4099,2,1.0,2,1.3115818500518799,100,0.0,1 +4100,2,0.0,2,1.1655820608139038,101,0.0,1 +4101,2,0.0,2,1.7845758199691772,102,1.0,1 +4102,2,0.0,2,1.5345790386199951,103,1.0,1 +4103,2,0.0,2,1.1115820407867432,104,0.0,1 +4104,2,0.0,2,1.3195817470550537,105,1.0,1 +4105,2,0.0,2,1.1715821027755737,106,1.0,1 +4106,2,1.0,2,1.819575309753418,107,1.0,1 +4107,2,0.0,2,1.4895795583724976,108,1.0,1 +4108,2,0.0,2,1.4545800685882568,109,1.0,1 +4109,2,0.0,2,1.12158203125,110,0.0,1 +4110,2,1.0,2,1.2895821332931519,111,1.0,1 +4111,2,1.0,2,1.45058012008667,112,1.0,1 +4112,2,1.0,2,1.3535813093185425,113,0.0,1 +4113,2,0.0,2,1.72257661819458,114,0.0,1 +4114,2,1.0,2,1.910574197769165,115,1.0,1 +4115,2,1.0,2,1.9025743007659912,116,0.0,1 +4116,2,1.0,2,1.4585800170898438,117,0.0,1 +4117,2,0.0,2,1.4395802021026611,118,1.0,1 +4118,2,0.0,2,1.3435814380645752,119,1.0,1 +4119,2,0.0,2,1.2435822486877441,120,1.0,1 +4120,2,0.0,2,1.9505736827850342,121,1.0,1 +4121,2,0.0,2,1.3865809440612793,122,0.0,1 +4122,2,0.0,2,1.8015756607055664,123,0.0,1 +4123,2,1.0,2,1.5015794038772583,124,0.0,1 +4124,2,1.0,2,1.769576072692871,125,0.0,1 +4125,2,0.0,2,1.6635773181915283,126,1.0,1 +4126,2,0.0,2,1.9775733947753906,127,0.0,1 +4127,2,0.0,2,1.1175819635391235,128,0.0,1 +4128,2,1.0,2,1.5465788841247559,129,0.0,1 +4129,2,0.0,2,1.3345816135406494,130,1.0,1 +4130,2,0.0,2,1.3415814638137817,131,1.0,1 +4131,2,0.0,2,1.4545800685882568,132,1.0,1 +4132,2,0.0,2,2.002573013305664,133,1.0,1 +4133,2,0.0,2,1.3945808410644531,134,1.0,1 +4134,2,0.0,2,1.2145822048187256,135,1.0,1 +4135,2,0.0,2,1.4515800476074219,136,0.0,1 +4136,2,0.0,2,1.8425750732421875,137,1.0,1 +4137,2,0.0,2,1.2995820045471191,138,0.0,1 +4138,2,1.0,2,1.3405815362930298,139,1.0,1 +4139,2,1.0,2,1.8535749912261963,140,0.0,1 +4140,2,1.0,2,1.95957350730896,141,1.0,1 +4141,2,1.0,2,1.5665786266326904,142,1.0,1 +4142,2,1.0,2,1.677577257156372,143,1.0,1 +4143,2,1.0,2,1.2485822439193726,144,0.0,1 +4144,2,0.0,2,1.3315815925598145,145,0.0,1 +4145,2,0.0,2,1.590578317642212,146,0.0,1 +4146,2,0.0,2,1.8735747337341309,147,1.0,1 +4147,2,0.0,2,1.3115818500518799,148,0.0,1 +4148,2,1.0,2,2.10257625579834,149,1.0,1 +4149,2,1.0,2,1.8345751762390137,150,1.0,1 +4150,2,1.0,2,1.3755810260772705,151,1.0,1 +4151,2,1.0,2,1.3305816650390625,152,1.0,1 +4152,2,1.0,2,1.7835757732391357,153,1.0,1 +4153,2,1.0,2,1.1975821256637573,154,1.0,1 +4154,2,1.0,2,1.3925808668136597,155,1.0,1 +4155,2,1.0,2,1.7835757732391357,156,1.0,1 +4156,2,1.0,2,1.917574167251587,157,1.0,1 +4157,2,1.0,2,1.3925808668136597,158,0.0,1 +4158,2,0.0,2,1.2365822792053223,159,0.0,1 +4159,2,1.0,2,1.3455814123153687,160,0.0,1 +4160,2,1.0,2,1.4575799703598022,161,0.0,1 +4161,2,1.0,2,2.085575580596924,162,0.0,1 +4162,2,1.0,2,1.6435775756835938,163,1.0,1 +4163,2,1.0,2,1.4605799913406372,164,1.0,1 +4164,2,1.0,2,1.2775822877883911,165,1.0,1 +4165,2,0.0,2,1.539578914642334,166,1.0,1 +4166,2,1.0,2,1.42158043384552,167,0.0,1 +4167,2,0.0,2,1.4165805578231812,168,1.0,1 +4168,2,0.0,2,1.469579815864563,169,1.0,1 +4169,2,0.0,2,1.3435814380645752,170,0.0,1 +4170,2,0.0,2,1.3975807428359985,171,1.0,1 +4171,2,0.0,2,1.2455822229385376,172,0.0,1 +4172,2,1.0,2,1.4555799961090088,173,1.0,1 +4173,2,1.0,2,1.4775797128677368,174,0.0,1 +4174,2,0.0,2,1.5015794038772583,175,0.0,1 +4175,2,0.0,2,2.4825940132141113,176,0.0,1 +4176,2,1.0,2,1.2015821933746338,177,1.0,1 +4177,2,1.0,2,1.6075780391693115,178,0.0,1 +4178,2,0.0,2,1.5085793733596802,179,1.0,1 +4179,2,0.0,2,1.3495813608169556,180,0.0,1 +4180,2,1.0,2,1.8765746355056763,181,0.0,1 +4181,2,0.0,2,1.333581566810608,182,0.0,1 +4182,2,0.0,2,1.8905744552612305,183,0.0,1 +4183,2,0.0,2,1.9955730438232422,184,0.0,1 +4184,2,1.0,2,1.5055793523788452,185,1.0,1 +4185,2,1.0,2,1.8075754642486572,186,0.0,1 +4186,2,0.0,2,1.8295753002166748,187,0.0,1 +4187,2,0.0,2,1.5155792236328125,188,1.0,1 +4188,2,0.0,2,1.8515748977661133,189,1.0,1 +4189,2,0.0,2,1.3885809183120728,190,0.0,1 +4190,2,1.0,2,1.7335765361785889,191,0.0,1 +4191,2,0.0,2,1.867574691772461,192,1.0,1 +4192,2,0.0,2,1.259582281112671,193,1.0,1 +4193,2,0.0,2,1.2215821743011475,194,0.0,1 +4194,2,0.0,2,1.6555774211883545,195,0.0,1 +4195,2,0.0,2,1.5115792751312256,196,1.0,1 +4196,2,0.0,2,1.246582269668579,197,0.0,1 +4197,2,0.0,2,1.155582070350647,198,1.0,1 +4198,2,0.0,2,1.5295791625976562,199,1.0,1 +4199,2,0.0,2,1.2755823135375977,200,1.0,1 +4200,2,0.0,2,1.542578935623169,201,0.0,1 +4201,2,0.0,2,1.219582200050354,202,0.0,1 +4202,2,1.0,2,1.250582218170166,203,0.0,1 +4203,2,1.0,2,1.7175767421722412,204,0.0,1 +4204,2,0.0,2,1.1745821237564087,205,1.0,1 +4205,2,0.0,2,1.5495789051055908,206,0.0,1 +4206,2,0.0,2,1.1465821266174316,207,0.0,1 +4207,2,0.0,2,1.395580768585205,208,0.0,1 +4208,2,0.0,2,1.8135755062103271,209,1.0,1 +4209,2,1.0,2,1.3135818243026733,210,0.0,1 +4210,2,0.0,2,1.9375739097595215,211,1.0,1 +4211,2,0.0,2,1.1135820150375366,212,0.0,1 +4212,2,0.0,2,1.4555799961090088,213,1.0,1 +4213,2,0.0,2,1.3875808715820312,214,1.0,1 +4214,2,0.0,2,1.1035820245742798,215,1.0,1 +4215,2,0.0,2,1.350581407546997,216,0.0,1 +4216,2,0.0,2,1.3095818758010864,217,1.0,1 +4217,2,0.0,2,1.3345816135406494,218,0.0,1 +4218,2,0.0,2,1.355581283569336,219,1.0,1 +4219,2,0.0,2,1.3635811805725098,220,1.0,1 +4220,2,0.0,2,1.2335822582244873,221,0.0,1 +4221,2,0.0,2,1.9525736570358276,222,1.0,1 +4222,2,0.0,2,1.3055819272994995,223,0.0,1 +4223,2,0.0,2,1.420580506324768,224,0.0,1 +4224,2,0.0,2,1.443580150604248,225,1.0,1 +4225,2,0.0,2,1.3345816135406494,226,1.0,1 +4226,2,0.0,2,1.256582260131836,227,1.0,1 +4227,2,0.0,2,1.3835809230804443,228,1.0,1 +4228,2,0.0,2,1.3565813302993774,229,0.0,1 +4229,2,0.0,2,1.2975820302963257,230,0.0,1 +4230,2,1.0,2,1.9975731372833252,231,0.0,1 +4231,2,0.0,2,1.4675798416137695,232,0.0,1 +4232,2,1.0,2,1.4115805625915527,233,0.0,1 +4233,2,1.0,2,1.962573528289795,234,1.0,1 +4234,2,0.0,2,1.2335822582244873,235,0.0,1 +4235,2,1.0,2,1.8075754642486572,236,0.0,1 +4236,2,0.0,2,1.863574743270874,237,0.0,1 +4237,2,1.0,2,1.7105767726898193,238,1.0,1 +4238,2,1.0,2,1.2785823345184326,239,0.0,1 +4239,2,1.0,2,1.5535788536071777,240,0.0,1 +4240,2,1.0,2,1.5335791110992432,241,0.0,1 +4241,2,0.0,2,1.5295791625976562,242,0.0,1 +4242,2,0.0,2,1.377581000328064,243,1.0,1 +4243,2,0.0,2,2.2985854148864746,244,1.0,1 +4244,2,0.0,2,1.5655786991119385,245,1.0,1 +4245,2,0.0,2,1.3115818500518799,246,0.0,1 +4246,2,0.0,2,1.61257803440094,247,0.0,1 +4247,2,1.0,2,1.5495789051055908,248,1.0,1 +4248,2,1.0,2,1.7245765924453735,249,1.0,1 +4249,2,1.0,2,1.428580403327942,250,1.0,1 +4250,2,1.0,2,1.3595812320709229,251,0.0,1 +4251,2,0.0,2,1.652577519416809,252,0.0,1 +4252,2,0.0,2,1.5335791110992432,253,1.0,1 +4253,2,0.0,2,1.1305820941925049,254,0.0,1 +4254,2,0.0,2,1.818575382232666,255,0.0,1 +4255,2,1.0,2,1.863574743270874,256,1.0,1 +4256,2,1.0,2,1.542578935623169,257,1.0,1 +4257,2,1.0,2,1.6995768547058105,258,0.0,1 +4258,2,1.0,2,1.3345816135406494,259,1.0,1 +4259,2,1.0,2,1.564578652381897,260,0.0,1 +4260,2,1.0,2,1.2355822324752808,261,1.0,1 +4261,2,1.0,2,1.5755784511566162,262,1.0,1 +4262,2,1.0,2,1.3745810985565186,263,1.0,1 +4263,2,1.0,2,1.3015819787979126,264,1.0,1 +4264,2,1.0,2,1.4755797386169434,265,0.0,1 +4265,2,1.0,2,1.6175780296325684,266,0.0,1 +4266,2,0.0,2,1.6145780086517334,267,0.0,1 +4267,2,1.0,2,2.0305728912353516,268,1.0,1 +4268,2,1.0,2,1.428580403327942,269,0.0,1 +4269,2,1.0,2,1.6495776176452637,270,1.0,1 +4270,2,1.0,2,1.4125806093215942,271,0.0,1 +4271,2,1.0,2,1.9785733222961426,272,0.0,1 +4272,2,1.0,2,1.63557767868042,273,1.0,1 +4273,2,0.0,2,1.3175817728042603,274,1.0,1 +4274,2,0.0,2,1.3275816440582275,275,1.0,1 +4275,2,1.0,2,1.5025794506072998,276,0.0,1 +4276,2,0.0,2,1.469579815864563,277,0.0,1 +4277,2,0.0,2,1.5665786266326904,278,0.0,1 +4278,2,1.0,2,1.9345738887786865,279,1.0,1 +4279,2,1.0,2,1.3835809230804443,280,1.0,1 +4280,2,1.0,2,1.818575382232666,281,1.0,1 +4281,2,1.0,2,1.5405789613723755,282,1.0,1 +4282,2,1.0,2,1.8425750732421875,283,0.0,1 +4283,2,1.0,2,2.0695748329162598,284,1.0,1 +4284,2,0.0,2,1.3875808715820312,285,1.0,1 +4285,2,0.0,2,2.5755982398986816,286,0.0,1 +4286,2,1.0,2,1.6245778799057007,287,0.0,1 +4287,2,0.0,2,1.7855758666992188,288,0.0,1 +4288,2,0.0,2,1.2705823183059692,289,1.0,1 +4289,2,0.0,2,1.3145818710327148,290,0.0,1 +4290,2,1.0,2,2.0315728187561035,291,1.0,1 +4291,2,1.0,2,1.748576283454895,292,0.0,1 +4292,2,1.0,2,1.6005781888961792,293,0.0,1 +4293,2,0.0,2,1.3755810260772705,294,1.0,1 +4294,2,0.0,2,1.6455776691436768,295,0.0,1 +4295,2,1.0,2,1.4885796308517456,296,0.0,1 +4296,2,1.0,2,2.416590929031372,297,0.0,1 +4297,2,0.0,2,1.5045794248580933,298,0.0,1 +4298,2,1.0,2,1.8605748414993286,299,1.0,1 +4299,2,1.0,2,1.677577257156372,300,1.0,1 +4300,2,1.0,2,1.5725785493850708,301,0.0,1 +4301,2,0.0,2,1.4235804080963135,302,1.0,1 +4302,2,0.0,2,1.6725772619247437,303,0.0,1 +4303,2,1.0,2,1.517579197883606,304,0.0,1 +4304,2,1.0,2,1.5065793991088867,305,0.0,1 +4305,2,0.0,2,1.3485814332962036,306,0.0,1 +4306,2,1.0,2,1.5265791416168213,307,0.0,1 +4307,2,0.0,2,1.3135818243026733,308,0.0,1 +4308,2,1.0,2,1.93657386302948,309,0.0,1 +4309,2,0.0,2,1.5145792961120605,310,1.0,1 +4310,2,0.0,2,1.3305816650390625,311,1.0,1 +4311,2,0.0,2,1.1815820932388306,312,0.0,1 +4312,2,0.0,2,1.2235822677612305,313,1.0,1 +4313,2,0.0,2,1.2715823650360107,314,1.0,1 +4314,2,0.0,2,1.4865796566009521,315,0.0,1 +4315,2,0.0,2,1.3525813817977905,316,1.0,1 +4316,2,1.0,2,1.744576334953308,317,1.0,1 +4317,2,1.0,2,1.2245821952819824,318,0.0,1 +4318,2,0.0,2,1.258582353591919,319,0.0,1 +4319,2,1.0,2,2.386589527130127,320,1.0,1 +4320,2,1.0,2,1.4105806350708008,321,1.0,1 +4321,2,1.0,2,1.8115754127502441,322,0.0,1 +4322,2,1.0,2,2.142578125,323,0.0,1 +4323,2,0.0,2,1.303581953048706,324,1.0,1 +4324,2,0.0,2,1.1405820846557617,325,0.0,1 +4325,2,1.0,2,1.685577154159546,326,0.0,1 +4326,2,0.0,2,1.6215779781341553,327,0.0,1 +4327,2,0.0,2,1.3905808925628662,328,0.0,1 +4328,2,0.0,2,1.3125818967819214,329,0.0,1 +4329,2,0.0,2,1.4995794296264648,330,1.0,1 +4330,2,0.0,2,1.4935795068740845,331,1.0,1 +4331,2,0.0,2,1.6155779361724854,332,1.0,1 +4332,2,0.0,2,1.5955781936645508,333,1.0,1 +4333,2,0.0,2,1.1565821170806885,334,1.0,1 +4334,2,0.0,2,1.660577416419983,335,1.0,1 +4335,2,0.0,2,1.250582218170166,336,0.0,1 +4336,2,0.0,2,1.3695811033248901,337,1.0,1 +4337,2,0.0,2,1.586578369140625,338,0.0,1 +4338,2,1.0,2,1.5225791931152344,339,0.0,1 +4339,2,0.0,2,1.5735785961151123,340,0.0,1 +4340,2,0.0,2,1.5095793008804321,341,0.0,1 +4341,2,0.0,2,1.185582160949707,342,1.0,1 +4342,2,0.0,2,1.3365815877914429,343,0.0,1 +4343,2,1.0,2,2.0545740127563477,344,1.0,1 +4344,2,1.0,2,1.4225804805755615,345,1.0,1 +4345,2,1.0,2,1.4015806913375854,346,1.0,1 +4346,2,1.0,2,1.5755784511566162,347,1.0,1 +4347,2,1.0,2,1.4105806350708008,348,1.0,1 +4348,2,1.0,2,1.1745821237564087,349,1.0,1 +4349,2,1.0,2,1.917574167251587,350,1.0,1 +4350,2,1.0,2,1.4085806608200073,351,0.0,1 +4351,2,0.0,2,1.3535813093185425,352,0.0,1 +4352,2,1.0,2,1.6245778799057007,353,0.0,1 +4353,2,0.0,2,2.2355823516845703,354,1.0,1 +4354,2,0.0,2,1.1875821352005005,355,0.0,1 +4355,2,0.0,2,2.0245728492736816,356,0.0,1 +4356,2,1.0,2,2.2435827255249023,357,0.0,1 +4357,2,0.0,2,1.9505736827850342,358,1.0,1 +4358,2,0.0,2,1.3165818452835083,359,1.0,1 +4359,2,0.0,2,1.15158212184906,360,1.0,1 +4360,2,0.0,2,1.3625812530517578,361,1.0,1 +4361,2,0.0,2,1.2715823650360107,362,1.0,1 +4362,2,0.0,2,1.1415820121765137,363,0.0,1 +4363,2,0.0,2,1.2055821418762207,364,1.0,1 +4364,2,0.0,2,1.2885822057724,365,0.0,1 +4365,2,1.0,2,1.586578369140625,366,0.0,1 +4366,2,0.0,2,1.4125806093215942,367,0.0,1 +4367,2,0.0,2,1.1835821866989136,368,0.0,1 +4368,2,1.0,2,1.2415822744369507,369,0.0,1 +4369,2,0.0,2,1.8465750217437744,370,0.0,1 +4370,2,0.0,2,1.6555774211883545,371,1.0,1 +4371,2,0.0,2,1.1325820684432983,372,0.0,1 +4372,2,1.0,2,1.402580738067627,373,1.0,1 +4373,2,1.0,2,1.2275822162628174,374,0.0,1 +4374,2,0.0,2,1.281582236289978,375,1.0,1 +4375,2,0.0,2,1.2825822830200195,376,1.0,1 +4376,2,0.0,2,1.246582269668579,377,1.0,1 +4377,2,0.0,2,1.4785797595977783,378,1.0,1 +4378,2,0.0,2,1.6165779829025269,379,0.0,1 +4379,2,0.0,2,1.729576587677002,380,1.0,1 +4380,2,0.0,2,1.3445814847946167,381,0.0,1 +4381,2,1.0,2,1.3575812578201294,382,0.0,1 +4382,2,1.0,2,1.3425815105438232,383,1.0,1 +4383,2,1.0,2,2.2095813751220703,384,1.0,1 +4384,2,1.0,2,1.1725821495056152,385,0.0,1 +4385,2,0.0,2,1.5235791206359863,386,0.0,1 +4386,2,1.0,2,1.225582242012024,387,0.0,1 +4387,2,1.0,2,1.6235778331756592,388,1.0,1 +4388,2,1.0,2,1.6145780086517334,389,1.0,1 +4389,2,1.0,2,1.3595812320709229,390,0.0,1 +4390,2,1.0,2,1.685577154159546,391,0.0,1 +4391,2,0.0,2,1.4145805835723877,392,1.0,1 +4392,2,0.0,2,1.4775797128677368,393,1.0,1 +4393,2,0.0,2,1.3535813093185425,394,0.0,1 +4394,2,0.0,2,1.5225791931152344,395,1.0,1 +4395,2,0.0,2,1.775575876235962,396,1.0,1 +4396,2,0.0,2,1.1635820865631104,397,0.0,1 +4397,2,0.0,2,2.2735843658447266,398,1.0,1 +4398,2,0.0,2,1.347581386566162,399,0.0,1 +4399,2,0.0,2,1.4785797595977783,400,0.0,1 +4400,2,1.0,2,1.8075754642486572,401,1.0,1 +4401,2,1.0,2,1.7245765924453735,402,1.0,1 +4402,2,0.0,2,1.3705811500549316,403,1.0,1 +4403,2,1.0,2,1.4095805883407593,404,1.0,1 +4404,2,0.0,2,1.7575762271881104,405,1.0,1 +4405,2,1.0,2,1.7955756187438965,406,1.0,1 +4406,2,0.0,2,2.004572868347168,407,1.0,1 +4407,2,1.0,2,2.170579433441162,408,1.0,1 +4408,2,0.0,2,1.5555787086486816,409,1.0,1 +4409,2,1.0,2,1.3835809230804443,410,0.0,1 +4410,2,0.0,2,1.1545820236206055,411,0.0,1 +4411,2,0.0,2,1.8165754079818726,412,1.0,1 +4412,2,0.0,2,1.984573245048523,413,1.0,1 +4413,2,0.0,2,1.5495789051055908,414,0.0,1 +4414,2,0.0,2,1.7165766954421997,415,0.0,1 +4415,2,0.0,2,1.7635760307312012,416,0.0,1 +4416,2,1.0,2,1.5195791721343994,417,0.0,1 +4417,2,0.0,2,1.5885783433914185,418,1.0,1 +4418,2,0.0,2,1.2405822277069092,419,0.0,1 +4419,2,0.0,2,1.325581669807434,420,1.0,1 +4420,2,0.0,2,1.2015821933746338,421,0.0,1 +4421,2,0.0,2,1.5695786476135254,422,1.0,1 +4422,2,0.0,2,1.3235816955566406,423,0.0,1 +4423,2,0.0,2,1.1505820751190186,424,1.0,1 +4424,2,0.0,2,1.1845821142196655,425,0.0,1 +4425,2,0.0,2,1.2795822620391846,426,0.0,1 +4426,2,0.0,2,1.2745823860168457,427,0.0,1 +4427,2,1.0,2,2.114576816558838,428,1.0,1 +4428,2,1.0,2,1.2965821027755737,429,0.0,1 +4429,2,1.0,2,1.4485801458358765,430,0.0,1 +4430,2,0.0,2,1.7985756397247314,431,1.0,1 +4431,2,0.0,2,1.2575823068618774,432,0.0,1 +4432,2,1.0,2,1.6095781326293945,433,1.0,1 +4433,2,1.0,2,1.8055756092071533,434,0.0,1 +4434,2,1.0,2,1.4495800733566284,435,0.0,1 +4435,2,1.0,2,1.4625799655914307,436,1.0,1 +4436,2,1.0,2,1.8395750522613525,437,0.0,1 +4437,2,0.0,2,1.8015756607055664,438,1.0,1 +4438,2,0.0,2,1.258582353591919,439,1.0,1 +4439,2,0.0,2,1.2935820817947388,440,1.0,1 +4440,2,0.0,2,1.3935807943344116,441,0.0,1 +4441,2,0.0,2,2.0395731925964355,442,0.0,1 +4442,2,1.0,2,1.5115792751312256,443,1.0,1 +4443,2,1.0,2,1.3365815877914429,444,0.0,1 +4444,2,1.0,2,1.564578652381897,445,0.0,1 +4445,2,0.0,2,1.4445801973342896,446,1.0,1 +4446,2,0.0,2,1.3465814590454102,447,1.0,1 +4447,2,0.0,2,1.487579584121704,448,0.0,1 +4448,2,0.0,2,2.0325729846954346,449,1.0,1 +4449,2,0.0,2,1.3975807428359985,450,1.0,1 +4450,2,0.0,2,2.123577117919922,451,1.0,1 +4451,2,0.0,2,1.216582179069519,452,0.0,1 +4452,2,0.0,2,1.6555774211883545,453,0.0,1 +4453,2,1.0,2,1.8035755157470703,454,0.0,1 +4454,2,0.0,2,2.0375733375549316,455,0.0,1 +4455,2,1.0,2,1.4125806093215942,456,1.0,1 +4456,2,1.0,2,1.585578441619873,457,0.0,1 +4457,2,1.0,2,2.382589340209961,458,1.0,1 +4458,2,1.0,2,1.4515800476074219,459,0.0,1 +4459,2,1.0,2,1.888574481010437,460,1.0,1 +4460,2,0.0,2,1.1455820798873901,461,0.0,1 +4461,2,1.0,2,1.2015821933746338,462,0.0,1 +4462,2,1.0,2,1.9255740642547607,463,1.0,1 +4463,2,1.0,2,1.2075822353363037,464,1.0,1 +4464,2,1.0,2,2.2925851345062256,465,1.0,1 +4465,2,1.0,2,1.5885783433914185,466,0.0,1 +4466,2,0.0,2,1.4155805110931396,467,1.0,1 +4467,2,0.0,2,1.2405822277069092,468,0.0,1 +4468,2,1.0,2,1.7175767421722412,469,1.0,1 +4469,2,1.0,2,1.6845771074295044,470,1.0,1 +4470,2,1.0,2,1.5115792751312256,471,0.0,1 +4471,2,1.0,2,1.6705772876739502,472,1.0,1 +4472,2,1.0,2,2.360588312149048,473,1.0,1 +4473,2,1.0,2,1.3115818500518799,474,0.0,1 +4474,2,0.0,2,1.2745823860168457,475,1.0,1 +4475,2,0.0,2,1.495579481124878,476,1.0,1 +4476,2,0.0,2,1.2785823345184326,477,1.0,1 +4477,2,1.0,2,1.9195740222930908,478,1.0,1 +4478,2,0.0,2,1.2925821542739868,479,1.0,1 +4479,2,0.0,2,2.181580066680908,480,0.0,1 +4480,2,1.0,2,1.5005794763565063,481,1.0,1 +4481,2,1.0,2,1.280582308769226,482,0.0,1 +4482,2,1.0,2,1.3015819787979126,483,1.0,1 +4483,2,1.0,2,1.542578935623169,484,1.0,1 +4484,2,1.0,2,1.4445801973342896,485,0.0,1 +4485,2,0.0,2,1.3625812530517578,486,0.0,1 +4486,2,0.0,2,1.2015821933746338,487,1.0,1 +4487,2,0.0,2,1.372581124305725,488,0.0,1 +4488,2,1.0,2,1.5755784511566162,489,0.0,1 +4489,2,0.0,2,1.5005794763565063,490,0.0,1 +4490,2,0.0,2,1.2365822792053223,491,0.0,1 +4491,2,1.0,2,1.47357976436615,492,0.0,1 +4492,2,1.0,2,1.9815733432769775,493,1.0,1 +4493,2,1.0,2,1.6655774116516113,494,0.0,1 +4494,2,1.0,2,1.9425737857818604,495,0.0,1 +4495,2,1.0,2,1.7185766696929932,496,0.0,1 +4496,2,0.0,2,1.7165766954421997,497,0.0,1 +4497,2,0.0,2,1.8735747337341309,498,0.0,1 +4498,2,0.0,2,1.999572992324829,499,1.0,1 +4499,2,0.0,2,1.3005820512771606,500,0.0,1 +4500,3,1.0,0,2.0351614952087402,1,1.0,1 +4501,3,1.0,0,1.4351686239242554,2,1.0,1 +4502,3,0.0,0,1.5401673316955566,3,0.0,1 +4503,3,1.0,0,1.259170651435852,4,1.0,1 +4504,3,1.0,0,1.235170602798462,5,1.0,1 +4505,3,0.0,0,1.3171701431274414,6,0.0,1 +4506,3,1.0,0,1.5961666107177734,7,1.0,1 +4507,3,1.0,0,1.6711657047271729,8,1.0,1 +4508,3,1.0,0,1.4431685209274292,9,1.0,1 +4509,3,1.0,0,1.5411672592163086,10,0.0,1 +4510,3,0.0,0,1.2581706047058105,11,0.0,1 +4511,3,1.0,0,1.550167202949524,12,0.0,1 +4512,3,0.0,0,1.943162202835083,13,0.0,1 +4513,3,0.0,0,1.5391674041748047,14,0.0,1 +4514,3,1.0,0,1.43216872215271,15,1.0,1 +4515,3,1.0,0,1.2271705865859985,16,1.0,1 +4516,3,1.0,0,1.3231700658798218,17,1.0,1 +4517,3,1.0,0,1.3681695461273193,18,1.0,1 +4518,3,1.0,0,1.3121702671051025,19,1.0,1 +4519,3,1.0,0,1.715165138244629,20,0.0,1 +4520,3,1.0,0,1.5341674089431763,21,1.0,1 +4521,3,1.0,0,1.265170693397522,22,1.0,1 +4522,3,1.0,0,1.4681682586669922,23,1.0,1 +4523,3,1.0,0,1.3131701946258545,24,1.0,1 +4524,3,0.0,0,1.1201703548431396,25,0.0,1 +4525,3,1.0,0,1.363169550895691,26,0.0,1 +4526,3,0.0,0,1.520167589187622,27,0.0,1 +4527,3,0.0,0,1.3081703186035156,28,0.0,1 +4528,3,0.0,0,1.8361635208129883,29,0.0,1 +4529,3,1.0,0,2.1261658668518066,30,1.0,1 +4530,3,1.0,0,1.4121689796447754,31,1.0,1 +4531,3,1.0,0,1.3071702718734741,32,0.0,1 +4532,3,1.0,0,1.5581670999526978,33,1.0,1 +4533,3,1.0,0,2.223170280456543,34,1.0,1 +4534,3,1.0,0,1.3981691598892212,35,1.0,1 +4535,3,1.0,0,1.3521697521209717,36,0.0,1 +4536,3,1.0,0,1.6691656112670898,37,1.0,1 +4537,3,1.0,0,1.590166687965393,38,1.0,1 +4538,3,1.0,0,1.4261687994003296,39,1.0,1 +4539,3,1.0,0,1.2961704730987549,40,1.0,1 +4540,3,1.0,0,1.2051705121994019,41,0.0,1 +4541,3,0.0,0,1.7021652460098267,42,0.0,1 +4542,3,0.0,0,1.7891640663146973,43,0.0,1 +4543,3,1.0,0,1.2861706018447876,44,1.0,1 +4544,3,1.0,0,1.1631704568862915,45,1.0,1 +4545,3,1.0,0,1.402169108390808,46,0.0,1 +4546,3,0.0,0,1.3191701173782349,47,0.0,1 +4547,3,1.0,0,1.5361673831939697,48,0.0,1 +4548,3,1.0,0,1.3681695461273193,49,1.0,1 +4549,3,0.0,0,1.4161689281463623,50,0.0,1 +4550,3,1.0,0,1.2141705751419067,51,0.0,1 +4551,3,1.0,0,1.7941640615463257,52,1.0,1 +4552,3,1.0,0,1.616166353225708,53,1.0,1 +4553,3,1.0,0,1.3011703491210938,54,1.0,1 +4554,3,0.0,0,1.665165662765503,55,1.0,1 +4555,3,0.0,0,1.6041665077209473,56,0.0,1 +4556,3,1.0,0,2.0851638317108154,57,0.0,1 +4557,3,0.0,0,2.1471667289733887,58,0.0,1 +4558,3,0.0,0,2.249171495437622,59,0.0,1 +4559,3,0.0,0,1.4781681299209595,60,1.0,1 +4560,3,0.0,0,1.3671694993972778,61,1.0,1 +4561,3,0.0,0,1.6301661729812622,62,0.0,1 +4562,3,0.0,0,1.7181650400161743,63,1.0,1 +4563,3,0.0,0,1.1901705265045166,64,0.0,1 +4564,3,1.0,0,1.8181637525558472,65,0.0,1 +4565,3,1.0,0,1.54216730594635,66,1.0,1 +4566,3,1.0,0,1.4701682329177856,67,1.0,1 +4567,3,0.0,0,1.2951704263687134,68,0.0,1 +4568,3,1.0,0,1.5261675119400024,69,1.0,1 +4569,3,1.0,0,1.5741668939590454,70,1.0,1 +4570,3,1.0,0,1.7661644220352173,71,1.0,1 +4571,3,1.0,0,1.2031705379486084,72,1.0,1 +4572,3,1.0,0,1.753164529800415,73,0.0,1 +4573,3,1.0,0,1.799164056777954,74,1.0,1 +4574,3,1.0,0,1.2431706190109253,75,1.0,1 +4575,3,0.0,0,1.158170461654663,76,0.0,1 +4576,3,1.0,0,1.2691706418991089,77,0.0,1 +4577,3,1.0,0,1.4161689281463623,78,1.0,1 +4578,3,1.0,0,1.332170009613037,79,1.0,1 +4579,3,1.0,0,1.5371673107147217,80,1.0,1 +4580,3,1.0,0,1.7271649837493896,81,1.0,1 +4581,3,1.0,0,1.661165714263916,82,1.0,1 +4582,3,1.0,0,1.3781694173812866,83,1.0,1 +4583,3,1.0,0,1.2271705865859985,84,1.0,1 +4584,3,1.0,0,1.3651695251464844,85,0.0,1 +4585,3,0.0,0,2.0261611938476562,86,0.0,1 +4586,3,0.0,0,1.5081677436828613,87,0.0,1 +4587,3,0.0,0,1.6851654052734375,88,0.0,1 +4588,3,0.0,0,1.5431673526763916,89,1.0,1 +4589,3,0.0,0,1.1131703853607178,90,0.0,1 +4590,3,0.0,0,1.4711681604385376,91,1.0,1 +4591,3,0.0,0,1.1991705894470215,92,1.0,1 +4592,3,0.0,0,1.3261700868606567,93,1.0,1 +4593,3,0.0,0,1.2611706256866455,94,0.0,1 +4594,3,0.0,0,1.2191705703735352,95,0.0,1 +4595,3,0.0,0,1.4491684436798096,96,0.0,1 +4596,3,1.0,0,1.477168083190918,97,1.0,1 +4597,3,1.0,0,1.3121702671051025,98,1.0,1 +4598,3,1.0,0,1.3441698551177979,99,1.0,1 +4599,3,1.0,0,1.8411633968353271,100,1.0,1 +4600,3,1.0,0,1.6441659927368164,101,1.0,1 +4601,3,1.0,0,1.3281700611114502,102,1.0,1 +4602,3,1.0,0,1.2471706867218018,103,0.0,1 +4603,3,1.0,0,1.1971704959869385,104,1.0,1 +4604,3,1.0,0,1.4051690101623535,105,1.0,1 +4605,3,1.0,0,1.4841680526733398,106,1.0,1 +4606,3,1.0,0,1.3451697826385498,107,1.0,1 +4607,3,1.0,0,1.6091663837432861,108,1.0,1 +4608,3,1.0,0,1.3461698293685913,109,0.0,1 +4609,3,0.0,0,1.499167799949646,110,0.0,1 +4610,3,0.0,0,1.2241705656051636,111,0.0,1 +4611,3,1.0,0,1.7891640663146973,112,1.0,1 +4612,3,1.0,0,1.3661695718765259,113,1.0,1 +4613,3,1.0,0,1.3501697778701782,114,0.0,1 +4614,3,0.0,0,1.9041626453399658,115,0.0,1 +4615,3,1.0,0,1.760164499282837,116,1.0,1 +4616,3,1.0,0,1.5471673011779785,117,1.0,1 +4617,3,1.0,0,1.406169056892395,118,1.0,1 +4618,3,1.0,0,1.226170539855957,119,1.0,1 +4619,3,1.0,0,1.3821693658828735,120,1.0,1 +4620,3,1.0,0,1.340169906616211,121,1.0,1 +4621,3,1.0,0,1.3921692371368408,122,1.0,1 +4622,3,1.0,0,1.2781707048416138,123,1.0,1 +4623,3,1.0,0,2.227170467376709,124,1.0,1 +4624,3,1.0,0,1.5471673011779785,125,1.0,1 +4625,3,1.0,0,1.3241701126098633,126,1.0,1 +4626,3,1.0,0,1.3081703186035156,127,0.0,1 +4627,3,0.0,0,1.5111676454544067,128,1.0,1 +4628,3,0.0,0,1.1551704406738281,129,0.0,1 +4629,3,0.0,0,2.0931642055511475,130,1.0,1 +4630,3,0.0,0,1.4271687269210815,131,1.0,1 +4631,3,0.0,0,1.1381704807281494,132,0.0,1 +4632,3,1.0,0,1.2981704473495483,133,1.0,1 +4633,3,1.0,0,1.5391674041748047,134,1.0,1 +4634,3,1.0,0,1.3861693143844604,135,0.0,1 +4635,3,1.0,0,1.271170735359192,136,1.0,1 +4636,3,1.0,0,1.3791693449020386,137,1.0,1 +4637,3,1.0,0,1.3071702718734741,138,1.0,1 +4638,3,1.0,0,1.6851654052734375,139,1.0,1 +4639,3,1.0,0,1.7311649322509766,140,1.0,1 +4640,3,1.0,0,1.3031703233718872,141,1.0,1 +4641,3,1.0,0,1.7701643705368042,142,1.0,1 +4642,3,1.0,0,2.0651628971099854,143,1.0,1 +4643,3,1.0,0,1.19817054271698,144,0.0,1 +4644,3,0.0,0,1.5781668424606323,145,0.0,1 +4645,3,1.0,0,1.3071702718734741,146,1.0,1 +4646,3,1.0,0,1.358169674873352,147,1.0,1 +4647,3,1.0,0,1.1431704759597778,148,1.0,1 +4648,3,1.0,0,1.6321661472320557,149,1.0,1 +4649,3,1.0,0,1.167170524597168,150,1.0,1 +4650,3,0.0,0,1.9561619758605957,151,0.0,1 +4651,3,0.0,0,1.451168417930603,152,0.0,1 +4652,3,1.0,0,1.158170461654663,153,1.0,1 +4653,3,1.0,0,1.4881680011749268,154,1.0,1 +4654,3,1.0,0,1.2761707305908203,155,1.0,1 +4655,3,1.0,0,1.2231706380844116,156,1.0,1 +4656,3,1.0,0,1.4881680011749268,157,1.0,1 +4657,3,1.0,0,1.709165096282959,158,0.0,1 +4658,3,0.0,0,1.7441647052764893,159,1.0,1 +4659,3,0.0,0,1.4141689538955688,160,0.0,1 +4660,3,0.0,0,1.9941614866256714,161,0.0,1 +4661,3,0.0,0,2.1391663551330566,162,0.0,1 +4662,3,0.0,0,1.5581670999526978,163,1.0,1 +4663,3,0.0,0,1.2081705331802368,164,0.0,1 +4664,3,0.0,0,1.2191705703735352,165,0.0,1 +4665,3,1.0,0,1.7981640100479126,166,1.0,1 +4666,3,1.0,0,1.40316903591156,167,0.0,1 +4667,3,0.0,0,1.3771693706512451,168,0.0,1 +4668,3,0.0,0,2.4211795330047607,169,1.0,1 +4669,3,0.0,0,1.167170524597168,170,0.0,1 +4670,3,1.0,0,1.2601706981658936,171,1.0,1 +4671,3,1.0,0,1.6111664772033691,172,1.0,1 +4672,3,1.0,0,1.2771706581115723,173,1.0,1 +4673,3,1.0,0,1.1521704196929932,174,1.0,1 +4674,3,1.0,0,1.2421705722808838,175,0.0,1 +4675,3,1.0,0,1.5811667442321777,176,1.0,1 +4676,3,1.0,0,1.2471706867218018,177,1.0,1 +4677,3,1.0,0,1.2911704778671265,178,1.0,1 +4678,3,1.0,0,1.6281661987304688,179,0.0,1 +4679,3,0.0,0,1.6531658172607422,180,0.0,1 +4680,3,1.0,0,1.4851679801940918,181,1.0,1 +4681,3,1.0,0,1.1431704759597778,182,1.0,1 +4682,3,1.0,0,1.4871679544448853,183,1.0,1 +4683,3,1.0,0,1.5181676149368286,184,1.0,1 +4684,3,1.0,0,1.4891679286956787,185,1.0,1 +4685,3,1.0,0,1.2641706466674805,186,1.0,1 +4686,3,1.0,0,1.3961691856384277,187,1.0,1 +4687,3,1.0,0,1.6531658172607422,188,1.0,1 +4688,3,1.0,0,1.5401673316955566,189,1.0,1 +4689,3,0.0,0,1.5221675634384155,190,0.0,1 +4690,3,1.0,0,1.6351661682128906,191,1.0,1 +4691,3,1.0,0,1.332170009613037,192,1.0,1 +4692,3,1.0,0,1.4441685676574707,193,1.0,1 +4693,3,1.0,0,1.4391685724258423,194,1.0,1 +4694,3,1.0,0,1.2731707096099854,195,1.0,1 +4695,3,0.0,0,1.2181706428527832,196,0.0,1 +4696,3,1.0,0,1.381169319152832,197,1.0,1 +4697,3,1.0,0,1.3791693449020386,198,1.0,1 +4698,3,1.0,0,1.315170168876648,199,1.0,1 +4699,3,1.0,0,1.4391685724258423,200,1.0,1 +4700,3,1.0,0,1.3311699628829956,201,1.0,1 +4701,3,1.0,0,1.8081638813018799,202,1.0,1 +4702,3,1.0,0,1.6431660652160645,203,1.0,1 +4703,3,1.0,0,1.2481706142425537,204,1.0,1 +4704,3,1.0,0,1.333169937133789,205,1.0,1 +4705,3,1.0,0,1.402169108390808,206,1.0,1 +4706,3,1.0,0,1.5481672286987305,207,1.0,1 +4707,3,1.0,0,1.5071676969528198,208,1.0,1 +4708,3,1.0,0,1.359169602394104,209,1.0,1 +4709,3,1.0,0,1.2541706562042236,210,1.0,1 +4710,3,1.0,0,1.1971704959869385,211,1.0,1 +4711,3,1.0,0,1.1811704635620117,212,1.0,1 +4712,3,1.0,0,1.4591683149337769,213,1.0,1 +4713,3,1.0,0,1.2941704988479614,214,0.0,1 +4714,3,1.0,0,1.8241636753082275,215,1.0,1 +4715,3,1.0,0,1.4141689538955688,216,1.0,1 +4716,3,1.0,0,1.7181650400161743,217,1.0,1 +4717,3,1.0,0,1.7501646280288696,218,1.0,1 +4718,3,1.0,0,1.2191705703735352,219,1.0,1 +4719,3,1.0,0,1.2431706190109253,220,1.0,1 +4720,3,1.0,0,1.2271705865859985,221,1.0,1 +4721,3,1.0,0,1.1631704568862915,222,1.0,1 +4722,3,1.0,0,1.1991705894470215,223,1.0,1 +4723,3,1.0,0,1.3091702461242676,224,1.0,1 +4724,3,1.0,0,1.5071676969528198,225,0.0,1 +4725,3,1.0,0,1.572166919708252,226,1.0,1 +4726,3,1.0,0,1.6021665334701538,227,1.0,1 +4727,3,1.0,0,1.265170693397522,228,1.0,1 +4728,3,1.0,0,1.6211662292480469,229,0.0,1 +4729,3,0.0,0,1.189170479774475,230,0.0,1 +4730,3,1.0,0,2.0981645584106445,231,1.0,1 +4731,3,1.0,0,1.5791668891906738,232,1.0,1 +4732,3,1.0,0,1.4271687269210815,233,0.0,1 +4733,3,0.0,0,1.9151625633239746,234,0.0,1 +4734,3,0.0,0,1.8281636238098145,235,0.0,1 +4735,3,1.0,0,2.0391616821289062,236,1.0,1 +4736,3,1.0,0,1.4851679801940918,237,1.0,1 +4737,3,1.0,0,1.235170602798462,238,1.0,1 +4738,3,1.0,0,1.663165807723999,239,1.0,1 +4739,3,1.0,0,1.2691706418991089,240,1.0,1 +4740,3,1.0,0,1.4271687269210815,241,1.0,1 +4741,3,1.0,0,1.3501697778701782,242,1.0,1 +4742,3,1.0,0,1.3261700868606567,243,1.0,1 +4743,3,1.0,0,1.6271662712097168,244,0.0,1 +4744,3,0.0,0,1.896162748336792,245,0.0,1 +4745,3,0.0,0,1.9231624603271484,246,0.0,1 +4746,3,0.0,0,1.9671618938446045,247,1.0,1 +4747,3,0.0,0,1.4041690826416016,248,1.0,1 +4748,3,0.0,0,1.3981691598892212,249,0.0,1 +4749,3,0.0,0,1.4171688556671143,250,1.0,1 +4750,3,0.0,0,1.3941692113876343,251,0.0,1 +4751,3,1.0,0,1.3431698083877563,252,1.0,1 +4752,3,1.0,0,1.2791706323623657,253,1.0,1 +4753,3,1.0,0,1.5711669921875,254,1.0,1 +4754,3,1.0,0,1.5581670999526978,255,1.0,1 +4755,3,1.0,0,1.2951704263687134,256,1.0,1 +4756,3,1.0,0,1.6011664867401123,257,1.0,1 +4757,3,1.0,0,1.4911679029464722,258,1.0,1 +4758,3,1.0,0,1.6051664352416992,259,1.0,1 +4759,3,1.0,0,1.2221705913543701,260,1.0,1 +4760,3,1.0,0,1.2781707048416138,261,0.0,1 +4761,3,1.0,0,1.235170602798462,262,1.0,1 +4762,3,1.0,0,1.8151638507843018,263,0.0,1 +4763,3,1.0,0,1.4411685466766357,264,0.0,1 +4764,3,1.0,0,2.178168296813965,265,1.0,1 +4765,3,1.0,0,1.3191701173782349,266,1.0,1 +4766,3,1.0,0,1.521167516708374,267,0.0,1 +4767,3,0.0,0,1.6291661262512207,268,1.0,1 +4768,3,1.0,0,1.778164267539978,269,1.0,1 +4769,3,1.0,0,1.8141638040542603,270,1.0,1 +4770,3,1.0,0,1.6261662244796753,271,1.0,1 +4771,3,0.0,0,2.3111743927001953,272,0.0,1 +4772,3,1.0,0,1.4521684646606445,273,1.0,1 +4773,3,1.0,0,1.3701695203781128,274,1.0,1 +4774,3,1.0,0,1.5601670742034912,275,0.0,1 +4775,3,1.0,0,1.6221662759780884,276,1.0,1 +4776,3,1.0,0,1.2301706075668335,277,1.0,1 +4777,3,0.0,0,1.363169550895691,278,0.0,1 +4778,3,1.0,0,1.667165756225586,279,1.0,1 +4779,3,1.0,0,1.385169267654419,280,1.0,1 +4780,3,1.0,0,1.3731694221496582,281,1.0,1 +4781,3,1.0,0,1.9781616926193237,282,1.0,1 +4782,3,1.0,0,1.332170009613037,283,1.0,1 +4783,3,1.0,0,1.5531671047210693,284,1.0,1 +4784,3,1.0,0,1.2191705703735352,285,1.0,1 +4785,3,1.0,0,1.4941679239273071,286,1.0,1 +4786,3,1.0,0,1.16217041015625,287,0.0,1 +4787,3,0.0,0,1.4201688766479492,288,0.0,1 +4788,3,0.0,0,1.340169906616211,289,0.0,1 +4789,3,0.0,0,1.9231624603271484,290,0.0,1 +4790,3,1.0,0,2.166167736053467,291,1.0,1 +4791,3,1.0,0,1.6071665287017822,292,1.0,1 +4792,3,1.0,0,1.6531658172607422,293,1.0,1 +4793,3,1.0,0,1.8321635723114014,294,1.0,1 +4794,3,1.0,0,1.4741681814193726,295,1.0,1 +4795,3,1.0,0,1.3051702976226807,296,1.0,1 +4796,3,1.0,0,1.3261700868606567,297,1.0,1 +4797,3,1.0,0,1.3341699838638306,298,0.0,1 +4798,3,0.0,0,2.3611767292022705,299,0.0,1 +4799,3,1.0,0,1.8501633405685425,300,1.0,1 +4800,3,1.0,0,1.4421685934066772,301,1.0,1 +4801,3,1.0,0,1.4371685981750488,302,1.0,1 +4802,3,1.0,0,1.428168773651123,303,1.0,1 +4803,3,1.0,0,1.2871705293655396,304,0.0,1 +4804,3,1.0,0,1.4371685981750488,305,1.0,1 +4805,3,1.0,0,1.3091702461242676,306,1.0,1 +4806,3,1.0,0,1.407168984413147,307,1.0,1 +4807,3,1.0,0,1.2771706581115723,308,1.0,1 +4808,3,1.0,0,1.4411685466766357,309,0.0,1 +4809,3,1.0,0,2.0241611003875732,310,0.0,1 +4810,3,1.0,0,1.4861680269241333,311,1.0,1 +4811,3,1.0,0,1.3071702718734741,312,0.0,1 +4812,3,0.0,0,1.517167568206787,313,0.0,1 +4813,3,0.0,0,1.4531683921813965,314,0.0,1 +4814,3,1.0,0,2.0161612033843994,315,1.0,1 +4815,3,1.0,0,1.5511672496795654,316,1.0,1 +4816,3,1.0,0,1.2241705656051636,317,0.0,1 +4817,3,1.0,0,1.690165400505066,318,1.0,1 +4818,3,1.0,0,1.3891692161560059,319,1.0,1 +4819,3,1.0,0,1.3381699323654175,320,1.0,1 +4820,3,1.0,0,1.6291661262512207,321,1.0,1 +4821,3,1.0,0,1.125170350074768,322,1.0,1 +4822,3,1.0,0,1.2361706495285034,323,1.0,1 +4823,3,1.0,0,1.7641644477844238,324,1.0,1 +4824,3,1.0,0,1.4211688041687012,325,1.0,1 +4825,3,1.0,0,1.2911704778671265,326,1.0,1 +4826,3,1.0,0,1.5121676921844482,327,1.0,1 +4827,3,1.0,0,1.4181689023971558,328,1.0,1 +4828,3,1.0,0,1.1841704845428467,329,1.0,1 +4829,3,1.0,0,1.2491706609725952,330,1.0,1 +4830,3,1.0,0,1.189170479774475,331,1.0,1 +4831,3,1.0,0,1.410169005393982,332,1.0,1 +4832,3,1.0,0,1.3571696281433105,333,1.0,1 +4833,3,1.0,0,1.2051705121994019,334,1.0,1 +4834,3,1.0,0,1.2951704263687134,335,1.0,1 +4835,3,1.0,0,1.6231663227081299,336,0.0,1 +4836,3,0.0,0,1.8101638555526733,337,0.0,1 +4837,3,1.0,0,1.7421647310256958,338,1.0,1 +4838,3,1.0,0,1.6661657094955444,339,1.0,1 +4839,3,1.0,0,1.3221701383590698,340,1.0,1 +4840,3,1.0,0,1.2511706352233887,341,0.0,1 +4841,3,1.0,0,1.8691630363464355,342,1.0,1 +4842,3,1.0,0,1.2581706047058105,343,0.0,1 +4843,3,0.0,0,1.4891679286956787,344,0.0,1 +4844,3,0.0,0,1.2401705980300903,345,0.0,1 +4845,3,1.0,0,1.4301687479019165,346,1.0,1 +4846,3,1.0,0,1.5701669454574585,347,0.0,1 +4847,3,1.0,0,1.2061705589294434,348,1.0,1 +4848,3,1.0,0,1.4041690826416016,349,1.0,1 +4849,3,1.0,0,1.2441706657409668,350,0.0,1 +4850,3,0.0,0,2.0781636238098145,351,0.0,1 +4851,3,0.0,0,1.8461633920669556,352,0.0,1 +4852,3,1.0,0,1.9361622333526611,353,1.0,1 +4853,3,1.0,0,1.4391685724258423,354,1.0,1 +4854,3,1.0,0,1.310170292854309,355,0.0,1 +4855,3,0.0,0,1.4671682119369507,356,0.0,1 +4856,3,1.0,0,2.1151652336120605,357,1.0,1 +4857,3,1.0,0,1.5641670227050781,358,1.0,1 +4858,3,1.0,0,1.4241688251495361,359,0.0,1 +4859,3,1.0,0,1.2941704988479614,360,1.0,1 +4860,3,0.0,0,1.797163963317871,361,1.0,1 +4861,3,1.0,0,1.6451659202575684,362,1.0,1 +4862,3,0.0,0,2.0061612129211426,363,1.0,1 +4863,3,1.0,0,1.5111676454544067,364,1.0,1 +4864,3,0.0,0,1.665165662765503,365,0.0,1 +4865,3,1.0,0,1.2021706104278564,366,1.0,1 +4866,3,1.0,0,1.569166898727417,367,1.0,1 +4867,3,1.0,0,1.3271700143814087,368,1.0,1 +4868,3,1.0,0,1.499167799949646,369,1.0,1 +4869,3,1.0,0,1.2661707401275635,370,1.0,1 +4870,3,1.0,0,1.499167799949646,371,1.0,1 +4871,3,0.0,0,1.7761642932891846,372,0.0,1 +4872,3,1.0,0,1.3461698293685913,373,1.0,1 +4873,3,1.0,0,1.3501697778701782,374,1.0,1 +4874,3,1.0,0,1.3921692371368408,375,0.0,1 +4875,3,1.0,0,1.5341674089431763,376,0.0,1 +4876,3,1.0,0,1.333169937133789,377,1.0,1 +4877,3,1.0,0,1.259170651435852,378,1.0,1 +4878,3,1.0,0,1.288170576095581,379,0.0,1 +4879,3,1.0,0,1.7901641130447388,380,1.0,1 +4880,3,1.0,0,1.1941704750061035,381,1.0,1 +4881,3,1.0,0,1.20417058467865,382,0.0,1 +4882,3,1.0,0,2.256171703338623,383,1.0,1 +4883,3,1.0,0,1.23417067527771,384,1.0,1 +4884,3,1.0,0,1.5511672496795654,385,1.0,1 +4885,3,1.0,0,1.5931665897369385,386,1.0,1 +4886,3,1.0,0,1.598166584968567,387,1.0,1 +4887,3,1.0,0,1.503167748451233,388,1.0,1 +4888,3,1.0,0,1.962161898612976,389,1.0,1 +4889,3,1.0,0,1.4041690826416016,390,0.0,1 +4890,3,0.0,0,2.3491761684417725,391,0.0,1 +4891,3,1.0,0,1.3041703701019287,392,1.0,1 +4892,3,1.0,0,1.5431673526763916,393,1.0,1 +4893,3,1.0,0,1.1741704940795898,394,1.0,1 +4894,3,1.0,0,1.1181703805923462,395,1.0,1 +4895,3,1.0,0,1.2981704473495483,396,0.0,1 +4896,3,1.0,0,1.3091702461242676,397,1.0,1 +4897,3,1.0,0,1.6051664352416992,398,1.0,1 +4898,3,1.0,0,1.498167872428894,399,1.0,1 +4899,3,1.0,0,1.3071702718734741,400,0.0,1 +4900,3,0.0,0,2.6221890449523926,401,0.0,1 +4901,3,0.0,0,1.337169885635376,402,0.0,1 +4902,3,1.0,0,1.2691706418991089,403,1.0,1 +4903,3,1.0,0,1.1861705780029297,404,0.0,1 +4904,3,1.0,0,1.6621657609939575,405,1.0,1 +4905,3,1.0,0,1.3201701641082764,406,1.0,1 +4906,3,1.0,0,1.3271700143814087,407,1.0,1 +4907,3,1.0,0,1.3641695976257324,408,1.0,1 +4908,3,1.0,0,1.2031705379486084,409,1.0,1 +4909,3,1.0,0,1.2231706380844116,410,1.0,1 +4910,3,1.0,0,1.3391698598861694,411,1.0,1 +4911,3,1.0,0,1.3871692419052124,412,1.0,1 +4912,3,1.0,0,1.259170651435852,413,1.0,1 +4913,3,1.0,0,1.4001691341400146,414,1.0,1 +4914,3,1.0,0,1.3641695976257324,415,1.0,1 +4915,3,1.0,0,1.2511706352233887,416,1.0,1 +4916,3,1.0,0,1.7321648597717285,417,1.0,1 +4917,3,1.0,0,1.340169906616211,418,1.0,1 +4918,3,1.0,0,1.2611706256866455,419,1.0,1 +4919,3,1.0,0,1.1661704778671265,420,1.0,1 +4920,3,1.0,0,1.333169937133789,421,1.0,1 +4921,3,1.0,0,1.5861667394638062,422,1.0,1 +4922,3,1.0,0,1.4301687479019165,423,1.0,1 +4923,3,1.0,0,1.2611706256866455,424,0.0,1 +4924,3,1.0,0,2.0491621494293213,425,1.0,1 +4925,3,1.0,0,1.4621683359146118,426,1.0,1 +4926,3,1.0,0,2.0301613807678223,427,1.0,1 +4927,3,1.0,0,1.8171637058258057,428,1.0,1 +4928,3,1.0,0,1.4661682844161987,429,0.0,1 +4929,3,0.0,0,1.5761668682098389,430,0.0,1 +4930,3,1.0,0,1.7261649370193481,431,0.0,1 +4931,3,0.0,0,1.231170654296875,432,0.0,1 +4932,3,1.0,0,1.5511672496795654,433,1.0,1 +4933,3,1.0,0,1.527167558670044,434,0.0,1 +4934,3,0.0,0,1.8381634950637817,435,0.0,1 +4935,3,1.0,0,1.6991653442382812,436,1.0,1 +4936,3,1.0,0,1.1191704273223877,437,1.0,1 +4937,3,1.0,0,1.2091705799102783,438,1.0,1 +4938,3,1.0,0,1.472168207168579,439,1.0,1 +4939,3,1.0,0,1.161170482635498,440,1.0,1 +4940,3,1.0,0,2.1451666355133057,441,1.0,1 +4941,3,1.0,0,1.1961705684661865,442,1.0,1 +4942,3,1.0,0,1.715165138244629,443,1.0,1 +4943,3,1.0,0,1.2581706047058105,444,1.0,1 +4944,3,1.0,0,1.6751656532287598,445,1.0,1 +4945,3,1.0,0,1.1721705198287964,446,1.0,1 +4946,3,1.0,0,1.388169288635254,447,1.0,1 +4947,3,1.0,0,2.0951642990112305,448,1.0,1 +4948,3,1.0,0,1.2371705770492554,449,1.0,1 +4949,3,1.0,0,1.3501697778701782,450,1.0,1 +4950,3,1.0,0,1.5351674556732178,451,1.0,1 +4951,3,1.0,0,1.433168649673462,452,0.0,1 +4952,3,1.0,0,1.567167043685913,453,0.0,1 +4953,3,1.0,0,1.4401686191558838,454,1.0,1 +4954,3,1.0,0,1.3251700401306152,455,1.0,1 +4955,3,1.0,0,1.705165147781372,456,1.0,1 +4956,3,1.0,0,1.2911704778671265,457,1.0,1 +4957,3,1.0,0,1.3971691131591797,458,1.0,1 +4958,3,1.0,0,1.2771706581115723,459,1.0,1 +4959,3,1.0,0,1.2451705932617188,460,0.0,1 +4960,3,0.0,0,1.7891640663146973,461,0.0,1 +4961,3,0.0,0,2.0151612758636475,462,0.0,1 +4962,3,1.0,0,1.528167486190796,463,1.0,1 +4963,3,1.0,0,1.340169906616211,464,0.0,1 +4964,3,1.0,0,1.7461646795272827,465,1.0,1 +4965,3,1.0,0,1.6461659669876099,466,1.0,1 +4966,3,1.0,0,1.3251700401306152,467,1.0,1 +4967,3,1.0,0,1.473168134689331,468,1.0,1 +4968,3,1.0,0,1.5811667442321777,469,1.0,1 +4969,3,1.0,0,1.2221705913543701,470,1.0,1 +4970,3,1.0,0,1.3161702156066895,471,1.0,1 +4971,3,1.0,0,1.2091705799102783,472,1.0,1 +4972,3,1.0,0,1.521167516708374,473,1.0,1 +4973,3,0.0,0,1.1841704845428467,474,0.0,1 +4974,3,1.0,0,1.3651695251464844,475,1.0,1 +4975,3,0.0,0,1.16817045211792,476,0.0,1 +4976,3,1.0,0,1.5921666622161865,477,1.0,1 +4977,3,1.0,0,1.4141689538955688,478,1.0,1 +4978,3,1.0,0,1.4421685934066772,479,1.0,1 +4979,3,1.0,0,1.2501707077026367,480,1.0,1 +4980,3,1.0,0,1.4111689329147339,481,0.0,1 +4981,3,0.0,0,1.5011677742004395,482,0.0,1 +4982,3,1.0,0,1.7621644735336304,483,1.0,1 +4983,3,1.0,0,1.3961691856384277,484,0.0,1 +4984,3,0.0,0,1.195170521736145,485,0.0,1 +4985,3,0.0,0,1.43216872215271,486,0.0,1 +4986,3,1.0,0,1.340169906616211,487,1.0,1 +4987,3,1.0,0,1.2831705808639526,488,1.0,1 +4988,3,1.0,0,1.61716628074646,489,1.0,1 +4989,3,1.0,0,1.315170168876648,490,1.0,1 +4990,3,1.0,0,1.2741706371307373,491,1.0,1 +4991,3,1.0,0,1.4311686754226685,492,1.0,1 +4992,3,1.0,0,1.3541697263717651,493,1.0,1 +4993,3,1.0,0,1.6751656532287598,494,1.0,1 +4994,3,0.0,0,1.450168490409851,495,0.0,1 +4995,3,1.0,0,1.229170560836792,496,1.0,1 +4996,3,1.0,0,1.4211688041687012,497,1.0,1 +4997,3,1.0,0,1.20417058467865,498,1.0,1 +4998,3,1.0,0,1.2811706066131592,499,1.0,1 +4999,3,1.0,0,2.0071613788604736,500,1.0,1 +5000,3,1.0,1,2.3721771240234375,1,1.0,1 +5001,3,1.0,1,1.2601706981658936,2,1.0,1 +5002,3,1.0,1,1.1721705198287964,3,1.0,1 +5003,3,1.0,1,1.5151675939559937,4,1.0,1 +5004,3,1.0,1,1.4411685466766357,5,1.0,1 +5005,3,1.0,1,1.232170581817627,6,1.0,1 +5006,3,1.0,1,2.0771634578704834,7,1.0,1 +5007,3,1.0,1,1.2101705074310303,8,0.0,1 +5008,3,0.0,1,1.4241688251495361,9,0.0,1 +5009,3,0.0,1,1.7241649627685547,10,1.0,1 +5010,3,0.0,1,1.5391674041748047,11,0.0,1 +5011,3,0.0,1,1.9261623620986938,12,0.0,1 +5012,3,0.0,1,1.7251648902893066,13,0.0,1 +5013,3,0.0,1,1.4871679544448853,14,0.0,1 +5014,3,0.0,1,1.4231687784194946,15,1.0,1 +5015,3,0.0,1,1.385169267654419,16,0.0,1 +5016,3,0.0,1,1.3951691389083862,17,0.0,1 +5017,3,0.0,1,1.2661707401275635,18,0.0,1 +5018,3,0.0,1,2.4361801147460938,19,0.0,1 +5019,3,0.0,1,1.5431673526763916,20,0.0,1 +5020,3,0.0,1,1.6181663274765015,21,0.0,1 +5021,3,0.0,1,1.3891692161560059,22,0.0,1 +5022,3,1.0,1,1.6361660957336426,23,1.0,1 +5023,3,1.0,1,1.2171705961227417,24,1.0,1 +5024,3,1.0,1,1.477168083190918,25,0.0,1 +5025,3,0.0,1,1.4871679544448853,26,0.0,1 +5026,3,1.0,1,1.2951704263687134,27,1.0,1 +5027,3,1.0,1,1.4081690311431885,28,1.0,1 +5028,3,1.0,1,1.3341699838638306,29,1.0,1 +5029,3,1.0,1,1.6291661262512207,30,0.0,1 +5030,3,0.0,1,1.6291661262512207,31,1.0,1 +5031,3,0.0,1,1.2271705865859985,32,0.0,1 +5032,3,1.0,1,1.164170503616333,33,0.0,1 +5033,3,1.0,1,1.3781694173812866,34,1.0,1 +5034,3,0.0,1,1.2471706867218018,35,0.0,1 +5035,3,1.0,1,1.4751681089401245,36,0.0,1 +5036,3,1.0,1,1.9981614351272583,37,1.0,1 +5037,3,1.0,1,1.2511706352233887,38,1.0,1 +5038,3,1.0,1,1.1831705570220947,39,0.0,1 +5039,3,0.0,1,1.7261649370193481,40,1.0,1 +5040,3,0.0,1,1.1101703643798828,41,1.0,1 +5041,3,0.0,1,1.358169674873352,42,0.0,1 +5042,3,1.0,1,1.5381673574447632,43,0.0,1 +5043,3,1.0,1,1.9571619033813477,44,1.0,1 +5044,3,1.0,1,1.3661695718765259,45,0.0,1 +5045,3,0.0,1,1.332170009613037,46,1.0,1 +5046,3,0.0,1,1.6281661987304688,47,0.0,1 +5047,3,0.0,1,1.6071665287017822,48,1.0,1 +5048,3,0.0,1,1.226170539855957,49,1.0,1 +5049,3,0.0,1,1.480168104171753,50,0.0,1 +5050,3,1.0,1,1.663165807723999,51,0.0,1 +5051,3,1.0,1,2.1481666564941406,52,0.0,1 +5052,3,0.0,1,1.165170431137085,53,1.0,1 +5053,3,0.0,1,1.2471706867218018,54,0.0,1 +5054,3,1.0,1,1.3691694736480713,55,1.0,1 +5055,3,1.0,1,1.5071676969528198,56,1.0,1 +5056,3,1.0,1,1.4191688299179077,57,1.0,1 +5057,3,1.0,1,1.1991705894470215,58,1.0,1 +5058,3,1.0,1,1.572166919708252,59,1.0,1 +5059,3,1.0,1,1.384169340133667,60,1.0,1 +5060,3,1.0,1,1.3951691389083862,61,0.0,1 +5061,3,0.0,1,1.2201706171035767,62,0.0,1 +5062,3,0.0,1,1.6581658124923706,63,0.0,1 +5063,3,1.0,1,2.0371615886688232,64,1.0,1 +5064,3,1.0,1,1.3661695718765259,65,1.0,1 +5065,3,1.0,1,1.5361673831939697,66,0.0,1 +5066,3,0.0,1,2.0681629180908203,67,1.0,1 +5067,3,0.0,1,1.1261703968048096,68,0.0,1 +5068,3,1.0,1,1.7721643447875977,69,0.0,1 +5069,3,0.0,1,1.4891679286956787,70,0.0,1 +5070,3,1.0,1,1.0861703157424927,71,1.0,1 +5071,3,1.0,1,1.6371660232543945,72,0.0,1 +5072,3,0.0,1,1.7761642932891846,73,0.0,1 +5073,3,0.0,1,1.5811667442321777,74,0.0,1 +5074,3,0.0,1,1.5601670742034912,75,1.0,1 +5075,3,0.0,1,1.1491703987121582,76,0.0,1 +5076,3,0.0,1,1.16817045211792,77,0.0,1 +5077,3,0.0,1,1.528167486190796,78,0.0,1 +5078,3,0.0,1,1.3531696796417236,79,0.0,1 +5079,3,0.0,1,1.310170292854309,80,1.0,1 +5080,3,0.0,1,1.4431685209274292,81,0.0,1 +5081,3,0.0,1,1.3221701383590698,82,1.0,1 +5082,3,0.0,1,1.2181706428527832,83,1.0,1 +5083,3,0.0,1,1.231170654296875,84,0.0,1 +5084,3,0.0,1,1.3291699886322021,85,1.0,1 +5085,3,0.0,1,1.1501704454421997,86,0.0,1 +5086,3,0.0,1,1.845163345336914,87,0.0,1 +5087,3,0.0,1,1.195170521736145,88,0.0,1 +5088,3,0.0,1,1.3941692113876343,89,0.0,1 +5089,3,0.0,1,1.5391674041748047,90,1.0,1 +5090,3,0.0,1,1.3201701641082764,91,0.0,1 +5091,3,1.0,1,2.280172824859619,92,0.0,1 +5092,3,0.0,1,1.259170651435852,93,0.0,1 +5093,3,0.0,1,1.262170672416687,94,0.0,1 +5094,3,1.0,1,1.8231637477874756,95,1.0,1 +5095,3,1.0,1,2.0041613578796387,96,0.0,1 +5096,3,1.0,1,1.2671706676483154,97,1.0,1 +5097,3,1.0,1,1.7621644735336304,98,1.0,1 +5098,3,1.0,1,1.2641706466674805,99,1.0,1 +5099,3,1.0,1,2.0541625022888184,100,1.0,1 +5100,3,1.0,1,1.3691694736480713,101,1.0,1 +5101,3,1.0,1,1.2131705284118652,102,1.0,1 +5102,3,1.0,1,1.2771706581115723,103,0.0,1 +5103,3,0.0,1,1.7891640663146973,104,0.0,1 +5104,3,0.0,1,1.3231700658798218,105,0.0,1 +5105,3,1.0,1,2.1511669158935547,106,1.0,1 +5106,3,1.0,1,1.433168649673462,107,0.0,1 +5107,3,1.0,1,1.657165765762329,108,1.0,1 +5108,3,1.0,1,1.1791704893112183,109,1.0,1 +5109,3,1.0,1,1.5131676197052002,110,1.0,1 +5110,3,1.0,1,1.3931691646575928,111,1.0,1 +5111,3,1.0,1,1.4081690311431885,112,1.0,1 +5112,3,1.0,1,1.8861628770828247,113,1.0,1 +5113,3,1.0,1,1.2701706886291504,114,0.0,1 +5114,3,0.0,1,1.9051625728607178,115,0.0,1 +5115,3,1.0,1,1.6041665077209473,116,0.0,1 +5116,3,0.0,1,2.3621768951416016,117,0.0,1 +5117,3,0.0,1,1.4611682891845703,118,1.0,1 +5118,3,0.0,1,1.167170524597168,119,0.0,1 +5119,3,0.0,1,1.4531683921813965,120,1.0,1 +5120,3,0.0,1,1.5931665897369385,121,1.0,1 +5121,3,0.0,1,1.1461703777313232,122,0.0,1 +5122,3,1.0,1,1.5611670017242432,123,1.0,1 +5123,3,1.0,1,1.3601696491241455,124,1.0,1 +5124,3,1.0,1,1.5481672286987305,125,1.0,1 +5125,3,1.0,1,1.3051702976226807,126,1.0,1 +5126,3,1.0,1,1.3721694946289062,127,0.0,1 +5127,3,0.0,1,1.2331706285476685,128,0.0,1 +5128,3,0.0,1,1.3291699886322021,129,1.0,1 +5129,3,0.0,1,1.2701706886291504,130,0.0,1 +5130,3,1.0,1,1.6941653490066528,131,0.0,1 +5131,3,0.0,1,1.311170220375061,132,0.0,1 +5132,3,1.0,1,1.4271687269210815,133,1.0,1 +5133,3,1.0,1,1.2331706285476685,134,1.0,1 +5134,3,1.0,1,1.3791693449020386,135,1.0,1 +5135,3,1.0,1,1.499167799949646,136,1.0,1 +5136,3,1.0,1,1.801163911819458,137,1.0,1 +5137,3,1.0,1,1.5661669969558716,138,1.0,1 +5138,3,1.0,1,1.2001705169677734,139,0.0,1 +5139,3,0.0,1,1.8681631088256836,140,0.0,1 +5140,3,1.0,1,1.9171624183654785,141,0.0,1 +5141,3,1.0,1,1.778164267539978,142,0.0,1 +5142,3,1.0,1,1.2371705770492554,143,1.0,1 +5143,3,1.0,1,1.7801642417907715,144,1.0,1 +5144,3,1.0,1,1.1721705198287964,145,0.0,1 +5145,3,0.0,1,1.665165662765503,146,0.0,1 +5146,3,1.0,1,1.4611682891845703,147,1.0,1 +5147,3,1.0,1,1.2121706008911133,148,0.0,1 +5148,3,0.0,1,1.1561704874038696,149,0.0,1 +5149,3,0.0,1,1.3651695251464844,150,0.0,1 +5150,3,0.0,1,1.2531706094741821,151,1.0,1 +5151,3,0.0,1,1.2581706047058105,152,1.0,1 +5152,3,0.0,1,1.4901679754257202,153,1.0,1 +5153,3,0.0,1,1.2721706628799438,154,0.0,1 +5154,3,1.0,1,1.3351699113845825,155,1.0,1 +5155,3,1.0,1,1.1501704454421997,156,1.0,1 +5156,3,1.0,1,1.2121706008911133,157,1.0,1 +5157,3,1.0,1,1.2451705932617188,158,1.0,1 +5158,3,1.0,1,1.503167748451233,159,1.0,1 +5159,3,1.0,1,1.1791704893112183,160,1.0,1 +5160,3,1.0,1,1.3081703186035156,161,1.0,1 +5161,3,1.0,1,1.1551704406738281,162,0.0,1 +5162,3,0.0,1,1.1751705408096313,163,0.0,1 +5163,3,0.0,1,1.4681682586669922,164,0.0,1 +5164,3,0.0,1,1.4621683359146118,165,0.0,1 +5165,3,1.0,1,1.572166919708252,166,0.0,1 +5166,3,0.0,1,1.229170560836792,167,1.0,1 +5167,3,0.0,1,1.1461703777313232,168,0.0,1 +5168,3,1.0,1,1.5161676406860352,169,1.0,1 +5169,3,1.0,1,1.899162769317627,170,1.0,1 +5170,3,1.0,1,1.340169906616211,171,1.0,1 +5171,3,0.0,1,1.3491697311401367,172,0.0,1 +5172,3,1.0,1,1.5821667909622192,173,0.0,1 +5173,3,0.0,1,1.7541645765304565,174,0.0,1 +5174,3,1.0,1,1.5111676454544067,175,1.0,1 +5175,3,1.0,1,1.5571670532226562,176,1.0,1 +5176,3,1.0,1,1.4341686964035034,177,1.0,1 +5177,3,1.0,1,1.1751705408096313,178,1.0,1 +5178,3,1.0,1,1.3771693706512451,179,0.0,1 +5179,3,0.0,1,1.524167537689209,180,1.0,1 +5180,3,0.0,1,1.1411703824996948,181,0.0,1 +5181,3,0.0,1,1.3081703186035156,182,1.0,1 +5182,3,0.0,1,1.4051690101623535,183,0.0,1 +5183,3,1.0,1,2.174168109893799,184,1.0,1 +5184,3,1.0,1,1.3081703186035156,185,0.0,1 +5185,3,1.0,1,1.4221688508987427,186,1.0,1 +5186,3,1.0,1,1.4871679544448853,187,1.0,1 +5187,3,1.0,1,1.893162727355957,188,0.0,1 +5188,3,1.0,1,1.5881667137145996,189,1.0,1 +5189,3,1.0,1,1.7161650657653809,190,1.0,1 +5190,3,1.0,1,1.165170431137085,191,1.0,1 +5191,3,1.0,1,1.285170555114746,192,1.0,1 +5192,3,1.0,1,1.4611682891845703,193,1.0,1 +5193,3,1.0,1,1.6051664352416992,194,1.0,1 +5194,3,1.0,1,1.5801668167114258,195,1.0,1 +5195,3,1.0,1,1.189170479774475,196,1.0,1 +5196,3,1.0,1,1.5491671562194824,197,1.0,1 +5197,3,1.0,1,1.1361703872680664,198,0.0,1 +5198,3,1.0,1,1.45516836643219,199,0.0,1 +5199,3,1.0,1,1.5601670742034912,200,1.0,1 +5200,3,1.0,1,1.3781694173812866,201,1.0,1 +5201,3,1.0,1,1.2511706352233887,202,1.0,1 +5202,3,1.0,1,1.3271700143814087,203,1.0,1 +5203,3,1.0,1,1.2811706066131592,204,0.0,1 +5204,3,0.0,1,1.3931691646575928,205,0.0,1 +5205,3,0.0,1,1.4711681604385376,206,1.0,1 +5206,3,0.0,1,1.4661682844161987,207,1.0,1 +5207,3,0.0,1,1.1181703805923462,208,1.0,1 +5208,3,0.0,1,1.1471704244613647,209,1.0,1 +5209,3,0.0,1,1.189170479774475,210,0.0,1 +5210,3,1.0,1,2.1171653270721436,211,1.0,1 +5211,3,1.0,1,1.5551671981811523,212,0.0,1 +5212,3,1.0,1,1.91816246509552,213,1.0,1 +5213,3,1.0,1,1.4051690101623535,214,1.0,1 +5214,3,1.0,1,1.3791693449020386,215,1.0,1 +5215,3,0.0,1,1.5571670532226562,216,0.0,1 +5216,3,0.0,1,1.6921653747558594,217,0.0,1 +5217,3,1.0,1,1.189170479774475,218,0.0,1 +5218,3,1.0,1,1.3691694736480713,219,0.0,1 +5219,3,1.0,1,1.8801629543304443,220,0.0,1 +5220,3,0.0,1,1.4011690616607666,221,0.0,1 +5221,3,0.0,1,1.069170355796814,222,1.0,1 +5222,3,0.0,1,1.4791680574417114,223,0.0,1 +5223,3,0.0,1,1.2031705379486084,224,0.0,1 +5224,3,1.0,1,1.3351699113845825,225,1.0,1 +5225,3,1.0,1,1.4371685981750488,226,1.0,1 +5226,3,1.0,1,1.499167799949646,227,1.0,1 +5227,3,1.0,1,1.429168701171875,228,0.0,1 +5228,3,1.0,1,1.4271687269210815,229,0.0,1 +5229,3,0.0,1,1.3781694173812866,230,1.0,1 +5230,3,0.0,1,1.2101705074310303,231,1.0,1 +5231,3,0.0,1,2.0221610069274902,232,1.0,1 +5232,3,0.0,1,1.5451672077178955,233,0.0,1 +5233,3,1.0,1,2.185168504714966,234,1.0,1 +5234,3,1.0,1,1.2021706104278564,235,0.0,1 +5235,3,0.0,1,1.2991703748703003,236,1.0,1 +5236,3,0.0,1,1.137170433998108,237,0.0,1 +5237,3,0.0,1,1.6111664772033691,238,0.0,1 +5238,3,0.0,1,1.235170602798462,239,0.0,1 +5239,3,1.0,1,1.7021652460098267,240,1.0,1 +5240,3,1.0,1,1.660165786743164,241,1.0,1 +5241,3,1.0,1,1.315170168876648,242,1.0,1 +5242,3,1.0,1,1.429168701171875,243,1.0,1 +5243,3,1.0,1,1.2551707029342651,244,1.0,1 +5244,3,1.0,1,1.1731704473495483,245,1.0,1 +5245,3,1.0,1,1.1721705198287964,246,1.0,1 +5246,3,1.0,1,1.3601696491241455,247,0.0,1 +5247,3,1.0,1,2.0571625232696533,248,0.0,1 +5248,3,1.0,1,1.5001678466796875,249,0.0,1 +5249,3,0.0,1,1.315170168876648,250,0.0,1 +5250,3,0.0,1,1.5741668939590454,251,0.0,1 +5251,3,0.0,1,2.3491761684417725,252,0.0,1 +5252,3,0.0,1,1.3001704216003418,253,0.0,1 +5253,3,1.0,1,2.0421619415283203,254,1.0,1 +5254,3,1.0,1,1.262170672416687,255,1.0,1 +5255,3,1.0,1,1.285170555114746,256,0.0,1 +5256,3,0.0,1,1.9761617183685303,257,0.0,1 +5257,3,1.0,1,1.1941704750061035,258,1.0,1 +5258,3,1.0,1,1.1931705474853516,259,1.0,1 +5259,3,1.0,1,1.3991690874099731,260,0.0,1 +5260,3,0.0,1,1.1471704244613647,261,0.0,1 +5261,3,0.0,1,1.259170651435852,262,0.0,1 +5262,3,0.0,1,1.782164216041565,263,0.0,1 +5263,3,0.0,1,1.707165241241455,264,0.0,1 +5264,3,0.0,1,1.2871705293655396,265,1.0,1 +5265,3,0.0,1,1.3901692628860474,266,0.0,1 +5266,3,0.0,1,1.3281700611114502,267,0.0,1 +5267,3,0.0,1,1.4461685419082642,268,0.0,1 +5268,3,0.0,1,1.3451697826385498,269,1.0,1 +5269,3,0.0,1,1.2211705446243286,270,0.0,1 +5270,3,1.0,1,1.760164499282837,271,1.0,1 +5271,3,1.0,1,1.8941627740859985,272,0.0,1 +5272,3,0.0,1,1.5191675424575806,273,1.0,1 +5273,3,0.0,1,1.56516695022583,274,0.0,1 +5274,3,0.0,1,1.6391661167144775,275,1.0,1 +5275,3,0.0,1,1.1361703872680664,276,0.0,1 +5276,3,0.0,1,1.7581645250320435,277,0.0,1 +5277,3,1.0,1,2.1391663551330566,278,0.0,1 +5278,3,1.0,1,1.2521706819534302,279,1.0,1 +5279,3,1.0,1,1.2431706190109253,280,1.0,1 +5280,3,0.0,1,1.4371685981750488,281,0.0,1 +5281,3,1.0,1,1.8651630878448486,282,0.0,1 +5282,3,0.0,1,1.7911641597747803,283,1.0,1 +5283,3,0.0,1,1.2831705808639526,284,1.0,1 +5284,3,0.0,1,1.1791704893112183,285,0.0,1 +5285,3,1.0,1,1.2331706285476685,286,1.0,1 +5286,3,1.0,1,1.3921692371368408,287,1.0,1 +5287,3,1.0,1,1.7871642112731934,288,1.0,1 +5288,3,1.0,1,1.235170602798462,289,1.0,1 +5289,3,1.0,1,1.6931653022766113,290,1.0,1 +5290,3,1.0,1,1.3381699323654175,291,1.0,1 +5291,3,1.0,1,1.201170563697815,292,1.0,1 +5292,3,1.0,1,1.3311699628829956,293,1.0,1 +5293,3,1.0,1,1.3031703233718872,294,1.0,1 +5294,3,1.0,1,1.4081690311431885,295,1.0,1 +5295,3,1.0,1,1.1511704921722412,296,1.0,1 +5296,3,1.0,1,1.332170009613037,297,1.0,1 +5297,3,1.0,1,1.757164478302002,298,1.0,1 +5298,3,1.0,1,2.3031740188598633,299,1.0,1 +5299,3,1.0,1,1.5071676969528198,300,0.0,1 +5300,3,0.0,1,1.9561619758605957,301,0.0,1 +5301,3,1.0,1,1.5071676969528198,302,0.0,1 +5302,3,0.0,1,1.8271636962890625,303,0.0,1 +5303,3,0.0,1,1.7701643705368042,304,0.0,1 +5304,3,1.0,1,1.3061703443527222,305,1.0,1 +5305,3,1.0,1,1.425168752670288,306,0.0,1 +5306,3,0.0,1,1.6371660232543945,307,0.0,1 +5307,3,0.0,1,2.4211795330047607,308,0.0,1 +5308,3,1.0,1,1.8561632633209229,309,1.0,1 +5309,3,1.0,1,1.38016939163208,310,0.0,1 +5310,3,0.0,1,1.9931614398956299,311,1.0,1 +5311,3,0.0,1,1.43216872215271,312,1.0,1 +5312,3,0.0,1,1.2871705293655396,313,1.0,1 +5313,3,0.0,1,1.5451672077178955,314,1.0,1 +5314,3,0.0,1,1.498167872428894,315,0.0,1 +5315,3,0.0,1,1.170170545578003,316,0.0,1 +5316,3,0.0,1,1.3751693964004517,317,0.0,1 +5317,3,0.0,1,1.4961678981781006,318,0.0,1 +5318,3,0.0,1,2.1411664485931396,319,1.0,1 +5319,3,0.0,1,1.3231700658798218,320,0.0,1 +5320,3,0.0,1,1.2751706838607788,321,0.0,1 +5321,3,0.0,1,2.510183811187744,322,0.0,1 +5322,3,0.0,1,1.2611706256866455,323,0.0,1 +5323,3,1.0,1,1.5491671562194824,324,1.0,1 +5324,3,1.0,1,1.381169319152832,325,0.0,1 +5325,3,0.0,1,1.5851666927337646,326,0.0,1 +5326,3,1.0,1,2.4251797199249268,327,1.0,1 +5327,3,1.0,1,1.2381706237792969,328,0.0,1 +5328,3,1.0,1,1.8181637525558472,329,0.0,1 +5329,3,0.0,1,1.2371705770492554,330,0.0,1 +5330,3,1.0,1,1.3641695976257324,331,1.0,1 +5331,3,1.0,1,1.3341699838638306,332,1.0,1 +5332,3,1.0,1,1.1801705360412598,333,0.0,1 +5333,3,0.0,1,1.5891666412353516,334,0.0,1 +5334,3,1.0,1,1.3691694736480713,335,1.0,1 +5335,3,1.0,1,1.7691643238067627,336,0.0,1 +5336,3,0.0,1,1.3201701641082764,337,0.0,1 +5337,3,0.0,1,1.7191650867462158,338,0.0,1 +5338,3,1.0,1,1.1471704244613647,339,1.0,1 +5339,3,1.0,1,1.6791656017303467,340,1.0,1 +5340,3,1.0,1,1.332170009613037,341,1.0,1 +5341,3,1.0,1,1.4041690826416016,342,1.0,1 +5342,3,1.0,1,1.6441659927368164,343,0.0,1 +5343,3,1.0,1,1.3921692371368408,344,1.0,1 +5344,3,1.0,1,1.4941679239273071,345,0.0,1 +5345,3,0.0,1,1.5321674346923828,346,1.0,1 +5346,3,0.0,1,1.567167043685913,347,0.0,1 +5347,3,1.0,1,1.6391661167144775,348,0.0,1 +5348,3,0.0,1,2.166167736053467,349,0.0,1 +5349,3,1.0,1,2.0991644859313965,350,0.0,1 +5350,3,1.0,1,1.4841680526733398,351,0.0,1 +5351,3,1.0,1,1.5341674089431763,352,1.0,1 +5352,3,1.0,1,1.2511706352233887,353,1.0,1 +5353,3,1.0,1,1.5111676454544067,354,1.0,1 +5354,3,1.0,1,1.7471647262573242,355,1.0,1 +5355,3,1.0,1,1.229170560836792,356,0.0,1 +5356,3,0.0,1,1.4211688041687012,357,0.0,1 +5357,3,1.0,1,1.6951653957366943,358,0.0,1 +5358,3,0.0,1,1.3681695461273193,359,1.0,1 +5359,3,0.0,1,1.2111705541610718,360,1.0,1 +5360,3,0.0,1,1.1161704063415527,361,1.0,1 +5361,3,0.0,1,1.2451705932617188,362,0.0,1 +5362,3,0.0,1,1.2471706867218018,363,0.0,1 +5363,3,1.0,1,1.4901679754257202,364,1.0,1 +5364,3,1.0,1,1.4411685466766357,365,1.0,1 +5365,3,1.0,1,1.4811680316925049,366,1.0,1 +5366,3,1.0,1,1.2221705913543701,367,1.0,1 +5367,3,1.0,1,1.3261700868606567,368,1.0,1 +5368,3,1.0,1,1.3491697311401367,369,0.0,1 +5369,3,0.0,1,1.6781655550003052,370,1.0,1 +5370,3,0.0,1,1.3051702976226807,371,0.0,1 +5371,3,0.0,1,1.4781681299209595,372,1.0,1 +5372,3,0.0,1,1.3081703186035156,373,0.0,1 +5373,3,0.0,1,1.6011664867401123,374,1.0,1 +5374,3,0.0,1,1.4201688766479492,375,0.0,1 +5375,3,1.0,1,1.2911704778671265,376,1.0,1 +5376,3,1.0,1,1.1431704759597778,377,1.0,1 +5377,3,1.0,1,1.3441698551177979,378,0.0,1 +5378,3,0.0,1,1.0961703062057495,379,0.0,1 +5379,3,0.0,1,1.8191637992858887,380,1.0,1 +5380,3,0.0,1,1.2751706838607788,381,0.0,1 +5381,3,1.0,1,1.9061626195907593,382,1.0,1 +5382,3,1.0,1,1.3721694946289062,383,1.0,1 +5383,3,1.0,1,1.4841680526733398,384,0.0,1 +5384,3,1.0,1,1.3021703958511353,385,0.0,1 +5385,3,0.0,1,1.4311686754226685,386,0.0,1 +5386,3,1.0,1,1.7231650352478027,387,1.0,1 +5387,3,1.0,1,1.2981704473495483,388,1.0,1 +5388,3,1.0,1,1.2061705589294434,389,1.0,1 +5389,3,1.0,1,1.3441698551177979,390,0.0,1 +5390,3,0.0,1,1.8331634998321533,391,0.0,1 +5391,3,0.0,1,2.4161791801452637,392,1.0,1 +5392,3,0.0,1,1.19817054271698,393,1.0,1 +5393,3,0.0,1,1.1101703643798828,394,0.0,1 +5394,3,0.0,1,1.1961705684661865,395,0.0,1 +5395,3,1.0,1,1.4811680316925049,396,1.0,1 +5396,3,1.0,1,1.2131705284118652,397,1.0,1 +5397,3,1.0,1,1.425168752670288,398,1.0,1 +5398,3,1.0,1,1.2361706495285034,399,1.0,1 +5399,3,1.0,1,1.3081703186035156,400,0.0,1 +5400,3,0.0,1,1.2761707305908203,401,0.0,1 +5401,3,1.0,1,1.2111705541610718,402,1.0,1 +5402,3,1.0,1,1.1881705522537231,403,0.0,1 +5403,3,0.0,1,1.1441704034805298,404,0.0,1 +5404,3,0.0,1,1.3921692371368408,405,0.0,1 +5405,3,0.0,1,1.232170581817627,406,0.0,1 +5406,3,1.0,1,1.7181650400161743,407,1.0,1 +5407,3,1.0,1,1.3121702671051025,408,0.0,1 +5408,3,0.0,1,1.807163953781128,409,1.0,1 +5409,3,0.0,1,1.2161705493927002,410,1.0,1 +5410,3,0.0,1,1.2111705541610718,411,0.0,1 +5411,3,1.0,1,1.6041665077209473,412,1.0,1 +5412,3,1.0,1,1.5161676406860352,413,1.0,1 +5413,3,1.0,1,1.2021706104278564,414,1.0,1 +5414,3,1.0,1,1.3081703186035156,415,1.0,1 +5415,3,1.0,1,1.1661704778671265,416,0.0,1 +5416,3,0.0,1,1.4011690616607666,417,0.0,1 +5417,3,1.0,1,1.4401686191558838,418,0.0,1 +5418,3,0.0,1,1.5961666107177734,419,1.0,1 +5419,3,0.0,1,1.3061703443527222,420,0.0,1 +5420,3,0.0,1,1.3091702461242676,421,0.0,1 +5421,3,0.0,1,1.2141705751419067,422,0.0,1 +5422,3,0.0,1,1.844163417816162,423,1.0,1 +5423,3,0.0,1,1.4191688299179077,424,0.0,1 +5424,3,0.0,1,1.5661669969558716,425,0.0,1 +5425,3,0.0,1,1.4091689586639404,426,1.0,1 +5426,3,0.0,1,1.6871654987335205,427,0.0,1 +5427,3,0.0,1,1.2971704006195068,428,0.0,1 +5428,3,1.0,1,1.7801642417907715,429,1.0,1 +5429,3,1.0,1,1.3771693706512451,430,1.0,1 +5430,3,1.0,1,1.659165859222412,431,0.0,1 +5431,3,1.0,1,1.521167516708374,432,1.0,1 +5432,3,1.0,1,1.3471697568893433,433,1.0,1 +5433,3,1.0,1,1.4841680526733398,434,1.0,1 +5434,3,1.0,1,1.3791693449020386,435,0.0,1 +5435,3,0.0,1,2.1611673831939697,436,0.0,1 +5436,3,0.0,1,1.3231700658798218,437,0.0,1 +5437,3,1.0,1,1.4001691341400146,438,1.0,1 +5438,3,1.0,1,1.4191688299179077,439,1.0,1 +5439,3,1.0,1,1.2951704263687134,440,1.0,1 +5440,3,1.0,1,1.995161533355713,441,1.0,1 +5441,3,1.0,1,1.406169056892395,442,1.0,1 +5442,3,1.0,1,1.3061703443527222,443,1.0,1 +5443,3,1.0,1,1.3451697826385498,444,0.0,1 +5444,3,0.0,1,1.8401634693145752,445,0.0,1 +5445,3,1.0,1,2.0111613273620605,446,0.0,1 +5446,3,1.0,1,1.9791617393493652,447,0.0,1 +5447,3,0.0,1,1.5151675939559937,448,0.0,1 +5448,3,0.0,1,1.2491706609725952,449,1.0,1 +5449,3,0.0,1,1.2491706609725952,450,0.0,1 +5450,3,0.0,1,1.3511697053909302,451,1.0,1 +5451,3,0.0,1,1.318170189857483,452,1.0,1 +5452,3,0.0,1,1.340169906616211,453,0.0,1 +5453,3,0.0,1,2.1681675910949707,454,0.0,1 +5454,3,1.0,1,1.6081664562225342,455,1.0,1 +5455,3,1.0,1,1.3891692161560059,456,1.0,1 +5456,3,1.0,1,1.201170563697815,457,0.0,1 +5457,3,1.0,1,1.5451672077178955,458,0.0,1 +5458,3,0.0,1,1.6911654472351074,459,1.0,1 +5459,3,0.0,1,1.2571706771850586,460,0.0,1 +5460,3,0.0,1,1.2531706094741821,461,0.0,1 +5461,3,0.0,1,1.5291674137115479,462,0.0,1 +5462,3,0.0,1,1.6951653957366943,463,1.0,1 +5463,3,0.0,1,1.476168155670166,464,0.0,1 +5464,3,0.0,1,1.8121638298034668,465,0.0,1 +5465,3,1.0,1,1.2981704473495483,466,1.0,1 +5466,3,1.0,1,1.659165859222412,467,1.0,1 +5467,3,1.0,1,1.4881680011749268,468,1.0,1 +5468,3,1.0,1,1.3731694221496582,469,1.0,1 +5469,3,1.0,1,1.2361706495285034,470,1.0,1 +5470,3,1.0,1,1.3251700401306152,471,0.0,1 +5471,3,0.0,1,2.3371756076812744,472,1.0,1 +5472,3,0.0,1,1.16817045211792,473,0.0,1 +5473,3,0.0,1,1.3791693449020386,474,0.0,1 +5474,3,0.0,1,1.1241704225540161,475,0.0,1 +5475,3,0.0,1,1.1261703968048096,476,1.0,1 +5476,3,0.0,1,1.310170292854309,477,0.0,1 +5477,3,1.0,1,1.2581706047058105,478,0.0,1 +5478,3,0.0,1,1.4131689071655273,479,0.0,1 +5479,3,0.0,1,1.985161542892456,480,1.0,1 +5480,3,0.0,1,1.23417067527771,481,0.0,1 +5481,3,1.0,1,1.3131701946258545,482,1.0,1 +5482,3,1.0,1,1.3281700611114502,483,1.0,1 +5483,3,1.0,1,1.753164529800415,484,1.0,1 +5484,3,1.0,1,1.265170693397522,485,1.0,1 +5485,3,1.0,1,1.4111689329147339,486,1.0,1 +5486,3,1.0,1,1.2031705379486084,487,1.0,1 +5487,3,1.0,1,1.54216730594635,488,1.0,1 +5488,3,1.0,1,1.9961614608764648,489,0.0,1 +5489,3,0.0,1,2.1391663551330566,490,1.0,1 +5490,3,0.0,1,1.715165138244629,491,0.0,1 +5491,3,1.0,1,1.568166971206665,492,1.0,1 +5492,3,1.0,1,1.985161542892456,493,0.0,1 +5493,3,0.0,1,1.5891666412353516,494,0.0,1 +5494,3,1.0,1,1.2721706628799438,495,0.0,1 +5495,3,1.0,1,1.7171649932861328,496,1.0,1 +5496,3,1.0,1,1.3561697006225586,497,1.0,1 +5497,3,1.0,1,1.5111676454544067,498,1.0,1 +5498,3,1.0,1,1.4191688299179077,499,1.0,1 +5499,3,1.0,1,1.2991703748703003,500,1.0,1 +5500,3,1.0,2,1.8891627788543701,1,1.0,1 +5501,3,1.0,2,1.7811641693115234,2,0.0,1 +5502,3,0.0,2,1.16217041015625,3,0.0,1 +5503,3,0.0,2,1.4041690826416016,4,1.0,1 +5504,3,0.0,2,1.2531706094741821,5,1.0,1 +5505,3,0.0,2,1.7181650400161743,6,0.0,1 +5506,3,0.0,2,1.805163860321045,7,0.0,1 +5507,3,0.0,2,1.4901679754257202,8,0.0,1 +5508,3,0.0,2,1.7351648807525635,9,1.0,1 +5509,3,0.0,2,1.1471704244613647,10,1.0,1 +5510,3,0.0,2,1.6111664772033691,11,1.0,1 +5511,3,0.0,2,1.4781681299209595,12,1.0,1 +5512,3,0.0,2,1.3091702461242676,13,0.0,1 +5513,3,0.0,2,1.2831705808639526,14,1.0,1 +5514,3,0.0,2,1.2901705503463745,15,1.0,1 +5515,3,0.0,2,1.2761707305908203,16,0.0,1 +5516,3,0.0,2,1.2171705961227417,17,0.0,1 +5517,3,0.0,2,1.4821680784225464,18,0.0,1 +5518,3,1.0,2,2.3091742992401123,19,0.0,1 +5519,3,0.0,2,1.3091702461242676,20,0.0,1 +5520,3,0.0,2,2.0561623573303223,21,1.0,1 +5521,3,0.0,2,1.1451704502105713,22,1.0,1 +5522,3,0.0,2,1.2951704263687134,23,0.0,1 +5523,3,0.0,2,1.40316903591156,24,0.0,1 +5524,3,1.0,2,1.6741656064987183,25,1.0,1 +5525,3,1.0,2,1.6551659107208252,26,1.0,1 +5526,3,1.0,2,1.2971704006195068,27,1.0,1 +5527,3,1.0,2,1.3281700611114502,28,1.0,1 +5528,3,1.0,2,1.9511620998382568,29,1.0,1 +5529,3,1.0,2,1.3221701383590698,30,0.0,1 +5530,3,1.0,2,1.5221675634384155,31,0.0,1 +5531,3,0.0,2,1.4361686706542969,32,0.0,1 +5532,3,1.0,2,1.2911704778671265,33,0.0,1 +5533,3,0.0,2,1.9381622076034546,34,0.0,1 +5534,3,1.0,2,1.8641631603240967,35,0.0,1 +5535,3,1.0,2,1.7391648292541504,36,1.0,1 +5536,3,1.0,2,1.3901692628860474,37,1.0,1 +5537,3,1.0,2,1.101170301437378,38,1.0,1 +5538,3,1.0,2,1.2741706371307373,39,1.0,1 +5539,3,1.0,2,1.2641706466674805,40,0.0,1 +5540,3,1.0,2,1.4831680059432983,41,1.0,1 +5541,3,1.0,2,1.3961691856384277,42,0.0,1 +5542,3,0.0,2,1.5931665897369385,43,0.0,1 +5543,3,1.0,2,1.3541697263717651,44,0.0,1 +5544,3,1.0,2,2.3331754207611084,45,0.0,1 +5545,3,0.0,2,1.8281636238098145,46,0.0,1 +5546,3,0.0,2,1.8021639585494995,47,0.0,1 +5547,3,1.0,2,2.0641627311706543,48,1.0,1 +5548,3,1.0,2,1.268170714378357,49,0.0,1 +5549,3,1.0,2,1.9571619033813477,50,1.0,1 +5550,3,1.0,2,1.2021706104278564,51,1.0,1 +5551,3,1.0,2,1.232170581817627,52,0.0,1 +5552,3,1.0,2,1.9331622123718262,53,0.0,1 +5553,3,0.0,2,1.1261703968048096,54,0.0,1 +5554,3,0.0,2,1.6521658897399902,55,1.0,1 +5555,3,0.0,2,1.0991703271865845,56,0.0,1 +5556,3,0.0,2,1.472168207168579,57,0.0,1 +5557,3,0.0,2,1.807163953781128,58,0.0,1 +5558,3,1.0,2,2.0111613273620605,59,0.0,1 +5559,3,0.0,2,1.2991703748703003,60,0.0,1 +5560,3,0.0,2,1.5831668376922607,61,0.0,1 +5561,3,0.0,2,1.5781668424606323,62,0.0,1 +5562,3,0.0,2,1.572166919708252,63,1.0,1 +5563,3,0.0,2,1.1491703987121582,64,1.0,1 +5564,3,0.0,2,1.091170310974121,65,0.0,1 +5565,3,1.0,2,1.5701669454574585,66,1.0,1 +5566,3,1.0,2,1.1451704502105713,67,0.0,1 +5567,3,0.0,2,1.1971704959869385,68,1.0,1 +5568,3,0.0,2,1.1931705474853516,69,0.0,1 +5569,3,0.0,2,2.0671629905700684,70,1.0,1 +5570,3,0.0,2,1.7211649417877197,71,0.0,1 +5571,3,1.0,2,2.182168483734131,72,1.0,1 +5572,3,1.0,2,1.3441698551177979,73,0.0,1 +5573,3,1.0,2,1.2401705980300903,74,1.0,1 +5574,3,1.0,2,1.2211705446243286,75,1.0,1 +5575,3,1.0,2,1.1241704225540161,76,1.0,1 +5576,3,1.0,2,1.2471706867218018,77,1.0,1 +5577,3,1.0,2,1.5191675424575806,78,1.0,1 +5578,3,1.0,2,1.6891653537750244,79,1.0,1 +5579,3,1.0,2,1.3711694478988647,80,1.0,1 +5580,3,1.0,2,1.3381699323654175,81,1.0,1 +5581,3,1.0,2,1.2411706447601318,82,1.0,1 +5582,3,1.0,2,1.7751643657684326,83,1.0,1 +5583,3,1.0,2,1.3131701946258545,84,0.0,1 +5584,3,0.0,2,2.0881638526916504,85,1.0,1 +5585,3,0.0,2,1.4351686239242554,86,0.0,1 +5586,3,0.0,2,1.235170602798462,87,1.0,1 +5587,3,0.0,2,1.4311686754226685,88,1.0,1 +5588,3,0.0,2,1.1711704730987549,89,0.0,1 +5589,3,0.0,2,1.2441706657409668,90,1.0,1 +5590,3,0.0,2,1.2211705446243286,91,1.0,1 +5591,3,0.0,2,1.1511704921722412,92,0.0,1 +5592,3,1.0,2,1.7911641597747803,93,0.0,1 +5593,3,0.0,2,1.1781704425811768,94,1.0,1 +5594,3,0.0,2,1.2501707077026367,95,0.0,1 +5595,3,1.0,2,1.3441698551177979,96,1.0,1 +5596,3,1.0,2,1.2611706256866455,97,0.0,1 +5597,3,0.0,2,1.7741643190383911,98,0.0,1 +5598,3,0.0,2,1.6351661682128906,99,0.0,1 +5599,3,0.0,2,1.6051664352416992,100,1.0,1 +5600,3,0.0,2,1.2271705865859985,101,1.0,1 +5601,3,0.0,2,1.1231703758239746,102,0.0,1 +5602,3,0.0,2,2.0511622428894043,103,0.0,1 +5603,3,0.0,2,1.2841706275939941,104,1.0,1 +5604,3,0.0,2,1.1971704959869385,105,0.0,1 +5605,3,0.0,2,1.5521671772003174,106,0.0,1 +5606,3,0.0,2,1.9541620016098022,107,0.0,1 +5607,3,0.0,2,1.3311699628829956,108,1.0,1 +5608,3,0.0,2,1.289170503616333,109,0.0,1 +5609,3,0.0,2,1.451168417930603,110,0.0,1 +5610,3,0.0,2,1.8371634483337402,111,1.0,1 +5611,3,0.0,2,1.2751706838607788,112,1.0,1 +5612,3,0.0,2,1.2051705121994019,113,1.0,1 +5613,3,0.0,2,1.1631704568862915,114,0.0,1 +5614,3,0.0,2,1.6291661262512207,115,0.0,1 +5615,3,1.0,2,2.1801681518554688,116,0.0,1 +5616,3,0.0,2,1.9581619501113892,117,1.0,1 +5617,3,0.0,2,1.8231637477874756,118,0.0,1 +5618,3,0.0,2,1.407168984413147,119,0.0,1 +5619,3,0.0,2,1.803164005279541,120,0.0,1 +5620,3,1.0,2,1.2791706323623657,121,0.0,1 +5621,3,0.0,2,1.1591705083847046,122,1.0,1 +5622,3,0.0,2,1.1021703481674194,123,0.0,1 +5623,3,1.0,2,1.454168438911438,124,0.0,1 +5624,3,1.0,2,1.292170524597168,125,1.0,1 +5625,3,1.0,2,1.1961705684661865,126,1.0,1 +5626,3,1.0,2,1.476168155670166,127,1.0,1 +5627,3,1.0,2,1.3521697521209717,128,0.0,1 +5628,3,0.0,2,1.170170545578003,129,1.0,1 +5629,3,0.0,2,1.4111689329147339,130,1.0,1 +5630,3,0.0,2,1.3171701431274414,131,0.0,1 +5631,3,0.0,2,1.1561704874038696,132,1.0,1 +5632,3,0.0,2,1.3641695976257324,133,0.0,1 +5633,3,1.0,2,1.2761707305908203,134,1.0,1 +5634,3,1.0,2,1.4351686239242554,135,0.0,1 +5635,3,0.0,2,1.2111705541610718,136,1.0,1 +5636,3,0.0,2,1.2701706886291504,137,1.0,1 +5637,3,0.0,2,1.3821693658828735,138,1.0,1 +5638,3,0.0,2,1.3281700611114502,139,1.0,1 +5639,3,0.0,2,1.1821705102920532,140,1.0,1 +5640,3,0.0,2,1.546167254447937,141,1.0,1 +5641,3,0.0,2,1.3341699838638306,142,0.0,1 +5642,3,0.0,2,1.1731704473495483,143,1.0,1 +5643,3,0.0,2,1.2031705379486084,144,0.0,1 +5644,3,1.0,2,1.5131676197052002,145,0.0,1 +5645,3,1.0,2,1.575166940689087,146,1.0,1 +5646,3,1.0,2,1.45516836643219,147,0.0,1 +5647,3,0.0,2,1.2941704988479614,148,0.0,1 +5648,3,0.0,2,1.2121706008911133,149,0.0,1 +5649,3,1.0,2,1.2401705980300903,150,1.0,1 +5650,3,1.0,2,1.5801668167114258,151,1.0,1 +5651,3,1.0,2,1.940162181854248,152,1.0,1 +5652,3,1.0,2,1.8171637058258057,153,1.0,1 +5653,3,1.0,2,1.38016939163208,154,1.0,1 +5654,3,1.0,2,1.1051703691482544,155,0.0,1 +5655,3,1.0,2,1.1511704921722412,156,0.0,1 +5656,3,0.0,2,1.429168701171875,157,0.0,1 +5657,3,0.0,2,1.660165786743164,158,0.0,1 +5658,3,0.0,2,1.5611670017242432,159,0.0,1 +5659,3,0.0,2,1.7941640615463257,160,1.0,1 +5660,3,0.0,2,1.550167202949524,161,1.0,1 +5661,3,0.0,2,1.363169550895691,162,0.0,1 +5662,3,1.0,2,2.0481619834899902,163,0.0,1 +5663,3,0.0,2,1.6281661987304688,164,0.0,1 +5664,3,1.0,2,2.166167736053467,165,0.0,1 +5665,3,1.0,2,1.853163242340088,166,1.0,1 +5666,3,1.0,2,1.158170461654663,167,1.0,1 +5667,3,1.0,2,1.4391685724258423,168,1.0,1 +5668,3,1.0,2,1.7711644172668457,169,1.0,1 +5669,3,1.0,2,1.337169885635376,170,0.0,1 +5670,3,1.0,2,1.6581658124923706,171,1.0,1 +5671,3,1.0,2,1.5491671562194824,172,0.0,1 +5672,3,1.0,2,1.757164478302002,173,1.0,1 +5673,3,1.0,2,1.3171701431274414,174,1.0,1 +5674,3,1.0,2,1.498167872428894,175,0.0,1 +5675,3,0.0,2,1.1831705570220947,176,0.0,1 +5676,3,1.0,2,1.7641644477844238,177,0.0,1 +5677,3,0.0,2,1.3121702671051025,178,0.0,1 +5678,3,0.0,2,1.826163649559021,179,1.0,1 +5679,3,0.0,2,1.5011677742004395,180,0.0,1 +5680,3,1.0,2,1.4671682119369507,181,0.0,1 +5681,3,0.0,2,1.3391698598861694,182,1.0,1 +5682,3,0.0,2,1.100170373916626,183,1.0,1 +5683,3,0.0,2,1.4011690616607666,184,0.0,1 +5684,3,0.0,2,1.5061677694320679,185,0.0,1 +5685,3,1.0,2,1.8871629238128662,186,1.0,1 +5686,3,1.0,2,1.5591671466827393,187,0.0,1 +5687,3,0.0,2,1.7001652717590332,188,1.0,1 +5688,3,0.0,2,2.1271657943725586,189,0.0,1 +5689,3,0.0,2,1.2571706771850586,190,1.0,1 +5690,3,0.0,2,1.2991703748703003,191,1.0,1 +5691,3,0.0,2,1.3671694993972778,192,1.0,1 +5692,3,0.0,2,1.874163031578064,193,1.0,1 +5693,3,0.0,2,1.20417058467865,194,1.0,1 +5694,3,0.0,2,1.1711704730987549,195,0.0,1 +5695,3,0.0,2,1.2231706380844116,196,0.0,1 +5696,3,1.0,2,1.6371660232543945,197,1.0,1 +5697,3,1.0,2,1.226170539855957,198,0.0,1 +5698,3,0.0,2,2.218170166015625,199,1.0,1 +5699,3,0.0,2,1.2601706981658936,200,0.0,1 +5700,3,0.0,2,1.8101638555526733,201,0.0,1 +5701,3,0.0,2,1.7141650915145874,202,0.0,1 +5702,3,1.0,2,1.3771693706512451,203,0.0,1 +5703,3,0.0,2,1.5151675939559937,204,1.0,1 +5704,3,0.0,2,1.292170524597168,205,1.0,1 +5705,3,0.0,2,1.450168490409851,206,0.0,1 +5706,3,0.0,2,1.5991666316986084,207,1.0,1 +5707,3,0.0,2,1.2131705284118652,208,0.0,1 +5708,3,1.0,2,1.381169319152832,209,1.0,1 +5709,3,1.0,2,1.362169623374939,210,1.0,1 +5710,3,1.0,2,1.6441659927368164,211,0.0,1 +5711,3,0.0,2,1.6911654472351074,212,0.0,1 +5712,3,0.0,2,1.2871705293655396,213,1.0,1 +5713,3,0.0,2,1.8691630363464355,214,1.0,1 +5714,3,0.0,2,1.3311699628829956,215,0.0,1 +5715,3,0.0,2,1.7171649932861328,216,0.0,1 +5716,3,0.0,2,1.4941679239273071,217,0.0,1 +5717,3,1.0,2,1.9551620483398438,218,0.0,1 +5718,3,1.0,2,1.7841641902923584,219,0.0,1 +5719,3,0.0,2,1.6261662244796753,220,0.0,1 +5720,3,0.0,2,1.1801705360412598,221,0.0,1 +5721,3,1.0,2,2.300173759460449,222,0.0,1 +5722,3,0.0,2,1.778164267539978,223,1.0,1 +5723,3,0.0,2,1.2691706418991089,224,1.0,1 +5724,3,0.0,2,1.29317045211792,225,0.0,1 +5725,3,0.0,2,1.6531658172607422,226,0.0,1 +5726,3,0.0,2,1.7641644477844238,227,0.0,1 +5727,3,0.0,2,1.657165765762329,228,0.0,1 +5728,3,0.0,2,1.1781704425811768,229,1.0,1 +5729,3,0.0,2,1.195170521736145,230,0.0,1 +5730,3,0.0,2,1.6301661729812622,231,0.0,1 +5731,3,1.0,2,1.6111664772033691,232,0.0,1 +5732,3,0.0,2,1.7761642932891846,233,0.0,1 +5733,3,1.0,2,1.2861706018447876,234,1.0,1 +5734,3,0.0,2,1.4451684951782227,235,1.0,1 +5735,3,0.0,2,1.4141689538955688,236,0.0,1 +5736,3,1.0,2,1.3091702461242676,237,0.0,1 +5737,3,1.0,2,1.7961640357971191,238,1.0,1 +5738,3,1.0,2,1.6041665077209473,239,1.0,1 +5739,3,1.0,2,1.5481672286987305,240,1.0,1 +5740,3,1.0,2,1.3061703443527222,241,1.0,1 +5741,3,1.0,2,1.5971665382385254,242,1.0,1 +5742,3,1.0,2,1.406169056892395,243,0.0,1 +5743,3,0.0,2,1.1451704502105713,244,1.0,1 +5744,3,0.0,2,1.1591705083847046,245,0.0,1 +5745,3,1.0,2,2.3521761894226074,246,0.0,1 +5746,3,0.0,2,1.473168134689331,247,1.0,1 +5747,3,0.0,2,1.3691694736480713,248,0.0,1 +5748,3,1.0,2,1.311170220375061,249,0.0,1 +5749,3,0.0,2,1.406169056892395,250,1.0,1 +5750,3,0.0,2,1.5361673831939697,251,1.0,1 +5751,3,0.0,2,1.1571704149246216,252,0.0,1 +5752,3,0.0,2,1.340169906616211,253,1.0,1 +5753,3,0.0,2,1.2331706285476685,254,0.0,1 +5754,3,1.0,2,1.226170539855957,255,0.0,1 +5755,3,0.0,2,1.7401647567749023,256,1.0,1 +5756,3,0.0,2,1.2451705932617188,257,0.0,1 +5757,3,0.0,2,1.5871667861938477,258,1.0,1 +5758,3,0.0,2,1.1841704845428467,259,1.0,1 +5759,3,0.0,2,1.1781704425811768,260,0.0,1 +5760,3,1.0,2,1.337169885635376,261,1.0,1 +5761,3,1.0,2,1.5481672286987305,262,0.0,1 +5762,3,0.0,2,1.3271700143814087,263,1.0,1 +5763,3,0.0,2,1.131170392036438,264,0.0,1 +5764,3,0.0,2,2.0941643714904785,265,1.0,1 +5765,3,0.0,2,1.429168701171875,266,0.0,1 +5766,3,1.0,2,1.8291635513305664,267,1.0,1 +5767,3,1.0,2,1.3931691646575928,268,1.0,1 +5768,3,1.0,2,1.2871705293655396,269,1.0,1 +5769,3,1.0,2,1.4681682586669922,270,0.0,1 +5770,3,0.0,2,2.288173198699951,271,1.0,1 +5771,3,0.0,2,1.495167851448059,272,0.0,1 +5772,3,1.0,2,1.4451684951782227,273,1.0,1 +5773,3,1.0,2,1.527167558670044,274,0.0,1 +5774,3,0.0,2,1.8331634998321533,275,1.0,1 +5775,3,0.0,2,1.406169056892395,276,1.0,1 +5776,3,0.0,2,1.2451705932617188,277,0.0,1 +5777,3,0.0,2,1.2911704778671265,278,0.0,1 +5778,3,1.0,2,1.5071676969528198,279,1.0,1 +5779,3,0.0,2,1.8311636447906494,280,0.0,1 +5780,3,1.0,2,1.318170189857483,281,1.0,1 +5781,3,1.0,2,1.5231674909591675,282,0.0,1 +5782,3,0.0,2,1.715165138244629,283,0.0,1 +5783,3,0.0,2,1.1241704225540161,284,0.0,1 +5784,3,1.0,2,1.3971691131591797,285,1.0,1 +5785,3,1.0,2,1.1881705522537231,286,1.0,1 +5786,3,1.0,2,1.20417058467865,287,0.0,1 +5787,3,0.0,2,1.1851705312728882,288,0.0,1 +5788,3,1.0,2,2.0551624298095703,289,1.0,1 +5789,3,1.0,2,2.3671770095825195,290,1.0,1 +5790,3,1.0,2,1.5931665897369385,291,1.0,1 +5791,3,1.0,2,1.2901705503463745,292,1.0,1 +5792,3,1.0,2,1.5631670951843262,293,0.0,1 +5793,3,0.0,2,1.9331622123718262,294,1.0,1 +5794,3,0.0,2,1.225170612335205,295,1.0,1 +5795,3,0.0,2,1.573166847229004,296,1.0,1 +5796,3,0.0,2,1.2911704778671265,297,1.0,1 +5797,3,0.0,2,1.2691706418991089,298,1.0,1 +5798,3,0.0,2,1.2051705121994019,299,0.0,1 +5799,3,0.0,2,1.1851705312728882,300,1.0,1 +5800,3,0.0,2,1.4341686964035034,301,0.0,1 +5801,3,1.0,2,1.9161624908447266,302,1.0,1 +5802,3,1.0,2,1.2231706380844116,303,0.0,1 +5803,3,1.0,2,1.7931640148162842,304,1.0,1 +5804,3,1.0,2,1.3921692371368408,305,0.0,1 +5805,3,0.0,2,1.4791680574417114,306,0.0,1 +5806,3,1.0,2,1.8081638813018799,307,1.0,1 +5807,3,1.0,2,1.56516695022583,308,1.0,1 +5808,3,0.0,2,1.4831680059432983,309,0.0,1 +5809,3,1.0,2,1.940162181854248,310,1.0,1 +5810,3,1.0,2,1.6781655550003052,311,0.0,1 +5811,3,0.0,2,1.7791643142700195,312,1.0,1 +5812,3,0.0,2,2.245171308517456,313,0.0,1 +5813,3,0.0,2,1.7141650915145874,314,1.0,1 +5814,3,0.0,2,1.3951691389083862,315,1.0,1 +5815,3,0.0,2,1.4161689281463623,316,0.0,1 +5816,3,1.0,2,1.7541645765304565,317,1.0,1 +5817,3,1.0,2,1.5561671257019043,318,1.0,1 +5818,3,1.0,2,1.499167799949646,319,0.0,1 +5819,3,0.0,2,1.9381622076034546,320,1.0,1 +5820,3,0.0,2,1.1721705198287964,321,1.0,1 +5821,3,0.0,2,1.3311699628829956,322,0.0,1 +5822,3,1.0,2,1.59416663646698,323,0.0,1 +5823,3,1.0,2,1.7221649885177612,324,1.0,1 +5824,3,1.0,2,1.59416663646698,325,0.0,1 +5825,3,1.0,2,1.7791643142700195,326,1.0,1 +5826,3,1.0,2,1.5351674556732178,327,1.0,1 +5827,3,1.0,2,1.3471697568893433,328,0.0,1 +5828,3,1.0,2,1.3951691389083862,329,1.0,1 +5829,3,1.0,2,1.2191705703735352,330,1.0,1 +5830,3,1.0,2,1.2071706056594849,331,1.0,1 +5831,3,1.0,2,1.3001704216003418,332,0.0,1 +5832,3,0.0,2,1.3021703958511353,333,0.0,1 +5833,3,1.0,2,1.9991614818572998,334,0.0,1 +5834,3,0.0,2,1.2401705980300903,335,0.0,1 +5835,3,0.0,2,1.1511704921722412,336,0.0,1 +5836,3,1.0,2,1.9551620483398438,337,1.0,1 +5837,3,1.0,2,1.5321674346923828,338,1.0,1 +5838,3,1.0,2,1.5561671257019043,339,1.0,1 +5839,3,1.0,2,1.3611695766448975,340,1.0,1 +5840,3,1.0,2,1.4631682634353638,341,1.0,1 +5841,3,1.0,2,1.5601670742034912,342,1.0,1 +5842,3,1.0,2,1.406169056892395,343,1.0,1 +5843,3,1.0,2,1.3611695766448975,344,0.0,1 +5844,3,0.0,2,1.7351648807525635,345,0.0,1 +5845,3,0.0,2,2.3561763763427734,346,1.0,1 +5846,3,0.0,2,1.2551707029342651,347,0.0,1 +5847,3,0.0,2,2.6121883392333984,348,1.0,1 +5848,3,0.0,2,1.0711703300476074,349,0.0,1 +5849,3,0.0,2,1.9081625938415527,350,1.0,1 +5850,3,0.0,2,1.358169674873352,351,0.0,1 +5851,3,1.0,2,1.3161702156066895,352,1.0,1 +5852,3,1.0,2,1.134170413017273,353,0.0,1 +5853,3,1.0,2,1.429168701171875,354,1.0,1 +5854,3,0.0,2,1.2741706371307373,355,1.0,1 +5855,3,1.0,2,1.476168155670166,356,1.0,1 +5856,3,0.0,2,1.0931702852249146,357,0.0,1 +5857,3,1.0,2,1.3341699838638306,358,0.0,1 +5858,3,0.0,2,1.8061639070510864,359,1.0,1 +5859,3,0.0,2,1.3751693964004517,360,0.0,1 +5860,3,0.0,2,1.5791668891906738,361,1.0,1 +5861,3,0.0,2,1.2971704006195068,362,0.0,1 +5862,3,1.0,2,1.892162799835205,363,1.0,1 +5863,3,1.0,2,1.5571670532226562,364,0.0,1 +5864,3,1.0,2,1.6341661214828491,365,0.0,1 +5865,3,0.0,2,1.686165452003479,366,1.0,1 +5866,3,0.0,2,1.1811704635620117,367,1.0,1 +5867,3,0.0,2,1.2801706790924072,368,0.0,1 +5868,3,0.0,2,1.3301700353622437,369,0.0,1 +5869,3,0.0,2,1.451168417930603,370,1.0,1 +5870,3,0.0,2,1.201170563697815,371,0.0,1 +5871,3,0.0,2,1.8281636238098145,372,0.0,1 +5872,3,0.0,2,1.9171624183654785,373,0.0,1 +5873,3,1.0,2,1.94716215133667,374,1.0,1 +5874,3,1.0,2,1.9581619501113892,375,0.0,1 +5875,3,1.0,2,1.359169602394104,376,0.0,1 +5876,3,1.0,2,1.989161491394043,377,1.0,1 +5877,3,1.0,2,1.2541706562042236,378,1.0,1 +5878,3,1.0,2,1.3061703443527222,379,1.0,1 +5879,3,1.0,2,1.4941679239273071,380,1.0,1 +5880,3,1.0,2,1.2081705331802368,381,0.0,1 +5881,3,0.0,2,2.193168878555298,382,1.0,1 +5882,3,0.0,2,1.1761704683303833,383,1.0,1 +5883,3,0.0,2,1.2791706323623657,384,1.0,1 +5884,3,0.0,2,1.1831705570220947,385,1.0,1 +5885,3,0.0,2,1.134170413017273,386,0.0,1 +5886,3,1.0,2,1.8791630268096924,387,1.0,1 +5887,3,1.0,2,1.231170654296875,388,0.0,1 +5888,3,1.0,2,1.9261623620986938,389,1.0,1 +5889,3,1.0,2,1.2101705074310303,390,1.0,1 +5890,3,1.0,2,1.6581658124923706,391,0.0,1 +5891,3,1.0,2,1.4631682634353638,392,0.0,1 +5892,3,1.0,2,1.6621657609939575,393,0.0,1 +5893,3,0.0,2,1.612166404724121,394,1.0,1 +5894,3,0.0,2,1.2381706237792969,395,0.0,1 +5895,3,0.0,2,1.4091689586639404,396,1.0,1 +5896,3,0.0,2,1.1801705360412598,397,1.0,1 +5897,3,0.0,2,1.0891703367233276,398,0.0,1 +5898,3,0.0,2,1.1661704778671265,399,0.0,1 +5899,3,0.0,2,1.9821616411209106,400,1.0,1 +5900,3,0.0,2,1.2101705074310303,401,0.0,1 +5901,3,1.0,2,1.6251661777496338,402,0.0,1 +5902,3,0.0,2,1.3491697311401367,403,1.0,1 +5903,3,0.0,2,1.2241705656051636,404,0.0,1 +5904,3,1.0,2,1.4931678771972656,405,0.0,1 +5905,3,1.0,2,1.6911654472351074,406,1.0,1 +5906,3,1.0,2,1.3891692161560059,407,1.0,1 +5907,3,1.0,2,1.2391706705093384,408,0.0,1 +5908,3,1.0,2,1.5071676969528198,409,1.0,1 +5909,3,1.0,2,1.4931678771972656,410,1.0,1 +5910,3,1.0,2,1.3481698036193848,411,0.0,1 +5911,3,0.0,2,1.385169267654419,412,0.0,1 +5912,3,0.0,2,1.2451705932617188,413,1.0,1 +5913,3,0.0,2,1.1471704244613647,414,1.0,1 +5914,3,0.0,2,1.5151675939559937,415,0.0,1 +5915,3,1.0,2,1.6141663789749146,416,0.0,1 +5916,3,0.0,2,1.3871692419052124,417,0.0,1 +5917,3,1.0,2,1.1751705408096313,418,0.0,1 +5918,3,0.0,2,1.2611706256866455,419,0.0,1 +5919,3,1.0,2,1.61716628074646,420,1.0,1 +5920,3,1.0,2,1.708165168762207,421,0.0,1 +5921,3,0.0,2,1.314170241355896,422,0.0,1 +5922,3,1.0,2,1.4001691341400146,423,1.0,1 +5923,3,1.0,2,1.2821706533432007,424,0.0,1 +5924,3,1.0,2,2.0601625442504883,425,0.0,1 +5925,3,1.0,2,1.8731629848480225,426,0.0,1 +5926,3,0.0,2,1.4241688251495361,427,0.0,1 +5927,3,1.0,2,1.9251623153686523,428,1.0,1 +5928,3,1.0,2,1.3661695718765259,429,0.0,1 +5929,3,1.0,2,1.8201637268066406,430,1.0,1 +5930,3,1.0,2,1.590166687965393,431,0.0,1 +5931,3,0.0,2,1.5041677951812744,432,0.0,1 +5932,3,1.0,2,1.6451659202575684,433,0.0,1 +5933,3,1.0,2,2.031161308288574,434,0.0,1 +5934,3,0.0,2,1.9351623058319092,435,0.0,1 +5935,3,1.0,2,2.0521621704101562,436,0.0,1 +5936,3,1.0,2,1.5051677227020264,437,1.0,1 +5937,3,1.0,2,1.6621657609939575,438,0.0,1 +5938,3,0.0,2,1.2981704473495483,439,0.0,1 +5939,3,0.0,2,1.6231663227081299,440,0.0,1 +5940,3,0.0,2,1.384169340133667,441,1.0,1 +5941,3,0.0,2,1.6481659412384033,442,1.0,1 +5942,3,0.0,2,1.3471697568893433,443,1.0,1 +5943,3,0.0,2,1.804163932800293,444,1.0,1 +5944,3,0.0,2,1.4871679544448853,445,1.0,1 +5945,3,0.0,2,1.1351704597473145,446,0.0,1 +5946,3,1.0,2,1.2801706790924072,447,1.0,1 +5947,3,1.0,2,1.4931678771972656,448,1.0,1 +5948,3,1.0,2,1.6361660957336426,449,0.0,1 +5949,3,1.0,2,1.9831616878509521,450,0.0,1 +5950,3,0.0,2,1.285170555114746,451,0.0,1 +5951,3,1.0,2,1.226170539855957,452,1.0,1 +5952,3,1.0,2,1.3711694478988647,453,1.0,1 +5953,3,1.0,2,1.2211705446243286,454,1.0,1 +5954,3,1.0,2,1.7281649112701416,455,0.0,1 +5955,3,0.0,2,1.5011677742004395,456,0.0,1 +5956,3,1.0,2,1.3611695766448975,457,0.0,1 +5957,3,0.0,2,1.6531658172607422,458,1.0,1 +5958,3,0.0,2,1.359169602394104,459,0.0,1 +5959,3,0.0,2,1.1091703176498413,460,1.0,1 +5960,3,0.0,2,1.2271705865859985,461,0.0,1 +5961,3,0.0,2,1.6251661777496338,462,1.0,1 +5962,3,0.0,2,1.1661704778671265,463,0.0,1 +5963,3,0.0,2,1.9241623878479004,464,0.0,1 +5964,3,0.0,2,2.0671629905700684,465,0.0,1 +5965,3,0.0,2,2.0611627101898193,466,0.0,1 +5966,3,1.0,2,1.4411685466766357,467,0.0,1 +5967,3,1.0,2,1.9031627178192139,468,1.0,1 +5968,3,1.0,2,2.28117299079895,469,1.0,1 +5969,3,1.0,2,1.472168207168579,470,1.0,1 +5970,3,1.0,2,1.8941627740859985,471,1.0,1 +5971,3,0.0,2,1.4831680059432983,472,0.0,1 +5972,3,1.0,2,1.2371705770492554,473,0.0,1 +5973,3,1.0,2,1.3251700401306152,474,1.0,1 +5974,3,1.0,2,1.5181676149368286,475,0.0,1 +5975,3,1.0,2,1.8391635417938232,476,1.0,1 +5976,3,1.0,2,1.1821705102920532,477,1.0,1 +5977,3,1.0,2,1.848163366317749,478,0.0,1 +5978,3,0.0,2,1.705165147781372,479,0.0,1 +5979,3,0.0,2,1.3791693449020386,480,0.0,1 +5980,3,1.0,2,1.4411685466766357,481,0.0,1 +5981,3,1.0,2,1.6551659107208252,482,1.0,1 +5982,3,1.0,2,1.54216730594635,483,1.0,1 +5983,3,1.0,2,1.3381699323654175,484,0.0,1 +5984,3,0.0,2,2.0481619834899902,485,0.0,1 +5985,3,1.0,2,2.0451619625091553,486,0.0,1 +5986,3,1.0,2,1.2911704778671265,487,1.0,1 +5987,3,1.0,2,1.1481704711914062,488,0.0,1 +5988,3,0.0,2,1.1861705780029297,489,1.0,1 +5989,3,0.0,2,1.2581706047058105,490,1.0,1 +5990,3,0.0,2,1.19217050075531,491,1.0,1 +5991,3,0.0,2,1.1071703433990479,492,0.0,1 +5992,3,1.0,2,1.4561684131622314,493,0.0,1 +5993,3,0.0,2,1.1851705312728882,494,1.0,1 +5994,3,0.0,2,1.4081690311431885,495,1.0,1 +5995,3,0.0,2,1.2971704006195068,496,1.0,1 +5996,3,0.0,2,1.358169674873352,497,1.0,1 +5997,3,0.0,2,1.5141676664352417,498,0.0,1 +5998,3,0.0,2,1.6031665802001953,499,0.0,1 +5999,3,1.0,2,1.8721630573272705,500,0.0,1 +6000,4,1.0,0,1.614801049232483,1,1.0,1 +6001,4,1.0,0,1.2738044261932373,2,1.0,1 +6002,4,1.0,0,1.3138045072555542,3,1.0,1 +6003,4,1.0,0,2.0697951316833496,4,1.0,1 +6004,4,0.0,0,1.9657964706420898,5,1.0,1 +6005,4,1.0,0,1.865797758102417,6,1.0,1 +6006,4,1.0,0,1.8477981090545654,7,1.0,1 +6007,4,0.0,0,1.2838045358657837,8,0.0,1 +6008,4,1.0,0,2.1497979164123535,9,0.0,1 +6009,4,0.0,0,1.22780442237854,10,0.0,1 +6010,4,1.0,0,1.5428019762039185,11,1.0,1 +6011,4,1.0,0,1.4128036499023438,12,1.0,1 +6012,4,1.0,0,1.7177996635437012,13,1.0,1 +6013,4,1.0,0,1.298804521560669,14,1.0,1 +6014,4,1.0,0,1.4608030319213867,15,1.0,1 +6015,4,1.0,0,2.0397956371307373,16,1.0,1 +6016,4,1.0,0,1.3168045282363892,17,0.0,1 +6017,4,0.0,0,2.0627951622009277,18,0.0,1 +6018,4,0.0,0,1.4828027486801147,19,0.0,1 +6019,4,1.0,0,1.5538017749786377,20,1.0,1 +6020,4,1.0,0,1.6178009510040283,21,0.0,1 +6021,4,0.0,0,1.4088037014007568,22,0.0,1 +6022,4,0.0,0,2.480813503265381,23,0.0,1 +6023,4,0.0,0,1.6658003330230713,24,1.0,1 +6024,4,0.0,0,1.6568005084991455,25,0.0,1 +6025,4,1.0,0,1.8007986545562744,26,1.0,1 +6026,4,1.0,0,1.3488044738769531,27,1.0,1 +6027,4,1.0,0,1.2798044681549072,28,1.0,1 +6028,4,1.0,0,1.4838026762008667,29,1.0,1 +6029,4,1.0,0,1.452803134918213,30,1.0,1 +6030,4,1.0,0,1.3588043451309204,31,1.0,1 +6031,4,0.0,0,2.1087961196899414,32,1.0,1 +6032,4,1.0,0,1.452803134918213,33,1.0,1 +6033,4,1.0,0,1.2708044052124023,34,1.0,1 +6034,4,0.0,0,1.3178045749664307,35,0.0,1 +6035,4,1.0,0,1.3558043241500854,36,1.0,1 +6036,4,1.0,0,1.3628042936325073,37,1.0,1 +6037,4,1.0,0,2.0367956161499023,38,0.0,1 +6038,4,0.0,0,1.4818027019500732,39,0.0,1 +6039,4,1.0,0,1.3878039121627808,40,1.0,1 +6040,4,1.0,0,1.7017998695373535,41,0.0,1 +6041,4,1.0,0,1.3238046169281006,42,1.0,1 +6042,4,1.0,0,1.7477993965148926,43,1.0,1 +6043,4,1.0,0,1.332804560661316,44,1.0,1 +6044,4,1.0,0,1.42780339717865,45,1.0,1 +6045,4,1.0,0,1.955796718597412,46,1.0,1 +6046,4,1.0,0,1.445803165435791,47,1.0,1 +6047,4,1.0,0,1.4888026714324951,48,0.0,1 +6048,4,1.0,0,1.5788015127182007,49,1.0,1 +6049,4,1.0,0,1.3808040618896484,50,1.0,1 +6050,4,1.0,0,1.5798014402389526,51,1.0,1 +6051,4,1.0,0,1.779798984527588,52,0.0,1 +6052,4,0.0,0,1.4758027791976929,53,0.0,1 +6053,4,0.0,0,1.724799633026123,54,0.0,1 +6054,4,1.0,0,2.005795955657959,55,1.0,1 +6055,4,1.0,0,1.2028043270111084,56,1.0,1 +6056,4,1.0,0,1.5008025169372559,57,1.0,1 +6057,4,1.0,0,1.4408032894134521,58,1.0,1 +6058,4,0.0,0,2.0197958946228027,59,0.0,1 +6059,4,1.0,0,1.7187997102737427,60,1.0,1 +6060,4,1.0,0,1.467802882194519,61,0.0,1 +6061,4,0.0,0,1.2978044748306274,62,0.0,1 +6062,4,0.0,0,1.356804370880127,63,0.0,1 +6063,4,1.0,0,1.5028024911880493,64,1.0,1 +6064,4,1.0,0,1.6218008995056152,65,1.0,1 +6065,4,1.0,0,1.2978044748306274,66,1.0,1 +6066,4,1.0,0,1.6967999935150146,67,1.0,1 +6067,4,1.0,0,1.4598029851913452,68,1.0,1 +6068,4,1.0,0,1.51480233669281,69,1.0,1 +6069,4,1.0,0,1.4638029336929321,70,1.0,1 +6070,4,1.0,0,1.3088045120239258,71,1.0,1 +6071,4,1.0,0,1.6308008432388306,72,1.0,1 +6072,4,1.0,0,1.4988025426864624,73,1.0,1 +6073,4,1.0,0,1.4348033666610718,74,0.0,1 +6074,4,1.0,0,1.515802264213562,75,1.0,1 +6075,4,1.0,0,2.1978001594543457,76,1.0,1 +6076,4,1.0,0,1.356804370880127,77,1.0,1 +6077,4,1.0,0,1.540802001953125,78,1.0,1 +6078,4,1.0,0,1.2208043336868286,79,1.0,1 +6079,4,1.0,0,1.2378044128417969,80,1.0,1 +6080,4,1.0,0,1.3278045654296875,81,1.0,1 +6081,4,1.0,0,1.5298020839691162,82,1.0,1 +6082,4,1.0,0,1.3908039331436157,83,1.0,1 +6083,4,1.0,0,1.6958000659942627,84,1.0,1 +6084,4,1.0,0,1.5328021049499512,85,1.0,1 +6085,4,0.0,0,1.8727977275848389,86,1.0,1 +6086,4,1.0,0,1.4838026762008667,87,1.0,1 +6087,4,0.0,0,2.251802682876587,88,1.0,1 +6088,4,0.0,0,1.8847975730895996,89,1.0,1 +6089,4,0.0,0,1.7427994012832642,90,1.0,1 +6090,4,0.0,0,1.606801152229309,91,0.0,1 +6091,4,0.0,0,1.3148045539855957,92,0.0,1 +6092,4,1.0,0,1.4358032941818237,93,0.0,1 +6093,4,1.0,0,1.587801456451416,94,1.0,1 +6094,4,0.0,0,1.817798376083374,95,1.0,1 +6095,4,1.0,0,1.5728015899658203,96,0.0,1 +6096,4,0.0,0,1.231804370880127,97,0.0,1 +6097,4,0.0,0,1.6788002252578735,98,0.0,1 +6098,4,1.0,0,1.4958025217056274,99,1.0,1 +6099,4,0.0,0,1.6188009977340698,100,0.0,1 +6100,4,0.0,0,1.5438019037246704,101,0.0,1 +6101,4,1.0,0,1.7527992725372314,102,1.0,1 +6102,4,1.0,0,1.7167997360229492,103,1.0,1 +6103,4,1.0,0,1.637800693511963,104,1.0,1 +6104,4,1.0,0,1.4848027229309082,105,1.0,1 +6105,4,1.0,0,1.5218021869659424,106,1.0,1 +6106,4,1.0,0,1.9037973880767822,107,1.0,1 +6107,4,1.0,0,1.40480375289917,108,1.0,1 +6108,4,1.0,0,1.6168010234832764,109,0.0,1 +6109,4,1.0,0,1.731799602508545,110,1.0,1 +6110,4,1.0,0,1.5868014097213745,111,1.0,1 +6111,4,1.0,0,1.7967987060546875,112,1.0,1 +6112,4,1.0,0,1.614801049232483,113,1.0,1 +6113,4,1.0,0,1.4428032636642456,114,1.0,1 +6114,4,1.0,0,1.5068024396896362,115,1.0,1 +6115,4,1.0,0,1.515802264213562,116,1.0,1 +6116,4,1.0,0,1.729799509048462,117,1.0,1 +6117,4,1.0,0,1.3818039894104004,118,1.0,1 +6118,4,1.0,0,1.401803731918335,119,0.0,1 +6119,4,1.0,0,1.9277970790863037,120,1.0,1 +6120,4,1.0,0,1.9037973880767822,121,1.0,1 +6121,4,1.0,0,1.846798062324524,122,0.0,1 +6122,4,0.0,0,1.2638044357299805,123,1.0,1 +6123,4,0.0,0,1.234804391860962,124,0.0,1 +6124,4,1.0,0,1.6618003845214844,125,1.0,1 +6125,4,1.0,0,1.3118045330047607,126,1.0,1 +6126,4,1.0,0,1.2748044729232788,127,1.0,1 +6127,4,1.0,0,1.7477993965148926,128,1.0,1 +6128,4,1.0,0,1.2878044843673706,129,1.0,1 +6129,4,1.0,0,1.7937986850738525,130,1.0,1 +6130,4,1.0,0,1.9007973670959473,131,1.0,1 +6131,4,1.0,0,1.3868039846420288,132,1.0,1 +6132,4,1.0,0,1.328804612159729,133,1.0,1 +6133,4,0.0,0,1.8417980670928955,134,0.0,1 +6134,4,1.0,0,1.6058011054992676,135,1.0,1 +6135,4,1.0,0,1.426803469657898,136,1.0,1 +6136,4,1.0,0,1.3408045768737793,137,1.0,1 +6137,4,1.0,0,1.6408007144927979,138,1.0,1 +6138,4,1.0,0,1.635800838470459,139,1.0,1 +6139,4,1.0,0,1.8817975521087646,140,1.0,1 +6140,4,1.0,0,1.2698044776916504,141,1.0,1 +6141,4,1.0,0,1.3838039636611938,142,0.0,1 +6142,4,0.0,0,1.7677991390228271,143,0.0,1 +6143,4,1.0,0,1.9667965173721313,144,1.0,1 +6144,4,1.0,0,1.5958013534545898,145,1.0,1 +6145,4,1.0,0,1.4248034954071045,146,1.0,1 +6146,4,1.0,0,1.1788042783737183,147,1.0,1 +6147,4,1.0,0,1.591801404953003,148,1.0,1 +6148,4,1.0,0,1.264804482460022,149,1.0,1 +6149,4,1.0,0,1.6258008480072021,150,1.0,1 +6150,4,1.0,0,1.3268046379089355,151,1.0,1 +6151,4,1.0,0,1.4058036804199219,152,1.0,1 +6152,4,1.0,0,1.3778040409088135,153,1.0,1 +6153,4,1.0,0,1.4338033199310303,154,1.0,1 +6154,4,1.0,0,1.5058023929595947,155,1.0,1 +6155,4,1.0,0,1.4388033151626587,156,1.0,1 +6156,4,1.0,0,2.1057958602905273,157,1.0,1 +6157,4,1.0,0,1.4298033714294434,158,1.0,1 +6158,4,1.0,0,1.301804542541504,159,1.0,1 +6159,4,1.0,0,1.452803134918213,160,1.0,1 +6160,4,1.0,0,1.868797779083252,161,1.0,1 +6161,4,1.0,0,1.6248009204864502,162,1.0,1 +6162,4,1.0,0,1.5018024444580078,163,1.0,1 +6163,4,1.0,0,1.9267970323562622,164,1.0,1 +6164,4,1.0,0,1.3278045654296875,165,1.0,1 +6165,4,1.0,0,1.4288034439086914,166,1.0,1 +6166,4,1.0,0,1.4888026714324951,167,1.0,1 +6167,4,1.0,0,1.353804349899292,168,1.0,1 +6168,4,1.0,0,1.2608044147491455,169,1.0,1 +6169,4,1.0,0,1.5998013019561768,170,1.0,1 +6170,4,1.0,0,1.654800534248352,171,0.0,1 +6171,4,1.0,0,1.629800796508789,172,0.0,1 +6172,4,0.0,0,1.7747989892959595,173,0.0,1 +6173,4,1.0,0,1.6538004875183105,174,1.0,1 +6174,4,1.0,0,1.4138035774230957,175,0.0,1 +6175,4,0.0,0,1.225804328918457,176,0.0,1 +6176,4,0.0,0,2.0177958011627197,177,0.0,1 +6177,4,0.0,0,1.4308034181594849,178,0.0,1 +6178,4,0.0,0,2.0247957706451416,179,0.0,1 +6179,4,1.0,0,1.3738040924072266,180,1.0,1 +6180,4,1.0,0,1.4818027019500732,181,1.0,1 +6181,4,1.0,0,1.4428032636642456,182,1.0,1 +6182,4,1.0,0,1.6208009719848633,183,1.0,1 +6183,4,1.0,0,1.7267996072769165,184,1.0,1 +6184,4,1.0,0,1.4508031606674194,185,1.0,1 +6185,4,0.0,0,1.9857962131500244,186,0.0,1 +6186,4,0.0,0,1.4358032941818237,187,0.0,1 +6187,4,1.0,0,2.4368114471435547,188,1.0,1 +6188,4,1.0,0,1.6258008480072021,189,1.0,1 +6189,4,1.0,0,1.4258034229278564,190,1.0,1 +6190,4,1.0,0,1.986796259880066,191,1.0,1 +6191,4,1.0,0,1.5988012552261353,192,1.0,1 +6192,4,1.0,0,1.585801362991333,193,1.0,1 +6193,4,1.0,0,1.4298033714294434,194,1.0,1 +6194,4,1.0,0,1.332804560661316,195,1.0,1 +6195,4,1.0,0,1.636800765991211,196,1.0,1 +6196,4,1.0,0,1.7337994575500488,197,1.0,1 +6197,4,1.0,0,1.4818027019500732,198,1.0,1 +6198,4,1.0,0,1.4038037061691284,199,1.0,1 +6199,4,1.0,0,1.7477993965148926,200,1.0,1 +6200,4,1.0,0,1.3708041906356812,201,1.0,1 +6201,4,1.0,0,1.474802851676941,202,1.0,1 +6202,4,0.0,0,1.3268046379089355,203,0.0,1 +6203,4,1.0,0,1.6088011264801025,204,1.0,1 +6204,4,1.0,0,1.6448006629943848,205,1.0,1 +6205,4,1.0,0,1.511802315711975,206,1.0,1 +6206,4,1.0,0,1.4188035726547241,207,1.0,1 +6207,4,1.0,0,1.466802954673767,208,1.0,1 +6208,4,1.0,0,1.449803113937378,209,1.0,1 +6209,4,1.0,0,1.2608044147491455,210,1.0,1 +6210,4,1.0,0,1.2388043403625488,211,1.0,1 +6211,4,0.0,0,1.3898038864135742,212,0.0,1 +6212,4,1.0,0,1.4248034954071045,213,1.0,1 +6213,4,1.0,0,1.5178022384643555,214,0.0,1 +6214,4,0.0,0,1.164804220199585,215,0.0,1 +6215,4,0.0,0,1.614801049232483,216,0.0,1 +6216,4,0.0,0,1.2998045682907104,217,0.0,1 +6217,4,0.0,0,2.1877996921539307,218,0.0,1 +6218,4,0.0,0,1.6098010540008545,219,0.0,1 +6219,4,0.0,0,1.2098042964935303,220,1.0,1 +6220,4,0.0,0,1.166804313659668,221,0.0,1 +6221,4,1.0,0,1.7477993965148926,222,1.0,1 +6222,4,1.0,0,1.448803186416626,223,1.0,1 +6223,4,1.0,0,1.2858045101165771,224,1.0,1 +6224,4,1.0,0,1.6538004875183105,225,0.0,1 +6225,4,0.0,0,1.3028044700622559,226,0.0,1 +6226,4,0.0,0,1.3108046054840088,227,0.0,1 +6227,4,1.0,0,1.7927987575531006,228,1.0,1 +6228,4,1.0,0,1.3778040409088135,229,0.0,1 +6229,4,0.0,0,1.3548043966293335,230,1.0,1 +6230,4,0.0,0,1.225804328918457,231,0.0,1 +6231,4,1.0,0,1.2848044633865356,232,1.0,1 +6232,4,0.0,0,1.5218021869659424,233,0.0,1 +6233,4,1.0,0,1.654800534248352,234,1.0,1 +6234,4,1.0,0,1.7057998180389404,235,1.0,1 +6235,4,1.0,0,1.289804458618164,236,0.0,1 +6236,4,1.0,0,1.559801697731018,237,1.0,1 +6237,4,1.0,0,1.40480375289917,238,0.0,1 +6238,4,1.0,0,1.5568017959594727,239,1.0,1 +6239,4,1.0,0,1.291804552078247,240,1.0,1 +6240,4,1.0,0,1.7107998132705688,241,1.0,1 +6241,4,1.0,0,1.4518030881881714,242,1.0,1 +6242,4,1.0,0,1.2738044261932373,243,0.0,1 +6243,4,1.0,0,1.2718044519424438,244,1.0,1 +6244,4,1.0,0,1.3358045816421509,245,0.0,1 +6245,4,1.0,0,2.0327956676483154,246,1.0,1 +6246,4,1.0,0,1.559801697731018,247,1.0,1 +6247,4,1.0,0,1.4648029804229736,248,1.0,1 +6248,4,1.0,0,1.322804570198059,249,1.0,1 +6249,4,1.0,0,1.3638042211532593,250,1.0,1 +6250,4,0.0,0,1.2698044776916504,251,0.0,1 +6251,4,1.0,0,1.2808045148849487,252,1.0,1 +6252,4,1.0,0,1.325804591178894,253,1.0,1 +6253,4,1.0,0,1.2668044567108154,254,1.0,1 +6254,4,1.0,0,1.519802212715149,255,1.0,1 +6255,4,1.0,0,1.3418045043945312,256,1.0,1 +6256,4,1.0,0,1.5208022594451904,257,1.0,1 +6257,4,1.0,0,1.2458044290542603,258,0.0,1 +6258,4,0.0,0,1.2468044757843018,259,1.0,1 +6259,4,0.0,0,1.567801594734192,260,0.0,1 +6260,4,0.0,0,1.3708041906356812,261,0.0,1 +6261,4,1.0,0,2.0657951831817627,262,1.0,1 +6262,4,0.0,0,1.3358045816421509,263,0.0,1 +6263,4,1.0,0,1.4828027486801147,264,1.0,1 +6264,4,1.0,0,1.3048045635223389,265,1.0,1 +6265,4,1.0,0,1.3958038091659546,266,1.0,1 +6266,4,1.0,0,1.8317983150482178,267,1.0,1 +6267,4,1.0,0,1.684800148010254,268,0.0,1 +6268,4,1.0,0,1.35280442237854,269,0.0,1 +6269,4,1.0,0,1.4478031396865845,270,1.0,1 +6270,4,1.0,0,1.629800796508789,271,1.0,1 +6271,4,1.0,0,1.6118011474609375,272,1.0,1 +6272,4,1.0,0,1.3858039379119873,273,1.0,1 +6273,4,1.0,0,1.4658029079437256,274,1.0,1 +6274,4,1.0,0,1.614801049232483,275,1.0,1 +6275,4,1.0,0,1.6728003025054932,276,1.0,1 +6276,4,1.0,0,1.6908000707626343,277,1.0,1 +6277,4,1.0,0,1.4348033666610718,278,1.0,1 +6278,4,1.0,0,1.3268046379089355,279,1.0,1 +6279,4,1.0,0,1.3448045253753662,280,1.0,1 +6280,4,1.0,0,1.2848044633865356,281,1.0,1 +6281,4,1.0,0,1.2838045358657837,282,1.0,1 +6282,4,1.0,0,1.3928039073944092,283,1.0,1 +6283,4,1.0,0,1.658800482749939,284,1.0,1 +6284,4,1.0,0,1.5488018989562988,285,1.0,1 +6285,4,1.0,0,1.540802001953125,286,0.0,1 +6286,4,0.0,0,1.301804542541504,287,0.0,1 +6287,4,0.0,0,1.9407968521118164,288,0.0,1 +6288,4,1.0,0,1.4348033666610718,289,0.0,1 +6289,4,0.0,0,1.265804409980774,290,0.0,1 +6290,4,0.0,0,1.7907987833023071,291,0.0,1 +6291,4,0.0,0,1.6528005599975586,292,0.0,1 +6292,4,0.0,0,1.8267983198165894,293,0.0,1 +6293,4,1.0,0,1.4348033666610718,294,1.0,1 +6294,4,1.0,0,1.5618016719818115,295,1.0,1 +6295,4,1.0,0,1.382804036140442,296,1.0,1 +6296,4,1.0,0,1.6868001222610474,297,1.0,1 +6297,4,1.0,0,1.294804573059082,298,1.0,1 +6298,4,1.0,0,1.4788028001785278,299,1.0,1 +6299,4,1.0,0,1.4368033409118652,300,1.0,1 +6300,4,0.0,0,1.2768044471740723,301,0.0,1 +6301,4,1.0,0,1.6698002815246582,302,1.0,1 +6302,4,1.0,0,1.5008025169372559,303,1.0,1 +6303,4,1.0,0,1.3848040103912354,304,1.0,1 +6304,4,1.0,0,1.234804391860962,305,1.0,1 +6305,4,1.0,0,1.3678041696548462,306,1.0,1 +6306,4,1.0,0,1.2218043804168701,307,1.0,1 +6307,4,1.0,0,1.3908039331436157,308,1.0,1 +6308,4,1.0,0,1.886797547340393,309,1.0,1 +6309,4,1.0,0,1.261804461479187,310,1.0,1 +6310,4,1.0,0,1.581801414489746,311,0.0,1 +6311,4,1.0,0,1.5098023414611816,312,1.0,1 +6312,4,1.0,0,1.2718044519424438,313,1.0,1 +6313,4,1.0,0,1.2708044052124023,314,1.0,1 +6314,4,1.0,0,1.3448045253753662,315,1.0,1 +6315,4,1.0,0,1.2158043384552002,316,1.0,1 +6316,4,1.0,0,1.265804409980774,317,1.0,1 +6317,4,1.0,0,1.2188043594360352,318,1.0,1 +6318,4,1.0,0,1.823798418045044,319,1.0,1 +6319,4,1.0,0,1.5798014402389526,320,1.0,1 +6320,4,1.0,0,1.401803731918335,321,1.0,1 +6321,4,1.0,0,1.349804401397705,322,1.0,1 +6322,4,1.0,0,1.8937973976135254,323,1.0,1 +6323,4,1.0,0,1.4578030109405518,324,0.0,1 +6324,4,0.0,0,1.4878026247024536,325,0.0,1 +6325,4,1.0,0,2.0737950801849365,326,1.0,1 +6326,4,1.0,0,1.2808045148849487,327,1.0,1 +6327,4,1.0,0,1.3808040618896484,328,1.0,1 +6328,4,1.0,0,1.2298043966293335,329,0.0,1 +6329,4,0.0,0,1.9477968215942383,330,0.0,1 +6330,4,1.0,0,1.681800127029419,331,1.0,1 +6331,4,1.0,0,1.6308008432388306,332,1.0,1 +6332,4,1.0,0,1.8927974700927734,333,1.0,1 +6333,4,1.0,0,1.706799864768982,334,1.0,1 +6334,4,1.0,0,1.2498043775558472,335,1.0,1 +6335,4,1.0,0,1.294804573059082,336,1.0,1 +6336,4,1.0,0,1.6428006887435913,337,1.0,1 +6337,4,1.0,0,1.3908039331436157,338,1.0,1 +6338,4,1.0,0,1.6408007144927979,339,1.0,1 +6339,4,1.0,0,1.5108023881912231,340,1.0,1 +6340,4,1.0,0,1.6278009414672852,341,1.0,1 +6341,4,1.0,0,1.3448045253753662,342,0.0,1 +6342,4,0.0,0,1.9257969856262207,343,0.0,1 +6343,4,0.0,0,1.5958013534545898,344,0.0,1 +6344,4,1.0,0,1.813798427581787,345,1.0,1 +6345,4,0.0,0,1.289804458618164,346,1.0,1 +6346,4,0.0,0,1.9327969551086426,347,0.0,1 +6347,4,1.0,0,1.6618003845214844,348,1.0,1 +6348,4,1.0,0,1.3078045845031738,349,1.0,1 +6349,4,1.0,0,1.40480375289917,350,1.0,1 +6350,4,1.0,0,1.9917962551116943,351,1.0,1 +6351,4,1.0,0,1.261804461479187,352,1.0,1 +6352,4,1.0,0,1.325804591178894,353,1.0,1 +6353,4,1.0,0,1.2158043384552002,354,1.0,1 +6354,4,1.0,0,1.2068042755126953,355,1.0,1 +6355,4,1.0,0,1.8677978515625,356,1.0,1 +6356,4,1.0,0,1.51480233669281,357,1.0,1 +6357,4,1.0,0,1.7177996635437012,358,1.0,1 +6358,4,1.0,0,1.4298033714294434,359,1.0,1 +6359,4,1.0,0,1.4398032426834106,360,1.0,1 +6360,4,1.0,0,1.6198010444641113,361,0.0,1 +6361,4,0.0,0,1.3608043193817139,362,0.0,1 +6362,4,1.0,0,1.401803731918335,363,1.0,1 +6363,4,1.0,0,1.466802954673767,364,1.0,1 +6364,4,1.0,0,1.4078036546707153,365,1.0,1 +6365,4,1.0,0,1.544801950454712,366,1.0,1 +6366,4,0.0,0,1.2498043775558472,367,1.0,1 +6367,4,0.0,0,1.5968012809753418,368,0.0,1 +6368,4,1.0,0,1.5728015899658203,369,1.0,1 +6369,4,1.0,0,1.5928013324737549,370,1.0,1 +6370,4,1.0,0,1.9377968311309814,371,0.0,1 +6371,4,1.0,0,1.6498005390167236,372,1.0,1 +6372,4,1.0,0,2.1017956733703613,373,1.0,1 +6373,4,1.0,0,1.3728041648864746,374,1.0,1 +6374,4,1.0,0,1.3638042211532593,375,1.0,1 +6375,4,1.0,0,1.8117985725402832,376,1.0,1 +6376,4,0.0,0,1.3518043756484985,377,0.0,1 +6377,4,0.0,0,1.5998013019561768,378,0.0,1 +6378,4,1.0,0,1.7207996845245361,379,1.0,1 +6379,4,0.0,0,1.3958038091659546,380,1.0,1 +6380,4,0.0,0,2.0407955646514893,381,0.0,1 +6381,4,1.0,0,1.4318033456802368,382,1.0,1 +6382,4,1.0,0,1.4118036031723022,383,1.0,1 +6383,4,1.0,0,1.2468044757843018,384,1.0,1 +6384,4,1.0,0,1.2628045082092285,385,1.0,1 +6385,4,1.0,0,1.6098010540008545,386,1.0,1 +6386,4,1.0,0,1.6858000755310059,387,0.0,1 +6387,4,0.0,0,1.4138035774230957,388,0.0,1 +6388,4,1.0,0,1.8937973976135254,389,1.0,1 +6389,4,1.0,0,1.4188035726547241,390,1.0,1 +6390,4,1.0,0,1.6218008995056152,391,1.0,1 +6391,4,1.0,0,1.4358032941818237,392,1.0,1 +6392,4,1.0,0,1.4168035984039307,393,1.0,1 +6393,4,1.0,0,1.518802285194397,394,1.0,1 +6394,4,1.0,0,1.2508044242858887,395,1.0,1 +6395,4,1.0,0,1.3208045959472656,396,1.0,1 +6396,4,1.0,0,1.3268046379089355,397,1.0,1 +6397,4,1.0,0,1.5868014097213745,398,1.0,1 +6398,4,1.0,0,1.42780339717865,399,1.0,1 +6399,4,1.0,0,1.42780339717865,400,0.0,1 +6400,4,1.0,0,1.3378045558929443,401,1.0,1 +6401,4,1.0,0,1.3908039331436157,402,1.0,1 +6402,4,1.0,0,1.5498018264770508,403,1.0,1 +6403,4,1.0,0,1.5168023109436035,404,1.0,1 +6404,4,1.0,0,1.6248009204864502,405,1.0,1 +6405,4,1.0,0,1.5058023929595947,406,1.0,1 +6406,4,1.0,0,1.4088037014007568,407,1.0,1 +6407,4,1.0,0,1.9547966718673706,408,1.0,1 +6408,4,1.0,0,1.298804521560669,409,1.0,1 +6409,4,1.0,0,1.4808027744293213,410,1.0,1 +6410,4,1.0,0,1.3768041133880615,411,1.0,1 +6411,4,0.0,0,1.3738040924072266,412,1.0,1 +6412,4,1.0,0,1.37580406665802,413,1.0,1 +6413,4,0.0,0,1.7487993240356445,414,1.0,1 +6414,4,0.0,0,1.5288021564483643,415,0.0,1 +6415,4,1.0,0,1.3598042726516724,416,1.0,1 +6416,4,1.0,0,1.3918038606643677,417,1.0,1 +6417,4,1.0,0,1.2638044357299805,418,1.0,1 +6418,4,1.0,0,1.8227983713150024,419,1.0,1 +6419,4,1.0,0,1.228804349899292,420,1.0,1 +6420,4,1.0,0,1.6428006887435913,421,1.0,1 +6421,4,1.0,0,1.6678004264831543,422,1.0,1 +6422,4,1.0,0,1.6908000707626343,423,1.0,1 +6423,4,1.0,0,1.1928043365478516,424,0.0,1 +6424,4,1.0,0,1.8837976455688477,425,1.0,1 +6425,4,1.0,0,1.194804310798645,426,1.0,1 +6426,4,0.0,0,1.3458044528961182,427,0.0,1 +6427,4,1.0,0,1.955796718597412,428,1.0,1 +6428,4,1.0,0,1.6028012037277222,429,1.0,1 +6429,4,1.0,0,1.6228009462356567,430,1.0,1 +6430,4,1.0,0,1.3948038816452026,431,1.0,1 +6431,4,1.0,0,1.4298033714294434,432,0.0,1 +6432,4,0.0,0,1.8117985725402832,433,0.0,1 +6433,4,0.0,0,1.1698042154312134,434,0.0,1 +6434,4,1.0,0,1.6248009204864502,435,1.0,1 +6435,4,1.0,0,1.635800838470459,436,1.0,1 +6436,4,1.0,0,1.3398045301437378,437,1.0,1 +6437,4,1.0,0,1.4218034744262695,438,1.0,1 +6438,4,1.0,0,1.7227996587753296,439,1.0,1 +6439,4,1.0,0,1.291804552078247,440,1.0,1 +6440,4,1.0,0,1.4078036546707153,441,1.0,1 +6441,4,1.0,0,1.4078036546707153,442,1.0,1 +6442,4,1.0,0,1.356804370880127,443,1.0,1 +6443,4,1.0,0,1.2828044891357422,444,1.0,1 +6444,4,1.0,0,1.6488006114959717,445,1.0,1 +6445,4,1.0,0,1.5698015689849854,446,1.0,1 +6446,4,1.0,0,1.5508018732070923,447,1.0,1 +6447,4,1.0,0,1.3308045864105225,448,1.0,1 +6448,4,1.0,0,1.3908039331436157,449,0.0,1 +6449,4,0.0,0,1.37580406665802,450,0.0,1 +6450,4,0.0,0,1.4428032636642456,451,0.0,1 +6451,4,0.0,0,1.6258008480072021,452,0.0,1 +6452,4,1.0,0,1.1758042573928833,453,1.0,1 +6453,4,1.0,0,1.4698028564453125,454,0.0,1 +6454,4,0.0,0,1.4138035774230957,455,1.0,1 +6455,4,0.0,0,1.2238043546676636,456,0.0,1 +6456,4,1.0,0,1.4168035984039307,457,1.0,1 +6457,4,1.0,0,1.3508044481277466,458,0.0,1 +6458,4,0.0,0,1.258804440498352,459,1.0,1 +6459,4,0.0,0,1.1958043575286865,460,1.0,1 +6460,4,0.0,0,1.518802285194397,461,0.0,1 +6461,4,0.0,0,2.2138009071350098,462,0.0,1 +6462,4,0.0,0,2.0927953720092773,463,0.0,1 +6463,4,0.0,0,1.4548031091690063,464,0.0,1 +6464,4,0.0,0,1.8767976760864258,465,1.0,1 +6465,4,0.0,0,1.813798427581787,466,0.0,1 +6466,4,1.0,0,2.3858089447021484,467,1.0,1 +6467,4,0.0,0,1.5068024396896362,468,1.0,1 +6468,4,1.0,0,2.342806816101074,469,1.0,1 +6469,4,0.0,0,1.37580406665802,470,1.0,1 +6470,4,0.0,0,2.043795585632324,471,0.0,1 +6471,4,1.0,0,1.587801456451416,472,1.0,1 +6472,4,1.0,0,1.5688016414642334,473,1.0,1 +6473,4,1.0,0,1.2578043937683105,474,1.0,1 +6474,4,1.0,0,1.7407994270324707,475,1.0,1 +6475,4,1.0,0,1.4508031606674194,476,1.0,1 +6476,4,1.0,0,1.2448043823242188,477,0.0,1 +6477,4,1.0,0,1.5568017959594727,478,0.0,1 +6478,4,1.0,0,1.8447980880737305,479,1.0,1 +6479,4,1.0,0,1.6028012037277222,480,1.0,1 +6480,4,1.0,0,1.8377981185913086,481,1.0,1 +6481,4,1.0,0,1.3998037576675415,482,1.0,1 +6482,4,1.0,0,1.9427968263626099,483,1.0,1 +6483,4,1.0,0,1.4438031911849976,484,1.0,1 +6484,4,1.0,0,1.7197997570037842,485,1.0,1 +6485,4,1.0,0,1.8777976036071777,486,1.0,1 +6486,4,1.0,0,1.7497992515563965,487,1.0,1 +6487,4,1.0,0,1.4158035516738892,488,1.0,1 +6488,4,1.0,0,1.584801435470581,489,0.0,1 +6489,4,0.0,0,2.0277957916259766,490,1.0,1 +6490,4,0.0,0,1.1848043203353882,491,0.0,1 +6491,4,1.0,0,1.3458044528961182,492,0.0,1 +6492,4,1.0,0,2.1157963275909424,493,1.0,1 +6493,4,1.0,0,1.6008012294769287,494,0.0,1 +6494,4,1.0,0,1.222804307937622,495,1.0,1 +6495,4,1.0,0,1.7437994480133057,496,1.0,1 +6496,4,1.0,0,1.3278045654296875,497,1.0,1 +6497,4,1.0,0,1.4768028259277344,498,1.0,1 +6498,4,1.0,0,1.419803500175476,499,1.0,1 +6499,4,1.0,0,1.7077999114990234,500,1.0,1 +6500,4,1.0,1,2.0277957916259766,1,1.0,1 +6501,4,1.0,1,1.511802315711975,2,1.0,1 +6502,4,1.0,1,1.4768028259277344,3,1.0,1 +6503,4,1.0,1,1.3008044958114624,4,0.0,1 +6504,4,1.0,1,1.4508031606674194,5,1.0,1 +6505,4,1.0,1,1.8337981700897217,6,1.0,1 +6506,4,0.0,1,1.158804178237915,7,1.0,1 +6507,4,1.0,1,1.7197997570037842,8,1.0,1 +6508,4,1.0,1,1.938796877861023,9,0.0,1 +6509,4,0.0,1,1.4348033666610718,10,0.0,1 +6510,4,1.0,1,1.6708003282546997,11,1.0,1 +6511,4,1.0,1,1.5558017492294312,12,0.0,1 +6512,4,1.0,1,1.6228009462356567,13,0.0,1 +6513,4,0.0,1,1.8997974395751953,14,1.0,1 +6514,4,0.0,1,1.22780442237854,15,0.0,1 +6515,4,0.0,1,1.562801718711853,16,0.0,1 +6516,4,0.0,1,2.0837950706481934,17,0.0,1 +6517,4,0.0,1,1.3388046026229858,18,0.0,1 +6518,4,0.0,1,2.3358066082000732,19,0.0,1 +6519,4,1.0,1,1.3548043966293335,20,0.0,1 +6520,4,0.0,1,1.4888026714324951,21,0.0,1 +6521,4,0.0,1,1.5098023414611816,22,1.0,1 +6522,4,0.0,1,1.1688042879104614,23,0.0,1 +6523,4,0.0,1,1.9467967748641968,24,1.0,1 +6524,4,0.0,1,1.2878044843673706,25,1.0,1 +6525,4,0.0,1,1.6268008947372437,26,1.0,1 +6526,4,0.0,1,1.4078036546707153,27,1.0,1 +6527,4,0.0,1,1.493802547454834,28,0.0,1 +6528,4,0.0,1,1.7857987880706787,29,0.0,1 +6529,4,0.0,1,1.3938038349151611,30,0.0,1 +6530,4,1.0,1,1.7497992515563965,31,0.0,1 +6531,4,0.0,1,1.8747977018356323,32,0.0,1 +6532,4,0.0,1,1.8257982730865479,33,0.0,1 +6533,4,1.0,1,1.5398019552230835,34,1.0,1 +6534,4,1.0,1,1.8437981605529785,35,0.0,1 +6535,4,0.0,1,1.6998000144958496,36,0.0,1 +6536,4,0.0,1,1.7117998600006104,37,1.0,1 +6537,4,0.0,1,1.3948038816452026,38,0.0,1 +6538,4,1.0,1,1.4038037061691284,39,1.0,1 +6539,4,1.0,1,1.631800889968872,40,1.0,1 +6540,4,1.0,1,1.3698041439056396,41,1.0,1 +6541,4,1.0,1,1.332804560661316,42,1.0,1 +6542,4,1.0,1,1.382804036140442,43,1.0,1 +6543,4,1.0,1,1.255804419517517,44,1.0,1 +6544,4,1.0,1,1.8357982635498047,45,0.0,1 +6545,4,0.0,1,2.1537981033325195,46,1.0,1 +6546,4,0.0,1,1.1628042459487915,47,0.0,1 +6547,4,1.0,1,2.28680419921875,48,1.0,1 +6548,4,1.0,1,1.2468044757843018,49,0.0,1 +6549,4,0.0,1,1.4958025217056274,50,0.0,1 +6550,4,1.0,1,1.5348020792007446,51,1.0,1 +6551,4,1.0,1,1.614801049232483,52,0.0,1 +6552,4,0.0,1,1.4578030109405518,53,0.0,1 +6553,4,1.0,1,2.295804738998413,54,1.0,1 +6554,4,1.0,1,1.5058023929595947,55,0.0,1 +6555,4,0.0,1,1.4548031091690063,56,1.0,1 +6556,4,0.0,1,1.606801152229309,57,0.0,1 +6557,4,0.0,1,1.4078036546707153,58,0.0,1 +6558,4,0.0,1,1.5538017749786377,59,0.0,1 +6559,4,0.0,1,1.4178035259246826,60,1.0,1 +6560,4,0.0,1,1.4308034181594849,61,0.0,1 +6561,4,0.0,1,1.423803448677063,62,1.0,1 +6562,4,0.0,1,1.8667978048324585,63,0.0,1 +6563,4,0.0,1,1.519802212715149,64,0.0,1 +6564,4,0.0,1,1.3658041954040527,65,0.0,1 +6565,4,0.0,1,1.635800838470459,66,0.0,1 +6566,4,0.0,1,1.633800745010376,67,0.0,1 +6567,4,1.0,1,1.769798994064331,68,0.0,1 +6568,4,1.0,1,1.6008012294769287,69,1.0,1 +6569,4,1.0,1,1.489802598953247,70,1.0,1 +6570,4,0.0,1,1.234804391860962,71,0.0,1 +6571,4,1.0,1,1.6668003797531128,72,0.0,1 +6572,4,0.0,1,1.5608017444610596,73,0.0,1 +6573,4,1.0,1,1.771799087524414,74,0.0,1 +6574,4,1.0,1,1.6058011054992676,75,1.0,1 +6575,4,1.0,1,1.419803500175476,76,1.0,1 +6576,4,1.0,1,1.7267996072769165,77,0.0,1 +6577,4,0.0,1,1.8587979078292847,78,1.0,1 +6578,4,0.0,1,1.3708041906356812,79,0.0,1 +6579,4,1.0,1,1.35280442237854,80,1.0,1 +6580,4,0.0,1,1.493802547454834,81,0.0,1 +6581,4,1.0,1,1.4948025941848755,82,1.0,1 +6582,4,1.0,1,1.562801718711853,83,0.0,1 +6583,4,0.0,1,1.585801362991333,84,0.0,1 +6584,4,0.0,1,1.7407994270324707,85,0.0,1 +6585,4,0.0,1,1.6408007144927979,86,0.0,1 +6586,4,0.0,1,1.7347995042800903,87,0.0,1 +6587,4,0.0,1,1.7147997617721558,88,0.0,1 +6588,4,0.0,1,1.2068042755126953,89,0.0,1 +6589,4,0.0,1,1.4148036241531372,90,0.0,1 +6590,4,1.0,1,1.9187971353530884,91,1.0,1 +6591,4,1.0,1,1.2548043727874756,92,1.0,1 +6592,4,1.0,1,1.4388033151626587,93,1.0,1 +6593,4,1.0,1,1.301804542541504,94,0.0,1 +6594,4,0.0,1,1.329804539680481,95,1.0,1 +6595,4,0.0,1,1.7647991180419922,96,1.0,1 +6596,4,0.0,1,1.6668003797531128,97,0.0,1 +6597,4,0.0,1,1.5268021821975708,98,0.0,1 +6598,4,0.0,1,1.5928013324737549,99,0.0,1 +6599,4,0.0,1,1.3138045072555542,100,0.0,1 +6600,4,1.0,1,1.4358032941818237,101,1.0,1 +6601,4,1.0,1,1.723799705505371,102,1.0,1 +6602,4,1.0,1,1.6468006372451782,103,1.0,1 +6603,4,1.0,1,1.7937986850738525,104,1.0,1 +6604,4,1.0,1,2.0167958736419678,105,1.0,1 +6605,4,1.0,1,1.3358045816421509,106,1.0,1 +6606,4,1.0,1,1.497802495956421,107,0.0,1 +6607,4,1.0,1,1.6708003282546997,108,1.0,1 +6608,4,0.0,1,1.301804542541504,109,1.0,1 +6609,4,1.0,1,1.4098036289215088,110,0.0,1 +6610,4,0.0,1,1.1398042440414429,111,0.0,1 +6611,4,0.0,1,1.1828043460845947,112,1.0,1 +6612,4,0.0,1,1.6088011264801025,113,1.0,1 +6613,4,0.0,1,1.19780433177948,114,1.0,1 +6614,4,0.0,1,1.5938012599945068,115,1.0,1 +6615,4,0.0,1,1.2268043756484985,116,0.0,1 +6616,4,0.0,1,2.0997955799102783,117,0.0,1 +6617,4,0.0,1,1.7367994785308838,118,1.0,1 +6618,4,0.0,1,2.1947999000549316,119,0.0,1 +6619,4,0.0,1,1.5008025169372559,120,1.0,1 +6620,4,0.0,1,1.2368043661117554,121,0.0,1 +6621,4,0.0,1,1.2578043937683105,122,1.0,1 +6622,4,0.0,1,1.3728041648864746,123,1.0,1 +6623,4,0.0,1,1.371804118156433,124,0.0,1 +6624,4,0.0,1,1.794798731803894,125,0.0,1 +6625,4,1.0,1,1.4988025426864624,126,1.0,1 +6626,4,1.0,1,1.2668044567108154,127,1.0,1 +6627,4,1.0,1,1.255804419517517,128,0.0,1 +6628,4,1.0,1,1.581801414489746,129,0.0,1 +6629,4,1.0,1,1.40480375289917,130,1.0,1 +6630,4,1.0,1,1.6168010234832764,131,1.0,1 +6631,4,1.0,1,1.4148036241531372,132,1.0,1 +6632,4,1.0,1,1.8597979545593262,133,1.0,1 +6633,4,1.0,1,1.5288021564483643,134,1.0,1 +6634,4,1.0,1,1.683800220489502,135,1.0,1 +6635,4,1.0,1,1.3818039894104004,136,0.0,1 +6636,4,0.0,1,2.1067957878112793,137,0.0,1 +6637,4,0.0,1,1.295804500579834,138,0.0,1 +6638,4,1.0,1,1.6468006372451782,139,1.0,1 +6639,4,1.0,1,1.2508044242858887,140,0.0,1 +6640,4,1.0,1,1.519802212715149,141,1.0,1 +6641,4,1.0,1,1.4838026762008667,142,0.0,1 +6642,4,0.0,1,1.5698015689849854,143,0.0,1 +6643,4,0.0,1,1.3428045511245728,144,1.0,1 +6644,4,0.0,1,1.419803500175476,145,1.0,1 +6645,4,0.0,1,1.2498043775558472,146,0.0,1 +6646,4,0.0,1,1.9897961616516113,147,0.0,1 +6647,4,1.0,1,1.5338020324707031,148,1.0,1 +6648,4,1.0,1,1.2628045082092285,149,1.0,1 +6649,4,1.0,1,1.5828014612197876,150,1.0,1 +6650,4,1.0,1,1.5008025169372559,151,1.0,1 +6651,4,1.0,1,1.5978012084960938,152,1.0,1 +6652,4,1.0,1,1.2528043985366821,153,1.0,1 +6653,4,1.0,1,1.769798994064331,154,1.0,1 +6654,4,1.0,1,1.614801049232483,155,1.0,1 +6655,4,1.0,1,1.6218008995056152,156,1.0,1 +6656,4,0.0,1,1.2778044939041138,157,0.0,1 +6657,4,1.0,1,1.222804307937622,158,0.0,1 +6658,4,1.0,1,1.8967974185943604,159,1.0,1 +6659,4,1.0,1,1.5988012552261353,160,1.0,1 +6660,4,1.0,1,1.3558043241500854,161,1.0,1 +6661,4,1.0,1,1.750799298286438,162,0.0,1 +6662,4,1.0,1,1.3248045444488525,163,0.0,1 +6663,4,0.0,1,1.2148044109344482,164,0.0,1 +6664,4,0.0,1,1.824798345565796,165,0.0,1 +6665,4,0.0,1,1.4258034229278564,166,0.0,1 +6666,4,0.0,1,2.329806327819824,167,1.0,1 +6667,4,0.0,1,1.916797161102295,168,0.0,1 +6668,4,1.0,1,2.1117961406707764,169,0.0,1 +6669,4,1.0,1,2.243802309036255,170,1.0,1 +6670,4,1.0,1,1.2538044452667236,171,0.0,1 +6671,4,1.0,1,1.679800271987915,172,1.0,1 +6672,4,1.0,1,2.1837995052337646,173,1.0,1 +6673,4,1.0,1,1.3078045845031738,174,1.0,1 +6674,4,1.0,1,1.5978012084960938,175,1.0,1 +6675,4,1.0,1,1.3768041133880615,176,0.0,1 +6676,4,0.0,1,1.3148045539855957,177,0.0,1 +6677,4,0.0,1,1.264804482460022,178,1.0,1 +6678,4,0.0,1,1.2438044548034668,179,1.0,1 +6679,4,0.0,1,1.7927987575531006,180,0.0,1 +6680,4,0.0,1,1.8577978610992432,181,0.0,1 +6681,4,1.0,1,1.5308021306991577,182,1.0,1 +6682,4,1.0,1,1.6668003797531128,183,1.0,1 +6683,4,1.0,1,1.3768041133880615,184,1.0,1 +6684,4,1.0,1,1.9357969760894775,185,0.0,1 +6685,4,0.0,1,1.7897987365722656,186,1.0,1 +6686,4,0.0,1,1.4438031911849976,187,0.0,1 +6687,4,0.0,1,1.585801362991333,188,1.0,1 +6688,4,0.0,1,1.397803783416748,189,0.0,1 +6689,4,0.0,1,1.702799916267395,190,1.0,1 +6690,4,0.0,1,1.3928039073944092,191,0.0,1 +6691,4,1.0,1,1.3088045120239258,192,1.0,1 +6692,4,1.0,1,1.5738015174865723,193,0.0,1 +6693,4,0.0,1,1.6168010234832764,194,1.0,1 +6694,4,0.0,1,1.200804352760315,195,0.0,1 +6695,4,0.0,1,1.349804401397705,196,1.0,1 +6696,4,0.0,1,1.471802830696106,197,0.0,1 +6697,4,0.0,1,1.4168035984039307,198,1.0,1 +6698,4,0.0,1,1.6937999725341797,199,0.0,1 +6699,4,0.0,1,1.2388043403625488,200,0.0,1 +6700,4,1.0,1,1.357804298400879,201,0.0,1 +6701,4,1.0,1,1.7967987060546875,202,1.0,1 +6702,4,1.0,1,1.294804573059082,203,1.0,1 +6703,4,1.0,1,1.2778044939041138,204,1.0,1 +6704,4,1.0,1,1.5498018264770508,205,1.0,1 +6705,4,1.0,1,1.3008044958114624,206,0.0,1 +6706,4,1.0,1,1.7397994995117188,207,0.0,1 +6707,4,1.0,1,1.6218008995056152,208,0.0,1 +6708,4,1.0,1,1.2188043594360352,209,0.0,1 +6709,4,0.0,1,1.7147997617721558,210,1.0,1 +6710,4,0.0,1,1.5428019762039185,211,0.0,1 +6711,4,0.0,1,1.3358045816421509,212,0.0,1 +6712,4,0.0,1,1.769798994064331,213,1.0,1 +6713,4,0.0,1,1.3938038349151611,214,0.0,1 +6714,4,0.0,1,1.2838045358657837,215,0.0,1 +6715,4,0.0,1,2.297804832458496,216,0.0,1 +6716,4,1.0,1,2.310805320739746,217,1.0,1 +6717,4,1.0,1,1.2498043775558472,218,0.0,1 +6718,4,1.0,1,1.4608030319213867,219,1.0,1 +6719,4,1.0,1,1.224804401397705,220,0.0,1 +6720,4,0.0,1,1.3998037576675415,221,1.0,1 +6721,4,0.0,1,1.4258034229278564,222,1.0,1 +6722,4,0.0,1,1.2378044128417969,223,1.0,1 +6723,4,0.0,1,1.2858045101165771,224,0.0,1 +6724,4,0.0,1,1.1928043365478516,225,1.0,1 +6725,4,0.0,1,1.2388043403625488,226,0.0,1 +6726,4,0.0,1,2.002796173095703,227,0.0,1 +6727,4,1.0,1,1.9667965173721313,228,1.0,1 +6728,4,0.0,1,1.7527992725372314,229,0.0,1 +6729,4,1.0,1,1.3698041439056396,230,0.0,1 +6730,4,0.0,1,1.7637991905212402,231,0.0,1 +6731,4,1.0,1,1.4698028564453125,232,1.0,1 +6732,4,1.0,1,1.288804531097412,233,0.0,1 +6733,4,0.0,1,1.265804409980774,234,0.0,1 +6734,4,0.0,1,2.4278109073638916,235,1.0,1 +6735,4,0.0,1,1.5618016719818115,236,0.0,1 +6736,4,0.0,1,1.865797758102417,237,0.0,1 +6737,4,0.0,1,1.2428044080734253,238,0.0,1 +6738,4,0.0,1,2.0347957611083984,239,0.0,1 +6739,4,0.0,1,1.3508044481277466,240,1.0,1 +6740,4,0.0,1,1.441803216934204,241,0.0,1 +6741,4,0.0,1,1.2388043403625488,242,1.0,1 +6742,4,0.0,1,1.3678041696548462,243,0.0,1 +6743,4,0.0,1,1.7887988090515137,244,0.0,1 +6744,4,0.0,1,1.8257982730865479,245,0.0,1 +6745,4,1.0,1,2.2018003463745117,246,1.0,1 +6746,4,1.0,1,1.4398032426834106,247,0.0,1 +6747,4,0.0,1,1.5748015642166138,248,0.0,1 +6748,4,0.0,1,2.3988094329833984,249,0.0,1 +6749,4,0.0,1,1.2188043594360352,250,1.0,1 +6750,4,0.0,1,1.222804307937622,251,0.0,1 +6751,4,0.0,1,1.6208009719848633,252,0.0,1 +6752,4,0.0,1,2.237802028656006,253,0.0,1 +6753,4,1.0,1,1.5488018989562988,254,1.0,1 +6754,4,1.0,1,1.3188045024871826,255,0.0,1 +6755,4,0.0,1,1.635800838470459,256,0.0,1 +6756,4,1.0,1,1.6748002767562866,257,1.0,1 +6757,4,1.0,1,1.3588043451309204,258,1.0,1 +6758,4,0.0,1,1.8117985725402832,259,0.0,1 +6759,4,1.0,1,2.3248062133789062,260,0.0,1 +6760,4,0.0,1,1.3308045864105225,261,0.0,1 +6761,4,1.0,1,1.6228009462356567,262,1.0,1 +6762,4,1.0,1,1.4888026714324951,263,1.0,1 +6763,4,1.0,1,1.356804370880127,264,1.0,1 +6764,4,1.0,1,1.4958025217056274,265,1.0,1 +6765,4,1.0,1,1.7107998132705688,266,1.0,1 +6766,4,0.0,1,1.42780339717865,267,0.0,1 +6767,4,1.0,1,1.6038012504577637,268,0.0,1 +6768,4,1.0,1,1.5608017444610596,269,1.0,1 +6769,4,1.0,1,1.4348033666610718,270,1.0,1 +6770,4,1.0,1,1.3728041648864746,271,0.0,1 +6771,4,1.0,1,2.2738037109375,272,1.0,1 +6772,4,1.0,1,1.5238021612167358,273,1.0,1 +6773,4,1.0,1,1.6218008995056152,274,1.0,1 +6774,4,1.0,1,1.4908026456832886,275,0.0,1 +6775,4,1.0,1,1.3308045864105225,276,1.0,1 +6776,4,1.0,1,1.871797800064087,277,0.0,1 +6777,4,1.0,1,1.5718015432357788,278,0.0,1 +6778,4,0.0,1,1.9027973413467407,279,1.0,1 +6779,4,0.0,1,1.4308034181594849,280,1.0,1 +6780,4,0.0,1,1.4608030319213867,281,1.0,1 +6781,4,0.0,1,1.1908042430877686,282,0.0,1 +6782,4,0.0,1,1.2838045358657837,283,0.0,1 +6783,4,1.0,1,1.8227983713150024,284,1.0,1 +6784,4,1.0,1,1.5398019552230835,285,0.0,1 +6785,4,1.0,1,1.6078011989593506,286,1.0,1 +6786,4,1.0,1,1.5728015899658203,287,1.0,1 +6787,4,1.0,1,1.3088045120239258,288,1.0,1 +6788,4,1.0,1,1.2478044033050537,289,0.0,1 +6789,4,1.0,1,1.496802568435669,290,0.0,1 +6790,4,0.0,1,1.6977999210357666,291,0.0,1 +6791,4,1.0,1,1.4288034439086914,292,0.0,1 +6792,4,0.0,1,1.3628042936325073,293,1.0,1 +6793,4,0.0,1,1.1788042783737183,294,0.0,1 +6794,4,1.0,1,1.9287970066070557,295,1.0,1 +6795,4,1.0,1,1.4218034744262695,296,1.0,1 +6796,4,0.0,1,1.3838039636611938,297,0.0,1 +6797,4,1.0,1,1.5708016157150269,298,0.0,1 +6798,4,0.0,1,1.6028012037277222,299,1.0,1 +6799,4,0.0,1,1.3428045511245728,300,0.0,1 +6800,4,1.0,1,1.8107985258102417,301,0.0,1 +6801,4,0.0,1,1.4698028564453125,302,0.0,1 +6802,4,1.0,1,1.6218008995056152,303,1.0,1 +6803,4,1.0,1,1.298804521560669,304,1.0,1 +6804,4,1.0,1,1.5058023929595947,305,1.0,1 +6805,4,1.0,1,1.3738040924072266,306,1.0,1 +6806,4,1.0,1,1.3988038301467896,307,1.0,1 +6807,4,1.0,1,1.7377994060516357,308,0.0,1 +6808,4,0.0,1,1.6268008947372437,309,0.0,1 +6809,4,1.0,1,1.6718003749847412,310,1.0,1 +6810,4,1.0,1,1.5298020839691162,311,1.0,1 +6811,4,1.0,1,1.225804328918457,312,0.0,1 +6812,4,0.0,1,1.5058023929595947,313,0.0,1 +6813,4,1.0,1,1.776798963546753,314,1.0,1 +6814,4,1.0,1,1.8307982683181763,315,0.0,1 +6815,4,1.0,1,1.4518030881881714,316,0.0,1 +6816,4,0.0,1,1.5498018264770508,317,1.0,1 +6817,4,0.0,1,1.5308021306991577,318,0.0,1 +6818,4,0.0,1,1.559801697731018,319,0.0,1 +6819,4,0.0,1,1.7007999420166016,320,0.0,1 +6820,4,1.0,1,1.629800796508789,321,1.0,1 +6821,4,1.0,1,1.292804479598999,322,1.0,1 +6822,4,1.0,1,1.3708041906356812,323,0.0,1 +6823,4,0.0,1,1.4028037786483765,324,1.0,1 +6824,4,0.0,1,1.2088043689727783,325,1.0,1 +6825,4,0.0,1,1.474802851676941,326,0.0,1 +6826,4,0.0,1,1.4038037061691284,327,1.0,1 +6827,4,0.0,1,1.3478044271469116,328,0.0,1 +6828,4,1.0,1,1.559801697731018,329,1.0,1 +6829,4,1.0,1,1.3218045234680176,330,1.0,1 +6830,4,1.0,1,1.4918025732040405,331,1.0,1 +6831,4,1.0,1,1.2748044729232788,332,1.0,1 +6832,4,1.0,1,1.559801697731018,333,0.0,1 +6833,4,0.0,1,1.7747989892959595,334,0.0,1 +6834,4,0.0,1,1.222804307937622,335,1.0,1 +6835,4,0.0,1,1.4408032894134521,336,1.0,1 +6836,4,0.0,1,1.4888026714324951,337,0.0,1 +6837,4,0.0,1,1.7337994575500488,338,1.0,1 +6838,4,0.0,1,1.225804328918457,339,0.0,1 +6839,4,0.0,1,1.723799705505371,340,0.0,1 +6840,4,1.0,1,2.1627984046936035,341,0.0,1 +6841,4,1.0,1,2.1417975425720215,342,0.0,1 +6842,4,0.0,1,1.452803134918213,343,1.0,1 +6843,4,0.0,1,1.2388043403625488,344,0.0,1 +6844,4,0.0,1,1.4818027019500732,345,0.0,1 +6845,4,0.0,1,1.8597979545593262,346,0.0,1 +6846,4,0.0,1,1.3038045167922974,347,0.0,1 +6847,4,0.0,1,1.3618042469024658,348,1.0,1 +6848,4,0.0,1,1.3138045072555542,349,0.0,1 +6849,4,0.0,1,1.9927961826324463,350,0.0,1 +6850,4,1.0,1,1.67680025100708,351,0.0,1 +6851,4,0.0,1,1.3608043193817139,352,0.0,1 +6852,4,0.0,1,1.3238046169281006,353,1.0,1 +6853,4,0.0,1,1.289804458618164,354,0.0,1 +6854,4,0.0,1,1.8457980155944824,355,0.0,1 +6855,4,1.0,1,2.1217966079711914,356,1.0,1 +6856,4,1.0,1,1.7517993450164795,357,1.0,1 +6857,4,1.0,1,2.0967955589294434,358,0.0,1 +6858,4,0.0,1,1.9027973413467407,359,0.0,1 +6859,4,1.0,1,1.4348033666610718,360,1.0,1 +6860,4,1.0,1,1.4548031091690063,361,1.0,1 +6861,4,1.0,1,1.225804328918457,362,1.0,1 +6862,4,1.0,1,1.5258021354675293,363,1.0,1 +6863,4,1.0,1,1.4248034954071045,364,1.0,1 +6864,4,1.0,1,1.2548043727874756,365,1.0,1 +6865,4,1.0,1,1.3778040409088135,366,0.0,1 +6866,4,1.0,1,1.591801404953003,367,1.0,1 +6867,4,1.0,1,1.2638044357299805,368,1.0,1 +6868,4,1.0,1,1.286804437637329,369,1.0,1 +6869,4,1.0,1,1.6568005084991455,370,1.0,1 +6870,4,1.0,1,1.5318020582199097,371,0.0,1 +6871,4,0.0,1,2.0267958641052246,372,0.0,1 +6872,4,0.0,1,1.3418045043945312,373,0.0,1 +6873,4,1.0,1,1.349804401397705,374,0.0,1 +6874,4,0.0,1,1.426803469657898,375,0.0,1 +6875,4,0.0,1,1.2818044424057007,376,0.0,1 +6876,4,0.0,1,1.9197971820831299,377,0.0,1 +6877,4,1.0,1,1.559801697731018,378,1.0,1 +6878,4,1.0,1,1.261804461479187,379,0.0,1 +6879,4,0.0,1,1.5948013067245483,380,1.0,1 +6880,4,0.0,1,1.2028043270111084,381,0.0,1 +6881,4,1.0,1,1.3898038864135742,382,0.0,1 +6882,4,1.0,1,1.5998013019561768,383,1.0,1 +6883,4,0.0,1,1.2788045406341553,384,0.0,1 +6884,4,1.0,1,1.4058036804199219,385,1.0,1 +6885,4,1.0,1,1.4858026504516602,386,1.0,1 +6886,4,1.0,1,1.4128036499023438,387,1.0,1 +6887,4,1.0,1,1.4858026504516602,388,1.0,1 +6888,4,1.0,1,1.4688029289245605,389,1.0,1 +6889,4,1.0,1,1.4598029851913452,390,1.0,1 +6890,4,1.0,1,1.3048045635223389,391,1.0,1 +6891,4,1.0,1,1.4308034181594849,392,0.0,1 +6892,4,1.0,1,1.4778027534484863,393,0.0,1 +6893,4,0.0,1,1.4808027744293213,394,0.0,1 +6894,4,0.0,1,1.8917975425720215,395,0.0,1 +6895,4,1.0,1,1.8117985725402832,396,1.0,1 +6896,4,1.0,1,1.5788015127182007,397,1.0,1 +6897,4,1.0,1,1.4058036804199219,398,0.0,1 +6898,4,0.0,1,1.2728044986724854,399,1.0,1 +6899,4,0.0,1,1.2388043403625488,400,0.0,1 +6900,4,1.0,1,1.5998013019561768,401,1.0,1 +6901,4,1.0,1,1.6198010444641113,402,1.0,1 +6902,4,1.0,1,1.6488006114959717,403,1.0,1 +6903,4,1.0,1,1.396803855895996,404,1.0,1 +6904,4,1.0,1,1.3098045587539673,405,1.0,1 +6905,4,1.0,1,1.587801456451416,406,1.0,1 +6906,4,1.0,1,1.2478044033050537,407,1.0,1 +6907,4,1.0,1,1.4438031911849976,408,1.0,1 +6908,4,1.0,1,1.2908045053482056,409,0.0,1 +6909,4,0.0,1,1.9667965173721313,410,1.0,1 +6910,4,0.0,1,1.3778040409088135,411,1.0,1 +6911,4,0.0,1,1.3438044786453247,412,1.0,1 +6912,4,0.0,1,1.5528018474578857,413,0.0,1 +6913,4,0.0,1,1.9497966766357422,414,1.0,1 +6914,4,0.0,1,1.2338043451309204,415,0.0,1 +6915,4,1.0,1,1.6528005599975586,416,0.0,1 +6916,4,0.0,1,1.3468044996261597,417,0.0,1 +6917,4,1.0,1,1.5588017702102661,418,1.0,1 +6918,4,1.0,1,1.466802954673767,419,1.0,1 +6919,4,1.0,1,1.5688016414642334,420,0.0,1 +6920,4,0.0,1,2.063795328140259,421,0.0,1 +6921,4,1.0,1,1.7107998132705688,422,1.0,1 +6922,4,1.0,1,1.294804573059082,423,1.0,1 +6923,4,1.0,1,1.6908000707626343,424,1.0,1 +6924,4,1.0,1,1.8357982635498047,425,0.0,1 +6925,4,0.0,1,1.8327982425689697,426,0.0,1 +6926,4,1.0,1,1.4408032894134521,427,1.0,1 +6927,4,1.0,1,1.8707977533340454,428,1.0,1 +6928,4,1.0,1,1.4788028001785278,429,0.0,1 +6929,4,0.0,1,1.6528005599975586,430,1.0,1 +6930,4,0.0,1,1.2508044242858887,431,1.0,1 +6931,4,0.0,1,1.864797830581665,432,0.0,1 +6932,4,0.0,1,1.8997974395751953,433,1.0,1 +6933,4,0.0,1,1.4428032636642456,434,0.0,1 +6934,4,0.0,1,1.9797964096069336,435,1.0,1 +6935,4,0.0,1,1.3708041906356812,436,0.0,1 +6936,4,0.0,1,1.886797547340393,437,0.0,1 +6937,4,1.0,1,1.349804401397705,438,1.0,1 +6938,4,1.0,1,1.4858026504516602,439,0.0,1 +6939,4,1.0,1,2.0327956676483154,440,0.0,1 +6940,4,1.0,1,1.5338020324707031,441,0.0,1 +6941,4,0.0,1,1.3628042936325073,442,0.0,1 +6942,4,1.0,1,1.8317983150482178,443,0.0,1 +6943,4,1.0,1,1.423803448677063,444,0.0,1 +6944,4,1.0,1,1.4568030834197998,445,1.0,1 +6945,4,0.0,1,1.5528018474578857,446,0.0,1 +6946,4,1.0,1,1.6558005809783936,447,1.0,1 +6947,4,0.0,1,2.005795955657959,448,1.0,1 +6948,4,1.0,1,1.4338033199310303,449,0.0,1 +6949,4,0.0,1,1.322804570198059,450,1.0,1 +6950,4,0.0,1,1.6088011264801025,451,0.0,1 +6951,4,0.0,1,1.2638044357299805,452,1.0,1 +6952,4,0.0,1,1.4598029851913452,453,0.0,1 +6953,4,1.0,1,1.4558030366897583,454,1.0,1 +6954,4,1.0,1,1.452803134918213,455,0.0,1 +6955,4,1.0,1,1.3278045654296875,456,1.0,1 +6956,4,1.0,1,1.677800178527832,457,1.0,1 +6957,4,1.0,1,1.2798044681549072,458,1.0,1 +6958,4,1.0,1,1.5178022384643555,459,0.0,1 +6959,4,0.0,1,1.1738042831420898,460,0.0,1 +6960,4,1.0,1,1.6678004264831543,461,0.0,1 +6961,4,0.0,1,1.5058023929595947,462,0.0,1 +6962,4,0.0,1,1.8187984228134155,463,0.0,1 +6963,4,1.0,1,1.871797800064087,464,1.0,1 +6964,4,1.0,1,1.3928039073944092,465,1.0,1 +6965,4,1.0,1,1.2138043642044067,466,0.0,1 +6966,4,1.0,1,1.7747989892959595,467,1.0,1 +6967,4,1.0,1,1.563801646232605,468,1.0,1 +6968,4,1.0,1,1.773798942565918,469,0.0,1 +6969,4,1.0,1,1.8457980155944824,470,0.0,1 +6970,4,1.0,1,1.7387994527816772,471,1.0,1 +6971,4,1.0,1,1.3948038816452026,472,1.0,1 +6972,4,1.0,1,1.3378045558929443,473,1.0,1 +6973,4,1.0,1,1.5658016204833984,474,0.0,1 +6974,4,1.0,1,1.8737976551055908,475,1.0,1 +6975,4,1.0,1,1.628800868988037,476,0.0,1 +6976,4,0.0,1,1.6348007917404175,477,0.0,1 +6977,4,1.0,1,1.5908013582229614,478,1.0,1 +6978,4,1.0,1,1.7417993545532227,479,1.0,1 +6979,4,1.0,1,1.6018011569976807,480,1.0,1 +6980,4,1.0,1,1.5428019762039185,481,1.0,1 +6981,4,1.0,1,1.3918038606643677,482,1.0,1 +6982,4,1.0,1,1.2728044986724854,483,1.0,1 +6983,4,1.0,1,1.2488044500350952,484,0.0,1 +6984,4,0.0,1,1.7307995557785034,485,0.0,1 +6985,4,1.0,1,2.1988000869750977,486,0.0,1 +6986,4,1.0,1,1.7337994575500488,487,0.0,1 +6987,4,0.0,1,1.746799349784851,488,1.0,1 +6988,4,0.0,1,1.466802954673767,489,0.0,1 +6989,4,0.0,1,1.331804633140564,490,0.0,1 +6990,4,1.0,1,2.1928000450134277,491,1.0,1 +6991,4,1.0,1,1.635800838470459,492,1.0,1 +6992,4,1.0,1,1.5828014612197876,493,1.0,1 +6993,4,1.0,1,1.6168010234832764,494,1.0,1 +6994,4,1.0,1,1.3098045587539673,495,1.0,1 +6995,4,1.0,1,1.292804479598999,496,0.0,1 +6996,4,1.0,1,2.284804344177246,497,1.0,1 +6997,4,1.0,1,1.6228009462356567,498,0.0,1 +6998,4,0.0,1,1.773798942565918,499,1.0,1 +6999,4,0.0,1,1.2438044548034668,500,1.0,1 +7000,4,1.0,2,1.8597979545593262,1,0.0,1 +7001,4,0.0,2,1.489802598953247,2,1.0,1 +7002,4,0.0,2,1.3148045539855957,3,0.0,1 +7003,4,1.0,2,1.6748002767562866,4,1.0,1 +7004,4,1.0,2,1.4288034439086914,5,1.0,1 +7005,4,1.0,2,1.329804539680481,6,0.0,1 +7006,4,1.0,2,1.470802903175354,7,0.0,1 +7007,4,1.0,2,1.3638042211532593,8,0.0,1 +7008,4,0.0,2,1.3098045587539673,9,0.0,1 +7009,4,1.0,2,1.865797758102417,10,1.0,1 +7010,4,1.0,2,1.3678041696548462,11,1.0,1 +7011,4,1.0,2,1.4608030319213867,12,1.0,1 +7012,4,1.0,2,1.3188045024871826,13,0.0,1 +7013,4,0.0,2,1.3388046026229858,14,1.0,1 +7014,4,0.0,2,1.3908039331436157,15,0.0,1 +7015,4,1.0,2,1.6698002815246582,16,1.0,1 +7016,4,1.0,2,1.2298043966293335,17,0.0,1 +7017,4,0.0,2,1.4578030109405518,18,1.0,1 +7018,4,0.0,2,1.382804036140442,19,0.0,1 +7019,4,1.0,2,1.938796877861023,20,1.0,1 +7020,4,1.0,2,1.3178045749664307,21,1.0,1 +7021,4,1.0,2,1.559801697731018,22,1.0,1 +7022,4,1.0,2,1.679800271987915,23,0.0,1 +7023,4,0.0,2,1.225804328918457,24,1.0,1 +7024,4,0.0,2,1.3208045959472656,25,1.0,1 +7025,4,0.0,2,1.467802882194519,26,0.0,1 +7026,4,1.0,2,1.449803113937378,27,0.0,1 +7027,4,1.0,2,1.7137997150421143,28,0.0,1 +7028,4,0.0,2,1.2878044843673706,29,1.0,1 +7029,4,0.0,2,1.353804349899292,30,0.0,1 +7030,4,0.0,2,1.4878026247024536,31,0.0,1 +7031,4,0.0,2,1.7147997617721558,32,1.0,1 +7032,4,0.0,2,1.3218045234680176,33,1.0,1 +7033,4,0.0,2,1.3148045539855957,34,0.0,1 +7034,4,0.0,2,1.3128045797348022,35,0.0,1 +7035,4,0.0,2,1.2458044290542603,36,0.0,1 +7036,4,0.0,2,1.4588030576705933,37,0.0,1 +7037,4,0.0,2,2.018795967102051,38,0.0,1 +7038,4,0.0,2,1.3958038091659546,39,1.0,1 +7039,4,0.0,2,1.3278045654296875,40,0.0,1 +7040,4,0.0,2,1.6248009204864502,41,0.0,1 +7041,4,0.0,2,1.379804015159607,42,1.0,1 +7042,4,0.0,2,1.291804552078247,43,0.0,1 +7043,4,1.0,2,1.865797758102417,44,1.0,1 +7044,4,1.0,2,2.0727951526641846,45,0.0,1 +7045,4,0.0,2,1.449803113937378,46,0.0,1 +7046,4,0.0,2,2.261803150177002,47,0.0,1 +7047,4,1.0,2,1.5038024187088013,48,0.0,1 +7048,4,0.0,2,1.3148045539855957,49,1.0,1 +7049,4,0.0,2,1.3008044958114624,50,0.0,1 +7050,4,0.0,2,1.5358020067214966,51,0.0,1 +7051,4,1.0,2,1.401803731918335,52,1.0,1 +7052,4,1.0,2,1.3338046073913574,53,0.0,1 +7053,4,1.0,2,1.7437994480133057,54,0.0,1 +7054,4,1.0,2,1.679800271987915,55,0.0,1 +7055,4,0.0,2,1.2238043546676636,56,0.0,1 +7056,4,0.0,2,2.015795946121216,57,0.0,1 +7057,4,0.0,2,1.2708044052124023,58,1.0,1 +7058,4,0.0,2,1.298804521560669,59,1.0,1 +7059,4,0.0,2,1.4308034181594849,60,1.0,1 +7060,4,0.0,2,1.3878039121627808,61,0.0,1 +7061,4,0.0,2,1.2768044471740723,62,0.0,1 +7062,4,0.0,2,1.5938012599945068,63,1.0,1 +7063,4,0.0,2,1.4168035984039307,64,1.0,1 +7064,4,0.0,2,1.4508031606674194,65,0.0,1 +7065,4,0.0,2,1.4638029336929321,66,1.0,1 +7066,4,0.0,2,1.3738040924072266,67,1.0,1 +7067,4,0.0,2,1.332804560661316,68,0.0,1 +7068,4,0.0,2,1.194804310798645,69,1.0,1 +7069,4,0.0,2,1.261804461479187,70,0.0,1 +7070,4,0.0,2,1.9447968006134033,71,1.0,1 +7071,4,0.0,2,1.265804409980774,72,1.0,1 +7072,4,0.0,2,1.5978012084960938,73,0.0,1 +7073,4,0.0,2,1.224804401397705,74,1.0,1 +7074,4,1.0,2,1.3158046007156372,75,0.0,1 +7075,4,0.0,2,1.445803165435791,76,0.0,1 +7076,4,0.0,2,1.288804531097412,77,1.0,1 +7077,4,0.0,2,1.3698041439056396,78,1.0,1 +7078,4,0.0,2,1.2968045473098755,79,0.0,1 +7079,4,0.0,2,1.6418006420135498,80,1.0,1 +7080,4,0.0,2,1.2848044633865356,81,1.0,1 +7081,4,0.0,2,1.40480375289917,82,0.0,1 +7082,4,0.0,2,1.1508042812347412,83,0.0,1 +7083,4,1.0,2,1.8477981090545654,84,0.0,1 +7084,4,0.0,2,1.2798044681549072,85,0.0,1 +7085,4,1.0,2,1.3488044738769531,86,0.0,1 +7086,4,1.0,2,1.5828014612197876,87,0.0,1 +7087,4,1.0,2,1.8587979078292847,88,0.0,1 +7088,4,0.0,2,1.4398032426834106,89,1.0,1 +7089,4,0.0,2,1.2468044757843018,90,1.0,1 +7090,4,0.0,2,1.6408007144927979,91,1.0,1 +7091,4,0.0,2,1.8897974491119385,92,0.0,1 +7092,4,1.0,2,1.3878039121627808,93,1.0,1 +7093,4,1.0,2,1.614801049232483,94,1.0,1 +7094,4,1.0,2,1.2488044500350952,95,0.0,1 +7095,4,0.0,2,1.3218045234680176,96,1.0,1 +7096,4,0.0,2,1.5398019552230835,97,1.0,1 +7097,4,0.0,2,1.2568044662475586,98,0.0,1 +7098,4,0.0,2,1.378804087638855,99,1.0,1 +7099,4,0.0,2,1.559801697731018,100,0.0,1 +7100,4,0.0,2,2.4628124237060547,101,0.0,1 +7101,4,0.0,2,1.37580406665802,102,0.0,1 +7102,4,1.0,2,1.909797191619873,103,0.0,1 +7103,4,0.0,2,1.6308008432388306,104,1.0,1 +7104,4,0.0,2,1.9507967233657837,105,0.0,1 +7105,4,1.0,2,1.8857975006103516,106,1.0,1 +7106,4,1.0,2,1.5558017492294312,107,1.0,1 +7107,4,1.0,2,1.4188035726547241,108,1.0,1 +7108,4,1.0,2,1.3088045120239258,109,1.0,1 +7109,4,1.0,2,1.230804443359375,110,1.0,1 +7110,4,1.0,2,1.3048045635223389,111,1.0,1 +7111,4,1.0,2,1.5278021097183228,112,1.0,1 +7112,4,1.0,2,1.4948025941848755,113,0.0,1 +7113,4,1.0,2,1.679800271987915,114,0.0,1 +7114,4,0.0,2,1.8007986545562744,115,0.0,1 +7115,4,0.0,2,1.6528005599975586,116,1.0,1 +7116,4,0.0,2,1.2828044891357422,117,0.0,1 +7117,4,0.0,2,1.2708044052124023,118,0.0,1 +7118,4,0.0,2,1.2208043336868286,119,1.0,1 +7119,4,1.0,2,1.635800838470459,120,1.0,1 +7120,4,1.0,2,1.8937973976135254,121,1.0,1 +7121,4,0.0,2,1.6937999725341797,122,1.0,1 +7122,4,0.0,2,1.4038037061691284,123,1.0,1 +7123,4,1.0,2,1.4408032894134521,124,1.0,1 +7124,4,1.0,2,1.449803113937378,125,0.0,1 +7125,4,0.0,2,1.4118036031723022,126,0.0,1 +7126,4,0.0,2,1.2478044033050537,127,0.0,1 +7127,4,1.0,2,1.2488044500350952,128,0.0,1 +7128,4,1.0,2,1.4998024702072144,129,1.0,1 +7129,4,0.0,2,1.3778040409088135,130,0.0,1 +7130,4,1.0,2,1.5268021821975708,131,0.0,1 +7131,4,0.0,2,1.2638044357299805,132,1.0,1 +7132,4,0.0,2,1.5318020582199097,133,0.0,1 +7133,4,0.0,2,1.298804521560669,134,0.0,1 +7134,4,1.0,2,1.3208045959472656,135,0.0,1 +7135,4,1.0,2,2.1847996711730957,136,0.0,1 +7136,4,1.0,2,2.1447978019714355,137,1.0,1 +7137,4,1.0,2,1.9197971820831299,138,1.0,1 +7138,4,1.0,2,1.3548043966293335,139,0.0,1 +7139,4,0.0,2,1.2078043222427368,140,0.0,1 +7140,4,0.0,2,1.8937973976135254,141,0.0,1 +7141,4,1.0,2,1.7997987270355225,142,0.0,1 +7142,4,1.0,2,1.83879816532135,143,1.0,1 +7143,4,1.0,2,1.4508031606674194,144,0.0,1 +7144,4,0.0,2,1.6228009462356567,145,1.0,1 +7145,4,0.0,2,1.2938045263290405,146,0.0,1 +7146,4,1.0,2,1.295804500579834,147,1.0,1 +7147,4,1.0,2,1.371804118156433,148,0.0,1 +7148,4,0.0,2,1.3858039379119873,149,0.0,1 +7149,4,0.0,2,1.2518044710159302,150,1.0,1 +7150,4,0.0,2,1.3508044481277466,151,0.0,1 +7151,4,0.0,2,1.4948025941848755,152,0.0,1 +7152,4,0.0,2,1.2378044128417969,153,1.0,1 +7153,4,0.0,2,1.222804307937622,154,0.0,1 +7154,4,1.0,2,1.518802285194397,155,1.0,1 +7155,4,1.0,2,1.5008025169372559,156,1.0,1 +7156,4,1.0,2,1.7857987880706787,157,0.0,1 +7157,4,1.0,2,1.222804307937622,158,0.0,1 +7158,4,0.0,2,1.2528043985366821,159,0.0,1 +7159,4,1.0,2,1.5438019037246704,160,1.0,1 +7160,4,1.0,2,1.5528018474578857,161,0.0,1 +7161,4,0.0,2,2.22080135345459,162,0.0,1 +7162,4,1.0,2,1.4068037271499634,163,0.0,1 +7163,4,1.0,2,1.6678004264831543,164,1.0,1 +7164,4,1.0,2,1.7487993240356445,165,0.0,1 +7165,4,0.0,2,1.3028044700622559,166,0.0,1 +7166,4,1.0,2,1.4128036499023438,167,0.0,1 +7167,4,1.0,2,1.886797547340393,168,1.0,1 +7168,4,1.0,2,1.3378045558929443,169,1.0,1 +7169,4,1.0,2,1.298804521560669,170,1.0,1 +7170,4,1.0,2,1.4788028001785278,171,1.0,1 +7171,4,1.0,2,1.2808045148849487,172,1.0,1 +7172,4,1.0,2,1.2268043756484985,173,1.0,1 +7173,4,1.0,2,1.3738040924072266,174,1.0,1 +7174,4,1.0,2,1.67680025100708,175,0.0,1 +7175,4,0.0,2,1.3138045072555542,176,0.0,1 +7176,4,0.0,2,1.8897974491119385,177,1.0,1 +7177,4,0.0,2,1.2938045263290405,178,0.0,1 +7178,4,1.0,2,1.396803855895996,179,1.0,1 +7179,4,1.0,2,1.654800534248352,180,0.0,1 +7180,4,0.0,2,1.5208022594451904,181,1.0,1 +7181,4,0.0,2,1.298804521560669,182,1.0,1 +7182,4,0.0,2,1.3278045654296875,183,1.0,1 +7183,4,0.0,2,1.585801362991333,184,0.0,1 +7184,4,1.0,2,1.9077973365783691,185,1.0,1 +7185,4,1.0,2,1.3698041439056396,186,1.0,1 +7186,4,1.0,2,1.8337981700897217,187,1.0,1 +7187,4,1.0,2,1.6438007354736328,188,1.0,1 +7188,4,1.0,2,1.5838013887405396,189,0.0,1 +7189,4,0.0,2,1.4438031911849976,190,1.0,1 +7190,4,0.0,2,1.4878026247024536,191,0.0,1 +7191,4,1.0,2,1.6898000240325928,192,1.0,1 +7192,4,1.0,2,1.518802285194397,193,0.0,1 +7193,4,1.0,2,1.9457967281341553,194,1.0,1 +7194,4,1.0,2,1.4858026504516602,195,0.0,1 +7195,4,1.0,2,1.4098036289215088,196,0.0,1 +7196,4,0.0,2,1.8407981395721436,197,1.0,1 +7197,4,0.0,2,1.4658029079437256,198,0.0,1 +7198,4,0.0,2,1.3928039073944092,199,0.0,1 +7199,4,0.0,2,1.698799967765808,200,0.0,1 +7200,4,1.0,2,1.8927974700927734,201,1.0,1 +7201,4,1.0,2,1.821798324584961,202,1.0,1 +7202,4,1.0,2,1.426803469657898,203,1.0,1 +7203,4,1.0,2,1.3908039331436157,204,0.0,1 +7204,4,1.0,2,1.9337968826293945,205,1.0,1 +7205,4,1.0,2,1.3548043966293335,206,1.0,1 +7206,4,1.0,2,1.2938045263290405,207,1.0,1 +7207,4,1.0,2,1.540802001953125,208,1.0,1 +7208,4,1.0,2,1.4368033409118652,209,0.0,1 +7209,4,1.0,2,1.3138045072555542,210,0.0,1 +7210,4,0.0,2,1.9037973880767822,211,0.0,1 +7211,4,0.0,2,2.0657951831817627,212,0.0,1 +7212,4,1.0,2,2.055795431137085,213,1.0,1 +7213,4,1.0,2,1.3038045167922974,214,0.0,1 +7214,4,0.0,2,1.628800868988037,215,1.0,1 +7215,4,0.0,2,1.2608044147491455,216,0.0,1 +7216,4,0.0,2,1.224804401397705,217,1.0,1 +7217,4,0.0,2,1.400803804397583,218,0.0,1 +7218,4,1.0,2,1.5048024654388428,219,1.0,1 +7219,4,1.0,2,1.3958038091659546,220,0.0,1 +7220,4,1.0,2,1.4218034744262695,221,0.0,1 +7221,4,1.0,2,1.379804015159607,222,1.0,1 +7222,4,1.0,2,1.6348007917404175,223,1.0,1 +7223,4,1.0,2,1.4098036289215088,224,1.0,1 +7224,4,1.0,2,1.4538030624389648,225,0.0,1 +7225,4,0.0,2,1.8487980365753174,226,1.0,1 +7226,4,0.0,2,1.4158035516738892,227,0.0,1 +7227,4,1.0,2,2.0847949981689453,228,1.0,1 +7228,4,0.0,2,2.0837950706481934,229,1.0,1 +7229,4,0.0,2,2.0287957191467285,230,0.0,1 +7230,4,1.0,2,1.4038037061691284,231,0.0,1 +7231,4,0.0,2,2.530815601348877,232,1.0,1 +7232,4,0.0,2,1.471802830696106,233,1.0,1 +7233,4,0.0,2,1.1428042650222778,234,1.0,1 +7234,4,0.0,2,1.1558042764663696,235,1.0,1 +7235,4,0.0,2,1.1528042554855347,236,1.0,1 +7236,4,0.0,2,1.3038045167922974,237,0.0,1 +7237,4,0.0,2,1.9707964658737183,238,1.0,1 +7238,4,0.0,2,1.3418045043945312,239,0.0,1 +7239,4,0.0,2,1.445803165435791,240,0.0,1 +7240,4,1.0,2,1.8877975940704346,241,0.0,1 +7241,4,1.0,2,1.7327995300292969,242,0.0,1 +7242,4,0.0,2,1.2608044147491455,243,1.0,1 +7243,4,0.0,2,1.6618003845214844,244,1.0,1 +7244,4,0.0,2,1.4338033199310303,245,0.0,1 +7245,4,0.0,2,2.0377955436706543,246,0.0,1 +7246,4,0.0,2,1.3638042211532593,247,1.0,1 +7247,4,0.0,2,1.2498043775558472,248,1.0,1 +7248,4,0.0,2,1.6028012037277222,249,0.0,1 +7249,4,0.0,2,1.9727964401245117,250,0.0,1 +7250,4,0.0,2,1.7157998085021973,251,0.0,1 +7251,4,0.0,2,1.2638044357299805,252,0.0,1 +7252,4,0.0,2,1.4408032894134521,253,1.0,1 +7253,4,0.0,2,1.286804437637329,254,0.0,1 +7254,4,1.0,2,1.7587991952896118,255,0.0,1 +7255,4,0.0,2,1.2048043012619019,256,0.0,1 +7256,4,0.0,2,1.3738040924072266,257,1.0,1 +7257,4,0.0,2,1.4578030109405518,258,1.0,1 +7258,4,0.0,2,1.298804521560669,259,0.0,1 +7259,4,0.0,2,1.419803500175476,260,1.0,1 +7260,4,0.0,2,1.3458044528961182,261,1.0,1 +7261,4,0.0,2,1.2528043985366821,262,1.0,1 +7262,4,0.0,2,1.401803731918335,263,0.0,1 +7263,4,0.0,2,1.3548043966293335,264,0.0,1 +7264,4,0.0,2,2.3488073348999023,265,1.0,1 +7265,4,0.0,2,1.3048045635223389,266,0.0,1 +7266,4,1.0,2,1.7617990970611572,267,1.0,1 +7267,4,1.0,2,1.1928043365478516,268,1.0,1 +7268,4,1.0,2,1.5298020839691162,269,1.0,1 +7269,4,1.0,2,1.5428019762039185,270,1.0,1 +7270,4,1.0,2,1.908797264099121,271,1.0,1 +7271,4,1.0,2,1.4878026247024536,272,0.0,1 +7272,4,0.0,2,1.5088024139404297,273,0.0,1 +7273,4,1.0,2,1.89079749584198,274,0.0,1 +7274,4,1.0,2,2.006795883178711,275,1.0,1 +7275,4,1.0,2,1.2458044290542603,276,0.0,1 +7276,4,1.0,2,2.0237958431243896,277,1.0,1 +7277,4,1.0,2,1.2628045082092285,278,1.0,1 +7278,4,1.0,2,1.230804443359375,279,1.0,1 +7279,4,1.0,2,1.448803186416626,280,0.0,1 +7280,4,0.0,2,1.9007973670959473,281,0.0,1 +7281,4,1.0,2,1.725799560546875,282,1.0,1 +7282,4,0.0,2,1.4518030881881714,283,0.0,1 +7283,4,1.0,2,1.821798324584961,284,0.0,1 +7284,4,0.0,2,2.464812755584717,285,1.0,1 +7285,4,0.0,2,1.1838042736053467,286,1.0,1 +7286,4,0.0,2,1.3048045635223389,287,1.0,1 +7287,4,0.0,2,1.2478044033050537,288,0.0,1 +7288,4,1.0,2,1.6998000144958496,289,0.0,1 +7289,4,0.0,2,1.264804482460022,290,1.0,1 +7290,4,0.0,2,1.5538017749786377,291,0.0,1 +7291,4,0.0,2,1.3398045301437378,292,0.0,1 +7292,4,0.0,2,1.3808040618896484,293,1.0,1 +7293,4,0.0,2,1.2668044567108154,294,0.0,1 +7294,4,0.0,2,1.7037999629974365,295,1.0,1 +7295,4,0.0,2,1.1998043060302734,296,0.0,1 +7296,4,0.0,2,2.1307969093322754,297,1.0,1 +7297,4,0.0,2,1.3588043451309204,298,1.0,1 +7298,4,0.0,2,1.2808045148849487,299,0.0,1 +7299,4,0.0,2,1.2628045082092285,300,0.0,1 +7300,4,1.0,2,1.4378032684326172,301,1.0,1 +7301,4,1.0,2,1.5268021821975708,302,0.0,1 +7302,4,0.0,2,2.0297956466674805,303,0.0,1 +7303,4,0.0,2,1.6708003282546997,304,0.0,1 +7304,4,0.0,2,1.591801404953003,305,1.0,1 +7305,4,0.0,2,1.3688042163848877,306,0.0,1 +7306,4,1.0,2,1.7187997102737427,307,0.0,1 +7307,4,1.0,2,2.0657951831817627,308,0.0,1 +7308,4,0.0,2,1.1988043785095215,309,0.0,1 +7309,4,0.0,2,1.8667978048324585,310,0.0,1 +7310,4,1.0,2,1.230804443359375,311,1.0,1 +7311,4,1.0,2,1.7777988910675049,312,1.0,1 +7312,4,1.0,2,1.4628030061721802,313,0.0,1 +7313,4,1.0,2,1.4578030109405518,314,0.0,1 +7314,4,0.0,2,1.1848043203353882,315,0.0,1 +7315,4,1.0,2,1.633800745010376,316,1.0,1 +7316,4,1.0,2,2.010796070098877,317,1.0,1 +7317,4,1.0,2,1.5578017234802246,318,0.0,1 +7318,4,0.0,2,1.3418045043945312,319,1.0,1 +7319,4,0.0,2,1.2818044424057007,320,0.0,1 +7320,4,0.0,2,1.8287982940673828,321,0.0,1 +7321,4,1.0,2,1.9367969036102295,322,1.0,1 +7322,4,1.0,2,1.6698002815246582,323,1.0,1 +7323,4,1.0,2,1.3888039588928223,324,1.0,1 +7324,4,1.0,2,1.4628030061721802,325,1.0,1 +7325,4,1.0,2,1.6088011264801025,326,1.0,1 +7326,4,1.0,2,1.5278021097183228,327,1.0,1 +7327,4,1.0,2,1.515802264213562,328,1.0,1 +7328,4,1.0,2,1.471802830696106,329,0.0,1 +7329,4,1.0,2,2.054795265197754,330,0.0,1 +7330,4,1.0,2,1.4128036499023438,331,0.0,1 +7331,4,0.0,2,2.0397956371307373,332,1.0,1 +7332,4,0.0,2,1.5788015127182007,333,1.0,1 +7333,4,0.0,2,1.496802568435669,334,1.0,1 +7334,4,0.0,2,1.2398043870925903,335,0.0,1 +7335,4,1.0,2,1.591801404953003,336,1.0,1 +7336,4,1.0,2,1.2968045473098755,337,1.0,1 +7337,4,1.0,2,1.8107985258102417,338,0.0,1 +7338,4,1.0,2,2.3478071689605713,339,1.0,1 +7339,4,1.0,2,1.2938045263290405,340,0.0,1 +7340,4,1.0,2,1.5688016414642334,341,0.0,1 +7341,4,1.0,2,1.7997987270355225,342,0.0,1 +7342,4,0.0,2,1.3728041648864746,343,0.0,1 +7343,4,0.0,2,1.727799654006958,344,0.0,1 +7344,4,1.0,2,1.2488044500350952,345,1.0,1 +7345,4,1.0,2,1.294804573059082,346,1.0,1 +7346,4,1.0,2,1.3098045587539673,347,0.0,1 +7347,4,0.0,2,1.4738028049468994,348,1.0,1 +7348,4,0.0,2,1.5568017959594727,349,0.0,1 +7349,4,0.0,2,1.255804419517517,350,0.0,1 +7350,4,1.0,2,1.6998000144958496,351,1.0,1 +7351,4,1.0,2,1.585801362991333,352,1.0,1 +7352,4,1.0,2,1.400803804397583,353,1.0,1 +7353,4,1.0,2,1.2058043479919434,354,0.0,1 +7354,4,1.0,2,1.4988025426864624,355,0.0,1 +7355,4,0.0,2,1.3308045864105225,356,1.0,1 +7356,4,0.0,2,1.42780339717865,357,1.0,1 +7357,4,0.0,2,1.3848040103912354,358,0.0,1 +7358,4,1.0,2,1.3238046169281006,359,0.0,1 +7359,4,1.0,2,1.7607991695404053,360,1.0,1 +7360,4,1.0,2,1.725799560546875,361,0.0,1 +7361,4,1.0,2,1.8017985820770264,362,0.0,1 +7362,4,0.0,2,1.8447980880737305,363,1.0,1 +7363,4,0.0,2,1.2298043966293335,364,1.0,1 +7364,4,0.0,2,1.4138035774230957,365,1.0,1 +7365,4,0.0,2,1.295804500579834,366,1.0,1 +7366,4,0.0,2,1.5308021306991577,367,0.0,1 +7367,4,0.0,2,1.794798731803894,368,1.0,1 +7368,4,0.0,2,1.5688016414642334,369,0.0,1 +7369,4,0.0,2,1.2448043823242188,370,0.0,1 +7370,4,0.0,2,1.4818027019500732,371,1.0,1 +7371,4,0.0,2,1.871797800064087,372,0.0,1 +7372,4,1.0,2,1.2528043985366821,373,0.0,1 +7373,4,0.0,2,1.4058036804199219,374,0.0,1 +7374,4,1.0,2,1.3778040409088135,375,1.0,1 +7375,4,1.0,2,1.467802882194519,376,1.0,1 +7376,4,1.0,2,1.4828027486801147,377,1.0,1 +7377,4,1.0,2,1.6388007402420044,378,1.0,1 +7378,4,1.0,2,1.5228022336959839,379,0.0,1 +7379,4,0.0,2,1.8127985000610352,380,1.0,1 +7380,4,0.0,2,1.5298020839691162,381,0.0,1 +7381,4,0.0,2,1.3928039073944092,382,0.0,1 +7382,4,0.0,2,1.9107972383499146,383,0.0,1 +7383,4,0.0,2,1.3438044786453247,384,0.0,1 +7384,4,0.0,2,1.3698041439056396,385,0.0,1 +7385,4,1.0,2,1.4818027019500732,386,0.0,1 +7386,4,1.0,2,1.5298020839691162,387,0.0,1 +7387,4,0.0,2,1.8677978515625,388,1.0,1 +7388,4,0.0,2,1.6228009462356567,389,1.0,1 +7389,4,0.0,2,1.19780433177948,390,0.0,1 +7390,4,0.0,2,1.9847962856292725,391,1.0,1 +7391,4,0.0,2,1.2978044748306274,392,0.0,1 +7392,4,0.0,2,1.2878044843673706,393,0.0,1 +7393,4,1.0,2,1.9257969856262207,394,1.0,1 +7394,4,1.0,2,1.3508044481277466,395,1.0,1 +7395,4,1.0,2,1.7487993240356445,396,0.0,1 +7396,4,0.0,2,1.519802212715149,397,1.0,1 +7397,4,0.0,2,1.331804633140564,398,0.0,1 +7398,4,0.0,2,1.6078011989593506,399,0.0,1 +7399,4,1.0,2,1.8497979640960693,400,1.0,1 +7400,4,1.0,2,1.6578004360198975,401,1.0,1 +7401,4,1.0,2,1.3068045377731323,402,0.0,1 +7402,4,0.0,2,1.2528043985366821,403,0.0,1 +7403,4,1.0,2,1.7147997617721558,404,1.0,1 +7404,4,1.0,2,1.3938038349151611,405,1.0,1 +7405,4,1.0,2,1.1988043785095215,406,1.0,1 +7406,4,1.0,2,1.7127997875213623,407,0.0,1 +7407,4,1.0,2,1.6058011054992676,408,0.0,1 +7408,4,1.0,2,1.6578004360198975,409,1.0,1 +7409,4,1.0,2,1.5298020839691162,410,1.0,1 +7410,4,1.0,2,1.2938045263290405,411,1.0,1 +7411,4,1.0,2,1.6728003025054932,412,1.0,1 +7412,4,1.0,2,1.4628030061721802,413,1.0,1 +7413,4,1.0,2,1.6678004264831543,414,0.0,1 +7414,4,0.0,2,1.3028044700622559,415,0.0,1 +7415,4,0.0,2,1.4878026247024536,416,0.0,1 +7416,4,1.0,2,1.4178035259246826,417,0.0,1 +7417,4,0.0,2,1.5618016719818115,418,0.0,1 +7418,4,0.0,2,1.267804503440857,419,0.0,1 +7419,4,1.0,2,1.635800838470459,420,1.0,1 +7420,4,1.0,2,1.4628030061721802,421,1.0,1 +7421,4,1.0,2,1.448803186416626,422,1.0,1 +7422,4,1.0,2,1.2538044452667236,423,1.0,1 +7423,4,1.0,2,1.3128045797348022,424,0.0,1 +7424,4,1.0,2,1.40480375289917,425,1.0,1 +7425,4,1.0,2,1.6118011474609375,426,0.0,1 +7426,4,1.0,2,1.706799864768982,427,0.0,1 +7427,4,0.0,2,1.8417980670928955,428,0.0,1 +7428,4,0.0,2,1.3268046379089355,429,0.0,1 +7429,4,0.0,2,1.4848027229309082,430,1.0,1 +7430,4,0.0,2,1.2728044986724854,431,1.0,1 +7431,4,0.0,2,1.1688042879104614,432,1.0,1 +7432,4,0.0,2,1.332804560661316,433,0.0,1 +7433,4,0.0,2,1.544801950454712,434,1.0,1 +7434,4,0.0,2,1.2418043613433838,435,1.0,1 +7435,4,0.0,2,1.7357995510101318,436,1.0,1 +7436,4,0.0,2,1.1838042736053467,437,1.0,1 +7437,4,0.0,2,1.200804352760315,438,1.0,1 +7438,4,0.0,2,1.2848044633865356,439,1.0,1 +7439,4,0.0,2,1.3508044481277466,440,0.0,1 +7440,4,1.0,2,1.3638042211532593,441,0.0,1 +7441,4,1.0,2,1.9297969341278076,442,1.0,1 +7442,4,1.0,2,1.258804440498352,443,1.0,1 +7443,4,1.0,2,1.5288021564483643,444,1.0,1 +7444,4,1.0,2,1.331804633140564,445,0.0,1 +7445,4,0.0,2,1.231804370880127,446,1.0,1 +7446,4,0.0,2,1.6028012037277222,447,0.0,1 +7447,4,0.0,2,1.3398045301437378,448,0.0,1 +7448,4,0.0,2,1.4948025941848755,449,0.0,1 +7449,4,1.0,2,1.4768028259277344,450,1.0,1 +7450,4,1.0,2,1.255804419517517,451,1.0,1 +7451,4,1.0,2,1.562801718711853,452,1.0,1 +7452,4,1.0,2,1.7147997617721558,453,0.0,1 +7453,4,0.0,2,1.4308034181594849,454,0.0,1 +7454,4,0.0,2,1.4758027791976929,455,0.0,1 +7455,4,0.0,2,1.35280442237854,456,0.0,1 +7456,4,1.0,2,2.0707950592041016,457,0.0,1 +7457,4,1.0,2,1.871797800064087,458,1.0,1 +7458,4,1.0,2,1.9897961616516113,459,0.0,1 +7459,4,1.0,2,2.1097960472106934,460,1.0,1 +7460,4,0.0,2,1.9697964191436768,461,1.0,1 +7461,4,1.0,2,2.0717952251434326,462,0.0,1 +7462,4,0.0,2,1.6348007917404175,463,1.0,1 +7463,4,0.0,2,1.5218021869659424,464,0.0,1 +7464,4,1.0,2,1.7117998600006104,465,0.0,1 +7465,4,0.0,2,2.0917952060699463,466,0.0,1 +7466,4,0.0,2,1.3668042421340942,467,0.0,1 +7467,4,1.0,2,2.1767992973327637,468,0.0,1 +7468,4,1.0,2,1.4808027744293213,469,0.0,1 +7469,4,0.0,2,2.1857995986938477,470,1.0,1 +7470,4,0.0,2,1.422803521156311,471,0.0,1 +7471,4,0.0,2,1.258804440498352,472,1.0,1 +7472,4,0.0,2,1.265804409980774,473,0.0,1 +7473,4,0.0,2,1.6478006839752197,474,0.0,1 +7474,4,0.0,2,1.3728041648864746,475,1.0,1 +7475,4,0.0,2,1.5238021612167358,476,1.0,1 +7476,4,0.0,2,1.2118043899536133,477,0.0,1 +7477,4,0.0,2,1.6078011989593506,478,0.0,1 +7478,4,1.0,2,1.6718003749847412,479,0.0,1 +7479,4,0.0,2,1.614801049232483,480,0.0,1 +7480,4,0.0,2,2.043795585632324,481,1.0,1 +7481,4,0.0,2,1.2428044080734253,482,1.0,1 +7482,4,0.0,2,1.325804591178894,483,0.0,1 +7483,4,1.0,2,1.9147971868515015,484,0.0,1 +7484,4,1.0,2,1.7267996072769165,485,1.0,1 +7485,4,1.0,2,1.3698041439056396,486,1.0,1 +7486,4,1.0,2,1.4148036241531372,487,0.0,1 +7487,4,1.0,2,1.6738002300262451,488,1.0,1 +7488,4,1.0,2,1.4728028774261475,489,1.0,1 +7489,4,1.0,2,1.8057985305786133,490,0.0,1 +7490,4,1.0,2,2.284804344177246,491,1.0,1 +7491,4,1.0,2,1.2938045263290405,492,0.0,1 +7492,4,0.0,2,1.4518030881881714,493,0.0,1 +7493,4,1.0,2,1.489802598953247,494,0.0,1 +7494,4,0.0,2,2.1978001594543457,495,1.0,1 +7495,4,0.0,2,1.7157998085021973,496,1.0,1 +7496,4,0.0,2,1.1968042850494385,497,1.0,1 +7497,4,0.0,2,1.4058036804199219,498,0.0,1 +7498,4,0.0,2,2.1137962341308594,499,0.0,1 +7499,4,1.0,2,1.5588017702102661,500,0.0,1 +7500,5,1.0,0,1.745760440826416,1,1.0,1 +7501,5,0.0,0,1.745760440826416,2,0.0,1 +7502,5,1.0,0,1.5977623462677002,3,1.0,1 +7503,5,1.0,0,1.3257657289505005,4,0.0,1 +7504,5,1.0,0,1.7257606983184814,5,1.0,1 +7505,5,1.0,0,1.3977649211883545,6,1.0,1 +7506,5,1.0,0,1.7737600803375244,7,1.0,1 +7507,5,1.0,0,1.4127646684646606,8,1.0,1 +7508,5,1.0,0,1.470763921737671,9,1.0,1 +7509,5,1.0,0,1.3687652349472046,10,1.0,1 +7510,5,0.0,0,1.3107656240463257,11,0.0,1 +7511,5,1.0,0,1.2777656316757202,12,1.0,1 +7512,5,1.0,0,1.8627588748931885,13,0.0,1 +7513,5,0.0,0,1.2507655620574951,14,0.0,1 +7514,5,0.0,0,1.7367606163024902,15,0.0,1 +7515,5,1.0,0,1.2997655868530273,16,1.0,1 +7516,5,1.0,0,1.8907585144042969,17,1.0,1 +7517,5,1.0,0,1.3687652349472046,18,1.0,1 +7518,5,0.0,0,1.3867650032043457,19,0.0,1 +7519,5,1.0,0,1.4507641792297363,20,1.0,1 +7520,5,1.0,0,1.4907636642456055,21,0.0,1 +7521,5,0.0,0,1.2667655944824219,22,0.0,1 +7522,5,1.0,0,1.8797587156295776,23,1.0,1 +7523,5,1.0,0,1.2787655591964722,24,0.0,1 +7524,5,1.0,0,2.064756393432617,25,1.0,1 +7525,5,1.0,0,1.3137656450271606,26,1.0,1 +7526,5,1.0,0,1.323765754699707,27,1.0,1 +7527,5,1.0,0,1.373765230178833,28,1.0,1 +7528,5,1.0,0,1.3107656240463257,29,1.0,1 +7529,5,1.0,0,1.9527578353881836,30,1.0,1 +7530,5,1.0,0,1.3627653121948242,31,1.0,1 +7531,5,1.0,0,1.5487629175186157,32,1.0,1 +7532,5,1.0,0,1.3587653636932373,33,1.0,1 +7533,5,1.0,0,1.2417654991149902,34,1.0,1 +7534,5,0.0,0,1.414764642715454,35,0.0,1 +7535,5,1.0,0,1.608762264251709,36,1.0,1 +7536,5,0.0,0,1.4247645139694214,37,0.0,1 +7537,5,1.0,0,1.9127583503723145,38,1.0,1 +7538,5,1.0,0,1.2647656202316284,39,1.0,1 +7539,5,1.0,0,1.627761960029602,40,1.0,1 +7540,5,1.0,0,1.8627588748931885,41,1.0,1 +7541,5,0.0,0,1.5867624282836914,42,0.0,1 +7542,5,1.0,0,1.514763355255127,43,1.0,1 +7543,5,1.0,0,1.422764539718628,44,1.0,1 +7544,5,1.0,0,1.741760492324829,45,0.0,1 +7545,5,1.0,0,1.8147594928741455,46,1.0,1 +7546,5,1.0,0,2.4877748489379883,47,0.0,1 +7547,5,0.0,0,1.3987648487091064,48,0.0,1 +7548,5,0.0,0,1.3597654104232788,49,0.0,1 +7549,5,0.0,0,1.369765281677246,50,0.0,1 +7550,5,0.0,0,1.2837655544281006,51,1.0,1 +7551,5,0.0,0,1.6367619037628174,52,0.0,1 +7552,5,1.0,0,1.536763072013855,53,1.0,1 +7553,5,1.0,0,1.9917572736740112,54,0.0,1 +7554,5,0.0,0,1.4427642822265625,55,0.0,1 +7555,5,1.0,0,2.433772563934326,56,1.0,1 +7556,5,0.0,0,2.094756603240967,57,0.0,1 +7557,5,1.0,0,2.132758378982544,58,1.0,1 +7558,5,1.0,0,1.324765682220459,59,1.0,1 +7559,5,1.0,0,1.257765531539917,60,1.0,1 +7560,5,1.0,0,1.3257657289505005,61,1.0,1 +7561,5,1.0,0,1.4727638959884644,62,0.0,1 +7562,5,1.0,0,1.2527655363082886,63,0.0,1 +7563,5,0.0,0,1.4597641229629517,64,0.0,1 +7564,5,1.0,0,1.9737575054168701,65,1.0,1 +7565,5,1.0,0,1.675761342048645,66,1.0,1 +7566,5,1.0,0,1.9087584018707275,67,1.0,1 +7567,5,1.0,0,1.443764328956604,68,1.0,1 +7568,5,1.0,0,1.324765682220459,69,1.0,1 +7569,5,1.0,0,1.422764539718628,70,0.0,1 +7570,5,0.0,0,1.3457655906677246,71,0.0,1 +7571,5,0.0,0,1.254765510559082,72,1.0,1 +7572,5,0.0,0,1.4107646942138672,73,1.0,1 +7573,5,0.0,0,1.9037584066390991,74,0.0,1 +7574,5,0.0,0,1.5687626600265503,75,0.0,1 +7575,5,0.0,0,1.9157582521438599,76,0.0,1 +7576,5,1.0,0,1.7227606773376465,77,1.0,1 +7577,5,1.0,0,1.3067656755447388,78,0.0,1 +7578,5,1.0,0,1.9097583293914795,79,0.0,1 +7579,5,0.0,0,1.414764642715454,80,0.0,1 +7580,5,0.0,0,1.3637653589248657,81,0.0,1 +7581,5,0.0,0,1.4207645654678345,82,1.0,1 +7582,5,0.0,0,1.723760724067688,83,0.0,1 +7583,5,0.0,0,1.447764277458191,84,0.0,1 +7584,5,1.0,0,1.4427642822265625,85,1.0,1 +7585,5,1.0,0,1.3417656421661377,86,1.0,1 +7586,5,1.0,0,1.4117647409439087,87,1.0,1 +7587,5,0.0,0,1.4047647714614868,88,0.0,1 +7588,5,1.0,0,1.7787599563598633,89,1.0,1 +7589,5,0.0,0,1.4687639474868774,90,0.0,1 +7590,5,1.0,0,1.5487629175186157,91,1.0,1 +7591,5,0.0,0,1.7127609252929688,92,0.0,1 +7592,5,1.0,0,1.5087634325027466,93,1.0,1 +7593,5,1.0,0,1.5727626085281372,94,1.0,1 +7594,5,1.0,0,1.796759843826294,95,1.0,1 +7595,5,1.0,0,1.5927624702453613,96,1.0,1 +7596,5,1.0,0,1.6587615013122559,97,1.0,1 +7597,5,1.0,0,1.884758710861206,98,1.0,1 +7598,5,1.0,0,1.6247620582580566,99,1.0,1 +7599,5,1.0,0,1.5497629642486572,100,1.0,1 +7600,5,1.0,0,2.160759687423706,101,1.0,1 +7601,5,1.0,0,1.8277593851089478,102,0.0,1 +7602,5,0.0,0,1.4307644367218018,103,1.0,1 +7603,5,0.0,0,1.4547641277313232,104,0.0,1 +7604,5,0.0,0,1.2897655963897705,105,1.0,1 +7605,5,0.0,0,1.3407655954360962,106,1.0,1 +7606,5,0.0,0,1.251765489578247,107,1.0,1 +7607,5,0.0,0,1.1817654371261597,108,0.0,1 +7608,5,1.0,0,1.8277593851089478,109,1.0,1 +7609,5,1.0,0,1.4157646894454956,110,0.0,1 +7610,5,0.0,0,1.3047657012939453,111,0.0,1 +7611,5,0.0,0,1.6157621145248413,112,0.0,1 +7612,5,0.0,0,1.2417654991149902,113,0.0,1 +7613,5,1.0,0,2.148759126663208,114,1.0,1 +7614,5,1.0,0,1.6187620162963867,115,1.0,1 +7615,5,1.0,0,1.4127646684646606,116,1.0,1 +7616,5,1.0,0,2.01975679397583,117,1.0,1 +7617,5,1.0,0,2.014756917953491,118,1.0,1 +7618,5,1.0,0,1.2817655801773071,119,1.0,1 +7619,5,1.0,0,1.9027583599090576,120,0.0,1 +7620,5,0.0,0,1.4307644367218018,121,1.0,1 +7621,5,0.0,0,1.443764328956604,122,0.0,1 +7622,5,1.0,0,1.296765685081482,123,1.0,1 +7623,5,1.0,0,1.746760368347168,124,1.0,1 +7624,5,1.0,0,2.182760715484619,125,1.0,1 +7625,5,1.0,0,1.3087656497955322,126,1.0,1 +7626,5,1.0,0,1.5747625827789307,127,1.0,1 +7627,5,0.0,0,1.1757653951644897,128,0.0,1 +7628,5,1.0,0,1.4377644062042236,129,1.0,1 +7629,5,1.0,0,1.7887599468231201,130,1.0,1 +7630,5,0.0,0,1.5377631187438965,131,0.0,1 +7631,5,1.0,0,1.2117655277252197,132,1.0,1 +7632,5,1.0,0,2.0517563819885254,133,1.0,1 +7633,5,1.0,0,1.557762861251831,134,1.0,1 +7634,5,1.0,0,1.6007623672485352,135,1.0,1 +7635,5,0.0,0,1.3137656450271606,136,0.0,1 +7636,5,1.0,0,1.2897655963897705,137,1.0,1 +7637,5,1.0,0,1.2107654809951782,138,0.0,1 +7638,5,1.0,0,1.8917585611343384,139,1.0,1 +7639,5,1.0,0,1.2187654972076416,140,1.0,1 +7640,5,1.0,0,1.4947636127471924,141,0.0,1 +7641,5,1.0,0,1.6807613372802734,142,1.0,1 +7642,5,1.0,0,1.8067595958709717,143,0.0,1 +7643,5,1.0,0,2.115757465362549,144,1.0,1 +7644,5,1.0,0,1.8567590713500977,145,1.0,1 +7645,5,1.0,0,1.3027656078338623,146,1.0,1 +7646,5,1.0,0,2.0387566089630127,147,1.0,1 +7647,5,0.0,0,1.484763741493225,148,0.0,1 +7648,5,1.0,0,1.4867637157440186,149,1.0,1 +7649,5,0.0,0,1.4247645139694214,150,0.0,1 +7650,5,1.0,0,1.8937585353851318,151,1.0,1 +7651,5,1.0,0,1.2807656526565552,152,1.0,1 +7652,5,1.0,0,1.698760986328125,153,1.0,1 +7653,5,1.0,0,1.7377605438232422,154,1.0,1 +7654,5,1.0,0,1.7127609252929688,155,1.0,1 +7655,5,1.0,0,1.3337657451629639,156,1.0,1 +7656,5,1.0,0,1.536763072013855,157,1.0,1 +7657,5,1.0,0,1.2257654666900635,158,1.0,1 +7658,5,1.0,0,1.4317644834518433,159,1.0,1 +7659,5,1.0,0,1.7737600803375244,160,1.0,1 +7660,5,1.0,0,1.3657653331756592,161,1.0,1 +7661,5,0.0,0,1.7697601318359375,162,0.0,1 +7662,5,1.0,0,1.6007623672485352,163,1.0,1 +7663,5,1.0,0,1.5337631702423096,164,1.0,1 +7664,5,1.0,0,1.3867650032043457,165,1.0,1 +7665,5,1.0,0,1.3317656517028809,166,1.0,1 +7666,5,1.0,0,1.2477655410766602,167,0.0,1 +7667,5,0.0,0,1.83475923538208,168,0.0,1 +7668,5,0.0,0,1.8047597408294678,169,0.0,1 +7669,5,1.0,0,1.3357657194137573,170,1.0,1 +7670,5,1.0,0,1.727760672569275,171,1.0,1 +7671,5,1.0,0,1.414764642715454,172,1.0,1 +7672,5,1.0,0,1.3297656774520874,173,0.0,1 +7673,5,1.0,0,1.421764612197876,174,1.0,1 +7674,5,1.0,0,2.034756660461426,175,1.0,1 +7675,5,1.0,0,1.6517616510391235,176,1.0,1 +7676,5,0.0,0,1.2427655458450317,177,1.0,1 +7677,5,0.0,0,1.4007648229599,178,0.0,1 +7678,5,1.0,0,1.554762840270996,179,1.0,1 +7679,5,1.0,0,1.3717652559280396,180,1.0,1 +7680,5,1.0,0,1.466763973236084,181,1.0,1 +7681,5,1.0,0,1.4047647714614868,182,1.0,1 +7682,5,1.0,0,1.4597641229629517,183,1.0,1 +7683,5,1.0,0,2.017756938934326,184,0.0,1 +7684,5,0.0,0,1.8037596940994263,185,1.0,1 +7685,5,0.0,0,1.3907649517059326,186,0.0,1 +7686,5,0.0,0,1.2487655878067017,187,0.0,1 +7687,5,0.0,0,1.2487655878067017,188,0.0,1 +7688,5,0.0,0,1.5667626857757568,189,0.0,1 +7689,5,1.0,0,1.5207632780075073,190,1.0,1 +7690,5,1.0,0,1.5207632780075073,191,1.0,1 +7691,5,1.0,0,1.5497629642486572,192,1.0,1 +7692,5,1.0,0,1.7307605743408203,193,1.0,1 +7693,5,1.0,0,1.8487591743469238,194,1.0,1 +7694,5,1.0,0,1.5767625570297241,195,0.0,1 +7695,5,0.0,0,1.6887612342834473,196,1.0,1 +7696,5,0.0,0,1.9697575569152832,197,1.0,1 +7697,5,0.0,0,1.2527655363082886,198,0.0,1 +7698,5,1.0,0,1.6697614192962646,199,1.0,1 +7699,5,1.0,0,1.2147654294967651,200,1.0,1 +7700,5,1.0,0,1.3947649002075195,201,0.0,1 +7701,5,0.0,0,1.2837655544281006,202,0.0,1 +7702,5,1.0,0,1.5827624797821045,203,1.0,1 +7703,5,1.0,0,1.392764925956726,204,1.0,1 +7704,5,1.0,0,1.9857573509216309,205,1.0,1 +7705,5,1.0,0,1.396764874458313,206,1.0,1 +7706,5,1.0,0,1.4487642049789429,207,1.0,1 +7707,5,1.0,0,1.5817625522613525,208,1.0,1 +7708,5,1.0,0,1.3427655696868896,209,1.0,1 +7709,5,1.0,0,1.2077654600143433,210,1.0,1 +7710,5,1.0,0,1.3097656965255737,211,1.0,1 +7711,5,1.0,0,1.9277580976486206,212,1.0,1 +7712,5,1.0,0,1.2167655229568481,213,1.0,1 +7713,5,1.0,0,1.2747656106948853,214,1.0,1 +7714,5,1.0,0,1.7057609558105469,215,1.0,1 +7715,5,1.0,0,1.5277632474899292,216,1.0,1 +7716,5,1.0,0,1.7987596988677979,217,1.0,1 +7717,5,1.0,0,2.2287628650665283,218,1.0,1 +7718,5,1.0,0,1.6267619132995605,219,0.0,1 +7719,5,0.0,0,1.5317631959915161,220,1.0,1 +7720,5,0.0,0,1.4977636337280273,221,0.0,1 +7721,5,0.0,0,1.51076340675354,222,0.0,1 +7722,5,0.0,0,1.1647653579711914,223,1.0,1 +7723,5,0.0,0,1.5247632265090942,224,0.0,1 +7724,5,1.0,0,1.3937649726867676,225,1.0,1 +7725,5,1.0,0,1.2987656593322754,226,0.0,1 +7726,5,0.0,0,2.0117568969726562,227,0.0,1 +7727,5,0.0,0,1.230765461921692,228,0.0,1 +7728,5,0.0,0,1.7607603073120117,229,0.0,1 +7729,5,1.0,0,1.4567641019821167,230,1.0,1 +7730,5,1.0,0,1.2287654876708984,231,1.0,1 +7731,5,1.0,0,1.704761028289795,232,1.0,1 +7732,5,1.0,0,1.330765724182129,233,1.0,1 +7733,5,1.0,0,2.2527639865875244,234,1.0,1 +7734,5,1.0,0,1.3167656660079956,235,1.0,1 +7735,5,1.0,0,1.4717639684677124,236,1.0,1 +7736,5,1.0,0,1.7297606468200684,237,1.0,1 +7737,5,1.0,0,1.3937649726867676,238,1.0,1 +7738,5,1.0,0,1.6227619647979736,239,1.0,1 +7739,5,1.0,0,1.6517616510391235,240,1.0,1 +7740,5,0.0,0,1.8257594108581543,241,1.0,1 +7741,5,1.0,0,1.9537577629089355,242,1.0,1 +7742,5,0.0,0,1.8217594623565674,243,0.0,1 +7743,5,1.0,0,2.408771276473999,244,1.0,1 +7744,5,1.0,0,1.4097647666931152,245,1.0,1 +7745,5,1.0,0,2.134758472442627,246,1.0,1 +7746,5,1.0,0,1.4097647666931152,247,1.0,1 +7747,5,1.0,0,1.1777653694152832,248,1.0,1 +7748,5,1.0,0,2.167759895324707,249,0.0,1 +7749,5,0.0,0,2.3187670707702637,250,0.0,1 +7750,5,0.0,0,1.7067608833312988,251,0.0,1 +7751,5,0.0,0,1.7857599258422852,252,0.0,1 +7752,5,1.0,0,1.6177620887756348,253,0.0,1 +7753,5,0.0,0,1.3877650499343872,254,0.0,1 +7754,5,0.0,0,1.4507641792297363,255,1.0,1 +7755,5,0.0,0,1.19376540184021,256,1.0,1 +7756,5,0.0,0,1.3947649002075195,257,1.0,1 +7757,5,0.0,0,1.3327656984329224,258,0.0,1 +7758,5,1.0,0,2.134758472442627,259,1.0,1 +7759,5,1.0,0,2.191761016845703,260,1.0,1 +7760,5,1.0,0,1.4687639474868774,261,1.0,1 +7761,5,1.0,0,1.885758638381958,262,1.0,1 +7762,5,1.0,0,1.5737626552581787,263,1.0,1 +7763,5,1.0,0,1.885758638381958,264,1.0,1 +7764,5,1.0,0,1.5217633247375488,265,1.0,1 +7765,5,1.0,0,1.836759328842163,266,1.0,1 +7766,5,1.0,0,1.5697627067565918,267,1.0,1 +7767,5,1.0,0,1.6357618570327759,268,1.0,1 +7768,5,1.0,0,1.3097656965255737,269,1.0,1 +7769,5,1.0,0,1.4537642002105713,270,1.0,1 +7770,5,1.0,0,1.2677655220031738,271,1.0,1 +7771,5,1.0,0,1.4307644367218018,272,1.0,1 +7772,5,1.0,0,1.8017597198486328,273,0.0,1 +7773,5,1.0,0,1.3867650032043457,274,1.0,1 +7774,5,1.0,0,1.3417656421661377,275,1.0,1 +7775,5,1.0,0,1.5607627630233765,276,1.0,1 +7776,5,1.0,0,1.3727651834487915,277,1.0,1 +7777,5,1.0,0,1.9217581748962402,278,1.0,1 +7778,5,1.0,0,1.2257654666900635,279,0.0,1 +7779,5,1.0,0,1.8617589473724365,280,1.0,1 +7780,5,1.0,0,1.5497629642486572,281,1.0,1 +7781,5,1.0,0,1.5307631492614746,282,1.0,1 +7782,5,0.0,0,1.1837654113769531,283,0.0,1 +7783,5,1.0,0,1.3687652349472046,284,1.0,1 +7784,5,1.0,0,1.8517590761184692,285,1.0,1 +7785,5,1.0,0,1.3767651319503784,286,1.0,1 +7786,5,1.0,0,1.4817638397216797,287,1.0,1 +7787,5,1.0,0,1.37776517868042,288,1.0,1 +7788,5,1.0,0,1.4597641229629517,289,1.0,1 +7789,5,1.0,0,1.5507628917694092,290,1.0,1 +7790,5,1.0,0,1.9027583599090576,291,1.0,1 +7791,5,1.0,0,1.4497642517089844,292,1.0,1 +7792,5,1.0,0,1.6647615432739258,293,1.0,1 +7793,5,1.0,0,1.5727626085281372,294,1.0,1 +7794,5,1.0,0,2.081756114959717,295,1.0,1 +7795,5,1.0,0,2.387770175933838,296,1.0,1 +7796,5,1.0,0,1.6377618312835693,297,1.0,1 +7797,5,1.0,0,1.8047597408294678,298,1.0,1 +7798,5,1.0,0,1.3317656517028809,299,1.0,1 +7799,5,1.0,0,1.9147582054138184,300,1.0,1 +7800,5,1.0,0,1.5117634534835815,301,1.0,1 +7801,5,1.0,0,1.4597641229629517,302,1.0,1 +7802,5,1.0,0,1.7297606468200684,303,1.0,1 +7803,5,1.0,0,1.5727626085281372,304,1.0,1 +7804,5,1.0,0,1.6867611408233643,305,1.0,1 +7805,5,1.0,0,1.3627653121948242,306,1.0,1 +7806,5,1.0,0,1.4497642517089844,307,1.0,1 +7807,5,1.0,0,1.6447618007659912,308,1.0,1 +7808,5,0.0,0,1.7087609767913818,309,0.0,1 +7809,5,1.0,0,1.3347656726837158,310,1.0,1 +7810,5,1.0,0,1.392764925956726,311,1.0,1 +7811,5,1.0,0,1.3357657194137573,312,1.0,1 +7812,5,1.0,0,1.8107595443725586,313,1.0,1 +7813,5,1.0,0,1.2987656593322754,314,1.0,1 +7814,5,1.0,0,1.3877650499343872,315,1.0,1 +7815,5,1.0,0,1.2867655754089355,316,1.0,1 +7816,5,1.0,0,1.8107595443725586,317,1.0,1 +7817,5,1.0,0,1.4417643547058105,318,1.0,1 +7818,5,1.0,0,1.8327593803405762,319,1.0,1 +7819,5,0.0,0,1.580762505531311,320,0.0,1 +7820,5,1.0,0,1.5237632989883423,321,1.0,1 +7821,5,1.0,0,1.4897637367248535,322,1.0,1 +7822,5,1.0,0,1.6157621145248413,323,1.0,1 +7823,5,1.0,0,1.347765564918518,324,1.0,1 +7824,5,1.0,0,1.3467655181884766,325,1.0,1 +7825,5,0.0,0,1.698760986328125,326,0.0,1 +7826,5,1.0,0,1.3337657451629639,327,1.0,1 +7827,5,1.0,0,1.5347630977630615,328,0.0,1 +7828,5,0.0,0,1.3547654151916504,329,0.0,1 +7829,5,0.0,0,1.6157621145248413,330,0.0,1 +7830,5,0.0,0,1.955757737159729,331,0.0,1 +7831,5,1.0,0,1.8737587928771973,332,1.0,1 +7832,5,1.0,0,1.8607590198516846,333,1.0,1 +7833,5,1.0,0,1.6557615995407104,334,1.0,1 +7834,5,1.0,0,1.535763144493103,335,1.0,1 +7835,5,1.0,0,1.3257657289505005,336,1.0,1 +7836,5,1.0,0,1.535763144493103,337,1.0,1 +7837,5,1.0,0,1.6857612133026123,338,1.0,1 +7838,5,1.0,0,2.408771276473999,339,0.0,1 +7839,5,1.0,0,1.8957585096359253,340,1.0,1 +7840,5,1.0,0,2.2147622108459473,341,1.0,1 +7841,5,1.0,0,1.719760775566101,342,1.0,1 +7842,5,1.0,0,1.6487617492675781,343,1.0,1 +7843,5,1.0,0,1.7117608785629272,344,1.0,1 +7844,5,1.0,0,1.3017656803131104,345,1.0,1 +7845,5,1.0,0,1.9107582569122314,346,1.0,1 +7846,5,1.0,0,1.5847625732421875,347,1.0,1 +7847,5,1.0,0,1.5207632780075073,348,1.0,1 +7848,5,1.0,0,1.25376558303833,349,1.0,1 +7849,5,1.0,0,1.7827599048614502,350,1.0,1 +7850,5,1.0,0,1.604762315750122,351,0.0,1 +7851,5,0.0,0,1.5217633247375488,352,0.0,1 +7852,5,1.0,0,1.7437604665756226,353,1.0,1 +7853,5,1.0,0,1.3727651834487915,354,1.0,1 +7854,5,0.0,0,1.3987648487091064,355,0.0,1 +7855,5,1.0,0,1.6167621612548828,356,1.0,1 +7856,5,1.0,0,1.4427642822265625,357,1.0,1 +7857,5,1.0,0,1.2647656202316284,358,1.0,1 +7858,5,1.0,0,1.3727651834487915,359,1.0,1 +7859,5,1.0,0,1.513763427734375,360,1.0,1 +7860,5,1.0,0,1.2857656478881836,361,1.0,1 +7861,5,1.0,0,1.3587653636932373,362,1.0,1 +7862,5,1.0,0,1.3077657222747803,363,1.0,1 +7863,5,1.0,0,1.3947649002075195,364,1.0,1 +7864,5,1.0,0,1.3337657451629639,365,1.0,1 +7865,5,1.0,0,1.5707626342773438,366,1.0,1 +7866,5,1.0,0,1.601762294769287,367,1.0,1 +7867,5,0.0,0,1.3077657222747803,368,0.0,1 +7868,5,1.0,0,1.422764539718628,369,1.0,1 +7869,5,1.0,0,1.5667626857757568,370,1.0,1 +7870,5,1.0,0,1.2557655572891235,371,1.0,1 +7871,5,1.0,0,1.3127657175064087,372,0.0,1 +7872,5,0.0,0,1.70176100730896,373,0.0,1 +7873,5,1.0,0,2.2197623252868652,374,1.0,1 +7874,5,1.0,0,1.4077647924423218,375,1.0,1 +7875,5,1.0,0,1.9317580461502075,376,1.0,1 +7876,5,1.0,0,1.6637614965438843,377,1.0,1 +7877,5,1.0,0,1.5197633504867554,378,1.0,1 +7878,5,1.0,0,1.7077609300613403,379,1.0,1 +7879,5,1.0,0,1.324765682220459,380,1.0,1 +7880,5,0.0,0,1.3257657289505005,381,1.0,1 +7881,5,1.0,0,2.189761161804199,382,1.0,1 +7882,5,0.0,0,1.5267632007598877,383,0.0,1 +7883,5,1.0,0,1.4767638444900513,384,0.0,1 +7884,5,0.0,0,1.1667653322219849,385,1.0,1 +7885,5,0.0,0,1.1837654113769531,386,0.0,1 +7886,5,0.0,0,1.930757999420166,387,1.0,1 +7887,5,0.0,0,1.885758638381958,388,0.0,1 +7888,5,0.0,0,2.352768659591675,389,0.0,1 +7889,5,0.0,0,1.1737654209136963,390,0.0,1 +7890,5,1.0,0,2.023756980895996,391,1.0,1 +7891,5,1.0,0,1.4727638959884644,392,1.0,1 +7892,5,1.0,0,1.4067647457122803,393,1.0,1 +7893,5,1.0,0,1.5187633037567139,394,1.0,1 +7894,5,1.0,0,1.5847625732421875,395,0.0,1 +7895,5,0.0,0,1.3117656707763672,396,0.0,1 +7896,5,0.0,0,1.9127583503723145,397,0.0,1 +7897,5,1.0,0,1.395764946937561,398,1.0,1 +7898,5,1.0,0,1.56276273727417,399,0.0,1 +7899,5,0.0,0,2.032756805419922,400,0.0,1 +7900,5,0.0,0,1.606762170791626,401,0.0,1 +7901,5,0.0,0,1.723760724067688,402,0.0,1 +7902,5,0.0,0,1.4357644319534302,403,0.0,1 +7903,5,1.0,0,2.0887563228607178,404,1.0,1 +7904,5,1.0,0,1.999757170677185,405,1.0,1 +7905,5,1.0,0,1.5497629642486572,406,1.0,1 +7906,5,1.0,0,1.532763123512268,407,1.0,1 +7907,5,1.0,0,1.741760492324829,408,0.0,1 +7908,5,1.0,0,1.462764024734497,409,1.0,1 +7909,5,1.0,0,1.7847599983215332,410,1.0,1 +7910,5,1.0,0,1.3947649002075195,411,1.0,1 +7911,5,1.0,0,1.5657627582550049,412,1.0,1 +7912,5,1.0,0,1.4297645092010498,413,1.0,1 +7913,5,1.0,0,1.8187594413757324,414,1.0,1 +7914,5,1.0,0,1.7357605695724487,415,1.0,1 +7915,5,1.0,0,1.9487578868865967,416,1.0,1 +7916,5,0.0,0,1.3507654666900635,417,1.0,1 +7917,5,1.0,0,1.4937636852264404,418,0.0,1 +7918,5,0.0,0,1.186765432357788,419,0.0,1 +7919,5,0.0,0,2.137758731842041,420,0.0,1 +7920,5,1.0,0,1.888758659362793,421,1.0,1 +7921,5,1.0,0,1.3757652044296265,422,1.0,1 +7922,5,1.0,0,1.602762222290039,423,1.0,1 +7923,5,1.0,0,1.7257606983184814,424,1.0,1 +7924,5,1.0,0,1.4617640972137451,425,1.0,1 +7925,5,1.0,0,1.51076340675354,426,1.0,1 +7926,5,1.0,0,1.5607627630233765,427,1.0,1 +7927,5,1.0,0,1.8507590293884277,428,1.0,1 +7928,5,1.0,0,1.4117647409439087,429,1.0,1 +7929,5,1.0,0,1.6637614965438843,430,1.0,1 +7930,5,1.0,0,1.4867637157440186,431,1.0,1 +7931,5,1.0,0,1.3617653846740723,432,1.0,1 +7932,5,1.0,0,1.3047657012939453,433,1.0,1 +7933,5,1.0,0,1.7987596988677979,434,0.0,1 +7934,5,0.0,0,1.5427629947662354,435,0.0,1 +7935,5,1.0,0,1.9197582006454468,436,1.0,1 +7936,5,1.0,0,1.9497578144073486,437,0.0,1 +7937,5,0.0,0,1.3077657222747803,438,0.0,1 +7938,5,1.0,0,1.37776517868042,439,0.0,1 +7939,5,0.0,0,1.5927624702453613,440,1.0,1 +7940,5,0.0,0,1.2757656574249268,441,0.0,1 +7941,5,0.0,0,1.4557641744613647,442,1.0,1 +7942,5,0.0,0,1.293765664100647,443,0.0,1 +7943,5,1.0,0,1.3037656545639038,444,1.0,1 +7944,5,1.0,0,1.797759771347046,445,1.0,1 +7945,5,1.0,0,1.3537654876708984,446,1.0,1 +7946,5,1.0,0,2.135758399963379,447,1.0,1 +7947,5,1.0,0,1.4347643852233887,448,1.0,1 +7948,5,1.0,0,1.4417643547058105,449,1.0,1 +7949,5,1.0,0,1.6217620372772217,450,0.0,1 +7950,5,0.0,0,1.3567653894424438,451,0.0,1 +7951,5,1.0,0,1.5247632265090942,452,1.0,1 +7952,5,1.0,0,1.5267632007598877,453,0.0,1 +7953,5,1.0,0,1.8047597408294678,454,1.0,1 +7954,5,1.0,0,1.3107656240463257,455,1.0,1 +7955,5,1.0,0,1.5507628917694092,456,1.0,1 +7956,5,1.0,0,1.5717626810073853,457,1.0,1 +7957,5,1.0,0,1.4967635869979858,458,1.0,1 +7958,5,1.0,0,1.5087634325027466,459,0.0,1 +7959,5,1.0,0,1.6777613162994385,460,0.0,1 +7960,5,1.0,0,1.4987635612487793,461,1.0,1 +7961,5,1.0,0,1.422764539718628,462,1.0,1 +7962,5,1.0,0,1.5487629175186157,463,1.0,1 +7963,5,1.0,0,1.3937649726867676,464,1.0,1 +7964,5,1.0,0,1.3787651062011719,465,0.0,1 +7965,5,0.0,0,1.4117647409439087,466,0.0,1 +7966,5,1.0,0,1.697761058807373,467,1.0,1 +7967,5,0.0,0,2.2397632598876953,468,0.0,1 +7968,5,1.0,0,1.260765552520752,469,1.0,1 +7969,5,1.0,0,1.422764539718628,470,1.0,1 +7970,5,1.0,0,1.928758144378662,471,1.0,1 +7971,5,1.0,0,1.6187620162963867,472,1.0,1 +7972,5,0.0,0,1.3387656211853027,473,0.0,1 +7973,5,1.0,0,1.8287594318389893,474,1.0,1 +7974,5,1.0,0,2.074756145477295,475,1.0,1 +7975,5,1.0,0,1.5167633295059204,476,1.0,1 +7976,5,1.0,0,1.374765157699585,477,1.0,1 +7977,5,1.0,0,1.4487642049789429,478,1.0,1 +7978,5,1.0,0,1.2727656364440918,479,1.0,1 +7979,5,0.0,0,2.4757742881774902,480,0.0,1 +7980,5,1.0,0,2.064756393432617,481,1.0,1 +7981,5,0.0,0,1.1997654438018799,482,0.0,1 +7982,5,1.0,0,1.5027635097503662,483,1.0,1 +7983,5,1.0,0,1.8477591276168823,484,1.0,1 +7984,5,1.0,0,1.2897655963897705,485,1.0,1 +7985,5,0.0,0,1.37776517868042,486,0.0,1 +7986,5,1.0,0,1.56276273727417,487,1.0,1 +7987,5,1.0,0,1.604762315750122,488,1.0,1 +7988,5,1.0,0,1.4207645654678345,489,0.0,1 +7989,5,1.0,0,1.466763973236084,490,1.0,1 +7990,5,1.0,0,1.323765754699707,491,1.0,1 +7991,5,1.0,0,1.374765157699585,492,1.0,1 +7992,5,0.0,0,1.5637627840042114,493,0.0,1 +7993,5,1.0,0,1.3287657499313354,494,1.0,1 +7994,5,0.0,0,1.4427642822265625,495,0.0,1 +7995,5,1.0,0,1.6437617540359497,496,1.0,1 +7996,5,1.0,0,1.5027635097503662,497,1.0,1 +7997,5,1.0,0,1.5967624187469482,498,1.0,1 +7998,5,1.0,0,1.5747625827789307,499,1.0,1 +7999,5,1.0,0,1.6487617492675781,500,1.0,1 +8000,5,1.0,1,2.110757350921631,1,0.0,1 +8001,5,0.0,1,1.318765640258789,2,0.0,1 +8002,5,0.0,1,1.465764045715332,3,0.0,1 +8003,5,0.0,1,1.4427642822265625,4,0.0,1 +8004,5,0.0,1,2.354768753051758,5,1.0,1 +8005,5,0.0,1,1.6207621097564697,6,0.0,1 +8006,5,1.0,1,1.4417643547058105,7,1.0,1 +8007,5,1.0,1,1.4417643547058105,8,1.0,1 +8008,5,1.0,1,1.3627653121948242,9,1.0,1 +8009,5,1.0,1,1.6427617073059082,10,1.0,1 +8010,5,1.0,1,1.425764560699463,11,0.0,1 +8011,5,0.0,1,2.5807793140411377,12,1.0,1 +8012,5,0.0,1,1.3327656984329224,13,0.0,1 +8013,5,1.0,1,1.5037635564804077,14,0.0,1 +8014,5,1.0,1,1.6677614450454712,15,1.0,1 +8015,5,1.0,1,1.7397605180740356,16,1.0,1 +8016,5,1.0,1,1.9177582263946533,17,0.0,1 +8017,5,1.0,1,1.8127596378326416,18,1.0,1 +8018,5,1.0,1,1.5717626810073853,19,1.0,1 +8019,5,1.0,1,1.6427617073059082,20,1.0,1 +8020,5,1.0,1,1.6927611827850342,21,1.0,1 +8021,5,1.0,1,1.6157621145248413,22,0.0,1 +8022,5,1.0,1,1.792759895324707,23,1.0,1 +8023,5,1.0,1,1.3907649517059326,24,1.0,1 +8024,5,1.0,1,1.6877611875534058,25,0.0,1 +8025,5,0.0,1,1.8747587203979492,26,1.0,1 +8026,5,1.0,1,2.2427635192871094,27,1.0,1 +8027,5,0.0,1,1.2817655801773071,28,0.0,1 +8028,5,1.0,1,1.4127646684646606,29,1.0,1 +8029,5,1.0,1,1.5727626085281372,30,1.0,1 +8030,5,0.0,1,1.3887649774551392,31,0.0,1 +8031,5,1.0,1,1.7777600288391113,32,0.0,1 +8032,5,0.0,1,1.5927624702453613,33,0.0,1 +8033,5,0.0,1,1.6037622690200806,34,1.0,1 +8034,5,0.0,1,1.4097647666931152,35,0.0,1 +8035,5,0.0,1,1.5217633247375488,36,0.0,1 +8036,5,1.0,1,2.4727742671966553,37,0.0,1 +8037,5,0.0,1,1.5447629690170288,38,0.0,1 +8038,5,0.0,1,1.6147620677947998,39,0.0,1 +8039,5,0.0,1,2.2367632389068604,40,1.0,1 +8040,5,0.0,1,1.2677655220031738,41,0.0,1 +8041,5,1.0,1,1.976757526397705,42,0.0,1 +8042,5,0.0,1,1.4287644624710083,43,0.0,1 +8043,5,0.0,1,1.656761646270752,44,0.0,1 +8044,5,1.0,1,1.650761604309082,45,1.0,1 +8045,5,1.0,1,1.7367606163024902,46,1.0,1 +8046,5,1.0,1,1.290765643119812,47,0.0,1 +8047,5,0.0,1,2.0047571659088135,48,0.0,1 +8048,5,0.0,1,1.694761037826538,49,1.0,1 +8049,5,0.0,1,1.25376558303833,50,0.0,1 +8050,5,0.0,1,1.4857637882232666,51,1.0,1 +8051,5,0.0,1,1.6867611408233643,52,1.0,1 +8052,5,0.0,1,1.2767655849456787,53,0.0,1 +8053,5,0.0,1,2.032756805419922,54,0.0,1 +8054,5,1.0,1,1.4687639474868774,55,1.0,1 +8055,5,1.0,1,1.7957597970962524,56,1.0,1 +8056,5,1.0,1,1.3567653894424438,57,1.0,1 +8057,5,1.0,1,1.8147594928741455,58,1.0,1 +8058,5,1.0,1,1.4747638702392578,59,1.0,1 +8059,5,1.0,1,2.374769687652588,60,1.0,1 +8060,5,1.0,1,1.6777613162994385,61,1.0,1 +8061,5,1.0,1,1.4977636337280273,62,1.0,1 +8062,5,1.0,1,1.9697575569152832,63,1.0,1 +8063,5,1.0,1,1.4867637157440186,64,1.0,1 +8064,5,1.0,1,1.2107654809951782,65,1.0,1 +8065,5,1.0,1,1.3347656726837158,66,1.0,1 +8066,5,1.0,1,2.2917656898498535,67,1.0,1 +8067,5,1.0,1,1.425764560699463,68,1.0,1 +8068,5,0.0,1,1.2117655277252197,69,0.0,1 +8069,5,1.0,1,2.142758846282959,70,1.0,1 +8070,5,1.0,1,1.484763741493225,71,1.0,1 +8071,5,1.0,1,1.4497642517089844,72,1.0,1 +8072,5,1.0,1,1.8717588186264038,73,0.0,1 +8073,5,0.0,1,1.6037622690200806,74,0.0,1 +8074,5,0.0,1,1.9007585048675537,75,0.0,1 +8075,5,0.0,1,1.4787638187408447,76,1.0,1 +8076,5,0.0,1,1.2757656574249268,77,1.0,1 +8077,5,0.0,1,1.1687654256820679,78,0.0,1 +8078,5,0.0,1,2.0127570629119873,79,0.0,1 +8079,5,0.0,1,1.5167633295059204,80,1.0,1 +8080,5,1.0,1,1.5247632265090942,81,0.0,1 +8081,5,0.0,1,1.439764380455017,82,1.0,1 +8082,5,0.0,1,1.3577654361724854,83,0.0,1 +8083,5,1.0,1,2.160759687423706,84,1.0,1 +8084,5,1.0,1,1.9857573509216309,85,1.0,1 +8085,5,1.0,1,1.9187581539154053,86,1.0,1 +8086,5,1.0,1,1.294765591621399,87,1.0,1 +8087,5,1.0,1,1.4937636852264404,88,1.0,1 +8088,5,1.0,1,1.2767655849456787,89,1.0,1 +8089,5,1.0,1,1.5187633037567139,90,1.0,1 +8090,5,1.0,1,1.4087647199630737,91,0.0,1 +8091,5,1.0,1,1.8747587203979492,92,1.0,1 +8092,5,1.0,1,1.5317631959915161,93,0.0,1 +8093,5,0.0,1,1.22976553440094,94,0.0,1 +8094,5,1.0,1,1.3797651529312134,95,1.0,1 +8095,5,1.0,1,1.6587615013122559,96,0.0,1 +8096,5,0.0,1,1.4457643032073975,97,1.0,1 +8097,5,0.0,1,1.4057648181915283,98,1.0,1 +8098,5,0.0,1,1.3377656936645508,99,0.0,1 +8099,5,1.0,1,1.6407618522644043,100,1.0,1 +8100,5,1.0,1,1.287765622138977,101,0.0,1 +8101,5,1.0,1,1.744760513305664,102,1.0,1 +8102,5,1.0,1,1.8177595138549805,103,1.0,1 +8103,5,0.0,1,1.284765601158142,104,0.0,1 +8104,5,1.0,1,1.3137656450271606,105,0.0,1 +8105,5,0.0,1,1.3787651062011719,106,0.0,1 +8106,5,0.0,1,1.4457643032073975,107,0.0,1 +8107,5,1.0,1,1.3647652864456177,108,1.0,1 +8108,5,1.0,1,1.5217633247375488,109,0.0,1 +8109,5,0.0,1,1.318765640258789,110,1.0,1 +8110,5,0.0,1,1.8117595911026,111,0.0,1 +8111,5,0.0,1,1.2817655801773071,112,1.0,1 +8112,5,0.0,1,1.2417654991149902,113,0.0,1 +8113,5,0.0,1,1.323765754699707,114,0.0,1 +8114,5,1.0,1,1.4107646942138672,115,1.0,1 +8115,5,1.0,1,1.9457578659057617,116,1.0,1 +8116,5,1.0,1,1.6937611103057861,117,1.0,1 +8117,5,1.0,1,1.5117634534835815,118,1.0,1 +8118,5,1.0,1,1.4017648696899414,119,1.0,1 +8119,5,1.0,1,1.5687626600265503,120,1.0,1 +8120,5,0.0,1,1.5647627115249634,121,1.0,1 +8121,5,1.0,1,2.2227625846862793,122,0.0,1 +8122,5,0.0,1,1.2657655477523804,123,0.0,1 +8123,5,0.0,1,1.5647627115249634,124,0.0,1 +8124,5,1.0,1,1.414764642715454,125,0.0,1 +8125,5,0.0,1,2.2397632598876953,126,0.0,1 +8126,5,1.0,1,2.183760643005371,127,0.0,1 +8127,5,0.0,1,1.3987648487091064,128,0.0,1 +8128,5,1.0,1,1.4757639169692993,129,1.0,1 +8129,5,1.0,1,1.4607640504837036,130,1.0,1 +8130,5,0.0,1,1.462764024734497,131,0.0,1 +8131,5,1.0,1,1.5067634582519531,132,1.0,1 +8132,5,0.0,1,1.4367643594741821,133,0.0,1 +8133,5,1.0,1,2.0027570724487305,134,1.0,1 +8134,5,0.0,1,1.4027647972106934,135,0.0,1 +8135,5,1.0,1,1.929758071899414,136,1.0,1 +8136,5,1.0,1,1.7607603073120117,137,1.0,1 +8137,5,1.0,1,1.4747638702392578,138,0.0,1 +8138,5,0.0,1,1.4767638444900513,139,0.0,1 +8139,5,0.0,1,1.5247632265090942,140,0.0,1 +8140,5,0.0,1,1.4037648439407349,141,0.0,1 +8141,5,0.0,1,1.2697656154632568,142,0.0,1 +8142,5,0.0,1,1.7097609043121338,143,0.0,1 +8143,5,1.0,1,2.7097854614257812,144,1.0,1 +8144,5,1.0,1,1.318765640258789,145,1.0,1 +8145,5,1.0,1,1.347765564918518,146,1.0,1 +8146,5,1.0,1,1.190765380859375,147,1.0,1 +8147,5,1.0,1,1.9917572736740112,148,1.0,1 +8148,5,1.0,1,1.7297606468200684,149,0.0,1 +8149,5,1.0,1,1.5417630672454834,150,1.0,1 +8150,5,1.0,1,1.5067634582519531,151,1.0,1 +8151,5,1.0,1,1.5667626857757568,152,1.0,1 +8152,5,1.0,1,1.2427655458450317,153,0.0,1 +8153,5,1.0,1,1.3637653589248657,154,1.0,1 +8154,5,1.0,1,1.3897650241851807,155,1.0,1 +8155,5,1.0,1,1.3017656803131104,156,0.0,1 +8156,5,0.0,1,1.2277655601501465,157,0.0,1 +8157,5,1.0,1,1.9037584066390991,158,1.0,1 +8158,5,1.0,1,1.8517590761184692,159,0.0,1 +8159,5,1.0,1,1.5317631959915161,160,0.0,1 +8160,5,0.0,1,1.4237645864486694,161,0.0,1 +8161,5,1.0,1,2.0257568359375,162,1.0,1 +8162,5,0.0,1,1.2987656593322754,163,0.0,1 +8163,5,1.0,1,1.6487617492675781,164,1.0,1 +8164,5,1.0,1,1.4377644062042236,165,1.0,1 +8165,5,1.0,1,1.418764591217041,166,1.0,1 +8166,5,1.0,1,1.3117656707763672,167,0.0,1 +8167,5,1.0,1,1.7287607192993164,168,1.0,1 +8168,5,1.0,1,1.260765552520752,169,1.0,1 +8169,5,0.0,1,1.2057654857635498,170,0.0,1 +8170,5,1.0,1,1.6077622175216675,171,0.0,1 +8171,5,1.0,1,1.8627588748931885,172,1.0,1 +8172,5,1.0,1,1.251765489578247,173,1.0,1 +8173,5,1.0,1,1.7367606163024902,174,1.0,1 +8174,5,1.0,1,1.8077596426010132,175,0.0,1 +8175,5,0.0,1,1.5027635097503662,176,0.0,1 +8176,5,0.0,1,1.3357657194137573,177,0.0,1 +8177,5,0.0,1,1.3007656335830688,178,1.0,1 +8178,5,1.0,1,1.6847612857818604,179,1.0,1 +8179,5,0.0,1,1.3227657079696655,180,0.0,1 +8180,5,0.0,1,1.153765320777893,181,1.0,1 +8181,5,0.0,1,1.6327619552612305,182,0.0,1 +8182,5,1.0,1,1.9967572689056396,183,1.0,1 +8183,5,1.0,1,1.421764612197876,184,1.0,1 +8184,5,1.0,1,1.5377631187438965,185,0.0,1 +8185,5,0.0,1,1.8747587203979492,186,1.0,1 +8186,5,0.0,1,1.2887656688690186,187,0.0,1 +8187,5,1.0,1,2.0487565994262695,188,0.0,1 +8188,5,0.0,1,1.885758638381958,189,0.0,1 +8189,5,1.0,1,1.3647652864456177,190,1.0,1 +8190,5,1.0,1,1.517763376235962,191,1.0,1 +8191,5,1.0,1,1.2927656173706055,192,0.0,1 +8192,5,0.0,1,1.7307605743408203,193,0.0,1 +8193,5,1.0,1,1.4107646942138672,194,1.0,1 +8194,5,1.0,1,1.2707655429840088,195,1.0,1 +8195,5,1.0,1,1.4637640714645386,196,1.0,1 +8196,5,1.0,1,1.4087647199630737,197,1.0,1 +8197,5,1.0,1,1.5607627630233765,198,0.0,1 +8198,5,0.0,1,1.1617653369903564,199,1.0,1 +8199,5,0.0,1,1.5767625570297241,200,0.0,1 +8200,5,0.0,1,1.5227632522583008,201,0.0,1 +8201,5,0.0,1,1.2317655086517334,202,0.0,1 +8202,5,1.0,1,1.704761028289795,203,0.0,1 +8203,5,0.0,1,1.6817612648010254,204,0.0,1 +8204,5,1.0,1,1.4457643032073975,205,0.0,1 +8205,5,0.0,1,1.4787638187408447,206,0.0,1 +8206,5,1.0,1,1.6787612438201904,207,0.0,1 +8207,5,0.0,1,1.9927573204040527,208,0.0,1 +8208,5,0.0,1,2.059756278991699,209,0.0,1 +8209,5,0.0,1,1.318765640258789,210,0.0,1 +8210,5,0.0,1,1.3077657222747803,211,0.0,1 +8211,5,1.0,1,1.3897650241851807,212,1.0,1 +8212,5,1.0,1,1.6157621145248413,213,0.0,1 +8213,5,1.0,1,1.3677653074264526,214,0.0,1 +8214,5,0.0,1,1.2707655429840088,215,0.0,1 +8215,5,0.0,1,1.5857625007629395,216,0.0,1 +8216,5,0.0,1,1.9047584533691406,217,1.0,1 +8217,5,0.0,1,1.4277645349502563,218,0.0,1 +8218,5,1.0,1,1.4417643547058105,219,1.0,1 +8219,5,1.0,1,1.4067647457122803,220,0.0,1 +8220,5,0.0,1,1.8527591228485107,221,0.0,1 +8221,5,0.0,1,1.5537629127502441,222,1.0,1 +8222,5,0.0,1,1.4537642002105713,223,1.0,1 +8223,5,0.0,1,1.3507654666900635,224,0.0,1 +8224,5,0.0,1,1.3597654104232788,225,0.0,1 +8225,5,1.0,1,1.8237594366073608,226,1.0,1 +8226,5,1.0,1,2.0007572174072266,227,0.0,1 +8227,5,1.0,1,1.3497655391693115,228,0.0,1 +8228,5,1.0,1,2.593780040740967,229,1.0,1 +8229,5,1.0,1,1.6467616558074951,230,1.0,1 +8230,5,1.0,1,1.697761058807373,231,1.0,1 +8231,5,1.0,1,1.5997623205184937,232,0.0,1 +8232,5,1.0,1,1.9387578964233398,233,1.0,1 +8233,5,1.0,1,1.3537654876708984,234,1.0,1 +8234,5,1.0,1,1.8127596378326416,235,1.0,1 +8235,5,1.0,1,1.4567641019821167,236,1.0,1 +8236,5,0.0,1,1.7557603120803833,237,0.0,1 +8237,5,1.0,1,1.4277645349502563,238,1.0,1 +8238,5,1.0,1,1.8107595443725586,239,1.0,1 +8239,5,1.0,1,1.4957636594772339,240,0.0,1 +8240,5,0.0,1,2.139758586883545,241,0.0,1 +8241,5,1.0,1,1.9907572269439697,242,1.0,1 +8242,5,1.0,1,1.3507654666900635,243,1.0,1 +8243,5,1.0,1,1.606762170791626,244,1.0,1 +8244,5,1.0,1,1.7267606258392334,245,1.0,1 +8245,5,1.0,1,1.8687589168548584,246,1.0,1 +8246,5,1.0,1,1.8227593898773193,247,1.0,1 +8247,5,1.0,1,1.9007585048675537,248,1.0,1 +8248,5,1.0,1,2.3107666969299316,249,1.0,1 +8249,5,1.0,1,1.8217594623565674,250,1.0,1 +8250,5,1.0,1,1.5557628870010376,251,0.0,1 +8251,5,1.0,1,1.5337631702423096,252,1.0,1 +8252,5,1.0,1,1.5537629127502441,253,1.0,1 +8253,5,1.0,1,1.9137582778930664,254,0.0,1 +8254,5,1.0,1,1.6897611618041992,255,0.0,1 +8255,5,1.0,1,1.3797651529312134,256,1.0,1 +8256,5,1.0,1,1.5507628917694092,257,1.0,1 +8257,5,1.0,1,1.7557603120803833,258,1.0,1 +8258,5,1.0,1,1.8437591791152954,259,1.0,1 +8259,5,1.0,1,1.6637614965438843,260,1.0,1 +8260,5,1.0,1,1.4827637672424316,261,0.0,1 +8261,5,0.0,1,1.230765461921692,262,0.0,1 +8262,5,1.0,1,2.102756977081299,263,1.0,1 +8263,5,1.0,1,1.790759801864624,264,0.0,1 +8264,5,0.0,1,1.226765513420105,265,0.0,1 +8265,5,0.0,1,1.3807650804519653,266,0.0,1 +8266,5,1.0,1,2.1937613487243652,267,0.0,1 +8267,5,0.0,1,1.2997655868530273,268,1.0,1 +8268,5,0.0,1,1.6367619037628174,269,0.0,1 +8269,5,1.0,1,2.2177624702453613,270,1.0,1 +8270,5,1.0,1,1.8757587671279907,271,1.0,1 +8271,5,0.0,1,1.4727638959884644,272,0.0,1 +8272,5,1.0,1,1.9257581233978271,273,0.0,1 +8273,5,1.0,1,1.6117621660232544,274,1.0,1 +8274,5,1.0,1,1.8017597198486328,275,1.0,1 +8275,5,1.0,1,1.34876549243927,276,1.0,1 +8276,5,1.0,1,1.3797651529312134,277,0.0,1 +8277,5,1.0,1,1.746760368347168,278,0.0,1 +8278,5,1.0,1,1.7997597455978394,279,0.0,1 +8279,5,1.0,1,1.9227581024169922,280,0.0,1 +8280,5,1.0,1,1.8187594413757324,281,1.0,1 +8281,5,1.0,1,1.5557628870010376,282,1.0,1 +8282,5,1.0,1,1.3017656803131104,283,1.0,1 +8283,5,1.0,1,2.2897658348083496,284,1.0,1 +8284,5,1.0,1,2.0057570934295654,285,1.0,1 +8285,5,1.0,1,1.509763479232788,286,1.0,1 +8286,5,1.0,1,1.3607653379440308,287,1.0,1 +8287,5,1.0,1,1.2777656316757202,288,1.0,1 +8288,5,0.0,1,1.9717575311660767,289,0.0,1 +8289,5,0.0,1,1.37776517868042,290,0.0,1 +8290,5,1.0,1,1.3607653379440308,291,1.0,1 +8291,5,1.0,1,1.4837638139724731,292,1.0,1 +8292,5,1.0,1,1.767760157585144,293,1.0,1 +8293,5,1.0,1,1.3947649002075195,294,0.0,1 +8294,5,0.0,1,1.6217620372772217,295,0.0,1 +8295,5,0.0,1,1.5127633810043335,296,1.0,1 +8296,5,0.0,1,1.2427655458450317,297,0.0,1 +8297,5,1.0,1,1.4517642259597778,298,0.0,1 +8298,5,0.0,1,1.2897655963897705,299,0.0,1 +8299,5,0.0,1,1.4747638702392578,300,0.0,1 +8300,5,0.0,1,1.318765640258789,301,1.0,1 +8301,5,0.0,1,1.7837599515914917,302,1.0,1 +8302,5,0.0,1,1.3667652606964111,303,1.0,1 +8303,5,0.0,1,1.3797651529312134,304,0.0,1 +8304,5,1.0,1,1.5787625312805176,305,1.0,1 +8305,5,1.0,1,1.5347630977630615,306,0.0,1 +8306,5,0.0,1,1.6467616558074951,307,0.0,1 +8307,5,1.0,1,2.3257675170898438,308,0.0,1 +8308,5,1.0,1,2.2897658348083496,309,1.0,1 +8309,5,1.0,1,1.56276273727417,310,1.0,1 +8310,5,1.0,1,1.395764946937561,311,1.0,1 +8311,5,1.0,1,1.1837654113769531,312,1.0,1 +8312,5,1.0,1,1.6917611360549927,313,0.0,1 +8313,5,0.0,1,1.2497655153274536,314,0.0,1 +8314,5,0.0,1,1.4757639169692993,315,0.0,1 +8315,5,1.0,1,1.317765712738037,316,0.0,1 +8316,5,0.0,1,1.5207632780075073,317,0.0,1 +8317,5,0.0,1,1.5537629127502441,318,0.0,1 +8318,5,0.0,1,1.352765440940857,319,0.0,1 +8319,5,0.0,1,1.1767654418945312,320,1.0,1 +8320,5,0.0,1,1.6927611827850342,321,1.0,1 +8321,5,0.0,1,1.2767655849456787,322,0.0,1 +8322,5,0.0,1,1.601762294769287,323,0.0,1 +8323,5,0.0,1,1.7827599048614502,324,1.0,1 +8324,5,0.0,1,1.4387643337249756,325,0.0,1 +8325,5,0.0,1,1.4867637157440186,326,1.0,1 +8326,5,0.0,1,1.6637614965438843,327,0.0,1 +8327,5,1.0,1,1.425764560699463,328,0.0,1 +8328,5,0.0,1,2.5247766971588135,329,0.0,1 +8329,5,1.0,1,1.2657655477523804,330,1.0,1 +8330,5,1.0,1,1.3807650804519653,331,0.0,1 +8331,5,0.0,1,1.4587640762329102,332,0.0,1 +8332,5,0.0,1,1.723760724067688,333,0.0,1 +8333,5,0.0,1,1.7587602138519287,334,0.0,1 +8334,5,0.0,1,1.370765209197998,335,0.0,1 +8335,5,1.0,1,2.2597641944885254,336,1.0,1 +8336,5,1.0,1,1.5707626342773438,337,1.0,1 +8337,5,1.0,1,1.610762119293213,338,1.0,1 +8338,5,1.0,1,1.4747638702392578,339,1.0,1 +8339,5,0.0,1,1.3787651062011719,340,0.0,1 +8340,5,1.0,1,1.8247594833374023,341,1.0,1 +8341,5,1.0,1,1.6817612648010254,342,1.0,1 +8342,5,1.0,1,1.6137621402740479,343,0.0,1 +8343,5,0.0,1,2.032756805419922,344,0.0,1 +8344,5,0.0,1,1.6077622175216675,345,0.0,1 +8345,5,1.0,1,1.4717639684677124,346,1.0,1 +8346,5,1.0,1,1.532763123512268,347,1.0,1 +8347,5,1.0,1,1.3067656755447388,348,1.0,1 +8348,5,0.0,1,1.5667626857757568,349,1.0,1 +8349,5,0.0,1,1.443764328956604,350,0.0,1 +8350,5,1.0,1,1.885758638381958,351,1.0,1 +8351,5,1.0,1,1.2647656202316284,352,0.0,1 +8352,5,1.0,1,2.108757257461548,353,1.0,1 +8353,5,1.0,1,1.2867655754089355,354,0.0,1 +8354,5,0.0,1,2.215762138366699,355,0.0,1 +8355,5,0.0,1,2.064756393432617,356,0.0,1 +8356,5,1.0,1,1.4307644367218018,357,1.0,1 +8357,5,1.0,1,1.443764328956604,358,1.0,1 +8358,5,1.0,1,1.7157608270645142,359,0.0,1 +8359,5,0.0,1,1.8507590293884277,360,1.0,1 +8360,5,0.0,1,1.540763020515442,361,0.0,1 +8361,5,0.0,1,1.323765754699707,362,0.0,1 +8362,5,0.0,1,1.907758355140686,363,0.0,1 +8363,5,0.0,1,2.341768264770508,364,0.0,1 +8364,5,0.0,1,1.540763020515442,365,0.0,1 +8365,5,0.0,1,1.2057654857635498,366,0.0,1 +8366,5,1.0,1,1.5907623767852783,367,1.0,1 +8367,5,1.0,1,1.287765622138977,368,1.0,1 +8368,5,1.0,1,1.4287644624710083,369,1.0,1 +8369,5,1.0,1,1.741760492324829,370,1.0,1 +8370,5,1.0,1,1.492763638496399,371,1.0,1 +8371,5,1.0,1,1.2887656688690186,372,1.0,1 +8372,5,1.0,1,1.3607653379440308,373,1.0,1 +8373,5,1.0,1,1.4997636079788208,374,0.0,1 +8374,5,0.0,1,1.700761079788208,375,0.0,1 +8375,5,1.0,1,1.3817651271820068,376,0.0,1 +8376,5,1.0,1,2.126758098602295,377,0.0,1 +8377,5,0.0,1,1.5937623977661133,378,0.0,1 +8378,5,1.0,1,1.7407605648040771,379,1.0,1 +8379,5,0.0,1,1.4027647972106934,380,0.0,1 +8380,5,1.0,1,1.2627655267715454,381,1.0,1 +8381,5,1.0,1,1.5007635354995728,382,1.0,1 +8382,5,1.0,1,1.9067583084106445,383,1.0,1 +8383,5,1.0,1,1.9467577934265137,384,1.0,1 +8384,5,1.0,1,1.6337618827819824,385,1.0,1 +8385,5,1.0,1,1.1997654438018799,386,0.0,1 +8386,5,0.0,1,1.767760157585144,387,0.0,1 +8387,5,0.0,1,2.333767890930176,388,0.0,1 +8388,5,0.0,1,1.7777600288391113,389,0.0,1 +8389,5,1.0,1,1.5557628870010376,390,0.0,1 +8390,5,0.0,1,1.327765703201294,391,0.0,1 +8391,5,0.0,1,1.8277593851089478,392,0.0,1 +8392,5,0.0,1,1.9007585048675537,393,0.0,1 +8393,5,0.0,1,1.7807600498199463,394,0.0,1 +8394,5,0.0,1,1.3847650289535522,395,0.0,1 +8395,5,1.0,1,1.8287594318389893,396,1.0,1 +8396,5,1.0,1,1.4757639169692993,397,1.0,1 +8397,5,1.0,1,1.694761037826538,398,1.0,1 +8398,5,1.0,1,1.9567577838897705,399,0.0,1 +8399,5,1.0,1,1.462764024734497,400,0.0,1 +8400,5,0.0,1,2.207761764526367,401,0.0,1 +8401,5,0.0,1,1.315765619277954,402,1.0,1 +8402,5,0.0,1,1.5307631492614746,403,1.0,1 +8403,5,0.0,1,1.5597628355026245,404,0.0,1 +8404,5,0.0,1,1.3667652606964111,405,1.0,1 +8405,5,0.0,1,1.37776517868042,406,1.0,1 +8406,5,0.0,1,1.4837638139724731,407,1.0,1 +8407,5,0.0,1,1.417764663696289,408,1.0,1 +8408,5,0.0,1,1.3297656774520874,409,0.0,1 +8409,5,0.0,1,1.558762788772583,410,0.0,1 +8410,5,0.0,1,1.8937585353851318,411,0.0,1 +8411,5,0.0,1,1.4117647409439087,412,0.0,1 +8412,5,0.0,1,1.7387604713439941,413,1.0,1 +8413,5,0.0,1,1.3597654104232788,414,1.0,1 +8414,5,0.0,1,1.5637627840042114,415,0.0,1 +8415,5,1.0,1,1.8227593898773193,416,0.0,1 +8416,5,0.0,1,1.4077647924423218,417,1.0,1 +8417,5,0.0,1,1.3497655391693115,418,1.0,1 +8418,5,0.0,1,1.491763710975647,419,1.0,1 +8419,5,0.0,1,1.462764024734497,420,1.0,1 +8420,5,0.0,1,2.115757465362549,421,0.0,1 +8421,5,0.0,1,1.5897624492645264,422,0.0,1 +8422,5,0.0,1,1.6597615480422974,423,1.0,1 +8423,5,0.0,1,1.18776535987854,424,1.0,1 +8424,5,1.0,1,1.2397655248641968,425,1.0,1 +8425,5,0.0,1,1.2487655878067017,426,0.0,1 +8426,5,1.0,1,1.56276273727417,427,0.0,1 +8427,5,0.0,1,1.9947571754455566,428,0.0,1 +8428,5,0.0,1,1.9657576084136963,429,0.0,1 +8429,5,0.0,1,1.5827624797821045,430,1.0,1 +8430,5,0.0,1,1.2387654781341553,431,0.0,1 +8431,5,0.0,1,1.3827650547027588,432,0.0,1 +8432,5,0.0,1,1.2017654180526733,433,0.0,1 +8433,5,1.0,1,1.7737600803375244,434,1.0,1 +8434,5,1.0,1,1.7547602653503418,435,1.0,1 +8435,5,0.0,1,1.417764663696289,436,0.0,1 +8436,5,1.0,1,1.465764045715332,437,1.0,1 +8437,5,1.0,1,1.601762294769287,438,0.0,1 +8438,5,0.0,1,1.421764612197876,439,0.0,1 +8439,5,0.0,1,1.9547576904296875,440,0.0,1 +8440,5,1.0,1,1.977757453918457,441,1.0,1 +8441,5,0.0,1,1.220765471458435,442,0.0,1 +8442,5,1.0,1,1.9617576599121094,443,0.0,1 +8443,5,0.0,1,1.7087609767913818,444,1.0,1 +8444,5,0.0,1,1.6457617282867432,445,1.0,1 +8445,5,0.0,1,1.2087655067443848,446,1.0,1 +8446,5,0.0,1,1.3257657289505005,447,0.0,1 +8447,5,0.0,1,1.700761079788208,448,1.0,1 +8448,5,0.0,1,1.6307618618011475,449,0.0,1 +8449,5,0.0,1,2.0437564849853516,450,0.0,1 +8450,5,0.0,1,1.5237632989883423,451,0.0,1 +8451,5,0.0,1,1.4767638444900513,452,0.0,1 +8452,5,0.0,1,1.5947623252868652,453,1.0,1 +8453,5,0.0,1,1.7347605228424072,454,0.0,1 +8454,5,1.0,1,1.4537642002105713,455,1.0,1 +8455,5,1.0,1,1.4347643852233887,456,1.0,1 +8456,5,0.0,1,1.2407655715942383,457,0.0,1 +8457,5,1.0,1,1.3167656660079956,458,0.0,1 +8458,5,0.0,1,1.2187654972076416,459,0.0,1 +8459,5,0.0,1,1.4417643547058105,460,0.0,1 +8460,5,1.0,1,1.7757600545883179,461,1.0,1 +8461,5,1.0,1,1.6237620115280151,462,0.0,1 +8462,5,1.0,1,1.540763020515442,463,0.0,1 +8463,5,0.0,1,1.1837654113769531,464,0.0,1 +8464,5,0.0,1,1.7837599515914917,465,0.0,1 +8465,5,0.0,1,1.561762809753418,466,0.0,1 +8466,5,1.0,1,1.4737639427185059,467,0.0,1 +8467,5,1.0,1,2.3437681198120117,468,1.0,1 +8468,5,1.0,1,1.6397618055343628,469,1.0,1 +8469,5,1.0,1,1.373765230178833,470,1.0,1 +8470,5,1.0,1,1.5937623977661133,471,0.0,1 +8471,5,1.0,1,1.6867611408233643,472,1.0,1 +8472,5,1.0,1,1.5207632780075073,473,0.0,1 +8473,5,1.0,1,1.3797651529312134,474,1.0,1 +8474,5,1.0,1,1.8987584114074707,475,1.0,1 +8475,5,1.0,1,2.2467637062072754,476,0.0,1 +8476,5,0.0,1,1.5777626037597656,477,1.0,1 +8477,5,0.0,1,1.4237645864486694,478,1.0,1 +8478,5,0.0,1,1.4507641792297363,479,0.0,1 +8479,5,0.0,1,1.3407655954360962,480,0.0,1 +8480,5,1.0,1,1.815759539604187,481,1.0,1 +8481,5,1.0,1,1.540763020515442,482,1.0,1 +8482,5,1.0,1,1.5377631187438965,483,1.0,1 +8483,5,1.0,1,1.5917624235153198,484,0.0,1 +8484,5,1.0,1,1.2167655229568481,485,1.0,1 +8485,5,1.0,1,1.3047657012939453,486,1.0,1 +8486,5,0.0,1,1.5117634534835815,487,0.0,1 +8487,5,1.0,1,1.8707587718963623,488,1.0,1 +8488,5,1.0,1,1.2347655296325684,489,1.0,1 +8489,5,1.0,1,1.5257632732391357,490,1.0,1 +8490,5,1.0,1,1.9487578868865967,491,1.0,1 +8491,5,1.0,1,1.7037609815597534,492,1.0,1 +8492,5,1.0,1,1.3407655954360962,493,1.0,1 +8493,5,1.0,1,1.727760672569275,494,1.0,1 +8494,5,1.0,1,1.4007648229599,495,1.0,1 +8495,5,1.0,1,1.4117647409439087,496,1.0,1 +8496,5,0.0,1,1.6177620887756348,497,0.0,1 +8497,5,1.0,1,1.2717655897140503,498,1.0,1 +8498,5,1.0,1,1.3467655181884766,499,1.0,1 +8499,5,1.0,1,1.5447629690170288,500,0.0,1 +8500,5,1.0,2,1.3397656679153442,1,0.0,1 +8501,5,0.0,2,2.163759708404541,2,0.0,1 +8502,5,1.0,2,1.421764612197876,3,1.0,1 +8503,5,1.0,2,1.3977649211883545,4,1.0,1 +8504,5,1.0,2,1.51076340675354,5,0.0,1 +8505,5,0.0,2,1.8937585353851318,6,1.0,1 +8506,5,0.0,2,1.259765625,7,1.0,1 +8507,5,0.0,2,1.5707626342773438,8,0.0,1 +8508,5,1.0,2,1.602762222290039,9,0.0,1 +8509,5,1.0,2,1.4617640972137451,10,0.0,1 +8510,5,1.0,2,2.2287628650665283,11,1.0,1 +8511,5,1.0,2,1.4107646942138672,12,0.0,1 +8512,5,0.0,2,1.9637576341629028,13,1.0,1 +8513,5,0.0,2,1.8257594108581543,14,1.0,1 +8514,5,0.0,2,1.9067583084106445,15,0.0,1 +8515,5,0.0,2,1.3577654361724854,16,1.0,1 +8516,5,0.0,2,1.3117656707763672,17,0.0,1 +8517,5,1.0,2,1.3717652559280396,18,1.0,1 +8518,5,1.0,2,1.3297656774520874,19,1.0,1 +8519,5,1.0,2,1.3617653846740723,20,1.0,1 +8520,5,1.0,2,1.2917656898498535,21,1.0,1 +8521,5,1.0,2,1.5497629642486572,22,1.0,1 +8522,5,1.0,2,1.6457617282867432,23,0.0,1 +8523,5,1.0,2,1.7077609300613403,24,1.0,1 +8524,5,1.0,2,1.4237645864486694,25,0.0,1 +8525,5,1.0,2,1.5067634582519531,26,1.0,1 +8526,5,1.0,2,2.030756711959839,27,1.0,1 +8527,5,1.0,2,1.4747638702392578,28,0.0,1 +8528,5,1.0,2,1.351765513420105,29,1.0,1 +8529,5,0.0,2,1.2997655868530273,30,0.0,1 +8530,5,0.0,2,1.5377631187438965,31,1.0,1 +8531,5,1.0,2,2.3197669982910156,32,1.0,1 +8532,5,1.0,2,1.580762505531311,33,0.0,1 +8533,5,0.0,2,1.7567603588104248,34,0.0,1 +8534,5,0.0,2,1.9437578916549683,35,0.0,1 +8535,5,0.0,2,1.8487591743469238,36,0.0,1 +8536,5,1.0,2,2.03175687789917,37,1.0,1 +8537,5,1.0,2,1.3387656211853027,38,1.0,1 +8538,5,1.0,2,1.5507628917694092,39,0.0,1 +8539,5,0.0,2,1.8117595911026,40,1.0,1 +8540,5,0.0,2,1.9497578144073486,41,0.0,1 +8541,5,1.0,2,1.4387643337249756,42,1.0,1 +8542,5,1.0,2,1.3357657194137573,43,0.0,1 +8543,5,0.0,2,1.8687589168548584,44,0.0,1 +8544,5,0.0,2,1.6217620372772217,45,0.0,1 +8545,5,0.0,2,2.6037802696228027,46,1.0,1 +8546,5,0.0,2,1.5817625522613525,47,0.0,1 +8547,5,0.0,2,1.8927586078643799,48,0.0,1 +8548,5,0.0,2,1.3117656707763672,49,1.0,1 +8549,5,0.0,2,1.4357644319534302,50,1.0,1 +8550,5,0.0,2,1.5167633295059204,51,1.0,1 +8551,5,0.0,2,1.2367655038833618,52,1.0,1 +8552,5,0.0,2,1.4537642002105713,53,0.0,1 +8553,5,0.0,2,2.198761463165283,54,1.0,1 +8554,5,1.0,2,1.7887599468231201,55,1.0,1 +8555,5,1.0,2,1.254765510559082,56,0.0,1 +8556,5,0.0,2,1.3397656679153442,57,1.0,1 +8557,5,0.0,2,1.2997655868530273,58,0.0,1 +8558,5,0.0,2,1.4507641792297363,59,1.0,1 +8559,5,0.0,2,1.4837638139724731,60,1.0,1 +8560,5,0.0,2,1.3287657499313354,61,0.0,1 +8561,5,1.0,2,1.6287620067596436,62,1.0,1 +8562,5,1.0,2,1.2957656383514404,63,0.0,1 +8563,5,0.0,2,1.6177620887756348,64,1.0,1 +8564,5,0.0,2,1.3587653636932373,65,0.0,1 +8565,5,0.0,2,1.5657627582550049,66,0.0,1 +8566,5,0.0,2,1.5907623767852783,67,1.0,1 +8567,5,0.0,2,1.9727575778961182,68,1.0,1 +8568,5,0.0,2,1.8077596426010132,69,1.0,1 +8569,5,0.0,2,1.3427655696868896,70,1.0,1 +8570,5,0.0,2,1.1647653579711914,71,0.0,1 +8571,5,0.0,2,1.4357644319534302,72,0.0,1 +8572,5,1.0,2,2.1937613487243652,73,0.0,1 +8573,5,1.0,2,1.5057635307312012,74,0.0,1 +8574,5,0.0,2,1.6187620162963867,75,1.0,1 +8575,5,0.0,2,1.2407655715942383,76,0.0,1 +8576,5,1.0,2,2.175760269165039,77,0.0,1 +8577,5,1.0,2,1.315765619277954,78,0.0,1 +8578,5,0.0,2,2.032756805419922,79,1.0,1 +8579,5,0.0,2,1.4487642049789429,80,0.0,1 +8580,5,1.0,2,1.5557628870010376,81,0.0,1 +8581,5,0.0,2,1.8147594928741455,82,1.0,1 +8582,5,0.0,2,1.3147656917572021,83,1.0,1 +8583,5,0.0,2,1.5227632522583008,84,1.0,1 +8584,5,0.0,2,1.196765422821045,85,1.0,1 +8585,5,0.0,2,1.7337605953216553,86,0.0,1 +8586,5,1.0,2,1.7337605953216553,87,0.0,1 +8587,5,1.0,2,1.3297656774520874,88,0.0,1 +8588,5,0.0,2,1.7157608270645142,89,0.0,1 +8589,5,0.0,2,1.330765724182129,90,1.0,1 +8590,5,0.0,2,1.3607653379440308,91,0.0,1 +8591,5,0.0,2,1.321765661239624,92,1.0,1 +8592,5,0.0,2,1.2867655754089355,93,1.0,1 +8593,5,0.0,2,1.195765495300293,94,0.0,1 +8594,5,0.0,2,2.022756814956665,95,0.0,1 +8595,5,0.0,2,1.2027654647827148,96,1.0,1 +8596,5,0.0,2,1.9837573766708374,97,0.0,1 +8597,5,0.0,2,1.25376558303833,98,0.0,1 +8598,5,1.0,2,1.374765157699585,99,0.0,1 +8599,5,1.0,2,1.7367606163024902,100,1.0,1 +8600,5,1.0,2,1.9957572221755981,101,1.0,1 +8601,5,1.0,2,1.558762788772583,102,1.0,1 +8602,5,1.0,2,1.439764380455017,103,0.0,1 +8603,5,1.0,2,1.4787638187408447,104,1.0,1 +8604,5,1.0,2,1.561762809753418,105,0.0,1 +8605,5,1.0,2,1.6407618522644043,106,0.0,1 +8606,5,1.0,2,1.7317606210708618,107,1.0,1 +8607,5,1.0,2,1.8627588748931885,108,0.0,1 +8608,5,1.0,2,1.5257632732391357,109,1.0,1 +8609,5,1.0,2,2.094756603240967,110,0.0,1 +8610,5,0.0,2,1.3877650499343872,111,0.0,1 +8611,5,1.0,2,1.6337618827819824,112,0.0,1 +8612,5,0.0,2,1.4577641487121582,113,0.0,1 +8613,5,0.0,2,2.127758026123047,114,0.0,1 +8614,5,1.0,2,2.2107620239257812,115,1.0,1 +8615,5,1.0,2,1.6887612342834473,116,0.0,1 +8616,5,1.0,2,1.6037622690200806,117,1.0,1 +8617,5,1.0,2,1.399764895439148,118,0.0,1 +8618,5,1.0,2,2.2217626571655273,119,0.0,1 +8619,5,1.0,2,1.8917585611343384,120,1.0,1 +8620,5,1.0,2,1.6777613162994385,121,1.0,1 +8621,5,1.0,2,1.2687655687332153,122,1.0,1 +8622,5,0.0,2,1.2917656898498535,123,1.0,1 +8623,5,0.0,2,1.5157634019851685,124,1.0,1 +8624,5,1.0,2,1.7737600803375244,125,1.0,1 +8625,5,1.0,2,1.251765489578247,126,0.0,1 +8626,5,0.0,2,1.1947654485702515,127,0.0,1 +8627,5,1.0,2,1.742760419845581,128,0.0,1 +8628,5,0.0,2,1.679761290550232,129,0.0,1 +8629,5,0.0,2,1.3627653121948242,130,0.0,1 +8630,5,0.0,2,1.347765564918518,131,0.0,1 +8631,5,1.0,2,2.15675950050354,132,0.0,1 +8632,5,1.0,2,1.6807613372802734,133,1.0,1 +8633,5,1.0,2,1.2857656478881836,134,0.0,1 +8634,5,1.0,2,1.704761028289795,135,1.0,1 +8635,5,1.0,2,1.6217620372772217,136,1.0,1 +8636,5,1.0,2,1.7777600288391113,137,1.0,1 +8637,5,1.0,2,1.392764925956726,138,0.0,1 +8638,5,1.0,2,2.0357565879821777,139,0.0,1 +8639,5,1.0,2,1.4757639169692993,140,1.0,1 +8640,5,1.0,2,1.470763921737671,141,1.0,1 +8641,5,1.0,2,1.422764539718628,142,1.0,1 +8642,5,1.0,2,1.4987635612487793,143,1.0,1 +8643,5,1.0,2,1.5377631187438965,144,1.0,1 +8644,5,1.0,2,1.7537603378295898,145,1.0,1 +8645,5,1.0,2,1.7567603588104248,146,1.0,1 +8646,5,1.0,2,1.2737655639648438,147,0.0,1 +8647,5,1.0,2,1.8527591228485107,148,0.0,1 +8648,5,0.0,2,1.4777638912200928,149,0.0,1 +8649,5,0.0,2,1.8907585144042969,150,0.0,1 +8650,5,1.0,2,1.5317631959915161,151,1.0,1 +8651,5,1.0,2,1.3437656164169312,152,0.0,1 +8652,5,1.0,2,2.142758846282959,153,1.0,1 +8653,5,1.0,2,1.3727651834487915,154,0.0,1 +8654,5,0.0,2,1.8247594833374023,155,0.0,1 +8655,5,0.0,2,1.3317656517028809,156,0.0,1 +8656,5,0.0,2,1.290765643119812,157,0.0,1 +8657,5,0.0,2,1.3657653331756592,158,0.0,1 +8658,5,0.0,2,1.601762294769287,159,0.0,1 +8659,5,0.0,2,1.704761028289795,160,1.0,1 +8660,5,0.0,2,1.2617655992507935,161,1.0,1 +8661,5,0.0,2,1.417764663696289,162,1.0,1 +8662,5,0.0,2,1.4127646684646606,163,1.0,1 +8663,5,0.0,2,1.7397605180740356,164,1.0,1 +8664,5,0.0,2,1.752760410308838,165,1.0,1 +8665,5,0.0,2,1.315765619277954,166,1.0,1 +8666,5,1.0,2,1.2977656126022339,167,0.0,1 +8667,5,0.0,2,1.8237594366073608,168,0.0,1 +8668,5,0.0,2,1.5917624235153198,169,0.0,1 +8669,5,0.0,2,2.134758472442627,170,0.0,1 +8670,5,0.0,2,1.4907636642456055,171,0.0,1 +8671,5,0.0,2,2.2697649002075195,172,1.0,1 +8672,5,0.0,2,1.344765543937683,173,0.0,1 +8673,5,1.0,2,2.370769500732422,174,1.0,1 +8674,5,1.0,2,1.4817638397216797,175,1.0,1 +8675,5,1.0,2,1.627761960029602,176,1.0,1 +8676,5,1.0,2,1.9207582473754883,177,0.0,1 +8677,5,0.0,2,2.073756217956543,178,0.0,1 +8678,5,1.0,2,1.9397579431533813,179,0.0,1 +8679,5,0.0,2,1.767760157585144,180,1.0,1 +8680,5,0.0,2,1.6337618827819824,181,1.0,1 +8681,5,0.0,2,1.1677653789520264,182,0.0,1 +8682,5,0.0,2,1.8487591743469238,183,1.0,1 +8683,5,0.0,2,1.6297619342803955,184,0.0,1 +8684,5,0.0,2,1.652761697769165,185,0.0,1 +8685,5,0.0,2,1.3467655181884766,186,0.0,1 +8686,5,0.0,2,1.9147582054138184,187,0.0,1 +8687,5,1.0,2,1.7397605180740356,188,0.0,1 +8688,5,0.0,2,1.8777587413787842,189,1.0,1 +8689,5,0.0,2,1.4377644062042236,190,0.0,1 +8690,5,0.0,2,1.4107646942138672,191,1.0,1 +8691,5,0.0,2,1.88675856590271,192,1.0,1 +8692,5,1.0,2,1.8607590198516846,193,1.0,1 +8693,5,0.0,2,1.6557615995407104,194,1.0,1 +8694,5,1.0,2,2.147758960723877,195,1.0,1 +8695,5,0.0,2,1.443764328956604,196,1.0,1 +8696,5,1.0,2,2.0617563724517822,197,0.0,1 +8697,5,0.0,2,1.5477629899978638,198,1.0,1 +8698,5,0.0,2,1.6677614450454712,199,1.0,1 +8699,5,0.0,2,1.4107646942138672,200,0.0,1 +8700,5,0.0,2,1.6347618103027344,201,0.0,1 +8701,5,0.0,2,1.5067634582519531,202,1.0,1 +8702,5,0.0,2,1.6477617025375366,203,1.0,1 +8703,5,0.0,2,1.5087634325027466,204,0.0,1 +8704,5,0.0,2,1.606762170791626,205,1.0,1 +8705,5,0.0,2,1.5157634019851685,206,1.0,1 +8706,5,0.0,2,1.321765661239624,207,1.0,1 +8707,5,0.0,2,1.5927624702453613,208,0.0,1 +8708,5,0.0,2,1.5497629642486572,209,0.0,1 +8709,5,1.0,2,1.4957636594772339,210,0.0,1 +8710,5,0.0,2,1.4267644882202148,211,0.0,1 +8711,5,0.0,2,1.6647615432739258,212,1.0,1 +8712,5,0.0,2,1.352765440940857,213,1.0,1 +8713,5,0.0,2,1.8667588233947754,214,1.0,1 +8714,5,0.0,2,1.263765573501587,215,0.0,1 +8715,5,0.0,2,1.465764045715332,216,0.0,1 +8716,5,0.0,2,1.3267656564712524,217,1.0,1 +8717,5,0.0,2,1.2397655248641968,218,1.0,1 +8718,5,0.0,2,1.608762264251709,219,0.0,1 +8719,5,0.0,2,1.3387656211853027,220,1.0,1 +8720,5,0.0,2,1.3387656211853027,221,0.0,1 +8721,5,0.0,2,1.4907636642456055,222,0.0,1 +8722,5,1.0,2,1.2697656154632568,223,0.0,1 +8723,5,1.0,2,2.2277626991271973,224,1.0,1 +8724,5,1.0,2,1.3317656517028809,225,1.0,1 +8725,5,1.0,2,1.3067656755447388,226,1.0,1 +8726,5,1.0,2,1.256765604019165,227,1.0,1 +8727,5,1.0,2,1.742760419845581,228,0.0,1 +8728,5,0.0,2,1.6227619647979736,229,0.0,1 +8729,5,0.0,2,1.9277580976486206,230,1.0,1 +8730,5,0.0,2,1.3357657194137573,231,1.0,1 +8731,5,0.0,2,1.7147607803344727,232,0.0,1 +8732,5,1.0,2,1.9627575874328613,233,1.0,1 +8733,5,1.0,2,1.8647589683532715,234,1.0,1 +8734,5,1.0,2,1.6697614192962646,235,1.0,1 +8735,5,1.0,2,1.4047647714614868,236,1.0,1 +8736,5,1.0,2,1.323765754699707,237,0.0,1 +8737,5,0.0,2,1.6997610330581665,238,1.0,1 +8738,5,0.0,2,1.7997597455978394,239,0.0,1 +8739,5,1.0,2,2.2507638931274414,240,1.0,1 +8740,5,1.0,2,1.4577641487121582,241,1.0,1 +8741,5,1.0,2,1.2727656364440918,242,0.0,1 +8742,5,0.0,2,1.6227619647979736,243,0.0,1 +8743,5,1.0,2,1.9067583084106445,244,0.0,1 +8744,5,0.0,2,1.3147656917572021,245,1.0,1 +8745,5,0.0,2,1.6337618827819824,246,1.0,1 +8746,5,0.0,2,1.3977649211883545,247,1.0,1 +8747,5,0.0,2,1.4007648229599,248,1.0,1 +8748,5,0.0,2,1.296765685081482,249,1.0,1 +8749,5,0.0,2,1.1817654371261597,250,1.0,1 +8750,5,0.0,2,1.3097656965255737,251,0.0,1 +8751,5,0.0,2,1.5417630672454834,252,1.0,1 +8752,5,0.0,2,1.514763355255127,253,0.0,1 +8753,5,1.0,2,1.418764591217041,254,1.0,1 +8754,5,1.0,2,1.327765703201294,255,0.0,1 +8755,5,0.0,2,1.6137621402740479,256,1.0,1 +8756,5,0.0,2,1.2247655391693115,257,1.0,1 +8757,5,0.0,2,1.2747656106948853,258,1.0,1 +8758,5,1.0,2,1.4127646684646606,259,1.0,1 +8759,5,1.0,2,1.1817654371261597,260,0.0,1 +8760,5,0.0,2,1.3147656917572021,261,0.0,1 +8761,5,1.0,2,2.192761182785034,262,0.0,1 +8762,5,0.0,2,1.257765531539917,263,1.0,1 +8763,5,0.0,2,1.6587615013122559,264,0.0,1 +8764,5,1.0,2,1.746760368347168,265,0.0,1 +8765,5,0.0,2,1.2477655410766602,266,0.0,1 +8766,5,0.0,2,1.3087656497955322,267,0.0,1 +8767,5,0.0,2,1.9677575826644897,268,0.0,1 +8768,5,0.0,2,1.86375892162323,269,0.0,1 +8769,5,1.0,2,1.84075927734375,270,1.0,1 +8770,5,1.0,2,1.6427617073059082,271,1.0,1 +8771,5,1.0,2,1.4057648181915283,272,1.0,1 +8772,5,0.0,2,1.3287657499313354,273,0.0,1 +8773,5,1.0,2,1.327765703201294,274,0.0,1 +8774,5,1.0,2,1.8647589683532715,275,0.0,1 +8775,5,1.0,2,1.3757652044296265,276,1.0,1 +8776,5,0.0,2,1.466763973236084,277,1.0,1 +8777,5,0.0,2,1.4997636079788208,278,0.0,1 +8778,5,1.0,2,1.399764895439148,279,1.0,1 +8779,5,1.0,2,1.5197633504867554,280,1.0,1 +8780,5,1.0,2,1.37776517868042,281,1.0,1 +8781,5,1.0,2,1.4247645139694214,282,0.0,1 +8782,5,1.0,2,1.5077635049819946,283,1.0,1 +8783,5,1.0,2,1.392764925956726,284,0.0,1 +8784,5,0.0,2,1.8987584114074707,285,0.0,1 +8785,5,1.0,2,1.447764277458191,286,1.0,1 +8786,5,1.0,2,1.3657653331756592,287,1.0,1 +8787,5,1.0,2,1.2397655248641968,288,1.0,1 +8788,5,1.0,2,1.6357618570327759,289,0.0,1 +8789,5,1.0,2,1.579762578010559,290,1.0,1 +8790,5,1.0,2,1.5567628145217896,291,1.0,1 +8791,5,1.0,2,1.3287657499313354,292,0.0,1 +8792,5,0.0,2,1.6727614402770996,293,1.0,1 +8793,5,0.0,2,1.8627588748931885,294,1.0,1 +8794,5,0.0,2,1.37776517868042,295,1.0,1 +8795,5,0.0,2,1.2137655019760132,296,0.0,1 +8796,5,0.0,2,1.2977656126022339,297,1.0,1 +8797,5,0.0,2,1.5057635307312012,298,0.0,1 +8798,5,1.0,2,1.5907623767852783,299,1.0,1 +8799,5,1.0,2,1.5057635307312012,300,0.0,1 +8800,5,1.0,2,1.8167595863342285,301,1.0,1 +8801,5,1.0,2,1.790759801864624,302,1.0,1 +8802,5,0.0,2,1.422764539718628,303,0.0,1 +8803,5,0.0,2,1.8267593383789062,304,0.0,1 +8804,5,1.0,2,1.6357618570327759,305,1.0,1 +8805,5,1.0,2,2.2327630519866943,306,0.0,1 +8806,5,0.0,2,1.7307605743408203,307,1.0,1 +8807,5,0.0,2,1.320765733718872,308,0.0,1 +8808,5,0.0,2,1.3797651529312134,309,0.0,1 +8809,5,1.0,2,2.163759708404541,310,0.0,1 +8810,5,1.0,2,1.6937611103057861,311,0.0,1 +8811,5,0.0,2,1.9947571754455566,312,1.0,1 +8812,5,0.0,2,2.0867562294006348,313,1.0,1 +8813,5,1.0,2,1.930757999420166,314,1.0,1 +8814,5,0.0,2,1.8067595958709717,315,1.0,1 +8815,5,1.0,2,1.425764560699463,316,1.0,1 +8816,5,0.0,2,1.2687655687332153,317,1.0,1 +8817,5,0.0,2,2.146759033203125,318,1.0,1 +8818,5,1.0,2,1.8087596893310547,319,1.0,1 +8819,5,0.0,2,1.5787625312805176,320,0.0,1 +8820,5,1.0,2,1.396764874458313,321,1.0,1 +8821,5,1.0,2,1.2697656154632568,322,1.0,1 +8822,5,1.0,2,1.6247620582580566,323,1.0,1 +8823,5,1.0,2,1.601762294769287,324,0.0,1 +8824,5,0.0,2,2.195761203765869,325,1.0,1 +8825,5,0.0,2,1.2897655963897705,326,0.0,1 +8826,5,0.0,2,1.700761079788208,327,0.0,1 +8827,5,1.0,2,1.5467629432678223,328,1.0,1 +8828,5,1.0,2,2.400770902633667,329,0.0,1 +8829,5,0.0,2,1.2647656202316284,330,1.0,1 +8830,5,0.0,2,1.5997623205184937,331,1.0,1 +8831,5,1.0,2,2.198761463165283,332,0.0,1 +8832,5,0.0,2,1.259765625,333,1.0,1 +8833,5,0.0,2,1.3887649774551392,334,0.0,1 +8834,5,0.0,2,1.3097656965255737,335,0.0,1 +8835,5,1.0,2,2.367769241333008,336,1.0,1 +8836,5,1.0,2,1.3007656335830688,337,1.0,1 +8837,5,1.0,2,1.7177608013153076,338,0.0,1 +8838,5,1.0,2,1.5947623252868652,339,0.0,1 +8839,5,0.0,2,1.4347643852233887,340,1.0,1 +8840,5,0.0,2,1.2687655687332153,341,1.0,1 +8841,5,0.0,2,1.3147656917572021,342,0.0,1 +8842,5,0.0,2,1.9257581233978271,343,1.0,1 +8843,5,0.0,2,1.3047657012939453,344,0.0,1 +8844,5,0.0,2,1.5747625827789307,345,0.0,1 +8845,5,0.0,2,1.3067656755447388,346,1.0,1 +8846,5,0.0,2,1.6367619037628174,347,0.0,1 +8847,5,1.0,2,2.2687647342681885,348,1.0,1 +8848,5,1.0,2,1.369765281677246,349,1.0,1 +8849,5,0.0,2,1.4947636127471924,350,1.0,1 +8850,5,1.0,2,2.0387566089630127,351,0.0,1 +8851,5,0.0,2,1.22976553440094,352,0.0,1 +8852,5,0.0,2,2.0537564754486084,353,0.0,1 +8853,5,1.0,2,1.6397618055343628,354,0.0,1 +8854,5,1.0,2,1.3117656707763672,355,1.0,1 +8855,5,0.0,2,1.6867611408233643,356,1.0,1 +8856,5,1.0,2,1.5247632265090942,357,1.0,1 +8857,5,1.0,2,1.6147620677947998,358,0.0,1 +8858,5,0.0,2,1.2827656269073486,359,1.0,1 +8859,5,0.0,2,1.2647656202316284,360,1.0,1 +8860,5,0.0,2,2.3047664165496826,361,0.0,1 +8861,5,0.0,2,1.2427655458450317,362,0.0,1 +8862,5,1.0,2,1.5597628355026245,363,0.0,1 +8863,5,0.0,2,2.026756763458252,364,0.0,1 +8864,5,0.0,2,1.3647652864456177,365,0.0,1 +8865,5,0.0,2,1.4797638654708862,366,0.0,1 +8866,5,1.0,2,1.6587615013122559,367,1.0,1 +8867,5,1.0,2,2.2657647132873535,368,1.0,1 +8868,5,1.0,2,1.7957597970962524,369,0.0,1 +8869,5,0.0,2,2.432772397994995,370,1.0,1 +8870,5,0.0,2,1.284765601158142,371,0.0,1 +8871,5,0.0,2,2.152759313583374,372,0.0,1 +8872,5,0.0,2,1.5907623767852783,373,1.0,1 +8873,5,0.0,2,1.327765703201294,374,0.0,1 +8874,5,0.0,2,1.5297632217407227,375,0.0,1 +8875,5,0.0,2,1.3857650756835938,376,0.0,1 +8876,5,0.0,2,1.5077635049819946,377,0.0,1 +8877,5,0.0,2,1.535763144493103,378,1.0,1 +8878,5,0.0,2,1.3547654151916504,379,0.0,1 +8879,5,0.0,2,1.5667626857757568,380,0.0,1 +8880,5,0.0,2,1.6167621612548828,381,1.0,1 +8881,5,0.0,2,1.465764045715332,382,0.0,1 +8882,5,0.0,2,2.4877748489379883,383,0.0,1 +8883,5,1.0,2,2.3257675170898438,384,1.0,1 +8884,5,1.0,2,1.3987648487091064,385,0.0,1 +8885,5,0.0,2,2.0617563724517822,386,0.0,1 +8886,5,1.0,2,1.8467590808868408,387,1.0,1 +8887,5,1.0,2,1.4137647151947021,388,0.0,1 +8888,5,0.0,2,1.4757639169692993,389,1.0,1 +8889,5,0.0,2,1.4677640199661255,390,0.0,1 +8890,5,0.0,2,1.8997584581375122,391,0.0,1 +8891,5,0.0,2,1.3067656755447388,392,1.0,1 +8892,5,0.0,2,1.3767651319503784,393,1.0,1 +8893,5,0.0,2,1.414764642715454,394,0.0,1 +8894,5,1.0,2,1.318765640258789,395,0.0,1 +8895,5,1.0,2,1.514763355255127,396,0.0,1 +8896,5,0.0,2,1.2917656898498535,397,1.0,1 +8897,5,0.0,2,1.3467655181884766,398,0.0,1 +8898,5,1.0,2,1.2067654132843018,399,1.0,1 +8899,5,1.0,2,1.540763020515442,400,1.0,1 +8900,5,1.0,2,1.6617615222930908,401,1.0,1 +8901,5,1.0,2,1.6207621097564697,402,1.0,1 +8902,5,1.0,2,1.4857637882232666,403,0.0,1 +8903,5,0.0,2,1.5197633504867554,404,1.0,1 +8904,5,0.0,2,1.3907649517059326,405,1.0,1 +8905,5,0.0,2,1.8207595348358154,406,0.0,1 +8906,5,1.0,2,1.3437656164169312,407,1.0,1 +8907,5,1.0,2,1.794759750366211,408,1.0,1 +8908,5,1.0,2,1.604762315750122,409,1.0,1 +8909,5,1.0,2,1.911758303642273,410,0.0,1 +8910,5,0.0,2,1.7227606773376465,411,1.0,1 +8911,5,0.0,2,1.7307605743408203,412,0.0,1 +8912,5,1.0,2,1.3077657222747803,413,1.0,1 +8913,5,1.0,2,1.5217633247375488,414,1.0,1 +8914,5,1.0,2,1.6597615480422974,415,0.0,1 +8915,5,0.0,2,2.0637564659118652,416,1.0,1 +8916,5,0.0,2,1.51076340675354,417,0.0,1 +8917,5,1.0,2,1.535763144493103,418,1.0,1 +8918,5,1.0,2,1.4077647924423218,419,0.0,1 +8919,5,1.0,2,1.4017648696899414,420,0.0,1 +8920,5,0.0,2,2.0417566299438477,421,0.0,1 +8921,5,1.0,2,1.8587589263916016,422,1.0,1 +8922,5,1.0,2,1.2497655153274536,423,0.0,1 +8923,5,1.0,2,1.882758617401123,424,1.0,1 +8924,5,1.0,2,1.5977623462677002,425,1.0,1 +8925,5,1.0,2,1.8767588138580322,426,1.0,1 +8926,5,1.0,2,1.7827599048614502,427,0.0,1 +8927,5,0.0,2,1.9397579431533813,428,1.0,1 +8928,5,0.0,2,1.25376558303833,429,0.0,1 +8929,5,0.0,2,1.6927611827850342,430,0.0,1 +8930,5,0.0,2,1.557762861251831,431,0.0,1 +8931,5,1.0,2,1.8967585563659668,432,0.0,1 +8932,5,0.0,2,1.5087634325027466,433,0.0,1 +8933,5,0.0,2,1.492763638496399,434,1.0,1 +8934,5,0.0,2,1.928758144378662,435,1.0,1 +8935,5,0.0,2,1.3127657175064087,436,0.0,1 +8936,5,0.0,2,1.959757685661316,437,1.0,1 +8937,5,0.0,2,1.3367656469345093,438,1.0,1 +8938,5,0.0,2,1.5417630672454834,439,1.0,1 +8939,5,0.0,2,1.2197654247283936,440,0.0,1 +8940,5,0.0,2,1.3317656517028809,441,1.0,1 +8941,5,0.0,2,1.195765495300293,442,1.0,1 +8942,5,0.0,2,1.5747625827789307,443,0.0,1 +8943,5,1.0,2,1.4247645139694214,444,0.0,1 +8944,5,0.0,2,1.4087647199630737,445,0.0,1 +8945,5,1.0,2,2.188760995864868,446,0.0,1 +8946,5,1.0,2,1.70176100730896,447,1.0,1 +8947,5,0.0,2,1.8537590503692627,448,0.0,1 +8948,5,1.0,2,1.425764560699463,449,1.0,1 +8949,5,1.0,2,1.4957636594772339,450,1.0,1 +8950,5,1.0,2,1.3067656755447388,451,1.0,1 +8951,5,1.0,2,1.532763123512268,452,0.0,1 +8952,5,1.0,2,1.9937572479248047,453,1.0,1 +8953,5,0.0,2,1.2507655620574951,454,0.0,1 +8954,5,1.0,2,1.5647627115249634,455,1.0,1 +8955,5,1.0,2,1.5217633247375488,456,0.0,1 +8956,5,0.0,2,2.3197669982910156,457,0.0,1 +8957,5,0.0,2,1.470763921737671,458,0.0,1 +8958,5,1.0,2,1.4587640762329102,459,1.0,1 +8959,5,1.0,2,1.5287631750106812,460,0.0,1 +8960,5,1.0,2,1.3667652606964111,461,0.0,1 +8961,5,1.0,2,2.0047571659088135,462,1.0,1 +8962,5,1.0,2,1.7387604713439941,463,1.0,1 +8963,5,1.0,2,1.3197656869888306,464,1.0,1 +8964,5,1.0,2,1.609762191772461,465,0.0,1 +8965,5,0.0,2,1.9677575826644897,466,1.0,1 +8966,5,0.0,2,1.259765625,467,1.0,1 +8967,5,0.0,2,1.3717652559280396,468,1.0,1 +8968,5,0.0,2,1.4027647972106934,469,0.0,1 +8969,5,1.0,2,1.7317606210708618,470,1.0,1 +8970,5,1.0,2,1.2557655572891235,471,1.0,1 +8971,5,1.0,2,1.932758092880249,472,1.0,1 +8972,5,1.0,2,1.4767638444900513,473,1.0,1 +8973,5,1.0,2,1.6467616558074951,474,1.0,1 +8974,5,1.0,2,1.8277593851089478,475,1.0,1 +8975,5,0.0,2,1.9197582006454468,476,1.0,1 +8976,5,1.0,2,1.18776535987854,477,1.0,1 +8977,5,0.0,2,2.090756416320801,478,0.0,1 +8978,5,1.0,2,1.4637640714645386,479,1.0,1 +8979,5,1.0,2,1.2757656574249268,480,1.0,1 +8980,5,1.0,2,1.4507641792297363,481,1.0,1 +8981,5,1.0,2,1.4727638959884644,482,0.0,1 +8982,5,0.0,2,1.2647656202316284,483,0.0,1 +8983,5,0.0,2,1.369765281677246,484,0.0,1 +8984,5,0.0,2,1.321765661239624,485,0.0,1 +8985,5,1.0,2,1.657761573791504,486,1.0,1 +8986,5,1.0,2,1.8877586126327515,487,1.0,1 +8987,5,0.0,2,1.3037656545639038,488,0.0,1 +8988,5,1.0,2,1.4327644109725952,489,1.0,1 +8989,5,1.0,2,1.4777638912200928,490,0.0,1 +8990,5,0.0,2,1.5847625732421875,491,0.0,1 +8991,5,0.0,2,1.5607627630233765,492,1.0,1 +8992,5,0.0,2,1.7917598485946655,493,1.0,1 +8993,5,0.0,2,1.22376549243927,494,0.0,1 +8994,5,0.0,2,2.452773332595825,495,1.0,1 +8995,5,0.0,2,1.4957636594772339,496,0.0,1 +8996,5,1.0,2,2.130758285522461,497,1.0,1 +8997,5,1.0,2,2.0957565307617188,498,1.0,1 +8998,5,1.0,2,1.3167656660079956,499,1.0,1 +8999,5,1.0,2,1.587762475013733,500,1.0,1 +9000,6,0.0,0,2.1469268798828125,1,1.0,1 +9001,6,0.0,0,1.6569256782531738,2,0.0,1 +9002,6,1.0,0,1.5749268531799316,3,1.0,1 +9003,6,1.0,0,1.3229299783706665,4,1.0,1 +9004,6,1.0,0,2.018921136856079,5,1.0,1 +9005,6,1.0,0,1.2909303903579712,6,1.0,1 +9006,6,0.0,0,1.207930564880371,7,0.0,1 +9007,6,1.0,0,1.5939265489578247,8,1.0,1 +9008,6,1.0,0,1.3339298963546753,9,0.0,1 +9009,6,1.0,0,1.791923999786377,10,1.0,1 +9010,6,1.0,0,1.2329305410385132,11,1.0,1 +9011,6,1.0,0,1.1309304237365723,12,1.0,1 +9012,6,0.0,0,1.32492995262146,13,0.0,1 +9013,6,1.0,0,1.1939305067062378,14,1.0,1 +9014,6,1.0,0,1.5419272184371948,15,1.0,1 +9015,6,1.0,0,1.5869266986846924,16,1.0,1 +9016,6,0.0,0,1.276930570602417,17,1.0,1 +9017,6,1.0,0,2.1319260597229004,18,1.0,1 +9018,6,0.0,0,1.9299222230911255,19,0.0,1 +9019,6,1.0,0,2.231930732727051,20,1.0,1 +9020,6,1.0,0,1.5319273471832275,21,1.0,1 +9021,6,1.0,0,1.2749305963516235,22,1.0,1 +9022,6,1.0,0,1.4539283514022827,23,1.0,1 +9023,6,1.0,0,1.3379298448562622,24,0.0,1 +9024,6,1.0,0,1.4469283819198608,25,0.0,1 +9025,6,0.0,0,2.3499364852905273,26,0.0,1 +9026,6,0.0,0,1.5189274549484253,27,0.0,1 +9027,6,1.0,0,1.8819228410720825,28,0.0,1 +9028,6,1.0,0,1.3889291286468506,29,1.0,1 +9029,6,1.0,0,1.6619256734848022,30,1.0,1 +9030,6,1.0,0,1.537927269935608,31,1.0,1 +9031,6,1.0,0,1.2319306135177612,32,1.0,1 +9032,6,1.0,0,1.2009304761886597,33,1.0,1 +9033,6,1.0,0,1.2469305992126465,34,1.0,1 +9034,6,1.0,0,1.364929437637329,35,1.0,1 +9035,6,1.0,0,1.2019305229187012,36,1.0,1 +9036,6,1.0,0,1.2159305810928345,37,1.0,1 +9037,6,1.0,0,1.5149275064468384,38,1.0,1 +9038,6,1.0,0,1.4739280939102173,39,1.0,1 +9039,6,1.0,0,1.251930594444275,40,1.0,1 +9040,6,1.0,0,1.2869304418563843,41,1.0,1 +9041,6,1.0,0,1.6019264459609985,42,1.0,1 +9042,6,1.0,0,1.3489296436309814,43,1.0,1 +9043,6,1.0,0,1.2739306688308716,44,1.0,1 +9044,6,1.0,0,1.416928768157959,45,1.0,1 +9045,6,1.0,0,1.5159275531768799,46,1.0,1 +9046,6,1.0,0,1.2939304113388062,47,1.0,1 +9047,6,1.0,0,1.1959304809570312,48,1.0,1 +9048,6,1.0,0,1.3779293298721313,49,0.0,1 +9049,6,1.0,0,1.884922742843628,50,1.0,1 +9050,6,1.0,0,1.6099263429641724,51,1.0,1 +9051,6,1.0,0,1.5279273986816406,52,1.0,1 +9052,6,1.0,0,1.183930516242981,53,1.0,1 +9053,6,1.0,0,1.4309285879135132,54,0.0,1 +9054,6,1.0,0,1.7819241285324097,55,0.0,1 +9055,6,1.0,0,1.5349273681640625,56,1.0,1 +9056,6,1.0,0,1.6359260082244873,57,0.0,1 +9057,6,0.0,0,1.9489219188690186,58,0.0,1 +9058,6,1.0,0,2.4349403381347656,59,1.0,1 +9059,6,1.0,0,1.8229236602783203,60,1.0,1 +9060,6,1.0,0,1.3099302053451538,61,1.0,1 +9061,6,1.0,0,1.210930585861206,62,1.0,1 +9062,6,1.0,0,1.5019277334213257,63,1.0,1 +9063,6,1.0,0,1.1429303884506226,64,1.0,1 +9064,6,1.0,0,1.174930453300476,65,1.0,1 +9065,6,1.0,0,1.2629306316375732,66,1.0,1 +9066,6,1.0,0,1.554927110671997,67,0.0,1 +9067,6,1.0,0,1.8679230213165283,68,1.0,1 +9068,6,1.0,0,1.3069301843643188,69,1.0,1 +9069,6,1.0,0,1.3629294633865356,70,1.0,1 +9070,6,1.0,0,1.244930624961853,71,1.0,1 +9071,6,1.0,0,1.8819228410720825,72,1.0,1 +9072,6,0.0,0,1.62592613697052,73,0.0,1 +9073,6,1.0,0,1.2709306478500366,74,0.0,1 +9074,6,0.0,0,2.1449267864227295,75,0.0,1 +9075,6,1.0,0,2.3909382820129395,76,1.0,1 +9076,6,1.0,0,1.3919291496276855,77,0.0,1 +9077,6,1.0,0,1.560926914215088,78,0.0,1 +9078,6,1.0,0,1.4499284029006958,79,1.0,1 +9079,6,1.0,0,1.669925570487976,80,0.0,1 +9080,6,1.0,0,2.0899243354797363,81,1.0,1 +9081,6,1.0,0,1.562927007675171,82,1.0,1 +9082,6,1.0,0,1.4239287376403809,83,0.0,1 +9083,6,0.0,0,1.2959303855895996,84,0.0,1 +9084,6,0.0,0,2.309934616088867,85,0.0,1 +9085,6,0.0,0,1.2339305877685547,86,0.0,1 +9086,6,1.0,0,1.721924901008606,87,1.0,1 +9087,6,1.0,0,1.3929290771484375,88,1.0,1 +9088,6,1.0,0,1.4499284029006958,89,1.0,1 +9089,6,1.0,0,1.646925926208496,90,1.0,1 +9090,6,1.0,0,1.5579270124435425,91,1.0,1 +9091,6,1.0,0,1.2959303855895996,92,1.0,1 +9092,6,1.0,0,1.3489296436309814,93,1.0,1 +9093,6,0.0,0,2.0079212188720703,94,0.0,1 +9094,6,1.0,0,1.9219223260879517,95,1.0,1 +9095,6,1.0,0,1.8609230518341064,96,1.0,1 +9096,6,1.0,0,1.279930591583252,97,1.0,1 +9097,6,1.0,0,1.5679268836975098,98,1.0,1 +9098,6,1.0,0,1.3839292526245117,99,1.0,1 +9099,6,1.0,0,1.367929458618164,100,1.0,1 +9100,6,1.0,0,1.971921682357788,101,1.0,1 +9101,6,1.0,0,1.2199305295944214,102,1.0,1 +9102,6,0.0,0,1.2219305038452148,103,0.0,1 +9103,6,1.0,0,1.600926399230957,104,1.0,1 +9104,6,1.0,0,1.2399306297302246,105,1.0,1 +9105,6,1.0,0,1.5019277334213257,106,1.0,1 +9106,6,1.0,0,1.345929741859436,107,1.0,1 +9107,6,1.0,0,1.174930453300476,108,1.0,1 +9108,6,1.0,0,1.1999305486679077,109,1.0,1 +9109,6,1.0,0,1.459928274154663,110,1.0,1 +9110,6,1.0,0,1.673925518989563,111,1.0,1 +9111,6,1.0,0,1.3229299783706665,112,1.0,1 +9112,6,1.0,0,1.832923412322998,113,1.0,1 +9113,6,1.0,0,1.419928789138794,114,1.0,1 +9114,6,1.0,0,1.1959304809570312,115,1.0,1 +9115,6,1.0,0,1.302930235862732,116,0.0,1 +9116,6,0.0,0,1.5849266052246094,117,0.0,1 +9117,6,0.0,0,1.3349298238754272,118,0.0,1 +9118,6,0.0,0,1.695925235748291,119,1.0,1 +9119,6,1.0,0,2.279932975769043,120,0.0,1 +9120,6,0.0,0,1.298930287361145,121,0.0,1 +9121,6,1.0,0,2.476942300796509,122,1.0,1 +9122,6,1.0,0,1.6569256782531738,123,1.0,1 +9123,6,1.0,0,1.2279305458068848,124,0.0,1 +9124,6,0.0,0,1.9119224548339844,125,1.0,1 +9125,6,0.0,0,1.3259299993515015,126,0.0,1 +9126,6,0.0,0,2.3339357376098633,127,0.0,1 +9127,6,0.0,0,1.7859240770339966,128,0.0,1 +9128,6,0.0,0,1.6639256477355957,129,0.0,1 +9129,6,1.0,0,1.4989277124404907,130,0.0,1 +9130,6,0.0,0,1.8639230728149414,131,1.0,1 +9131,6,0.0,0,1.4879279136657715,132,0.0,1 +9132,6,0.0,0,1.390929102897644,133,0.0,1 +9133,6,0.0,0,1.1579303741455078,134,0.0,1 +9134,6,1.0,0,1.7529244422912598,135,1.0,1 +9135,6,1.0,0,1.371929407119751,136,1.0,1 +9136,6,1.0,0,1.342929720878601,137,0.0,1 +9137,6,1.0,0,1.1999305486679077,138,0.0,1 +9138,6,0.0,0,1.2199305295944214,139,0.0,1 +9139,6,1.0,0,1.7059251070022583,140,1.0,1 +9140,6,0.0,0,1.3869291543960571,141,0.0,1 +9141,6,1.0,0,1.4189287424087524,142,1.0,1 +9142,6,1.0,0,1.702925205230713,143,1.0,1 +9143,6,1.0,0,1.669925570487976,144,1.0,1 +9144,6,1.0,0,2.019921064376831,145,1.0,1 +9145,6,1.0,0,1.555927038192749,146,1.0,1 +9146,6,1.0,0,1.3049302101135254,147,1.0,1 +9147,6,1.0,0,1.3699294328689575,148,1.0,1 +9148,6,1.0,0,1.2839305400848389,149,0.0,1 +9149,6,1.0,0,1.3149300813674927,150,1.0,1 +9150,6,1.0,0,1.3409297466278076,151,0.0,1 +9151,6,1.0,0,1.2429306507110596,152,0.0,1 +9152,6,0.0,0,1.551927089691162,153,0.0,1 +9153,6,0.0,0,1.6139262914657593,154,0.0,1 +9154,6,0.0,0,1.2739306688308716,155,0.0,1 +9155,6,0.0,0,1.2909303903579712,156,0.0,1 +9156,6,0.0,0,1.2249305248260498,157,0.0,1 +9157,6,0.0,0,1.1709305047988892,158,0.0,1 +9158,6,1.0,0,1.8239235877990723,159,0.0,1 +9159,6,1.0,0,1.9879214763641357,160,1.0,1 +9160,6,1.0,0,1.4249286651611328,161,0.0,1 +9161,6,0.0,0,1.3919291496276855,162,0.0,1 +9162,6,1.0,0,1.7859240770339966,163,1.0,1 +9163,6,1.0,0,1.529927372932434,164,1.0,1 +9164,6,1.0,0,1.6649255752563477,165,1.0,1 +9165,6,1.0,0,1.205930471420288,166,1.0,1 +9166,6,1.0,0,1.5069276094436646,167,0.0,1 +9167,6,1.0,0,1.3349298238754272,168,0.0,1 +9168,6,1.0,0,1.6879253387451172,169,1.0,1 +9169,6,1.0,0,1.1709305047988892,170,1.0,1 +9170,6,1.0,0,1.2939304113388062,171,1.0,1 +9171,6,1.0,0,1.6829254627227783,172,1.0,1 +9172,6,1.0,0,1.3139301538467407,173,1.0,1 +9173,6,1.0,0,1.3619295358657837,174,1.0,1 +9174,6,1.0,0,1.4509283304214478,175,1.0,1 +9175,6,1.0,0,1.368929386138916,176,1.0,1 +9176,6,1.0,0,1.250930666923523,177,1.0,1 +9177,6,1.0,0,1.1929304599761963,178,1.0,1 +9178,6,1.0,0,1.150930404663086,179,1.0,1 +9179,6,1.0,0,1.3549295663833618,180,1.0,1 +9180,6,1.0,0,2.225930690765381,181,1.0,1 +9181,6,1.0,0,1.327929973602295,182,1.0,1 +9182,6,1.0,0,1.6609256267547607,183,1.0,1 +9183,6,1.0,0,1.1549304723739624,184,1.0,1 +9184,6,1.0,0,1.5929265022277832,185,1.0,1 +9185,6,1.0,0,1.6569256782531738,186,1.0,1 +9186,6,1.0,0,1.2409305572509766,187,1.0,1 +9187,6,1.0,0,1.3779293298721313,188,1.0,1 +9188,6,0.0,0,1.2459306716918945,189,0.0,1 +9189,6,1.0,0,2.041922092437744,190,1.0,1 +9190,6,1.0,0,1.65492582321167,191,1.0,1 +9191,6,1.0,0,1.6139262914657593,192,1.0,1 +9192,6,1.0,0,2.0019211769104004,193,1.0,1 +9193,6,1.0,0,1.5479271411895752,194,1.0,1 +9194,6,1.0,0,1.4439284801483154,195,0.0,1 +9195,6,1.0,0,1.394929051399231,196,1.0,1 +9196,6,1.0,0,1.6149263381958008,197,0.0,1 +9197,6,1.0,0,1.934922218322754,198,1.0,1 +9198,6,1.0,0,1.2699306011199951,199,1.0,1 +9199,6,0.0,0,1.1879304647445679,200,0.0,1 +9200,6,1.0,0,1.64892578125,201,1.0,1 +9201,6,1.0,0,1.3599295616149902,202,1.0,1 +9202,6,1.0,0,1.27293062210083,203,1.0,1 +9203,6,0.0,0,1.7989239692687988,204,1.0,1 +9204,6,1.0,0,1.6559257507324219,205,1.0,1 +9205,6,0.0,0,1.1889305114746094,206,0.0,1 +9206,6,1.0,0,1.4589282274246216,207,1.0,1 +9207,6,1.0,0,1.4839279651641846,208,0.0,1 +9208,6,0.0,0,1.327929973602295,209,0.0,1 +9209,6,0.0,0,1.46392822265625,210,0.0,1 +9210,6,1.0,0,1.7579244375228882,211,1.0,1 +9211,6,1.0,0,1.7109251022338867,212,1.0,1 +9212,6,1.0,0,1.3579295873641968,213,1.0,1 +9213,6,1.0,0,1.4839279651641846,214,1.0,1 +9214,6,1.0,0,1.769924283027649,215,1.0,1 +9215,6,1.0,0,1.2339305877685547,216,1.0,1 +9216,6,1.0,0,1.4749280214309692,217,1.0,1 +9217,6,1.0,0,1.2669306993484497,218,1.0,1 +9218,6,1.0,0,1.4279286861419678,219,1.0,1 +9219,6,1.0,0,1.5789268016815186,220,1.0,1 +9220,6,1.0,0,1.6439259052276611,221,1.0,1 +9221,6,1.0,0,1.2789305448532104,222,1.0,1 +9222,6,1.0,0,2.054922580718994,223,0.0,1 +9223,6,0.0,0,1.9159224033355713,224,0.0,1 +9224,6,0.0,0,1.97892165184021,225,0.0,1 +9225,6,1.0,0,1.924922227859497,226,1.0,1 +9226,6,1.0,0,1.5649268627166748,227,1.0,1 +9227,6,0.0,0,1.4119288921356201,228,0.0,1 +9228,6,1.0,0,1.4029289484024048,229,1.0,1 +9229,6,1.0,0,1.5159275531768799,230,1.0,1 +9230,6,1.0,0,1.2359305620193481,231,1.0,1 +9231,6,1.0,0,1.4589282274246216,232,1.0,1 +9232,6,1.0,0,1.2679306268692017,233,0.0,1 +9233,6,0.0,0,1.5189274549484253,234,0.0,1 +9234,6,1.0,0,1.220930576324463,235,0.0,1 +9235,6,0.0,0,1.4569282531738281,236,1.0,1 +9236,6,0.0,0,1.4539283514022827,237,1.0,1 +9237,6,0.0,0,1.080930233001709,238,0.0,1 +9238,6,0.0,0,1.275930643081665,239,0.0,1 +9239,6,0.0,0,1.6389260292053223,240,0.0,1 +9240,6,0.0,0,1.9999213218688965,241,0.0,1 +9241,6,0.0,0,1.4949277639389038,242,0.0,1 +9242,6,1.0,0,1.438928484916687,243,1.0,1 +9243,6,1.0,0,1.651925802230835,244,1.0,1 +9244,6,1.0,0,2.217930316925049,245,1.0,1 +9245,6,0.0,0,1.3599295616149902,246,0.0,1 +9246,6,1.0,0,1.4719281196594238,247,1.0,1 +9247,6,1.0,0,1.5799267292022705,248,0.0,1 +9248,6,1.0,0,1.279930591583252,249,1.0,1 +9249,6,1.0,0,1.1759305000305176,250,1.0,1 +9250,6,1.0,0,1.3959290981292725,251,1.0,1 +9251,6,1.0,0,1.5209274291992188,252,1.0,1 +9252,6,1.0,0,1.3329298496246338,253,1.0,1 +9253,6,1.0,0,1.7809240818023682,254,1.0,1 +9254,6,1.0,0,1.644925832748413,255,1.0,1 +9255,6,0.0,0,1.792923927307129,256,0.0,1 +9256,6,1.0,0,1.8719229698181152,257,1.0,1 +9257,6,1.0,0,1.4189287424087524,258,1.0,1 +9258,6,1.0,0,1.4259287118911743,259,0.0,1 +9259,6,1.0,0,1.8439233303070068,260,1.0,1 +9260,6,1.0,0,1.3779293298721313,261,1.0,1 +9261,6,1.0,0,1.1799304485321045,262,1.0,1 +9262,6,1.0,0,1.5019277334213257,263,0.0,1 +9263,6,0.0,0,1.367929458618164,264,0.0,1 +9264,6,1.0,0,1.5229275226593018,265,0.0,1 +9265,6,0.0,0,1.3439297676086426,266,0.0,1 +9266,6,0.0,0,1.2829304933547974,267,0.0,1 +9267,6,1.0,0,2.1839284896850586,268,1.0,1 +9268,6,1.0,0,1.5429272651672363,269,1.0,1 +9269,6,1.0,0,1.4079289436340332,270,1.0,1 +9270,6,1.0,0,1.7339247465133667,271,0.0,1 +9271,6,1.0,0,2.1529271602630615,272,1.0,1 +9272,6,1.0,0,1.4269286394119263,273,1.0,1 +9273,6,1.0,0,1.3339298963546753,274,1.0,1 +9274,6,1.0,0,1.3589295148849487,275,1.0,1 +9275,6,1.0,0,1.2269306182861328,276,0.0,1 +9276,6,1.0,0,2.4529411792755127,277,0.0,1 +9277,6,0.0,0,1.3449296951293945,278,0.0,1 +9278,6,0.0,0,2.4149394035339355,279,0.0,1 +9279,6,0.0,0,2.029921531677246,280,0.0,1 +9280,6,0.0,0,1.144930362701416,281,0.0,1 +9281,6,1.0,0,1.420928716659546,282,1.0,1 +9282,6,1.0,0,1.3489296436309814,283,1.0,1 +9283,6,1.0,0,1.298930287361145,284,1.0,1 +9284,6,1.0,0,1.5469272136688232,285,0.0,1 +9285,6,0.0,0,1.7529244422912598,286,0.0,1 +9286,6,1.0,0,1.8069238662719727,287,1.0,1 +9287,6,1.0,0,1.3879292011260986,288,1.0,1 +9288,6,1.0,0,1.5059276819229126,289,1.0,1 +9289,6,1.0,0,1.4659281969070435,290,1.0,1 +9290,6,1.0,0,1.92692232131958,291,0.0,1 +9291,6,1.0,0,1.8009238243103027,292,1.0,1 +9292,6,1.0,0,1.4519283771514893,293,1.0,1 +9293,6,1.0,0,1.3299299478530884,294,1.0,1 +9294,6,1.0,0,1.305930256843567,295,1.0,1 +9295,6,1.0,0,1.6099263429641724,296,0.0,1 +9296,6,0.0,0,2.305934429168701,297,0.0,1 +9297,6,0.0,0,1.694925308227539,298,0.0,1 +9298,6,1.0,0,2.274932861328125,299,1.0,1 +9299,6,1.0,0,1.7739242315292358,300,1.0,1 +9300,6,1.0,0,1.3349298238754272,301,1.0,1 +9301,6,1.0,0,1.1299303770065308,302,1.0,1 +9302,6,1.0,0,1.7549245357513428,303,0.0,1 +9303,6,0.0,0,2.1789283752441406,304,0.0,1 +9304,6,1.0,0,1.5009276866912842,305,0.0,1 +9305,6,1.0,0,1.6889252662658691,306,1.0,1 +9306,6,1.0,0,1.214930534362793,307,1.0,1 +9307,6,1.0,0,1.2329305410385132,308,1.0,1 +9308,6,1.0,0,1.3919291496276855,309,1.0,1 +9309,6,1.0,0,1.2899304628372192,310,1.0,1 +9310,6,1.0,0,1.2749305963516235,311,1.0,1 +9311,6,1.0,0,1.3229299783706665,312,1.0,1 +9312,6,1.0,0,1.2169305086135864,313,1.0,1 +9313,6,1.0,0,1.3009302616119385,314,1.0,1 +9314,6,1.0,0,1.3619295358657837,315,1.0,1 +9315,6,1.0,0,1.4749280214309692,316,1.0,1 +9316,6,1.0,0,1.2659306526184082,317,1.0,1 +9317,6,1.0,0,1.6419259309768677,318,1.0,1 +9318,6,1.0,0,1.4519283771514893,319,1.0,1 +9319,6,1.0,0,2.1629276275634766,320,1.0,1 +9320,6,1.0,0,1.2429306507110596,321,0.0,1 +9321,6,1.0,0,2.6229491233825684,322,1.0,1 +9322,6,1.0,0,1.4759280681610107,323,1.0,1 +9323,6,1.0,0,1.210930585861206,324,0.0,1 +9324,6,1.0,0,1.5149275064468384,325,0.0,1 +9325,6,1.0,0,1.9919214248657227,326,1.0,1 +9326,6,1.0,0,2.039921760559082,327,0.0,1 +9327,6,0.0,0,1.241930603981018,328,0.0,1 +9328,6,1.0,0,1.8529231548309326,329,1.0,1 +9329,6,1.0,0,1.5849266052246094,330,1.0,1 +9330,6,1.0,0,1.2259305715560913,331,1.0,1 +9331,6,1.0,0,1.5429272651672363,332,1.0,1 +9332,6,1.0,0,1.4489283561706543,333,1.0,1 +9333,6,1.0,0,1.3879292011260986,334,0.0,1 +9334,6,0.0,0,2.1569273471832275,335,0.0,1 +9335,6,1.0,0,1.971921682357788,336,1.0,1 +9336,6,1.0,0,1.529927372932434,337,1.0,1 +9337,6,1.0,0,1.4319286346435547,338,1.0,1 +9338,6,1.0,0,1.3369297981262207,339,0.0,1 +9339,6,0.0,0,1.5719268321990967,340,0.0,1 +9340,6,0.0,0,2.3839378356933594,341,1.0,1 +9341,6,0.0,0,1.1059303283691406,342,0.0,1 +9342,6,0.0,0,1.2359305620193481,343,0.0,1 +9343,6,0.0,0,2.486942768096924,344,0.0,1 +9344,6,0.0,0,1.9389221668243408,345,0.0,1 +9345,6,1.0,0,1.761924386024475,346,0.0,1 +9346,6,0.0,0,1.3659294843673706,347,0.0,1 +9347,6,0.0,0,1.5509271621704102,348,0.0,1 +9348,6,1.0,0,1.6749255657196045,349,1.0,1 +9349,6,0.0,0,1.2889304161071777,350,1.0,1 +9350,6,0.0,0,1.6159262657165527,351,0.0,1 +9351,6,1.0,0,1.2689306735992432,352,1.0,1 +9352,6,1.0,0,1.62592613697052,353,0.0,1 +9353,6,0.0,0,1.511927604675293,354,0.0,1 +9354,6,1.0,0,1.1999305486679077,355,1.0,1 +9355,6,1.0,0,1.4489283561706543,356,1.0,1 +9356,6,1.0,0,1.7289247512817383,357,1.0,1 +9357,6,1.0,0,1.438928484916687,358,1.0,1 +9358,6,1.0,0,1.6389260292053223,359,0.0,1 +9359,6,1.0,0,1.7329246997833252,360,1.0,1 +9360,6,0.0,0,1.6199262142181396,361,0.0,1 +9361,6,1.0,0,1.210930585861206,362,1.0,1 +9362,6,1.0,0,1.2339305877685547,363,1.0,1 +9363,6,1.0,0,1.4889278411865234,364,1.0,1 +9364,6,1.0,0,1.1379303932189941,365,1.0,1 +9365,6,1.0,0,1.4589282274246216,366,0.0,1 +9366,6,1.0,0,1.412928819656372,367,1.0,1 +9367,6,1.0,0,1.416928768157959,368,1.0,1 +9368,6,1.0,0,1.5699268579483032,369,1.0,1 +9369,6,1.0,0,1.6429259777069092,370,1.0,1 +9370,6,1.0,0,1.6149263381958008,371,1.0,1 +9371,6,1.0,0,1.5659269094467163,372,1.0,1 +9372,6,1.0,0,1.294930338859558,373,0.0,1 +9373,6,1.0,0,1.4409284591674805,374,0.0,1 +9374,6,0.0,0,1.1969305276870728,375,1.0,1 +9375,6,0.0,0,1.367929458618164,376,0.0,1 +9376,6,0.0,0,2.072923421859741,377,0.0,1 +9377,6,1.0,0,2.068923234939575,378,0.0,1 +9378,6,1.0,0,1.60292649269104,379,1.0,1 +9379,6,1.0,0,1.2279305458068848,380,0.0,1 +9380,6,1.0,0,1.6119263172149658,381,1.0,1 +9381,6,1.0,0,1.6139262914657593,382,1.0,1 +9382,6,1.0,0,1.2609306573867798,383,1.0,1 +9383,6,1.0,0,1.174930453300476,384,1.0,1 +9384,6,1.0,0,1.3319299221038818,385,0.0,1 +9385,6,0.0,0,1.5139275789260864,386,0.0,1 +9386,6,0.0,0,1.8519232273101807,387,0.0,1 +9387,6,1.0,0,2.295933723449707,388,1.0,1 +9388,6,1.0,0,1.7839241027832031,389,1.0,1 +9389,6,1.0,0,1.4749280214309692,390,1.0,1 +9390,6,1.0,0,1.8259235620498657,391,1.0,1 +9391,6,1.0,0,1.644925832748413,392,1.0,1 +9392,6,1.0,0,1.4719281196594238,393,1.0,1 +9393,6,1.0,0,1.6839253902435303,394,1.0,1 +9394,6,1.0,0,1.3409297466278076,395,0.0,1 +9395,6,1.0,0,1.6559257507324219,396,1.0,1 +9396,6,1.0,0,1.6819254159927368,397,0.0,1 +9397,6,1.0,0,1.4119288921356201,398,1.0,1 +9398,6,1.0,0,2.323935031890869,399,1.0,1 +9399,6,0.0,0,1.3139301538467407,400,0.0,1 +9400,6,0.0,0,1.1429303884506226,401,1.0,1 +9401,6,1.0,0,1.788923978805542,402,1.0,1 +9402,6,1.0,0,1.4529283046722412,403,1.0,1 +9403,6,0.0,0,1.3639295101165771,404,0.0,1 +9404,6,1.0,0,1.279930591583252,405,1.0,1 +9405,6,1.0,0,1.5959265232086182,406,1.0,1 +9406,6,1.0,0,1.7749242782592773,407,1.0,1 +9407,6,1.0,0,1.64892578125,408,1.0,1 +9408,6,1.0,0,1.393929123878479,409,1.0,1 +9409,6,1.0,0,1.3139301538467407,410,1.0,1 +9410,6,1.0,0,1.2709306478500366,411,0.0,1 +9411,6,1.0,0,2.221930503845215,412,1.0,1 +9412,6,1.0,0,1.4229286909103394,413,1.0,1 +9413,6,1.0,0,1.3839292526245117,414,1.0,1 +9414,6,1.0,0,1.415928840637207,415,1.0,1 +9415,6,1.0,0,1.3819292783737183,416,1.0,1 +9416,6,1.0,0,1.5989265441894531,417,0.0,1 +9417,6,0.0,0,1.4459284543991089,418,1.0,1 +9418,6,1.0,0,1.8709230422973633,419,1.0,1 +9419,6,1.0,0,1.9819215536117554,420,0.0,1 +9420,6,0.0,0,1.1269303560256958,421,1.0,1 +9421,6,0.0,0,1.2839305400848389,422,0.0,1 +9422,6,1.0,0,1.4929277896881104,423,1.0,1 +9423,6,1.0,0,1.4629281759262085,424,1.0,1 +9424,6,1.0,0,1.184930443763733,425,0.0,1 +9425,6,1.0,0,1.5979264974594116,426,1.0,1 +9426,6,1.0,0,1.4619282484054565,427,1.0,1 +9427,6,1.0,0,1.4529283046722412,428,0.0,1 +9428,6,1.0,0,1.5799267292022705,429,1.0,1 +9429,6,1.0,0,1.9989213943481445,430,1.0,1 +9430,6,1.0,0,1.8909227848052979,431,0.0,1 +9431,6,0.0,0,1.442928433418274,432,0.0,1 +9432,6,1.0,0,1.3769292831420898,433,1.0,1 +9433,6,1.0,0,1.5499271154403687,434,1.0,1 +9434,6,1.0,0,1.6669256687164307,435,1.0,1 +9435,6,1.0,0,1.3169300556182861,436,0.0,1 +9436,6,0.0,0,1.3669294118881226,437,0.0,1 +9437,6,1.0,0,1.971921682357788,438,1.0,1 +9438,6,1.0,0,1.3369297981262207,439,1.0,1 +9439,6,1.0,0,1.4659281969070435,440,1.0,1 +9440,6,1.0,0,1.6909253597259521,441,1.0,1 +9441,6,1.0,0,1.2959303855895996,442,1.0,1 +9442,6,1.0,0,1.6059263944625854,443,1.0,1 +9443,6,1.0,0,1.2199305295944214,444,1.0,1 +9444,6,1.0,0,1.3009302616119385,445,0.0,1 +9445,6,1.0,0,1.8489232063293457,446,1.0,1 +9446,6,1.0,0,1.364929437637329,447,1.0,1 +9447,6,1.0,0,1.4959278106689453,448,1.0,1 +9448,6,1.0,0,1.371929407119751,449,1.0,1 +9449,6,1.0,0,1.2269306182861328,450,1.0,1 +9450,6,1.0,0,1.241930603981018,451,1.0,1 +9451,6,1.0,0,1.177930474281311,452,0.0,1 +9452,6,0.0,0,1.4559283256530762,453,1.0,1 +9453,6,0.0,0,1.4879279136657715,454,0.0,1 +9454,6,0.0,0,1.3399298191070557,455,0.0,1 +9455,6,1.0,0,1.6909253597259521,456,1.0,1 +9456,6,1.0,0,1.1859304904937744,457,0.0,1 +9457,6,1.0,0,1.3879292011260986,458,1.0,1 +9458,6,1.0,0,1.3919291496276855,459,1.0,1 +9459,6,1.0,0,1.2819305658340454,460,1.0,1 +9460,6,1.0,0,1.2639306783676147,461,1.0,1 +9461,6,1.0,0,1.861923098564148,462,0.0,1 +9462,6,0.0,0,1.6129262447357178,463,0.0,1 +9463,6,1.0,0,1.5229275226593018,464,1.0,1 +9464,6,1.0,0,1.4809279441833496,465,1.0,1 +9465,6,1.0,0,1.6319260597229004,466,1.0,1 +9466,6,1.0,0,1.3799293041229248,467,1.0,1 +9467,6,1.0,0,1.3769292831420898,468,1.0,1 +9468,6,1.0,0,1.2909303903579712,469,0.0,1 +9469,6,0.0,0,1.213930606842041,470,0.0,1 +9470,6,1.0,0,1.9779216051101685,471,0.0,1 +9471,6,1.0,0,1.4399285316467285,472,1.0,1 +9472,6,1.0,0,1.3739293813705444,473,1.0,1 +9473,6,1.0,0,1.5889265537261963,474,0.0,1 +9474,6,0.0,0,1.4939278364181519,475,0.0,1 +9475,6,1.0,0,1.3789292573928833,476,1.0,1 +9476,6,1.0,0,1.8759229183197021,477,0.0,1 +9477,6,0.0,0,2.295933723449707,478,0.0,1 +9478,6,0.0,0,1.976921558380127,479,0.0,1 +9479,6,1.0,0,1.3449296951293945,480,1.0,1 +9480,6,1.0,0,1.9529218673706055,481,0.0,1 +9481,6,0.0,0,1.1269303560256958,482,0.0,1 +9482,6,0.0,0,1.6149263381958008,483,0.0,1 +9483,6,1.0,0,1.786924123764038,484,1.0,1 +9484,6,1.0,0,1.323930025100708,485,1.0,1 +9485,6,1.0,0,1.2679306268692017,486,1.0,1 +9486,6,1.0,0,1.5509271621704102,487,1.0,1 +9487,6,0.0,0,1.3519296646118164,488,0.0,1 +9488,6,1.0,0,1.8439233303070068,489,1.0,1 +9489,6,1.0,0,1.1559303998947144,490,1.0,1 +9490,6,1.0,0,1.2619307041168213,491,1.0,1 +9491,6,1.0,0,1.8709230422973633,492,1.0,1 +9492,6,1.0,0,1.2689306735992432,493,1.0,1 +9493,6,1.0,0,1.220930576324463,494,1.0,1 +9494,6,1.0,0,1.3179301023483276,495,1.0,1 +9495,6,1.0,0,1.3439297676086426,496,1.0,1 +9496,6,1.0,0,1.2609306573867798,497,1.0,1 +9497,6,0.0,0,1.5809266567230225,498,0.0,1 +9498,6,1.0,0,1.3159301280975342,499,1.0,1 +9499,6,1.0,0,1.3919291496276855,500,1.0,1 +9500,6,0.0,1,1.3629294633865356,1,0.0,1 +9501,6,0.0,1,1.7499245405197144,2,0.0,1 +9502,6,1.0,1,2.027921199798584,3,0.0,1 +9503,6,1.0,1,1.909922480583191,4,0.0,1 +9504,6,1.0,1,1.9649217128753662,5,1.0,1 +9505,6,1.0,1,1.1379303932189941,6,1.0,1 +9506,6,0.0,1,1.560926914215088,7,1.0,1 +9507,6,0.0,1,1.3379298448562622,8,0.0,1 +9508,6,0.0,1,1.4659281969070435,9,0.0,1 +9509,6,0.0,1,1.559926986694336,10,1.0,1 +9510,6,0.0,1,1.5359272956848145,11,0.0,1 +9511,6,1.0,1,1.2749305963516235,12,1.0,1 +9512,6,1.0,1,1.2589306831359863,13,1.0,1 +9513,6,1.0,1,1.2629306316375732,14,1.0,1 +9514,6,1.0,1,1.4779280424118042,15,0.0,1 +9515,6,1.0,1,1.788923978805542,16,0.0,1 +9516,6,0.0,1,1.5059276819229126,17,0.0,1 +9517,6,1.0,1,2.232930898666382,18,1.0,1 +9518,6,0.0,1,1.8009238243103027,19,1.0,1 +9519,6,0.0,1,1.1049302816390991,20,1.0,1 +9520,6,1.0,1,1.7899240255355835,21,0.0,1 +9521,6,0.0,1,1.5979264974594116,22,0.0,1 +9522,6,0.0,1,1.62592613697052,23,0.0,1 +9523,6,0.0,1,1.8669230937957764,24,0.0,1 +9524,6,1.0,1,1.6089262962341309,25,1.0,1 +9525,6,1.0,1,1.5319273471832275,26,1.0,1 +9526,6,1.0,1,1.8199236392974854,27,1.0,1 +9527,6,1.0,1,1.5539270639419556,28,1.0,1 +9528,6,1.0,1,1.183930516242981,29,1.0,1 +9529,6,1.0,1,1.5989265441894531,30,1.0,1 +9530,6,1.0,1,1.5419272184371948,31,1.0,1 +9531,6,1.0,1,1.464928150177002,32,1.0,1 +9532,6,1.0,1,1.1919305324554443,33,0.0,1 +9533,6,1.0,1,2.1909289360046387,34,1.0,1 +9534,6,1.0,1,1.5439271926879883,35,1.0,1 +9535,6,1.0,1,2.1579275131225586,36,0.0,1 +9536,6,1.0,1,1.5949265956878662,37,1.0,1 +9537,6,1.0,1,1.555927038192749,38,1.0,1 +9538,6,1.0,1,1.4629281759262085,39,1.0,1 +9539,6,1.0,1,1.8239235877990723,40,0.0,1 +9540,6,1.0,1,1.60292649269104,41,1.0,1 +9541,6,1.0,1,1.1329303979873657,42,1.0,1 +9542,6,1.0,1,1.3289299011230469,43,1.0,1 +9543,6,0.0,1,1.5309274196624756,44,1.0,1 +9544,6,0.0,1,1.7749242782592773,45,0.0,1 +9545,6,1.0,1,1.8859227895736694,46,0.0,1 +9546,6,1.0,1,1.6209261417388916,47,1.0,1 +9547,6,1.0,1,1.2839305400848389,48,1.0,1 +9548,6,1.0,1,2.1529271602630615,49,1.0,1 +9549,6,1.0,1,1.7549245357513428,50,1.0,1 +9550,6,1.0,1,1.372929334640503,51,1.0,1 +9551,6,1.0,1,1.3579295873641968,52,1.0,1 +9552,6,1.0,1,1.3809292316436768,53,1.0,1 +9553,6,1.0,1,1.7939239740371704,54,1.0,1 +9554,6,1.0,1,1.3879292011260986,55,1.0,1 +9555,6,0.0,1,1.3129301071166992,56,0.0,1 +9556,6,1.0,1,1.560926914215088,57,1.0,1 +9557,6,1.0,1,1.24893057346344,58,1.0,1 +9558,6,1.0,1,1.3809292316436768,59,0.0,1 +9559,6,0.0,1,1.4879279136657715,60,1.0,1 +9560,6,0.0,1,1.4819279909133911,61,0.0,1 +9561,6,0.0,1,1.319930076599121,62,0.0,1 +9562,6,1.0,1,2.012921094894409,63,0.0,1 +9563,6,0.0,1,1.5259274244308472,64,0.0,1 +9564,6,0.0,1,1.6819254159927368,65,0.0,1 +9565,6,0.0,1,1.48692786693573,66,1.0,1 +9566,6,0.0,1,1.1679304838180542,67,0.0,1 +9567,6,1.0,1,1.3849291801452637,68,1.0,1 +9568,6,1.0,1,1.3139301538467407,69,1.0,1 +9569,6,1.0,1,1.997921347618103,70,1.0,1 +9570,6,0.0,1,1.2669306993484497,71,0.0,1 +9571,6,1.0,1,1.558927059173584,72,1.0,1 +9572,6,1.0,1,1.5349273681640625,73,1.0,1 +9573,6,1.0,1,1.4009289741516113,74,1.0,1 +9574,6,1.0,1,1.5039277076721191,75,1.0,1 +9575,6,1.0,1,1.2129305601119995,76,1.0,1 +9576,6,1.0,1,1.2309305667877197,77,1.0,1 +9577,6,1.0,1,1.1389304399490356,78,1.0,1 +9578,6,1.0,1,1.174930453300476,79,1.0,1 +9579,6,1.0,1,1.3669294118881226,80,1.0,1 +9580,6,1.0,1,1.6609256267547607,81,0.0,1 +9581,6,0.0,1,2.252931833267212,82,1.0,1 +9582,6,0.0,1,2.1689279079437256,83,0.0,1 +9583,6,0.0,1,1.8079237937927246,84,0.0,1 +9584,6,1.0,1,1.7239248752593994,85,1.0,1 +9585,6,1.0,1,1.4179288148880005,86,1.0,1 +9586,6,1.0,1,1.327929973602295,87,0.0,1 +9587,6,1.0,1,1.4409284591674805,88,1.0,1 +9588,6,1.0,1,1.604926347732544,89,1.0,1 +9589,6,1.0,1,1.3379298448562622,90,1.0,1 +9590,6,1.0,1,1.6729254722595215,91,0.0,1 +9591,6,0.0,1,1.791923999786377,92,0.0,1 +9592,6,1.0,1,1.669925570487976,93,1.0,1 +9593,6,1.0,1,1.6729254722595215,94,1.0,1 +9594,6,1.0,1,1.276930570602417,95,0.0,1 +9595,6,1.0,1,1.62592613697052,96,1.0,1 +9596,6,1.0,1,1.8309235572814941,97,1.0,1 +9597,6,1.0,1,1.3219300508499146,98,0.0,1 +9598,6,1.0,1,2.270932674407959,99,0.0,1 +9599,6,0.0,1,1.3099302053451538,100,1.0,1 +9600,6,0.0,1,1.3159301280975342,101,0.0,1 +9601,6,1.0,1,1.8279235363006592,102,0.0,1 +9602,6,1.0,1,2.2119297981262207,103,1.0,1 +9603,6,1.0,1,1.7329246997833252,104,0.0,1 +9604,6,0.0,1,1.3489296436309814,105,0.0,1 +9605,6,0.0,1,1.2739306688308716,106,1.0,1 +9606,6,0.0,1,1.297930359840393,107,0.0,1 +9607,6,0.0,1,1.7779241800308228,108,0.0,1 +9608,6,0.0,1,1.2009304761886597,109,1.0,1 +9609,6,0.0,1,1.1379303932189941,110,0.0,1 +9610,6,1.0,1,2.2069296836853027,111,1.0,1 +9611,6,1.0,1,1.438928484916687,112,0.0,1 +9612,6,1.0,1,2.1579275131225586,113,0.0,1 +9613,6,0.0,1,1.2659306526184082,114,0.0,1 +9614,6,1.0,1,2.075923442840576,115,1.0,1 +9615,6,1.0,1,1.3329298496246338,116,1.0,1 +9616,6,1.0,1,1.2169305086135864,117,1.0,1 +9617,6,1.0,1,1.3589295148849487,118,1.0,1 +9618,6,1.0,1,1.3589295148849487,119,1.0,1 +9619,6,1.0,1,1.2549306154251099,120,1.0,1 +9620,6,1.0,1,1.3869291543960571,121,1.0,1 +9621,6,1.0,1,1.3839292526245117,122,0.0,1 +9622,6,1.0,1,1.4789279699325562,123,0.0,1 +9623,6,0.0,1,1.1909304857254028,124,0.0,1 +9624,6,0.0,1,1.2959303855895996,125,0.0,1 +9625,6,0.0,1,1.8519232273101807,126,1.0,1 +9626,6,0.0,1,1.6799254417419434,127,1.0,1 +9627,6,0.0,1,1.174930453300476,128,0.0,1 +9628,6,1.0,1,1.441928505897522,129,1.0,1 +9629,6,1.0,1,1.7019251585006714,130,1.0,1 +9630,6,1.0,1,1.5789268016815186,131,1.0,1 +9631,6,1.0,1,1.302930235862732,132,1.0,1 +9632,6,1.0,1,1.4729280471801758,133,1.0,1 +9633,6,1.0,1,2.205929756164551,134,1.0,1 +9634,6,1.0,1,1.3669294118881226,135,0.0,1 +9635,6,1.0,1,1.467928171157837,136,1.0,1 +9636,6,0.0,1,1.1269303560256958,137,0.0,1 +9637,6,1.0,1,1.1969305276870728,138,1.0,1 +9638,6,1.0,1,1.3559296131134033,139,1.0,1 +9639,6,1.0,1,1.6609256267547607,140,0.0,1 +9640,6,1.0,1,1.437928557395935,141,1.0,1 +9641,6,1.0,1,1.482927918434143,142,1.0,1 +9642,6,1.0,1,1.1429303884506226,143,0.0,1 +9643,6,0.0,1,1.8889226913452148,144,1.0,1 +9644,6,0.0,1,1.298930287361145,145,0.0,1 +9645,6,0.0,1,1.9199223518371582,146,0.0,1 +9646,6,0.0,1,1.4809279441833496,147,1.0,1 +9647,6,0.0,1,1.4079289436340332,148,0.0,1 +9648,6,1.0,1,2.3579368591308594,149,1.0,1 +9649,6,1.0,1,1.9659217596054077,150,1.0,1 +9650,6,1.0,1,1.4039289951324463,151,1.0,1 +9651,6,1.0,1,1.5829267501831055,152,0.0,1 +9652,6,0.0,1,1.9529218673706055,153,0.0,1 +9653,6,1.0,1,1.4039289951324463,154,1.0,1 +9654,6,1.0,1,1.3659294843673706,155,1.0,1 +9655,6,1.0,1,1.4719281196594238,156,1.0,1 +9656,6,1.0,1,1.305930256843567,157,0.0,1 +9657,6,1.0,1,1.3149300813674927,158,1.0,1 +9658,6,1.0,1,1.3489296436309814,159,1.0,1 +9659,6,1.0,1,1.5429272651672363,160,1.0,1 +9660,6,1.0,1,1.5259274244308472,161,1.0,1 +9661,6,1.0,1,1.5149275064468384,162,0.0,1 +9662,6,0.0,1,2.1379265785217285,163,1.0,1 +9663,6,0.0,1,1.30193030834198,164,0.0,1 +9664,6,1.0,1,1.4579282999038696,165,1.0,1 +9665,6,1.0,1,1.3659294843673706,166,1.0,1 +9666,6,0.0,1,1.276930570602417,167,1.0,1 +9667,6,1.0,1,1.8689229488372803,168,1.0,1 +9668,6,0.0,1,1.3809292316436768,169,1.0,1 +9669,6,0.0,1,2.6829519271850586,170,0.0,1 +9670,6,1.0,1,1.2839305400848389,171,1.0,1 +9671,6,1.0,1,1.3079302310943604,172,0.0,1 +9672,6,1.0,1,1.24893057346344,173,0.0,1 +9673,6,0.0,1,1.8069238662719727,174,0.0,1 +9674,6,0.0,1,1.3479297161102295,175,0.0,1 +9675,6,0.0,1,1.2689306735992432,176,0.0,1 +9676,6,1.0,1,1.460928201675415,177,1.0,1 +9677,6,1.0,1,1.7669243812561035,178,0.0,1 +9678,6,0.0,1,2.1739282608032227,179,0.0,1 +9679,6,0.0,1,1.6649255752563477,180,1.0,1 +9680,6,0.0,1,1.1759305000305176,181,0.0,1 +9681,6,0.0,1,1.4959278106689453,182,0.0,1 +9682,6,1.0,1,1.247930645942688,183,0.0,1 +9683,6,1.0,1,1.9939213991165161,184,1.0,1 +9684,6,1.0,1,1.32492995262146,185,0.0,1 +9685,6,0.0,1,1.3559296131134033,186,0.0,1 +9686,6,1.0,1,1.5249273777008057,187,1.0,1 +9687,6,1.0,1,1.5949265956878662,188,0.0,1 +9688,6,0.0,1,1.62592613697052,189,0.0,1 +9689,6,0.0,1,1.5319273471832275,190,1.0,1 +9690,6,0.0,1,1.5829267501831055,191,0.0,1 +9691,6,0.0,1,1.934922218322754,192,1.0,1 +9692,6,0.0,1,1.4749280214309692,193,1.0,1 +9693,6,0.0,1,1.3049302101135254,194,0.0,1 +9694,6,0.0,1,2.539945125579834,195,1.0,1 +9695,6,0.0,1,1.3229299783706665,196,1.0,1 +9696,6,0.0,1,1.9929213523864746,197,1.0,1 +9697,6,0.0,1,1.3989289999008179,198,0.0,1 +9698,6,0.0,1,1.319930076599121,199,0.0,1 +9699,6,0.0,1,1.3739293813705444,200,1.0,1 +9700,6,0.0,1,1.2779306173324585,201,0.0,1 +9701,6,1.0,1,1.971921682357788,202,1.0,1 +9702,6,1.0,1,1.327929973602295,203,1.0,1 +9703,6,1.0,1,1.4779280424118042,204,1.0,1 +9704,6,1.0,1,1.2229305505752563,205,0.0,1 +9705,6,0.0,1,1.2379305362701416,206,1.0,1 +9706,6,0.0,1,1.2699306011199951,207,0.0,1 +9707,6,1.0,1,1.3189300298690796,208,0.0,1 +9708,6,1.0,1,1.5109275579452515,209,1.0,1 +9709,6,0.0,1,1.7339247465133667,210,1.0,1 +9710,6,0.0,1,1.2969303131103516,211,0.0,1 +9711,6,1.0,1,2.1029248237609863,212,1.0,1 +9712,6,1.0,1,1.244930624961853,213,1.0,1 +9713,6,1.0,1,1.2599306106567383,214,1.0,1 +9714,6,0.0,1,2.237931251525879,215,1.0,1 +9715,6,0.0,1,1.48692786693573,216,0.0,1 +9716,6,1.0,1,1.6439259052276611,217,0.0,1 +9717,6,1.0,1,2.1419267654418945,218,0.0,1 +9718,6,0.0,1,1.4299286603927612,219,0.0,1 +9719,6,1.0,1,1.3669294118881226,220,1.0,1 +9720,6,1.0,1,1.27293062210083,221,0.0,1 +9721,6,1.0,1,1.646925926208496,222,0.0,1 +9722,6,1.0,1,1.4179288148880005,223,0.0,1 +9723,6,1.0,1,2.26493239402771,224,1.0,1 +9724,6,1.0,1,1.5039277076721191,225,0.0,1 +9725,6,0.0,1,1.6589257717132568,226,1.0,1 +9726,6,0.0,1,1.1459304094314575,227,0.0,1 +9727,6,1.0,1,1.8089237213134766,228,0.0,1 +9728,6,0.0,1,1.2679306268692017,229,0.0,1 +9729,6,1.0,1,1.97892165184021,230,0.0,1 +9730,6,1.0,1,1.9449219703674316,231,1.0,1 +9731,6,1.0,1,1.8689229488372803,232,0.0,1 +9732,6,0.0,1,1.346929669380188,233,0.0,1 +9733,6,1.0,1,1.6109263896942139,234,0.0,1 +9734,6,0.0,1,1.8599231243133545,235,0.0,1 +9735,6,0.0,1,1.350929617881775,236,0.0,1 +9736,6,0.0,1,1.721924901008606,237,1.0,1 +9737,6,0.0,1,1.5259274244308472,238,0.0,1 +9738,6,1.0,1,1.8269236087799072,239,1.0,1 +9739,6,1.0,1,1.6909253597259521,240,1.0,1 +9740,6,1.0,1,1.3169300556182861,241,1.0,1 +9741,6,1.0,1,1.5019277334213257,242,0.0,1 +9742,6,1.0,1,1.4809279441833496,243,1.0,1 +9743,6,1.0,1,1.2879304885864258,244,0.0,1 +9744,6,0.0,1,1.2429306507110596,245,0.0,1 +9745,6,0.0,1,1.2439305782318115,246,0.0,1 +9746,6,0.0,1,1.6169261932373047,247,0.0,1 +9747,6,1.0,1,1.6209261417388916,248,1.0,1 +9748,6,1.0,1,1.6869254112243652,249,1.0,1 +9749,6,1.0,1,1.4839279651641846,250,1.0,1 +9750,6,1.0,1,1.2879304885864258,251,1.0,1 +9751,6,1.0,1,1.9709217548370361,252,0.0,1 +9752,6,0.0,1,1.220930576324463,253,0.0,1 +9753,6,0.0,1,1.4929277896881104,254,0.0,1 +9754,6,1.0,1,1.6609256267547607,255,1.0,1 +9755,6,1.0,1,1.5179275274276733,256,1.0,1 +9756,6,1.0,1,1.9029226303100586,257,1.0,1 +9757,6,1.0,1,1.5699268579483032,258,1.0,1 +9758,6,1.0,1,1.600926399230957,259,0.0,1 +9759,6,1.0,1,2.0979247093200684,260,0.0,1 +9760,6,0.0,1,1.4409284591674805,261,0.0,1 +9761,6,1.0,1,1.6979252099990845,262,0.0,1 +9762,6,0.0,1,1.3639295101165771,263,1.0,1 +9763,6,0.0,1,1.8479232788085938,264,0.0,1 +9764,6,0.0,1,1.241930603981018,265,0.0,1 +9765,6,1.0,1,1.3069301843643188,266,1.0,1 +9766,6,1.0,1,1.3389297723770142,267,0.0,1 +9767,6,1.0,1,1.7229249477386475,268,1.0,1 +9768,6,1.0,1,1.276930570602417,269,1.0,1 +9769,6,1.0,1,1.5449271202087402,270,0.0,1 +9770,6,1.0,1,1.4049289226531982,271,1.0,1 +9771,6,1.0,1,1.8519232273101807,272,0.0,1 +9772,6,1.0,1,1.6319260597229004,273,1.0,1 +9773,6,1.0,1,1.5679268836975098,274,1.0,1 +9774,6,1.0,1,1.371929407119751,275,1.0,1 +9775,6,1.0,1,1.5709269046783447,276,1.0,1 +9776,6,1.0,1,1.5699268579483032,277,1.0,1 +9777,6,1.0,1,1.6389260292053223,278,1.0,1 +9778,6,1.0,1,1.250930666923523,279,1.0,1 +9779,6,1.0,1,1.7379246950149536,280,0.0,1 +9780,6,0.0,1,1.78792405128479,281,0.0,1 +9781,6,0.0,1,1.3479297161102295,282,0.0,1 +9782,6,1.0,1,2.1159253120422363,283,0.0,1 +9783,6,0.0,1,1.9259222745895386,284,0.0,1 +9784,6,1.0,1,1.9069225788116455,285,1.0,1 +9785,6,1.0,1,1.1989305019378662,286,0.0,1 +9786,6,0.0,1,1.3329298496246338,287,0.0,1 +9787,6,0.0,1,1.5919265747070312,288,1.0,1 +9788,6,0.0,1,1.651925802230835,289,0.0,1 +9789,6,1.0,1,1.2299306392669678,290,1.0,1 +9790,6,1.0,1,1.7789242267608643,291,1.0,1 +9791,6,1.0,1,1.3169300556182861,292,0.0,1 +9792,6,0.0,1,1.7669243812561035,293,0.0,1 +9793,6,1.0,1,1.5469272136688232,294,1.0,1 +9794,6,1.0,1,1.7559244632720947,295,0.0,1 +9795,6,1.0,1,1.3129301071166992,296,1.0,1 +9796,6,1.0,1,1.7939239740371704,297,0.0,1 +9797,6,1.0,1,1.5829267501831055,298,1.0,1 +9798,6,1.0,1,1.6279261112213135,299,1.0,1 +9799,6,1.0,1,2.1989293098449707,300,1.0,1 +9800,6,1.0,1,1.4459284543991089,301,0.0,1 +9801,6,1.0,1,1.3379298448562622,302,1.0,1 +9802,6,1.0,1,1.599926471710205,303,1.0,1 +9803,6,1.0,1,1.4149287939071655,304,1.0,1 +9804,6,1.0,1,1.3409297466278076,305,1.0,1 +9805,6,1.0,1,1.2169305086135864,306,1.0,1 +9806,6,1.0,1,1.7159249782562256,307,1.0,1 +9807,6,1.0,1,1.5949265956878662,308,1.0,1 +9808,6,1.0,1,1.2859305143356323,309,1.0,1 +9809,6,1.0,1,1.3259299993515015,310,1.0,1 +9810,6,1.0,1,1.8649230003356934,311,1.0,1 +9811,6,1.0,1,1.4089288711547852,312,0.0,1 +9812,6,1.0,1,1.4889278411865234,313,1.0,1 +9813,6,1.0,1,1.302930235862732,314,0.0,1 +9814,6,1.0,1,1.5469272136688232,315,0.0,1 +9815,6,0.0,1,1.3299299478530884,316,0.0,1 +9816,6,1.0,1,1.6459258794784546,317,1.0,1 +9817,6,1.0,1,1.6089262962341309,318,1.0,1 +9818,6,1.0,1,1.2779306173324585,319,1.0,1 +9819,6,1.0,1,1.2839305400848389,320,1.0,1 +9820,6,1.0,1,1.8549232482910156,321,1.0,1 +9821,6,1.0,1,1.3999290466308594,322,1.0,1 +9822,6,1.0,1,2.3809378147125244,323,1.0,1 +9823,6,1.0,1,1.2999303340911865,324,0.0,1 +9824,6,1.0,1,1.4949277639389038,325,1.0,1 +9825,6,1.0,1,1.1699304580688477,326,0.0,1 +9826,6,0.0,1,2.4489409923553467,327,0.0,1 +9827,6,0.0,1,1.9569218158721924,328,1.0,1 +9828,6,0.0,1,1.2589306831359863,329,1.0,1 +9829,6,0.0,1,1.5369272232055664,330,0.0,1 +9830,6,1.0,1,1.3329298496246338,331,1.0,1 +9831,6,1.0,1,1.48692786693573,332,1.0,1 +9832,6,1.0,1,1.2069305181503296,333,1.0,1 +9833,6,1.0,1,1.3389297723770142,334,1.0,1 +9834,6,1.0,1,1.2839305400848389,335,1.0,1 +9835,6,1.0,1,2.1689279079437256,336,1.0,1 +9836,6,1.0,1,1.529927372932434,337,0.0,1 +9837,6,1.0,1,1.4229286909103394,338,1.0,1 +9838,6,1.0,1,1.5289273262023926,339,0.0,1 +9839,6,0.0,1,1.64892578125,340,0.0,1 +9840,6,1.0,1,1.4769279956817627,341,1.0,1 +9841,6,1.0,1,1.2009304761886597,342,1.0,1 +9842,6,1.0,1,1.2529306411743164,343,0.0,1 +9843,6,1.0,1,1.5929265022277832,344,1.0,1 +9844,6,1.0,1,1.4449284076690674,345,1.0,1 +9845,6,1.0,1,1.2719306945800781,346,1.0,1 +9846,6,1.0,1,1.1939305067062378,347,1.0,1 +9847,6,1.0,1,1.5239274501800537,348,0.0,1 +9848,6,1.0,1,1.7749242782592773,349,1.0,1 +9849,6,1.0,1,1.997921347618103,350,1.0,1 +9850,6,1.0,1,1.251930594444275,351,1.0,1 +9851,6,1.0,1,1.3419297933578491,352,1.0,1 +9852,6,1.0,1,1.5029276609420776,353,1.0,1 +9853,6,1.0,1,1.6879253387451172,354,1.0,1 +9854,6,1.0,1,1.6399259567260742,355,1.0,1 +9855,6,1.0,1,1.4559283256530762,356,0.0,1 +9856,6,0.0,1,1.9989213943481445,357,0.0,1 +9857,6,0.0,1,1.979921579360962,358,0.0,1 +9858,6,0.0,1,1.4709280729293823,359,1.0,1 +9859,6,0.0,1,1.294930338859558,360,0.0,1 +9860,6,0.0,1,1.3849291801452637,361,1.0,1 +9861,6,0.0,1,1.1899304389953613,362,0.0,1 +9862,6,1.0,1,1.6639256477355957,363,0.0,1 +9863,6,0.0,1,1.9939213991165161,364,1.0,1 +9864,6,0.0,1,1.2529306411743164,365,0.0,1 +9865,6,0.0,1,2.3969385623931885,366,1.0,1 +9866,6,0.0,1,1.279930591583252,367,0.0,1 +9867,6,1.0,1,1.2679306268692017,368,0.0,1 +9868,6,1.0,1,1.5479271411895752,369,1.0,1 +9869,6,1.0,1,1.2819305658340454,370,1.0,1 +9870,6,1.0,1,1.4279286861419678,371,1.0,1 +9871,6,1.0,1,1.3539296388626099,372,1.0,1 +9872,6,1.0,1,1.2189306020736694,373,1.0,1 +9873,6,1.0,1,1.4789279699325562,374,0.0,1 +9874,6,1.0,1,1.6199262142181396,375,1.0,1 +9875,6,1.0,1,1.2959303855895996,376,1.0,1 +9876,6,1.0,1,1.7319247722625732,377,1.0,1 +9877,6,0.0,1,1.1269303560256958,378,1.0,1 +9878,6,1.0,1,1.1819305419921875,379,1.0,1 +9879,6,0.0,1,1.8219236135482788,380,1.0,1 +9880,6,0.0,1,2.1439266204833984,381,1.0,1 +9881,6,0.0,1,1.460928201675415,382,1.0,1 +9882,6,0.0,1,1.5209274291992188,383,0.0,1 +9883,6,1.0,1,1.3519296646118164,384,1.0,1 +9884,6,1.0,1,1.4249286651611328,385,1.0,1 +9885,6,1.0,1,1.6339260339736938,386,0.0,1 +9886,6,0.0,1,1.394929051399231,387,0.0,1 +9887,6,1.0,1,1.5689268112182617,388,0.0,1 +9888,6,1.0,1,2.1739282608032227,389,0.0,1 +9889,6,1.0,1,1.9049224853515625,390,1.0,1 +9890,6,1.0,1,1.604926347732544,391,0.0,1 +9891,6,0.0,1,1.4469283819198608,392,0.0,1 +9892,6,0.0,1,2.253931999206543,393,1.0,1 +9893,6,0.0,1,1.9869215488433838,394,0.0,1 +9894,6,0.0,1,1.652925729751587,395,1.0,1 +9895,6,0.0,1,1.2319306135177612,396,0.0,1 +9896,6,0.0,1,1.3159301280975342,397,0.0,1 +9897,6,1.0,1,1.6799254417419434,398,1.0,1 +9898,6,1.0,1,1.9709217548370361,399,1.0,1 +9899,6,1.0,1,1.2679306268692017,400,1.0,1 +9900,6,1.0,1,1.4269286394119263,401,0.0,1 +9901,6,1.0,1,2.022921085357666,402,0.0,1 +9902,6,0.0,1,1.3369297981262207,403,1.0,1 +9903,6,0.0,1,1.551927089691162,404,0.0,1 +9904,6,0.0,1,1.6389260292053223,405,1.0,1 +9905,6,0.0,1,1.717924952507019,406,0.0,1 +9906,6,0.0,1,1.6659256219863892,407,0.0,1 +9907,6,0.0,1,1.5679268836975098,408,0.0,1 +9908,6,1.0,1,1.8929226398468018,409,1.0,1 +9909,6,1.0,1,1.1879304647445679,410,1.0,1 +9910,6,1.0,1,1.368929386138916,411,1.0,1 +9911,6,1.0,1,1.3919291496276855,412,1.0,1 +9912,6,1.0,1,1.2229305505752563,413,0.0,1 +9913,6,1.0,1,1.7319247722625732,414,0.0,1 +9914,6,1.0,1,1.879922866821289,415,0.0,1 +9915,6,1.0,1,1.9669218063354492,416,1.0,1 +9916,6,1.0,1,1.4589282274246216,417,1.0,1 +9917,6,0.0,1,2.026921272277832,418,0.0,1 +9918,6,1.0,1,1.7589244842529297,419,1.0,1 +9919,6,1.0,1,1.350929617881775,420,1.0,1 +9920,6,1.0,1,1.5849266052246094,421,1.0,1 +9921,6,1.0,1,1.3579295873641968,422,1.0,1 +9922,6,0.0,1,1.5279273986816406,423,0.0,1 +9923,6,1.0,1,1.2789305448532104,424,1.0,1 +9924,6,1.0,1,1.4699281454086304,425,1.0,1 +9925,6,1.0,1,1.9639217853546143,426,1.0,1 +9926,6,1.0,1,1.4959278106689453,427,0.0,1 +9927,6,0.0,1,1.5469272136688232,428,1.0,1 +9928,6,0.0,1,1.6209261417388916,429,0.0,1 +9929,6,0.0,1,1.9339221715927124,430,0.0,1 +9930,6,1.0,1,1.489927887916565,431,1.0,1 +9931,6,1.0,1,1.5239274501800537,432,0.0,1 +9932,6,1.0,1,1.7609243392944336,433,1.0,1 +9933,6,1.0,1,1.8269236087799072,434,0.0,1 +9934,6,1.0,1,1.9479219913482666,435,0.0,1 +9935,6,0.0,1,1.389929175376892,436,1.0,1 +9936,6,0.0,1,1.9709217548370361,437,0.0,1 +9937,6,1.0,1,1.8469233512878418,438,0.0,1 +9938,6,0.0,1,1.2999303340911865,439,0.0,1 +9939,6,1.0,1,1.5769267082214355,440,1.0,1 +9940,6,1.0,1,1.3819292783737183,441,1.0,1 +9941,6,0.0,1,1.394929051399231,442,1.0,1 +9942,6,1.0,1,1.3259299993515015,443,0.0,1 +9943,6,1.0,1,1.551927089691162,444,1.0,1 +9944,6,0.0,1,1.4969277381896973,445,0.0,1 +9945,6,1.0,1,1.2019305229187012,446,1.0,1 +9946,6,1.0,1,1.4469283819198608,447,0.0,1 +9947,6,0.0,1,1.8639230728149414,448,1.0,1 +9948,6,0.0,1,1.4039289951324463,449,0.0,1 +9949,6,0.0,1,1.7139250040054321,450,0.0,1 +9950,6,0.0,1,1.64892578125,451,0.0,1 +9951,6,1.0,1,1.1979305744171143,452,0.0,1 +9952,6,1.0,1,1.2609306573867798,453,1.0,1 +9953,6,1.0,1,1.7679243087768555,454,1.0,1 +9954,6,1.0,1,1.3739293813705444,455,1.0,1 +9955,6,1.0,1,1.4709280729293823,456,1.0,1 +9956,6,1.0,1,1.2669306993484497,457,1.0,1 +9957,6,1.0,1,1.8019238710403442,458,1.0,1 +9958,6,1.0,1,1.739924669265747,459,0.0,1 +9959,6,0.0,1,1.4669281244277954,460,0.0,1 +9960,6,0.0,1,2.4289400577545166,461,0.0,1 +9961,6,0.0,1,2.0139212608337402,462,0.0,1 +9962,6,0.0,1,1.529927372932434,463,1.0,1 +9963,6,0.0,1,1.1579303741455078,464,1.0,1 +9964,6,0.0,1,1.2669306993484497,465,0.0,1 +9965,6,0.0,1,1.6179262399673462,466,0.0,1 +9966,6,1.0,1,1.7209248542785645,467,0.0,1 +9967,6,1.0,1,1.6179262399673462,468,1.0,1 +9968,6,1.0,1,1.442928433418274,469,1.0,1 +9969,6,1.0,1,1.349929690361023,470,1.0,1 +9970,6,1.0,1,1.349929690361023,471,1.0,1 +9971,6,1.0,1,1.489927887916565,472,1.0,1 +9972,6,1.0,1,1.5099276304244995,473,0.0,1 +9973,6,1.0,1,1.8499232530593872,474,1.0,1 +9974,6,1.0,1,1.3969290256500244,475,1.0,1 +9975,6,1.0,1,1.5309274196624756,476,1.0,1 +9976,6,1.0,1,1.7579244375228882,477,1.0,1 +9977,6,1.0,1,1.882922887802124,478,1.0,1 +9978,6,1.0,1,2.3589367866516113,479,1.0,1 +9979,6,1.0,1,2.1339263916015625,480,1.0,1 +9980,6,1.0,1,1.7579244375228882,481,1.0,1 +9981,6,1.0,1,1.3749293088912964,482,1.0,1 +9982,6,1.0,1,1.3439297676086426,483,1.0,1 +9983,6,1.0,1,1.3159301280975342,484,1.0,1 +9984,6,1.0,1,1.2649306058883667,485,1.0,1 +9985,6,1.0,1,1.5439271926879883,486,1.0,1 +9986,6,1.0,1,1.5209274291992188,487,1.0,1 +9987,6,1.0,1,1.1619304418563843,488,1.0,1 +9988,6,1.0,1,1.5189274549484253,489,0.0,1 +9989,6,1.0,1,1.6979252099990845,490,1.0,1 +9990,6,1.0,1,1.2529306411743164,491,1.0,1 +9991,6,1.0,1,1.6499258279800415,492,1.0,1 +9992,6,1.0,1,1.4979277849197388,493,0.0,1 +9993,6,1.0,1,1.6019264459609985,494,1.0,1 +9994,6,1.0,1,1.3049302101135254,495,1.0,1 +9995,6,1.0,1,1.4089288711547852,496,1.0,1 +9996,6,1.0,1,1.3379298448562622,497,1.0,1 +9997,6,1.0,1,1.4059289693832397,498,1.0,1 +9998,6,1.0,1,1.7019251585006714,499,1.0,1 +9999,6,1.0,1,1.367929458618164,500,1.0,1 +10000,6,0.0,2,1.78792405128479,1,1.0,1 +10001,6,0.0,2,1.838923454284668,2,0.0,1 +10002,6,1.0,2,1.2529306411743164,3,0.0,1 +10003,6,0.0,2,2.240931272506714,4,0.0,1 +10004,6,0.0,2,1.5159275531768799,5,0.0,1 +10005,6,0.0,2,1.6809253692626953,6,1.0,1 +10006,6,0.0,2,1.7169249057769775,7,0.0,1 +10007,6,1.0,2,1.5899266004562378,8,1.0,1 +10008,6,1.0,2,1.599926471710205,9,1.0,1 +10009,6,1.0,2,1.1669304370880127,10,1.0,1 +10010,6,1.0,2,1.7769241333007812,11,1.0,1 +10011,6,1.0,2,1.3839292526245117,12,1.0,1 +10012,6,1.0,2,1.831923484802246,13,0.0,1 +10013,6,1.0,2,2.1659278869628906,14,0.0,1 +10014,6,0.0,2,1.7679243087768555,15,1.0,1 +10015,6,0.0,2,1.3269299268722534,16,0.0,1 +10016,6,0.0,2,2.032921552658081,17,0.0,1 +10017,6,1.0,2,1.4559283256530762,18,0.0,1 +10018,6,0.0,2,1.9229223728179932,19,0.0,1 +10019,6,0.0,2,1.2199305295944214,20,0.0,1 +10020,6,1.0,2,2.1799283027648926,21,1.0,1 +10021,6,1.0,2,1.9159224033355713,22,1.0,1 +10022,6,1.0,2,1.4759280681610107,23,0.0,1 +10023,6,1.0,2,1.4069288969039917,24,1.0,1 +10024,6,1.0,2,1.5719268321990967,25,0.0,1 +10025,6,1.0,2,2.1379265785217285,26,1.0,1 +10026,6,1.0,2,1.3599295616149902,27,1.0,1 +10027,6,0.0,2,1.5439271926879883,28,0.0,1 +10028,6,1.0,2,1.2229305505752563,29,0.0,1 +10029,6,1.0,2,1.5799267292022705,30,1.0,1 +10030,6,0.0,2,1.27293062210083,31,0.0,1 +10031,6,1.0,2,1.744924545288086,32,0.0,1 +10032,6,0.0,2,1.4369285106658936,33,0.0,1 +10033,6,0.0,2,1.2669306993484497,34,0.0,1 +10034,6,1.0,2,1.9829216003417969,35,0.0,1 +10035,6,0.0,2,1.9879214763641357,36,0.0,1 +10036,6,0.0,2,1.350929617881775,37,1.0,1 +10037,6,0.0,2,1.4849278926849365,38,0.0,1 +10038,6,1.0,2,1.4289286136627197,39,1.0,1 +10039,6,1.0,2,1.562927007675171,40,1.0,1 +10040,6,1.0,2,1.698925256729126,41,1.0,1 +10041,6,1.0,2,1.4409284591674805,42,1.0,1 +10042,6,0.0,2,1.342929720878601,43,0.0,1 +10043,6,1.0,2,1.186930537223816,44,1.0,1 +10044,6,1.0,2,1.149930477142334,45,1.0,1 +10045,6,1.0,2,1.5279273986816406,46,1.0,1 +10046,6,1.0,2,1.4119288921356201,47,1.0,1 +10047,6,1.0,2,1.1729304790496826,48,1.0,1 +10048,6,1.0,2,1.2889304161071777,49,1.0,1 +10049,6,1.0,2,1.9879214763641357,50,0.0,1 +10050,6,0.0,2,1.275930643081665,51,0.0,1 +10051,6,0.0,2,1.144930362701416,52,0.0,1 +10052,6,0.0,2,1.8039238452911377,53,0.0,1 +10053,6,0.0,2,1.3539296388626099,54,1.0,1 +10054,6,0.0,2,1.4729280471801758,55,0.0,1 +10055,6,1.0,2,1.4889278411865234,56,1.0,1 +10056,6,1.0,2,1.4289286136627197,57,1.0,1 +10057,6,1.0,2,1.251930594444275,58,1.0,1 +10058,6,1.0,2,1.3229299783706665,59,1.0,1 +10059,6,1.0,2,1.2269306182861328,60,0.0,1 +10060,6,0.0,2,1.319930076599121,61,1.0,1 +10061,6,0.0,2,1.9439220428466797,62,1.0,1 +10062,6,0.0,2,1.217930555343628,63,1.0,1 +10063,6,0.0,2,1.1579303741455078,64,1.0,1 +10064,6,0.0,2,1.46392822265625,65,1.0,1 +10065,6,0.0,2,1.1399303674697876,66,1.0,1 +10066,6,1.0,2,1.7229249477386475,67,1.0,1 +10067,6,1.0,2,1.6249260902404785,68,1.0,1 +10068,6,1.0,2,1.9229223728179932,69,0.0,1 +10069,6,0.0,2,1.4819279909133911,70,0.0,1 +10070,6,0.0,2,1.6229262351989746,71,0.0,1 +10071,6,0.0,2,1.2539305686950684,72,0.0,1 +10072,6,0.0,2,1.3149300813674927,73,1.0,1 +10073,6,0.0,2,1.1709305047988892,74,1.0,1 +10074,6,0.0,2,1.1639304161071777,75,0.0,1 +10075,6,1.0,2,1.504927635192871,76,0.0,1 +10076,6,1.0,2,1.974921703338623,77,0.0,1 +10077,6,0.0,2,1.6659256219863892,78,0.0,1 +10078,6,0.0,2,1.9669218063354492,79,1.0,1 +10079,6,0.0,2,1.533927321434021,80,0.0,1 +10080,6,0.0,2,1.9929213523864746,81,1.0,1 +10081,6,0.0,2,1.2919304370880127,82,1.0,1 +10082,6,0.0,2,1.2349306344985962,83,1.0,1 +10083,6,0.0,2,1.3049302101135254,84,1.0,1 +10084,6,1.0,2,1.794924020767212,85,1.0,1 +10085,6,0.0,2,1.2239305973052979,86,1.0,1 +10086,6,1.0,2,1.6369259357452393,87,1.0,1 +10087,6,1.0,2,1.6139262914657593,88,0.0,1 +10088,6,0.0,2,1.2159305810928345,89,1.0,1 +10089,6,0.0,2,1.184930443763733,90,0.0,1 +10090,6,1.0,2,1.8449232578277588,91,1.0,1 +10091,6,1.0,2,1.4529283046722412,92,1.0,1 +10092,6,1.0,2,1.3099302053451538,93,0.0,1 +10093,6,1.0,2,1.3079302310943604,94,0.0,1 +10094,6,0.0,2,1.5709269046783447,95,0.0,1 +10095,6,1.0,2,2.7009527683258057,96,0.0,1 +10096,6,0.0,2,1.3299299478530884,97,0.0,1 +10097,6,0.0,2,1.4279286861419678,98,0.0,1 +10098,6,0.0,2,2.079923629760742,99,1.0,1 +10099,6,0.0,2,1.438928484916687,100,0.0,1 +10100,6,1.0,2,1.717924952507019,101,0.0,1 +10101,6,0.0,2,1.2399306297302246,102,1.0,1 +10102,6,0.0,2,1.4329285621643066,103,1.0,1 +10103,6,0.0,2,1.554927110671997,104,1.0,1 +10104,6,0.0,2,1.5729267597198486,105,0.0,1 +10105,6,0.0,2,1.46392822265625,106,0.0,1 +10106,6,0.0,2,1.119930386543274,107,1.0,1 +10107,6,0.0,2,1.1879304647445679,108,0.0,1 +10108,6,0.0,2,2.014921188354492,109,0.0,1 +10109,6,1.0,2,1.769924283027649,110,1.0,1 +10110,6,1.0,2,1.9129223823547363,111,1.0,1 +10111,6,1.0,2,1.251930594444275,112,1.0,1 +10112,6,1.0,2,1.4629281759262085,113,0.0,1 +10113,6,0.0,2,1.5969264507293701,114,0.0,1 +10114,6,1.0,2,1.9179223775863647,115,1.0,1 +10115,6,1.0,2,1.364929437637329,116,0.0,1 +10116,6,0.0,2,1.4659281969070435,117,0.0,1 +10117,6,0.0,2,2.1819286346435547,118,1.0,1 +10118,6,0.0,2,1.2379305362701416,119,1.0,1 +10119,6,0.0,2,1.1819305419921875,120,1.0,1 +10120,6,0.0,2,1.4269286394119263,121,1.0,1 +10121,6,0.0,2,1.3359298706054688,122,0.0,1 +10122,6,0.0,2,2.1489269733428955,123,0.0,1 +10123,6,0.0,2,1.5139275789260864,124,0.0,1 +10124,6,0.0,2,1.4239287376403809,125,0.0,1 +10125,6,1.0,2,1.6239261627197266,126,0.0,1 +10126,6,0.0,2,1.4779280424118042,127,0.0,1 +10127,6,0.0,2,1.3559296131134033,128,0.0,1 +10128,6,0.0,2,1.7739242315292358,129,1.0,1 +10129,6,0.0,2,1.4769279956817627,130,0.0,1 +10130,6,1.0,2,1.1739304065704346,131,1.0,1 +10131,6,1.0,2,1.2309305667877197,132,0.0,1 +10132,6,0.0,2,1.1289303302764893,133,0.0,1 +10133,6,1.0,2,1.5359272956848145,134,0.0,1 +10134,6,1.0,2,1.5659269094467163,135,1.0,1 +10135,6,1.0,2,1.65492582321167,136,1.0,1 +10136,6,1.0,2,1.4699281454086304,137,1.0,1 +10137,6,1.0,2,1.5239274501800537,138,1.0,1 +10138,6,1.0,2,1.794924020767212,139,1.0,1 +10139,6,1.0,2,1.1519304513931274,140,0.0,1 +10140,6,0.0,2,1.2329305410385132,141,0.0,1 +10141,6,0.0,2,1.2409305572509766,142,0.0,1 +10142,6,0.0,2,1.5059276819229126,143,1.0,1 +10143,6,0.0,2,1.9389221668243408,144,0.0,1 +10144,6,0.0,2,1.2379305362701416,145,0.0,1 +10145,6,0.0,2,1.2709306478500366,146,1.0,1 +10146,6,0.0,2,1.174930453300476,147,1.0,1 +10147,6,0.0,2,1.3859292268753052,148,1.0,1 +10148,6,0.0,2,1.2039304971694946,149,1.0,1 +10149,6,0.0,2,1.6269261837005615,150,1.0,1 +10150,6,0.0,2,1.0789302587509155,151,1.0,1 +10151,6,0.0,2,1.3529295921325684,152,1.0,1 +10152,6,0.0,2,1.1619304418563843,153,0.0,1 +10153,6,0.0,2,2.534945011138916,154,0.0,1 +10154,6,0.0,2,1.4339286088943481,155,0.0,1 +10155,6,0.0,2,2.218930244445801,156,0.0,1 +10156,6,1.0,2,1.6329259872436523,157,1.0,1 +10157,6,1.0,2,1.2699306011199951,158,0.0,1 +10158,6,0.0,2,1.4029289484024048,159,0.0,1 +10159,6,1.0,2,1.4959278106689453,160,0.0,1 +10160,6,0.0,2,1.7289247512817383,161,0.0,1 +10161,6,0.0,2,1.4039289951324463,162,0.0,1 +10162,6,1.0,2,2.1769282817840576,163,1.0,1 +10163,6,1.0,2,1.2689306735992432,164,0.0,1 +10164,6,1.0,2,2.245931625366211,165,0.0,1 +10165,6,0.0,2,2.054922580718994,166,1.0,1 +10166,6,0.0,2,1.4329285621643066,167,0.0,1 +10167,6,1.0,2,2.2159299850463867,168,1.0,1 +10168,6,1.0,2,1.4789279699325562,169,1.0,1 +10169,6,1.0,2,1.4009289741516113,170,1.0,1 +10170,6,0.0,2,1.2219305038452148,171,1.0,1 +10171,6,1.0,2,2.339935779571533,172,1.0,1 +10172,6,1.0,2,1.562927007675171,173,0.0,1 +10173,6,0.0,2,1.419928789138794,174,0.0,1 +10174,6,0.0,2,1.4699281454086304,175,0.0,1 +10175,6,0.0,2,1.5219274759292603,176,1.0,1 +10176,6,0.0,2,1.2869304418563843,177,1.0,1 +10177,6,0.0,2,1.5449271202087402,178,0.0,1 +10178,6,1.0,2,1.350929617881775,179,1.0,1 +10179,6,1.0,2,1.4879279136657715,180,0.0,1 +10180,6,1.0,2,2.4279398918151855,181,1.0,1 +10181,6,1.0,2,1.389929175376892,182,0.0,1 +10182,6,1.0,2,1.6409258842468262,183,0.0,1 +10183,6,0.0,2,1.3489296436309814,184,0.0,1 +10184,6,0.0,2,1.1969305276870728,185,0.0,1 +10185,6,1.0,2,2.6079483032226562,186,1.0,1 +10186,6,1.0,2,1.4229286909103394,187,1.0,1 +10187,6,1.0,2,1.1819305419921875,188,0.0,1 +10188,6,0.0,2,1.2709306478500366,189,0.0,1 +10189,6,0.0,2,1.2609306573867798,190,1.0,1 +10190,6,0.0,2,1.2629306316375732,191,1.0,1 +10191,6,0.0,2,1.1899304389953613,192,0.0,1 +10192,6,1.0,2,1.4779280424118042,193,0.0,1 +10193,6,1.0,2,2.3429360389709473,194,0.0,1 +10194,6,0.0,2,1.7339247465133667,195,0.0,1 +10195,6,0.0,2,1.1689304113388062,196,1.0,1 +10196,6,0.0,2,1.4359285831451416,197,1.0,1 +10197,6,0.0,2,1.279930591583252,198,1.0,1 +10198,6,0.0,2,1.4779280424118042,199,1.0,1 +10199,6,0.0,2,1.3389297723770142,200,0.0,1 +10200,6,0.0,2,1.367929458618164,201,1.0,1 +10201,6,0.0,2,1.5969264507293701,202,0.0,1 +10202,6,1.0,2,1.2719306945800781,203,1.0,1 +10203,6,0.0,2,1.393929123878479,204,0.0,1 +10204,6,1.0,2,1.350929617881775,205,0.0,1 +10205,6,0.0,2,2.28493332862854,206,0.0,1 +10206,6,0.0,2,1.603926420211792,207,0.0,1 +10207,6,0.0,2,2.3759374618530273,208,0.0,1 +10208,6,0.0,2,1.8239235877990723,209,1.0,1 +10209,6,0.0,2,1.2789305448532104,210,0.0,1 +10210,6,1.0,2,1.1459304094314575,211,0.0,1 +10211,6,1.0,2,1.9139224290847778,212,0.0,1 +10212,6,1.0,2,1.490927815437317,213,1.0,1 +10213,6,1.0,2,1.878922939300537,214,0.0,1 +10214,6,1.0,2,1.880922794342041,215,1.0,1 +10215,6,0.0,2,2.043921947479248,216,1.0,1 +10216,6,0.0,2,1.971921682357788,217,0.0,1 +10217,6,1.0,2,1.930922269821167,218,1.0,1 +10218,6,0.0,2,1.205930471420288,219,1.0,1 +10219,6,0.0,2,1.8379234075546265,220,1.0,1 +10220,6,1.0,2,1.4039289951324463,221,0.0,1 +10221,6,0.0,2,1.4089288711547852,222,0.0,1 +10222,6,1.0,2,1.691925287246704,223,0.0,1 +10223,6,0.0,2,1.3369297981262207,224,0.0,1 +10224,6,1.0,2,1.5069276094436646,225,0.0,1 +10225,6,0.0,2,1.5669269561767578,226,1.0,1 +10226,6,0.0,2,1.2579306364059448,227,0.0,1 +10227,6,0.0,2,1.1909304857254028,228,0.0,1 +10228,6,0.0,2,1.1089303493499756,229,1.0,1 +10229,6,0.0,2,1.2739306688308716,230,0.0,1 +10230,6,1.0,2,1.878922939300537,231,1.0,1 +10231,6,1.0,2,1.1569304466247559,232,1.0,1 +10232,6,1.0,2,1.2159305810928345,233,1.0,1 +10233,6,1.0,2,1.3099302053451538,234,1.0,1 +10234,6,1.0,2,1.5789268016815186,235,0.0,1 +10235,6,0.0,2,1.5839266777038574,236,1.0,1 +10236,6,0.0,2,1.2199305295944214,237,0.0,1 +10237,6,0.0,2,1.2549306154251099,238,0.0,1 +10238,6,0.0,2,1.1369303464889526,239,0.0,1 +10239,6,1.0,2,1.924922227859497,240,1.0,1 +10240,6,1.0,2,1.6829254627227783,241,0.0,1 +10241,6,0.0,2,2.243931293487549,242,0.0,1 +10242,6,1.0,2,1.4709280729293823,243,1.0,1 +10243,6,1.0,2,1.5669269561767578,244,1.0,1 +10244,6,1.0,2,1.901922583580017,245,1.0,1 +10245,6,1.0,2,1.8609230518341064,246,0.0,1 +10246,6,0.0,2,1.2219305038452148,247,0.0,1 +10247,6,0.0,2,2.05892276763916,248,1.0,1 +10248,6,0.0,2,1.3779293298721313,249,0.0,1 +10249,6,0.0,2,1.6909253597259521,250,0.0,1 +10250,6,0.0,2,1.207930564880371,251,1.0,1 +10251,6,0.0,2,1.4569282531738281,252,1.0,1 +10252,6,0.0,2,1.7819241285324097,253,0.0,1 +10253,6,0.0,2,1.2709306478500366,254,0.0,1 +10254,6,1.0,2,2.1649277210235596,255,1.0,1 +10255,6,1.0,2,1.8939226865768433,256,0.0,1 +10256,6,1.0,2,2.269932746887207,257,1.0,1 +10257,6,1.0,2,1.437928557395935,258,0.0,1 +10258,6,1.0,2,1.533927321434021,259,1.0,1 +10259,6,1.0,2,1.2219305038452148,260,0.0,1 +10260,6,1.0,2,1.7319247722625732,261,0.0,1 +10261,6,0.0,2,1.183930516242981,262,0.0,1 +10262,6,1.0,2,1.8889226913452148,263,0.0,1 +10263,6,0.0,2,1.2569305896759033,264,0.0,1 +10264,6,1.0,2,1.9299222230911255,265,0.0,1 +10265,6,0.0,2,2.221930503845215,266,1.0,1 +10266,6,0.0,2,1.367929458618164,267,0.0,1 +10267,6,0.0,2,1.5289273262023926,268,1.0,1 +10268,6,0.0,2,1.2009304761886597,269,0.0,1 +10269,6,1.0,2,1.4229286909103394,270,1.0,1 +10270,6,1.0,2,1.8109238147735596,271,0.0,1 +10271,6,0.0,2,1.2609306573867798,272,1.0,1 +10272,6,0.0,2,1.3179301023483276,273,1.0,1 +10273,6,0.0,2,1.2439305782318115,274,1.0,1 +10274,6,0.0,2,1.1579303741455078,275,1.0,1 +10275,6,0.0,2,1.4879279136657715,276,0.0,1 +10276,6,1.0,2,1.3609294891357422,277,1.0,1 +10277,6,1.0,2,1.8269236087799072,278,0.0,1 +10278,6,0.0,2,1.5039277076721191,279,1.0,1 +10279,6,0.0,2,1.4919278621673584,280,0.0,1 +10280,6,0.0,2,1.2229305505752563,281,1.0,1 +10281,6,0.0,2,1.174930453300476,282,1.0,1 +10282,6,0.0,2,1.4549282789230347,283,0.0,1 +10283,6,0.0,2,1.1969305276870728,284,0.0,1 +10284,6,0.0,2,1.141930341720581,285,0.0,1 +10285,6,0.0,2,1.6019264459609985,286,0.0,1 +10286,6,1.0,2,1.4499284029006958,287,1.0,1 +10287,6,1.0,2,2.0139212608337402,288,1.0,1 +10288,6,1.0,2,1.5759267807006836,289,0.0,1 +10289,6,0.0,2,1.8409233093261719,290,0.0,1 +10290,6,0.0,2,1.1119303703308105,291,0.0,1 +10291,6,1.0,2,2.032921552658081,292,0.0,1 +10292,6,1.0,2,1.6939252614974976,293,1.0,1 +10293,6,1.0,2,1.5179275274276733,294,1.0,1 +10294,6,1.0,2,1.6659256219863892,295,0.0,1 +10295,6,1.0,2,1.4089288711547852,296,1.0,1 +10296,6,1.0,2,2.4709420204162598,297,1.0,1 +10297,6,1.0,2,1.5859266519546509,298,1.0,1 +10298,6,1.0,2,1.5169274806976318,299,1.0,1 +10299,6,1.0,2,1.65492582321167,300,1.0,1 +10300,6,1.0,2,1.4309285879135132,301,1.0,1 +10301,6,1.0,2,1.1629304885864258,302,1.0,1 +10302,6,1.0,2,1.5019277334213257,303,1.0,1 +10303,6,1.0,2,1.2549306154251099,304,0.0,1 +10304,6,1.0,2,1.5899266004562378,305,0.0,1 +10305,6,1.0,2,1.5699268579483032,306,1.0,1 +10306,6,1.0,2,1.7039251327514648,307,0.0,1 +10307,6,1.0,2,1.2469305992126465,308,1.0,1 +10308,6,1.0,2,1.3379298448562622,309,0.0,1 +10309,6,1.0,2,1.5059276819229126,310,0.0,1 +10310,6,1.0,2,1.5059276819229126,311,1.0,1 +10311,6,1.0,2,2.1629276275634766,312,0.0,1 +10312,6,0.0,2,1.3579295873641968,313,1.0,1 +10313,6,0.0,2,1.559926986694336,314,1.0,1 +10314,6,0.0,2,1.835923433303833,315,0.0,1 +10315,6,0.0,2,2.033921718597412,316,1.0,1 +10316,6,0.0,2,1.5729267597198486,317,1.0,1 +10317,6,0.0,2,1.5869266986846924,318,1.0,1 +10318,6,0.0,2,1.5429272651672363,319,0.0,1 +10319,6,1.0,2,1.3829292058944702,320,1.0,1 +10320,6,1.0,2,1.4219287633895874,321,0.0,1 +10321,6,0.0,2,2.1249258518218994,322,1.0,1 +10322,6,0.0,2,1.3319299221038818,323,0.0,1 +10323,6,0.0,2,1.3999290466308594,324,0.0,1 +10324,6,1.0,2,1.6829254627227783,325,0.0,1 +10325,6,0.0,2,1.8379234075546265,326,1.0,1 +10326,6,0.0,2,1.3809292316436768,327,1.0,1 +10327,6,0.0,2,1.7539244890213013,328,0.0,1 +10328,6,1.0,2,1.8499232530593872,329,1.0,1 +10329,6,0.0,2,1.3999290466308594,330,0.0,1 +10330,6,1.0,2,1.784924030303955,331,1.0,1 +10331,6,1.0,2,1.3519296646118164,332,1.0,1 +10332,6,1.0,2,1.4069288969039917,333,1.0,1 +10333,6,1.0,2,1.6629257202148438,334,0.0,1 +10334,6,0.0,2,1.3859292268753052,335,0.0,1 +10335,6,1.0,2,1.7839241027832031,336,1.0,1 +10336,6,0.0,2,1.3969290256500244,337,1.0,1 +10337,6,0.0,2,1.4489283561706543,338,0.0,1 +10338,6,1.0,2,1.5169274806976318,339,0.0,1 +10339,6,0.0,2,1.3569295406341553,340,1.0,1 +10340,6,0.0,2,1.2159305810928345,341,0.0,1 +10341,6,0.0,2,1.7559244632720947,342,1.0,1 +10342,6,0.0,2,1.2239305973052979,343,0.0,1 +10343,6,0.0,2,1.6109263896942139,344,0.0,1 +10344,6,0.0,2,1.3219300508499146,345,1.0,1 +10345,6,0.0,2,1.241930603981018,346,1.0,1 +10346,6,0.0,2,1.1989305019378662,347,1.0,1 +10347,6,0.0,2,1.5159275531768799,348,0.0,1 +10348,6,1.0,2,1.7679243087768555,349,0.0,1 +10349,6,1.0,2,1.4819279909133911,350,1.0,1 +10350,6,1.0,2,1.2559306621551514,351,1.0,1 +10351,6,1.0,2,1.694925308227539,352,0.0,1 +10352,6,1.0,2,2.0019211769104004,353,1.0,1 +10353,6,1.0,2,1.2369306087493896,354,1.0,1 +10354,6,0.0,2,2.267932415008545,355,0.0,1 +10355,6,1.0,2,1.2909303903579712,356,1.0,1 +10356,6,1.0,2,1.3289299011230469,357,1.0,1 +10357,6,1.0,2,1.4439284801483154,358,1.0,1 +10358,6,1.0,2,1.599926471710205,359,1.0,1 +10359,6,1.0,2,1.7099250555038452,360,0.0,1 +10360,6,0.0,2,1.8519232273101807,361,1.0,1 +10361,6,0.0,2,1.5439271926879883,362,0.0,1 +10362,6,1.0,2,1.490927815437317,363,1.0,1 +10363,6,1.0,2,1.3699294328689575,364,1.0,1 +10364,6,1.0,2,1.3009302616119385,365,1.0,1 +10365,6,1.0,2,1.3699294328689575,366,0.0,1 +10366,6,0.0,2,1.460928201675415,367,0.0,1 +10367,6,1.0,2,1.5969264507293701,368,1.0,1 +10368,6,1.0,2,1.5169274806976318,369,1.0,1 +10369,6,1.0,2,1.4139288663864136,370,0.0,1 +10370,6,1.0,2,1.5039277076721191,371,1.0,1 +10371,6,1.0,2,1.2899304628372192,372,1.0,1 +10372,6,0.0,2,1.2329305410385132,373,1.0,1 +10373,6,0.0,2,1.5449271202087402,374,0.0,1 +10374,6,1.0,2,1.7269248962402344,375,1.0,1 +10375,6,1.0,2,1.7069251537322998,376,1.0,1 +10376,6,1.0,2,1.349929690361023,377,1.0,1 +10377,6,1.0,2,1.5929265022277832,378,1.0,1 +10378,6,1.0,2,1.4229286909103394,379,1.0,1 +10379,6,1.0,2,1.9559218883514404,380,1.0,1 +10380,6,1.0,2,1.6709256172180176,381,1.0,1 +10381,6,1.0,2,1.5639269351959229,382,1.0,1 +10382,6,1.0,2,1.2959303855895996,383,1.0,1 +10383,6,1.0,2,1.4369285106658936,384,1.0,1 +10384,6,1.0,2,1.7259248495101929,385,0.0,1 +10385,6,0.0,2,1.5189274549484253,386,0.0,1 +10386,6,1.0,2,1.3559296131134033,387,0.0,1 +10387,6,1.0,2,1.7989239692687988,388,1.0,1 +10388,6,1.0,2,1.2909303903579712,389,0.0,1 +10389,6,1.0,2,1.2529306411743164,390,0.0,1 +10390,6,1.0,2,2.4349403381347656,391,0.0,1 +10391,6,0.0,2,1.2249305248260498,392,0.0,1 +10392,6,1.0,2,1.9029226303100586,393,1.0,1 +10393,6,0.0,2,1.2129305601119995,394,1.0,1 +10394,6,0.0,2,2.226930618286133,395,1.0,1 +10395,6,1.0,2,1.2819305658340454,396,1.0,1 +10396,6,0.0,2,1.297930359840393,397,1.0,1 +10397,6,0.0,2,1.2339305877685547,398,1.0,1 +10398,6,1.0,2,1.558927059173584,399,1.0,1 +10399,6,1.0,2,1.7419246435165405,400,1.0,1 +10400,6,0.0,2,1.4289286136627197,401,1.0,1 +10401,6,0.0,2,2.2169301509857178,402,0.0,1 +10402,6,1.0,2,1.7299247980117798,403,1.0,1 +10403,6,1.0,2,1.7679243087768555,404,1.0,1 +10404,6,1.0,2,1.1549304723739624,405,1.0,1 +10405,6,1.0,2,1.6269261837005615,406,0.0,1 +10406,6,1.0,2,1.6309261322021484,407,0.0,1 +10407,6,1.0,2,1.4339286088943481,408,1.0,1 +10408,6,1.0,2,1.3629294633865356,409,0.0,1 +10409,6,1.0,2,2.1899290084838867,410,1.0,1 +10410,6,1.0,2,1.320930004119873,411,1.0,1 +10411,6,1.0,2,1.3489296436309814,412,1.0,1 +10412,6,1.0,2,1.577926754951477,413,0.0,1 +10413,6,1.0,2,1.2999303340911865,414,0.0,1 +10414,6,0.0,2,1.3319299221038818,415,1.0,1 +10415,6,0.0,2,1.2399306297302246,416,1.0,1 +10416,6,0.0,2,1.0989303588867188,417,0.0,1 +10417,6,1.0,2,2.282933235168457,418,0.0,1 +10418,6,0.0,2,1.6709256172180176,419,0.0,1 +10419,6,1.0,2,1.5429272651672363,420,1.0,1 +10420,6,1.0,2,1.3329298496246338,421,1.0,1 +10421,6,1.0,2,1.739924669265747,422,0.0,1 +10422,6,0.0,2,1.2639306783676147,423,0.0,1 +10423,6,0.0,2,2.0659232139587402,424,1.0,1 +10424,6,0.0,2,1.420928716659546,425,1.0,1 +10425,6,0.0,2,1.364929437637329,426,1.0,1 +10426,6,0.0,2,1.460928201675415,427,1.0,1 +10427,6,0.0,2,1.485927939414978,428,1.0,1 +10428,6,0.0,2,1.3449296951293945,429,0.0,1 +10429,6,1.0,2,1.5169274806976318,430,0.0,1 +10430,6,0.0,2,1.3119301795959473,431,0.0,1 +10431,6,0.0,2,1.7009251117706299,432,0.0,1 +10432,6,0.0,2,1.3859292268753052,433,1.0,1 +10433,6,0.0,2,1.1609303951263428,434,0.0,1 +10434,6,0.0,2,1.4619282484054565,435,1.0,1 +10435,6,0.0,2,1.2819305658340454,436,0.0,1 +10436,6,1.0,2,2.03192138671875,437,1.0,1 +10437,6,1.0,2,1.4409284591674805,438,1.0,1 +10438,6,1.0,2,1.6419259309768677,439,0.0,1 +10439,6,0.0,2,1.3809292316436768,440,1.0,1 +10440,6,0.0,2,1.5719268321990967,441,1.0,1 +10441,6,0.0,2,1.4549282789230347,442,1.0,1 +10442,6,0.0,2,1.150930404663086,443,0.0,1 +10443,6,1.0,2,1.482927918434143,444,1.0,1 +10444,6,1.0,2,1.2409305572509766,445,1.0,1 +10445,6,1.0,2,1.1619304418563843,446,1.0,1 +10446,6,1.0,2,1.213930606842041,447,0.0,1 +10447,6,1.0,2,1.5739268064498901,448,0.0,1 +10448,6,0.0,2,1.2379305362701416,449,0.0,1 +10449,6,1.0,2,1.512927532196045,450,1.0,1 +10450,6,1.0,2,1.3409297466278076,451,1.0,1 +10451,6,1.0,2,1.2599306106567383,452,0.0,1 +10452,6,0.0,2,2.3379359245300293,453,0.0,1 +10453,6,0.0,2,1.4309285879135132,454,1.0,1 +10454,6,0.0,2,1.2569305896759033,455,1.0,1 +10455,6,0.0,2,1.1709305047988892,456,0.0,1 +10456,6,0.0,2,1.2669306993484497,457,0.0,1 +10457,6,1.0,2,1.4559283256530762,458,0.0,1 +10458,6,1.0,2,1.3049302101135254,459,0.0,1 +10459,6,0.0,2,1.1739304065704346,460,1.0,1 +10460,6,0.0,2,1.2129305601119995,461,0.0,1 +10461,6,1.0,2,1.416928768157959,462,1.0,1 +10462,6,1.0,2,1.6359260082244873,463,0.0,1 +10463,6,1.0,2,2.3639369010925293,464,1.0,1 +10464,6,1.0,2,1.5539270639419556,465,1.0,1 +10465,6,1.0,2,1.3629294633865356,466,1.0,1 +10466,6,1.0,2,1.3399298191070557,467,1.0,1 +10467,6,1.0,2,1.3009302616119385,468,1.0,1 +10468,6,1.0,2,1.1729304790496826,469,1.0,1 +10469,6,1.0,2,1.3109301328659058,470,1.0,1 +10470,6,1.0,2,1.4939278364181519,471,0.0,1 +10471,6,1.0,2,1.3419297933578491,472,1.0,1 +10472,6,1.0,2,1.5259274244308472,473,1.0,1 +10473,6,1.0,2,1.3549295663833618,474,1.0,1 +10474,6,1.0,2,1.349929690361023,475,1.0,1 +10475,6,1.0,2,1.372929334640503,476,0.0,1 +10476,6,1.0,2,1.5009276866912842,477,1.0,1 +10477,6,1.0,2,1.2709306478500366,478,1.0,1 +10478,6,1.0,2,1.364929437637329,479,1.0,1 +10479,6,1.0,2,1.442928433418274,480,0.0,1 +10480,6,1.0,2,1.6909253597259521,481,0.0,1 +10481,6,1.0,2,1.4089288711547852,482,0.0,1 +10482,6,1.0,2,1.8129236698150635,483,0.0,1 +10483,6,0.0,2,1.4929277896881104,484,0.0,1 +10484,6,1.0,2,1.3219300508499146,485,1.0,1 +10485,6,1.0,2,1.412928819656372,486,1.0,1 +10486,6,1.0,2,1.2459306716918945,487,0.0,1 +10487,6,1.0,2,1.2229305505752563,488,0.0,1 +10488,6,1.0,2,1.4349285364151,489,1.0,1 +10489,6,1.0,2,1.4549282789230347,490,1.0,1 +10490,6,1.0,2,1.3739293813705444,491,0.0,1 +10491,6,1.0,2,1.8469233512878418,492,0.0,1 +10492,6,1.0,2,1.4659281969070435,493,1.0,1 +10493,6,1.0,2,1.1769304275512695,494,0.0,1 +10494,6,1.0,2,1.3779293298721313,495,0.0,1 +10495,6,1.0,2,1.7459245920181274,496,1.0,1 +10496,6,1.0,2,1.5669269561767578,497,0.0,1 +10497,6,0.0,2,1.5849266052246094,498,1.0,1 +10498,6,0.0,2,1.5479271411895752,499,0.0,1 +10499,6,0.0,2,1.298930287361145,500,0.0,1 +10500,7,1.0,0,1.8788061141967773,1,1.0,1 +10501,7,1.0,0,1.6888086795806885,2,1.0,1 +10502,7,1.0,0,1.760807752609253,3,1.0,1 +10503,7,1.0,0,1.3318132162094116,4,1.0,1 +10504,7,1.0,0,1.3408130407333374,5,1.0,1 +10505,7,1.0,0,1.3518129587173462,6,1.0,1 +10506,7,1.0,0,1.2348135709762573,7,1.0,1 +10507,7,1.0,0,1.8078070878982544,8,1.0,1 +10508,7,1.0,0,1.3808125257492065,9,1.0,1 +10509,7,1.0,0,1.6318093538284302,10,1.0,1 +10510,7,1.0,0,1.3768125772476196,11,1.0,1 +10511,7,1.0,0,1.3058135509490967,12,1.0,1 +10512,7,1.0,0,1.890805959701538,13,1.0,1 +10513,7,1.0,0,2.262814521789551,14,1.0,1 +10514,7,0.0,0,1.287813663482666,15,0.0,1 +10515,7,1.0,0,1.6018097400665283,16,1.0,1 +10516,7,1.0,0,1.2778136730194092,17,1.0,1 +10517,7,1.0,0,1.4508116245269775,18,1.0,1 +10518,7,1.0,0,1.3078135251998901,19,1.0,1 +10519,7,1.0,0,1.894805908203125,20,0.0,1 +10520,7,0.0,0,1.2378135919570923,21,1.0,1 +10521,7,0.0,0,1.4538116455078125,22,0.0,1 +10522,7,0.0,0,1.9038058519363403,23,0.0,1 +10523,7,1.0,0,2.535827159881592,24,1.0,1 +10524,7,1.0,0,1.5068109035491943,25,1.0,1 +10525,7,1.0,0,1.5098109245300293,26,1.0,1 +10526,7,1.0,0,1.2798137664794922,27,1.0,1 +10527,7,1.0,0,1.3488129377365112,28,1.0,1 +10528,7,1.0,0,1.4008122682571411,29,1.0,1 +10529,7,1.0,0,1.1578134298324585,30,0.0,1 +10530,7,0.0,0,1.5178108215332031,31,0.0,1 +10531,7,0.0,0,1.8138070106506348,32,1.0,1 +10532,7,0.0,0,1.8328068256378174,33,0.0,1 +10533,7,1.0,0,1.259813666343689,34,1.0,1 +10534,7,1.0,0,1.4228119850158691,35,1.0,1 +10535,7,1.0,0,1.6348092555999756,36,1.0,1 +10536,7,1.0,0,1.551810383796692,37,1.0,1 +10537,7,1.0,0,1.4398118257522583,38,1.0,1 +10538,7,1.0,0,1.6568090915679932,39,1.0,1 +10539,7,1.0,0,1.3808125257492065,40,1.0,1 +10540,7,1.0,0,1.404812216758728,41,1.0,1 +10541,7,1.0,0,1.360812783241272,42,1.0,1 +10542,7,1.0,0,2.1598095893859863,43,1.0,1 +10543,7,1.0,0,1.9648051261901855,44,1.0,1 +10544,7,1.0,0,1.572810173034668,45,1.0,1 +10545,7,1.0,0,1.4288119077682495,46,1.0,1 +10546,7,1.0,0,1.9318054914474487,47,1.0,1 +10547,7,1.0,0,1.4538116455078125,48,1.0,1 +10548,7,1.0,0,1.750807762145996,49,1.0,1 +10549,7,1.0,0,1.754807710647583,50,1.0,1 +10550,7,1.0,0,1.3668127059936523,51,0.0,1 +10551,7,0.0,0,1.4228119850158691,52,0.0,1 +10552,7,0.0,0,1.229813575744629,53,0.0,1 +10553,7,1.0,0,2.2058119773864746,54,1.0,1 +10554,7,1.0,0,1.222813606262207,55,1.0,1 +10555,7,1.0,0,1.3718127012252808,56,1.0,1 +10556,7,1.0,0,1.4508116245269775,57,1.0,1 +10557,7,1.0,0,1.198813557624817,58,1.0,1 +10558,7,1.0,0,1.4148120880126953,59,1.0,1 +10559,7,1.0,0,1.3908123970031738,60,0.0,1 +10560,7,1.0,0,1.5308105945587158,61,1.0,1 +10561,7,1.0,0,1.6778087615966797,62,0.0,1 +10562,7,1.0,0,1.286813735961914,63,1.0,1 +10563,7,1.0,0,1.253813624382019,64,1.0,1 +10564,7,1.0,0,1.223813533782959,65,1.0,1 +10565,7,1.0,0,1.4148120880126953,66,1.0,1 +10566,7,1.0,0,1.5088108777999878,67,1.0,1 +10567,7,1.0,0,1.2848137617111206,68,1.0,1 +10568,7,1.0,0,1.308813452720642,69,1.0,1 +10569,7,1.0,0,1.3068134784698486,70,1.0,1 +10570,7,1.0,0,1.3918124437332153,71,1.0,1 +10571,7,1.0,0,1.477811336517334,72,1.0,1 +10572,7,1.0,0,1.591809868812561,73,1.0,1 +10573,7,1.0,0,1.2608137130737305,74,0.0,1 +10574,7,1.0,0,1.8348066806793213,75,1.0,1 +10575,7,1.0,0,1.3198133707046509,76,0.0,1 +10576,7,1.0,0,1.2518136501312256,77,1.0,1 +10577,7,1.0,0,1.6058096885681152,78,1.0,1 +10578,7,1.0,0,1.4438117742538452,79,1.0,1 +10579,7,0.0,0,1.2748136520385742,80,0.0,1 +10580,7,1.0,0,1.4638115167617798,81,1.0,1 +10581,7,1.0,0,1.4888111352920532,82,1.0,1 +10582,7,1.0,0,1.6458091735839844,83,1.0,1 +10583,7,1.0,0,1.6298093795776367,84,1.0,1 +10584,7,1.0,0,1.5168107748031616,85,1.0,1 +10585,7,1.0,0,1.3278132677078247,86,0.0,1 +10586,7,1.0,0,1.4248119592666626,87,1.0,1 +10587,7,1.0,0,1.5538103580474854,88,1.0,1 +10588,7,1.0,0,1.7878073453903198,89,0.0,1 +10589,7,0.0,0,1.385812520980835,90,0.0,1 +10590,7,0.0,0,1.3218133449554443,91,0.0,1 +10591,7,0.0,0,1.4328118562698364,92,1.0,1 +10592,7,0.0,0,1.5838099718093872,93,1.0,1 +10593,7,0.0,0,1.1548134088516235,94,0.0,1 +10594,7,0.0,0,1.9518052339553833,95,0.0,1 +10595,7,0.0,0,2.9798479080200195,96,0.0,1 +10596,7,1.0,0,1.8098070621490479,97,1.0,1 +10597,7,1.0,0,1.572810173034668,98,1.0,1 +10598,7,1.0,0,1.3368130922317505,99,1.0,1 +10599,7,1.0,0,1.2108135223388672,100,1.0,1 +10600,7,1.0,0,1.3148133754730225,101,0.0,1 +10601,7,0.0,0,1.2018135786056519,102,0.0,1 +10602,7,1.0,0,1.2888137102127075,103,1.0,1 +10603,7,1.0,0,1.3618128299713135,104,1.0,1 +10604,7,1.0,0,1.614809513092041,105,1.0,1 +10605,7,1.0,0,1.4008122682571411,106,0.0,1 +10606,7,0.0,0,1.4028122425079346,107,0.0,1 +10607,7,1.0,0,1.2488136291503906,108,1.0,1 +10608,7,1.0,0,1.478811264038086,109,1.0,1 +10609,7,1.0,0,1.3928123712539673,110,1.0,1 +10610,7,1.0,0,1.5138108730316162,111,1.0,1 +10611,7,1.0,0,1.2358136177062988,112,1.0,1 +10612,7,1.0,0,1.3908123970031738,113,0.0,1 +10613,7,0.0,0,1.5758100748062134,114,0.0,1 +10614,7,1.0,0,1.287813663482666,115,1.0,1 +10615,7,1.0,0,1.4798113107681274,116,1.0,1 +10616,7,1.0,0,1.311813473701477,117,1.0,1 +10617,7,1.0,0,1.6888086795806885,118,1.0,1 +10618,7,1.0,0,1.7808074951171875,119,1.0,1 +10619,7,1.0,0,1.4418118000030518,120,0.0,1 +10620,7,0.0,0,1.543810486793518,121,0.0,1 +10621,7,1.0,0,1.2248135805130005,122,1.0,1 +10622,7,1.0,0,1.945805311203003,123,0.0,1 +10623,7,0.0,0,1.5648102760314941,124,0.0,1 +10624,7,1.0,0,1.5278106927871704,125,0.0,1 +10625,7,0.0,0,1.5158108472824097,126,0.0,1 +10626,7,0.0,0,1.356812834739685,127,0.0,1 +10627,7,0.0,0,1.7278081178665161,128,0.0,1 +10628,7,1.0,0,1.4808112382888794,129,1.0,1 +10629,7,1.0,0,2.1418089866638184,130,0.0,1 +10630,7,1.0,0,1.3618128299713135,131,1.0,1 +10631,7,1.0,0,1.71280837059021,132,1.0,1 +10632,7,1.0,0,1.848806619644165,133,1.0,1 +10633,7,1.0,0,1.3468129634857178,134,1.0,1 +10634,7,1.0,0,1.6078096628189087,135,1.0,1 +10635,7,1.0,0,1.9108057022094727,136,0.0,1 +10636,7,0.0,0,1.12281334400177,137,0.0,1 +10637,7,0.0,0,1.1718134880065918,138,0.0,1 +10638,7,1.0,0,1.543810486793518,139,0.0,1 +10639,7,1.0,0,1.5608103275299072,140,1.0,1 +10640,7,1.0,0,1.4458117485046387,141,0.0,1 +10641,7,1.0,0,2.1478090286254883,142,0.0,1 +10642,7,0.0,0,1.5088108777999878,143,1.0,1 +10643,7,0.0,0,1.6308093070983887,144,0.0,1 +10644,7,0.0,0,1.713808298110962,145,0.0,1 +10645,7,1.0,0,2.2208125591278076,146,1.0,1 +10646,7,1.0,0,1.1938135623931885,147,1.0,1 +10647,7,1.0,0,1.4208120107650757,148,0.0,1 +10648,7,0.0,0,2.311816692352295,149,0.0,1 +10649,7,1.0,0,1.2618136405944824,150,1.0,1 +10650,7,1.0,0,1.7048084735870361,151,1.0,1 +10651,7,1.0,0,1.1668134927749634,152,1.0,1 +10652,7,1.0,0,1.8188068866729736,153,1.0,1 +10653,7,1.0,0,1.4548115730285645,154,1.0,1 +10654,7,1.0,0,1.2788137197494507,155,1.0,1 +10655,7,1.0,0,1.7048084735870361,156,0.0,1 +10656,7,1.0,0,1.7778074741363525,157,1.0,1 +10657,7,1.0,0,1.4398118257522583,158,1.0,1 +10658,7,1.0,0,1.4948110580444336,159,0.0,1 +10659,7,1.0,0,1.3968123197555542,160,1.0,1 +10660,7,1.0,0,1.2348135709762573,161,1.0,1 +10661,7,1.0,0,1.1828135251998901,162,1.0,1 +10662,7,1.0,0,1.2488136291503906,163,0.0,1 +10663,7,0.0,0,1.6078096628189087,164,0.0,1 +10664,7,1.0,0,2.11580753326416,165,1.0,1 +10665,7,1.0,0,1.6338093280792236,166,1.0,1 +10666,7,1.0,0,1.195813536643982,167,1.0,1 +10667,7,1.0,0,1.6728088855743408,168,1.0,1 +10668,7,1.0,0,1.2558135986328125,169,1.0,1 +10669,7,1.0,0,1.2278136014938354,170,1.0,1 +10670,7,1.0,0,1.3898124694824219,171,1.0,1 +10671,7,1.0,0,2.4998254776000977,172,0.0,1 +10672,7,1.0,0,2.052804708480835,173,1.0,1 +10673,7,1.0,0,1.3468129634857178,174,1.0,1 +10674,7,1.0,0,1.7008085250854492,175,1.0,1 +10675,7,0.0,0,1.802807092666626,176,0.0,1 +10676,7,1.0,0,1.8168070316314697,177,1.0,1 +10677,7,1.0,0,1.8138070106506348,178,1.0,1 +10678,7,1.0,0,1.1978135108947754,179,1.0,1 +10679,7,1.0,0,1.3738126754760742,180,1.0,1 +10680,7,1.0,0,1.3238133192062378,181,0.0,1 +10681,7,1.0,0,2.1848108768463135,182,1.0,1 +10682,7,1.0,0,1.1848134994506836,183,1.0,1 +10683,7,1.0,0,1.4868111610412598,184,1.0,1 +10684,7,1.0,0,1.2438136339187622,185,1.0,1 +10685,7,1.0,0,1.3878124952316284,186,0.0,1 +10686,7,1.0,0,1.363812804222107,187,1.0,1 +10687,7,1.0,0,1.6068096160888672,188,0.0,1 +10688,7,1.0,0,1.2498136758804321,189,1.0,1 +10689,7,1.0,0,2.548827886581421,190,1.0,1 +10690,7,1.0,0,1.6928086280822754,191,1.0,1 +10691,7,1.0,0,1.2078135013580322,192,1.0,1 +10692,7,1.0,0,1.662808895111084,193,0.0,1 +10693,7,0.0,0,2.4768245220184326,194,0.0,1 +10694,7,0.0,0,1.1998136043548584,195,0.0,1 +10695,7,1.0,0,1.2338136434555054,196,0.0,1 +10696,7,0.0,0,1.945805311203003,197,0.0,1 +10697,7,0.0,0,1.2248135805130005,198,0.0,1 +10698,7,0.0,0,2.1848108768463135,199,0.0,1 +10699,7,0.0,0,1.3728126287460327,200,0.0,1 +10700,7,0.0,0,1.5778100490570068,201,1.0,1 +10701,7,0.0,0,1.2768137454986572,202,1.0,1 +10702,7,0.0,0,1.2608137130737305,203,1.0,1 +10703,7,0.0,0,1.5568103790283203,204,0.0,1 +10704,7,1.0,0,1.3668127059936523,205,1.0,1 +10705,7,1.0,0,1.6768088340759277,206,1.0,1 +10706,7,1.0,0,1.3948123455047607,207,1.0,1 +10707,7,1.0,0,1.2688137292861938,208,1.0,1 +10708,7,1.0,0,1.709808349609375,209,1.0,1 +10709,7,1.0,0,1.8788061141967773,210,0.0,1 +10710,7,1.0,0,1.6708087921142578,211,1.0,1 +10711,7,1.0,0,1.2818137407302856,212,0.0,1 +10712,7,1.0,0,1.308813452720642,213,0.0,1 +10713,7,0.0,0,1.3258132934570312,214,0.0,1 +10714,7,1.0,0,1.709808349609375,215,1.0,1 +10715,7,1.0,0,1.356812834739685,216,0.0,1 +10716,7,1.0,0,1.4628114700317383,217,1.0,1 +10717,7,1.0,0,1.5128108263015747,218,1.0,1 +10718,7,1.0,0,1.6758087873458862,219,0.0,1 +10719,7,1.0,0,1.3918124437332153,220,1.0,1 +10720,7,1.0,0,1.664808988571167,221,1.0,1 +10721,7,1.0,0,1.6848087310791016,222,1.0,1 +10722,7,1.0,0,1.5148108005523682,223,0.0,1 +10723,7,1.0,0,1.2548136711120605,224,1.0,1 +10724,7,1.0,0,1.3848124742507935,225,1.0,1 +10725,7,1.0,0,1.4018123149871826,226,1.0,1 +10726,7,1.0,0,1.5608103275299072,227,1.0,1 +10727,7,1.0,0,1.6598089933395386,228,1.0,1 +10728,7,1.0,0,1.4978110790252686,229,1.0,1 +10729,7,1.0,0,1.253813624382019,230,1.0,1 +10730,7,1.0,0,1.4928110837936401,231,0.0,1 +10731,7,1.0,0,1.8738062381744385,232,0.0,1 +10732,7,0.0,0,1.3808125257492065,233,0.0,1 +10733,7,1.0,0,1.570810079574585,234,1.0,1 +10734,7,1.0,0,1.6968085765838623,235,1.0,1 +10735,7,0.0,0,1.6848087310791016,236,0.0,1 +10736,7,1.0,0,1.5348105430603027,237,1.0,1 +10737,7,1.0,0,1.4238120317459106,238,1.0,1 +10738,7,1.0,0,1.229813575744629,239,1.0,1 +10739,7,1.0,0,1.3328131437301636,240,1.0,1 +10740,7,1.0,0,1.4328118562698364,241,0.0,1 +10741,7,0.0,0,1.7678076028823853,242,0.0,1 +10742,7,1.0,0,1.7168083190917969,243,1.0,1 +10743,7,1.0,0,1.2578136920928955,244,1.0,1 +10744,7,1.0,0,1.4008122682571411,245,0.0,1 +10745,7,0.0,0,1.189813494682312,246,0.0,1 +10746,7,0.0,0,1.7818074226379395,247,0.0,1 +10747,7,1.0,0,1.940805435180664,248,1.0,1 +10748,7,1.0,0,1.3878124952316284,249,1.0,1 +10749,7,1.0,0,1.4408117532730103,250,1.0,1 +10750,7,1.0,0,1.4188120365142822,251,1.0,1 +10751,7,1.0,0,1.5098109245300293,252,1.0,1 +10752,7,1.0,0,1.2768137454986572,253,1.0,1 +10753,7,1.0,0,1.287813663482666,254,1.0,1 +10754,7,1.0,0,1.1388133764266968,255,1.0,1 +10755,7,1.0,0,1.1798135042190552,256,1.0,1 +10756,7,1.0,0,1.1778135299682617,257,1.0,1 +10757,7,1.0,0,1.8258068561553955,258,1.0,1 +10758,7,1.0,0,1.5778100490570068,259,1.0,1 +10759,7,1.0,0,1.7288081645965576,260,1.0,1 +10760,7,1.0,0,1.2658137083053589,261,0.0,1 +10761,7,1.0,0,1.2748136520385742,262,0.0,1 +10762,7,0.0,0,1.3438130617141724,263,0.0,1 +10763,7,1.0,0,1.8288068771362305,264,1.0,1 +10764,7,1.0,0,2.051804542541504,265,1.0,1 +10765,7,1.0,0,1.52181077003479,266,1.0,1 +10766,7,1.0,0,1.6708087921142578,267,1.0,1 +10767,7,1.0,0,1.4218120574951172,268,1.0,1 +10768,7,1.0,0,1.4648114442825317,269,1.0,1 +10769,7,1.0,0,1.1768134832382202,270,0.0,1 +10770,7,0.0,0,1.3848124742507935,271,0.0,1 +10771,7,0.0,0,1.2348135709762573,272,0.0,1 +10772,7,1.0,0,1.2518136501312256,273,1.0,1 +10773,7,1.0,0,1.3148133754730225,274,1.0,1 +10774,7,1.0,0,2.101807117462158,275,1.0,1 +10775,7,1.0,0,1.503811001777649,276,1.0,1 +10776,7,1.0,0,1.5148108005523682,277,1.0,1 +10777,7,1.0,0,1.3708126544952393,278,1.0,1 +10778,7,1.0,0,1.3078135251998901,279,0.0,1 +10779,7,0.0,0,1.229813575744629,280,0.0,1 +10780,7,0.0,0,1.3228132724761963,281,0.0,1 +10781,7,1.0,0,1.6758087873458862,282,1.0,1 +10782,7,1.0,0,1.3878124952316284,283,1.0,1 +10783,7,0.0,0,1.503811001777649,284,0.0,1 +10784,7,1.0,0,1.7918072938919067,285,1.0,1 +10785,7,1.0,0,1.8558064699172974,286,1.0,1 +10786,7,1.0,0,2.073805809020996,287,1.0,1 +10787,7,0.0,0,2.379819869995117,288,0.0,1 +10788,7,1.0,0,1.5398105382919312,289,1.0,1 +10789,7,1.0,0,1.2218135595321655,290,0.0,1 +10790,7,0.0,0,1.8108069896697998,291,0.0,1 +10791,7,1.0,0,1.294813632965088,292,1.0,1 +10792,7,1.0,0,1.1998136043548584,293,1.0,1 +10793,7,1.0,0,1.4458117485046387,294,1.0,1 +10794,7,1.0,0,1.2208136320114136,295,1.0,1 +10795,7,1.0,0,1.2418136596679688,296,1.0,1 +10796,7,1.0,0,1.3298132419586182,297,1.0,1 +10797,7,1.0,0,1.3288131952285767,298,1.0,1 +10798,7,1.0,0,1.566810131072998,299,1.0,1 +10799,7,1.0,0,1.2038135528564453,300,1.0,1 +10800,7,1.0,0,1.3218133449554443,301,1.0,1 +10801,7,1.0,0,1.2728136777877808,302,1.0,1 +10802,7,1.0,0,1.4948110580444336,303,1.0,1 +10803,7,1.0,0,1.5968098640441895,304,1.0,1 +10804,7,1.0,0,1.185813546180725,305,1.0,1 +10805,7,0.0,0,1.4918111562728882,306,0.0,1 +10806,7,1.0,0,1.3898124694824219,307,1.0,1 +10807,7,1.0,0,1.5168107748031616,308,1.0,1 +10808,7,1.0,0,1.5868098735809326,309,1.0,1 +10809,7,1.0,0,1.289813756942749,310,1.0,1 +10810,7,0.0,0,1.9758049249649048,311,0.0,1 +10811,7,1.0,0,1.2928136587142944,312,1.0,1 +10812,7,1.0,0,1.3548128604888916,313,1.0,1 +10813,7,1.0,0,1.3018136024475098,314,1.0,1 +10814,7,1.0,0,1.3328131437301636,315,1.0,1 +10815,7,1.0,0,1.4478117227554321,316,1.0,1 +10816,7,1.0,0,1.2748136520385742,317,1.0,1 +10817,7,1.0,0,1.2698136568069458,318,1.0,1 +10818,7,1.0,0,1.4908111095428467,319,1.0,1 +10819,7,1.0,0,1.6528091430664062,320,0.0,1 +10820,7,1.0,0,1.5288106203079224,321,1.0,1 +10821,7,1.0,0,1.3068134784698486,322,1.0,1 +10822,7,1.0,0,1.4368118047714233,323,0.0,1 +10823,7,1.0,0,1.3728126287460327,324,1.0,1 +10824,7,1.0,0,2.524826765060425,325,1.0,1 +10825,7,1.0,0,1.565810203552246,326,1.0,1 +10826,7,1.0,0,1.5158108472824097,327,0.0,1 +10827,7,1.0,0,1.3288131952285767,328,0.0,1 +10828,7,1.0,0,2.114807605743408,329,1.0,1 +10829,7,1.0,0,1.4538116455078125,330,1.0,1 +10830,7,0.0,0,1.287813663482666,331,1.0,1 +10831,7,0.0,0,1.3658127784729004,332,0.0,1 +10832,7,1.0,0,1.2178136110305786,333,1.0,1 +10833,7,1.0,0,1.2748136520385742,334,0.0,1 +10834,7,0.0,0,1.618809461593628,335,0.0,1 +10835,7,1.0,0,1.3888124227523804,336,1.0,1 +10836,7,1.0,0,1.5998097658157349,337,1.0,1 +10837,7,1.0,0,1.3508129119873047,338,0.0,1 +10838,7,0.0,0,1.4588115215301514,339,0.0,1 +10839,7,0.0,0,1.4178121089935303,340,1.0,1 +10840,7,0.0,0,1.3458130359649658,341,0.0,1 +10841,7,1.0,0,1.9138057231903076,342,1.0,1 +10842,7,1.0,0,1.3198133707046509,343,1.0,1 +10843,7,1.0,0,1.4938111305236816,344,1.0,1 +10844,7,0.0,0,1.5178108215332031,345,0.0,1 +10845,7,1.0,0,1.3688126802444458,346,1.0,1 +10846,7,1.0,0,1.8078070878982544,347,1.0,1 +10847,7,1.0,0,1.189813494682312,348,1.0,1 +10848,7,1.0,0,1.7738075256347656,349,1.0,1 +10849,7,1.0,0,1.222813606262207,350,1.0,1 +10850,7,1.0,0,1.2338136434555054,351,1.0,1 +10851,7,1.0,0,1.4428117275238037,352,1.0,1 +10852,7,1.0,0,1.5858099460601807,353,1.0,1 +10853,7,1.0,0,1.2188135385513306,354,1.0,1 +10854,7,0.0,0,1.198813557624817,355,0.0,1 +10855,7,1.0,0,1.2388136386871338,356,1.0,1 +10856,7,1.0,0,1.293813705444336,357,1.0,1 +10857,7,1.0,0,1.617809534072876,358,1.0,1 +10858,7,1.0,0,1.3918124437332153,359,1.0,1 +10859,7,1.0,0,1.2808136940002441,360,1.0,1 +10860,7,1.0,0,1.2788137197494507,361,1.0,1 +10861,7,1.0,0,1.430811882019043,362,1.0,1 +10862,7,1.0,0,1.6268093585968018,363,1.0,1 +10863,7,1.0,0,1.3838125467300415,364,1.0,1 +10864,7,1.0,0,1.5868098735809326,365,1.0,1 +10865,7,1.0,0,1.4878112077713013,366,1.0,1 +10866,7,1.0,0,1.3878124952316284,367,1.0,1 +10867,7,1.0,0,1.185813546180725,368,1.0,1 +10868,7,1.0,0,1.2708137035369873,369,1.0,1 +10869,7,1.0,0,1.2888137102127075,370,0.0,1 +10870,7,0.0,0,1.6968085765838623,371,0.0,1 +10871,7,0.0,0,1.408812165260315,372,0.0,1 +10872,7,0.0,0,1.6418092250823975,373,0.0,1 +10873,7,0.0,0,1.4358118772506714,374,0.0,1 +10874,7,1.0,0,2.4978256225585938,375,1.0,1 +10875,7,1.0,0,1.2118135690689087,376,1.0,1 +10876,7,1.0,0,1.4108121395111084,377,1.0,1 +10877,7,1.0,0,1.4218120574951172,378,1.0,1 +10878,7,1.0,0,1.2638137340545654,379,1.0,1 +10879,7,1.0,0,1.2828136682510376,380,1.0,1 +10880,7,1.0,0,1.231813669204712,381,0.0,1 +10881,7,0.0,0,1.287813663482666,382,0.0,1 +10882,7,1.0,0,1.4178121089935303,383,1.0,1 +10883,7,1.0,0,1.473811388015747,384,1.0,1 +10884,7,1.0,0,1.2708137035369873,385,1.0,1 +10885,7,1.0,0,1.3878124952316284,386,1.0,1 +10886,7,1.0,0,1.572810173034668,387,1.0,1 +10887,7,1.0,0,1.5198107957839966,388,1.0,1 +10888,7,1.0,0,1.2478137016296387,389,0.0,1 +10889,7,1.0,0,1.4058122634887695,390,1.0,1 +10890,7,1.0,0,1.470811367034912,391,1.0,1 +10891,7,1.0,0,1.3368130922317505,392,1.0,1 +10892,7,1.0,0,1.804807186126709,393,1.0,1 +10893,7,1.0,0,1.407812237739563,394,1.0,1 +10894,7,1.0,0,1.1918134689331055,395,1.0,1 +10895,7,1.0,0,1.448811650276184,396,1.0,1 +10896,7,1.0,0,1.8838061094284058,397,1.0,1 +10897,7,0.0,0,1.9878047704696655,398,0.0,1 +10898,7,1.0,0,1.3108134269714355,399,1.0,1 +10899,7,0.0,0,1.2828136682510376,400,0.0,1 +10900,7,1.0,0,1.3768125772476196,401,0.0,1 +10901,7,1.0,0,1.7408080101013184,402,0.0,1 +10902,7,0.0,0,1.4068121910095215,403,0.0,1 +10903,7,0.0,0,1.290813684463501,404,0.0,1 +10904,7,0.0,0,1.3028135299682617,405,0.0,1 +10905,7,0.0,0,1.8388066291809082,406,0.0,1 +10906,7,0.0,0,1.2918137311935425,407,0.0,1 +10907,7,0.0,0,1.2788137197494507,408,0.0,1 +10908,7,1.0,0,2.1448090076446533,409,1.0,1 +10909,7,0.0,0,1.6488091945648193,410,0.0,1 +10910,7,1.0,0,1.1668134927749634,411,1.0,1 +10911,7,1.0,0,1.2768137454986572,412,1.0,1 +10912,7,1.0,0,1.6448092460632324,413,1.0,1 +10913,7,1.0,0,1.2698136568069458,414,1.0,1 +10914,7,1.0,0,1.3498129844665527,415,1.0,1 +10915,7,1.0,0,1.378812551498413,416,0.0,1 +10916,7,1.0,0,1.4698114395141602,417,0.0,1 +10917,7,0.0,0,1.5968098640441895,418,0.0,1 +10918,7,0.0,0,2.08980655670166,419,0.0,1 +10919,7,0.0,0,2.085806369781494,420,0.0,1 +10920,7,0.0,0,1.2128136157989502,421,1.0,1 +10921,7,0.0,0,1.3898124694824219,422,0.0,1 +10922,7,1.0,0,1.9688050746917725,423,0.0,1 +10923,7,0.0,0,1.6568090915679932,424,0.0,1 +10924,7,0.0,0,1.4328118562698364,425,0.0,1 +10925,7,1.0,0,1.2698136568069458,426,1.0,1 +10926,7,1.0,0,1.6888086795806885,427,0.0,1 +10927,7,0.0,0,1.250813603401184,428,0.0,1 +10928,7,0.0,0,1.316813349723816,429,0.0,1 +10929,7,0.0,0,1.760807752609253,430,1.0,1 +10930,7,0.0,0,1.612809658050537,431,0.0,1 +10931,7,1.0,0,1.6308093070983887,432,1.0,1 +10932,7,1.0,0,1.35981285572052,433,1.0,1 +10933,7,1.0,0,1.4988110065460205,434,1.0,1 +10934,7,1.0,0,1.2428135871887207,435,1.0,1 +10935,7,1.0,0,1.5488104820251465,436,1.0,1 +10936,7,1.0,0,1.568810224533081,437,1.0,1 +10937,7,1.0,0,1.6018097400665283,438,1.0,1 +10938,7,1.0,0,1.8778061866760254,439,1.0,1 +10939,7,1.0,0,1.6278094053268433,440,1.0,1 +10940,7,1.0,0,1.287813663482666,441,1.0,1 +10941,7,1.0,0,1.316813349723816,442,0.0,1 +10942,7,0.0,0,1.5198107957839966,443,0.0,1 +10943,7,1.0,0,1.477811336517334,444,0.0,1 +10944,7,0.0,0,1.7638076543807983,445,0.0,1 +10945,7,1.0,0,1.4948110580444336,446,1.0,1 +10946,7,1.0,0,1.195813536643982,447,1.0,1 +10947,7,1.0,0,1.6798087358474731,448,1.0,1 +10948,7,1.0,0,1.3988122940063477,449,1.0,1 +10949,7,1.0,0,1.7878073453903198,450,1.0,1 +10950,7,1.0,0,1.3728126287460327,451,1.0,1 +10951,7,0.0,0,1.2308136224746704,452,0.0,1 +10952,7,1.0,0,1.5538103580474854,453,1.0,1 +10953,7,1.0,0,1.4328118562698364,454,0.0,1 +10954,7,0.0,0,1.1968135833740234,455,0.0,1 +10955,7,0.0,0,1.2158136367797852,456,0.0,1 +10956,7,1.0,0,1.3618128299713135,457,0.0,1 +10957,7,0.0,0,1.7368080615997314,458,0.0,1 +10958,7,1.0,0,2.0198044776916504,459,1.0,1 +10959,7,1.0,0,1.4838112592697144,460,1.0,1 +10960,7,0.0,0,1.3688126802444458,461,0.0,1 +10961,7,1.0,0,1.84580659866333,462,1.0,1 +10962,7,1.0,0,1.4448117017745972,463,0.0,1 +10963,7,0.0,0,1.2688137292861938,464,0.0,1 +10964,7,0.0,0,1.481811285018921,465,0.0,1 +10965,7,1.0,0,2.526826858520508,466,1.0,1 +10966,7,1.0,0,1.849806547164917,467,1.0,1 +10967,7,1.0,0,1.3318132162094116,468,1.0,1 +10968,7,1.0,0,1.4638115167617798,469,1.0,1 +10969,7,1.0,0,1.2718136310577393,470,1.0,1 +10970,7,1.0,0,1.1828135251998901,471,1.0,1 +10971,7,1.0,0,1.2158136367797852,472,1.0,1 +10972,7,1.0,0,1.4248119592666626,473,1.0,1 +10973,7,1.0,0,1.3628127574920654,474,1.0,1 +10974,7,1.0,0,1.5468103885650635,475,1.0,1 +10975,7,1.0,0,1.4388117790222168,476,1.0,1 +10976,7,1.0,0,1.3948123455047607,477,0.0,1 +10977,7,1.0,0,2.101807117462158,478,0.0,1 +10978,7,0.0,0,1.3438130617141724,479,0.0,1 +10979,7,0.0,0,1.500810980796814,480,0.0,1 +10980,7,0.0,0,1.5348105430603027,481,1.0,1 +10981,7,0.0,0,1.6088097095489502,482,0.0,1 +10982,7,1.0,0,2.266814708709717,483,1.0,1 +10983,7,1.0,0,1.618809461593628,484,1.0,1 +10984,7,1.0,0,1.455811619758606,485,1.0,1 +10985,7,1.0,0,1.8208069801330566,486,1.0,1 +10986,7,1.0,0,1.5298106670379639,487,1.0,1 +10987,7,1.0,0,1.3108134269714355,488,1.0,1 +10988,7,1.0,0,1.2808136940002441,489,1.0,1 +10989,7,1.0,0,1.12881338596344,490,1.0,1 +10990,7,1.0,0,1.4008122682571411,491,0.0,1 +10991,7,1.0,0,1.5248106718063354,492,1.0,1 +10992,7,1.0,0,2.054804801940918,493,1.0,1 +10993,7,1.0,0,1.7918072938919067,494,1.0,1 +10994,7,1.0,0,1.9178056716918945,495,1.0,1 +10995,7,1.0,0,1.1428134441375732,496,1.0,1 +10996,7,1.0,0,1.35981285572052,497,1.0,1 +10997,7,1.0,0,1.216813564300537,498,0.0,1 +10998,7,1.0,0,1.8248069286346436,499,0.0,1 +10999,7,0.0,0,1.231813669204712,500,1.0,1 +11000,7,0.0,1,1.5588102340698242,1,0.0,1 +11001,7,1.0,1,1.9688050746917725,2,1.0,1 +11002,7,1.0,1,1.2558135986328125,3,1.0,1 +11003,7,1.0,1,1.5018110275268555,4,0.0,1 +11004,7,1.0,1,1.289813756942749,5,0.0,1 +11005,7,0.0,1,1.5468103885650635,6,0.0,1 +11006,7,0.0,1,1.4378118515014648,7,0.0,1 +11007,7,1.0,1,1.455811619758606,8,1.0,1 +11008,7,1.0,1,1.2418136596679688,9,0.0,1 +11009,7,0.0,1,1.16481351852417,10,0.0,1 +11010,7,0.0,1,1.315813422203064,11,0.0,1 +11011,7,0.0,1,1.1738134622573853,12,1.0,1 +11012,7,0.0,1,1.5458104610443115,13,0.0,1 +11013,7,1.0,1,1.9718049764633179,14,0.0,1 +11014,7,0.0,1,1.3928123712539673,15,0.0,1 +11015,7,0.0,1,1.4418118000030518,16,0.0,1 +11016,7,0.0,1,2.2718148231506348,17,0.0,1 +11017,7,1.0,1,1.5358105897903442,18,1.0,1 +11018,7,1.0,1,1.2358136177062988,19,1.0,1 +11019,7,1.0,1,1.3138134479522705,20,1.0,1 +11020,7,1.0,1,1.7048084735870361,21,1.0,1 +11021,7,1.0,1,1.4138121604919434,22,1.0,1 +11022,7,1.0,1,1.2468136548995972,23,0.0,1 +11023,7,0.0,1,1.3298132419586182,24,0.0,1 +11024,7,1.0,1,1.256813645362854,25,1.0,1 +11025,7,1.0,1,1.338813066482544,26,1.0,1 +11026,7,1.0,1,1.2018135786056519,27,0.0,1 +11027,7,0.0,1,1.4498116970062256,28,0.0,1 +11028,7,0.0,1,2.052804708480835,29,0.0,1 +11029,7,0.0,1,1.6738088130950928,30,0.0,1 +11030,7,1.0,1,1.565810203552246,31,1.0,1 +11031,7,0.0,1,2.054804801940918,32,0.0,1 +11032,7,0.0,1,2.08280611038208,33,1.0,1 +11033,7,0.0,1,1.495811104774475,34,1.0,1 +11034,7,0.0,1,1.1458134651184082,35,1.0,1 +11035,7,1.0,1,1.5808100700378418,36,1.0,1 +11036,7,1.0,1,1.3828125,37,1.0,1 +11037,7,1.0,1,1.7438079118728638,38,1.0,1 +11038,7,0.0,1,1.8808062076568604,39,1.0,1 +11039,7,0.0,1,1.3718127012252808,40,0.0,1 +11040,7,1.0,1,1.4178121089935303,41,1.0,1 +11041,7,1.0,1,1.5318106412887573,42,1.0,1 +11042,7,1.0,1,1.713808298110962,43,0.0,1 +11043,7,0.0,1,1.356812834739685,44,0.0,1 +11044,7,1.0,1,1.2818137407302856,45,1.0,1 +11045,7,0.0,1,1.4348118305206299,46,0.0,1 +11046,7,1.0,1,2.4348225593566895,47,0.0,1 +11047,7,1.0,1,1.2128136157989502,48,0.0,1 +11048,7,0.0,1,1.2778136730194092,49,0.0,1 +11049,7,0.0,1,1.5838099718093872,50,1.0,1 +11050,7,0.0,1,1.2748136520385742,51,0.0,1 +11051,7,0.0,1,1.6638089418411255,52,0.0,1 +11052,7,1.0,1,1.569810152053833,53,1.0,1 +11053,7,1.0,1,1.3298132419586182,54,1.0,1 +11054,7,1.0,1,1.4648114442825317,55,1.0,1 +11055,7,1.0,1,1.5468103885650635,56,0.0,1 +11056,7,0.0,1,1.2138135433197021,57,0.0,1 +11057,7,1.0,1,1.2518136501312256,58,1.0,1 +11058,7,1.0,1,1.6728088855743408,59,1.0,1 +11059,7,1.0,1,1.3738126754760742,60,1.0,1 +11060,7,1.0,1,1.2498136758804321,61,1.0,1 +11061,7,1.0,1,1.456811547279358,62,0.0,1 +11062,7,1.0,1,1.9558051824569702,63,1.0,1 +11063,7,1.0,1,1.2058135271072388,64,1.0,1 +11064,7,1.0,1,1.4348118305206299,65,1.0,1 +11065,7,1.0,1,1.4548115730285645,66,1.0,1 +11066,7,1.0,1,1.5678101778030396,67,0.0,1 +11067,7,0.0,1,1.219813585281372,68,0.0,1 +11068,7,1.0,1,2.4368226528167725,69,1.0,1 +11069,7,1.0,1,1.256813645362854,70,1.0,1 +11070,7,1.0,1,1.6798087358474731,71,0.0,1 +11071,7,0.0,1,1.3778126239776611,72,0.0,1 +11072,7,1.0,1,1.8738062381744385,73,1.0,1 +11073,7,0.0,1,1.8828060626983643,74,1.0,1 +11074,7,1.0,1,1.2778136730194092,75,1.0,1 +11075,7,0.0,1,1.5018110275268555,76,0.0,1 +11076,7,1.0,1,1.3208132982254028,77,1.0,1 +11077,7,1.0,1,1.6098096370697021,78,1.0,1 +11078,7,1.0,1,1.8478065729141235,79,1.0,1 +11079,7,1.0,1,1.547810435295105,80,1.0,1 +11080,7,1.0,1,1.5838099718093872,81,0.0,1 +11081,7,0.0,1,1.2618136405944824,82,1.0,1 +11082,7,0.0,1,1.6328094005584717,83,0.0,1 +11083,7,0.0,1,2.100806951522827,84,1.0,1 +11084,7,0.0,1,1.4278119802474976,85,0.0,1 +11085,7,1.0,1,1.5298106670379639,86,1.0,1 +11086,7,1.0,1,1.4538116455078125,87,1.0,1 +11087,7,1.0,1,1.481811285018921,88,1.0,1 +11088,7,1.0,1,1.4408117532730103,89,0.0,1 +11089,7,1.0,1,2.063805103302002,90,1.0,1 +11090,7,1.0,1,1.2918137311935425,91,1.0,1 +11091,7,1.0,1,1.9918047189712524,92,1.0,1 +11092,7,1.0,1,2.06280517578125,93,1.0,1 +11093,7,1.0,1,2.0178043842315674,94,1.0,1 +11094,7,1.0,1,1.4498116970062256,95,1.0,1 +11095,7,1.0,1,1.2338136434555054,96,1.0,1 +11096,7,1.0,1,1.3968123197555542,97,0.0,1 +11097,7,1.0,1,2.2178125381469727,98,1.0,1 +11098,7,1.0,1,1.5288106203079224,99,1.0,1 +11099,7,1.0,1,1.5288106203079224,100,1.0,1 +11100,7,1.0,1,1.5428104400634766,101,0.0,1 +11101,7,1.0,1,1.9218056201934814,102,1.0,1 +11102,7,1.0,1,1.5418105125427246,103,1.0,1 +11103,7,1.0,1,1.6238094568252563,104,1.0,1 +11104,7,1.0,1,2.297816276550293,105,0.0,1 +11105,7,1.0,1,2.092806577682495,106,0.0,1 +11106,7,0.0,1,1.222813606262207,107,1.0,1 +11107,7,0.0,1,1.2328135967254639,108,1.0,1 +11108,7,0.0,1,1.3708126544952393,109,1.0,1 +11109,7,0.0,1,1.407812237739563,110,0.0,1 +11110,7,0.0,1,1.8998059034347534,111,1.0,1 +11111,7,0.0,1,1.5818099975585938,112,1.0,1 +11112,7,0.0,1,1.2778136730194092,113,1.0,1 +11113,7,0.0,1,1.2418136596679688,114,0.0,1 +11114,7,1.0,1,1.4228119850158691,115,1.0,1 +11115,7,1.0,1,1.2708137035369873,116,1.0,1 +11116,7,1.0,1,1.3888124227523804,117,1.0,1 +11117,7,1.0,1,1.474811315536499,118,1.0,1 +11118,7,1.0,1,1.6738088130950928,119,1.0,1 +11119,7,1.0,1,1.2158136367797852,120,1.0,1 +11120,7,1.0,1,1.216813564300537,121,1.0,1 +11121,7,1.0,1,1.5638102293014526,122,1.0,1 +11122,7,1.0,1,1.617809534072876,123,1.0,1 +11123,7,1.0,1,1.6458091735839844,124,0.0,1 +11124,7,1.0,1,1.315813422203064,125,1.0,1 +11125,7,1.0,1,1.7198082208633423,126,1.0,1 +11126,7,1.0,1,1.186813473701477,127,1.0,1 +11127,7,1.0,1,1.253813624382019,128,0.0,1 +11128,7,1.0,1,1.613809585571289,129,1.0,1 +11129,7,1.0,1,1.3108134269714355,130,0.0,1 +11130,7,1.0,1,1.919805645942688,131,1.0,1 +11131,7,1.0,1,1.2498136758804321,132,1.0,1 +11132,7,1.0,1,1.4228119850158691,133,0.0,1 +11133,7,1.0,1,1.5868098735809326,134,0.0,1 +11134,7,0.0,1,1.2358136177062988,135,1.0,1 +11135,7,0.0,1,1.1948134899139404,136,1.0,1 +11136,7,0.0,1,1.9178056716918945,137,1.0,1 +11137,7,0.0,1,1.223813533782959,138,0.0,1 +11138,7,0.0,1,1.3998123407363892,139,0.0,1 +11139,7,0.0,1,1.2058135271072388,140,1.0,1 +11140,7,0.0,1,1.1508134603500366,141,0.0,1 +11141,7,1.0,1,1.7698075771331787,142,1.0,1 +11142,7,1.0,1,1.3278132677078247,143,1.0,1 +11143,7,0.0,1,1.3518129587173462,144,0.0,1 +11144,7,1.0,1,1.3468129634857178,145,1.0,1 +11145,7,1.0,1,1.4068121910095215,146,1.0,1 +11146,7,1.0,1,1.228813648223877,147,1.0,1 +11147,7,1.0,1,1.6538090705871582,148,1.0,1 +11148,7,1.0,1,1.6408092975616455,149,1.0,1 +11149,7,1.0,1,1.2588136196136475,150,1.0,1 +11150,7,1.0,1,1.8588063716888428,151,1.0,1 +11151,7,1.0,1,1.4828112125396729,152,1.0,1 +11152,7,0.0,1,1.4628114700317383,153,0.0,1 +11153,7,1.0,1,1.4538116455078125,154,1.0,1 +11154,7,1.0,1,1.808807134628296,155,1.0,1 +11155,7,1.0,1,1.2698136568069458,156,1.0,1 +11156,7,1.0,1,1.2338136434555054,157,1.0,1 +11157,7,1.0,1,1.525810718536377,158,1.0,1 +11158,7,1.0,1,1.1808135509490967,159,1.0,1 +11159,7,1.0,1,1.2428135871887207,160,1.0,1 +11160,7,1.0,1,1.470811367034912,161,1.0,1 +11161,7,1.0,1,1.6448092460632324,162,1.0,1 +11162,7,1.0,1,1.2788137197494507,163,1.0,1 +11163,7,1.0,1,1.5028109550476074,164,1.0,1 +11164,7,1.0,1,1.662808895111084,165,1.0,1 +11165,7,1.0,1,1.256813645362854,166,1.0,1 +11166,7,1.0,1,1.495811104774475,167,1.0,1 +11167,7,1.0,1,1.3198133707046509,168,1.0,1 +11168,7,1.0,1,1.222813606262207,169,1.0,1 +11169,7,1.0,1,1.4648114442825317,170,1.0,1 +11170,7,1.0,1,2.0188043117523193,171,1.0,1 +11171,7,1.0,1,1.8358067274093628,172,1.0,1 +11172,7,1.0,1,1.6288094520568848,173,0.0,1 +11173,7,0.0,1,2.2518138885498047,174,1.0,1 +11174,7,0.0,1,1.708808422088623,175,0.0,1 +11175,7,0.0,1,1.662808895111084,176,0.0,1 +11176,7,1.0,1,1.8158069849014282,177,1.0,1 +11177,7,1.0,1,1.658808946609497,178,1.0,1 +11178,7,1.0,1,1.543810486793518,179,1.0,1 +11179,7,1.0,1,1.189813494682312,180,1.0,1 +11180,7,1.0,1,1.425812005996704,181,1.0,1 +11181,7,1.0,1,1.3078135251998901,182,1.0,1 +11182,7,1.0,1,1.6758087873458862,183,0.0,1 +11183,7,0.0,1,1.1638134717941284,184,0.0,1 +11184,7,1.0,1,1.408812165260315,185,1.0,1 +11185,7,1.0,1,1.499811053276062,186,0.0,1 +11186,7,1.0,1,2.1658101081848145,187,1.0,1 +11187,7,1.0,1,1.2798137664794922,188,1.0,1 +11188,7,1.0,1,1.3718127012252808,189,1.0,1 +11189,7,1.0,1,1.252813696861267,190,0.0,1 +11190,7,1.0,1,2.112807512283325,191,1.0,1 +11191,7,1.0,1,1.4888111352920532,192,1.0,1 +11192,7,1.0,1,1.6598089933395386,193,1.0,1 +11193,7,1.0,1,1.2348135709762573,194,1.0,1 +11194,7,1.0,1,1.3798125982284546,195,1.0,1 +11195,7,1.0,1,1.5378105640411377,196,1.0,1 +11196,7,1.0,1,1.456811547279358,197,0.0,1 +11197,7,1.0,1,1.2488136291503906,198,1.0,1 +11198,7,1.0,1,1.2778136730194092,199,0.0,1 +11199,7,0.0,1,1.9648051261901855,200,0.0,1 +11200,7,0.0,1,1.250813603401184,201,1.0,1 +11201,7,0.0,1,1.9038058519363403,202,0.0,1 +11202,7,0.0,1,1.451811671257019,203,0.0,1 +11203,7,0.0,1,2.0158042907714844,204,0.0,1 +11204,7,1.0,1,1.481811285018921,205,1.0,1 +11205,7,1.0,1,1.448811650276184,206,1.0,1 +11206,7,1.0,1,1.5978097915649414,207,1.0,1 +11207,7,1.0,1,1.6708087921142578,208,0.0,1 +11208,7,1.0,1,1.3028135299682617,209,1.0,1 +11209,7,1.0,1,2.1828107833862305,210,0.0,1 +11210,7,0.0,1,1.2918137311935425,211,0.0,1 +11211,7,0.0,1,1.4878112077713013,212,0.0,1 +11212,7,0.0,1,2.037804126739502,213,0.0,1 +11213,7,1.0,1,1.666808843612671,214,1.0,1 +11214,7,1.0,1,1.5378105640411377,215,1.0,1 +11215,7,0.0,1,1.2688137292861938,216,1.0,1 +11216,7,0.0,1,1.1938135623931885,217,1.0,1 +11217,7,0.0,1,1.1238133907318115,218,1.0,1 +11218,7,1.0,1,2.1448090076446533,219,1.0,1 +11219,7,1.0,1,1.5758100748062134,220,1.0,1 +11220,7,0.0,1,2.342818260192871,221,1.0,1 +11221,7,1.0,1,1.7258081436157227,222,1.0,1 +11222,7,1.0,1,1.4448117017745972,223,0.0,1 +11223,7,0.0,1,1.6308093070983887,224,0.0,1 +11224,7,1.0,1,1.6458091735839844,225,1.0,1 +11225,7,1.0,1,1.2638137340545654,226,1.0,1 +11226,7,1.0,1,1.41181218624115,227,1.0,1 +11227,7,1.0,1,1.643809199333191,228,1.0,1 +11228,7,1.0,1,2.072805643081665,229,0.0,1 +11229,7,0.0,1,1.3728126287460327,230,1.0,1 +11230,7,0.0,1,1.7778074741363525,231,0.0,1 +11231,7,0.0,1,1.4128121137619019,232,1.0,1 +11232,7,0.0,1,1.2748136520385742,233,0.0,1 +11233,7,0.0,1,1.6198095083236694,234,0.0,1 +11234,7,0.0,1,1.3478130102157593,235,0.0,1 +11235,7,1.0,1,1.4018123149871826,236,1.0,1 +11236,7,1.0,1,1.2468136548995972,237,1.0,1 +11237,7,1.0,1,1.5488104820251465,238,1.0,1 +11238,7,1.0,1,1.662808895111084,239,1.0,1 +11239,7,1.0,1,1.5088108777999878,240,1.0,1 +11240,7,0.0,1,1.9578051567077637,241,0.0,1 +11241,7,1.0,1,2.0208044052124023,242,1.0,1 +11242,7,1.0,1,1.3038135766983032,243,1.0,1 +11243,7,1.0,1,1.5028109550476074,244,0.0,1 +11244,7,0.0,1,1.7648077011108398,245,0.0,1 +11245,7,0.0,1,1.4578115940093994,246,0.0,1 +11246,7,0.0,1,1.4398118257522583,247,0.0,1 +11247,7,1.0,1,1.5148108005523682,248,1.0,1 +11248,7,1.0,1,1.8998059034347534,249,0.0,1 +11249,7,0.0,1,1.4618115425109863,250,0.0,1 +11250,7,0.0,1,1.4468116760253906,251,0.0,1 +11251,7,0.0,1,1.3288131952285767,252,0.0,1 +11252,7,0.0,1,1.5758100748062134,253,0.0,1 +11253,7,0.0,1,1.4478117227554321,254,0.0,1 +11254,7,1.0,1,2.4248220920562744,255,0.0,1 +11255,7,1.0,1,1.5648102760314941,256,1.0,1 +11256,7,1.0,1,1.5148108005523682,257,1.0,1 +11257,7,1.0,1,1.4878112077713013,258,1.0,1 +11258,7,1.0,1,1.3048135042190552,259,1.0,1 +11259,7,1.0,1,1.5888099670410156,260,1.0,1 +11260,7,1.0,1,1.2818137407302856,261,0.0,1 +11261,7,0.0,1,1.4358118772506714,262,0.0,1 +11262,7,0.0,1,1.5718101263046265,263,1.0,1 +11263,7,0.0,1,2.044804334640503,264,1.0,1 +11264,7,0.0,1,1.2958136796951294,265,0.0,1 +11265,7,0.0,1,1.1848134994506836,266,1.0,1 +11266,7,1.0,1,1.448811650276184,267,0.0,1 +11267,7,0.0,1,1.2788137197494507,268,1.0,1 +11268,7,0.0,1,1.259813666343689,269,1.0,1 +11269,7,0.0,1,1.2888137102127075,270,0.0,1 +11270,7,0.0,1,1.4378118515014648,271,0.0,1 +11271,7,1.0,1,1.5888099670410156,272,1.0,1 +11272,7,1.0,1,1.5018110275268555,273,1.0,1 +11273,7,1.0,1,1.2558135986328125,274,1.0,1 +11274,7,1.0,1,1.7388079166412354,275,1.0,1 +11275,7,1.0,1,1.2248135805130005,276,1.0,1 +11276,7,1.0,1,1.290813684463501,277,1.0,1 +11277,7,1.0,1,1.4508116245269775,278,1.0,1 +11278,7,1.0,1,1.5758100748062134,279,1.0,1 +11279,7,1.0,1,1.3218133449554443,280,1.0,1 +11280,7,1.0,1,1.6428091526031494,281,1.0,1 +11281,7,1.0,1,1.5368105173110962,282,1.0,1 +11282,7,1.0,1,1.5108108520507812,283,1.0,1 +11283,7,1.0,1,1.3228132724761963,284,1.0,1 +11284,7,1.0,1,1.3718127012252808,285,0.0,1 +11285,7,1.0,1,1.4108121395111084,286,1.0,1 +11286,7,1.0,1,1.3438130617141724,287,0.0,1 +11287,7,1.0,1,1.70680832862854,288,1.0,1 +11288,7,1.0,1,1.2918137311935425,289,0.0,1 +11289,7,1.0,1,1.731808066368103,290,1.0,1 +11290,7,1.0,1,1.5878099203109741,291,0.0,1 +11291,7,1.0,1,1.5078109502792358,292,0.0,1 +11292,7,1.0,1,1.6268093585968018,293,1.0,1 +11293,7,1.0,1,1.4798113107681274,294,1.0,1 +11294,7,1.0,1,1.8358067274093628,295,0.0,1 +11295,7,0.0,1,1.430811882019043,296,0.0,1 +11296,7,0.0,1,1.222813606262207,297,0.0,1 +11297,7,1.0,1,1.643809199333191,298,1.0,1 +11298,7,1.0,1,1.4618115425109863,299,1.0,1 +11299,7,1.0,1,1.5928099155426025,300,0.0,1 +11300,7,0.0,1,1.2768137454986572,301,1.0,1 +11301,7,0.0,1,1.5458104610443115,302,0.0,1 +11302,7,1.0,1,1.1968135833740234,303,1.0,1 +11303,7,1.0,1,1.433811902999878,304,1.0,1 +11304,7,1.0,1,1.3808125257492065,305,1.0,1 +11305,7,1.0,1,1.3658127784729004,306,1.0,1 +11306,7,1.0,1,1.3328131437301636,307,1.0,1 +11307,7,1.0,1,1.4098122119903564,308,1.0,1 +11308,7,1.0,1,1.3958123922348022,309,1.0,1 +11309,7,1.0,1,1.4418118000030518,310,1.0,1 +11310,7,1.0,1,1.5538103580474854,311,1.0,1 +11311,7,1.0,1,1.7148082256317139,312,0.0,1 +11312,7,0.0,1,1.4988110065460205,313,0.0,1 +11313,7,1.0,1,1.3758126497268677,314,1.0,1 +11314,7,1.0,1,1.4648114442825317,315,1.0,1 +11315,7,1.0,1,1.4698114395141602,316,1.0,1 +11316,7,1.0,1,1.3928123712539673,317,0.0,1 +11317,7,0.0,1,1.250813603401184,318,1.0,1 +11318,7,0.0,1,1.3688126802444458,319,0.0,1 +11319,7,0.0,1,1.4918111562728882,320,0.0,1 +11320,7,0.0,1,1.565810203552246,321,0.0,1 +11321,7,0.0,1,1.5648102760314941,322,1.0,1 +11322,7,0.0,1,1.3228132724761963,323,1.0,1 +11323,7,0.0,1,1.8118070363998413,324,1.0,1 +11324,7,0.0,1,1.2358136177062988,325,0.0,1 +11325,7,0.0,1,1.1948134899139404,326,1.0,1 +11326,7,0.0,1,1.1908135414123535,327,0.0,1 +11327,7,1.0,1,2.0178043842315674,328,1.0,1 +11328,7,1.0,1,1.4028122425079346,329,1.0,1 +11329,7,1.0,1,1.1818134784698486,330,1.0,1 +11330,7,1.0,1,1.4798113107681274,331,1.0,1 +11331,7,1.0,1,1.4358118772506714,332,0.0,1 +11332,7,1.0,1,1.3698127269744873,333,1.0,1 +11333,7,1.0,1,1.6418092250823975,334,0.0,1 +11334,7,0.0,1,1.3188133239746094,335,0.0,1 +11335,7,1.0,1,1.3268132209777832,336,1.0,1 +11336,7,1.0,1,1.9598051309585571,337,1.0,1 +11337,7,1.0,1,1.2158136367797852,338,1.0,1 +11338,7,1.0,1,1.3848124742507935,339,0.0,1 +11339,7,1.0,1,1.4458117485046387,340,0.0,1 +11340,7,0.0,1,1.6058096885681152,341,1.0,1 +11341,7,0.0,1,1.5998097658157349,342,1.0,1 +11342,7,0.0,1,1.1908135414123535,343,0.0,1 +11343,7,0.0,1,1.7288081645965576,344,0.0,1 +11344,7,0.0,1,1.2768137454986572,345,0.0,1 +11345,7,1.0,1,1.6378092765808105,346,0.0,1 +11346,7,0.0,1,2.538827419281006,347,1.0,1 +11347,7,0.0,1,1.363812804222107,348,0.0,1 +11348,7,1.0,1,1.9878047704696655,349,1.0,1 +11349,7,1.0,1,1.385812520980835,350,0.0,1 +11350,7,0.0,1,1.1678135395050049,351,1.0,1 +11351,7,0.0,1,1.1448134183883667,352,0.0,1 +11352,7,1.0,1,1.3988122940063477,353,1.0,1 +11353,7,1.0,1,1.8158069849014282,354,1.0,1 +11354,7,1.0,1,1.8728063106536865,355,1.0,1 +11355,7,0.0,1,1.4828112125396729,356,1.0,1 +11356,7,0.0,1,1.6228094100952148,357,0.0,1 +11357,7,1.0,1,1.4768112897872925,358,1.0,1 +11358,7,1.0,1,1.4458117485046387,359,0.0,1 +11359,7,0.0,1,1.658808946609497,360,0.0,1 +11360,7,0.0,1,1.8668062686920166,361,1.0,1 +11361,7,0.0,1,1.481811285018921,362,1.0,1 +11362,7,0.0,1,1.2128136157989502,363,1.0,1 +11363,7,0.0,1,1.1498134136199951,364,0.0,1 +11364,7,1.0,1,1.666808843612671,365,1.0,1 +11365,7,1.0,1,1.8548064231872559,366,1.0,1 +11366,7,1.0,1,1.5078109502792358,367,0.0,1 +11367,7,0.0,1,1.4418118000030518,368,1.0,1 +11368,7,0.0,1,1.9778048992156982,369,0.0,1 +11369,7,1.0,1,1.848806619644165,370,0.0,1 +11370,7,0.0,1,1.6118096113204956,371,0.0,1 +11371,7,1.0,1,1.3478130102157593,372,0.0,1 +11372,7,1.0,1,1.7398079633712769,373,1.0,1 +11373,7,1.0,1,1.2278136014938354,374,1.0,1 +11374,7,1.0,1,1.403812289237976,375,1.0,1 +11375,7,1.0,1,1.3488129377365112,376,1.0,1 +11376,7,0.0,1,1.5248106718063354,377,0.0,1 +11377,7,1.0,1,1.2828136682510376,378,1.0,1 +11378,7,1.0,1,1.338813066482544,379,1.0,1 +11379,7,1.0,1,1.6418092250823975,380,1.0,1 +11380,7,1.0,1,1.4928110837936401,381,0.0,1 +11381,7,0.0,1,1.2438136339187622,382,0.0,1 +11382,7,1.0,1,2.362819194793701,383,0.0,1 +11383,7,0.0,1,1.5418105125427246,384,0.0,1 +11384,7,0.0,1,1.3518129587173462,385,0.0,1 +11385,7,0.0,1,1.403812289237976,386,1.0,1 +11386,7,0.0,1,1.256813645362854,387,0.0,1 +11387,7,0.0,1,1.363812804222107,388,1.0,1 +11388,7,0.0,1,1.2918137311935425,389,0.0,1 +11389,7,0.0,1,1.334813117980957,390,0.0,1 +11390,7,0.0,1,2.086806297302246,391,0.0,1 +11391,7,0.0,1,1.2718136310577393,392,0.0,1 +11392,7,0.0,1,2.1348085403442383,393,0.0,1 +11393,7,0.0,1,1.6638089418411255,394,0.0,1 +11394,7,0.0,1,1.2108135223388672,395,1.0,1 +11395,7,0.0,1,1.1468133926391602,396,0.0,1 +11396,7,1.0,1,1.4248119592666626,397,1.0,1 +11397,7,0.0,1,1.3268132209777832,398,1.0,1 +11398,7,1.0,1,1.4208120107650757,399,1.0,1 +11399,7,1.0,1,1.565810203552246,400,0.0,1 +11400,7,0.0,1,1.198813557624817,401,0.0,1 +11401,7,0.0,1,1.429811954498291,402,0.0,1 +11402,7,0.0,1,1.617809534072876,403,0.0,1 +11403,7,0.0,1,1.71280837059021,404,1.0,1 +11404,7,0.0,1,1.41181218624115,405,0.0,1 +11405,7,0.0,1,1.5938098430633545,406,1.0,1 +11406,7,0.0,1,1.3678127527236938,407,0.0,1 +11407,7,1.0,1,1.5198107957839966,408,0.0,1 +11408,7,1.0,1,1.7668075561523438,409,0.0,1 +11409,7,0.0,1,1.4068121910095215,410,0.0,1 +11410,7,0.0,1,1.3498129844665527,411,0.0,1 +11411,7,0.0,1,1.6768088340759277,412,0.0,1 +11412,7,0.0,1,1.3428130149841309,413,1.0,1 +11413,7,0.0,1,1.2098135948181152,414,0.0,1 +11414,7,0.0,1,1.3308131694793701,415,1.0,1 +11415,7,0.0,1,1.6548089981079102,416,0.0,1 +11416,7,1.0,1,1.6598089933395386,417,1.0,1 +11417,7,1.0,1,1.9808049201965332,418,1.0,1 +11418,7,1.0,1,1.3468129634857178,419,0.0,1 +11419,7,0.0,1,2.5088260173797607,420,0.0,1 +11420,7,0.0,1,1.2588136196136475,421,1.0,1 +11421,7,0.0,1,1.2968136072158813,422,1.0,1 +11422,7,0.0,1,1.1658134460449219,423,0.0,1 +11423,7,0.0,1,1.3748126029968262,424,0.0,1 +11424,7,0.0,1,1.595809817314148,425,0.0,1 +11425,7,1.0,1,1.9078058004379272,426,1.0,1 +11426,7,1.0,1,1.2338136434555054,427,0.0,1 +11427,7,1.0,1,1.5138108730316162,428,0.0,1 +11428,7,1.0,1,1.4068121910095215,429,0.0,1 +11429,7,0.0,1,1.41181218624115,430,0.0,1 +11430,7,0.0,1,2.505825996398926,431,0.0,1 +11431,7,0.0,1,2.0198044776916504,432,0.0,1 +11432,7,0.0,1,1.3498129844665527,433,0.0,1 +11433,7,0.0,1,1.5238107442855835,434,0.0,1 +11434,7,1.0,1,1.800807237625122,435,1.0,1 +11435,7,1.0,1,1.3528128862380981,436,1.0,1 +11436,7,1.0,1,1.915805697441101,437,1.0,1 +11437,7,1.0,1,1.5428104400634766,438,0.0,1 +11438,7,1.0,1,1.7168083190917969,439,1.0,1 +11439,7,1.0,1,1.2248135805130005,440,1.0,1 +11440,7,1.0,1,1.3848124742507935,441,0.0,1 +11441,7,0.0,1,1.216813564300537,442,0.0,1 +11442,7,1.0,1,1.8038071393966675,443,1.0,1 +11443,7,1.0,1,1.4838112592697144,444,1.0,1 +11444,7,1.0,1,1.2708137035369873,445,1.0,1 +11445,7,1.0,1,1.386812448501587,446,1.0,1 +11446,7,1.0,1,1.2858136892318726,447,0.0,1 +11447,7,1.0,1,1.6478091478347778,448,0.0,1 +11448,7,0.0,1,1.5588102340698242,449,1.0,1 +11449,7,0.0,1,1.1578134298324585,450,1.0,1 +11450,7,0.0,1,1.990804672241211,451,0.0,1 +11451,7,1.0,1,1.7308080196380615,452,0.0,1 +11452,7,0.0,1,1.41181218624115,453,1.0,1 +11453,7,0.0,1,1.5128108263015747,454,1.0,1 +11454,7,0.0,1,1.223813533782959,455,0.0,1 +11455,7,0.0,1,1.5578103065490723,456,0.0,1 +11456,7,1.0,1,1.3488129377365112,457,1.0,1 +11457,7,1.0,1,1.4858112335205078,458,1.0,1 +11458,7,1.0,1,1.2758136987686157,459,0.0,1 +11459,7,1.0,1,1.7998071908950806,460,1.0,1 +11460,7,1.0,1,1.311813473701477,461,1.0,1 +11461,7,1.0,1,1.1488134860992432,462,1.0,1 +11462,7,1.0,1,1.2998136281967163,463,1.0,1 +11463,7,1.0,1,1.5748100280761719,464,0.0,1 +11464,7,1.0,1,1.4578115940093994,465,1.0,1 +11465,7,1.0,1,1.7408080101013184,466,1.0,1 +11466,7,1.0,1,1.2638137340545654,467,1.0,1 +11467,7,1.0,1,1.3688126802444458,468,1.0,1 +11468,7,1.0,1,1.2768137454986572,469,1.0,1 +11469,7,1.0,1,1.5488104820251465,470,0.0,1 +11470,7,0.0,1,1.1838135719299316,471,0.0,1 +11471,7,1.0,1,1.3958123922348022,472,1.0,1 +11472,7,1.0,1,2.4578237533569336,473,1.0,1 +11473,7,1.0,1,1.341813087463379,474,0.0,1 +11474,7,1.0,1,1.356812834739685,475,1.0,1 +11475,7,1.0,1,1.2438136339187622,476,0.0,1 +11476,7,1.0,1,1.753807783126831,477,1.0,1 +11477,7,1.0,1,2.094806671142578,478,1.0,1 +11478,7,1.0,1,1.2358136177062988,479,0.0,1 +11479,7,0.0,1,1.3968123197555542,480,0.0,1 +11480,7,1.0,1,1.3728126287460327,481,1.0,1 +11481,7,1.0,1,1.3478130102157593,482,0.0,1 +11482,7,1.0,1,1.8438066244125366,483,1.0,1 +11483,7,1.0,1,1.256813645362854,484,1.0,1 +11484,7,0.0,1,1.3768125772476196,485,0.0,1 +11485,7,1.0,1,1.286813735961914,486,1.0,1 +11486,7,1.0,1,1.256813645362854,487,1.0,1 +11487,7,1.0,1,1.1398134231567383,488,1.0,1 +11488,7,1.0,1,2.116807699203491,489,1.0,1 +11489,7,1.0,1,1.4388117790222168,490,0.0,1 +11490,7,0.0,1,1.595809817314148,491,0.0,1 +11491,7,1.0,1,1.5468103885650635,492,1.0,1 +11492,7,1.0,1,1.2688137292861938,493,1.0,1 +11493,7,1.0,1,1.2828136682510376,494,1.0,1 +11494,7,1.0,1,1.5348105430603027,495,1.0,1 +11495,7,1.0,1,1.2208136320114136,496,1.0,1 +11496,7,1.0,1,1.5428104400634766,497,1.0,1 +11497,7,1.0,1,1.2408136129379272,498,1.0,1 +11498,7,1.0,1,1.2718136310577393,499,1.0,1 +11499,7,0.0,1,2.1818108558654785,500,1.0,1 +11500,7,0.0,2,1.662808895111084,1,1.0,1 +11501,7,0.0,2,1.6068096160888672,2,0.0,1 +11502,7,1.0,2,1.4588115215301514,3,0.0,1 +11503,7,0.0,2,1.6268093585968018,4,0.0,1 +11504,7,1.0,2,2.5198264122009277,5,0.0,1 +11505,7,1.0,2,1.5018110275268555,6,0.0,1 +11506,7,0.0,2,2.3698196411132812,7,0.0,1 +11507,7,0.0,2,2.1538095474243164,8,1.0,1 +11508,7,0.0,2,1.2278136014938354,9,0.0,1 +11509,7,0.0,2,1.7938072681427002,10,0.0,1 +11510,7,1.0,2,1.8258068561553955,11,1.0,1 +11511,7,1.0,2,1.8848061561584473,12,0.0,1 +11512,7,0.0,2,2.087806224822998,13,0.0,1 +11513,7,0.0,2,1.8038071393966675,14,1.0,1 +11514,7,0.0,2,1.2998136281967163,15,1.0,1 +11515,7,0.0,2,1.7878073453903198,16,0.0,1 +11516,7,1.0,2,1.9308054447174072,17,1.0,1 +11517,7,1.0,2,1.3078135251998901,18,0.0,1 +11518,7,0.0,2,1.6708087921142578,19,1.0,1 +11519,7,0.0,2,1.3678127527236938,20,1.0,1 +11520,7,1.0,2,1.6858086585998535,21,1.0,1 +11521,7,0.0,2,1.4288119077682495,22,1.0,1 +11522,7,0.0,2,1.4848111867904663,23,0.0,1 +11523,7,1.0,2,1.9088058471679688,24,1.0,1 +11524,7,1.0,2,1.2828136682510376,25,0.0,1 +11525,7,0.0,2,1.2648136615753174,26,1.0,1 +11526,7,0.0,2,1.252813696861267,27,1.0,1 +11527,7,0.0,2,1.4828112125396729,28,0.0,1 +11528,7,1.0,2,2.1638097763061523,29,1.0,1 +11529,7,0.0,2,1.3918124437332153,30,1.0,1 +11530,7,1.0,2,2.2038116455078125,31,1.0,1 +11531,7,0.0,2,2.4338226318359375,32,0.0,1 +11532,7,1.0,2,1.477811336517334,33,0.0,1 +11533,7,1.0,2,1.7178082466125488,34,0.0,1 +11534,7,0.0,2,1.5068109035491943,35,1.0,1 +11535,7,0.0,2,1.6938085556030273,36,1.0,1 +11536,7,0.0,2,1.3958123922348022,37,0.0,1 +11537,7,1.0,2,2.1838107109069824,38,1.0,1 +11538,7,1.0,2,2.3828201293945312,39,1.0,1 +11539,7,1.0,2,1.4948110580444336,40,0.0,1 +11540,7,1.0,2,1.4698114395141602,41,1.0,1 +11541,7,1.0,2,2.0158042907714844,42,0.0,1 +11542,7,1.0,2,2.264814615249634,43,0.0,1 +11543,7,0.0,2,1.499811053276062,44,0.0,1 +11544,7,0.0,2,1.937805414199829,45,1.0,1 +11545,7,0.0,2,1.5538103580474854,46,0.0,1 +11546,7,0.0,2,1.5298106670379639,47,0.0,1 +11547,7,0.0,2,1.3968123197555542,48,0.0,1 +11548,7,0.0,2,1.853806495666504,49,0.0,1 +11549,7,0.0,2,1.4478117227554321,50,0.0,1 +11550,7,1.0,2,1.3478130102157593,51,1.0,1 +11551,7,1.0,2,1.3698127269744873,52,1.0,1 +11552,7,1.0,2,1.5098109245300293,53,0.0,1 +11553,7,0.0,2,1.7268080711364746,54,0.0,1 +11554,7,0.0,2,1.5888099670410156,55,1.0,1 +11555,7,0.0,2,1.289813756942749,56,1.0,1 +11556,7,0.0,2,1.3188133239746094,57,1.0,1 +11557,7,0.0,2,1.1818134784698486,58,0.0,1 +11558,7,0.0,2,1.5888099670410156,59,1.0,1 +11559,7,0.0,2,1.8958059549331665,60,0.0,1 +11560,7,0.0,2,1.3838125467300415,61,1.0,1 +11561,7,0.0,2,1.4928110837936401,62,0.0,1 +11562,7,0.0,2,2.2638144493103027,63,1.0,1 +11563,7,0.0,2,1.1298134326934814,64,1.0,1 +11564,7,0.0,2,1.2828136682510376,65,0.0,1 +11565,7,0.0,2,1.256813645362854,66,1.0,1 +11566,7,0.0,2,2.4388227462768555,67,0.0,1 +11567,7,1.0,2,1.7998071908950806,68,1.0,1 +11568,7,1.0,2,1.2418136596679688,69,1.0,1 +11569,7,1.0,2,1.4948110580444336,70,1.0,1 +11570,7,1.0,2,1.2178136110305786,71,0.0,1 +11571,7,1.0,2,1.5288106203079224,72,1.0,1 +11572,7,1.0,2,1.5818099975585938,73,1.0,1 +11573,7,1.0,2,2.0018045902252197,74,1.0,1 +11574,7,1.0,2,1.8198069334030151,75,0.0,1 +11575,7,0.0,2,2.093806743621826,76,0.0,1 +11576,7,0.0,2,1.73580801486969,77,0.0,1 +11577,7,1.0,2,1.8438066244125366,78,1.0,1 +11578,7,1.0,2,2.119807720184326,79,1.0,1 +11579,7,0.0,2,1.2278136014938354,80,1.0,1 +11580,7,1.0,2,1.6048097610473633,81,0.0,1 +11581,7,0.0,2,1.1458134651184082,82,0.0,1 +11582,7,1.0,2,1.473811388015747,83,1.0,1 +11583,7,1.0,2,1.5978097915649414,84,1.0,1 +11584,7,1.0,2,1.2758136987686157,85,0.0,1 +11585,7,1.0,2,2.296816110610962,86,1.0,1 +11586,7,1.0,2,1.4718114137649536,87,1.0,1 +11587,7,1.0,2,1.2718136310577393,88,1.0,1 +11588,7,1.0,2,1.4248119592666626,89,0.0,1 +11589,7,0.0,2,1.944805383682251,90,1.0,1 +11590,7,1.0,2,2.1628098487854004,91,0.0,1 +11591,7,0.0,2,1.5988097190856934,92,1.0,1 +11592,7,0.0,2,2.2308130264282227,93,1.0,1 +11593,7,0.0,2,1.3408130407333374,94,0.0,1 +11594,7,1.0,2,2.609830856323242,95,0.0,1 +11595,7,1.0,2,1.7968072891235352,96,1.0,1 +11596,7,1.0,2,1.2348135709762573,97,0.0,1 +11597,7,0.0,2,1.2748136520385742,98,1.0,1 +11598,7,0.0,2,1.5828099250793457,99,1.0,1 +11599,7,0.0,2,1.5878099203109741,100,0.0,1 +11600,7,1.0,2,2.1338086128234863,101,0.0,1 +11601,7,0.0,2,1.750807762145996,102,0.0,1 +11602,7,1.0,2,1.5498104095458984,103,1.0,1 +11603,7,1.0,2,1.4728113412857056,104,0.0,1 +11604,7,1.0,2,1.4228119850158691,105,1.0,1 +11605,7,1.0,2,1.9808049201965332,106,0.0,1 +11606,7,0.0,2,1.2058135271072388,107,0.0,1 +11607,7,0.0,2,1.2958136796951294,108,1.0,1 +11608,7,0.0,2,1.9778048992156982,109,0.0,1 +11609,7,0.0,2,1.5938098430633545,110,0.0,1 +11610,7,1.0,2,1.7268080711364746,111,1.0,1 +11611,7,1.0,2,1.3298132419586182,112,1.0,1 +11612,7,1.0,2,2.4428229331970215,113,0.0,1 +11613,7,0.0,2,1.448811650276184,114,0.0,1 +11614,7,0.0,2,1.661808967590332,115,0.0,1 +11615,7,0.0,2,1.1808135509490967,116,0.0,1 +11616,7,0.0,2,1.709808349609375,117,0.0,1 +11617,7,0.0,2,1.286813735961914,118,1.0,1 +11618,7,0.0,2,1.3408130407333374,119,1.0,1 +11619,7,0.0,2,1.3528128862380981,120,1.0,1 +11620,7,0.0,2,1.2958136796951294,121,1.0,1 +11621,7,0.0,2,1.283813714981079,122,0.0,1 +11622,7,1.0,2,1.6818087100982666,123,0.0,1 +11623,7,0.0,2,2.0158042907714844,124,1.0,1 +11624,7,0.0,2,1.4348118305206299,125,0.0,1 +11625,7,0.0,2,1.3898124694824219,126,1.0,1 +11626,7,0.0,2,1.8428065776824951,127,0.0,1 +11627,7,0.0,2,1.3738126754760742,128,0.0,1 +11628,7,1.0,2,1.385812520980835,129,1.0,1 +11629,7,1.0,2,1.5098109245300293,130,1.0,1 +11630,7,1.0,2,1.620809555053711,131,1.0,1 +11631,7,1.0,2,1.2218135595321655,132,0.0,1 +11632,7,1.0,2,1.4938111305236816,133,1.0,1 +11633,7,1.0,2,1.216813564300537,134,1.0,1 +11634,7,1.0,2,1.4028122425079346,135,0.0,1 +11635,7,0.0,2,1.7728075981140137,136,0.0,1 +11636,7,0.0,2,1.198813557624817,137,1.0,1 +11637,7,0.0,2,1.155813455581665,138,0.0,1 +11638,7,1.0,2,1.6578090190887451,139,1.0,1 +11639,7,1.0,2,1.3148133754730225,140,1.0,1 +11640,7,1.0,2,1.4808112382888794,141,0.0,1 +11641,7,0.0,2,1.5768101215362549,142,0.0,1 +11642,7,0.0,2,1.5648102760314941,143,1.0,1 +11643,7,0.0,2,1.915805697441101,144,0.0,1 +11644,7,0.0,2,1.6828086376190186,145,0.0,1 +11645,7,1.0,2,1.470811367034912,146,0.0,1 +11646,7,1.0,2,1.8168070316314697,147,1.0,1 +11647,7,0.0,2,1.3728126287460327,148,0.0,1 +11648,7,1.0,2,1.6888086795806885,149,0.0,1 +11649,7,1.0,2,1.219813585281372,150,1.0,1 +11650,7,1.0,2,1.2038135528564453,151,1.0,1 +11651,7,1.0,2,2.097806930541992,152,1.0,1 +11652,7,1.0,2,1.618809461593628,153,0.0,1 +11653,7,0.0,2,2.367819309234619,154,1.0,1 +11654,7,0.0,2,1.192813515663147,155,0.0,1 +11655,7,1.0,2,1.6478091478347778,156,0.0,1 +11656,7,0.0,2,2.264814615249634,157,1.0,1 +11657,7,0.0,2,1.3268132209777832,158,1.0,1 +11658,7,0.0,2,1.124813437461853,159,0.0,1 +11659,7,0.0,2,1.687808632850647,160,0.0,1 +11660,7,1.0,2,1.4658114910125732,161,0.0,1 +11661,7,0.0,2,1.3218133449554443,162,1.0,1 +11662,7,0.0,2,1.2848137617111206,163,0.0,1 +11663,7,0.0,2,1.2458136081695557,164,0.0,1 +11664,7,0.0,2,1.18881356716156,165,0.0,1 +11665,7,1.0,2,1.473811388015747,166,1.0,1 +11666,7,1.0,2,1.7768075466156006,167,0.0,1 +11667,7,0.0,2,2.261814594268799,168,1.0,1 +11668,7,0.0,2,1.5018110275268555,169,1.0,1 +11669,7,0.0,2,1.2068135738372803,170,0.0,1 +11670,7,0.0,2,1.8568065166473389,171,1.0,1 +11671,7,0.0,2,1.2148135900497437,172,0.0,1 +11672,7,0.0,2,1.3898124694824219,173,0.0,1 +11673,7,0.0,2,1.287813663482666,174,1.0,1 +11674,7,0.0,2,1.5598102807998657,175,0.0,1 +11675,7,1.0,2,1.4978110790252686,176,1.0,1 +11676,7,1.0,2,1.5648102760314941,177,0.0,1 +11677,7,0.0,2,1.4248119592666626,178,0.0,1 +11678,7,1.0,2,1.4698114395141602,179,1.0,1 +11679,7,1.0,2,1.2648136615753174,180,0.0,1 +11680,7,1.0,2,1.9308054447174072,181,0.0,1 +11681,7,1.0,2,1.4698114395141602,182,1.0,1 +11682,7,1.0,2,1.161813497543335,183,1.0,1 +11683,7,1.0,2,1.4838112592697144,184,1.0,1 +11684,7,1.0,2,1.6958085298538208,185,1.0,1 +11685,7,1.0,2,1.6308093070983887,186,0.0,1 +11686,7,0.0,2,1.3718127012252808,187,1.0,1 +11687,7,0.0,2,1.2018135786056519,188,1.0,1 +11688,7,0.0,2,1.4938111305236816,189,0.0,1 +11689,7,1.0,2,1.940805435180664,190,0.0,1 +11690,7,0.0,2,1.8748061656951904,191,0.0,1 +11691,7,0.0,2,1.3808125257492065,192,0.0,1 +11692,7,0.0,2,1.4278119802474976,193,1.0,1 +11693,7,0.0,2,1.5028109550476074,194,0.0,1 +11694,7,0.0,2,1.9958046674728394,195,0.0,1 +11695,7,0.0,2,1.503811001777649,196,1.0,1 +11696,7,0.0,2,1.3078135251998901,197,0.0,1 +11697,7,0.0,2,1.967805027961731,198,0.0,1 +11698,7,1.0,2,1.4608114957809448,199,0.0,1 +11699,7,1.0,2,1.805807113647461,200,1.0,1 +11700,7,1.0,2,1.4218120574951172,201,0.0,1 +11701,7,0.0,2,1.3958123922348022,202,1.0,1 +11702,7,0.0,2,1.2928136587142944,203,0.0,1 +11703,7,0.0,2,1.3018136024475098,204,0.0,1 +11704,7,0.0,2,1.3798125982284546,205,0.0,1 +11705,7,0.0,2,1.526810646057129,206,1.0,1 +11706,7,0.0,2,1.8558064699172974,207,1.0,1 +11707,7,0.0,2,1.6778087615966797,208,1.0,1 +11708,7,0.0,2,1.4428117275238037,209,1.0,1 +11709,7,0.0,2,1.3478130102157593,210,0.0,1 +11710,7,1.0,2,1.9288055896759033,211,0.0,1 +11711,7,1.0,2,1.52181077003479,212,0.0,1 +11712,7,0.0,2,1.5428104400634766,213,0.0,1 +11713,7,0.0,2,1.2128136157989502,214,0.0,1 +11714,7,0.0,2,1.6928086280822754,215,1.0,1 +11715,7,0.0,2,1.2658137083053589,216,0.0,1 +11716,7,0.0,2,1.4928110837936401,217,0.0,1 +11717,7,1.0,2,1.470811367034912,218,1.0,1 +11718,7,0.0,2,1.286813735961914,219,0.0,1 +11719,7,1.0,2,1.1488134860992432,220,1.0,1 +11720,7,1.0,2,1.3518129587173462,221,1.0,1 +11721,7,1.0,2,1.5288106203079224,222,1.0,1 +11722,7,1.0,2,1.6508090496063232,223,1.0,1 +11723,7,1.0,2,1.9838048219680786,224,1.0,1 +11724,7,1.0,2,1.5318106412887573,225,1.0,1 +11725,7,0.0,2,1.8218069076538086,226,1.0,1 +11726,7,0.0,2,1.4018123149871826,227,0.0,1 +11727,7,1.0,2,1.3268132209777832,228,0.0,1 +11728,7,0.0,2,1.8418066501617432,229,1.0,1 +11729,7,0.0,2,1.1458134651184082,230,0.0,1 +11730,7,1.0,2,1.2438136339187622,231,0.0,1 +11731,7,0.0,2,1.1848134994506836,232,1.0,1 +11732,7,0.0,2,1.6488091945648193,233,1.0,1 +11733,7,0.0,2,1.6238094568252563,234,1.0,1 +11734,7,0.0,2,1.1638134717941284,235,0.0,1 +11735,7,0.0,2,1.315813422203064,236,0.0,1 +11736,7,0.0,2,1.6828086376190186,237,0.0,1 +11737,7,1.0,2,1.7748074531555176,238,0.0,1 +11738,7,0.0,2,1.7408080101013184,239,1.0,1 +11739,7,0.0,2,1.456811547279358,240,1.0,1 +11740,7,0.0,2,1.1838135719299316,241,1.0,1 +11741,7,0.0,2,1.2148135900497437,242,0.0,1 +11742,7,1.0,2,2.0208044052124023,243,0.0,1 +11743,7,0.0,2,1.8828060626983643,244,0.0,1 +11744,7,0.0,2,1.2988135814666748,245,0.0,1 +11745,7,0.0,2,1.2468136548995972,246,0.0,1 +11746,7,0.0,2,1.5678101778030396,247,0.0,1 +11747,7,0.0,2,1.429811954498291,248,1.0,1 +11748,7,0.0,2,1.2008135318756104,249,1.0,1 +11749,7,0.0,2,1.2458136081695557,250,0.0,1 +11750,7,0.0,2,2.342818260192871,251,0.0,1 +11751,7,0.0,2,1.3018136024475098,252,0.0,1 +11752,7,1.0,2,1.4438117742538452,253,0.0,1 +11753,7,1.0,2,1.3248132467269897,254,1.0,1 +11754,7,1.0,2,1.6978085041046143,255,1.0,1 +11755,7,1.0,2,1.3358131647109985,256,0.0,1 +11756,7,0.0,2,1.4328118562698364,257,0.0,1 +11757,7,0.0,2,1.1968135833740234,258,0.0,1 +11758,7,1.0,2,1.8378067016601562,259,1.0,1 +11759,7,1.0,2,1.6388092041015625,260,0.0,1 +11760,7,0.0,2,1.1428134441375732,261,1.0,1 +11761,7,0.0,2,1.6638089418411255,262,1.0,1 +11762,7,0.0,2,1.2768137454986572,263,0.0,1 +11763,7,1.0,2,1.2108135223388672,264,1.0,1 +11764,7,0.0,2,1.2988135814666748,265,0.0,1 +11765,7,1.0,2,1.4768112897872925,266,0.0,1 +11766,7,0.0,2,1.385812520980835,267,1.0,1 +11767,7,0.0,2,1.3978123664855957,268,1.0,1 +11768,7,0.0,2,1.1348134279251099,269,0.0,1 +11769,7,0.0,2,1.2968136072158813,270,1.0,1 +11770,7,0.0,2,1.2368136644363403,271,0.0,1 +11771,7,0.0,2,1.1568135023117065,272,1.0,1 +11772,7,0.0,2,1.1778135299682617,273,0.0,1 +11773,7,1.0,2,1.478811264038086,274,1.0,1 +11774,7,1.0,2,1.4978110790252686,275,1.0,1 +11775,7,1.0,2,1.6728088855743408,276,1.0,1 +11776,7,1.0,2,1.4138121604919434,277,0.0,1 +11777,7,0.0,2,2.2718148231506348,278,0.0,1 +11778,7,0.0,2,1.3798125982284546,279,1.0,1 +11779,7,0.0,2,1.286813735961914,280,1.0,1 +11780,7,0.0,2,1.1468133926391602,281,1.0,1 +11781,7,0.0,2,1.223813533782959,282,0.0,1 +11782,7,0.0,2,1.4728113412857056,283,1.0,1 +11783,7,0.0,2,1.192813515663147,284,0.0,1 +11784,7,1.0,2,1.518810749053955,285,1.0,1 +11785,7,1.0,2,1.6428091526031494,286,1.0,1 +11786,7,1.0,2,1.616809606552124,287,1.0,1 +11787,7,1.0,2,1.407812237739563,288,1.0,1 +11788,7,1.0,2,1.3148133754730225,289,0.0,1 +11789,7,0.0,2,1.452811598777771,290,1.0,1 +11790,7,0.0,2,1.8768062591552734,291,0.0,1 +11791,7,0.0,2,2.4708242416381836,292,1.0,1 +11792,7,0.0,2,2.027804374694824,293,1.0,1 +11793,7,0.0,2,1.1778135299682617,294,0.0,1 +11794,7,1.0,2,2.3908205032348633,295,1.0,1 +11795,7,1.0,2,1.6718088388442993,296,1.0,1 +11796,7,1.0,2,1.4398118257522583,297,0.0,1 +11797,7,0.0,2,1.614809513092041,298,1.0,1 +11798,7,0.0,2,1.3878124952316284,299,1.0,1 +11799,7,0.0,2,1.3408130407333374,300,0.0,1 +11800,7,0.0,2,1.3518129587173462,301,0.0,1 +11801,7,1.0,2,1.2308136224746704,302,0.0,1 +11802,7,1.0,2,1.8188068866729736,303,1.0,1 +11803,7,1.0,2,1.378812551498413,304,1.0,1 +11804,7,1.0,2,1.3478130102157593,305,1.0,1 +11805,7,0.0,2,1.3928123712539673,306,1.0,1 +11806,7,0.0,2,1.3758126497268677,307,0.0,1 +11807,7,1.0,2,1.8248069286346436,308,1.0,1 +11808,7,1.0,2,1.4318119287490845,309,0.0,1 +11809,7,1.0,2,1.5678101778030396,310,1.0,1 +11810,7,1.0,2,1.2448136806488037,311,0.0,1 +11811,7,0.0,2,1.4148120880126953,312,1.0,1 +11812,7,0.0,2,1.8898060321807861,313,0.0,1 +11813,7,0.0,2,1.495811104774475,314,0.0,1 +11814,7,1.0,2,1.2668136358261108,315,1.0,1 +11815,7,0.0,2,2.320817232131958,316,1.0,1 +11816,7,0.0,2,2.2358131408691406,317,0.0,1 +11817,7,0.0,2,2.0108044147491455,318,1.0,1 +11818,7,1.0,2,1.569810152053833,319,1.0,1 +11819,7,0.0,2,1.750807762145996,320,1.0,1 +11820,7,1.0,2,2.2608144283294678,321,0.0,1 +11821,7,0.0,2,1.2458136081695557,322,0.0,1 +11822,7,0.0,2,1.9728050231933594,323,0.0,1 +11823,7,0.0,2,1.2668136358261108,324,1.0,1 +11824,7,0.0,2,1.2008135318756104,325,1.0,1 +11825,7,0.0,2,1.2108135223388672,326,1.0,1 +11826,7,0.0,2,1.5508103370666504,327,0.0,1 +11827,7,0.0,2,1.7918072938919067,328,0.0,1 +11828,7,0.0,2,1.9148056507110596,329,1.0,1 +11829,7,0.0,2,1.3258132934570312,330,0.0,1 +11830,7,1.0,2,2.597830295562744,331,1.0,1 +11831,7,1.0,2,1.3238133192062378,332,0.0,1 +11832,7,1.0,2,1.4608114957809448,333,1.0,1 +11833,7,1.0,2,1.3758126497268677,334,1.0,1 +11834,7,1.0,2,1.4438117742538452,335,0.0,1 +11835,7,0.0,2,1.948805332183838,336,1.0,1 +11836,7,0.0,2,1.2188135385513306,337,0.0,1 +11837,7,1.0,2,1.5118108987808228,338,1.0,1 +11838,7,1.0,2,2.0198044776916504,339,1.0,1 +11839,7,1.0,2,1.4608114957809448,340,1.0,1 +11840,7,1.0,2,1.4508116245269775,341,0.0,1 +11841,7,0.0,2,1.283813714981079,342,0.0,1 +11842,7,1.0,2,1.9838048219680786,343,1.0,1 +11843,7,1.0,2,1.662808895111084,344,0.0,1 +11844,7,1.0,2,1.3488129377365112,345,0.0,1 +11845,7,0.0,2,1.4918111562728882,346,1.0,1 +11846,7,0.0,2,1.7238081693649292,347,1.0,1 +11847,7,0.0,2,1.2988135814666748,348,1.0,1 +11848,7,0.0,2,1.7448079586029053,349,0.0,1 +11849,7,0.0,2,1.9918047189712524,350,0.0,1 +11850,7,1.0,2,1.9098057746887207,351,0.0,1 +11851,7,1.0,2,2.098806858062744,352,1.0,1 +11852,7,1.0,2,1.433811902999878,353,1.0,1 +11853,7,1.0,2,1.613809585571289,354,1.0,1 +11854,7,1.0,2,1.525810718536377,355,1.0,1 +11855,7,1.0,2,1.3268132209777832,356,0.0,1 +11856,7,0.0,2,1.6828086376190186,357,0.0,1 +11857,7,0.0,2,1.8768062591552734,358,1.0,1 +11858,7,0.0,2,1.6028096675872803,359,1.0,1 +11859,7,0.0,2,1.312813401222229,360,1.0,1 +11860,7,0.0,2,1.131813406944275,361,0.0,1 +11861,7,1.0,2,1.7458078861236572,362,1.0,1 +11862,7,1.0,2,1.3288131952285767,363,1.0,1 +11863,7,1.0,2,1.4468116760253906,364,1.0,1 +11864,7,1.0,2,1.4728113412857056,365,1.0,1 +11865,7,1.0,2,1.473811388015747,366,1.0,1 +11866,7,0.0,2,1.658808946609497,367,1.0,1 +11867,7,0.0,2,1.2798137664794922,368,1.0,1 +11868,7,1.0,2,2.2388134002685547,369,0.0,1 +11869,7,0.0,2,1.7848074436187744,370,1.0,1 +11870,7,0.0,2,1.8178069591522217,371,1.0,1 +11871,7,0.0,2,1.4648114442825317,372,0.0,1 +11872,7,1.0,2,1.8168070316314697,373,0.0,1 +11873,7,1.0,2,1.503811001777649,374,1.0,1 +11874,7,1.0,2,1.1978135108947754,375,0.0,1 +11875,7,0.0,2,1.6788086891174316,376,0.0,1 +11876,7,0.0,2,1.610809564590454,377,1.0,1 +11877,7,0.0,2,1.1978135108947754,378,0.0,1 +11878,7,1.0,2,1.6578090190887451,379,1.0,1 +11879,7,1.0,2,1.1818134784698486,380,1.0,1 +11880,7,1.0,2,1.6898086071014404,381,0.0,1 +11881,7,1.0,2,1.4888111352920532,382,0.0,1 +11882,7,1.0,2,1.4478117227554321,383,1.0,1 +11883,7,1.0,2,1.455811619758606,384,0.0,1 +11884,7,1.0,2,1.3038135766983032,385,0.0,1 +11885,7,0.0,2,1.3398131132125854,386,1.0,1 +11886,7,0.0,2,1.1878135204315186,387,0.0,1 +11887,7,0.0,2,1.6408092975616455,388,1.0,1 +11888,7,0.0,2,1.7968072891235352,389,0.0,1 +11889,7,0.0,2,1.5278106927871704,390,1.0,1 +11890,7,0.0,2,1.189813494682312,391,0.0,1 +11891,7,0.0,2,1.287813663482666,392,1.0,1 +11892,7,0.0,2,1.7328081130981445,393,1.0,1 +11893,7,0.0,2,1.161813497543335,394,0.0,1 +11894,7,0.0,2,1.6728088855743408,395,0.0,1 +11895,7,0.0,2,1.3078135251998901,396,0.0,1 +11896,7,0.0,2,1.9758049249649048,397,0.0,1 +11897,7,0.0,2,1.4368118047714233,398,0.0,1 +11898,7,0.0,2,1.4938111305236816,399,0.0,1 +11899,7,0.0,2,1.6048097610473633,400,0.0,1 +11900,7,0.0,2,1.9228055477142334,401,1.0,1 +11901,7,0.0,2,2.08280611038208,402,0.0,1 +11902,7,1.0,2,2.123807907104492,403,0.0,1 +11903,7,0.0,2,1.5338106155395508,404,1.0,1 +11904,7,0.0,2,1.2128136157989502,405,1.0,1 +11905,7,0.0,2,1.2068135738372803,406,1.0,1 +11906,7,0.0,2,1.5398105382919312,407,0.0,1 +11907,7,1.0,2,1.2648136615753174,408,1.0,1 +11908,7,1.0,2,1.3258132934570312,409,1.0,1 +11909,7,1.0,2,1.6308093070983887,410,0.0,1 +11910,7,0.0,2,1.6708087921142578,411,0.0,1 +11911,7,1.0,2,1.5648102760314941,412,0.0,1 +11912,7,0.0,2,1.403812289237976,413,0.0,1 +11913,7,0.0,2,1.9588050842285156,414,1.0,1 +11914,7,0.0,2,1.3468129634857178,415,0.0,1 +11915,7,0.0,2,1.937805414199829,416,0.0,1 +11916,7,1.0,2,2.086806297302246,417,0.0,1 +11917,7,1.0,2,1.5428104400634766,418,0.0,1 +11918,7,0.0,2,1.9998046159744263,419,0.0,1 +11919,7,0.0,2,1.3888124227523804,420,1.0,1 +11920,7,0.0,2,1.662808895111084,421,0.0,1 +11921,7,0.0,2,1.7258081436157227,422,0.0,1 +11922,7,0.0,2,1.6098096370697021,423,1.0,1 +11923,7,0.0,2,1.287813663482666,424,0.0,1 +11924,7,0.0,2,1.7948071956634521,425,0.0,1 +11925,7,1.0,2,1.2618136405944824,426,1.0,1 +11926,7,1.0,2,1.8178069591522217,427,0.0,1 +11927,7,0.0,2,1.252813696861267,428,1.0,1 +11928,7,0.0,2,1.1348134279251099,429,0.0,1 +11929,7,0.0,2,1.6598089933395386,430,0.0,1 +11930,7,0.0,2,1.4498116970062256,431,0.0,1 +11931,7,1.0,2,1.9608051776885986,432,0.0,1 +11932,7,1.0,2,1.7368080615997314,433,1.0,1 +11933,7,1.0,2,1.6318093538284302,434,0.0,1 +11934,7,1.0,2,1.4468116760253906,435,0.0,1 +11935,7,0.0,2,1.3928123712539673,436,1.0,1 +11936,7,0.0,2,1.5048109292984009,437,0.0,1 +11937,7,0.0,2,1.2248135805130005,438,0.0,1 +11938,7,1.0,2,1.6248095035552979,439,0.0,1 +11939,7,1.0,2,1.518810749053955,440,1.0,1 +11940,7,0.0,2,1.3588128089904785,441,0.0,1 +11941,7,1.0,2,1.1408134698867798,442,0.0,1 +11942,7,0.0,2,1.6058096885681152,443,0.0,1 +11943,7,0.0,2,1.231813669204712,444,1.0,1 +11944,7,0.0,2,1.5278106927871704,445,1.0,1 +11945,7,0.0,2,1.5538103580474854,446,1.0,1 +11946,7,0.0,2,1.3458130359649658,447,1.0,1 +11947,7,0.0,2,1.2108135223388672,448,0.0,1 +11948,7,1.0,2,1.8698062896728516,449,0.0,1 +11949,7,0.0,2,2.1398086547851562,450,0.0,1 +11950,7,0.0,2,2.050804615020752,451,0.0,1 +11951,7,1.0,2,1.5758100748062134,452,1.0,1 +11952,7,1.0,2,1.3228132724761963,453,1.0,1 +11953,7,1.0,2,1.2148135900497437,454,1.0,1 +11954,7,1.0,2,1.381812572479248,455,0.0,1 +11955,7,1.0,2,1.610809564590454,456,1.0,1 +11956,7,1.0,2,1.3538129329681396,457,1.0,1 +11957,7,1.0,2,1.3078135251998901,458,0.0,1 +11958,7,0.0,2,1.262813687324524,459,0.0,1 +11959,7,0.0,2,1.1238133907318115,460,0.0,1 +11960,7,0.0,2,1.7948071956634521,461,0.0,1 +11961,7,0.0,2,1.252813696861267,462,0.0,1 +11962,7,0.0,2,1.7198082208633423,463,1.0,1 +11963,7,0.0,2,1.1718134880065918,464,0.0,1 +11964,7,1.0,2,1.6768088340759277,465,1.0,1 +11965,7,1.0,2,1.5468103885650635,466,1.0,1 +11966,7,0.0,2,1.547810435295105,467,1.0,1 +11967,7,1.0,2,1.4478117227554321,468,0.0,1 +11968,7,0.0,2,1.294813632965088,469,0.0,1 +11969,7,0.0,2,1.7968072891235352,470,0.0,1 +11970,7,0.0,2,1.378812551498413,471,0.0,1 +11971,7,0.0,2,2.043804168701172,472,0.0,1 +11972,7,1.0,2,1.9028058052062988,473,1.0,1 +11973,7,1.0,2,1.3288131952285767,474,0.0,1 +11974,7,1.0,2,1.6048097610473633,475,1.0,1 +11975,7,1.0,2,1.2388136386871338,476,1.0,1 +11976,7,1.0,2,1.2218135595321655,477,1.0,1 +11977,7,1.0,2,1.15281343460083,478,1.0,1 +11978,7,1.0,2,1.1698135137557983,479,1.0,1 +11979,7,1.0,2,1.3178133964538574,480,0.0,1 +11980,7,1.0,2,1.8368067741394043,481,1.0,1 +11981,7,1.0,2,1.4108121395111084,482,1.0,1 +11982,7,1.0,2,1.4368118047714233,483,0.0,1 +11983,7,0.0,2,1.3538129329681396,484,1.0,1 +11984,7,0.0,2,1.5058109760284424,485,1.0,1 +11985,7,0.0,2,1.1548134088516235,486,1.0,1 +11986,7,0.0,2,1.4198120832443237,487,0.0,1 +11987,7,0.0,2,2.6538329124450684,488,1.0,1 +11988,7,0.0,2,1.2008135318756104,489,0.0,1 +11989,7,1.0,2,1.986804723739624,490,1.0,1 +11990,7,0.0,2,1.849806547164917,491,0.0,1 +11991,7,1.0,2,2.4128215312957764,492,1.0,1 +11992,7,1.0,2,1.2078135013580322,493,0.0,1 +11993,7,0.0,2,1.1848134994506836,494,0.0,1 +11994,7,1.0,2,1.6368093490600586,495,1.0,1 +11995,7,1.0,2,1.2128136157989502,496,1.0,1 +11996,7,1.0,2,1.2968136072158813,497,1.0,1 +11997,7,1.0,2,1.2858136892318726,498,0.0,1 +11998,7,1.0,2,1.4588115215301514,499,1.0,1 +11999,7,1.0,2,1.3808125257492065,500,1.0,1 +12000,8,0.0,0,1.387061357498169,1,0.0,1 +12001,8,1.0,0,1.4850600957870483,2,1.0,1 +12002,8,1.0,0,2.1680569648742676,3,1.0,1 +12003,8,1.0,0,1.6100585460662842,4,1.0,1 +12004,8,1.0,0,1.4030611515045166,5,1.0,1 +12005,8,1.0,0,1.3360620737075806,6,1.0,1 +12006,8,1.0,0,1.4610604047775269,7,0.0,1 +12007,8,1.0,0,1.5640591382980347,8,1.0,1 +12008,8,1.0,0,1.4910600185394287,9,1.0,1 +12009,8,1.0,0,1.383061408996582,10,1.0,1 +12010,8,1.0,0,1.9990534782409668,11,1.0,1 +12011,8,1.0,0,1.5240596532821655,12,1.0,1 +12012,8,1.0,0,1.4130610227584839,13,1.0,1 +12013,8,1.0,0,1.4670603275299072,14,1.0,1 +12014,8,1.0,0,1.339061975479126,15,1.0,1 +12015,8,1.0,0,1.2580620050430298,16,1.0,1 +12016,8,1.0,0,1.3520618677139282,17,1.0,1 +12017,8,1.0,0,1.4510605335235596,18,1.0,1 +12018,8,1.0,0,1.315062165260315,19,1.0,1 +12019,8,1.0,0,1.334062099456787,20,1.0,1 +12020,8,0.0,0,1.3740615844726562,21,0.0,1 +12021,8,1.0,0,1.500059962272644,22,1.0,1 +12022,8,1.0,0,1.4630603790283203,23,1.0,1 +12023,8,1.0,0,1.8830549716949463,24,1.0,1 +12024,8,1.0,0,1.4840601682662964,25,1.0,1 +12025,8,0.0,0,1.9500541687011719,26,0.0,1 +12026,8,1.0,0,2.2150590419769287,27,1.0,1 +12027,8,1.0,0,1.56705904006958,28,1.0,1 +12028,8,1.0,0,1.6050586700439453,29,1.0,1 +12029,8,1.0,0,1.3890613317489624,30,1.0,1 +12030,8,1.0,0,1.3330620527267456,31,1.0,1 +12031,8,1.0,0,1.3110620975494385,32,1.0,1 +12032,8,1.0,0,1.7980561256408691,33,1.0,1 +12033,8,1.0,0,1.3580617904663086,34,1.0,1 +12034,8,1.0,0,1.715057134628296,35,1.0,1 +12035,8,1.0,0,1.4320608377456665,36,1.0,1 +12036,8,1.0,0,1.3690615892410278,37,1.0,1 +12037,8,1.0,0,1.4860601425170898,38,1.0,1 +12038,8,1.0,0,1.4140610694885254,39,1.0,1 +12039,8,1.0,0,1.6280583143234253,40,0.0,1 +12040,8,1.0,0,1.452060580253601,41,1.0,1 +12041,8,1.0,0,1.6230583190917969,42,1.0,1 +12042,8,1.0,0,2.601077079772949,43,1.0,1 +12043,8,1.0,0,1.4140610694885254,44,1.0,1 +12044,8,1.0,0,1.4420607089996338,45,1.0,1 +12045,8,1.0,0,1.2800620794296265,46,1.0,1 +12046,8,1.0,0,1.2890621423721313,47,1.0,1 +12047,8,1.0,0,1.4320608377456665,48,1.0,1 +12048,8,1.0,0,1.2660620212554932,49,0.0,1 +12049,8,1.0,0,2.324064254760742,50,1.0,1 +12050,8,1.0,0,1.6960574388504028,51,1.0,1 +12051,8,1.0,0,1.248062014579773,52,0.0,1 +12052,8,0.0,0,1.665057897567749,53,0.0,1 +12053,8,0.0,0,1.5390594005584717,54,0.0,1 +12054,8,0.0,0,1.2830621004104614,55,0.0,1 +12055,8,1.0,0,1.5910587310791016,56,1.0,1 +12056,8,1.0,0,1.5910587310791016,57,1.0,1 +12057,8,1.0,0,1.4220609664916992,58,1.0,1 +12058,8,1.0,0,1.6090586185455322,59,1.0,1 +12059,8,1.0,0,1.2560620307922363,60,1.0,1 +12060,8,1.0,0,1.3130621910095215,61,1.0,1 +12061,8,1.0,0,1.5640591382980347,62,1.0,1 +12062,8,1.0,0,1.4110610485076904,63,1.0,1 +12063,8,1.0,0,1.279062032699585,64,1.0,1 +12064,8,1.0,0,1.5080598592758179,65,1.0,1 +12065,8,1.0,0,1.3940613269805908,66,1.0,1 +12066,8,1.0,0,1.4360607862472534,67,1.0,1 +12067,8,1.0,0,1.456060528755188,68,0.0,1 +12068,8,1.0,0,2.257061004638672,69,1.0,1 +12069,8,1.0,0,1.6410582065582275,70,1.0,1 +12070,8,0.0,0,1.2330620288848877,71,0.0,1 +12071,8,1.0,0,1.5460593700408936,72,0.0,1 +12072,8,1.0,0,2.323064088821411,73,1.0,1 +12073,8,1.0,0,1.7820563316345215,74,1.0,1 +12074,8,1.0,0,1.3460619449615479,75,1.0,1 +12075,8,1.0,0,1.850055456161499,76,1.0,1 +12076,8,1.0,0,1.4410606622695923,77,0.0,1 +12077,8,0.0,0,1.2060619592666626,78,0.0,1 +12078,8,1.0,0,1.2800620794296265,79,1.0,1 +12079,8,1.0,0,1.6820576190948486,80,1.0,1 +12080,8,0.0,0,1.2680621147155762,81,0.0,1 +12081,8,1.0,0,1.4700603485107422,82,1.0,1 +12082,8,0.0,0,1.5690590143203735,83,0.0,1 +12083,8,1.0,0,1.383061408996582,84,1.0,1 +12084,8,1.0,0,1.6430580615997314,85,1.0,1 +12085,8,1.0,0,1.3010621070861816,86,1.0,1 +12086,8,1.0,0,1.2190619707107544,87,1.0,1 +12087,8,1.0,0,1.7520567178726196,88,1.0,1 +12088,8,1.0,0,1.5590591430664062,89,1.0,1 +12089,8,1.0,0,1.3710615634918213,90,1.0,1 +12090,8,1.0,0,1.710057258605957,91,1.0,1 +12091,8,1.0,0,1.2270619869232178,92,1.0,1 +12092,8,1.0,0,1.3480619192123413,93,1.0,1 +12093,8,1.0,0,1.4720603227615356,94,1.0,1 +12094,8,1.0,0,1.427060842514038,95,1.0,1 +12095,8,1.0,0,1.2950620651245117,96,1.0,1 +12096,8,1.0,0,1.4400607347488403,97,1.0,1 +12097,8,1.0,0,1.3790614604949951,98,1.0,1 +12098,8,1.0,0,1.5100598335266113,99,1.0,1 +12099,8,1.0,0,1.3300621509552002,100,1.0,1 +12100,8,1.0,0,1.4030611515045166,101,1.0,1 +12101,8,1.0,0,1.2980620861053467,102,1.0,1 +12102,8,1.0,0,1.6720577478408813,103,1.0,1 +12103,8,0.0,0,1.762056589126587,104,1.0,1 +12104,8,0.0,0,1.2630620002746582,105,0.0,1 +12105,8,1.0,0,1.342061996459961,106,1.0,1 +12106,8,0.0,0,1.386061429977417,107,1.0,1 +12107,8,0.0,0,2.4400696754455566,108,0.0,1 +12108,8,1.0,0,1.4470605850219727,109,1.0,1 +12109,8,1.0,0,1.8000560998916626,110,1.0,1 +12110,8,1.0,0,1.4920600652694702,111,1.0,1 +12111,8,1.0,0,1.5030598640441895,112,0.0,1 +12112,8,0.0,0,2.1700568199157715,113,1.0,1 +12113,8,0.0,0,1.1760618686676025,114,0.0,1 +12114,8,0.0,0,1.8290557861328125,115,0.0,1 +12115,8,1.0,0,2.1800575256347656,116,1.0,1 +12116,8,1.0,0,1.2910621166229248,117,1.0,1 +12117,8,1.0,0,1.6730577945709229,118,1.0,1 +12118,8,0.0,0,1.4320608377456665,119,0.0,1 +12119,8,1.0,0,1.2920620441436768,120,0.0,1 +12120,8,1.0,0,1.4000612497329712,121,1.0,1 +12121,8,1.0,0,1.571058988571167,122,1.0,1 +12122,8,0.0,0,1.3000621795654297,123,0.0,1 +12123,8,1.0,0,1.3540618419647217,124,1.0,1 +12124,8,1.0,0,1.4860601425170898,125,1.0,1 +12125,8,1.0,0,1.6380581855773926,126,1.0,1 +12126,8,1.0,0,1.2520620822906494,127,1.0,1 +12127,8,1.0,0,1.530059576034546,128,1.0,1 +12128,8,1.0,0,1.5350594520568848,129,1.0,1 +12129,8,1.0,0,1.9340543746948242,130,1.0,1 +12130,8,0.0,0,1.1630618572235107,131,0.0,1 +12131,8,1.0,0,1.5510592460632324,132,1.0,1 +12132,8,1.0,0,1.3210622072219849,133,0.0,1 +12133,8,1.0,0,1.9260544776916504,134,1.0,1 +12134,8,1.0,0,1.3750615119934082,135,1.0,1 +12135,8,1.0,0,1.500059962272644,136,1.0,1 +12136,8,1.0,0,1.2540620565414429,137,1.0,1 +12137,8,1.0,0,1.6510579586029053,138,1.0,1 +12138,8,1.0,0,1.4880601167678833,139,1.0,1 +12139,8,1.0,0,1.2670620679855347,140,1.0,1 +12140,8,0.0,0,1.552059292793274,141,0.0,1 +12141,8,1.0,0,1.3480619192123413,142,1.0,1 +12142,8,1.0,0,1.2350620031356812,143,0.0,1 +12143,8,0.0,0,1.3790614604949951,144,0.0,1 +12144,8,1.0,0,1.901054859161377,145,0.0,1 +12145,8,1.0,0,1.6030585765838623,146,0.0,1 +12146,8,1.0,0,1.5650590658187866,147,1.0,1 +12147,8,0.0,0,1.2280619144439697,148,0.0,1 +12148,8,1.0,0,1.3000621795654297,149,1.0,1 +12149,8,1.0,0,2.0470528602600098,150,1.0,1 +12150,8,1.0,0,1.6640578508377075,151,1.0,1 +12151,8,1.0,0,1.849055528640747,152,1.0,1 +12152,8,1.0,0,1.435060739517212,153,0.0,1 +12153,8,1.0,0,1.5080598592758179,154,1.0,1 +12154,8,1.0,0,1.4960600137710571,155,1.0,1 +12155,8,1.0,0,1.5070598125457764,156,1.0,1 +12156,8,1.0,0,1.8170559406280518,157,1.0,1 +12157,8,1.0,0,1.4480606317520142,158,1.0,1 +12158,8,1.0,0,1.500059962272644,159,1.0,1 +12159,8,1.0,0,1.3970612287521362,160,1.0,1 +12160,8,1.0,0,1.386061429977417,161,1.0,1 +12161,8,1.0,0,1.3670616149902344,162,1.0,1 +12162,8,1.0,0,1.3010621070861816,163,1.0,1 +12163,8,0.0,0,1.6580579280853271,164,0.0,1 +12164,8,1.0,0,1.31206214427948,165,1.0,1 +12165,8,1.0,0,1.3490618467330933,166,1.0,1 +12166,8,1.0,0,1.479060173034668,167,1.0,1 +12167,8,1.0,0,1.2430620193481445,168,1.0,1 +12168,8,1.0,0,1.2700620889663696,169,1.0,1 +12169,8,1.0,0,1.5380594730377197,170,1.0,1 +12170,8,1.0,0,1.4140610694885254,171,1.0,1 +12171,8,1.0,0,1.6410582065582275,172,1.0,1 +12172,8,1.0,0,1.5170596837997437,173,0.0,1 +12173,8,1.0,0,1.497059941291809,174,1.0,1 +12174,8,1.0,0,1.342061996459961,175,1.0,1 +12175,8,1.0,0,1.5560592412948608,176,1.0,1 +12176,8,1.0,0,1.3950612545013428,177,1.0,1 +12177,8,1.0,0,1.6860575675964355,178,1.0,1 +12178,8,1.0,0,1.3140621185302734,179,1.0,1 +12179,8,1.0,0,1.338062047958374,180,1.0,1 +12180,8,1.0,0,1.6080585718154907,181,1.0,1 +12181,8,1.0,0,1.7030572891235352,182,1.0,1 +12182,8,1.0,0,1.6250584125518799,183,0.0,1 +12183,8,0.0,0,1.9730539321899414,184,0.0,1 +12184,8,1.0,0,1.2950620651245117,185,0.0,1 +12185,8,0.0,0,1.4160610437393188,186,0.0,1 +12186,8,0.0,0,2.305063247680664,187,1.0,1 +12187,8,0.0,0,1.4380607604980469,188,0.0,1 +12188,8,0.0,0,1.6240583658218384,189,0.0,1 +12189,8,0.0,0,1.5810589790344238,190,1.0,1 +12190,8,0.0,0,1.7740564346313477,191,0.0,1 +12191,8,0.0,0,1.3950612545013428,192,0.0,1 +12192,8,0.0,0,1.9340543746948242,193,1.0,1 +12193,8,0.0,0,1.3500618934631348,194,0.0,1 +12194,8,0.0,0,1.663057804107666,195,0.0,1 +12195,8,1.0,0,1.2640620470046997,196,0.0,1 +12196,8,1.0,0,1.6100585460662842,197,1.0,1 +12197,8,1.0,0,1.2890621423721313,198,1.0,1 +12198,8,1.0,0,1.2960621118545532,199,1.0,1 +12199,8,1.0,0,1.3080620765686035,200,1.0,1 +12200,8,1.0,0,1.4330607652664185,201,0.0,1 +12201,8,0.0,0,1.2300620079040527,202,0.0,1 +12202,8,1.0,0,1.3960613012313843,203,1.0,1 +12203,8,1.0,0,1.5760589838027954,204,0.0,1 +12204,8,0.0,0,1.684057593345642,205,0.0,1 +12205,8,0.0,0,1.4000612497329712,206,0.0,1 +12206,8,1.0,0,1.3310620784759521,207,1.0,1 +12207,8,1.0,0,1.500059962272644,208,1.0,1 +12208,8,1.0,0,1.2270619869232178,209,1.0,1 +12209,8,1.0,0,1.6530580520629883,210,1.0,1 +12210,8,1.0,0,1.5440593957901,211,1.0,1 +12211,8,1.0,0,1.1990618705749512,212,1.0,1 +12212,8,0.0,0,1.757056713104248,213,0.0,1 +12213,8,0.0,0,1.343061923980713,214,0.0,1 +12214,8,1.0,0,1.7000573873519897,215,1.0,1 +12215,8,1.0,0,1.218061923980713,216,0.0,1 +12216,8,0.0,0,1.279062032699585,217,0.0,1 +12217,8,1.0,0,1.4180610179901123,218,1.0,1 +12218,8,1.0,0,2.102053642272949,219,1.0,1 +12219,8,1.0,0,1.390061378479004,220,1.0,1 +12220,8,1.0,0,1.5330594778060913,221,1.0,1 +12221,8,1.0,0,1.5540592670440674,222,0.0,1 +12222,8,1.0,0,1.4620604515075684,223,0.0,1 +12223,8,1.0,0,1.6340582370758057,224,1.0,1 +12224,8,1.0,0,1.4760602712631226,225,1.0,1 +12225,8,1.0,0,1.6350581645965576,226,0.0,1 +12226,8,0.0,0,2.2140588760375977,227,0.0,1 +12227,8,0.0,0,1.2030619382858276,228,0.0,1 +12228,8,1.0,0,1.4860601425170898,229,1.0,1 +12229,8,1.0,0,1.3890613317489624,230,1.0,1 +12230,8,1.0,0,1.5170596837997437,231,1.0,1 +12231,8,1.0,0,1.5860588550567627,232,1.0,1 +12232,8,1.0,0,1.7290570735931396,233,0.0,1 +12233,8,1.0,0,1.7410569190979004,234,1.0,1 +12234,8,1.0,0,1.548059344291687,235,1.0,1 +12235,8,1.0,0,1.6970574855804443,236,1.0,1 +12236,8,1.0,0,1.278062105178833,237,1.0,1 +12237,8,1.0,0,1.7190570831298828,238,0.0,1 +12238,8,1.0,0,1.9230544567108154,239,1.0,1 +12239,8,1.0,0,2.1240549087524414,240,1.0,1 +12240,8,1.0,0,1.431060791015625,241,0.0,1 +12241,8,0.0,0,1.2500619888305664,242,1.0,1 +12242,8,0.0,0,1.2090619802474976,243,0.0,1 +12243,8,1.0,0,1.6980574131011963,244,1.0,1 +12244,8,1.0,0,2.1100540161132812,245,1.0,1 +12245,8,1.0,0,1.2250620126724243,246,1.0,1 +12246,8,1.0,0,1.9290544986724854,247,1.0,1 +12247,8,1.0,0,1.2710620164871216,248,1.0,1 +12248,8,1.0,0,1.3960613012313843,249,1.0,1 +12249,8,1.0,0,1.3010621070861816,250,1.0,1 +12250,8,1.0,0,1.3140621185302734,251,1.0,1 +12251,8,1.0,0,1.4190609455108643,252,0.0,1 +12252,8,0.0,0,1.8160558938980103,253,0.0,1 +12253,8,1.0,0,1.8080559968948364,254,1.0,1 +12254,8,1.0,0,1.339061975479126,255,0.0,1 +12255,8,1.0,0,2.0700526237487793,256,1.0,1 +12256,8,1.0,0,1.4510605335235596,257,1.0,1 +12257,8,1.0,0,1.3210622072219849,258,1.0,1 +12258,8,1.0,0,1.9320544004440308,259,1.0,1 +12259,8,1.0,0,1.303062081336975,260,0.0,1 +12260,8,0.0,0,1.5830588340759277,261,0.0,1 +12261,8,1.0,0,1.7940561771392822,262,1.0,1 +12262,8,1.0,0,1.4150609970092773,263,1.0,1 +12263,8,1.0,0,1.2960621118545532,264,1.0,1 +12264,8,1.0,0,1.4360607862472534,265,0.0,1 +12265,8,1.0,0,1.574059009552002,266,1.0,1 +12266,8,1.0,0,1.759056568145752,267,1.0,1 +12267,8,1.0,0,1.2370619773864746,268,1.0,1 +12268,8,1.0,0,1.40506112575531,269,0.0,1 +12269,8,1.0,0,1.9130547046661377,270,1.0,1 +12270,8,1.0,0,1.7850563526153564,271,1.0,1 +12271,8,1.0,0,1.5500593185424805,272,1.0,1 +12272,8,1.0,0,1.2630620002746582,273,1.0,1 +12273,8,1.0,0,1.2260619401931763,274,1.0,1 +12274,8,1.0,0,1.9880536794662476,275,1.0,1 +12275,8,1.0,0,1.5730589628219604,276,1.0,1 +12276,8,0.0,0,1.184061884880066,277,0.0,1 +12277,8,1.0,0,1.335062026977539,278,1.0,1 +12278,8,1.0,0,1.478060245513916,279,0.0,1 +12279,8,1.0,0,1.408061146736145,280,0.0,1 +12280,8,0.0,0,1.6490581035614014,281,0.0,1 +12281,8,1.0,0,2.1800575256347656,282,1.0,1 +12282,8,1.0,0,1.571058988571167,283,0.0,1 +12283,8,1.0,0,1.8330557346343994,284,1.0,1 +12284,8,1.0,0,1.5340595245361328,285,1.0,1 +12285,8,1.0,0,1.4720603227615356,286,1.0,1 +12286,8,1.0,0,1.4200609922409058,287,1.0,1 +12287,8,1.0,0,1.5370594263076782,288,1.0,1 +12288,8,1.0,0,1.571058988571167,289,1.0,1 +12289,8,1.0,0,1.4110610485076904,290,1.0,1 +12290,8,1.0,0,1.2300620079040527,291,1.0,1 +12291,8,1.0,0,1.3660616874694824,292,1.0,1 +12292,8,1.0,0,1.3780615329742432,293,1.0,1 +12293,8,1.0,0,1.3080620765686035,294,1.0,1 +12294,8,1.0,0,2.1920580863952637,295,1.0,1 +12295,8,1.0,0,1.5550591945648193,296,1.0,1 +12296,8,1.0,0,1.6860575675964355,297,1.0,1 +12297,8,1.0,0,1.5630590915679932,298,1.0,1 +12298,8,0.0,0,1.4920600652694702,299,0.0,1 +12299,8,1.0,0,1.4220609664916992,300,1.0,1 +12300,8,1.0,0,1.3930612802505493,301,1.0,1 +12301,8,1.0,0,1.7490568161010742,302,1.0,1 +12302,8,1.0,0,1.600058674812317,303,1.0,1 +12303,8,1.0,0,1.3370620012283325,304,1.0,1 +12304,8,1.0,0,1.4950599670410156,305,1.0,1 +12305,8,1.0,0,1.2990621328353882,306,1.0,1 +12306,8,1.0,0,1.3590617179870605,307,0.0,1 +12307,8,1.0,0,1.9730539321899414,308,1.0,1 +12308,8,1.0,0,1.3620617389678955,309,1.0,1 +12309,8,1.0,0,1.6460580825805664,310,1.0,1 +12310,8,1.0,0,1.3400620222091675,311,1.0,1 +12311,8,1.0,0,1.2680621147155762,312,1.0,1 +12312,8,1.0,0,1.4060611724853516,313,0.0,1 +12313,8,1.0,0,1.7750563621520996,314,1.0,1 +12314,8,1.0,0,2.1820573806762695,315,1.0,1 +12315,8,1.0,0,1.6380581855773926,316,1.0,1 +12316,8,1.0,0,1.6490581035614014,317,1.0,1 +12317,8,1.0,0,1.6090586185455322,318,1.0,1 +12318,8,1.0,0,1.4260609149932861,319,0.0,1 +12319,8,1.0,0,1.8120559453964233,320,1.0,1 +12320,8,1.0,0,1.2960621118545532,321,1.0,1 +12321,8,1.0,0,1.386061429977417,322,1.0,1 +12322,8,1.0,0,1.3300621509552002,323,1.0,1 +12323,8,1.0,0,1.3960613012313843,324,1.0,1 +12324,8,1.0,0,1.662057876586914,325,1.0,1 +12325,8,1.0,0,1.31806218624115,326,1.0,1 +12326,8,1.0,0,1.3940613269805908,327,1.0,1 +12327,8,1.0,0,1.4800602197647095,328,1.0,1 +12328,8,1.0,0,1.5070598125457764,329,1.0,1 +12329,8,1.0,0,2.0620527267456055,330,1.0,1 +12330,8,1.0,0,1.284062147140503,331,0.0,1 +12331,8,1.0,0,1.3970612287521362,332,0.0,1 +12332,8,1.0,0,2.2000584602355957,333,1.0,1 +12333,8,1.0,0,2.1000537872314453,334,1.0,1 +12334,8,1.0,0,1.2980620861053467,335,1.0,1 +12335,8,1.0,0,1.2690620422363281,336,1.0,1 +12336,8,1.0,0,1.4920600652694702,337,1.0,1 +12337,8,1.0,0,1.1730618476867676,338,0.0,1 +12338,8,1.0,0,1.4620604515075684,339,1.0,1 +12339,8,1.0,0,1.3110620975494385,340,1.0,1 +12340,8,1.0,0,1.284062147140503,341,1.0,1 +12341,8,1.0,0,1.3080620765686035,342,1.0,1 +12342,8,1.0,0,1.4880601167678833,343,1.0,1 +12343,8,1.0,0,1.45706045627594,344,1.0,1 +12344,8,0.0,0,1.2490620613098145,345,1.0,1 +12345,8,0.0,0,1.460060477256775,346,0.0,1 +12346,8,1.0,0,1.500059962272644,347,0.0,1 +12347,8,1.0,0,2.3720664978027344,348,1.0,1 +12348,8,1.0,0,1.7980561256408691,349,1.0,1 +12349,8,1.0,0,1.357061743736267,350,0.0,1 +12350,8,1.0,0,1.9050548076629639,351,1.0,1 +12351,8,1.0,0,1.3780615329742432,352,1.0,1 +12352,8,1.0,0,1.8860549926757812,353,0.0,1 +12353,8,0.0,0,1.3290621042251587,354,0.0,1 +12354,8,0.0,0,1.6530580520629883,355,0.0,1 +12355,8,1.0,0,1.3970612287521362,356,1.0,1 +12356,8,1.0,0,1.4680603742599487,357,1.0,1 +12357,8,1.0,0,1.4850600957870483,358,0.0,1 +12358,8,1.0,0,1.7220571041107178,359,1.0,1 +12359,8,1.0,0,1.2640620470046997,360,1.0,1 +12360,8,1.0,0,1.3660616874694824,361,1.0,1 +12361,8,1.0,0,1.2920620441436768,362,1.0,1 +12362,8,1.0,0,1.2560620307922363,363,0.0,1 +12363,8,0.0,0,2.2250595092773438,364,0.0,1 +12364,8,0.0,0,2.3750665187835693,365,0.0,1 +12365,8,1.0,0,1.6290583610534668,366,0.0,1 +12366,8,0.0,0,1.3310620784759521,367,0.0,1 +12367,8,1.0,0,1.7240570783615112,368,1.0,1 +12368,8,1.0,0,1.5910587310791016,369,1.0,1 +12369,8,1.0,0,1.8100559711456299,370,0.0,1 +12370,8,1.0,0,1.617058515548706,371,1.0,1 +12371,8,1.0,0,1.5820589065551758,372,1.0,1 +12372,8,1.0,0,1.56705904006958,373,1.0,1 +12373,8,1.0,0,1.386061429977417,374,1.0,1 +12374,8,1.0,0,1.4800602197647095,375,1.0,1 +12375,8,1.0,0,1.3160622119903564,376,0.0,1 +12376,8,1.0,0,2.0990536212921143,377,1.0,1 +12377,8,1.0,0,1.4980599880218506,378,1.0,1 +12378,8,1.0,0,1.9720538854599,379,1.0,1 +12379,8,1.0,0,1.2740620374679565,380,1.0,1 +12380,8,1.0,0,1.692057490348816,381,1.0,1 +12381,8,1.0,0,1.5780589580535889,382,1.0,1 +12382,8,1.0,0,1.2580620050430298,383,1.0,1 +12383,8,1.0,0,1.4420607089996338,384,1.0,1 +12384,8,1.0,0,1.3910613059997559,385,1.0,1 +12385,8,1.0,0,1.4770601987838745,386,1.0,1 +12386,8,1.0,0,1.7010574340820312,387,1.0,1 +12387,8,1.0,0,1.3810614347457886,388,1.0,1 +12388,8,1.0,0,1.4640604257583618,389,1.0,1 +12389,8,1.0,0,1.3440619707107544,390,1.0,1 +12390,8,1.0,0,1.365061640739441,391,1.0,1 +12391,8,1.0,0,1.3620617389678955,392,1.0,1 +12392,8,1.0,0,1.2500619888305664,393,1.0,1 +12393,8,1.0,0,1.6540579795837402,394,1.0,1 +12394,8,1.0,0,1.3530617952346802,395,1.0,1 +12395,8,1.0,0,1.8930549621582031,396,1.0,1 +12396,8,1.0,0,1.3520618677139282,397,1.0,1 +12397,8,1.0,0,1.4000612497329712,398,1.0,1 +12398,8,1.0,0,1.4980599880218506,399,1.0,1 +12399,8,1.0,0,1.523059606552124,400,1.0,1 +12400,8,1.0,0,1.662057876586914,401,1.0,1 +12401,8,1.0,0,1.6850576400756836,402,1.0,1 +12402,8,1.0,0,1.305062174797058,403,1.0,1 +12403,8,1.0,0,1.305062174797058,404,1.0,1 +12404,8,1.0,0,1.552059292793274,405,0.0,1 +12405,8,1.0,0,2.0210533142089844,406,1.0,1 +12406,8,1.0,0,1.6250584125518799,407,1.0,1 +12407,8,1.0,0,1.3140621185302734,408,1.0,1 +12408,8,1.0,0,1.4460606575012207,409,1.0,1 +12409,8,1.0,0,1.824055790901184,410,1.0,1 +12410,8,1.0,0,1.527059555053711,411,1.0,1 +12411,8,1.0,0,1.4980599880218506,412,1.0,1 +12412,8,1.0,0,1.500059962272644,413,1.0,1 +12413,8,1.0,0,1.309062123298645,414,1.0,1 +12414,8,1.0,0,1.360061764717102,415,1.0,1 +12415,8,1.0,0,1.27606201171875,416,1.0,1 +12416,8,1.0,0,1.2560620307922363,417,0.0,1 +12417,8,0.0,0,2.4710710048675537,418,0.0,1 +12418,8,1.0,0,1.4690603017807007,419,1.0,1 +12419,8,1.0,0,1.3560618162155151,420,0.0,1 +12420,8,1.0,0,1.939054250717163,421,1.0,1 +12421,8,1.0,0,1.251062035560608,422,0.0,1 +12422,8,1.0,0,1.4640604257583618,423,1.0,1 +12423,8,1.0,0,1.3100621700286865,424,1.0,1 +12424,8,1.0,0,1.281062126159668,425,1.0,1 +12425,8,0.0,0,1.2730621099472046,426,0.0,1 +12426,8,0.0,0,1.7340569496154785,427,0.0,1 +12427,8,1.0,0,1.849055528640747,428,1.0,1 +12428,8,1.0,0,1.435060739517212,429,1.0,1 +12429,8,1.0,0,1.6490581035614014,430,1.0,1 +12430,8,1.0,0,1.334062099456787,431,1.0,1 +12431,8,1.0,0,1.3270621299743652,432,1.0,1 +12432,8,1.0,0,1.2290619611740112,433,1.0,1 +12433,8,1.0,0,1.6730577945709229,434,1.0,1 +12434,8,1.0,0,2.1770572662353516,435,1.0,1 +12435,8,1.0,0,1.2680621147155762,436,1.0,1 +12436,8,1.0,0,1.5110597610473633,437,1.0,1 +12437,8,1.0,0,1.3070621490478516,438,1.0,1 +12438,8,1.0,0,1.31206214427948,439,1.0,1 +12439,8,1.0,0,1.3560618162155151,440,1.0,1 +12440,8,1.0,0,1.6120585203170776,441,1.0,1 +12441,8,1.0,0,1.3020621538162231,442,1.0,1 +12442,8,1.0,0,1.4480606317520142,443,1.0,1 +12443,8,1.0,0,1.452060580253601,444,1.0,1 +12444,8,1.0,0,1.7190570831298828,445,1.0,1 +12445,8,1.0,0,1.2850620746612549,446,1.0,1 +12446,8,1.0,0,1.5570591688156128,447,1.0,1 +12447,8,1.0,0,1.5610591173171997,448,0.0,1 +12448,8,1.0,0,1.6100585460662842,449,0.0,1 +12449,8,1.0,0,1.9140546321868896,450,1.0,1 +12450,8,1.0,0,1.2550619840621948,451,1.0,1 +12451,8,1.0,0,1.9120546579360962,452,0.0,1 +12452,8,0.0,0,1.6040586233139038,453,1.0,1 +12453,8,0.0,0,1.6430580615997314,454,0.0,1 +12454,8,0.0,0,1.8650553226470947,455,0.0,1 +12455,8,1.0,0,1.4940600395202637,456,1.0,1 +12456,8,1.0,0,1.6360582113265991,457,1.0,1 +12457,8,1.0,0,1.615058422088623,458,0.0,1 +12458,8,1.0,0,1.9300544261932373,459,1.0,1 +12459,8,1.0,0,1.941054344177246,460,1.0,1 +12460,8,0.0,0,1.6810576915740967,461,0.0,1 +12461,8,1.0,0,1.3740615844726562,462,1.0,1 +12462,8,1.0,0,1.8660552501678467,463,1.0,1 +12463,8,0.0,0,1.3940613269805908,464,0.0,1 +12464,8,1.0,0,1.215061902999878,465,1.0,1 +12465,8,1.0,0,1.5780589580535889,466,1.0,1 +12466,8,1.0,0,1.408061146736145,467,1.0,1 +12467,8,1.0,0,1.2380620241165161,468,1.0,1 +12468,8,1.0,0,1.3970612287521362,469,1.0,1 +12469,8,1.0,0,1.3690615892410278,470,0.0,1 +12470,8,0.0,0,1.9600540399551392,471,0.0,1 +12471,8,0.0,0,1.7780563831329346,472,0.0,1 +12472,8,0.0,0,1.5910587310791016,473,0.0,1 +12473,8,1.0,0,2.1940579414367676,474,0.0,1 +12474,8,0.0,0,1.6500580310821533,475,1.0,1 +12475,8,0.0,0,1.242061972618103,476,1.0,1 +12476,8,0.0,0,1.2210619449615479,477,1.0,1 +12477,8,0.0,0,1.3850613832473755,478,0.0,1 +12478,8,1.0,0,1.4420607089996338,479,0.0,1 +12479,8,0.0,0,1.4170609712600708,480,0.0,1 +12480,8,1.0,0,1.4320608377456665,481,1.0,1 +12481,8,1.0,0,1.5910587310791016,482,1.0,1 +12482,8,1.0,0,1.5200597047805786,483,1.0,1 +12483,8,1.0,0,1.6680577993392944,484,1.0,1 +12484,8,1.0,0,1.4610604047775269,485,0.0,1 +12485,8,0.0,0,1.8710551261901855,486,0.0,1 +12486,8,0.0,0,1.7380568981170654,487,0.0,1 +12487,8,1.0,0,1.3920613527297974,488,1.0,1 +12488,8,1.0,0,2.1640567779541016,489,1.0,1 +12489,8,1.0,0,2.0090534687042236,490,1.0,1 +12490,8,1.0,0,1.4010611772537231,491,0.0,1 +12491,8,1.0,0,2.295062780380249,492,0.0,1 +12492,8,0.0,0,1.6770577430725098,493,0.0,1 +12493,8,0.0,0,2.0650527477264404,494,0.0,1 +12494,8,1.0,0,1.5290595293045044,495,1.0,1 +12495,8,1.0,0,1.4680603742599487,496,1.0,1 +12496,8,1.0,0,1.684057593345642,497,1.0,1 +12497,8,1.0,0,1.3410619497299194,498,1.0,1 +12498,8,1.0,0,1.8080559968948364,499,0.0,1 +12499,8,0.0,0,1.2290619611740112,500,0.0,1 +12500,8,1.0,1,1.9500541687011719,1,1.0,1 +12501,8,1.0,1,1.8790550231933594,2,1.0,1 +12502,8,1.0,1,1.4500606060028076,3,1.0,1 +12503,8,0.0,1,1.552059292793274,4,0.0,1 +12504,8,1.0,1,1.5030598640441895,5,0.0,1 +12505,8,1.0,1,1.6490581035614014,6,1.0,1 +12506,8,0.0,1,1.762056589126587,7,0.0,1 +12507,8,1.0,1,2.044053077697754,8,0.0,1 +12508,8,0.0,1,1.2830621004104614,9,0.0,1 +12509,8,0.0,1,1.4110610485076904,10,1.0,1 +12510,8,0.0,1,2.1320552825927734,11,1.0,1 +12511,8,0.0,1,1.714057207107544,12,0.0,1 +12512,8,1.0,1,2.2040586471557617,13,0.0,1 +12513,8,0.0,1,1.281062126159668,14,1.0,1 +12514,8,0.0,1,1.220062017440796,15,0.0,1 +12515,8,1.0,1,1.571058988571167,16,1.0,1 +12516,8,1.0,1,1.7340569496154785,17,0.0,1 +12517,8,1.0,1,1.2730621099472046,18,1.0,1 +12518,8,1.0,1,1.5760589838027954,19,1.0,1 +12519,8,1.0,1,1.799056053161621,20,0.0,1 +12520,8,0.0,1,1.5870587825775146,21,1.0,1 +12521,8,0.0,1,1.941054344177246,22,0.0,1 +12522,8,1.0,1,2.285062313079834,23,0.0,1 +12523,8,0.0,1,1.4710602760314941,24,0.0,1 +12524,8,1.0,1,2.1610565185546875,25,1.0,1 +12525,8,1.0,1,1.360061764717102,26,0.0,1 +12526,8,1.0,1,1.9070546627044678,27,1.0,1 +12527,8,0.0,1,1.3660616874694824,28,0.0,1 +12528,8,1.0,1,1.338062047958374,29,1.0,1 +12529,8,1.0,1,2.075052499771118,30,1.0,1 +12530,8,1.0,1,1.4870600700378418,31,1.0,1 +12531,8,1.0,1,1.220062017440796,32,1.0,1 +12532,8,1.0,1,1.390061378479004,33,1.0,1 +12533,8,1.0,1,1.574059009552002,34,1.0,1 +12534,8,1.0,1,1.338062047958374,35,0.0,1 +12535,8,1.0,1,1.9550540447235107,36,1.0,1 +12536,8,1.0,1,1.5560592412948608,37,0.0,1 +12537,8,1.0,1,1.3280621767044067,38,0.0,1 +12538,8,0.0,1,1.4690603017807007,39,0.0,1 +12539,8,0.0,1,1.3680616617202759,40,0.0,1 +12540,8,0.0,1,1.309062123298645,41,0.0,1 +12541,8,1.0,1,2.1660566329956055,42,1.0,1 +12542,8,1.0,1,1.6680577993392944,43,1.0,1 +12543,8,1.0,1,1.9380543231964111,44,1.0,1 +12544,8,1.0,1,1.305062174797058,45,1.0,1 +12545,8,1.0,1,1.3930612802505493,46,1.0,1 +12546,8,1.0,1,1.2000619173049927,47,0.0,1 +12547,8,0.0,1,1.2460620403289795,48,0.0,1 +12548,8,1.0,1,1.621058464050293,49,1.0,1 +12549,8,1.0,1,1.990053653717041,50,1.0,1 +12550,8,1.0,1,1.9330544471740723,51,1.0,1 +12551,8,1.0,1,1.205061912536621,52,1.0,1 +12552,8,1.0,1,1.305062174797058,53,0.0,1 +12553,8,0.0,1,1.4060611724853516,54,0.0,1 +12554,8,0.0,1,1.3470618724822998,55,1.0,1 +12555,8,0.0,1,2.327064275741577,56,1.0,1 +12556,8,0.0,1,1.2770620584487915,57,1.0,1 +12557,8,0.0,1,1.181061863899231,58,1.0,1 +12558,8,0.0,1,1.2980620861053467,59,0.0,1 +12559,8,1.0,1,1.986053705215454,60,1.0,1 +12560,8,1.0,1,1.4610604047775269,61,1.0,1 +12561,8,1.0,1,1.4660604000091553,62,1.0,1 +12562,8,1.0,1,1.272062063217163,63,1.0,1 +12563,8,1.0,1,1.803056001663208,64,1.0,1 +12564,8,1.0,1,2.034053087234497,65,1.0,1 +12565,8,1.0,1,1.28206205368042,66,0.0,1 +12566,8,0.0,1,1.360061764717102,67,0.0,1 +12567,8,1.0,1,2.1660566329956055,68,1.0,1 +12568,8,1.0,1,1.802056074142456,69,0.0,1 +12569,8,1.0,1,2.0520529747009277,70,1.0,1 +12570,8,0.0,1,1.5280596017837524,71,1.0,1 +12571,8,0.0,1,1.6100585460662842,72,0.0,1 +12572,8,1.0,1,1.5580592155456543,73,0.0,1 +12573,8,0.0,1,1.2340619564056396,74,0.0,1 +12574,8,1.0,1,2.1520562171936035,75,1.0,1 +12575,8,1.0,1,2.082052707672119,76,1.0,1 +12576,8,1.0,1,1.8520554304122925,77,1.0,1 +12577,8,1.0,1,1.28206205368042,78,1.0,1 +12578,8,1.0,1,1.670057773590088,79,1.0,1 +12579,8,1.0,1,1.6370582580566406,80,0.0,1 +12580,8,0.0,1,1.239061951637268,81,0.0,1 +12581,8,1.0,1,1.847055435180664,82,1.0,1 +12582,8,1.0,1,1.8110558986663818,83,1.0,1 +12583,8,1.0,1,1.6640578508377075,84,0.0,1 +12584,8,0.0,1,1.622058391571045,85,0.0,1 +12585,8,0.0,1,1.7790563106536865,86,0.0,1 +12586,8,0.0,1,1.3690615892410278,87,0.0,1 +12587,8,0.0,1,1.713057279586792,88,0.0,1 +12588,8,1.0,1,1.8370556831359863,89,1.0,1 +12589,8,0.0,1,1.8270556926727295,90,0.0,1 +12590,8,1.0,1,1.7190570831298828,91,0.0,1 +12591,8,0.0,1,1.5320595502853394,92,0.0,1 +12592,8,0.0,1,2.0710525512695312,93,0.0,1 +12593,8,0.0,1,1.8370556831359863,94,0.0,1 +12594,8,1.0,1,1.758056640625,95,1.0,1 +12595,8,1.0,1,1.279062032699585,96,0.0,1 +12596,8,1.0,1,1.474060297012329,97,1.0,1 +12597,8,1.0,1,1.5280596017837524,98,1.0,1 +12598,8,0.0,1,1.2370619773864746,99,0.0,1 +12599,8,1.0,1,1.8630552291870117,100,1.0,1 +12600,8,1.0,1,1.3730615377426147,101,1.0,1 +12601,8,1.0,1,1.89705491065979,102,1.0,1 +12602,8,1.0,1,1.9750537872314453,103,1.0,1 +12603,8,1.0,1,1.2870620489120483,104,1.0,1 +12604,8,1.0,1,1.6790575981140137,105,1.0,1 +12605,8,1.0,1,1.5610591173171997,106,1.0,1 +12606,8,1.0,1,1.5990586280822754,107,1.0,1 +12607,8,1.0,1,1.526059627532959,108,1.0,1 +12608,8,1.0,1,1.387061357498169,109,1.0,1 +12609,8,1.0,1,1.390061378479004,110,1.0,1 +12610,8,0.0,1,1.4710602760314941,111,0.0,1 +12611,8,1.0,1,1.667057752609253,112,1.0,1 +12612,8,1.0,1,1.527059555053711,113,1.0,1 +12613,8,1.0,1,1.3550617694854736,114,1.0,1 +12614,8,1.0,1,1.3690615892410278,115,1.0,1 +12615,8,1.0,1,1.5100598335266113,116,1.0,1 +12616,8,1.0,1,1.577059030532837,117,1.0,1 +12617,8,1.0,1,1.3020621538162231,118,1.0,1 +12618,8,1.0,1,1.309062123298645,119,1.0,1 +12619,8,1.0,1,1.309062123298645,120,1.0,1 +12620,8,1.0,1,1.5640591382980347,121,1.0,1 +12621,8,1.0,1,1.5600591897964478,122,0.0,1 +12622,8,0.0,1,2.086052894592285,123,0.0,1 +12623,8,1.0,1,1.2290619611740112,124,1.0,1 +12624,8,1.0,1,1.5120598077774048,125,0.0,1 +12625,8,0.0,1,1.2490620613098145,126,0.0,1 +12626,8,1.0,1,1.5800589323043823,127,0.0,1 +12627,8,0.0,1,1.4330607652664185,128,1.0,1 +12628,8,0.0,1,1.4170609712600708,129,0.0,1 +12629,8,1.0,1,1.92005455493927,130,0.0,1 +12630,8,0.0,1,1.548059344291687,131,0.0,1 +12631,8,0.0,1,1.4330607652664185,132,0.0,1 +12632,8,0.0,1,1.6990573406219482,133,0.0,1 +12633,8,1.0,1,1.4370607137680054,134,1.0,1 +12634,8,1.0,1,1.780056357383728,135,1.0,1 +12635,8,1.0,1,1.7340569496154785,136,1.0,1 +12636,8,1.0,1,1.1720619201660156,137,0.0,1 +12637,8,0.0,1,2.275061845779419,138,0.0,1 +12638,8,0.0,1,1.8330557346343994,139,0.0,1 +12639,8,1.0,1,2.279062032699585,140,1.0,1 +12640,8,1.0,1,1.2220619916915894,141,1.0,1 +12641,8,1.0,1,1.3020621538162231,142,0.0,1 +12642,8,0.0,1,2.0260531902313232,143,0.0,1 +12643,8,1.0,1,1.941054344177246,144,1.0,1 +12644,8,1.0,1,1.3910613059997559,145,1.0,1 +12645,8,1.0,1,1.2330620288848877,146,1.0,1 +12646,8,1.0,1,1.2260619401931763,147,1.0,1 +12647,8,1.0,1,1.6310582160949707,148,1.0,1 +12648,8,1.0,1,1.2230619192123413,149,0.0,1 +12649,8,1.0,1,1.4920600652694702,150,0.0,1 +12650,8,1.0,1,2.0070533752441406,151,0.0,1 +12651,8,0.0,1,1.4580605030059814,152,0.0,1 +12652,8,1.0,1,1.9170546531677246,153,1.0,1 +12653,8,1.0,1,1.4280608892440796,154,0.0,1 +12654,8,0.0,1,1.5560592412948608,155,0.0,1 +12655,8,0.0,1,1.59605872631073,156,0.0,1 +12656,8,1.0,1,1.6090586185455322,157,0.0,1 +12657,8,0.0,1,1.9440542459487915,158,0.0,1 +12658,8,0.0,1,1.211061954498291,159,1.0,1 +12659,8,0.0,1,1.1310617923736572,160,0.0,1 +12660,8,0.0,1,2.0240530967712402,161,1.0,1 +12661,8,0.0,1,1.4010611772537231,162,0.0,1 +12662,8,0.0,1,2.3830668926239014,163,1.0,1 +12663,8,0.0,1,1.6720577478408813,164,1.0,1 +12664,8,0.0,1,1.8080559968948364,165,0.0,1 +12665,8,1.0,1,1.4000612497329712,166,1.0,1 +12666,8,1.0,1,1.5560592412948608,167,0.0,1 +12667,8,0.0,1,1.9840537309646606,168,0.0,1 +12668,8,0.0,1,2.031053066253662,169,1.0,1 +12669,8,0.0,1,1.2960621118545532,170,1.0,1 +12670,8,0.0,1,1.1830618381500244,171,0.0,1 +12671,8,0.0,1,1.7870562076568604,172,1.0,1 +12672,8,0.0,1,1.2990621328353882,173,1.0,1 +12673,8,0.0,1,1.2660620212554932,174,1.0,1 +12674,8,0.0,1,1.4690603017807007,175,0.0,1 +12675,8,1.0,1,1.5400594472885132,176,0.0,1 +12676,8,0.0,1,1.688057541847229,177,0.0,1 +12677,8,1.0,1,1.5280596017837524,178,1.0,1 +12678,8,1.0,1,1.6280583143234253,179,1.0,1 +12679,8,1.0,1,1.56705904006958,180,0.0,1 +12680,8,1.0,1,1.5370594263076782,181,0.0,1 +12681,8,0.0,1,1.571058988571167,182,0.0,1 +12682,8,1.0,1,1.4470605850219727,183,1.0,1 +12683,8,1.0,1,1.3920613527297974,184,0.0,1 +12684,8,1.0,1,1.570059061050415,185,0.0,1 +12685,8,0.0,1,1.5360594987869263,186,0.0,1 +12686,8,0.0,1,1.31806218624115,187,0.0,1 +12687,8,0.0,1,1.9060547351837158,188,1.0,1 +12688,8,1.0,1,1.3460619449615479,189,0.0,1 +12689,8,0.0,1,1.6380581855773926,190,0.0,1 +12690,8,1.0,1,2.035053014755249,191,0.0,1 +12691,8,1.0,1,1.4430606365203857,192,1.0,1 +12692,8,0.0,1,1.9280544519424438,193,0.0,1 +12693,8,1.0,1,1.6860575675964355,194,1.0,1 +12694,8,1.0,1,1.6550579071044922,195,0.0,1 +12695,8,0.0,1,1.2210619449615479,196,1.0,1 +12696,8,0.0,1,1.4540605545043945,197,1.0,1 +12697,8,0.0,1,1.575058937072754,198,0.0,1 +12698,8,1.0,1,1.732056975364685,199,1.0,1 +12699,8,1.0,1,2.3650660514831543,200,1.0,1 +12700,8,1.0,1,1.4410606622695923,201,1.0,1 +12701,8,1.0,1,1.6500580310821533,202,0.0,1 +12702,8,0.0,1,1.4100611209869385,203,0.0,1 +12703,8,0.0,1,1.4100611209869385,204,1.0,1 +12704,8,0.0,1,1.3370620012283325,205,0.0,1 +12705,8,0.0,1,1.6330583095550537,206,0.0,1 +12706,8,1.0,1,1.3940613269805908,207,0.0,1 +12707,8,0.0,1,1.9440542459487915,208,0.0,1 +12708,8,1.0,1,2.2290596961975098,209,1.0,1 +12709,8,1.0,1,1.339061975479126,210,1.0,1 +12710,8,1.0,1,1.3940613269805908,211,0.0,1 +12711,8,1.0,1,1.6740577220916748,212,0.0,1 +12712,8,1.0,1,2.1230547428131104,213,1.0,1 +12713,8,1.0,1,1.4460606575012207,214,1.0,1 +12714,8,1.0,1,1.6770577430725098,215,1.0,1 +12715,8,1.0,1,1.6160584688186646,216,1.0,1 +12716,8,1.0,1,1.4180610179901123,217,0.0,1 +12717,8,0.0,1,1.3530617952346802,218,0.0,1 +12718,8,0.0,1,2.1850576400756836,219,0.0,1 +12719,8,0.0,1,1.6910574436187744,220,0.0,1 +12720,8,0.0,1,1.9140546321868896,221,1.0,1 +12721,8,0.0,1,1.2500619888305664,222,0.0,1 +12722,8,0.0,1,2.00105357170105,223,0.0,1 +12723,8,1.0,1,1.803056001663208,224,1.0,1 +12724,8,1.0,1,1.6970574855804443,225,1.0,1 +12725,8,1.0,1,1.7290570735931396,226,1.0,1 +12726,8,1.0,1,1.5430593490600586,227,0.0,1 +12727,8,1.0,1,1.3270621299743652,228,1.0,1 +12728,8,1.0,1,1.3290621042251587,229,1.0,1 +12729,8,1.0,1,1.211061954498291,230,1.0,1 +12730,8,0.0,1,1.3930612802505493,231,1.0,1 +12731,8,1.0,1,2.1810574531555176,232,1.0,1 +12732,8,0.0,1,1.7710564136505127,233,1.0,1 +12733,8,1.0,1,1.762056589126587,234,1.0,1 +12734,8,1.0,1,1.4000612497329712,235,1.0,1 +12735,8,0.0,1,1.6120585203170776,236,0.0,1 +12736,8,1.0,1,1.4550604820251465,237,0.0,1 +12737,8,0.0,1,1.545059323310852,238,1.0,1 +12738,8,1.0,1,2.1040539741516113,239,0.0,1 +12739,8,0.0,1,1.27606201171875,240,1.0,1 +12740,8,0.0,1,1.2290619611740112,241,1.0,1 +12741,8,0.0,1,1.1760618686676025,242,1.0,1 +12742,8,0.0,1,2.3530654907226562,243,0.0,1 +12743,8,0.0,1,1.2690620422363281,244,0.0,1 +12744,8,0.0,1,1.241062045097351,245,0.0,1 +12745,8,1.0,1,1.6260583400726318,246,0.0,1 +12746,8,1.0,1,2.241060256958008,247,0.0,1 +12747,8,0.0,1,1.1550618410110474,248,0.0,1 +12748,8,0.0,1,2.4770712852478027,249,0.0,1 +12749,8,0.0,1,1.151061773300171,250,0.0,1 +12750,8,0.0,1,1.3750615119934082,251,0.0,1 +12751,8,0.0,1,1.1900619268417358,252,1.0,1 +12752,8,0.0,1,1.284062147140503,253,0.0,1 +12753,8,1.0,1,1.526059627532959,254,1.0,1 +12754,8,1.0,1,1.3580617904663086,255,1.0,1 +12755,8,1.0,1,1.4880601167678833,256,1.0,1 +12756,8,1.0,1,1.669057846069336,257,1.0,1 +12757,8,1.0,1,1.2710620164871216,258,0.0,1 +12758,8,0.0,1,1.5150597095489502,259,1.0,1 +12759,8,1.0,1,1.8830549716949463,260,0.0,1 +12760,8,0.0,1,1.713057279586792,261,0.0,1 +12761,8,0.0,1,1.4800602197647095,262,0.0,1 +12762,8,1.0,1,1.5600591897964478,263,1.0,1 +12763,8,1.0,1,1.7520567178726196,264,1.0,1 +12764,8,1.0,1,1.6340582370758057,265,1.0,1 +12765,8,1.0,1,1.4800602197647095,266,0.0,1 +12766,8,1.0,1,1.4150609970092773,267,1.0,1 +12767,8,1.0,1,1.6800576448440552,268,1.0,1 +12768,8,1.0,1,1.4720603227615356,269,1.0,1 +12769,8,1.0,1,1.342061996459961,270,1.0,1 +12770,8,1.0,1,1.6640578508377075,271,1.0,1 +12771,8,1.0,1,1.2870620489120483,272,1.0,1 +12772,8,1.0,1,1.2300620079040527,273,1.0,1 +12773,8,1.0,1,1.644058108329773,274,1.0,1 +12774,8,1.0,1,1.4170609712600708,275,1.0,1 +12775,8,1.0,1,1.4170609712600708,276,0.0,1 +12776,8,1.0,1,2.1730570793151855,277,1.0,1 +12777,8,1.0,1,1.6320582628250122,278,1.0,1 +12778,8,1.0,1,1.505059838294983,279,1.0,1 +12779,8,1.0,1,1.6270582675933838,280,1.0,1 +12780,8,1.0,1,1.3250621557235718,281,1.0,1 +12781,8,1.0,1,1.3230621814727783,282,0.0,1 +12782,8,1.0,1,1.3270621299743652,283,1.0,1 +12783,8,1.0,1,1.4290608167648315,284,1.0,1 +12784,8,1.0,1,1.824055790901184,285,1.0,1 +12785,8,1.0,1,1.4290608167648315,286,1.0,1 +12786,8,1.0,1,1.4720603227615356,287,0.0,1 +12787,8,1.0,1,1.4400607347488403,288,1.0,1 +12788,8,1.0,1,1.5400594472885132,289,1.0,1 +12789,8,1.0,1,1.1950619220733643,290,1.0,1 +12790,8,1.0,1,1.2490620613098145,291,1.0,1 +12791,8,1.0,1,1.218061923980713,292,1.0,1 +12792,8,1.0,1,1.3990612030029297,293,0.0,1 +12793,8,1.0,1,1.5720590353012085,294,1.0,1 +12794,8,1.0,1,1.6040586233139038,295,1.0,1 +12795,8,1.0,1,1.5620591640472412,296,1.0,1 +12796,8,1.0,1,1.4420607089996338,297,0.0,1 +12797,8,0.0,1,1.3250621557235718,298,0.0,1 +12798,8,0.0,1,2.037053108215332,299,1.0,1 +12799,8,0.0,1,1.2240619659423828,300,0.0,1 +12800,8,0.0,1,1.5950586795806885,301,1.0,1 +12801,8,0.0,1,1.7020573616027832,302,0.0,1 +12802,8,1.0,1,1.2770620584487915,303,1.0,1 +12803,8,1.0,1,1.3360620737075806,304,1.0,1 +12804,8,1.0,1,2.330064296722412,305,0.0,1 +12805,8,1.0,1,1.3760615587234497,306,0.0,1 +12806,8,0.0,1,1.707057237625122,307,1.0,1 +12807,8,0.0,1,1.5290595293045044,308,0.0,1 +12808,8,1.0,1,1.4960600137710571,309,1.0,1 +12809,8,1.0,1,1.6040586233139038,310,0.0,1 +12810,8,0.0,1,1.478060245513916,311,0.0,1 +12811,8,0.0,1,1.3970612287521362,312,1.0,1 +12812,8,0.0,1,1.4320608377456665,313,1.0,1 +12813,8,0.0,1,1.6080585718154907,314,0.0,1 +12814,8,0.0,1,1.1920619010925293,315,1.0,1 +12815,8,0.0,1,1.5180597305297852,316,1.0,1 +12816,8,0.0,1,1.2320619821548462,317,0.0,1 +12817,8,0.0,1,1.7720564603805542,318,0.0,1 +12818,8,1.0,1,1.9070546627044678,319,1.0,1 +12819,8,1.0,1,1.4170609712600708,320,1.0,1 +12820,8,1.0,1,1.530059576034546,321,1.0,1 +12821,8,1.0,1,1.8860549926757812,322,0.0,1 +12822,8,1.0,1,1.4460606575012207,323,1.0,1 +12823,8,1.0,1,2.1330552101135254,324,1.0,1 +12824,8,1.0,1,1.30606210231781,325,0.0,1 +12825,8,1.0,1,1.2710620164871216,326,1.0,1 +12826,8,1.0,1,1.3930612802505493,327,1.0,1 +12827,8,1.0,1,1.5860588550567627,328,1.0,1 +12828,8,1.0,1,1.3790614604949951,329,1.0,1 +12829,8,1.0,1,1.30606210231781,330,1.0,1 +12830,8,1.0,1,1.7680565118789673,331,1.0,1 +12831,8,1.0,1,1.2990621328353882,332,1.0,1 +12832,8,1.0,1,1.3170621395111084,333,1.0,1 +12833,8,1.0,1,1.338062047958374,334,1.0,1 +12834,8,0.0,1,1.4830601215362549,335,0.0,1 +12835,8,1.0,1,2.0610527992248535,336,1.0,1 +12836,8,1.0,1,1.4110610485076904,337,1.0,1 +12837,8,1.0,1,1.2360620498657227,338,1.0,1 +12838,8,1.0,1,1.3810614347457886,339,1.0,1 +12839,8,1.0,1,1.828055739402771,340,0.0,1 +12840,8,1.0,1,1.3730615377426147,341,1.0,1 +12841,8,1.0,1,1.3160622119903564,342,0.0,1 +12842,8,0.0,1,2.1100540161132812,343,1.0,1 +12843,8,0.0,1,1.684057593345642,344,0.0,1 +12844,8,1.0,1,1.475060224533081,345,1.0,1 +12845,8,1.0,1,1.4660604000091553,346,1.0,1 +12846,8,1.0,1,1.5380594730377197,347,1.0,1 +12847,8,1.0,1,1.6570580005645752,348,1.0,1 +12848,8,1.0,1,1.4700603485107422,349,1.0,1 +12849,8,1.0,1,1.4410606622695923,350,1.0,1 +12850,8,1.0,1,1.530059576034546,351,1.0,1 +12851,8,1.0,1,1.3580617904663086,352,1.0,1 +12852,8,1.0,1,1.4700603485107422,353,1.0,1 +12853,8,1.0,1,1.5180597305297852,354,1.0,1 +12854,8,1.0,1,1.5030598640441895,355,1.0,1 +12855,8,1.0,1,1.9000548124313354,356,1.0,1 +12856,8,1.0,1,2.0590527057647705,357,1.0,1 +12857,8,1.0,1,1.5720590353012085,358,1.0,1 +12858,8,1.0,1,1.4070611000061035,359,0.0,1 +12859,8,1.0,1,1.9480541944503784,360,0.0,1 +12860,8,0.0,1,1.711057186126709,361,0.0,1 +12861,8,0.0,1,1.4070611000061035,362,0.0,1 +12862,8,0.0,1,1.2930620908737183,363,0.0,1 +12863,8,1.0,1,1.5320595502853394,364,1.0,1 +12864,8,1.0,1,1.2570620775222778,365,1.0,1 +12865,8,1.0,1,1.2620620727539062,366,1.0,1 +12866,8,1.0,1,1.3140621185302734,367,0.0,1 +12867,8,1.0,1,1.8680552244186401,368,1.0,1 +12868,8,1.0,1,1.2470619678497314,369,1.0,1 +12869,8,1.0,1,1.357061743736267,370,1.0,1 +12870,8,1.0,1,1.2350620031356812,371,0.0,1 +12871,8,1.0,1,1.2850620746612549,372,1.0,1 +12872,8,1.0,1,1.5340595245361328,373,1.0,1 +12873,8,1.0,1,1.6160584688186646,374,0.0,1 +12874,8,0.0,1,1.824055790901184,375,1.0,1 +12875,8,0.0,1,1.2610620260238647,376,0.0,1 +12876,8,1.0,1,2.51507306098938,377,1.0,1 +12877,8,1.0,1,1.6430580615997314,378,1.0,1 +12878,8,1.0,1,1.8900549411773682,379,1.0,1 +12879,8,1.0,1,1.430060863494873,380,1.0,1 +12880,8,1.0,1,1.3990612030029297,381,1.0,1 +12881,8,1.0,1,1.7690565586090088,382,0.0,1 +12882,8,0.0,1,1.549059271812439,383,0.0,1 +12883,8,0.0,1,2.233059883117676,384,0.0,1 +12884,8,1.0,1,1.4280608892440796,385,1.0,1 +12885,8,1.0,1,1.5790588855743408,386,1.0,1 +12886,8,1.0,1,1.2960621118545532,387,0.0,1 +12887,8,1.0,1,1.9440542459487915,388,0.0,1 +12888,8,0.0,1,2.1160545349121094,389,0.0,1 +12889,8,0.0,1,1.220062017440796,390,0.0,1 +12890,8,1.0,1,2.2250595092773438,391,1.0,1 +12891,8,1.0,1,1.5400594472885132,392,0.0,1 +12892,8,0.0,1,2.1080541610717773,393,0.0,1 +12893,8,1.0,1,1.5630590915679932,394,1.0,1 +12894,8,1.0,1,1.4710602760314941,395,1.0,1 +12895,8,1.0,1,1.2130619287490845,396,1.0,1 +12896,8,1.0,1,1.2880620956420898,397,0.0,1 +12897,8,0.0,1,1.3910613059997559,398,0.0,1 +12898,8,1.0,1,1.3630616664886475,399,0.0,1 +12899,8,1.0,1,1.7480567693710327,400,0.0,1 +12900,8,0.0,1,1.3560618162155151,401,0.0,1 +12901,8,1.0,1,1.3280621767044067,402,1.0,1 +12902,8,0.0,1,1.2190619707107544,403,0.0,1 +12903,8,1.0,1,1.5630590915679932,404,1.0,1 +12904,8,0.0,1,1.7720564603805542,405,1.0,1 +12905,8,0.0,1,1.2610620260238647,406,1.0,1 +12906,8,0.0,1,1.7060573101043701,407,1.0,1 +12907,8,0.0,1,1.2980620861053467,408,0.0,1 +12908,8,1.0,1,1.4060611724853516,409,1.0,1 +12909,8,1.0,1,1.5210596323013306,410,1.0,1 +12910,8,1.0,1,1.5510592460632324,411,1.0,1 +12911,8,1.0,1,1.3500618934631348,412,1.0,1 +12912,8,0.0,1,1.334062099456787,413,0.0,1 +12913,8,1.0,1,1.7000573873519897,414,1.0,1 +12914,8,1.0,1,1.383061408996582,415,0.0,1 +12915,8,1.0,1,1.6420581340789795,416,1.0,1 +12916,8,1.0,1,1.2990621328353882,417,1.0,1 +12917,8,1.0,1,1.1950619220733643,418,1.0,1 +12918,8,1.0,1,1.5410593748092651,419,1.0,1 +12919,8,1.0,1,1.3770614862442017,420,1.0,1 +12920,8,1.0,1,1.4430606365203857,421,1.0,1 +12921,8,1.0,1,1.3730615377426147,422,1.0,1 +12922,8,1.0,1,1.3360620737075806,423,1.0,1 +12923,8,1.0,1,1.6830575466156006,424,1.0,1 +12924,8,1.0,1,1.6390581130981445,425,1.0,1 +12925,8,1.0,1,1.431060791015625,426,1.0,1 +12926,8,1.0,1,1.4380607604980469,427,0.0,1 +12927,8,0.0,1,1.6200584173202515,428,0.0,1 +12928,8,0.0,1,1.6810576915740967,429,0.0,1 +12929,8,1.0,1,1.614058494567871,430,1.0,1 +12930,8,1.0,1,1.7890563011169434,431,0.0,1 +12931,8,1.0,1,1.7330570220947266,432,0.0,1 +12932,8,0.0,1,1.2470619678497314,433,0.0,1 +12933,8,0.0,1,1.2860621213912964,434,0.0,1 +12934,8,0.0,1,1.5110597610473633,435,0.0,1 +12935,8,0.0,1,1.9650540351867676,436,0.0,1 +12936,8,1.0,1,1.7630565166473389,437,1.0,1 +12937,8,0.0,1,1.6750576496124268,438,1.0,1 +12938,8,1.0,1,1.665057897567749,439,1.0,1 +12939,8,1.0,1,1.9790537357330322,440,0.0,1 +12940,8,0.0,1,1.2640620470046997,441,0.0,1 +12941,8,1.0,1,1.5650590658187866,442,1.0,1 +12942,8,1.0,1,1.5860588550567627,443,0.0,1 +12943,8,1.0,1,1.4400607347488403,444,0.0,1 +12944,8,0.0,1,1.3710615634918213,445,0.0,1 +12945,8,0.0,1,1.6060585975646973,446,0.0,1 +12946,8,0.0,1,1.4260609149932861,447,1.0,1 +12947,8,0.0,1,1.361061692237854,448,0.0,1 +12948,8,1.0,1,1.4000612497329712,449,0.0,1 +12949,8,0.0,1,2.3560657501220703,450,0.0,1 +12950,8,0.0,1,1.2020618915557861,451,0.0,1 +12951,8,1.0,1,1.545059323310852,452,1.0,1 +12952,8,1.0,1,1.408061146736145,453,1.0,1 +12953,8,1.0,1,1.846055507659912,454,1.0,1 +12954,8,1.0,1,1.2490620613098145,455,0.0,1 +12955,8,1.0,1,1.661057949066162,456,1.0,1 +12956,8,1.0,1,1.430060863494873,457,0.0,1 +12957,8,0.0,1,1.7460567951202393,458,0.0,1 +12958,8,1.0,1,1.92005455493927,459,0.0,1 +12959,8,1.0,1,1.6970574855804443,460,1.0,1 +12960,8,0.0,1,1.5310595035552979,461,0.0,1 +12961,8,0.0,1,1.989053726196289,462,0.0,1 +12962,8,1.0,1,1.9040547609329224,463,1.0,1 +12963,8,1.0,1,1.2800620794296265,464,0.0,1 +12964,8,1.0,1,1.3500618934631348,465,1.0,1 +12965,8,1.0,1,1.3010621070861816,466,1.0,1 +12966,8,1.0,1,2.277061939239502,467,1.0,1 +12967,8,1.0,1,1.452060580253601,468,1.0,1 +12968,8,1.0,1,1.31206214427948,469,1.0,1 +12969,8,1.0,1,1.4060611724853516,470,1.0,1 +12970,8,1.0,1,1.5820589065551758,471,1.0,1 +12971,8,1.0,1,1.4620604515075684,472,0.0,1 +12972,8,1.0,1,1.5080598592758179,473,1.0,1 +12973,8,1.0,1,2.0710525512695312,474,1.0,1 +12974,8,1.0,1,1.5530592203140259,475,1.0,1 +12975,8,1.0,1,1.7220571041107178,476,1.0,1 +12976,8,1.0,1,1.5540592670440674,477,1.0,1 +12977,8,1.0,1,1.4650603532791138,478,1.0,1 +12978,8,1.0,1,1.6230583190917969,479,0.0,1 +12979,8,0.0,1,1.4640604257583618,480,0.0,1 +12980,8,1.0,1,1.7480567693710327,481,1.0,1 +12981,8,1.0,1,1.4850600957870483,482,0.0,1 +12982,8,1.0,1,2.0480527877807617,483,1.0,1 +12983,8,1.0,1,1.5110597610473633,484,1.0,1 +12984,8,1.0,1,1.7690565586090088,485,0.0,1 +12985,8,1.0,1,1.799056053161621,486,0.0,1 +12986,8,0.0,1,1.3210622072219849,487,0.0,1 +12987,8,0.0,1,1.248062014579773,488,0.0,1 +12988,8,1.0,1,2.1760573387145996,489,1.0,1 +12989,8,1.0,1,1.5310595035552979,490,0.0,1 +12990,8,1.0,1,1.6370582580566406,491,1.0,1 +12991,8,1.0,1,1.4440606832504272,492,1.0,1 +12992,8,1.0,1,1.3020621538162231,493,1.0,1 +12993,8,1.0,1,1.5980587005615234,494,0.0,1 +12994,8,0.0,1,1.4100611209869385,495,0.0,1 +12995,8,0.0,1,1.1870619058609009,496,1.0,1 +12996,8,0.0,1,1.3580617904663086,497,0.0,1 +12997,8,0.0,1,1.2770620584487915,498,0.0,1 +12998,8,1.0,1,1.281062126159668,499,0.0,1 +12999,8,0.0,1,1.3210622072219849,500,0.0,1 +13000,8,0.0,2,1.9670538902282715,1,0.0,1 +13001,8,1.0,2,2.098053455352783,2,0.0,1 +13002,8,1.0,2,1.361061692237854,3,1.0,1 +13003,8,0.0,2,1.7480567693710327,4,1.0,1 +13004,8,1.0,2,1.5580592155456543,5,1.0,1 +13005,8,1.0,2,1.4280608892440796,6,1.0,1 +13006,8,0.0,2,1.6530580520629883,7,1.0,1 +13007,8,0.0,2,1.94305419921875,8,1.0,1 +13008,8,0.0,2,1.4220609664916992,9,1.0,1 +13009,8,0.0,2,1.5210596323013306,10,0.0,1 +13010,8,1.0,2,1.5610591173171997,11,1.0,1 +13011,8,1.0,2,1.3920613527297974,12,1.0,1 +13012,8,1.0,2,1.6240583658218384,13,1.0,1 +13013,8,1.0,2,1.8930549621582031,14,1.0,1 +13014,8,1.0,2,1.4390606880187988,15,1.0,1 +13015,8,1.0,2,1.430060863494873,16,0.0,1 +13016,8,0.0,2,1.4380607604980469,17,1.0,1 +13017,8,0.0,2,1.6460580825805664,18,0.0,1 +13018,8,1.0,2,2.1450557708740234,19,0.0,1 +13019,8,0.0,2,1.5660591125488281,20,0.0,1 +13020,8,0.0,2,1.4190609455108643,21,0.0,1 +13021,8,0.0,2,2.2270596027374268,22,0.0,1 +13022,8,1.0,2,1.4730602502822876,23,1.0,1 +13023,8,1.0,2,1.56705904006958,24,0.0,1 +13024,8,1.0,2,2.326064109802246,25,1.0,1 +13025,8,1.0,2,1.5100598335266113,26,1.0,1 +13026,8,1.0,2,1.5360594987869263,27,0.0,1 +13027,8,0.0,2,1.2770620584487915,28,1.0,1 +13028,8,0.0,2,1.522059679031372,29,1.0,1 +13029,8,0.0,2,1.3240621089935303,30,0.0,1 +13030,8,0.0,2,1.4550604820251465,31,1.0,1 +13031,8,0.0,2,1.2470619678497314,32,1.0,1 +13032,8,0.0,2,1.4000612497329712,33,0.0,1 +13033,8,0.0,2,1.3760615587234497,34,0.0,1 +13034,8,1.0,2,1.6560579538345337,35,1.0,1 +13035,8,1.0,2,1.9780538082122803,36,1.0,1 +13036,8,1.0,2,1.3290621042251587,37,0.0,1 +13037,8,0.0,2,1.4660604000091553,38,0.0,1 +13038,8,0.0,2,1.3770614862442017,39,0.0,1 +13039,8,0.0,2,1.9170546531677246,40,1.0,1 +13040,8,0.0,2,1.1970618963241577,41,0.0,1 +13041,8,0.0,2,2.1310551166534424,42,0.0,1 +13042,8,1.0,2,1.56705904006958,43,1.0,1 +13043,8,1.0,2,1.7660565376281738,44,1.0,1 +13044,8,1.0,2,1.3130621910095215,45,1.0,1 +13045,8,1.0,2,1.7310569286346436,46,0.0,1 +13046,8,1.0,2,1.5170596837997437,47,1.0,1 +13047,8,1.0,2,1.4670603275299072,48,1.0,1 +13048,8,1.0,2,1.361061692237854,49,1.0,1 +13049,8,1.0,2,1.4260609149932861,50,0.0,1 +13050,8,0.0,2,1.7860562801361084,51,1.0,1 +13051,8,0.0,2,1.5280596017837524,52,0.0,1 +13052,8,1.0,2,1.8150558471679688,53,0.0,1 +13053,8,0.0,2,2.075052499771118,54,1.0,1 +13054,8,0.0,2,1.3170621395111084,55,1.0,1 +13055,8,0.0,2,1.275062084197998,56,0.0,1 +13056,8,0.0,2,1.475060224533081,57,0.0,1 +13057,8,0.0,2,1.2610620260238647,58,0.0,1 +13058,8,1.0,2,1.7780563831329346,59,1.0,1 +13059,8,1.0,2,1.715057134628296,60,0.0,1 +13060,8,1.0,2,1.478060245513916,61,0.0,1 +13061,8,1.0,2,1.4900600910186768,62,0.0,1 +13062,8,1.0,2,1.659057855606079,63,0.0,1 +13063,8,1.0,2,1.3700616359710693,64,0.0,1 +13064,8,0.0,2,1.6810576915740967,65,0.0,1 +13065,8,1.0,2,1.6540579795837402,66,0.0,1 +13066,8,0.0,2,1.4220609664916992,67,1.0,1 +13067,8,0.0,2,1.4670603275299072,68,0.0,1 +13068,8,0.0,2,1.2880620956420898,69,1.0,1 +13069,8,0.0,2,1.3240621089935303,70,1.0,1 +13070,8,0.0,2,1.2190619707107544,71,0.0,1 +13071,8,1.0,2,1.4650603532791138,72,0.0,1 +13072,8,1.0,2,2.484071731567383,73,0.0,1 +13073,8,1.0,2,1.8480554819107056,74,1.0,1 +13074,8,1.0,2,1.7600566148757935,75,0.0,1 +13075,8,1.0,2,1.2980620861053467,76,0.0,1 +13076,8,0.0,2,1.2680621147155762,77,0.0,1 +13077,8,0.0,2,1.430060863494873,78,1.0,1 +13078,8,0.0,2,1.3300621509552002,79,0.0,1 +13079,8,0.0,2,1.2330620288848877,80,0.0,1 +13080,8,1.0,2,1.946054220199585,81,0.0,1 +13081,8,0.0,2,1.174061894416809,82,0.0,1 +13082,8,0.0,2,2.1740570068359375,83,0.0,1 +13083,8,0.0,2,1.3700616359710693,84,1.0,1 +13084,8,0.0,2,1.3310620784759521,85,0.0,1 +13085,8,0.0,2,1.1610618829727173,86,0.0,1 +13086,8,1.0,2,1.6120585203170776,87,1.0,1 +13087,8,1.0,2,1.3740615844726562,88,1.0,1 +13088,8,1.0,2,1.6640578508377075,89,1.0,1 +13089,8,1.0,2,1.3890613317489624,90,1.0,1 +13090,8,1.0,2,1.3770614862442017,91,0.0,1 +13091,8,0.0,2,1.523059606552124,92,0.0,1 +13092,8,1.0,2,2.1800575256347656,93,0.0,1 +13093,8,1.0,2,1.6740577220916748,94,0.0,1 +13094,8,1.0,2,1.365061640739441,95,0.0,1 +13095,8,1.0,2,1.592058777809143,96,0.0,1 +13096,8,1.0,2,1.474060297012329,97,0.0,1 +13097,8,1.0,2,1.6060585975646973,98,1.0,1 +13098,8,1.0,2,1.614058494567871,99,0.0,1 +13099,8,1.0,2,2.0230531692504883,100,1.0,1 +13100,8,1.0,2,1.4430606365203857,101,1.0,1 +13101,8,1.0,2,1.5130597352981567,102,0.0,1 +13102,8,0.0,2,1.3490618467330933,103,0.0,1 +13103,8,0.0,2,1.667057752609253,104,0.0,1 +13104,8,0.0,2,1.5790588855743408,105,0.0,1 +13105,8,0.0,2,1.8780550956726074,106,0.0,1 +13106,8,0.0,2,1.9730539321899414,107,1.0,1 +13107,8,0.0,2,1.2660620212554932,108,1.0,1 +13108,8,0.0,2,1.941054344177246,109,0.0,1 +13109,8,0.0,2,1.7480567693710327,110,0.0,1 +13110,8,0.0,2,2.3490653038024902,111,0.0,1 +13111,8,1.0,2,1.2340619564056396,112,0.0,1 +13112,8,1.0,2,2.2380599975585938,113,1.0,1 +13113,8,1.0,2,1.4250608682632446,114,1.0,1 +13114,8,1.0,2,1.6260583400726318,115,1.0,1 +13115,8,1.0,2,1.6310582160949707,116,1.0,1 +13116,8,1.0,2,1.2250620126724243,117,1.0,1 +13117,8,1.0,2,1.1940618753433228,118,1.0,1 +13118,8,1.0,2,1.3320621252059937,119,1.0,1 +13119,8,1.0,2,1.9880536794662476,120,0.0,1 +13120,8,0.0,2,1.6080585718154907,121,0.0,1 +13121,8,1.0,2,1.5550591945648193,122,1.0,1 +13122,8,1.0,2,1.4720603227615356,123,0.0,1 +13123,8,1.0,2,1.3790614604949951,124,0.0,1 +13124,8,0.0,2,1.1930619478225708,125,1.0,1 +13125,8,0.0,2,1.1570618152618408,126,0.0,1 +13126,8,0.0,2,2.334064483642578,127,0.0,1 +13127,8,0.0,2,2.3840670585632324,128,1.0,1 +13128,8,0.0,2,1.6930575370788574,129,0.0,1 +13129,8,0.0,2,1.670057773590088,130,0.0,1 +13130,8,1.0,2,2.511072874069214,131,1.0,1 +13131,8,1.0,2,1.3770614862442017,132,0.0,1 +13132,8,0.0,2,1.3140621185302734,133,1.0,1 +13133,8,0.0,2,1.6550579071044922,134,0.0,1 +13134,8,0.0,2,1.5880588293075562,135,1.0,1 +13135,8,0.0,2,1.479060173034668,136,1.0,1 +13136,8,0.0,2,1.4710602760314941,137,0.0,1 +13137,8,0.0,2,1.4110610485076904,138,0.0,1 +13138,8,0.0,2,2.098053455352783,139,0.0,1 +13139,8,1.0,2,1.3950612545013428,140,1.0,1 +13140,8,1.0,2,1.217061996459961,141,0.0,1 +13141,8,0.0,2,1.27606201171875,142,0.0,1 +13142,8,1.0,2,1.4880601167678833,143,1.0,1 +13143,8,1.0,2,1.8590552806854248,144,1.0,1 +13144,8,1.0,2,1.4640604257583618,145,0.0,1 +13145,8,1.0,2,1.4610604047775269,146,1.0,1 +13146,8,1.0,2,1.618058443069458,147,1.0,1 +13147,8,1.0,2,1.3290621042251587,148,0.0,1 +13148,8,0.0,2,1.3740615844726562,149,0.0,1 +13149,8,0.0,2,1.8040560483932495,150,1.0,1 +13150,8,0.0,2,1.6940574645996094,151,0.0,1 +13151,8,1.0,2,1.9790537357330322,152,1.0,1 +13152,8,1.0,2,2.1900577545166016,153,1.0,1 +13153,8,0.0,2,1.7030572891235352,154,0.0,1 +13154,8,1.0,2,1.1910618543624878,155,1.0,1 +13155,8,1.0,2,1.9510540962219238,156,0.0,1 +13156,8,1.0,2,1.9350543022155762,157,1.0,1 +13157,8,0.0,2,1.894054889678955,158,0.0,1 +13158,8,1.0,2,1.6370582580566406,159,0.0,1 +13159,8,0.0,2,1.6960574388504028,160,0.0,1 +13160,8,1.0,2,1.4610604047775269,161,1.0,1 +13161,8,0.0,2,1.5170596837997437,162,0.0,1 +13162,8,1.0,2,1.5840588808059692,163,1.0,1 +13163,8,0.0,2,1.4000612497329712,164,0.0,1 +13164,8,1.0,2,1.9000548124313354,165,0.0,1 +13165,8,0.0,2,1.4150609970092773,166,0.0,1 +13166,8,0.0,2,1.2930620908737183,167,1.0,1 +13167,8,0.0,2,1.2310619354248047,168,0.0,1 +13168,8,1.0,2,1.549059271812439,169,1.0,1 +13169,8,0.0,2,1.5090597867965698,170,0.0,1 +13170,8,1.0,2,1.6640578508377075,171,1.0,1 +13171,8,1.0,2,1.3770614862442017,172,0.0,1 +13172,8,1.0,2,1.4420607089996338,173,1.0,1 +13173,8,1.0,2,1.383061408996582,174,0.0,1 +13174,8,0.0,2,1.5330594778060913,175,0.0,1 +13175,8,1.0,2,1.4640604257583618,176,1.0,1 +13176,8,1.0,2,1.9330544471740723,177,0.0,1 +13177,8,1.0,2,1.7750563621520996,178,0.0,1 +13178,8,0.0,2,1.9530541896820068,179,1.0,1 +13179,8,0.0,2,2.0700526237487793,180,0.0,1 +13180,8,1.0,2,1.640058159828186,181,0.0,1 +13181,8,0.0,2,1.614058494567871,182,1.0,1 +13182,8,0.0,2,1.2560620307922363,183,1.0,1 +13183,8,0.0,2,1.3980612754821777,184,1.0,1 +13184,8,0.0,2,1.6890575885772705,185,1.0,1 +13185,8,0.0,2,1.3920613527297974,186,1.0,1 +13186,8,0.0,2,1.248062014579773,187,1.0,1 +13187,8,0.0,2,1.427060842514038,188,1.0,1 +13188,8,0.0,2,1.667057752609253,189,1.0,1 +13189,8,0.0,2,1.2470619678497314,190,1.0,1 +13190,8,0.0,2,1.61905837059021,191,0.0,1 +13191,8,0.0,2,1.94905424118042,192,1.0,1 +13192,8,0.0,2,1.2770620584487915,193,0.0,1 +13193,8,0.0,2,1.4030611515045166,194,0.0,1 +13194,8,0.0,2,1.8520554304122925,195,1.0,1 +13195,8,0.0,2,1.5560592412948608,196,0.0,1 +13196,8,0.0,2,1.2010619640350342,197,0.0,1 +13197,8,0.0,2,1.4610604047775269,198,0.0,1 +13198,8,0.0,2,2.0210533142089844,199,0.0,1 +13199,8,0.0,2,1.6750576496124268,200,0.0,1 +13200,8,1.0,2,1.4880601167678833,201,1.0,1 +13201,8,1.0,2,1.2940621376037598,202,0.0,1 +13202,8,1.0,2,1.6230583190917969,203,1.0,1 +13203,8,1.0,2,1.7000573873519897,204,1.0,1 +13204,8,1.0,2,2.3400650024414062,205,0.0,1 +13205,8,1.0,2,1.3760615587234497,206,1.0,1 +13206,8,1.0,2,1.5420594215393066,207,1.0,1 +13207,8,1.0,2,1.334062099456787,208,0.0,1 +13208,8,0.0,2,1.309062123298645,209,1.0,1 +13209,8,0.0,2,1.4220609664916992,210,0.0,1 +13210,8,0.0,2,1.4160610437393188,211,0.0,1 +13211,8,0.0,2,1.3960613012313843,212,1.0,1 +13212,8,0.0,2,1.6540579795837402,213,1.0,1 +13213,8,0.0,2,1.7970561981201172,214,1.0,1 +13214,8,0.0,2,1.6460580825805664,215,1.0,1 +13215,8,0.0,2,1.61905837059021,216,0.0,1 +13216,8,1.0,2,1.6040586233139038,217,0.0,1 +13217,8,0.0,2,1.2310619354248047,218,1.0,1 +13218,8,0.0,2,1.2330620288848877,219,0.0,1 +13219,8,1.0,2,1.3960613012313843,220,0.0,1 +13220,8,0.0,2,1.3240621089935303,221,1.0,1 +13221,8,0.0,2,1.3550617694854736,222,0.0,1 +13222,8,0.0,2,1.3800615072250366,223,1.0,1 +13223,8,0.0,2,1.7000573873519897,224,0.0,1 +13224,8,0.0,2,2.259061098098755,225,0.0,1 +13225,8,1.0,2,1.7920562028884888,226,0.0,1 +13226,8,0.0,2,1.5410593748092651,227,0.0,1 +13227,8,0.0,2,2.820087432861328,228,1.0,1 +13228,8,0.0,2,1.3470618724822998,229,0.0,1 +13229,8,1.0,2,1.4880601167678833,230,1.0,1 +13230,8,0.0,2,1.7520567178726196,231,1.0,1 +13231,8,0.0,2,2.278061866760254,232,1.0,1 +13232,8,0.0,2,2.1310551166534424,233,0.0,1 +13233,8,1.0,2,1.5860588550567627,234,1.0,1 +13234,8,1.0,2,1.9370543956756592,235,1.0,1 +13235,8,0.0,2,1.6550579071044922,236,0.0,1 +13236,8,1.0,2,1.4870600700378418,237,1.0,1 +13237,8,1.0,2,1.2940621376037598,238,0.0,1 +13238,8,1.0,2,1.5530592203140259,239,1.0,1 +13239,8,1.0,2,1.894054889678955,240,1.0,1 +13240,8,1.0,2,1.8920549154281616,241,0.0,1 +13241,8,0.0,2,2.3610658645629883,242,0.0,1 +13242,8,1.0,2,1.220062017440796,243,0.0,1 +13243,8,1.0,2,1.8260557651519775,244,0.0,1 +13244,8,0.0,2,1.5540592670440674,245,1.0,1 +13245,8,0.0,2,1.4870600700378418,246,1.0,1 +13246,8,0.0,2,1.3410619497299194,247,1.0,1 +13247,8,0.0,2,1.3110620975494385,248,0.0,1 +13248,8,0.0,2,1.7850563526153564,249,0.0,1 +13249,8,1.0,2,1.7860562801361084,250,1.0,1 +13250,8,1.0,2,1.5340595245361328,251,0.0,1 +13251,8,1.0,2,1.8290557861328125,252,1.0,1 +13252,8,1.0,2,1.8150558471679688,253,1.0,1 +13253,8,1.0,2,1.1880619525909424,254,1.0,1 +13254,8,1.0,2,1.640058159828186,255,1.0,1 +13255,8,1.0,2,1.5060598850250244,256,1.0,1 +13256,8,1.0,2,1.6060585975646973,257,0.0,1 +13257,8,0.0,2,1.452060580253601,258,0.0,1 +13258,8,1.0,2,2.2130589485168457,259,1.0,1 +13259,8,1.0,2,1.4640604257583618,260,0.0,1 +13260,8,0.0,2,1.5020599365234375,261,1.0,1 +13261,8,0.0,2,1.6250584125518799,262,1.0,1 +13262,8,0.0,2,1.1430617570877075,263,1.0,1 +13263,8,0.0,2,1.4030611515045166,264,0.0,1 +13264,8,0.0,2,1.5800589323043823,265,0.0,1 +13265,8,1.0,2,1.5590591430664062,266,1.0,1 +13266,8,1.0,2,1.828055739402771,267,0.0,1 +13267,8,1.0,2,1.3100621700286865,268,1.0,1 +13268,8,1.0,2,1.6490581035614014,269,1.0,1 +13269,8,1.0,2,1.335062026977539,270,0.0,1 +13270,8,1.0,2,1.5280596017837524,271,1.0,1 +13271,8,1.0,2,1.4890600442886353,272,1.0,1 +13272,8,1.0,2,1.452060580253601,273,1.0,1 +13273,8,1.0,2,1.6360582113265991,274,1.0,1 +13274,8,1.0,2,1.9230544567108154,275,1.0,1 +13275,8,1.0,2,1.3400620222091675,276,1.0,1 +13276,8,1.0,2,1.6470580101013184,277,1.0,1 +13277,8,1.0,2,1.3960613012313843,278,0.0,1 +13278,8,1.0,2,2.1190545558929443,279,1.0,1 +13279,8,1.0,2,1.4720603227615356,280,0.0,1 +13280,8,1.0,2,1.7310569286346436,281,0.0,1 +13281,8,0.0,2,1.3010621070861816,282,0.0,1 +13282,8,0.0,2,1.501059889793396,283,1.0,1 +13283,8,0.0,2,1.284062147140503,284,1.0,1 +13284,8,0.0,2,1.215061902999878,285,1.0,1 +13285,8,0.0,2,1.2370619773864746,286,0.0,1 +13286,8,0.0,2,1.4960600137710571,287,1.0,1 +13287,8,0.0,2,1.220062017440796,288,0.0,1 +13288,8,1.0,2,1.2830621004104614,289,1.0,1 +13289,8,1.0,2,1.8390555381774902,290,1.0,1 +13290,8,1.0,2,1.5810589790344238,291,0.0,1 +13291,8,1.0,2,1.644058108329773,292,1.0,1 +13292,8,1.0,2,2.1050539016723633,293,0.0,1 +13293,8,1.0,2,1.8610553741455078,294,0.0,1 +13294,8,0.0,2,2.2890625,295,0.0,1 +13295,8,0.0,2,1.5400594472885132,296,0.0,1 +13296,8,0.0,2,1.2900620698928833,297,1.0,1 +13297,8,0.0,2,1.2350620031356812,298,1.0,1 +13298,8,0.0,2,1.1550618410110474,299,1.0,1 +13299,8,0.0,2,1.2730621099472046,300,1.0,1 +13300,8,0.0,2,1.3080620765686035,301,0.0,1 +13301,8,1.0,2,1.622058391571045,302,1.0,1 +13302,8,0.0,2,2.324064254760742,303,0.0,1 +13303,8,1.0,2,1.4960600137710571,304,1.0,1 +13304,8,1.0,2,1.4510605335235596,305,0.0,1 +13305,8,0.0,2,1.5950586795806885,306,0.0,1 +13306,8,0.0,2,1.5800589323043823,307,1.0,1 +13307,8,0.0,2,1.2850620746612549,308,0.0,1 +13308,8,1.0,2,1.854055404663086,309,1.0,1 +13309,8,1.0,2,1.3910613059997559,310,0.0,1 +13310,8,1.0,2,1.2870620489120483,311,0.0,1 +13311,8,0.0,2,1.6680577993392944,312,0.0,1 +13312,8,1.0,2,1.4280608892440796,313,1.0,1 +13313,8,1.0,2,1.5160597562789917,314,1.0,1 +13314,8,1.0,2,1.6030585765838623,315,1.0,1 +13315,8,1.0,2,1.3080620765686035,316,1.0,1 +13316,8,1.0,2,1.3290621042251587,317,0.0,1 +13317,8,0.0,2,1.4330607652664185,318,1.0,1 +13318,8,0.0,2,1.3760615587234497,319,1.0,1 +13319,8,0.0,2,1.1680618524551392,320,0.0,1 +13320,8,1.0,2,1.386061429977417,321,1.0,1 +13321,8,1.0,2,1.6470580101013184,322,0.0,1 +13322,8,1.0,2,1.6200584173202515,323,0.0,1 +13323,8,0.0,2,1.3960613012313843,324,0.0,1 +13324,8,1.0,2,1.3260622024536133,325,1.0,1 +13325,8,1.0,2,1.7750563621520996,326,0.0,1 +13326,8,1.0,2,1.9210546016693115,327,0.0,1 +13327,8,1.0,2,2.1610565185546875,328,1.0,1 +13328,8,1.0,2,1.6540579795837402,329,1.0,1 +13329,8,1.0,2,1.3660616874694824,330,1.0,1 +13330,8,1.0,2,1.6280583143234253,331,0.0,1 +13331,8,0.0,2,1.4680603742599487,332,1.0,1 +13332,8,0.0,2,1.386061429977417,333,1.0,1 +13333,8,0.0,2,1.3750615119934082,334,1.0,1 +13334,8,0.0,2,1.453060507774353,335,1.0,1 +13335,8,0.0,2,1.2130619287490845,336,0.0,1 +13336,8,0.0,2,1.475060224533081,337,0.0,1 +13337,8,0.0,2,1.4890600442886353,338,0.0,1 +13338,8,1.0,2,1.452060580253601,339,0.0,1 +13339,8,0.0,2,1.7480567693710327,340,1.0,1 +13340,8,0.0,2,1.4320608377456665,341,1.0,1 +13341,8,0.0,2,1.2980620861053467,342,0.0,1 +13342,8,0.0,2,1.1950619220733643,343,0.0,1 +13343,8,0.0,2,1.5760589838027954,344,1.0,1 +13344,8,0.0,2,1.6420581340789795,345,1.0,1 +13345,8,0.0,2,1.5250595808029175,346,0.0,1 +13346,8,0.0,2,1.342061996459961,347,0.0,1 +13347,8,0.0,2,1.6050586700439453,348,0.0,1 +13348,8,1.0,2,1.9980535507202148,349,0.0,1 +13349,8,0.0,2,1.2800620794296265,350,0.0,1 +13350,8,1.0,2,1.3590617179870605,351,0.0,1 +13351,8,1.0,2,1.3750615119934082,352,1.0,1 +13352,8,1.0,2,1.404061198234558,353,0.0,1 +13353,8,0.0,2,1.7890563011169434,354,1.0,1 +13354,8,0.0,2,1.4260609149932861,355,1.0,1 +13355,8,0.0,2,1.2270619869232178,356,0.0,1 +13356,8,1.0,2,2.4150683879852295,357,1.0,1 +13357,8,1.0,2,1.7190570831298828,358,0.0,1 +13358,8,1.0,2,2.0200533866882324,359,0.0,1 +13359,8,1.0,2,1.9510540962219238,360,1.0,1 +13360,8,0.0,2,1.4900600910186768,361,0.0,1 +13361,8,1.0,2,1.4620604515075684,362,0.0,1 +13362,8,0.0,2,1.4900600910186768,363,1.0,1 +13363,8,0.0,2,1.1850619316101074,364,1.0,1 +13364,8,0.0,2,1.6680577993392944,365,0.0,1 +13365,8,1.0,2,1.6740577220916748,366,0.0,1 +13366,8,0.0,2,1.709057331085205,367,0.0,1 +13367,8,1.0,2,1.1930619478225708,368,1.0,1 +13368,8,1.0,2,1.2700620889663696,369,0.0,1 +13369,8,0.0,2,2.4940719604492188,370,1.0,1 +13370,8,0.0,2,1.184061884880066,371,1.0,1 +13371,8,0.0,2,1.7820563316345215,372,1.0,1 +13372,8,1.0,2,1.245061993598938,373,1.0,1 +13373,8,0.0,2,1.6160584688186646,374,1.0,1 +13374,8,1.0,2,2.1390554904937744,375,1.0,1 +13375,8,1.0,2,1.8370556831359863,376,1.0,1 +13376,8,0.0,2,1.1570618152618408,377,1.0,1 +13377,8,1.0,2,2.284062385559082,378,0.0,1 +13378,8,0.0,2,1.4920600652694702,379,1.0,1 +13379,8,0.0,2,1.2930620908737183,380,0.0,1 +13380,8,0.0,2,1.3720616102218628,381,0.0,1 +13381,8,1.0,2,1.4450606107711792,382,1.0,1 +13382,8,1.0,2,1.2770620584487915,383,1.0,1 +13383,8,1.0,2,1.3520618677139282,384,0.0,1 +13384,8,0.0,2,1.242061972618103,385,1.0,1 +13385,8,0.0,2,1.1830618381500244,386,1.0,1 +13386,8,0.0,2,1.4510605335235596,387,0.0,1 +13387,8,0.0,2,2.270061492919922,388,0.0,1 +13388,8,0.0,2,2.2150590419769287,389,1.0,1 +13389,8,0.0,2,1.2610620260238647,390,0.0,1 +13390,8,0.0,2,1.3510618209838867,391,1.0,1 +13391,8,0.0,2,1.5640591382980347,392,0.0,1 +13392,8,1.0,2,1.3960613012313843,393,0.0,1 +13393,8,0.0,2,1.715057134628296,394,1.0,1 +13394,8,0.0,2,1.3680616617202759,395,1.0,1 +13395,8,0.0,2,1.245061993598938,396,1.0,1 +13396,8,0.0,2,1.3190621137619019,397,1.0,1 +13397,8,0.0,2,1.2060619592666626,398,1.0,1 +13398,8,0.0,2,1.1920619010925293,399,0.0,1 +13399,8,1.0,2,1.519059658050537,400,1.0,1 +13400,8,1.0,2,1.2630620002746582,401,1.0,1 +13401,8,1.0,2,1.600058674812317,402,0.0,1 +13402,8,0.0,2,1.2440619468688965,403,1.0,1 +13403,8,0.0,2,1.3990612030029297,404,0.0,1 +13404,8,1.0,2,1.357061743736267,405,1.0,1 +13405,8,1.0,2,1.7180571556091309,406,0.0,1 +13406,8,1.0,2,2.0070533752441406,407,0.0,1 +13407,8,1.0,2,1.6310582160949707,408,0.0,1 +13408,8,0.0,2,1.6420581340789795,409,1.0,1 +13409,8,1.0,2,1.5760589838027954,410,0.0,1 +13410,8,0.0,2,1.3190621137619019,411,1.0,1 +13411,8,0.0,2,1.2320619821548462,412,1.0,1 +13412,8,0.0,2,1.3710615634918213,413,1.0,1 +13413,8,0.0,2,1.2360620498657227,414,0.0,1 +13414,8,0.0,2,1.4960600137710571,415,1.0,1 +13415,8,0.0,2,1.519059658050537,416,1.0,1 +13416,8,0.0,2,1.4000612497329712,417,1.0,1 +13417,8,0.0,2,1.1710618734359741,418,1.0,1 +13418,8,0.0,2,1.212061882019043,419,0.0,1 +13419,8,1.0,2,1.9280544519424438,420,1.0,1 +13420,8,1.0,2,1.3510618209838867,421,1.0,1 +13421,8,1.0,2,1.5500593185424805,422,0.0,1 +13422,8,1.0,2,1.9630539417266846,423,0.0,1 +13423,8,0.0,2,1.4410606622695923,424,0.0,1 +13424,8,0.0,2,1.3660616874694824,425,0.0,1 +13425,8,1.0,2,2.0560526847839355,426,1.0,1 +13426,8,1.0,2,1.3310620784759521,427,0.0,1 +13427,8,0.0,2,1.3920613527297974,428,1.0,1 +13428,8,0.0,2,1.501059889793396,429,1.0,1 +13429,8,0.0,2,1.4860601425170898,430,0.0,1 +13430,8,0.0,2,1.7850563526153564,431,1.0,1 +13431,8,1.0,2,1.3520618677139282,432,0.0,1 +13432,8,0.0,2,1.3230621814727783,433,1.0,1 +13433,8,0.0,2,1.4770601987838745,434,0.0,1 +13434,8,0.0,2,1.8000560998916626,435,1.0,1 +13435,8,0.0,2,1.3910613059997559,436,1.0,1 +13436,8,0.0,2,1.2070618867874146,437,0.0,1 +13437,8,1.0,2,1.7600566148757935,438,1.0,1 +13438,8,0.0,2,1.2670620679855347,439,0.0,1 +13439,8,1.0,2,1.548059344291687,440,1.0,1 +13440,8,1.0,2,1.4360607862472534,441,1.0,1 +13441,8,1.0,2,1.8220558166503906,442,0.0,1 +13442,8,1.0,2,1.5840588808059692,443,0.0,1 +13443,8,1.0,2,2.4140682220458984,444,0.0,1 +13444,8,1.0,2,1.6720577478408813,445,0.0,1 +13445,8,0.0,2,1.8230557441711426,446,1.0,1 +13446,8,0.0,2,1.3170621395111084,447,1.0,1 +13447,8,0.0,2,1.2490620613098145,448,0.0,1 +13448,8,0.0,2,1.3470618724822998,449,1.0,1 +13449,8,0.0,2,1.2930620908737183,450,0.0,1 +13450,8,1.0,2,2.2230594158172607,451,1.0,1 +13451,8,0.0,2,1.8600553274154663,452,1.0,1 +13452,8,0.0,2,2.2380599975585938,453,0.0,1 +13453,8,0.0,2,2.3510653972625732,454,0.0,1 +13454,8,1.0,2,1.5850589275360107,455,0.0,1 +13455,8,0.0,2,1.4920600652694702,456,1.0,1 +13456,8,0.0,2,1.4430606365203857,457,0.0,1 +13457,8,0.0,2,1.530059576034546,458,0.0,1 +13458,8,1.0,2,1.4110610485076904,459,1.0,1 +13459,8,0.0,2,1.218061923980713,460,1.0,1 +13460,8,0.0,2,1.8810551166534424,461,0.0,1 +13461,8,1.0,2,1.2220619916915894,462,1.0,1 +13462,8,0.0,2,1.4810601472854614,463,1.0,1 +13463,8,0.0,2,1.4690603017807007,464,1.0,1 +13464,8,0.0,2,1.5580592155456543,465,0.0,1 +13465,8,0.0,2,1.2770620584487915,466,1.0,1 +13466,8,1.0,2,2.4170684814453125,467,0.0,1 +13467,8,0.0,2,1.2670620679855347,468,1.0,1 +13468,8,0.0,2,1.2500619888305664,469,0.0,1 +13469,8,1.0,2,1.1960618495941162,470,1.0,1 +13470,8,0.0,2,1.2990621328353882,471,1.0,1 +13471,8,1.0,2,2.076052665710449,472,1.0,1 +13472,8,1.0,2,1.2610620260238647,473,0.0,1 +13473,8,0.0,2,1.4930599927902222,474,0.0,1 +13474,8,0.0,2,1.7650566101074219,475,0.0,1 +13475,8,0.0,2,2.4740710258483887,476,1.0,1 +13476,8,0.0,2,1.4220609664916992,477,0.0,1 +13477,8,1.0,2,1.4690603017807007,478,1.0,1 +13478,8,1.0,2,1.4490605592727661,479,0.0,1 +13479,8,1.0,2,1.5560592412948608,480,0.0,1 +13480,8,0.0,2,1.5240596532821655,481,1.0,1 +13481,8,0.0,2,1.2550619840621948,482,0.0,1 +13482,8,0.0,2,1.2600619792938232,483,1.0,1 +13483,8,0.0,2,1.4870600700378418,484,1.0,1 +13484,8,0.0,2,1.1710618734359741,485,1.0,1 +13485,8,0.0,2,1.4900600910186768,486,1.0,1 +13486,8,0.0,2,1.1730618476867676,487,0.0,1 +13487,8,1.0,2,1.6050586700439453,488,0.0,1 +13488,8,0.0,2,1.4280608892440796,489,0.0,1 +13489,8,0.0,2,1.5360594987869263,490,1.0,1 +13490,8,0.0,2,1.2380620241165161,491,1.0,1 +13491,8,0.0,2,1.4280608892440796,492,0.0,1 +13492,8,0.0,2,1.3910613059997559,493,1.0,1 +13493,8,0.0,2,1.61905837059021,494,0.0,1 +13494,8,1.0,2,1.5100598335266113,495,1.0,1 +13495,8,1.0,2,1.7650566101074219,496,1.0,1 +13496,8,1.0,2,1.5030598640441895,497,1.0,1 +13497,8,1.0,2,1.7080572843551636,498,1.0,1 +13498,8,0.0,2,1.8170559406280518,499,0.0,1 +13499,8,1.0,2,1.4140610694885254,500,0.0,1 +13500,9,1.0,0,1.563028335571289,1,1.0,1 +13501,9,1.0,0,1.7290260791778564,2,1.0,1 +13502,9,1.0,0,1.2720317840576172,3,1.0,1 +13503,9,1.0,0,1.3430310487747192,4,1.0,1 +13504,9,1.0,0,1.443029761314392,5,1.0,1 +13505,9,1.0,0,1.2730318307876587,6,1.0,1 +13506,9,1.0,0,1.542028546333313,7,1.0,1 +13507,9,1.0,0,2.564046859741211,8,1.0,1 +13508,9,1.0,0,1.3410310745239258,9,1.0,1 +13509,9,1.0,0,1.613027572631836,10,1.0,1 +13510,9,0.0,0,1.5230287313461304,11,1.0,1 +13511,9,1.0,0,1.8350248336791992,12,1.0,1 +13512,9,0.0,0,1.3570308685302734,13,1.0,1 +13513,9,1.0,0,1.7020264863967896,14,1.0,1 +13514,9,0.0,0,1.613027572631836,15,0.0,1 +13515,9,1.0,0,1.4630295038223267,16,1.0,1 +13516,9,1.0,0,1.5570282936096191,17,0.0,1 +13517,9,1.0,0,1.609027624130249,18,1.0,1 +13518,9,1.0,0,1.3610308170318604,19,1.0,1 +13519,9,1.0,0,1.6200275421142578,20,0.0,1 +13520,9,0.0,0,1.306031584739685,21,0.0,1 +13521,9,0.0,0,1.5720281600952148,22,0.0,1 +13522,9,1.0,0,1.6990265846252441,23,1.0,1 +13523,9,1.0,0,1.2610317468643188,24,1.0,1 +13524,9,1.0,0,1.289031744003296,25,1.0,1 +13525,9,1.0,0,1.0880314111709595,26,1.0,1 +13526,9,1.0,0,1.4920291900634766,27,1.0,1 +13527,9,1.0,0,1.421030044555664,28,1.0,1 +13528,9,1.0,0,1.2220317125320435,29,1.0,1 +13529,9,1.0,0,1.7360260486602783,30,1.0,1 +13530,9,1.0,0,1.3020316362380981,31,1.0,1 +13531,9,1.0,0,1.4300299882888794,32,0.0,1 +13532,9,0.0,0,2.1720285415649414,33,0.0,1 +13533,9,1.0,0,2.110025644302368,34,1.0,1 +13534,9,1.0,0,1.6540271043777466,35,1.0,1 +13535,9,1.0,0,1.1950316429138184,36,1.0,1 +13536,9,1.0,0,1.3210313320159912,37,1.0,1 +13537,9,1.0,0,1.6800267696380615,38,1.0,1 +13538,9,1.0,0,1.406030297279358,39,0.0,1 +13539,9,0.0,0,1.2660317420959473,40,0.0,1 +13540,9,1.0,0,1.4420298337936401,41,1.0,1 +13541,9,1.0,0,1.2610317468643188,42,1.0,1 +13542,9,1.0,0,1.5220288038253784,43,1.0,1 +13543,9,1.0,0,1.2600317001342773,44,1.0,1 +13544,9,1.0,0,1.2610317468643188,45,1.0,1 +13545,9,1.0,0,1.4080302715301514,46,1.0,1 +13546,9,1.0,0,2.1550278663635254,47,1.0,1 +13547,9,1.0,0,1.3000316619873047,48,1.0,1 +13548,9,1.0,0,1.2300317287445068,49,1.0,1 +13549,9,1.0,0,1.5150288343429565,50,1.0,1 +13550,9,1.0,0,1.4620295763015747,51,1.0,1 +13551,9,1.0,0,1.2420316934585571,52,1.0,1 +13552,9,1.0,0,1.6270275115966797,53,1.0,1 +13553,9,1.0,0,1.3000316619873047,54,1.0,1 +13554,9,1.0,0,1.3570308685302734,55,0.0,1 +13555,9,0.0,0,1.3160314559936523,56,0.0,1 +13556,9,0.0,0,1.4550296068191528,57,0.0,1 +13557,9,0.0,0,1.5110288858413696,58,1.0,1 +13558,9,0.0,0,1.281031847000122,59,1.0,1 +13559,9,0.0,0,1.3430310487747192,60,0.0,1 +13560,9,1.0,0,1.3200314044952393,61,0.0,1 +13561,9,1.0,0,1.8360247611999512,62,1.0,1 +13562,9,1.0,0,1.3410310745239258,63,0.0,1 +13563,9,0.0,0,1.3090314865112305,64,0.0,1 +13564,9,0.0,0,1.2430317401885986,65,0.0,1 +13565,9,1.0,0,1.8350248336791992,66,0.0,1 +13566,9,1.0,0,1.4010303020477295,67,0.0,1 +13567,9,0.0,0,1.2420316934585571,68,1.0,1 +13568,9,0.0,0,1.1660315990447998,69,0.0,1 +13569,9,1.0,0,1.3340312242507935,70,0.0,1 +13570,9,1.0,0,1.4850292205810547,71,1.0,1 +13571,9,1.0,0,1.4640295505523682,72,1.0,1 +13572,9,1.0,0,1.2500317096710205,73,1.0,1 +13573,9,1.0,0,1.4070302248001099,74,0.0,1 +13574,9,1.0,0,1.608027696609497,75,1.0,1 +13575,9,1.0,0,1.8250248432159424,76,1.0,1 +13576,9,0.0,0,1.18403160572052,77,0.0,1 +13577,9,1.0,0,1.7380260229110718,78,1.0,1 +13578,9,1.0,0,1.3430310487747192,79,1.0,1 +13579,9,0.0,0,1.376030683517456,80,0.0,1 +13580,9,1.0,0,1.3910304307937622,81,0.0,1 +13581,9,0.0,0,1.354030966758728,82,0.0,1 +13582,9,1.0,0,1.7380260229110718,83,0.0,1 +13583,9,0.0,0,2.2690329551696777,84,0.0,1 +13584,9,0.0,0,1.3120315074920654,85,0.0,1 +13585,9,0.0,0,2.07802414894104,86,1.0,1 +13586,9,0.0,0,1.630027413368225,87,0.0,1 +13587,9,1.0,0,2.1760287284851074,88,1.0,1 +13588,9,1.0,0,1.3710306882858276,89,1.0,1 +13589,9,1.0,0,1.2430317401885986,90,1.0,1 +13590,9,1.0,0,1.705026388168335,91,1.0,1 +13591,9,1.0,0,1.5360286235809326,92,1.0,1 +13592,9,1.0,0,1.3530309200286865,93,1.0,1 +13593,9,1.0,0,1.2830318212509155,94,1.0,1 +13594,9,1.0,0,1.3600308895111084,95,1.0,1 +13595,9,0.0,0,1.1350314617156982,96,1.0,1 +13596,9,1.0,0,2.097024917602539,97,1.0,1 +13597,9,0.0,0,1.4050302505493164,98,0.0,1 +13598,9,1.0,0,1.8210248947143555,99,1.0,1 +13599,9,1.0,0,1.257031798362732,100,0.0,1 +13600,9,1.0,0,1.2970316410064697,101,1.0,1 +13601,9,1.0,0,1.1670315265655518,102,1.0,1 +13602,9,1.0,0,1.747025966644287,103,1.0,1 +13603,9,1.0,0,1.5530283451080322,104,1.0,1 +13604,9,1.0,0,1.2350317239761353,105,1.0,1 +13605,9,1.0,0,1.9280235767364502,106,1.0,1 +13606,9,1.0,0,1.2410317659378052,107,1.0,1 +13607,9,1.0,0,1.4590295553207397,108,1.0,1 +13608,9,1.0,0,1.4350298643112183,109,1.0,1 +13609,9,1.0,0,1.3180314302444458,110,1.0,1 +13610,9,1.0,0,1.5580283403396606,111,1.0,1 +13611,9,1.0,0,1.4890291690826416,112,1.0,1 +13612,9,1.0,0,1.3240313529968262,113,0.0,1 +13613,9,0.0,0,2.348036766052246,114,0.0,1 +13614,9,1.0,0,1.5360286235809326,115,1.0,1 +13615,9,1.0,0,1.358030915260315,116,1.0,1 +13616,9,1.0,0,1.936023473739624,117,1.0,1 +13617,9,1.0,0,1.1720316410064697,118,1.0,1 +13618,9,1.0,0,1.3650307655334473,119,1.0,1 +13619,9,1.0,0,1.845024585723877,120,1.0,1 +13620,9,1.0,0,1.4630295038223267,121,1.0,1 +13621,9,1.0,0,1.4360299110412598,122,1.0,1 +13622,9,1.0,0,1.5090289115905762,123,1.0,1 +13623,9,0.0,0,1.2330317497253418,124,0.0,1 +13624,9,1.0,0,1.6960265636444092,125,1.0,1 +13625,9,1.0,0,1.3910304307937622,126,1.0,1 +13626,9,1.0,0,1.284031867980957,127,1.0,1 +13627,9,1.0,0,1.4090301990509033,128,1.0,1 +13628,9,1.0,0,1.5020290613174438,129,1.0,1 +13629,9,1.0,0,1.2370316982269287,130,1.0,1 +13630,9,1.0,0,1.7660256624221802,131,1.0,1 +13631,9,1.0,0,1.7900253534317017,132,1.0,1 +13632,9,1.0,0,1.2900317907333374,133,1.0,1 +13633,9,1.0,0,1.3570308685302734,134,1.0,1 +13634,9,1.0,0,1.5570282936096191,135,1.0,1 +13635,9,1.0,0,1.8810241222381592,136,1.0,1 +13636,9,1.0,0,1.2710317373275757,137,1.0,1 +13637,9,1.0,0,1.3380311727523804,138,1.0,1 +13638,9,1.0,0,1.5410284996032715,139,0.0,1 +13639,9,1.0,0,1.8940240144729614,140,1.0,1 +13640,9,1.0,0,1.2640317678451538,141,1.0,1 +13641,9,1.0,0,1.284031867980957,142,1.0,1 +13642,9,1.0,0,1.565028190612793,143,1.0,1 +13643,9,1.0,0,1.2230316400527954,144,1.0,1 +13644,9,1.0,0,1.4780293703079224,145,1.0,1 +13645,9,1.0,0,1.336031198501587,146,1.0,1 +13646,9,1.0,0,1.3920304775238037,147,1.0,1 +13647,9,1.0,0,1.4530296325683594,148,1.0,1 +13648,9,1.0,0,1.3340312242507935,149,1.0,1 +13649,9,1.0,0,1.4770293235778809,150,1.0,1 +13650,9,1.0,0,1.4130301475524902,151,1.0,1 +13651,9,1.0,0,1.7060264348983765,152,1.0,1 +13652,9,0.0,0,1.745025873184204,153,0.0,1 +13653,9,1.0,0,1.3870304822921753,154,1.0,1 +13654,9,1.0,0,1.2190316915512085,155,0.0,1 +13655,9,1.0,0,1.5800280570983887,156,1.0,1 +13656,9,1.0,0,1.4810292720794678,157,1.0,1 +13657,9,1.0,0,1.3400311470031738,158,1.0,1 +13658,9,1.0,0,1.3780306577682495,159,1.0,1 +13659,9,0.0,0,1.5190287828445435,160,1.0,1 +13660,9,0.0,0,1.2100316286087036,161,1.0,1 +13661,9,0.0,0,1.3650307655334473,162,0.0,1 +13662,9,1.0,0,1.1710315942764282,163,1.0,1 +13663,9,1.0,0,1.255031704902649,164,1.0,1 +13664,9,1.0,0,1.380030632019043,165,1.0,1 +13665,9,1.0,0,1.2990316152572632,166,1.0,1 +13666,9,1.0,0,1.3020316362380981,167,1.0,1 +13667,9,1.0,0,1.248031735420227,168,0.0,1 +13668,9,1.0,0,2.354037046432495,169,1.0,1 +13669,9,1.0,0,1.5340286493301392,170,1.0,1 +13670,9,1.0,0,1.9550232887268066,171,0.0,1 +13671,9,1.0,0,2.084024429321289,172,1.0,1 +13672,9,0.0,0,1.659027099609375,173,0.0,1 +13673,9,1.0,0,1.4780293703079224,174,1.0,1 +13674,9,1.0,0,1.8300248384475708,175,1.0,1 +13675,9,1.0,0,1.5820280313491821,176,1.0,1 +13676,9,1.0,0,1.3130314350128174,177,1.0,1 +13677,9,1.0,0,1.7820254564285278,178,1.0,1 +13678,9,1.0,0,1.5180288553237915,179,1.0,1 +13679,9,1.0,0,1.4320299625396729,180,1.0,1 +13680,9,1.0,0,1.6390273571014404,181,1.0,1 +13681,9,1.0,0,1.6100276708602905,182,1.0,1 +13682,9,0.0,0,1.4570295810699463,183,0.0,1 +13683,9,1.0,0,1.4530296325683594,184,0.0,1 +13684,9,0.0,0,1.6030278205871582,185,1.0,1 +13685,9,0.0,0,1.5390286445617676,186,0.0,1 +13686,9,1.0,0,1.4180301427841187,187,1.0,1 +13687,9,1.0,0,1.7680256366729736,188,1.0,1 +13688,9,1.0,0,1.3370311260223389,189,0.0,1 +13689,9,0.0,0,2.1670284271240234,190,0.0,1 +13690,9,1.0,0,1.373030662536621,191,1.0,1 +13691,9,1.0,0,1.3860305547714233,192,1.0,1 +13692,9,1.0,0,1.3450310230255127,193,0.0,1 +13693,9,0.0,0,1.4600296020507812,194,0.0,1 +13694,9,1.0,0,1.251031756401062,195,1.0,1 +13695,9,1.0,0,1.4150301218032837,196,1.0,1 +13696,9,1.0,0,1.288031816482544,197,1.0,1 +13697,9,1.0,0,1.278031826019287,198,1.0,1 +13698,9,1.0,0,1.5800280570983887,199,1.0,1 +13699,9,1.0,0,1.5230287313461304,200,1.0,1 +13700,9,1.0,0,1.282031774520874,201,0.0,1 +13701,9,0.0,0,1.7650256156921387,202,1.0,1 +13702,9,0.0,0,1.2390316724777222,203,0.0,1 +13703,9,1.0,0,1.9890227317810059,204,1.0,1 +13704,9,1.0,0,1.3520309925079346,205,1.0,1 +13705,9,1.0,0,1.542028546333313,206,1.0,1 +13706,9,1.0,0,1.215031623840332,207,0.0,1 +13707,9,0.0,0,1.985022783279419,208,0.0,1 +13708,9,0.0,0,1.5550284385681152,209,0.0,1 +13709,9,1.0,0,1.5570282936096191,210,0.0,1 +13710,9,1.0,0,1.6840267181396484,211,1.0,1 +13711,9,1.0,0,1.2680318355560303,212,1.0,1 +13712,9,1.0,0,1.468029499053955,213,1.0,1 +13713,9,0.0,0,1.8060251474380493,214,0.0,1 +13714,9,1.0,0,1.282031774520874,215,1.0,1 +13715,9,1.0,0,1.4440298080444336,216,1.0,1 +13716,9,0.0,0,1.8370246887207031,217,0.0,1 +13717,9,1.0,0,1.5540283918380737,218,1.0,1 +13718,9,1.0,0,1.4530296325683594,219,1.0,1 +13719,9,1.0,0,1.4450297355651855,220,1.0,1 +13720,9,1.0,0,1.5510284900665283,221,1.0,1 +13721,9,1.0,0,1.421030044555664,222,0.0,1 +13722,9,0.0,0,1.4450297355651855,223,0.0,1 +13723,9,1.0,0,1.6260274648666382,224,1.0,1 +13724,9,1.0,0,1.7400259971618652,225,1.0,1 +13725,9,1.0,0,1.4090301990509033,226,1.0,1 +13726,9,1.0,0,1.2420316934585571,227,1.0,1 +13727,9,0.0,0,1.7180262804031372,228,0.0,1 +13728,9,1.0,0,1.6890265941619873,229,1.0,1 +13729,9,1.0,0,1.70802640914917,230,1.0,1 +13730,9,1.0,0,1.8260248899459839,231,1.0,1 +13731,9,1.0,0,1.181031584739685,232,1.0,1 +13732,9,1.0,0,1.4100302457809448,233,1.0,1 +13733,9,1.0,0,2.096024990081787,234,1.0,1 +13734,9,1.0,0,1.2860318422317505,235,1.0,1 +13735,9,1.0,0,1.2500317096710205,236,1.0,1 +13736,9,1.0,0,1.2930316925048828,237,1.0,1 +13737,9,1.0,0,1.9090237617492676,238,1.0,1 +13738,9,1.0,0,1.4300299882888794,239,1.0,1 +13739,9,1.0,0,1.3380311727523804,240,1.0,1 +13740,9,1.0,0,1.4990290403366089,241,1.0,1 +13741,9,1.0,0,1.6200275421142578,242,1.0,1 +13742,9,1.0,0,1.472029447555542,243,1.0,1 +13743,9,1.0,0,1.6460272073745728,244,1.0,1 +13744,9,1.0,0,1.4440298080444336,245,1.0,1 +13745,9,1.0,0,1.4410297870635986,246,1.0,1 +13746,9,1.0,0,1.2690317630767822,247,1.0,1 +13747,9,1.0,0,1.2960317134857178,248,1.0,1 +13748,9,1.0,0,1.2230316400527954,249,0.0,1 +13749,9,1.0,0,1.6410272121429443,250,1.0,1 +13750,9,1.0,0,1.3350311517715454,251,1.0,1 +13751,9,1.0,0,1.5740281343460083,252,1.0,1 +13752,9,1.0,0,1.373030662536621,253,1.0,1 +13753,9,1.0,0,1.358030915260315,254,0.0,1 +13754,9,0.0,0,1.2030316591262817,255,1.0,1 +13755,9,0.0,0,1.381030559539795,256,0.0,1 +13756,9,0.0,0,1.3940304517745972,257,0.0,1 +13757,9,1.0,0,1.892024040222168,258,1.0,1 +13758,9,1.0,0,1.5990278720855713,259,0.0,1 +13759,9,0.0,0,1.1820316314697266,260,0.0,1 +13760,9,0.0,0,1.4150301218032837,261,0.0,1 +13761,9,1.0,0,1.1860315799713135,262,1.0,1 +13762,9,1.0,0,1.5320286750793457,263,1.0,1 +13763,9,1.0,0,2.373037815093994,264,0.0,1 +13764,9,1.0,0,1.3460310697555542,265,1.0,1 +13765,9,1.0,0,1.3850305080413818,266,1.0,1 +13766,9,0.0,0,1.2860318422317505,267,0.0,1 +13767,9,1.0,0,1.3660308122634888,268,1.0,1 +13768,9,1.0,0,1.2920317649841309,269,1.0,1 +13769,9,1.0,0,1.3820306062698364,270,1.0,1 +13770,9,1.0,0,1.3480310440063477,271,0.0,1 +13771,9,1.0,0,1.5100289583206177,272,1.0,1 +13772,9,1.0,0,1.3470309972763062,273,1.0,1 +13773,9,1.0,0,1.215031623840332,274,0.0,1 +13774,9,0.0,0,1.1460314989089966,275,0.0,1 +13775,9,0.0,0,1.18403160572052,276,0.0,1 +13776,9,0.0,0,1.9450232982635498,277,0.0,1 +13777,9,1.0,0,1.4390298128128052,278,1.0,1 +13778,9,1.0,0,1.373030662536621,279,1.0,1 +13779,9,1.0,0,1.5660282373428345,280,1.0,1 +13780,9,1.0,0,1.181031584739685,281,1.0,1 +13781,9,1.0,0,1.8490245342254639,282,1.0,1 +13782,9,1.0,0,1.4890291690826416,283,0.0,1 +13783,9,0.0,0,1.5690281391143799,284,0.0,1 +13784,9,1.0,0,2.096024990081787,285,1.0,1 +13785,9,1.0,0,1.9070239067077637,286,1.0,1 +13786,9,1.0,0,1.2280316352844238,287,1.0,1 +13787,9,1.0,0,1.2740317583084106,288,1.0,1 +13788,9,1.0,0,1.2300317287445068,289,1.0,1 +13789,9,1.0,0,1.329031229019165,290,1.0,1 +13790,9,1.0,0,1.4660295248031616,291,1.0,1 +13791,9,1.0,0,1.4790292978286743,292,1.0,1 +13792,9,1.0,0,1.7540258169174194,293,0.0,1 +13793,9,1.0,0,1.9940227270126343,294,1.0,1 +13794,9,0.0,0,1.5510284900665283,295,0.0,1 +13795,9,1.0,0,1.306031584739685,296,1.0,1 +13796,9,1.0,0,1.6310274600982666,297,0.0,1 +13797,9,0.0,0,1.5550284385681152,298,1.0,1 +13798,9,0.0,0,1.2860318422317505,299,0.0,1 +13799,9,0.0,0,1.373030662536621,300,0.0,1 +13800,9,1.0,0,1.5880279541015625,301,1.0,1 +13801,9,1.0,0,1.1890316009521484,302,1.0,1 +13802,9,1.0,0,1.4140301942825317,303,1.0,1 +13803,9,1.0,0,1.3690307140350342,304,1.0,1 +13804,9,1.0,0,1.2700318098068237,305,1.0,1 +13805,9,1.0,0,1.6100276708602905,306,1.0,1 +13806,9,1.0,0,1.568028211593628,307,1.0,1 +13807,9,1.0,0,1.3900305032730103,308,1.0,1 +13808,9,1.0,0,1.311031460762024,309,1.0,1 +13809,9,1.0,0,1.7380260229110718,310,1.0,1 +13810,9,1.0,0,1.3660308122634888,311,1.0,1 +13811,9,0.0,0,2.024022340774536,312,0.0,1 +13812,9,1.0,0,1.7120263576507568,313,1.0,1 +13813,9,1.0,0,1.49402916431427,314,1.0,1 +13814,9,1.0,0,1.3410310745239258,315,1.0,1 +13815,9,1.0,0,1.468029499053955,316,1.0,1 +13816,9,1.0,0,1.98002290725708,317,1.0,1 +13817,9,1.0,0,1.3480310440063477,318,1.0,1 +13818,9,1.0,0,1.3430310487747192,319,0.0,1 +13819,9,1.0,0,1.377030611038208,320,1.0,1 +13820,9,1.0,0,1.4300299882888794,321,1.0,1 +13821,9,1.0,0,1.586027979850769,322,1.0,1 +13822,9,1.0,0,1.354030966758728,323,1.0,1 +13823,9,1.0,0,1.8300248384475708,324,1.0,1 +13824,9,1.0,0,1.3720307350158691,325,1.0,1 +13825,9,1.0,0,1.351030945777893,326,1.0,1 +13826,9,0.0,0,1.6180275678634644,327,0.0,1 +13827,9,1.0,0,1.8270249366760254,328,1.0,1 +13828,9,1.0,0,1.428030014038086,329,1.0,1 +13829,9,1.0,0,1.5110288858413696,330,1.0,1 +13830,9,0.0,0,1.2950316667556763,331,0.0,1 +13831,9,1.0,0,1.333031177520752,332,1.0,1 +13832,9,1.0,0,1.586027979850769,333,1.0,1 +13833,9,1.0,0,1.801025152206421,334,0.0,1 +13834,9,0.0,0,1.1680315732955933,335,0.0,1 +13835,9,1.0,0,1.5720281600952148,336,1.0,1 +13836,9,1.0,0,1.2600317001342773,337,1.0,1 +13837,9,1.0,0,1.3690307140350342,338,1.0,1 +13838,9,1.0,0,1.5350285768508911,339,1.0,1 +13839,9,0.0,0,1.373030662536621,340,0.0,1 +13840,9,1.0,0,1.1350314617156982,341,1.0,1 +13841,9,1.0,0,1.2710317373275757,342,1.0,1 +13842,9,1.0,0,1.6700268983840942,343,1.0,1 +13843,9,1.0,0,1.4620295763015747,344,1.0,1 +13844,9,1.0,0,1.6470272541046143,345,0.0,1 +13845,9,0.0,0,1.2720317840576172,346,0.0,1 +13846,9,0.0,0,1.5990278720855713,347,1.0,1 +13847,9,0.0,0,1.4790292978286743,348,0.0,1 +13848,9,0.0,0,1.333031177520752,349,0.0,1 +13849,9,0.0,0,1.6280274391174316,350,0.0,1 +13850,9,0.0,0,1.8780242204666138,351,0.0,1 +13851,9,1.0,0,1.424030065536499,352,1.0,1 +13852,9,1.0,0,1.490029215812683,353,1.0,1 +13853,9,1.0,0,1.5260287523269653,354,1.0,1 +13854,9,1.0,0,1.4750293493270874,355,1.0,1 +13855,9,1.0,0,1.3790305852890015,356,1.0,1 +13856,9,1.0,0,1.4350298643112183,357,1.0,1 +13857,9,1.0,0,1.2440316677093506,358,1.0,1 +13858,9,1.0,0,1.7280261516571045,359,1.0,1 +13859,9,1.0,0,1.288031816482544,360,1.0,1 +13860,9,1.0,0,1.4230300188064575,361,0.0,1 +13861,9,1.0,0,1.1750315427780151,362,1.0,1 +13862,9,1.0,0,1.4880292415618896,363,1.0,1 +13863,9,1.0,0,1.3370311260223389,364,1.0,1 +13864,9,1.0,0,1.1880316734313965,365,0.0,1 +13865,9,0.0,0,1.700026512145996,366,0.0,1 +13866,9,0.0,0,1.4270299673080444,367,1.0,1 +13867,9,0.0,0,1.2250317335128784,368,0.0,1 +13868,9,0.0,0,1.3630307912826538,369,0.0,1 +13869,9,1.0,0,1.6580270528793335,370,1.0,1 +13870,9,1.0,0,1.2720317840576172,371,1.0,1 +13871,9,1.0,0,1.3830305337905884,372,0.0,1 +13872,9,1.0,0,1.984022855758667,373,1.0,1 +13873,9,0.0,0,1.2900317907333374,374,0.0,1 +13874,9,1.0,0,1.311031460762024,375,1.0,1 +13875,9,1.0,0,1.4450297355651855,376,0.0,1 +13876,9,1.0,0,1.4780293703079224,377,0.0,1 +13877,9,1.0,0,1.4580296277999878,378,1.0,1 +13878,9,1.0,0,1.5110288858413696,379,1.0,1 +13879,9,1.0,0,1.443029761314392,380,1.0,1 +13880,9,0.0,0,1.2350317239761353,381,0.0,1 +13881,9,1.0,0,1.3470309972763062,382,1.0,1 +13882,9,1.0,0,1.248031735420227,383,1.0,1 +13883,9,1.0,0,1.6700268983840942,384,1.0,1 +13884,9,1.0,0,1.4920291900634766,385,1.0,1 +13885,9,1.0,0,1.1880316734313965,386,0.0,1 +13886,9,1.0,0,2.1390271186828613,387,1.0,1 +13887,9,1.0,0,1.2620317935943604,388,1.0,1 +13888,9,1.0,0,1.4390298128128052,389,1.0,1 +13889,9,1.0,0,1.7330260276794434,390,1.0,1 +13890,9,1.0,0,1.2640317678451538,391,1.0,1 +13891,9,1.0,0,1.35503089427948,392,1.0,1 +13892,9,1.0,0,1.311031460762024,393,0.0,1 +13893,9,0.0,0,1.2740317583084106,394,0.0,1 +13894,9,0.0,0,2.1550278663635254,395,0.0,1 +13895,9,1.0,0,1.542028546333313,396,1.0,1 +13896,9,0.0,0,1.1640315055847168,397,1.0,1 +13897,9,1.0,0,1.307031512260437,398,1.0,1 +13898,9,0.0,0,1.3650307655334473,399,0.0,1 +13899,9,0.0,0,1.307031512260437,400,0.0,1 +13900,9,1.0,0,1.6230275630950928,401,0.0,1 +13901,9,0.0,0,1.151031494140625,402,0.0,1 +13902,9,0.0,0,2.082024335861206,403,1.0,1 +13903,9,0.0,0,1.4220300912857056,404,0.0,1 +13904,9,1.0,0,1.6810266971588135,405,1.0,1 +13905,9,1.0,0,1.2690317630767822,406,1.0,1 +13906,9,1.0,0,1.608027696609497,407,0.0,1 +13907,9,1.0,0,2.275033473968506,408,1.0,1 +13908,9,1.0,0,1.2900317907333374,409,1.0,1 +13909,9,1.0,0,1.4350298643112183,410,1.0,1 +13910,9,1.0,0,1.8680243492126465,411,1.0,1 +13911,9,1.0,0,1.257031798362732,412,1.0,1 +13912,9,1.0,0,1.2420316934585571,413,1.0,1 +13913,9,1.0,0,1.3850305080413818,414,0.0,1 +13914,9,0.0,0,1.4550296068191528,415,0.0,1 +13915,9,1.0,0,1.3150314092636108,416,0.0,1 +13916,9,0.0,0,1.4590295553207397,417,0.0,1 +13917,9,0.0,0,1.5560283660888672,418,0.0,1 +13918,9,0.0,0,1.8590245246887207,419,1.0,1 +13919,9,0.0,0,1.9030239582061768,420,0.0,1 +13920,9,0.0,0,1.5040290355682373,421,0.0,1 +13921,9,1.0,0,1.3020316362380981,422,1.0,1 +13922,9,0.0,0,1.2220317125320435,423,0.0,1 +13923,9,1.0,0,1.2670317888259888,424,1.0,1 +13924,9,1.0,0,1.2640317678451538,425,1.0,1 +13925,9,1.0,0,1.4260300397872925,426,1.0,1 +13926,9,1.0,0,1.9660230875015259,427,1.0,1 +13927,9,1.0,0,1.187031626701355,428,1.0,1 +13928,9,1.0,0,1.3890304565429688,429,1.0,1 +13929,9,1.0,0,2.027022361755371,430,1.0,1 +13930,9,1.0,0,1.561028242111206,431,1.0,1 +13931,9,1.0,0,1.2320317029953003,432,1.0,1 +13932,9,1.0,0,1.5890278816223145,433,1.0,1 +13933,9,1.0,0,1.797025203704834,434,1.0,1 +13934,9,1.0,0,2.065023422241211,435,1.0,1 +13935,9,1.0,0,1.257031798362732,436,1.0,1 +13936,9,1.0,0,1.4110301733016968,437,1.0,1 +13937,9,1.0,0,1.4340299367904663,438,1.0,1 +13938,9,1.0,0,1.2830318212509155,439,1.0,1 +13939,9,1.0,0,1.3880305290222168,440,1.0,1 +13940,9,1.0,0,1.4400298595428467,441,1.0,1 +13941,9,1.0,0,1.255031704902649,442,1.0,1 +13942,9,1.0,0,1.7540258169174194,443,1.0,1 +13943,9,1.0,0,1.21403169631958,444,1.0,1 +13944,9,1.0,0,1.2290316820144653,445,0.0,1 +13945,9,0.0,0,1.3710306882858276,446,0.0,1 +13946,9,1.0,0,1.748025894165039,447,1.0,1 +13947,9,1.0,0,1.513028860092163,448,1.0,1 +13948,9,1.0,0,1.6020277738571167,449,1.0,1 +13949,9,0.0,0,1.2300317287445068,450,0.0,1 +13950,9,1.0,0,1.8140250444412231,451,1.0,1 +13951,9,1.0,0,1.3410310745239258,452,1.0,1 +13952,9,0.0,0,1.4740294218063354,453,0.0,1 +13953,9,1.0,0,1.756025791168213,454,1.0,1 +13954,9,1.0,0,1.6390273571014404,455,1.0,1 +13955,9,1.0,0,1.4080302715301514,456,1.0,1 +13956,9,1.0,0,1.3450310230255127,457,1.0,1 +13957,9,1.0,0,1.4830292463302612,458,1.0,1 +13958,9,1.0,0,1.447029709815979,459,0.0,1 +13959,9,0.0,0,1.278031826019287,460,0.0,1 +13960,9,0.0,0,1.469029426574707,461,0.0,1 +13961,9,0.0,0,1.7400259971618652,462,0.0,1 +13962,9,0.0,0,2.137026786804199,463,0.0,1 +13963,9,0.0,0,1.5370285511016846,464,0.0,1 +13964,9,1.0,0,1.254031777381897,465,1.0,1 +13965,9,1.0,0,1.7440259456634521,466,1.0,1 +13966,9,1.0,0,2.1580278873443604,467,1.0,1 +13967,9,0.0,0,1.9250235557556152,468,0.0,1 +13968,9,1.0,0,1.5120289325714111,469,0.0,1 +13969,9,0.0,0,1.425029993057251,470,0.0,1 +13970,9,0.0,0,1.3310312032699585,471,0.0,1 +13971,9,0.0,0,1.4040303230285645,472,1.0,1 +13972,9,0.0,0,1.420030117034912,473,0.0,1 +13973,9,1.0,0,1.398030400276184,474,1.0,1 +13974,9,1.0,0,1.3220313787460327,475,1.0,1 +13975,9,1.0,0,1.2950316667556763,476,1.0,1 +13976,9,1.0,0,2.369037628173828,477,0.0,1 +13977,9,1.0,0,1.380030632019043,478,0.0,1 +13978,9,1.0,0,1.634027361869812,479,1.0,1 +13979,9,1.0,0,1.7400259971618652,480,1.0,1 +13980,9,1.0,0,1.7600257396697998,481,1.0,1 +13981,9,1.0,0,1.5540283918380737,482,0.0,1 +13982,9,0.0,0,1.2580317258834839,483,0.0,1 +13983,9,0.0,0,1.181031584739685,484,0.0,1 +13984,9,1.0,0,2.1810288429260254,485,1.0,1 +13985,9,1.0,0,1.7350261211395264,486,1.0,1 +13986,9,1.0,0,1.2980316877365112,487,1.0,1 +13987,9,1.0,0,1.3460310697555542,488,1.0,1 +13988,9,1.0,0,1.3870304822921753,489,1.0,1 +13989,9,0.0,0,1.3880305290222168,490,0.0,1 +13990,9,1.0,0,1.307031512260437,491,1.0,1 +13991,9,1.0,0,1.376030683517456,492,1.0,1 +13992,9,1.0,0,1.5830280780792236,493,1.0,1 +13993,9,1.0,0,2.107025623321533,494,1.0,1 +13994,9,1.0,0,1.513028860092163,495,1.0,1 +13995,9,1.0,0,1.381030559539795,496,1.0,1 +13996,9,1.0,0,1.2010316848754883,497,1.0,1 +13997,9,1.0,0,1.659027099609375,498,1.0,1 +13998,9,1.0,0,1.3250312805175781,499,1.0,1 +13999,9,1.0,0,1.3470309972763062,500,1.0,1 +14000,9,1.0,1,2.1320266723632812,1,1.0,1 +14001,9,1.0,1,1.7880253791809082,2,0.0,1 +14002,9,0.0,1,1.2740317583084106,3,0.0,1 +14003,9,0.0,1,1.5140289068222046,4,1.0,1 +14004,9,1.0,1,2.0120224952697754,5,0.0,1 +14005,9,0.0,1,1.083031415939331,6,1.0,1 +14006,9,0.0,1,1.5580283403396606,7,1.0,1 +14007,9,0.0,1,1.279031753540039,8,0.0,1 +14008,9,1.0,1,1.6070277690887451,9,1.0,1 +14009,9,1.0,1,1.6980265378952026,10,1.0,1 +14010,9,1.0,1,1.3530309200286865,11,1.0,1 +14011,9,1.0,1,1.3520309925079346,12,1.0,1 +14012,9,1.0,1,1.3970303535461426,13,1.0,1 +14013,9,1.0,1,1.279031753540039,14,0.0,1 +14014,9,1.0,1,1.3690307140350342,15,1.0,1 +14015,9,1.0,1,1.4310299158096313,16,0.0,1 +14016,9,1.0,1,1.3420311212539673,17,1.0,1 +14017,9,1.0,1,1.6520271301269531,18,1.0,1 +14018,9,1.0,1,1.5620282888412476,19,1.0,1 +14019,9,1.0,1,1.212031602859497,20,1.0,1 +14020,9,1.0,1,1.70802640914917,21,0.0,1 +14021,9,0.0,1,1.4620295763015747,22,0.0,1 +14022,9,0.0,1,1.2410317659378052,23,1.0,1 +14023,9,0.0,1,1.4610295295715332,24,1.0,1 +14024,9,0.0,1,1.3380311727523804,25,1.0,1 +14025,9,0.0,1,1.5320286750793457,26,0.0,1 +14026,9,0.0,1,1.4440298080444336,27,0.0,1 +14027,9,1.0,1,1.7200262546539307,28,1.0,1 +14028,9,1.0,1,1.1360315084457397,29,0.0,1 +14029,9,0.0,1,2.263032913208008,30,0.0,1 +14030,9,0.0,1,1.33203125,31,0.0,1 +14031,9,1.0,1,1.491029143333435,32,1.0,1 +14032,9,1.0,1,1.2610317468643188,33,1.0,1 +14033,9,1.0,1,1.328031301498413,34,1.0,1 +14034,9,1.0,1,1.5280287265777588,35,1.0,1 +14035,9,1.0,1,1.4300299882888794,36,1.0,1 +14036,9,1.0,1,1.2340316772460938,37,1.0,1 +14037,9,1.0,1,1.2010316848754883,38,0.0,1 +14038,9,1.0,1,1.7370259761810303,39,1.0,1 +14039,9,1.0,1,1.377030611038208,40,1.0,1 +14040,9,1.0,1,1.1720316410064697,41,0.0,1 +14041,9,0.0,1,1.6720268726348877,42,0.0,1 +14042,9,1.0,1,1.4650294780731201,43,0.0,1 +14043,9,0.0,1,1.5580283403396606,44,0.0,1 +14044,9,0.0,1,1.3230313062667847,45,0.0,1 +14045,9,1.0,1,1.3340312242507935,46,1.0,1 +14046,9,1.0,1,1.2080316543579102,47,1.0,1 +14047,9,1.0,1,1.5340286493301392,48,1.0,1 +14048,9,1.0,1,1.8110251426696777,49,1.0,1 +14049,9,1.0,1,1.257031798362732,50,0.0,1 +14050,9,1.0,1,1.7150263786315918,51,0.0,1 +14051,9,1.0,1,1.9610230922698975,52,1.0,1 +14052,9,1.0,1,1.6370272636413574,53,1.0,1 +14053,9,1.0,1,1.5690281391143799,54,0.0,1 +14054,9,1.0,1,1.4110301733016968,55,1.0,1 +14055,9,1.0,1,1.8790242671966553,56,1.0,1 +14056,9,1.0,1,1.221031665802002,57,0.0,1 +14057,9,0.0,1,2.1880292892456055,58,1.0,1 +14058,9,0.0,1,1.1820316314697266,59,0.0,1 +14059,9,0.0,1,1.4420298337936401,60,1.0,1 +14060,9,0.0,1,1.6030278205871582,61,1.0,1 +14061,9,0.0,1,1.1330314874649048,62,0.0,1 +14062,9,0.0,1,1.450029730796814,63,1.0,1 +14063,9,0.0,1,1.2680318355560303,64,0.0,1 +14064,9,0.0,1,2.2490320205688477,65,0.0,1 +14065,9,1.0,1,1.5270286798477173,66,0.0,1 +14066,9,1.0,1,1.8310248851776123,67,1.0,1 +14067,9,1.0,1,1.2270317077636719,68,1.0,1 +14068,9,1.0,1,1.9280235767364502,69,0.0,1 +14069,9,1.0,1,1.3690307140350342,70,1.0,1 +14070,9,1.0,1,1.4890291690826416,71,0.0,1 +14071,9,1.0,1,1.5520284175872803,72,1.0,1 +14072,9,1.0,1,1.571028232574463,73,1.0,1 +14073,9,1.0,1,1.4270299673080444,74,0.0,1 +14074,9,0.0,1,1.1450315713882446,75,0.0,1 +14075,9,0.0,1,1.3900305032730103,76,0.0,1 +14076,9,1.0,1,1.5720281600952148,77,1.0,1 +14077,9,1.0,1,1.3410310745239258,78,1.0,1 +14078,9,1.0,1,1.611027717590332,79,1.0,1 +14079,9,1.0,1,1.8160250186920166,80,1.0,1 +14080,9,1.0,1,1.5290286540985107,81,0.0,1 +14081,9,1.0,1,2.060023307800293,82,1.0,1 +14082,9,1.0,1,1.3690307140350342,83,1.0,1 +14083,9,1.0,1,1.1980316638946533,84,1.0,1 +14084,9,1.0,1,1.3700307607650757,85,1.0,1 +14085,9,1.0,1,1.3480310440063477,86,1.0,1 +14086,9,1.0,1,1.2280316352844238,87,1.0,1 +14087,9,1.0,1,1.4850292205810547,88,1.0,1 +14088,9,0.0,1,1.5470285415649414,89,0.0,1 +14089,9,1.0,1,1.3680307865142822,90,0.0,1 +14090,9,1.0,1,1.3940304517745972,91,1.0,1 +14091,9,1.0,1,1.1850316524505615,92,1.0,1 +14092,9,1.0,1,2.137026786804199,93,1.0,1 +14093,9,1.0,1,1.8860241174697876,94,1.0,1 +14094,9,1.0,1,2.335036277770996,95,0.0,1 +14095,9,1.0,1,1.8260248899459839,96,1.0,1 +14096,9,1.0,1,1.2370316982269287,97,0.0,1 +14097,9,0.0,1,1.3670307397842407,98,0.0,1 +14098,9,1.0,1,1.6810266971588135,99,1.0,1 +14099,9,1.0,1,1.1680315732955933,100,1.0,1 +14100,9,1.0,1,1.5500284433364868,101,1.0,1 +14101,9,1.0,1,1.6760268211364746,102,1.0,1 +14102,9,1.0,1,1.5770280361175537,103,1.0,1 +14103,9,1.0,1,1.4770293235778809,104,0.0,1 +14104,9,0.0,1,1.1220314502716064,105,0.0,1 +14105,9,1.0,1,1.3090314865112305,106,0.0,1 +14106,9,1.0,1,1.4330298900604248,107,1.0,1 +14107,9,1.0,1,1.2560317516326904,108,1.0,1 +14108,9,1.0,1,1.2650318145751953,109,1.0,1 +14109,9,1.0,1,1.3040316104888916,110,1.0,1 +14110,9,1.0,1,1.4440298080444336,111,1.0,1 +14111,9,1.0,1,1.7180262804031372,112,1.0,1 +14112,9,0.0,1,1.7220262289047241,113,0.0,1 +14113,9,1.0,1,1.3050315380096436,114,1.0,1 +14114,9,1.0,1,1.307031512260437,115,0.0,1 +14115,9,1.0,1,1.700026512145996,116,1.0,1 +14116,9,1.0,1,1.3920304775238037,117,1.0,1 +14117,9,1.0,1,1.4310299158096313,118,0.0,1 +14118,9,0.0,1,1.3310312032699585,119,0.0,1 +14119,9,0.0,1,1.8020251989364624,120,0.0,1 +14120,9,1.0,1,1.940023422241211,121,1.0,1 +14121,9,1.0,1,1.2090317010879517,122,0.0,1 +14122,9,0.0,1,1.1820316314697266,123,0.0,1 +14123,9,1.0,1,1.254031777381897,124,1.0,1 +14124,9,1.0,1,1.4870291948318481,125,0.0,1 +14125,9,0.0,1,1.2560317516326904,126,0.0,1 +14126,9,0.0,1,1.354030966758728,127,0.0,1 +14127,9,1.0,1,1.6580270528793335,128,1.0,1 +14128,9,1.0,1,1.3480310440063477,129,0.0,1 +14129,9,0.0,1,1.7620257139205933,130,1.0,1 +14130,9,0.0,1,1.1240315437316895,131,1.0,1 +14131,9,0.0,1,1.3310312032699585,132,0.0,1 +14132,9,0.0,1,1.6540271043777466,133,1.0,1 +14133,9,0.0,1,1.2330317497253418,134,0.0,1 +14134,9,1.0,1,1.89302396774292,135,1.0,1 +14135,9,0.0,1,1.7730255126953125,136,0.0,1 +14136,9,1.0,1,1.2100316286087036,137,0.0,1 +14137,9,1.0,1,2.057023048400879,138,1.0,1 +14138,9,1.0,1,1.5820280313491821,139,0.0,1 +14139,9,1.0,1,1.4600296020507812,140,0.0,1 +14140,9,0.0,1,2.091024875640869,141,1.0,1 +14141,9,0.0,1,1.2970316410064697,142,0.0,1 +14142,9,0.0,1,1.1860315799713135,143,0.0,1 +14143,9,0.0,1,1.6190276145935059,144,1.0,1 +14144,9,0.0,1,1.560028314590454,145,0.0,1 +14145,9,1.0,1,1.3660308122634888,146,0.0,1 +14146,9,0.0,1,1.1970316171646118,147,1.0,1 +14147,9,0.0,1,1.491029143333435,148,1.0,1 +14148,9,0.0,1,1.5310286283493042,149,0.0,1 +14149,9,0.0,1,1.6940265893936157,150,1.0,1 +14150,9,0.0,1,1.4130301475524902,151,0.0,1 +14151,9,1.0,1,1.429029941558838,152,0.0,1 +14152,9,0.0,1,1.866024374961853,153,1.0,1 +14153,9,0.0,1,1.278031826019287,154,1.0,1 +14154,9,0.0,1,1.561028242111206,155,0.0,1 +14155,9,1.0,1,1.2250317335128784,156,1.0,1 +14156,9,1.0,1,1.33203125,157,1.0,1 +14157,9,1.0,1,1.4790292978286743,158,0.0,1 +14158,9,1.0,1,1.6070277690887451,159,1.0,1 +14159,9,1.0,1,2.133026599884033,160,0.0,1 +14160,9,1.0,1,2.097024917602539,161,1.0,1 +14161,9,1.0,1,1.612027645111084,162,1.0,1 +14162,9,1.0,1,1.5760281085968018,163,1.0,1 +14163,9,1.0,1,1.5580283403396606,164,1.0,1 +14164,9,1.0,1,1.3940304517745972,165,1.0,1 +14165,9,1.0,1,1.5250287055969238,166,1.0,1 +14166,9,1.0,1,1.542028546333313,167,1.0,1 +14167,9,1.0,1,1.2430317401885986,168,1.0,1 +14168,9,1.0,1,1.9290235042572021,169,1.0,1 +14169,9,1.0,1,1.6760268211364746,170,1.0,1 +14170,9,1.0,1,1.3690307140350342,171,1.0,1 +14171,9,1.0,1,1.4310299158096313,172,0.0,1 +14172,9,0.0,1,1.4800293445587158,173,0.0,1 +14173,9,0.0,1,1.5020290613174438,174,0.0,1 +14174,9,1.0,1,1.8620244264602661,175,1.0,1 +14175,9,1.0,1,1.278031826019287,176,1.0,1 +14176,9,1.0,1,1.2720317840576172,177,1.0,1 +14177,9,1.0,1,1.2560317516326904,178,1.0,1 +14178,9,1.0,1,1.3710306882858276,179,1.0,1 +14179,9,1.0,1,1.5300287008285522,180,1.0,1 +14180,9,1.0,1,1.5030289888381958,181,0.0,1 +14181,9,0.0,1,1.5980278253555298,182,1.0,1 +14182,9,0.0,1,1.5290286540985107,183,1.0,1 +14183,9,0.0,1,1.2090317010879517,184,1.0,1 +14184,9,0.0,1,1.5920279026031494,185,0.0,1 +14185,9,0.0,1,1.306031584739685,186,1.0,1 +14186,9,0.0,1,1.2370316982269287,187,0.0,1 +14187,9,0.0,1,1.6940265893936157,188,0.0,1 +14188,9,1.0,1,1.887024164199829,189,0.0,1 +14189,9,1.0,1,1.3460310697555542,190,0.0,1 +14190,9,0.0,1,1.730026125907898,191,0.0,1 +14191,9,1.0,1,1.6660269498825073,192,1.0,1 +14192,9,1.0,1,1.4810292720794678,193,1.0,1 +14193,9,1.0,1,1.472029447555542,194,1.0,1 +14194,9,1.0,1,1.3570308685302734,195,1.0,1 +14195,9,1.0,1,1.2250317335128784,196,0.0,1 +14196,9,0.0,1,1.22003173828125,197,0.0,1 +14197,9,0.0,1,1.3080315589904785,198,0.0,1 +14198,9,1.0,1,2.276033401489258,199,1.0,1 +14199,9,1.0,1,1.5070289373397827,200,1.0,1 +14200,9,1.0,1,1.5080289840698242,201,1.0,1 +14201,9,1.0,1,1.3870304822921753,202,0.0,1 +14202,9,0.0,1,1.4550296068191528,203,1.0,1 +14203,9,0.0,1,1.2070316076278687,204,1.0,1 +14204,9,0.0,1,1.4310299158096313,205,1.0,1 +14205,9,0.0,1,1.15403151512146,206,0.0,1 +14206,9,0.0,1,1.6360273361206055,207,0.0,1 +14207,9,1.0,1,1.8990240097045898,208,1.0,1 +14208,9,1.0,1,1.3380311727523804,209,1.0,1 +14209,9,1.0,1,1.3720307350158691,210,1.0,1 +14210,9,1.0,1,1.4110301733016968,211,1.0,1 +14211,9,1.0,1,1.6500271558761597,212,1.0,1 +14212,9,1.0,1,1.704026460647583,213,1.0,1 +14213,9,1.0,1,1.307031512260437,214,1.0,1 +14214,9,1.0,1,1.5950279235839844,215,1.0,1 +14215,9,1.0,1,1.3370311260223389,216,0.0,1 +14216,9,1.0,1,2.07802414894104,217,0.0,1 +14217,9,1.0,1,2.103025436401367,218,1.0,1 +14218,9,1.0,1,1.3680307865142822,219,1.0,1 +14219,9,1.0,1,1.6650269031524658,220,1.0,1 +14220,9,0.0,1,1.571028232574463,221,0.0,1 +14221,9,1.0,1,1.3440310955047607,222,1.0,1 +14222,9,1.0,1,1.224031686782837,223,1.0,1 +14223,9,1.0,1,1.2340316772460938,224,0.0,1 +14224,9,0.0,1,1.6100276708602905,225,1.0,1 +14225,9,0.0,1,1.3840305805206299,226,0.0,1 +14226,9,0.0,1,2.2230310440063477,227,0.0,1 +14227,9,1.0,1,1.6730268001556396,228,1.0,1 +14228,9,1.0,1,1.6260274648666382,229,1.0,1 +14229,9,1.0,1,1.3310312032699585,230,1.0,1 +14230,9,1.0,1,1.446029782295227,231,1.0,1 +14231,9,1.0,1,1.3310312032699585,232,1.0,1 +14232,9,1.0,1,1.9190237522125244,233,0.0,1 +14233,9,0.0,1,1.2350317239761353,234,0.0,1 +14234,9,1.0,1,1.704026460647583,235,0.0,1 +14235,9,0.0,1,1.4370298385620117,236,0.0,1 +14236,9,1.0,1,1.79502534866333,237,1.0,1 +14237,9,1.0,1,1.79502534866333,238,1.0,1 +14238,9,1.0,1,1.5520284175872803,239,0.0,1 +14239,9,0.0,1,1.609027624130249,240,1.0,1 +14240,9,0.0,1,1.7690255641937256,241,0.0,1 +14241,9,0.0,1,2.1840291023254395,242,0.0,1 +14242,9,0.0,1,2.052022933959961,243,0.0,1 +14243,9,1.0,1,1.615027666091919,244,0.0,1 +14244,9,0.0,1,2.103025436401367,245,0.0,1 +14245,9,0.0,1,1.6640269756317139,246,1.0,1 +14246,9,0.0,1,1.354030966758728,247,0.0,1 +14247,9,0.0,1,1.6140276193618774,248,0.0,1 +14248,9,1.0,1,1.7350261211395264,249,1.0,1 +14249,9,1.0,1,1.4310299158096313,250,0.0,1 +14250,9,1.0,1,2.067023754119873,251,0.0,1 +14251,9,0.0,1,1.4970290660858154,252,0.0,1 +14252,9,0.0,1,1.5490283966064453,253,1.0,1 +14253,9,0.0,1,1.6480271816253662,254,0.0,1 +14254,9,1.0,1,1.985022783279419,255,1.0,1 +14255,9,1.0,1,1.6480271816253662,256,0.0,1 +14256,9,0.0,1,1.4300299882888794,257,0.0,1 +14257,9,1.0,1,1.3970303535461426,258,1.0,1 +14258,9,1.0,1,1.428030014038086,259,0.0,1 +14259,9,1.0,1,1.3450310230255127,260,1.0,1 +14260,9,0.0,1,1.3880305290222168,261,1.0,1 +14261,9,0.0,1,1.279031753540039,262,0.0,1 +14262,9,1.0,1,1.4130301475524902,263,1.0,1 +14263,9,1.0,1,1.5010290145874023,264,1.0,1 +14264,9,1.0,1,1.6360273361206055,265,1.0,1 +14265,9,1.0,1,1.542028546333313,266,0.0,1 +14266,9,1.0,1,1.6890265941619873,267,1.0,1 +14267,9,1.0,1,1.1950316429138184,268,1.0,1 +14268,9,1.0,1,1.8140250444412231,269,1.0,1 +14269,9,1.0,1,1.4040303230285645,270,0.0,1 +14270,9,1.0,1,1.6790268421173096,271,0.0,1 +14271,9,1.0,1,1.6770267486572266,272,1.0,1 +14272,9,1.0,1,1.4530296325683594,273,1.0,1 +14273,9,1.0,1,1.4340299367904663,274,1.0,1 +14274,9,1.0,1,1.282031774520874,275,0.0,1 +14275,9,0.0,1,1.4750293493270874,276,0.0,1 +14276,9,1.0,1,1.5390286445617676,277,1.0,1 +14277,9,1.0,1,1.4580296277999878,278,1.0,1 +14278,9,1.0,1,1.5250287055969238,279,0.0,1 +14279,9,0.0,1,1.4800293445587158,280,0.0,1 +14280,9,0.0,1,1.8960239887237549,281,1.0,1 +14281,9,0.0,1,2.2140305042266846,282,0.0,1 +14282,9,0.0,1,1.468029499053955,283,0.0,1 +14283,9,0.0,1,1.7910254001617432,284,0.0,1 +14284,9,0.0,1,1.8120250701904297,285,0.0,1 +14285,9,0.0,1,1.3960304260253906,286,0.0,1 +14286,9,1.0,1,2.066023588180542,287,1.0,1 +14287,9,1.0,1,1.9130237102508545,288,1.0,1 +14288,9,1.0,1,1.6210274696350098,289,1.0,1 +14289,9,0.0,1,1.1020314693450928,290,1.0,1 +14290,9,1.0,1,1.4190300703048706,291,1.0,1 +14291,9,0.0,1,1.962023138999939,292,0.0,1 +14292,9,1.0,1,1.2370316982269287,293,1.0,1 +14293,9,1.0,1,1.1890316009521484,294,1.0,1 +14294,9,1.0,1,1.1690316200256348,295,0.0,1 +14295,9,0.0,1,1.1940315961837769,296,0.0,1 +14296,9,1.0,1,2.355037212371826,297,0.0,1 +14297,9,0.0,1,1.6930265426635742,298,0.0,1 +14298,9,0.0,1,1.4880292415618896,299,1.0,1 +14299,9,0.0,1,1.6400272846221924,300,0.0,1 +14300,9,1.0,1,1.6770267486572266,301,0.0,1 +14301,9,1.0,1,1.6870267391204834,302,1.0,1 +14302,9,1.0,1,1.3560309410095215,303,1.0,1 +14303,9,1.0,1,1.4740294218063354,304,1.0,1 +14304,9,1.0,1,1.3920304775238037,305,0.0,1 +14305,9,0.0,1,1.3920304775238037,306,0.0,1 +14306,9,1.0,1,1.4870291948318481,307,1.0,1 +14307,9,1.0,1,1.3090314865112305,308,1.0,1 +14308,9,1.0,1,1.151031494140625,309,0.0,1 +14309,9,1.0,1,1.7400259971618652,310,0.0,1 +14310,9,1.0,1,1.2230316400527954,311,1.0,1 +14311,9,1.0,1,1.7340260744094849,312,1.0,1 +14312,9,1.0,1,1.799025297164917,313,1.0,1 +14313,9,1.0,1,1.2990316152572632,314,0.0,1 +14314,9,0.0,1,1.7910254001617432,315,0.0,1 +14315,9,0.0,1,2.037022113800049,316,0.0,1 +14316,9,1.0,1,1.7750256061553955,317,1.0,1 +14317,9,1.0,1,1.8170249462127686,318,1.0,1 +14318,9,1.0,1,1.6000277996063232,319,0.0,1 +14319,9,1.0,1,1.659027099609375,320,1.0,1 +14320,9,1.0,1,1.7690255641937256,321,1.0,1 +14321,9,1.0,1,1.6650269031524658,322,1.0,1 +14322,9,1.0,1,1.7100263833999634,323,0.0,1 +14323,9,0.0,1,1.6190276145935059,324,0.0,1 +14324,9,0.0,1,1.3970303535461426,325,0.0,1 +14325,9,1.0,1,1.6520271301269531,326,1.0,1 +14326,9,1.0,1,1.7420259714126587,327,1.0,1 +14327,9,1.0,1,1.4130301475524902,328,1.0,1 +14328,9,1.0,1,1.5740281343460083,329,1.0,1 +14329,9,1.0,1,1.5760281085968018,330,1.0,1 +14330,9,1.0,1,1.376030683517456,331,0.0,1 +14331,9,0.0,1,1.4890291690826416,332,0.0,1 +14332,9,0.0,1,1.446029782295227,333,1.0,1 +14333,9,0.0,1,1.4360299110412598,334,0.0,1 +14334,9,1.0,1,1.4230300188064575,335,1.0,1 +14335,9,1.0,1,1.70802640914917,336,0.0,1 +14336,9,0.0,1,2.376038074493408,337,0.0,1 +14337,9,0.0,1,2.561046600341797,338,0.0,1 +14338,9,1.0,1,2.6590514183044434,339,1.0,1 +14339,9,1.0,1,1.3520309925079346,340,1.0,1 +14340,9,1.0,1,1.1440315246582031,341,1.0,1 +14341,9,1.0,1,1.2130316495895386,342,0.0,1 +14342,9,1.0,1,1.2390316724777222,343,1.0,1 +14343,9,1.0,1,1.4670294523239136,344,1.0,1 +14344,9,1.0,1,1.3140314817428589,345,0.0,1 +14345,9,0.0,1,1.3970303535461426,346,1.0,1 +14346,9,0.0,1,1.4630295038223267,347,1.0,1 +14347,9,0.0,1,1.1690316200256348,348,0.0,1 +14348,9,1.0,1,1.3940304517745972,349,0.0,1 +14349,9,1.0,1,1.421030044555664,350,1.0,1 +14350,9,1.0,1,1.5100289583206177,351,0.0,1 +14351,9,0.0,1,1.7340260744094849,352,0.0,1 +14352,9,0.0,1,1.7600257396697998,353,0.0,1 +14353,9,1.0,1,1.2750318050384521,354,1.0,1 +14354,9,1.0,1,1.429029941558838,355,1.0,1 +14355,9,1.0,1,1.3820306062698364,356,1.0,1 +14356,9,1.0,1,1.3410310745239258,357,0.0,1 +14357,9,0.0,1,1.3910304307937622,358,0.0,1 +14358,9,0.0,1,1.3440310955047607,359,0.0,1 +14359,9,1.0,1,1.843024730682373,360,1.0,1 +14360,9,1.0,1,1.2870317697525024,361,1.0,1 +14361,9,1.0,1,1.571028232574463,362,0.0,1 +14362,9,0.0,1,1.4660295248031616,363,0.0,1 +14363,9,1.0,1,2.1270265579223633,364,1.0,1 +14364,9,1.0,1,1.4860292673110962,365,1.0,1 +14365,9,1.0,1,1.4790292978286743,366,1.0,1 +14366,9,1.0,1,1.892024040222168,367,1.0,1 +14367,9,1.0,1,1.7920253276824951,368,1.0,1 +14368,9,1.0,1,1.6480271816253662,369,0.0,1 +14369,9,1.0,1,1.5150288343429565,370,0.0,1 +14370,9,0.0,1,1.2930316925048828,371,1.0,1 +14371,9,0.0,1,1.257031798362732,372,0.0,1 +14372,9,1.0,1,1.3680307865142822,373,1.0,1 +14373,9,1.0,1,1.5740281343460083,374,1.0,1 +14374,9,1.0,1,2.4040393829345703,375,0.0,1 +14375,9,0.0,1,1.3710306882858276,376,1.0,1 +14376,9,0.0,1,1.3960304260253906,377,0.0,1 +14377,9,0.0,1,2.110025644302368,378,0.0,1 +14378,9,1.0,1,2.1580278873443604,379,1.0,1 +14379,9,0.0,1,1.329031229019165,380,0.0,1 +14380,9,1.0,1,1.2020316123962402,381,0.0,1 +14381,9,0.0,1,1.2730318307876587,382,0.0,1 +14382,9,1.0,1,1.5510284900665283,383,1.0,1 +14383,9,1.0,1,1.4640295505523682,384,1.0,1 +14384,9,1.0,1,1.402030348777771,385,0.0,1 +14385,9,1.0,1,1.2670317888259888,386,1.0,1 +14386,9,1.0,1,1.565028190612793,387,1.0,1 +14387,9,1.0,1,1.2040317058563232,388,1.0,1 +14388,9,1.0,1,1.399030327796936,389,0.0,1 +14389,9,1.0,1,1.279031753540039,390,1.0,1 +14390,9,1.0,1,1.5320286750793457,391,1.0,1 +14391,9,1.0,1,1.2400317192077637,392,1.0,1 +14392,9,1.0,1,1.215031623840332,393,0.0,1 +14393,9,1.0,1,1.6660269498825073,394,1.0,1 +14394,9,1.0,1,1.5760281085968018,395,1.0,1 +14395,9,1.0,1,1.6290273666381836,396,0.0,1 +14396,9,1.0,1,1.4480297565460205,397,1.0,1 +14397,9,1.0,1,1.428030014038086,398,1.0,1 +14398,9,1.0,1,1.215031623840332,399,1.0,1 +14399,9,1.0,1,1.5020290613174438,400,1.0,1 +14400,9,0.0,1,1.2930316925048828,401,0.0,1 +14401,9,1.0,1,1.2090317010879517,402,1.0,1 +14402,9,1.0,1,1.1760315895080566,403,1.0,1 +14403,9,1.0,1,1.3190313577651978,404,0.0,1 +14404,9,0.0,1,2.4970436096191406,405,0.0,1 +14405,9,1.0,1,1.840024709701538,406,1.0,1 +14406,9,1.0,1,1.2720317840576172,407,0.0,1 +14407,9,1.0,1,1.333031177520752,408,0.0,1 +14408,9,0.0,1,1.5320286750793457,409,0.0,1 +14409,9,0.0,1,1.2710317373275757,410,0.0,1 +14410,9,0.0,1,1.3850305080413818,411,1.0,1 +14411,9,0.0,1,1.2530317306518555,412,0.0,1 +14412,9,0.0,1,1.1770316362380981,413,1.0,1 +14413,9,0.0,1,1.3370311260223389,414,0.0,1 +14414,9,1.0,1,2.110025644302368,415,1.0,1 +14415,9,1.0,1,1.3430310487747192,416,1.0,1 +14416,9,1.0,1,1.939023494720459,417,1.0,1 +14417,9,1.0,1,1.2340316772460938,418,1.0,1 +14418,9,1.0,1,1.4220300912857056,419,1.0,1 +14419,9,1.0,1,1.5070289373397827,420,1.0,1 +14420,9,1.0,1,1.289031744003296,421,0.0,1 +14421,9,0.0,1,1.700026512145996,422,0.0,1 +14422,9,1.0,1,1.469029426574707,423,0.0,1 +14423,9,1.0,1,2.051023006439209,424,1.0,1 +14424,9,1.0,1,1.1590315103530884,425,0.0,1 +14425,9,0.0,1,2.0040225982666016,426,1.0,1 +14426,9,0.0,1,1.6640269756317139,427,0.0,1 +14427,9,1.0,1,1.8020251989364624,428,0.0,1 +14428,9,1.0,1,1.9040238857269287,429,1.0,1 +14429,9,1.0,1,1.840024709701538,430,1.0,1 +14430,9,0.0,1,1.564028263092041,431,0.0,1 +14431,9,1.0,1,1.560028314590454,432,1.0,1 +14432,9,1.0,1,1.889024019241333,433,1.0,1 +14433,9,1.0,1,1.1800315380096436,434,1.0,1 +14434,9,1.0,1,1.3470309972763062,435,1.0,1 +14435,9,1.0,1,1.403030276298523,436,1.0,1 +14436,9,1.0,1,1.2690317630767822,437,1.0,1 +14437,9,1.0,1,1.221031665802002,438,1.0,1 +14438,9,1.0,1,1.2860318422317505,439,1.0,1 +14439,9,1.0,1,1.1800315380096436,440,0.0,1 +14440,9,1.0,1,1.5880279541015625,441,1.0,1 +14441,9,1.0,1,1.4010303020477295,442,1.0,1 +14442,9,1.0,1,1.801025152206421,443,1.0,1 +14443,9,1.0,1,2.124026298522949,444,0.0,1 +14444,9,1.0,1,1.4330298900604248,445,1.0,1 +14445,9,1.0,1,1.5990278720855713,446,1.0,1 +14446,9,1.0,1,1.3210313320159912,447,0.0,1 +14447,9,0.0,1,1.5560283660888672,448,1.0,1 +14448,9,0.0,1,1.1860315799713135,449,0.0,1 +14449,9,1.0,1,1.6260274648666382,450,1.0,1 +14450,9,1.0,1,1.443029761314392,451,1.0,1 +14451,9,1.0,1,1.9420233964920044,452,1.0,1 +14452,9,1.0,1,2.103025436401367,453,1.0,1 +14453,9,1.0,1,1.403030276298523,454,0.0,1 +14454,9,0.0,1,1.2530317306518555,455,0.0,1 +14455,9,1.0,1,1.7790255546569824,456,0.0,1 +14456,9,0.0,1,1.17803156375885,457,1.0,1 +14457,9,0.0,1,1.9030239582061768,458,1.0,1 +14458,9,0.0,1,1.2310316562652588,459,0.0,1 +14459,9,1.0,1,2.1710286140441895,460,0.0,1 +14460,9,0.0,1,1.7400259971618652,461,0.0,1 +14461,9,0.0,1,1.6480271816253662,462,0.0,1 +14462,9,0.0,1,1.8570244312286377,463,0.0,1 +14463,9,1.0,1,1.3400311470031738,464,1.0,1 +14464,9,1.0,1,1.2390316724777222,465,1.0,1 +14465,9,1.0,1,1.5500284433364868,466,1.0,1 +14466,9,1.0,1,1.3660308122634888,467,1.0,1 +14467,9,1.0,1,1.520028829574585,468,0.0,1 +14468,9,0.0,1,1.6320273876190186,469,1.0,1 +14469,9,0.0,1,1.4260300397872925,470,0.0,1 +14470,9,1.0,1,1.6920266151428223,471,1.0,1 +14471,9,1.0,1,1.655027151107788,472,0.0,1 +14472,9,1.0,1,1.6940265893936157,473,1.0,1 +14473,9,1.0,1,1.5110288858413696,474,1.0,1 +14474,9,1.0,1,1.958023190498352,475,1.0,1 +14475,9,1.0,1,1.3570308685302734,476,0.0,1 +14476,9,1.0,1,2.079024314880371,477,1.0,1 +14477,9,1.0,1,1.686026692390442,478,1.0,1 +14478,9,1.0,1,1.7610256671905518,479,0.0,1 +14479,9,1.0,1,1.3720307350158691,480,1.0,1 +14480,9,1.0,1,1.2830318212509155,481,0.0,1 +14481,9,0.0,1,1.2270317077636719,482,0.0,1 +14482,9,0.0,1,1.5010290145874023,483,1.0,1 +14483,9,0.0,1,1.2320317029953003,484,0.0,1 +14484,9,0.0,1,1.9940227270126343,485,0.0,1 +14485,9,1.0,1,1.4970290660858154,486,1.0,1 +14486,9,1.0,1,1.4620295763015747,487,1.0,1 +14487,9,1.0,1,1.748025894165039,488,1.0,1 +14488,9,1.0,1,1.6350274085998535,489,0.0,1 +14489,9,1.0,1,1.616027593612671,490,1.0,1 +14490,9,1.0,1,1.5850279331207275,491,0.0,1 +14491,9,0.0,1,1.4850292205810547,492,1.0,1 +14492,9,0.0,1,1.89302396774292,493,0.0,1 +14493,9,0.0,1,1.187031626701355,494,0.0,1 +14494,9,0.0,1,1.7860254049301147,495,0.0,1 +14495,9,1.0,1,1.6480271816253662,496,0.0,1 +14496,9,0.0,1,1.8720242977142334,497,1.0,1 +14497,9,0.0,1,1.14803147315979,498,0.0,1 +14498,9,1.0,1,1.6280274391174316,499,0.0,1 +14499,9,0.0,1,1.9120237827301025,500,0.0,1 +14500,9,0.0,2,1.8940240144729614,1,0.0,1 +14501,9,0.0,2,1.21403169631958,2,1.0,1 +14502,9,0.0,2,1.3860305547714233,3,0.0,1 +14503,9,0.0,2,1.2220317125320435,4,1.0,1 +14504,9,0.0,2,1.4810292720794678,5,1.0,1 +14505,9,1.0,2,2.289033889770508,6,0.0,1 +14506,9,0.0,2,1.3270312547683716,7,0.0,1 +14507,9,0.0,2,1.4050302505493164,8,1.0,1 +14508,9,0.0,2,1.336031198501587,9,1.0,1 +14509,9,0.0,2,1.1700315475463867,10,0.0,1 +14510,9,1.0,2,1.9550232887268066,11,1.0,1 +14511,9,1.0,2,1.157031536102295,12,0.0,1 +14512,9,0.0,2,1.6490271091461182,13,0.0,1 +14513,9,0.0,2,1.3350311517715454,14,1.0,1 +14514,9,0.0,2,1.7750256061553955,15,1.0,1 +14515,9,0.0,2,1.3390311002731323,16,1.0,1 +14516,9,0.0,2,1.2700318098068237,17,0.0,1 +14517,9,0.0,2,1.8670244216918945,18,0.0,1 +14518,9,1.0,2,1.6240274906158447,19,1.0,1 +14519,9,1.0,2,1.660027027130127,20,1.0,1 +14520,9,1.0,2,1.4420298337936401,21,0.0,1 +14521,9,0.0,2,1.3380311727523804,22,1.0,1 +14522,9,0.0,2,1.311031460762024,23,1.0,1 +14523,9,1.0,2,1.4050302505493164,24,1.0,1 +14524,9,0.0,2,1.7140263319015503,25,1.0,1 +14525,9,0.0,2,1.5590283870697021,26,0.0,1 +14526,9,1.0,2,1.17803156375885,27,0.0,1 +14527,9,0.0,2,1.793025255203247,28,0.0,1 +14528,9,1.0,2,1.8830242156982422,29,0.0,1 +14529,9,1.0,2,1.2520318031311035,30,1.0,1 +14530,9,1.0,2,1.6900266408920288,31,0.0,1 +14531,9,0.0,2,2.1670284271240234,32,0.0,1 +14532,9,0.0,2,1.1290315389633179,33,0.0,1 +14533,9,1.0,2,1.9260236024856567,34,0.0,1 +14534,9,1.0,2,1.7340260744094849,35,0.0,1 +14535,9,0.0,2,1.937023401260376,36,0.0,1 +14536,9,1.0,2,1.5360286235809326,37,1.0,1 +14537,9,1.0,2,1.567028284072876,38,1.0,1 +14538,9,1.0,2,1.3640308380126953,39,0.0,1 +14539,9,0.0,2,1.373030662536621,40,0.0,1 +14540,9,0.0,2,1.5350285768508911,41,0.0,1 +14541,9,1.0,2,1.7670257091522217,42,0.0,1 +14542,9,1.0,2,1.421030044555664,43,0.0,1 +14543,9,1.0,2,1.8190250396728516,44,0.0,1 +14544,9,1.0,2,1.9940227270126343,45,1.0,1 +14545,9,1.0,2,2.0120224952697754,46,0.0,1 +14546,9,1.0,2,1.6400272846221924,47,1.0,1 +14547,9,1.0,2,1.281031847000122,48,0.0,1 +14548,9,0.0,2,1.6460272073745728,49,0.0,1 +14549,9,0.0,2,1.2730318307876587,50,0.0,1 +14550,9,1.0,2,1.7840254306793213,51,1.0,1 +14551,9,1.0,2,1.3680307865142822,52,0.0,1 +14552,9,1.0,2,1.476029396057129,53,0.0,1 +14553,9,1.0,2,1.33203125,54,1.0,1 +14554,9,1.0,2,2.028022289276123,55,0.0,1 +14555,9,1.0,2,1.4890291690826416,56,1.0,1 +14556,9,1.0,2,1.2250317335128784,57,1.0,1 +14557,9,1.0,2,1.4890291690826416,58,0.0,1 +14558,9,0.0,2,1.9540232419967651,59,0.0,1 +14559,9,0.0,2,1.1750315427780151,60,1.0,1 +14560,9,0.0,2,1.2950316667556763,61,0.0,1 +14561,9,0.0,2,1.7900253534317017,62,0.0,1 +14562,9,1.0,2,1.605027675628662,63,1.0,1 +14563,9,1.0,2,1.1610316038131714,64,0.0,1 +14564,9,0.0,2,1.7570257186889648,65,1.0,1 +14565,9,1.0,2,1.9240236282348633,66,1.0,1 +14566,9,0.0,2,1.6190276145935059,67,0.0,1 +14567,9,1.0,2,1.3500310182571411,68,1.0,1 +14568,9,1.0,2,1.84102463722229,69,1.0,1 +14569,9,1.0,2,1.3130314350128174,70,0.0,1 +14570,9,0.0,2,1.686026692390442,71,0.0,1 +14571,9,1.0,2,1.6010277271270752,72,0.0,1 +14572,9,0.0,2,1.358030915260315,73,0.0,1 +14573,9,1.0,2,1.7840254306793213,74,1.0,1 +14574,9,1.0,2,1.6400272846221924,75,1.0,1 +14575,9,1.0,2,1.4670294523239136,76,1.0,1 +14576,9,1.0,2,1.476029396057129,77,1.0,1 +14577,9,1.0,2,1.254031777381897,78,1.0,1 +14578,9,1.0,2,1.586027979850769,79,0.0,1 +14579,9,1.0,2,1.9300235509872437,80,1.0,1 +14580,9,1.0,2,1.7090263366699219,81,0.0,1 +14581,9,0.0,2,1.1520315408706665,82,0.0,1 +14582,9,1.0,2,1.4270299673080444,83,1.0,1 +14583,9,1.0,2,1.5180288553237915,84,1.0,1 +14584,9,1.0,2,1.542028546333313,85,0.0,1 +14585,9,1.0,2,1.2970316410064697,86,1.0,1 +14586,9,1.0,2,1.747025966644287,87,1.0,1 +14587,9,1.0,2,1.7140263319015503,88,0.0,1 +14588,9,1.0,2,1.5880279541015625,89,1.0,1 +14589,9,1.0,2,1.9160237312316895,90,1.0,1 +14590,9,1.0,2,1.704026460647583,91,0.0,1 +14591,9,1.0,2,2.1280264854431152,92,0.0,1 +14592,9,1.0,2,1.7320261001586914,93,1.0,1 +14593,9,1.0,2,1.2490317821502686,94,0.0,1 +14594,9,1.0,2,1.6410272121429443,95,1.0,1 +14595,9,1.0,2,1.4070302248001099,96,1.0,1 +14596,9,1.0,2,1.2530317306518555,97,0.0,1 +14597,9,0.0,2,1.7220262289047241,98,1.0,1 +14598,9,0.0,2,1.1320314407348633,99,0.0,1 +14599,9,0.0,2,1.380030632019043,100,0.0,1 +14600,9,1.0,2,1.663027048110962,101,0.0,1 +14601,9,1.0,2,1.5850279331207275,102,0.0,1 +14602,9,1.0,2,2.2600326538085938,103,1.0,1 +14603,9,1.0,2,1.5950279235839844,104,0.0,1 +14604,9,0.0,2,1.6040277481079102,105,0.0,1 +14605,9,0.0,2,1.4630295038223267,106,1.0,1 +14606,9,0.0,2,1.1640315055847168,107,1.0,1 +14607,9,0.0,2,1.311031460762024,108,0.0,1 +14608,9,0.0,2,1.1950316429138184,109,1.0,1 +14609,9,0.0,2,1.6140276193618774,110,0.0,1 +14610,9,0.0,2,1.153031587600708,111,1.0,1 +14611,9,0.0,2,1.1380314826965332,112,0.0,1 +14612,9,0.0,2,1.3250312805175781,113,1.0,1 +14613,9,0.0,2,1.2700318098068237,114,0.0,1 +14614,9,1.0,2,2.099025249481201,115,1.0,1 +14615,9,1.0,2,2.0180225372314453,116,0.0,1 +14616,9,0.0,2,1.4110301733016968,117,0.0,1 +14617,9,1.0,2,1.6270275115966797,118,1.0,1 +14618,9,1.0,2,1.3300312757492065,119,1.0,1 +14619,9,1.0,2,1.3080315589904785,120,0.0,1 +14620,9,1.0,2,1.6520271301269531,121,1.0,1 +14621,9,1.0,2,1.3460310697555542,122,0.0,1 +14622,9,1.0,2,2.2070302963256836,123,0.0,1 +14623,9,0.0,2,1.7890253067016602,124,0.0,1 +14624,9,0.0,2,1.3120315074920654,125,0.0,1 +14625,9,0.0,2,1.8160250186920166,126,0.0,1 +14626,9,0.0,2,1.4610295295715332,127,0.0,1 +14627,9,0.0,2,1.3240313529968262,128,0.0,1 +14628,9,0.0,2,1.1460314989089966,129,1.0,1 +14629,9,0.0,2,1.2870317697525024,130,0.0,1 +14630,9,0.0,2,1.5040290355682373,131,0.0,1 +14631,9,0.0,2,1.981022834777832,132,0.0,1 +14632,9,0.0,2,1.4700294733047485,133,1.0,1 +14633,9,0.0,2,1.7850253582000732,134,1.0,1 +14634,9,0.0,2,1.1980316638946533,135,1.0,1 +14635,9,0.0,2,1.2560317516326904,136,1.0,1 +14636,9,0.0,2,1.2590317726135254,137,1.0,1 +14637,9,0.0,2,1.3970303535461426,138,1.0,1 +14638,9,0.0,2,1.2910317182540894,139,1.0,1 +14639,9,0.0,2,1.5280287265777588,140,0.0,1 +14640,9,1.0,2,1.3920304775238037,141,1.0,1 +14641,9,1.0,2,1.3790305852890015,142,0.0,1 +14642,9,1.0,2,1.4870291948318481,143,1.0,1 +14643,9,1.0,2,1.2010316848754883,144,1.0,1 +14644,9,1.0,2,1.5270286798477173,145,1.0,1 +14645,9,1.0,2,1.3970303535461426,146,1.0,1 +14646,9,1.0,2,1.257031798362732,147,0.0,1 +14647,9,0.0,2,1.4530296325683594,148,0.0,1 +14648,9,0.0,2,1.6940265893936157,149,1.0,1 +14649,9,1.0,2,1.4580296277999878,150,0.0,1 +14650,9,0.0,2,1.336031198501587,151,1.0,1 +14651,9,0.0,2,1.7690255641937256,152,1.0,1 +14652,9,0.0,2,1.3200314044952393,153,0.0,1 +14653,9,1.0,2,1.402030348777771,154,0.0,1 +14654,9,0.0,2,1.3300312757492065,155,0.0,1 +14655,9,1.0,2,1.2530317306518555,156,1.0,1 +14656,9,1.0,2,1.987022876739502,157,0.0,1 +14657,9,1.0,2,1.6390273571014404,158,1.0,1 +14658,9,1.0,2,1.6180275678634644,159,1.0,1 +14659,9,1.0,2,1.5400285720825195,160,0.0,1 +14660,9,0.0,2,1.6720268726348877,161,0.0,1 +14661,9,1.0,2,1.560028314590454,162,1.0,1 +14662,9,1.0,2,1.1950316429138184,163,0.0,1 +14663,9,0.0,2,1.7720255851745605,164,1.0,1 +14664,9,0.0,2,1.4320299625396729,165,1.0,1 +14665,9,0.0,2,1.1340315341949463,166,0.0,1 +14666,9,1.0,2,1.5950279235839844,167,0.0,1 +14667,9,0.0,2,1.3220313787460327,168,1.0,1 +14668,9,0.0,2,2.030022144317627,169,0.0,1 +14669,9,0.0,2,1.988022804260254,170,0.0,1 +14670,9,1.0,2,1.9200236797332764,171,1.0,1 +14671,9,1.0,2,1.1440315246582031,172,1.0,1 +14672,9,1.0,2,1.495029091835022,173,1.0,1 +14673,9,1.0,2,1.4170300960540771,174,1.0,1 +14674,9,1.0,2,1.8720242977142334,175,1.0,1 +14675,9,1.0,2,1.402030348777771,176,0.0,1 +14676,9,1.0,2,1.4300299882888794,177,1.0,1 +14677,9,1.0,2,1.6220275163650513,178,0.0,1 +14678,9,1.0,2,1.8110251426696777,179,1.0,1 +14679,9,1.0,2,1.4040303230285645,180,0.0,1 +14680,9,0.0,2,1.2660317420959473,181,1.0,1 +14681,9,0.0,2,1.2220317125320435,182,0.0,1 +14682,9,0.0,2,1.5260287523269653,183,0.0,1 +14683,9,0.0,2,1.2390316724777222,184,0.0,1 +14684,9,0.0,2,1.3250312805175781,185,1.0,1 +14685,9,0.0,2,1.2970316410064697,186,1.0,1 +14686,9,0.0,2,1.4220300912857056,187,0.0,1 +14687,9,0.0,2,1.8040251731872559,188,0.0,1 +14688,9,1.0,2,1.3380311727523804,189,1.0,1 +14689,9,1.0,2,1.3830305337905884,190,1.0,1 +14690,9,1.0,2,1.5920279026031494,191,0.0,1 +14691,9,1.0,2,1.6260274648666382,192,0.0,1 +14692,9,0.0,2,1.7830255031585693,193,1.0,1 +14693,9,0.0,2,1.4550296068191528,194,0.0,1 +14694,9,1.0,2,1.6280274391174316,195,1.0,1 +14695,9,1.0,2,1.3850305080413818,196,1.0,1 +14696,9,1.0,2,1.2680318355560303,197,1.0,1 +14697,9,1.0,2,1.4090301990509033,198,1.0,1 +14698,9,0.0,2,1.245031714439392,199,1.0,1 +14699,9,0.0,2,2.1810288429260254,200,1.0,1 +14700,9,0.0,2,1.7580257654190063,201,1.0,1 +14701,9,1.0,2,1.7090263366699219,202,1.0,1 +14702,9,1.0,2,1.4190300703048706,203,0.0,1 +14703,9,0.0,2,1.1860315799713135,204,1.0,1 +14704,9,0.0,2,1.2160316705703735,205,1.0,1 +14705,9,0.0,2,1.3880305290222168,206,0.0,1 +14706,9,0.0,2,1.7160263061523438,207,1.0,1 +14707,9,0.0,2,1.4920291900634766,208,0.0,1 +14708,9,1.0,2,1.987022876739502,209,1.0,1 +14709,9,1.0,2,1.2070316076278687,210,0.0,1 +14710,9,0.0,2,1.7140263319015503,211,0.0,1 +14711,9,0.0,2,1.3190313577651978,212,1.0,1 +14712,9,0.0,2,1.9660230875015259,213,0.0,1 +14713,9,1.0,2,1.4640295505523682,214,1.0,1 +14714,9,1.0,2,1.284031867980957,215,1.0,1 +14715,9,1.0,2,1.4310299158096313,216,1.0,1 +14716,9,1.0,2,1.4010303020477295,217,1.0,1 +14717,9,1.0,2,1.1130315065383911,218,1.0,1 +14718,9,1.0,2,1.3840305805206299,219,1.0,1 +14719,9,1.0,2,1.3700307607650757,220,0.0,1 +14720,9,0.0,2,1.3090314865112305,221,1.0,1 +14721,9,0.0,2,1.2390316724777222,222,1.0,1 +14722,9,0.0,2,1.2090317010879517,223,1.0,1 +14723,9,0.0,2,1.4990290403366089,224,0.0,1 +14724,9,0.0,2,1.278031826019287,225,1.0,1 +14725,9,0.0,2,1.2730318307876587,226,1.0,1 +14726,9,0.0,2,1.2290316820144653,227,1.0,1 +14727,9,0.0,2,1.5390286445617676,228,1.0,1 +14728,9,0.0,2,1.726026177406311,229,0.0,1 +14729,9,1.0,2,1.8110251426696777,230,0.0,1 +14730,9,0.0,2,1.7290260791778564,231,1.0,1 +14731,9,0.0,2,1.1700315475463867,232,1.0,1 +14732,9,0.0,2,1.126031517982483,233,0.0,1 +14733,9,0.0,2,1.3370311260223389,234,0.0,1 +14734,9,0.0,2,1.753025770187378,235,0.0,1 +14735,9,0.0,2,1.22003173828125,236,1.0,1 +14736,9,0.0,2,1.380030632019043,237,0.0,1 +14737,9,1.0,2,2.1960296630859375,238,0.0,1 +14738,9,0.0,2,2.026022434234619,239,1.0,1 +14739,9,0.0,2,1.224031686782837,240,0.0,1 +14740,9,0.0,2,1.7400259971618652,241,0.0,1 +14741,9,0.0,2,2.0090224742889404,242,1.0,1 +14742,9,1.0,2,1.3820306062698364,243,1.0,1 +14743,9,1.0,2,1.7570257186889648,244,0.0,1 +14744,9,1.0,2,1.7570257186889648,245,1.0,1 +14745,9,0.0,2,1.3010315895080566,246,0.0,1 +14746,9,1.0,2,1.1630315780639648,247,1.0,1 +14747,9,1.0,2,1.6250274181365967,248,0.0,1 +14748,9,1.0,2,2.7080535888671875,249,0.0,1 +14749,9,1.0,2,1.6350274085998535,250,1.0,1 +14750,9,0.0,2,1.4570295810699463,251,0.0,1 +14751,9,1.0,2,1.4740294218063354,252,1.0,1 +14752,9,1.0,2,1.3970303535461426,253,1.0,1 +14753,9,1.0,2,1.2310316562652588,254,0.0,1 +14754,9,0.0,2,1.351030945777893,255,0.0,1 +14755,9,1.0,2,1.8060251474380493,256,0.0,1 +14756,9,0.0,2,1.5140289068222046,257,0.0,1 +14757,9,1.0,2,1.608027696609497,258,1.0,1 +14758,9,1.0,2,1.2050316333770752,259,0.0,1 +14759,9,1.0,2,1.5530283451080322,260,0.0,1 +14760,9,1.0,2,1.9650230407714844,261,0.0,1 +14761,9,0.0,2,1.1080315113067627,262,0.0,1 +14762,9,0.0,2,1.5500284433364868,263,1.0,1 +14763,9,0.0,2,1.5320286750793457,264,0.0,1 +14764,9,1.0,2,1.4570295810699463,265,1.0,1 +14765,9,1.0,2,1.3150314092636108,266,1.0,1 +14766,9,1.0,2,1.3260313272476196,267,1.0,1 +14767,9,1.0,2,1.7720255851745605,268,0.0,1 +14768,9,1.0,2,1.3000316619873047,269,1.0,1 +14769,9,1.0,2,1.6070277690887451,270,0.0,1 +14770,9,0.0,2,1.5820280313491821,271,0.0,1 +14771,9,1.0,2,1.4520297050476074,272,0.0,1 +14772,9,1.0,2,1.4070302248001099,273,0.0,1 +14773,9,0.0,2,1.2930316925048828,274,1.0,1 +14774,9,0.0,2,1.2020316123962402,275,0.0,1 +14775,9,0.0,2,1.3560309410095215,276,1.0,1 +14776,9,0.0,2,1.6000277996063232,277,1.0,1 +14777,9,0.0,2,1.3010315895080566,278,1.0,1 +14778,9,0.0,2,1.2160316705703735,279,1.0,1 +14779,9,0.0,2,1.2030316591262817,280,1.0,1 +14780,9,0.0,2,1.498029112815857,281,1.0,1 +14781,9,0.0,2,1.3250312805175781,282,1.0,1 +14782,9,0.0,2,1.5060290098190308,283,0.0,1 +14783,9,0.0,2,1.564028263092041,284,0.0,1 +14784,9,0.0,2,1.8160250186920166,285,0.0,1 +14785,9,1.0,2,1.1830315589904785,286,0.0,1 +14786,9,0.0,2,1.8340247869491577,287,0.0,1 +14787,9,0.0,2,1.4440298080444336,288,0.0,1 +14788,9,0.0,2,1.3520309925079346,289,1.0,1 +14789,9,0.0,2,1.2800318002700806,290,1.0,1 +14790,9,0.0,2,1.2250317335128784,291,0.0,1 +14791,9,0.0,2,1.245031714439392,292,1.0,1 +14792,9,0.0,2,1.255031704902649,293,1.0,1 +14793,9,0.0,2,1.4310299158096313,294,0.0,1 +14794,9,0.0,2,1.5730280876159668,295,0.0,1 +14795,9,0.0,2,1.703026533126831,296,0.0,1 +14796,9,0.0,2,1.660027027130127,297,0.0,1 +14797,9,0.0,2,1.3160314559936523,298,0.0,1 +14798,9,0.0,2,2.308034896850586,299,0.0,1 +14799,9,0.0,2,1.3300312757492065,300,0.0,1 +14800,9,0.0,2,1.2990316152572632,301,0.0,1 +14801,9,0.0,2,2.0000226497650146,302,1.0,1 +14802,9,0.0,2,1.4880292415618896,303,0.0,1 +14803,9,0.0,2,1.1380314826965332,304,0.0,1 +14804,9,1.0,2,1.8730242252349854,305,0.0,1 +14805,9,0.0,2,2.092024803161621,306,0.0,1 +14806,9,0.0,2,1.1970316171646118,307,1.0,1 +14807,9,0.0,2,1.8640244007110596,308,0.0,1 +14808,9,0.0,2,2.389038562774658,309,1.0,1 +14809,9,0.0,2,1.2310316562652588,310,0.0,1 +14810,9,0.0,2,1.2830318212509155,311,1.0,1 +14811,9,0.0,2,1.2090317010879517,312,1.0,1 +14812,9,0.0,2,1.678026795387268,313,1.0,1 +14813,9,0.0,2,1.1490315198898315,314,1.0,1 +14814,9,0.0,2,1.4150301218032837,315,0.0,1 +14815,9,1.0,2,1.3680307865142822,316,0.0,1 +14816,9,1.0,2,1.6260274648666382,317,1.0,1 +14817,9,0.0,2,1.8990240097045898,318,0.0,1 +14818,9,0.0,2,1.5840280055999756,319,0.0,1 +14819,9,1.0,2,1.609027624130249,320,0.0,1 +14820,9,0.0,2,1.5890278816223145,321,1.0,1 +14821,9,0.0,2,1.2250317335128784,322,0.0,1 +14822,9,1.0,2,1.5400285720825195,323,0.0,1 +14823,9,1.0,2,1.3470309972763062,324,1.0,1 +14824,9,1.0,2,1.289031744003296,325,1.0,1 +14825,9,1.0,2,1.8970239162445068,326,0.0,1 +14826,9,1.0,2,1.8750243186950684,327,1.0,1 +14827,9,1.0,2,1.6000277996063232,328,0.0,1 +14828,9,0.0,2,1.8620244264602661,329,1.0,1 +14829,9,0.0,2,1.2300317287445068,330,1.0,1 +14830,9,0.0,2,1.14803147315979,331,0.0,1 +14831,9,1.0,2,1.3090314865112305,332,1.0,1 +14832,9,1.0,2,1.2020316123962402,333,0.0,1 +14833,9,0.0,2,1.939023494720459,334,0.0,1 +14834,9,0.0,2,1.6390273571014404,335,0.0,1 +14835,9,0.0,2,2.1450271606445312,336,0.0,1 +14836,9,1.0,2,1.4960291385650635,337,0.0,1 +14837,9,1.0,2,1.254031777381897,338,0.0,1 +14838,9,0.0,2,2.105025291442871,339,0.0,1 +14839,9,0.0,2,1.2610317468643188,340,1.0,1 +14840,9,0.0,2,1.3970303535461426,341,1.0,1 +14841,9,0.0,2,1.1970316171646118,342,0.0,1 +14842,9,0.0,2,1.5020290613174438,343,0.0,1 +14843,9,0.0,2,1.7910254001617432,344,0.0,1 +14844,9,0.0,2,1.3870304822921753,345,0.0,1 +14845,9,0.0,2,1.9340234994888306,346,1.0,1 +14846,9,0.0,2,1.2000316381454468,347,0.0,1 +14847,9,1.0,2,1.428030014038086,348,0.0,1 +14848,9,1.0,2,1.2640317678451538,349,0.0,1 +14849,9,1.0,2,1.8520245552062988,350,0.0,1 +14850,9,1.0,2,1.5400285720825195,351,1.0,1 +14851,9,1.0,2,2.116025924682617,352,1.0,1 +14852,9,1.0,2,1.6420272588729858,353,0.0,1 +14853,9,0.0,2,1.4440298080444336,354,0.0,1 +14854,9,1.0,2,1.7460259199142456,355,1.0,1 +14855,9,1.0,2,1.2560317516326904,356,1.0,1 +14856,9,1.0,2,1.4650294780731201,357,1.0,1 +14857,9,1.0,2,1.3740307092666626,358,0.0,1 +14858,9,1.0,2,1.3710306882858276,359,1.0,1 +14859,9,1.0,2,1.425029993057251,360,1.0,1 +14860,9,1.0,2,1.6140276193618774,361,0.0,1 +14861,9,1.0,2,1.3820306062698364,362,0.0,1 +14862,9,0.0,2,1.3720307350158691,363,1.0,1 +14863,9,0.0,2,1.1800315380096436,364,0.0,1 +14864,9,1.0,2,1.895024061203003,365,1.0,1 +14865,9,1.0,2,1.2680318355560303,366,1.0,1 +14866,9,1.0,2,1.2700318098068237,367,1.0,1 +14867,9,1.0,2,1.4870291948318481,368,0.0,1 +14868,9,0.0,2,1.6290273666381836,369,0.0,1 +14869,9,1.0,2,2.345036506652832,370,0.0,1 +14870,9,0.0,2,2.046022653579712,371,0.0,1 +14871,9,0.0,2,1.7570257186889648,372,1.0,1 +14872,9,0.0,2,1.8630244731903076,373,0.0,1 +14873,9,0.0,2,1.282031774520874,374,0.0,1 +14874,9,0.0,2,1.6790268421173096,375,1.0,1 +14875,9,0.0,2,1.1980316638946533,376,1.0,1 +14876,9,0.0,2,1.2400317192077637,377,0.0,1 +14877,9,1.0,2,2.4960436820983887,378,0.0,1 +14878,9,0.0,2,1.9450232982635498,379,0.0,1 +14879,9,0.0,2,1.2050316333770752,380,1.0,1 +14880,9,0.0,2,1.3190313577651978,381,0.0,1 +14881,9,0.0,2,1.3460310697555542,382,0.0,1 +14882,9,0.0,2,1.2980316877365112,383,0.0,1 +14883,9,0.0,2,1.215031623840332,384,0.0,1 +14884,9,0.0,2,1.307031512260437,385,1.0,1 +14885,9,0.0,2,1.1960315704345703,386,0.0,1 +14886,9,0.0,2,1.6240274906158447,387,0.0,1 +14887,9,0.0,2,1.2250317335128784,388,0.0,1 +14888,9,0.0,2,1.513028860092163,389,0.0,1 +14889,9,1.0,2,2.4200401306152344,390,1.0,1 +14890,9,1.0,2,1.3050315380096436,391,1.0,1 +14891,9,1.0,2,1.3840305805206299,392,0.0,1 +14892,9,0.0,2,1.8050251007080078,393,1.0,1 +14893,9,0.0,2,1.2230316400527954,394,1.0,1 +14894,9,0.0,2,1.1880316734313965,395,1.0,1 +14895,9,0.0,2,1.4540296792984009,396,1.0,1 +14896,9,0.0,2,1.420030117034912,397,0.0,1 +14897,9,1.0,2,1.7290260791778564,398,1.0,1 +14898,9,1.0,2,1.311031460762024,399,1.0,1 +14899,9,1.0,2,1.5370285511016846,400,0.0,1 +14900,9,0.0,2,1.126031517982483,401,1.0,1 +14901,9,0.0,2,1.1370315551757812,402,0.0,1 +14902,9,0.0,2,2.2060301303863525,403,0.0,1 +14903,9,0.0,2,1.2660317420959473,404,0.0,1 +14904,9,0.0,2,1.2750318050384521,405,0.0,1 +14905,9,1.0,2,1.5090289115905762,406,1.0,1 +14906,9,1.0,2,1.2160316705703735,407,0.0,1 +14907,9,1.0,2,1.686026692390442,408,0.0,1 +14908,9,0.0,2,1.359030842781067,409,0.0,1 +14909,9,0.0,2,1.3130314350128174,410,0.0,1 +14910,9,1.0,2,1.51702880859375,411,0.0,1 +14911,9,0.0,2,1.3870304822921753,412,1.0,1 +14912,9,0.0,2,1.221031665802002,413,0.0,1 +14913,9,1.0,2,1.9630231857299805,414,1.0,1 +14914,9,1.0,2,1.4970290660858154,415,1.0,1 +14915,9,1.0,2,1.1290315389633179,416,1.0,1 +14916,9,1.0,2,1.3740307092666626,417,1.0,1 +14917,9,1.0,2,1.5990278720855713,418,0.0,1 +14918,9,0.0,2,1.217031717300415,419,1.0,1 +14919,9,0.0,2,1.7120263576507568,420,0.0,1 +14920,9,0.0,2,1.3560309410095215,421,0.0,1 +14921,9,1.0,2,1.3390311002731323,422,1.0,1 +14922,9,1.0,2,1.5450284481048584,423,1.0,1 +14923,9,1.0,2,1.3370311260223389,424,1.0,1 +14924,9,1.0,2,1.5700281858444214,425,1.0,1 +14925,9,0.0,2,1.8120250701904297,426,1.0,1 +14926,9,0.0,2,1.8210248947143555,427,0.0,1 +14927,9,1.0,2,1.2270317077636719,428,0.0,1 +14928,9,0.0,2,1.4520297050476074,429,0.0,1 +14929,9,1.0,2,1.5830280780792236,430,0.0,1 +14930,9,0.0,2,1.1830315589904785,431,1.0,1 +14931,9,0.0,2,1.157031536102295,432,0.0,1 +14932,9,0.0,2,1.2910317182540894,433,0.0,1 +14933,9,0.0,2,1.2710317373275757,434,1.0,1 +14934,9,0.0,2,1.521028757095337,435,1.0,1 +14935,9,0.0,2,1.4330298900604248,436,1.0,1 +14936,9,0.0,2,1.282031774520874,437,1.0,1 +14937,9,0.0,2,1.4600296020507812,438,0.0,1 +14938,9,1.0,2,2.2050299644470215,439,1.0,1 +14939,9,1.0,2,1.520028829574585,440,0.0,1 +14940,9,0.0,2,1.9010238647460938,441,0.0,1 +14941,9,1.0,2,1.866024374961853,442,1.0,1 +14942,9,1.0,2,1.7330260276794434,443,0.0,1 +14943,9,1.0,2,1.3790305852890015,444,1.0,1 +14944,9,1.0,2,1.6280274391174316,445,0.0,1 +14945,9,1.0,2,1.7690255641937256,446,1.0,1 +14946,9,1.0,2,1.1750315427780151,447,0.0,1 +14947,9,0.0,2,1.885024070739746,448,1.0,1 +14948,9,0.0,2,1.1210315227508545,449,0.0,1 +14949,9,1.0,2,1.3950303792953491,450,1.0,1 +14950,9,1.0,2,1.4840292930603027,451,1.0,1 +14951,9,1.0,2,1.2580317258834839,452,1.0,1 +14952,9,1.0,2,1.5410284996032715,453,1.0,1 +14953,9,1.0,2,1.3480310440063477,454,0.0,1 +14954,9,1.0,2,1.2930316925048828,455,0.0,1 +14955,9,1.0,2,1.4670294523239136,456,0.0,1 +14956,9,0.0,2,1.5920279026031494,457,0.0,1 +14957,9,0.0,2,1.9890227317810059,458,0.0,1 +14958,9,0.0,2,1.3410310745239258,459,0.0,1 +14959,9,1.0,2,1.7810254096984863,460,1.0,1 +14960,9,1.0,2,1.8100250959396362,461,1.0,1 +14961,9,1.0,2,1.565028190612793,462,0.0,1 +14962,9,0.0,2,1.9280235767364502,463,0.0,1 +14963,9,1.0,2,1.5820280313491821,464,1.0,1 +14964,9,1.0,2,1.6220275163650513,465,0.0,1 +14965,9,0.0,2,1.663027048110962,466,0.0,1 +14966,9,1.0,2,1.3850305080413818,467,1.0,1 +14967,9,1.0,2,1.491029143333435,468,0.0,1 +14968,9,1.0,2,1.6930265426635742,469,1.0,1 +14969,9,1.0,2,1.1790316104888916,470,0.0,1 +14970,9,0.0,2,1.2100316286087036,471,0.0,1 +14971,9,1.0,2,1.4490296840667725,472,0.0,1 +14972,9,0.0,2,1.516028881072998,473,0.0,1 +14973,9,1.0,2,1.8310248851776123,474,0.0,1 +14974,9,0.0,2,1.756025791168213,475,0.0,1 +14975,9,0.0,2,1.7220262289047241,476,0.0,1 +14976,9,0.0,2,1.4050302505493164,477,0.0,1 +14977,9,1.0,2,2.068023681640625,478,1.0,1 +14978,9,1.0,2,1.3640308380126953,479,1.0,1 +14979,9,0.0,2,1.6000277996063232,480,0.0,1 +14980,9,1.0,2,1.212031602859497,481,1.0,1 +14981,9,1.0,2,2.042022466659546,482,0.0,1 +14982,9,1.0,2,1.8250248432159424,483,0.0,1 +14983,9,0.0,2,1.7120263576507568,484,0.0,1 +14984,9,0.0,2,1.284031867980957,485,1.0,1 +14985,9,0.0,2,1.2660317420959473,486,0.0,1 +14986,9,0.0,2,1.2900317907333374,487,1.0,1 +14987,9,0.0,2,1.513028860092163,488,0.0,1 +14988,9,1.0,2,1.5100289583206177,489,0.0,1 +14989,9,0.0,2,1.9690229892730713,490,0.0,1 +14990,9,0.0,2,1.329031229019165,491,0.0,1 +14991,9,1.0,2,1.8940240144729614,492,1.0,1 +14992,9,1.0,2,1.6830267906188965,493,0.0,1 +14993,9,1.0,2,1.4380298852920532,494,0.0,1 +14994,9,1.0,2,2.4570417404174805,495,1.0,1 +14995,9,1.0,2,1.2940317392349243,496,0.0,1 +14996,9,1.0,2,1.4160301685333252,497,1.0,1 +14997,9,1.0,2,1.7570257186889648,498,1.0,1 +14998,9,1.0,2,1.7850253582000732,499,0.0,1 +14999,9,1.0,2,2.2650327682495117,500,1.0,1 +15000,10,0.0,0,1.4823901653289795,1,0.0,1 +15001,10,0.0,0,1.5663890838623047,2,0.0,1 +15002,10,1.0,0,1.440390706062317,3,1.0,1 +15003,10,1.0,0,1.4283908605575562,4,0.0,1 +15004,10,0.0,0,1.9313844442367554,5,0.0,1 +15005,10,1.0,0,1.7833863496780396,6,1.0,1 +15006,10,1.0,0,1.4713903665542603,7,1.0,1 +15007,10,1.0,0,1.2163927555084229,8,1.0,1 +15008,10,1.0,0,1.8383855819702148,9,0.0,1 +15009,10,1.0,0,1.3503918647766113,10,1.0,1 +15010,10,1.0,0,1.3293921947479248,11,1.0,1 +15011,10,1.0,0,1.5763890743255615,12,1.0,1 +15012,10,1.0,0,1.4753903150558472,13,1.0,1 +15013,10,1.0,0,1.3713916540145874,14,1.0,1 +15014,10,1.0,0,1.966383934020996,15,1.0,1 +15015,10,1.0,0,1.696387529373169,16,1.0,1 +15016,10,1.0,0,1.1803926229476929,17,1.0,1 +15017,10,1.0,0,1.366391658782959,18,1.0,1 +15018,10,1.0,0,1.7183871269226074,19,1.0,1 +15019,10,1.0,0,1.9063847064971924,20,1.0,1 +15020,10,1.0,0,1.2593928575515747,21,1.0,1 +15021,10,1.0,0,1.3713916540145874,22,1.0,1 +15022,10,0.0,0,1.6793876886367798,23,0.0,1 +15023,10,1.0,0,1.4553905725479126,24,1.0,1 +15024,10,1.0,0,1.3763915300369263,25,1.0,1 +15025,10,0.0,0,1.7873862981796265,26,0.0,1 +15026,10,1.0,0,1.5823888778686523,27,1.0,1 +15027,10,1.0,0,1.1903927326202393,28,1.0,1 +15028,10,1.0,0,1.4893901348114014,29,1.0,1 +15029,10,1.0,0,1.991383671760559,30,1.0,1 +15030,10,1.0,0,1.5033899545669556,31,1.0,1 +15031,10,1.0,0,1.3323920965194702,32,1.0,1 +15032,10,1.0,0,1.2413928508758545,33,1.0,1 +15033,10,1.0,0,1.317392349243164,34,1.0,1 +15034,10,1.0,0,1.510389804840088,35,1.0,1 +15035,10,1.0,0,1.3513919115066528,36,1.0,1 +15036,10,1.0,0,1.8023860454559326,37,1.0,1 +15037,10,1.0,0,1.6303882598876953,38,1.0,1 +15038,10,1.0,0,1.6433881521224976,39,1.0,1 +15039,10,1.0,0,1.527389645576477,40,0.0,1 +15040,10,0.0,0,2.067385196685791,41,0.0,1 +15041,10,0.0,0,1.6433881521224976,42,0.0,1 +15042,10,0.0,0,1.2353928089141846,43,0.0,1 +15043,10,1.0,0,1.549389362335205,44,1.0,1 +15044,10,0.0,0,1.4603904485702515,45,0.0,1 +15045,10,1.0,0,1.203392744064331,46,1.0,1 +15046,10,1.0,0,1.2873927354812622,47,1.0,1 +15047,10,0.0,0,1.3853914737701416,48,0.0,1 +15048,10,1.0,0,1.409391164779663,49,1.0,1 +15049,10,1.0,0,1.2253928184509277,50,1.0,1 +15050,10,1.0,0,1.4593905210494995,51,1.0,1 +15051,10,1.0,0,1.370391607284546,52,1.0,1 +15052,10,1.0,0,1.391391396522522,53,1.0,1 +15053,10,1.0,0,1.2883926630020142,54,1.0,1 +15054,10,0.0,0,1.6153885126113892,55,0.0,1 +15055,10,1.0,0,1.7253870964050293,56,0.0,1 +15056,10,0.0,0,1.4063911437988281,57,0.0,1 +15057,10,1.0,0,1.554389238357544,58,1.0,1 +15058,10,1.0,0,1.3643916845321655,59,1.0,1 +15059,10,1.0,0,1.5463893413543701,60,1.0,1 +15060,10,1.0,0,1.5683891773223877,61,1.0,1 +15061,10,1.0,0,1.3993912935256958,62,1.0,1 +15062,10,1.0,0,1.41339111328125,63,0.0,1 +15063,10,1.0,0,2.096386432647705,64,1.0,1 +15064,10,0.0,0,1.8753851652145386,65,1.0,1 +15065,10,1.0,0,1.4373908042907715,66,1.0,1 +15066,10,1.0,0,1.8023860454559326,67,1.0,1 +15067,10,1.0,0,1.7763864994049072,68,0.0,1 +15068,10,0.0,0,1.3383920192718506,69,0.0,1 +15069,10,0.0,0,1.579388976097107,70,0.0,1 +15070,10,1.0,0,1.6393882036209106,71,1.0,1 +15071,10,0.0,0,1.531389594078064,72,0.0,1 +15072,10,1.0,0,1.3053925037384033,73,0.0,1 +15073,10,1.0,0,1.4043911695480347,74,1.0,1 +15074,10,1.0,0,1.7763864994049072,75,1.0,1 +15075,10,1.0,0,1.6283884048461914,76,1.0,1 +15076,10,1.0,0,1.5623891353607178,77,1.0,1 +15077,10,0.0,0,1.6653878688812256,78,1.0,1 +15078,10,0.0,0,2.1623897552490234,79,0.0,1 +15079,10,1.0,0,1.6263883113861084,80,1.0,1 +15080,10,1.0,0,1.5073899030685425,81,1.0,1 +15081,10,1.0,0,1.3313921689987183,82,1.0,1 +15082,10,1.0,0,1.237392783164978,83,0.0,1 +15083,10,1.0,0,1.741386890411377,84,1.0,1 +15084,10,1.0,0,1.8223857879638672,85,1.0,1 +15085,10,1.0,0,1.6663877964019775,86,1.0,1 +15086,10,0.0,0,1.6983873844146729,87,0.0,1 +15087,10,0.0,0,1.210392713546753,88,0.0,1 +15088,10,1.0,0,1.3493919372558594,89,1.0,1 +15089,10,1.0,0,1.414391040802002,90,1.0,1 +15090,10,1.0,0,1.5113898515701294,91,1.0,1 +15091,10,0.0,0,1.4253909587860107,92,0.0,1 +15092,10,0.0,0,1.2523927688598633,93,0.0,1 +15093,10,1.0,0,1.7963862419128418,94,1.0,1 +15094,10,1.0,0,1.619388461112976,95,1.0,1 +15095,10,1.0,0,1.3243921995162964,96,1.0,1 +15096,10,1.0,0,1.4673904180526733,97,0.0,1 +15097,10,0.0,0,1.277392864227295,98,0.0,1 +15098,10,0.0,0,1.3943912982940674,99,0.0,1 +15099,10,1.0,0,2.017383337020874,100,1.0,1 +15100,10,1.0,0,1.5823888778686523,101,1.0,1 +15101,10,0.0,0,1.102392554283142,102,0.0,1 +15102,10,1.0,0,1.6683878898620605,103,1.0,1 +15103,10,1.0,0,1.4663903713226318,104,1.0,1 +15104,10,1.0,0,1.4123910665512085,105,1.0,1 +15105,10,1.0,0,1.2593928575515747,106,1.0,1 +15106,10,1.0,0,1.7493867874145508,107,0.0,1 +15107,10,0.0,0,1.6753877401351929,108,0.0,1 +15108,10,1.0,0,1.92838454246521,109,1.0,1 +15109,10,1.0,0,1.391391396522522,110,1.0,1 +15110,10,1.0,0,1.4993900060653687,111,1.0,1 +15111,10,1.0,0,1.487390160560608,112,1.0,1 +15112,10,1.0,0,1.2203927040100098,113,0.0,1 +15113,10,1.0,0,1.2473927736282349,114,1.0,1 +15114,10,1.0,0,1.5583891868591309,115,1.0,1 +15115,10,1.0,0,1.1303925514221191,116,1.0,1 +15116,10,1.0,0,1.1913926601409912,117,1.0,1 +15117,10,1.0,0,1.2393927574157715,118,0.0,1 +15118,10,0.0,0,1.7133872509002686,119,0.0,1 +15119,10,1.0,0,1.5223896503448486,120,1.0,1 +15120,10,1.0,0,1.600388765335083,121,1.0,1 +15121,10,1.0,0,1.4003912210464478,122,1.0,1 +15122,10,1.0,0,1.5603892803192139,123,1.0,1 +15123,10,1.0,0,1.3283921480178833,124,1.0,1 +15124,10,1.0,0,1.3583917617797852,125,1.0,1 +15125,10,1.0,0,1.3193923234939575,126,1.0,1 +15126,10,0.0,0,1.321392297744751,127,0.0,1 +15127,10,1.0,0,1.7783863544464111,128,0.0,1 +15128,10,1.0,0,1.2203927040100098,129,1.0,1 +15129,10,1.0,0,1.4563905000686646,130,1.0,1 +15130,10,1.0,0,1.4453907012939453,131,0.0,1 +15131,10,1.0,0,1.461390495300293,132,1.0,1 +15132,10,1.0,0,1.3233922719955444,133,1.0,1 +15133,10,1.0,0,1.440390706062317,134,0.0,1 +15134,10,0.0,0,1.4993900060653687,135,0.0,1 +15135,10,1.0,0,1.692387580871582,136,0.0,1 +15136,10,0.0,0,1.855385422706604,137,0.0,1 +15137,10,0.0,0,1.391391396522522,138,0.0,1 +15138,10,1.0,0,1.5363895893096924,139,1.0,1 +15139,10,1.0,0,1.4313908815383911,140,1.0,1 +15140,10,1.0,0,1.457390546798706,141,1.0,1 +15141,10,1.0,0,1.3513919115066528,142,1.0,1 +15142,10,0.0,0,1.4493906497955322,143,0.0,1 +15143,10,0.0,0,1.1413925886154175,144,0.0,1 +15144,10,1.0,0,1.652388095855713,145,1.0,1 +15145,10,1.0,0,1.6853876113891602,146,1.0,1 +15146,10,1.0,0,1.5383894443511963,147,0.0,1 +15147,10,0.0,0,1.2363927364349365,148,0.0,1 +15148,10,1.0,0,1.4923900365829468,149,1.0,1 +15149,10,1.0,0,1.4553905725479126,150,1.0,1 +15150,10,1.0,0,1.4153910875320435,151,1.0,1 +15151,10,1.0,0,1.4053912162780762,152,1.0,1 +15152,10,1.0,0,1.6563880443572998,153,1.0,1 +15153,10,1.0,0,1.4893901348114014,154,1.0,1 +15154,10,1.0,0,1.4493906497955322,155,1.0,1 +15155,10,1.0,0,1.2723928689956665,156,1.0,1 +15156,10,1.0,0,1.3033925294876099,157,1.0,1 +15157,10,1.0,0,1.1923927068710327,158,1.0,1 +15158,10,1.0,0,1.2833927869796753,159,1.0,1 +15159,10,1.0,0,1.2293927669525146,160,1.0,1 +15160,10,1.0,0,1.414391040802002,161,1.0,1 +15161,10,1.0,0,1.4683903455734253,162,1.0,1 +15162,10,1.0,0,1.3423919677734375,163,0.0,1 +15163,10,0.0,0,1.5233896970748901,164,0.0,1 +15164,10,0.0,0,1.671387791633606,165,0.0,1 +15165,10,0.0,0,1.4903900623321533,166,0.0,1 +15166,10,0.0,0,1.5343894958496094,167,0.0,1 +15167,10,0.0,0,1.5213897228240967,168,0.0,1 +15168,10,0.0,0,1.2663928270339966,169,1.0,1 +15169,10,0.0,0,1.4433907270431519,170,0.0,1 +15170,10,1.0,0,1.506389856338501,171,0.0,1 +15171,10,1.0,0,1.9943835735321045,172,1.0,1 +15172,10,0.0,0,2.111387252807617,173,0.0,1 +15173,10,1.0,0,1.597388744354248,174,1.0,1 +15174,10,1.0,0,1.3103923797607422,175,1.0,1 +15175,10,1.0,0,1.344391942024231,176,0.0,1 +15176,10,1.0,0,1.4463906288146973,177,1.0,1 +15177,10,1.0,0,1.4023911952972412,178,1.0,1 +15178,10,1.0,0,1.4903900623321533,179,1.0,1 +15179,10,1.0,0,1.265392780303955,180,1.0,1 +15180,10,1.0,0,1.2573928833007812,181,1.0,1 +15181,10,1.0,0,1.7073873281478882,182,1.0,1 +15182,10,1.0,0,1.502389907836914,183,1.0,1 +15183,10,1.0,0,1.3333921432495117,184,1.0,1 +15184,10,1.0,0,1.8693852424621582,185,1.0,1 +15185,10,1.0,0,1.550389289855957,186,1.0,1 +15186,10,1.0,0,1.4023911952972412,187,1.0,1 +15187,10,1.0,0,1.4523905515670776,188,1.0,1 +15188,10,1.0,0,1.5443894863128662,189,1.0,1 +15189,10,1.0,0,1.505389928817749,190,0.0,1 +15190,10,0.0,0,2.015383243560791,191,0.0,1 +15191,10,0.0,0,1.3193923234939575,192,0.0,1 +15192,10,1.0,0,1.8663852214813232,193,1.0,1 +15193,10,1.0,0,1.41339111328125,194,1.0,1 +15194,10,1.0,0,1.738386869430542,195,1.0,1 +15195,10,1.0,0,1.6633878946304321,196,1.0,1 +15196,10,1.0,0,1.5633891820907593,197,1.0,1 +15197,10,1.0,0,1.479390263557434,198,1.0,1 +15198,10,1.0,0,1.4223909378051758,199,1.0,1 +15199,10,1.0,0,1.296392560005188,200,0.0,1 +15200,10,1.0,0,1.3743915557861328,201,1.0,1 +15201,10,0.0,0,1.6203885078430176,202,1.0,1 +15202,10,0.0,0,1.1483925580978394,203,0.0,1 +15203,10,1.0,0,1.784386396408081,204,0.0,1 +15204,10,0.0,0,2.1773903369903564,205,0.0,1 +15205,10,1.0,0,1.3813915252685547,206,1.0,1 +15206,10,1.0,0,1.6913875341415405,207,1.0,1 +15207,10,1.0,0,1.5823888778686523,208,1.0,1 +15208,10,1.0,0,1.409391164779663,209,1.0,1 +15209,10,1.0,0,1.410391092300415,210,0.0,1 +15210,10,0.0,0,1.947384238243103,211,0.0,1 +15211,10,0.0,0,1.598388671875,212,0.0,1 +15212,10,1.0,0,1.9653840065002441,213,1.0,1 +15213,10,1.0,0,1.9623839855194092,214,1.0,1 +15214,10,1.0,0,1.347391963005066,215,1.0,1 +15215,10,1.0,0,1.652388095855713,216,0.0,1 +15216,10,0.0,0,1.210392713546753,217,0.0,1 +15217,10,1.0,0,1.3903913497924805,218,1.0,1 +15218,10,0.0,0,1.4643903970718384,219,1.0,1 +15219,10,0.0,0,1.2333927154541016,220,0.0,1 +15220,10,1.0,0,1.5633891820907593,221,1.0,1 +15221,10,0.0,0,1.8733851909637451,222,1.0,1 +15222,10,0.0,0,1.995383620262146,223,0.0,1 +15223,10,1.0,0,1.851385474205017,224,1.0,1 +15224,10,0.0,0,1.6953874826431274,225,0.0,1 +15225,10,1.0,0,1.388391375541687,226,1.0,1 +15226,10,1.0,0,1.409391164779663,227,1.0,1 +15227,10,0.0,0,1.340391993522644,228,0.0,1 +15228,10,1.0,0,1.3163923025131226,229,1.0,1 +15229,10,1.0,0,1.531389594078064,230,1.0,1 +15230,10,1.0,0,1.1903927326202393,231,0.0,1 +15231,10,1.0,0,1.366391658782959,232,1.0,1 +15232,10,1.0,0,1.8173859119415283,233,1.0,1 +15233,10,1.0,0,1.3833914995193481,234,1.0,1 +15234,10,1.0,0,1.4713903665542603,235,1.0,1 +15235,10,1.0,0,1.3483918905258179,236,0.0,1 +15236,10,1.0,0,1.7233871221542358,237,1.0,1 +15237,10,1.0,0,1.6203885078430176,238,1.0,1 +15238,10,1.0,0,1.295392632484436,239,1.0,1 +15239,10,1.0,0,1.5083898305892944,240,0.0,1 +15240,10,1.0,0,2.042384147644043,241,1.0,1 +15241,10,1.0,0,1.2943925857543945,242,1.0,1 +15242,10,1.0,0,1.347391963005066,243,1.0,1 +15243,10,1.0,0,1.3033925294876099,244,1.0,1 +15244,10,1.0,0,1.4643903970718384,245,1.0,1 +15245,10,1.0,0,1.321392297744751,246,1.0,1 +15246,10,1.0,0,1.203392744064331,247,0.0,1 +15247,10,1.0,0,1.7703864574432373,248,1.0,1 +15248,10,1.0,0,1.6853876113891602,249,0.0,1 +15249,10,1.0,0,2.1543893814086914,250,1.0,1 +15250,10,1.0,0,1.2663928270339966,251,1.0,1 +15251,10,1.0,0,1.440390706062317,252,1.0,1 +15252,10,1.0,0,1.696387529373169,253,1.0,1 +15253,10,1.0,0,1.5933887958526611,254,1.0,1 +15254,10,1.0,0,1.2283927202224731,255,1.0,1 +15255,10,1.0,0,1.4533905982971191,256,1.0,1 +15256,10,1.0,0,1.6813876628875732,257,1.0,1 +15257,10,1.0,0,1.3353921175003052,258,1.0,1 +15258,10,1.0,0,1.3813915252685547,259,0.0,1 +15259,10,0.0,0,1.882385015487671,260,0.0,1 +15260,10,1.0,0,1.3723915815353394,261,0.0,1 +15261,10,0.0,0,1.5463893413543701,262,0.0,1 +15262,10,0.0,0,1.4343907833099365,263,0.0,1 +15263,10,0.0,0,1.136392593383789,264,0.0,1 +15264,10,0.0,0,1.1773927211761475,265,0.0,1 +15265,10,0.0,0,1.2873927354812622,266,0.0,1 +15266,10,1.0,0,1.6613879203796387,267,1.0,1 +15267,10,1.0,0,1.742386817932129,268,1.0,1 +15268,10,1.0,0,1.4973900318145752,269,1.0,1 +15269,10,1.0,0,1.271392822265625,270,1.0,1 +15270,10,1.0,0,1.3633917570114136,271,1.0,1 +15271,10,1.0,0,1.2473927736282349,272,1.0,1 +15272,10,1.0,0,1.556389331817627,273,1.0,1 +15273,10,1.0,0,1.2873927354812622,274,1.0,1 +15274,10,1.0,0,1.594388723373413,275,1.0,1 +15275,10,1.0,0,1.3943912982940674,276,0.0,1 +15276,10,1.0,0,1.3683916330337524,277,1.0,1 +15277,10,1.0,0,1.7333869934082031,278,1.0,1 +15278,10,1.0,0,1.3383920192718506,279,1.0,1 +15279,10,1.0,0,1.6703877449035645,280,1.0,1 +15280,10,1.0,0,1.369391679763794,281,1.0,1 +15281,10,1.0,0,1.2053927183151245,282,1.0,1 +15282,10,0.0,0,1.3073924779891968,283,1.0,1 +15283,10,1.0,0,1.4043911695480347,284,1.0,1 +15284,10,0.0,0,1.2603927850723267,285,0.0,1 +15285,10,1.0,0,1.6793876886367798,286,0.0,1 +15286,10,1.0,0,1.571389079093933,287,1.0,1 +15287,10,0.0,0,1.5693891048431396,288,0.0,1 +15288,10,1.0,0,1.2493927478790283,289,1.0,1 +15289,10,1.0,0,1.317392349243164,290,1.0,1 +15290,10,1.0,0,1.5323896408081055,291,1.0,1 +15291,10,1.0,0,1.4703903198242188,292,1.0,1 +15292,10,1.0,0,1.55238938331604,293,0.0,1 +15293,10,0.0,0,1.2663928270339966,294,0.0,1 +15294,10,1.0,0,1.9333844184875488,295,1.0,1 +15295,10,1.0,0,1.4703903198242188,296,1.0,1 +15296,10,1.0,0,1.6513880491256714,297,1.0,1 +15297,10,1.0,0,1.5443894863128662,298,1.0,1 +15298,10,1.0,0,1.8143858909606934,299,1.0,1 +15299,10,1.0,0,1.4963899850845337,300,1.0,1 +15300,10,1.0,0,1.2283927202224731,301,1.0,1 +15301,10,1.0,0,1.3943912982940674,302,1.0,1 +15302,10,1.0,0,1.597388744354248,303,0.0,1 +15303,10,0.0,0,1.5263895988464355,304,0.0,1 +15304,10,0.0,0,1.5843889713287354,305,0.0,1 +15305,10,1.0,0,1.4293909072875977,306,1.0,1 +15306,10,1.0,0,1.4893901348114014,307,1.0,1 +15307,10,1.0,0,1.2753928899765015,308,1.0,1 +15308,10,1.0,0,1.4423906803131104,309,0.0,1 +15309,10,1.0,0,1.440390706062317,310,1.0,1 +15310,10,0.0,0,1.2813928127288818,311,1.0,1 +15311,10,0.0,0,1.462390422821045,312,0.0,1 +15312,10,1.0,0,1.1563925743103027,313,1.0,1 +15313,10,1.0,0,1.4453907012939453,314,1.0,1 +15314,10,1.0,0,1.440390706062317,315,1.0,1 +15315,10,0.0,0,1.505389928817749,316,0.0,1 +15316,10,1.0,0,1.4663903713226318,317,1.0,1 +15317,10,1.0,0,1.2933926582336426,318,1.0,1 +15318,10,1.0,0,1.5693891048431396,319,1.0,1 +15319,10,1.0,0,1.6373882293701172,320,1.0,1 +15320,10,1.0,0,1.9083847999572754,321,1.0,1 +15321,10,1.0,0,1.786386251449585,322,1.0,1 +15322,10,0.0,0,1.5833889245986938,323,0.0,1 +15323,10,1.0,0,1.5043898820877075,324,1.0,1 +15324,10,1.0,0,1.7233871221542358,325,1.0,1 +15325,10,1.0,0,1.1943926811218262,326,1.0,1 +15326,10,1.0,0,1.7123873233795166,327,1.0,1 +15327,10,1.0,0,2.036383628845215,328,1.0,1 +15328,10,1.0,0,1.8313857316970825,329,1.0,1 +15329,10,1.0,0,1.41339111328125,330,1.0,1 +15330,10,1.0,0,1.7963862419128418,331,1.0,1 +15331,10,1.0,0,1.8893849849700928,332,0.0,1 +15332,10,0.0,0,1.1253925561904907,333,1.0,1 +15333,10,0.0,0,1.57538902759552,334,0.0,1 +15334,10,0.0,0,1.6113885641098022,335,0.0,1 +15335,10,1.0,0,1.409391164779663,336,1.0,1 +15336,10,1.0,0,1.8173859119415283,337,1.0,1 +15337,10,1.0,0,1.8753851652145386,338,1.0,1 +15338,10,0.0,0,1.4163910150527954,339,0.0,1 +15339,10,1.0,0,1.6823875904083252,340,0.0,1 +15340,10,1.0,0,1.623388409614563,341,0.0,1 +15341,10,0.0,0,1.8473855257034302,342,0.0,1 +15342,10,0.0,0,1.3353921175003052,343,0.0,1 +15343,10,1.0,0,1.387391448020935,344,1.0,1 +15344,10,0.0,0,1.0923924446105957,345,0.0,1 +15345,10,1.0,0,1.410391092300415,346,1.0,1 +15346,10,1.0,0,1.8413856029510498,347,1.0,1 +15347,10,1.0,0,1.3603917360305786,348,0.0,1 +15348,10,0.0,0,1.73738694190979,349,0.0,1 +15349,10,0.0,0,1.4243909120559692,350,0.0,1 +15350,10,1.0,0,1.6363883018493652,351,1.0,1 +15351,10,0.0,0,1.2513928413391113,352,0.0,1 +15352,10,1.0,0,1.1933927536010742,353,1.0,1 +15353,10,1.0,0,1.7203872203826904,354,1.0,1 +15354,10,1.0,0,1.7183871269226074,355,1.0,1 +15355,10,1.0,0,1.6803877353668213,356,1.0,1 +15356,10,1.0,0,1.696387529373169,357,0.0,1 +15357,10,1.0,0,1.3203922510147095,358,1.0,1 +15358,10,1.0,0,1.4893901348114014,359,1.0,1 +15359,10,1.0,0,1.3963912725448608,360,1.0,1 +15360,10,1.0,0,1.321392297744751,361,1.0,1 +15361,10,1.0,0,1.3103923797607422,362,0.0,1 +15362,10,1.0,0,1.9013848304748535,363,1.0,1 +15363,10,1.0,0,1.5483894348144531,364,1.0,1 +15364,10,1.0,0,1.4443906545639038,365,0.0,1 +15365,10,0.0,0,1.3753916025161743,366,0.0,1 +15366,10,1.0,0,1.859385371208191,367,1.0,1 +15367,10,1.0,0,1.2843927145004272,368,1.0,1 +15368,10,1.0,0,1.4713903665542603,369,1.0,1 +15369,10,1.0,0,1.6563880443572998,370,1.0,1 +15370,10,1.0,0,1.2483928203582764,371,1.0,1 +15371,10,1.0,0,1.5633891820907593,372,1.0,1 +15372,10,1.0,0,1.5693891048431396,373,1.0,1 +15373,10,1.0,0,1.3453919887542725,374,1.0,1 +15374,10,1.0,0,1.6093885898590088,375,1.0,1 +15375,10,1.0,0,1.4163910150527954,376,1.0,1 +15376,10,1.0,0,1.3533918857574463,377,1.0,1 +15377,10,1.0,0,1.4653904438018799,378,1.0,1 +15378,10,1.0,0,1.3633917570114136,379,1.0,1 +15379,10,1.0,0,1.4863901138305664,380,1.0,1 +15380,10,1.0,0,1.8443856239318848,381,1.0,1 +15381,10,1.0,0,1.209392786026001,382,0.0,1 +15382,10,1.0,0,1.7833863496780396,383,1.0,1 +15383,10,1.0,0,1.2223927974700928,384,1.0,1 +15384,10,1.0,0,1.7703864574432373,385,0.0,1 +15385,10,1.0,0,1.7493867874145508,386,1.0,1 +15386,10,1.0,0,1.4663903713226318,387,1.0,1 +15387,10,1.0,0,1.880385160446167,388,0.0,1 +15388,10,0.0,0,1.9973835945129395,389,1.0,1 +15389,10,0.0,0,1.8723852634429932,390,0.0,1 +15390,10,1.0,0,1.881385087966919,391,1.0,1 +15391,10,1.0,0,1.6853876113891602,392,0.0,1 +15392,10,1.0,0,1.2213927507400513,393,1.0,1 +15393,10,1.0,0,1.8403856754302979,394,1.0,1 +15394,10,1.0,0,1.3133924007415771,395,1.0,1 +15395,10,1.0,0,1.4083911180496216,396,1.0,1 +15396,10,1.0,0,1.296392560005188,397,1.0,1 +15397,10,0.0,0,1.207392692565918,398,0.0,1 +15398,10,1.0,0,1.5113898515701294,399,1.0,1 +15399,10,1.0,0,1.5453894138336182,400,1.0,1 +15400,10,1.0,0,1.6033886671066284,401,1.0,1 +15401,10,1.0,0,1.7803864479064941,402,1.0,1 +15402,10,1.0,0,1.8533854484558105,403,0.0,1 +15403,10,0.0,0,1.2693928480148315,404,1.0,1 +15404,10,0.0,0,1.5083898305892944,405,0.0,1 +15405,10,1.0,0,1.5993887186050415,406,1.0,1 +15406,10,1.0,0,2.051384449005127,407,1.0,1 +15407,10,1.0,0,1.2443927526474,408,1.0,1 +15408,10,1.0,0,1.4693903923034668,409,1.0,1 +15409,10,1.0,0,1.270392894744873,410,0.0,1 +15410,10,1.0,0,1.3423919677734375,411,1.0,1 +15411,10,1.0,0,1.9303843975067139,412,1.0,1 +15412,10,1.0,0,1.1233925819396973,413,1.0,1 +15413,10,1.0,0,2.0003836154937744,414,1.0,1 +15414,10,1.0,0,1.5843889713287354,415,1.0,1 +15415,10,0.0,0,1.3893914222717285,416,0.0,1 +15416,10,1.0,0,1.5873888731002808,417,1.0,1 +15417,10,1.0,0,1.2933926582336426,418,1.0,1 +15418,10,1.0,0,1.4063911437988281,419,1.0,1 +15419,10,1.0,0,1.3483918905258179,420,1.0,1 +15420,10,1.0,0,1.2503927946090698,421,1.0,1 +15421,10,1.0,0,1.6993874311447144,422,1.0,1 +15422,10,1.0,0,1.6603879928588867,423,1.0,1 +15423,10,1.0,0,1.5513893365859985,424,1.0,1 +15424,10,1.0,0,1.837385654449463,425,1.0,1 +15425,10,1.0,0,1.3193923234939575,426,1.0,1 +15426,10,1.0,0,1.2613928318023682,427,1.0,1 +15427,10,1.0,0,1.2563928365707397,428,1.0,1 +15428,10,1.0,0,1.3263921737670898,429,1.0,1 +15429,10,1.0,0,1.9103846549987793,430,1.0,1 +15430,10,1.0,0,1.5143897533416748,431,1.0,1 +15431,10,1.0,0,1.7453868389129639,432,1.0,1 +15432,10,1.0,0,1.7393869161605835,433,1.0,1 +15433,10,1.0,0,1.3383920192718506,434,0.0,1 +15434,10,1.0,0,1.5223896503448486,435,1.0,1 +15435,10,1.0,0,1.4523905515670776,436,1.0,1 +15436,10,1.0,0,1.2543928623199463,437,1.0,1 +15437,10,1.0,0,1.7613866329193115,438,1.0,1 +15438,10,1.0,0,1.1963926553726196,439,1.0,1 +15439,10,1.0,0,1.3483918905258179,440,1.0,1 +15440,10,1.0,0,2.097386598587036,441,0.0,1 +15441,10,0.0,0,1.362391710281372,442,0.0,1 +15442,10,0.0,0,1.4193910360336304,443,0.0,1 +15443,10,0.0,0,1.781386375427246,444,0.0,1 +15444,10,1.0,0,1.4963899850845337,445,1.0,1 +15445,10,0.0,0,1.432390809059143,446,0.0,1 +15446,10,1.0,0,1.1713926792144775,447,1.0,1 +15447,10,1.0,0,1.5293896198272705,448,1.0,1 +15448,10,1.0,0,1.686387538909912,449,1.0,1 +15449,10,1.0,0,1.2123926877975464,450,1.0,1 +15450,10,1.0,0,1.4213910102844238,451,0.0,1 +15451,10,1.0,0,1.4493906497955322,452,1.0,1 +15452,10,1.0,0,1.7013874053955078,453,1.0,1 +15453,10,1.0,0,1.2863926887512207,454,1.0,1 +15454,10,0.0,0,1.8543853759765625,455,0.0,1 +15455,10,1.0,0,1.1903927326202393,456,0.0,1 +15456,10,0.0,0,1.7763864994049072,457,1.0,1 +15457,10,0.0,0,1.4513906240463257,458,0.0,1 +15458,10,0.0,0,1.2443927526474,459,0.0,1 +15459,10,1.0,0,1.2243927717208862,460,1.0,1 +15460,10,1.0,0,1.7323870658874512,461,1.0,1 +15461,10,1.0,0,1.4263908863067627,462,0.0,1 +15462,10,1.0,0,1.2243927717208862,463,1.0,1 +15463,10,1.0,0,1.3523918390274048,464,1.0,1 +15464,10,1.0,0,1.3343920707702637,465,1.0,1 +15465,10,1.0,0,1.3313921689987183,466,1.0,1 +15466,10,1.0,0,1.4643903970718384,467,1.0,1 +15467,10,1.0,0,1.4453907012939453,468,0.0,1 +15468,10,1.0,0,1.6473881006240845,469,1.0,1 +15469,10,1.0,0,1.5623891353607178,470,1.0,1 +15470,10,1.0,0,1.2243927717208862,471,1.0,1 +15471,10,1.0,0,1.571389079093933,472,1.0,1 +15472,10,1.0,0,1.1593925952911377,473,1.0,1 +15473,10,1.0,0,1.4283908605575562,474,1.0,1 +15474,10,1.0,0,1.6093885898590088,475,1.0,1 +15475,10,1.0,0,1.7123873233795166,476,1.0,1 +15476,10,1.0,0,1.3023924827575684,477,0.0,1 +15477,10,0.0,0,2.014383316040039,478,1.0,1 +15478,10,0.0,0,1.3323920965194702,479,0.0,1 +15479,10,0.0,0,1.9143846035003662,480,0.0,1 +15480,10,0.0,0,1.884385108947754,481,1.0,1 +15481,10,0.0,0,1.369391679763794,482,0.0,1 +15482,10,0.0,0,1.292392611503601,483,0.0,1 +15483,10,1.0,0,1.57538902759552,484,1.0,1 +15484,10,1.0,0,1.6633878946304321,485,1.0,1 +15485,10,1.0,0,1.9583840370178223,486,0.0,1 +15486,10,1.0,0,1.409391164779663,487,1.0,1 +15487,10,1.0,0,1.26839280128479,488,0.0,1 +15488,10,1.0,0,1.237392783164978,489,1.0,1 +15489,10,1.0,0,1.3063924312591553,490,0.0,1 +15490,10,1.0,0,1.4863901138305664,491,1.0,1 +15491,10,0.0,0,1.3103923797607422,492,0.0,1 +15492,10,1.0,0,1.344391942024231,493,1.0,1 +15493,10,1.0,0,1.7493867874145508,494,1.0,1 +15494,10,1.0,0,1.213392734527588,495,1.0,1 +15495,10,1.0,0,1.3373920917510986,496,1.0,1 +15496,10,1.0,0,1.5033899545669556,497,1.0,1 +15497,10,1.0,0,1.5483894348144531,498,1.0,1 +15498,10,1.0,0,1.479390263557434,499,0.0,1 +15499,10,0.0,0,1.5853888988494873,500,0.0,1 +15500,10,0.0,1,1.7133872509002686,1,0.0,1 +15501,10,0.0,1,1.1913926601409912,2,0.0,1 +15502,10,1.0,1,1.556389331817627,3,0.0,1 +15503,10,0.0,1,2.1983914375305176,4,0.0,1 +15504,10,0.0,1,1.3453919887542725,5,1.0,1 +15505,10,1.0,1,1.3203922510147095,6,1.0,1 +15506,10,0.0,1,1.5823888778686523,7,1.0,1 +15507,10,0.0,1,1.830385684967041,8,1.0,1 +15508,10,0.0,1,1.7483868598937988,9,0.0,1 +15509,10,0.0,1,1.3423919677734375,10,0.0,1 +15510,10,1.0,1,1.7123873233795166,11,1.0,1 +15511,10,1.0,1,1.7353869676589966,12,1.0,1 +15512,10,1.0,1,1.2233927249908447,13,1.0,1 +15513,10,1.0,1,1.549389362335205,14,1.0,1 +15514,10,1.0,1,1.3723915815353394,15,1.0,1 +15515,10,1.0,1,1.2233927249908447,16,1.0,1 +15516,10,1.0,1,1.4013912677764893,17,0.0,1 +15517,10,0.0,1,1.4023911952972412,18,1.0,1 +15518,10,0.0,1,1.7753864526748657,19,1.0,1 +15519,10,0.0,1,1.6593879461288452,20,1.0,1 +15520,10,0.0,1,1.387391448020935,21,0.0,1 +15521,10,1.0,1,1.6993874311447144,22,0.0,1 +15522,10,0.0,1,1.6783876419067383,23,0.0,1 +15523,10,0.0,1,1.6593879461288452,24,0.0,1 +15524,10,1.0,1,1.550389289855957,25,0.0,1 +15525,10,0.0,1,2.1923909187316895,26,1.0,1 +15526,10,0.0,1,1.9103846549987793,27,1.0,1 +15527,10,0.0,1,1.2913926839828491,28,0.0,1 +15528,10,0.0,1,2.0013835430145264,29,0.0,1 +15529,10,1.0,1,1.505389928817749,30,0.0,1 +15530,10,0.0,1,1.5893888473510742,31,0.0,1 +15531,10,0.0,1,1.2933926582336426,32,1.0,1 +15532,10,0.0,1,1.1903927326202393,33,1.0,1 +15533,10,0.0,1,1.388391375541687,34,0.0,1 +15534,10,0.0,1,1.5463893413543701,35,1.0,1 +15535,10,0.0,1,1.690387487411499,36,1.0,1 +15536,10,0.0,1,1.2163927555084229,37,0.0,1 +15537,10,0.0,1,1.1963926553726196,38,0.0,1 +15538,10,0.0,1,1.2143927812576294,39,0.0,1 +15539,10,1.0,1,1.27439284324646,40,0.0,1 +15540,10,1.0,1,1.7293870449066162,41,1.0,1 +15541,10,1.0,1,1.273392915725708,42,1.0,1 +15542,10,1.0,1,1.3233922719955444,43,1.0,1 +15543,10,1.0,1,1.506389856338501,44,1.0,1 +15544,10,1.0,1,1.4503905773162842,45,1.0,1 +15545,10,1.0,1,1.5003899335861206,46,1.0,1 +15546,10,1.0,1,1.5333895683288574,47,1.0,1 +15547,10,1.0,1,1.146392583847046,48,1.0,1 +15548,10,1.0,1,1.292392611503601,49,0.0,1 +15549,10,0.0,1,1.240392804145813,50,1.0,1 +15550,10,0.0,1,1.1943926811218262,51,1.0,1 +15551,10,0.0,1,1.5613892078399658,52,1.0,1 +15552,10,0.0,1,1.206392765045166,53,0.0,1 +15553,10,0.0,1,1.3713916540145874,54,0.0,1 +15554,10,0.0,1,1.3313921689987183,55,0.0,1 +15555,10,1.0,1,1.811385989189148,56,1.0,1 +15556,10,0.0,1,1.4533905982971191,57,1.0,1 +15557,10,0.0,1,1.3023924827575684,58,0.0,1 +15558,10,1.0,1,1.2233927249908447,59,0.0,1 +15559,10,0.0,1,1.5153898000717163,60,0.0,1 +15560,10,0.0,1,1.6203885078430176,61,1.0,1 +15561,10,0.0,1,1.646388053894043,62,0.0,1 +15562,10,1.0,1,1.3753916025161743,63,1.0,1 +15563,10,1.0,1,1.300392508506775,64,1.0,1 +15564,10,1.0,1,1.4773902893066406,65,0.0,1 +15565,10,1.0,1,1.2473927736282349,66,1.0,1 +15566,10,1.0,1,1.4153910875320435,67,0.0,1 +15567,10,0.0,1,1.1653926372528076,68,0.0,1 +15568,10,1.0,1,2.095386505126953,69,1.0,1 +15569,10,1.0,1,1.4813902378082275,70,1.0,1 +15570,10,0.0,1,1.5683891773223877,71,0.0,1 +15571,10,1.0,1,1.3203922510147095,72,1.0,1 +15572,10,1.0,1,1.4683903455734253,73,1.0,1 +15573,10,1.0,1,1.3043924570083618,74,1.0,1 +15574,10,1.0,1,1.7213871479034424,75,1.0,1 +15575,10,1.0,1,1.4063911437988281,76,1.0,1 +15576,10,1.0,1,2.016383409500122,77,1.0,1 +15577,10,0.0,1,1.3363920450210571,78,0.0,1 +15578,10,1.0,1,1.5483894348144531,79,0.0,1 +15579,10,1.0,1,1.4193910360336304,80,1.0,1 +15580,10,1.0,1,1.3203922510147095,81,1.0,1 +15581,10,0.0,1,1.740386962890625,82,0.0,1 +15582,10,1.0,1,1.6223883628845215,83,0.0,1 +15583,10,1.0,1,1.483390212059021,84,1.0,1 +15584,10,1.0,1,1.3193923234939575,85,0.0,1 +15585,10,0.0,1,1.7983860969543457,86,0.0,1 +15586,10,0.0,1,1.7073873281478882,87,1.0,1 +15587,10,0.0,1,1.2353928089141846,88,1.0,1 +15588,10,0.0,1,1.4153910875320435,89,1.0,1 +15589,10,0.0,1,1.4463906288146973,90,0.0,1 +15590,10,0.0,1,1.696387529373169,91,0.0,1 +15591,10,0.0,1,2.0023834705352783,92,0.0,1 +15592,10,0.0,1,1.3113924264907837,93,0.0,1 +15593,10,1.0,1,2.1643896102905273,94,0.0,1 +15594,10,0.0,1,1.781386375427246,95,1.0,1 +15595,10,0.0,1,1.2853927612304688,96,0.0,1 +15596,10,1.0,1,1.5463893413543701,97,0.0,1 +15597,10,0.0,1,1.8233858346939087,98,1.0,1 +15598,10,0.0,1,1.1713926792144775,99,0.0,1 +15599,10,1.0,1,1.392391324043274,100,1.0,1 +15600,10,1.0,1,1.2843927145004272,101,1.0,1 +15601,10,1.0,1,1.5473893880844116,102,0.0,1 +15602,10,0.0,1,1.2173926830291748,103,1.0,1 +15603,10,0.0,1,1.550389289855957,104,0.0,1 +15604,10,1.0,1,1.5393894910812378,105,1.0,1 +15605,10,1.0,1,1.5283896923065186,106,1.0,1 +15606,10,1.0,1,1.645388126373291,107,1.0,1 +15607,10,1.0,1,1.5883889198303223,108,1.0,1 +15608,10,1.0,1,1.3083924055099487,109,0.0,1 +15609,10,1.0,1,2.0053834915161133,110,0.0,1 +15610,10,0.0,1,1.1533925533294678,111,0.0,1 +15611,10,0.0,1,1.462390422821045,112,0.0,1 +15612,10,1.0,1,1.4523905515670776,113,1.0,1 +15613,10,1.0,1,1.5123897790908813,114,1.0,1 +15614,10,1.0,1,1.5163897275924683,115,1.0,1 +15615,10,1.0,1,1.2413928508758545,116,1.0,1 +15616,10,1.0,1,1.62738835811615,117,1.0,1 +15617,10,0.0,1,1.550389289855957,118,0.0,1 +15618,10,1.0,1,1.4913901090621948,119,1.0,1 +15619,10,1.0,1,1.9753838777542114,120,1.0,1 +15620,10,1.0,1,1.4733903408050537,121,1.0,1 +15621,10,1.0,1,1.8653852939605713,122,1.0,1 +15622,10,1.0,1,1.619388461112976,123,1.0,1 +15623,10,1.0,1,1.781386375427246,124,0.0,1 +15624,10,0.0,1,1.203392744064331,125,0.0,1 +15625,10,1.0,1,1.462390422821045,126,1.0,1 +15626,10,1.0,1,1.3263921737670898,127,1.0,1 +15627,10,1.0,1,1.4033912420272827,128,1.0,1 +15628,10,1.0,1,1.2163927555084229,129,1.0,1 +15629,10,1.0,1,1.2293927669525146,130,0.0,1 +15630,10,0.0,1,1.5333895683288574,131,1.0,1 +15631,10,0.0,1,1.1743927001953125,132,0.0,1 +15632,10,1.0,1,1.5633891820907593,133,1.0,1 +15633,10,0.0,1,1.6063885688781738,134,0.0,1 +15634,10,1.0,1,1.4553905725479126,135,1.0,1 +15635,10,1.0,1,1.5663890838623047,136,0.0,1 +15636,10,0.0,1,1.2623928785324097,137,0.0,1 +15637,10,1.0,1,1.2513928413391113,138,0.0,1 +15638,10,0.0,1,1.4973900318145752,139,1.0,1 +15639,10,0.0,1,1.3643916845321655,140,1.0,1 +15640,10,0.0,1,1.3753916025161743,141,0.0,1 +15641,10,1.0,1,1.3243921995162964,142,0.0,1 +15642,10,1.0,1,1.6313883066177368,143,0.0,1 +15643,10,0.0,1,1.3133924007415771,144,0.0,1 +15644,10,0.0,1,1.210392713546753,145,0.0,1 +15645,10,0.0,1,1.5583891868591309,146,0.0,1 +15646,10,1.0,1,1.2943925857543945,147,1.0,1 +15647,10,1.0,1,1.5163897275924683,148,1.0,1 +15648,10,1.0,1,1.2483928203582764,149,0.0,1 +15649,10,1.0,1,1.4053912162780762,150,1.0,1 +15650,10,1.0,1,1.3803914785385132,151,1.0,1 +15651,10,1.0,1,1.4913901090621948,152,1.0,1 +15652,10,1.0,1,1.4083911180496216,153,0.0,1 +15653,10,1.0,1,1.3953913450241089,154,1.0,1 +15654,10,1.0,1,1.4213910102844238,155,1.0,1 +15655,10,1.0,1,1.204392671585083,156,1.0,1 +15656,10,1.0,1,1.458390474319458,157,0.0,1 +15657,10,1.0,1,1.826385736465454,158,1.0,1 +15658,10,1.0,1,1.3343920707702637,159,1.0,1 +15659,10,1.0,1,1.3743915557861328,160,1.0,1 +15660,10,0.0,1,1.7063872814178467,161,0.0,1 +15661,10,1.0,1,1.133392572402954,162,0.0,1 +15662,10,1.0,1,1.4533905982971191,163,0.0,1 +15663,10,0.0,1,1.7603867053985596,164,0.0,1 +15664,10,0.0,1,1.5403895378112793,165,1.0,1 +15665,10,0.0,1,1.483390212059021,166,0.0,1 +15666,10,0.0,1,2.108386993408203,167,0.0,1 +15667,10,1.0,1,1.9063847064971924,168,1.0,1 +15668,10,1.0,1,2.025383234024048,169,1.0,1 +15669,10,1.0,1,2.032383441925049,170,0.0,1 +15670,10,0.0,1,1.3683916330337524,171,1.0,1 +15671,10,0.0,1,1.2723928689956665,172,0.0,1 +15672,10,0.0,1,1.5403895378112793,173,0.0,1 +15673,10,0.0,1,1.6513880491256714,174,0.0,1 +15674,10,0.0,1,1.6393882036209106,175,1.0,1 +15675,10,0.0,1,1.763386607170105,176,0.0,1 +15676,10,0.0,1,1.601388692855835,177,0.0,1 +15677,10,1.0,1,1.7123873233795166,178,1.0,1 +15678,10,1.0,1,1.4953900575637817,179,1.0,1 +15679,10,1.0,1,1.462390422821045,180,0.0,1 +15680,10,0.0,1,1.5483894348144531,181,0.0,1 +15681,10,1.0,1,1.6533880233764648,182,0.0,1 +15682,10,1.0,1,1.4373908042907715,183,1.0,1 +15683,10,1.0,1,1.3363920450210571,184,1.0,1 +15684,10,1.0,1,1.8243858814239502,185,0.0,1 +15685,10,0.0,1,2.0043835639953613,186,0.0,1 +15686,10,0.0,1,1.139392614364624,187,0.0,1 +15687,10,0.0,1,1.3133924007415771,188,0.0,1 +15688,10,1.0,1,1.510389804840088,189,0.0,1 +15689,10,1.0,1,1.9433842897415161,190,0.0,1 +15690,10,0.0,1,2.34639835357666,191,0.0,1 +15691,10,1.0,1,1.3773915767669678,192,1.0,1 +15692,10,1.0,1,1.457390546798706,193,1.0,1 +15693,10,1.0,1,1.3673917055130005,194,1.0,1 +15694,10,1.0,1,1.6183884143829346,195,1.0,1 +15695,10,1.0,1,1.6763877868652344,196,1.0,1 +15696,10,1.0,1,1.362391710281372,197,1.0,1 +15697,10,1.0,1,1.4033912420272827,198,1.0,1 +15698,10,1.0,1,1.7033873796463013,199,1.0,1 +15699,10,1.0,1,1.3303921222686768,200,0.0,1 +15700,10,0.0,1,1.5033899545669556,201,1.0,1 +15701,10,0.0,1,1.1383925676345825,202,1.0,1 +15702,10,0.0,1,1.2113927602767944,203,0.0,1 +15703,10,0.0,1,1.347391963005066,204,0.0,1 +15704,10,1.0,1,1.5073899030685425,205,1.0,1 +15705,10,1.0,1,1.4163910150527954,206,1.0,1 +15706,10,1.0,1,1.271392822265625,207,0.0,1 +15707,10,0.0,1,1.100392460823059,208,1.0,1 +15708,10,0.0,1,1.6853876113891602,209,1.0,1 +15709,10,0.0,1,1.1823927164077759,210,0.0,1 +15710,10,0.0,1,1.2613928318023682,211,0.0,1 +15711,10,1.0,1,1.7473868131637573,212,1.0,1 +15712,10,1.0,1,1.7103872299194336,213,1.0,1 +15713,10,1.0,1,1.6433881521224976,214,1.0,1 +15714,10,1.0,1,1.8893849849700928,215,0.0,1 +15715,10,0.0,1,1.3613917827606201,216,0.0,1 +15716,10,1.0,1,1.6053886413574219,217,0.0,1 +15717,10,1.0,1,1.409391164779663,218,1.0,1 +15718,10,1.0,1,1.8853850364685059,219,1.0,1 +15719,10,1.0,1,1.7693865299224854,220,0.0,1 +15720,10,0.0,1,1.5113898515701294,221,0.0,1 +15721,10,0.0,1,1.5363895893096924,222,0.0,1 +15722,10,0.0,1,1.5033899545669556,223,0.0,1 +15723,10,1.0,1,1.6333882808685303,224,1.0,1 +15724,10,1.0,1,1.781386375427246,225,1.0,1 +15725,10,1.0,1,1.646388053894043,226,1.0,1 +15726,10,1.0,1,1.277392864227295,227,1.0,1 +15727,10,1.0,1,1.6853876113891602,228,0.0,1 +15728,10,0.0,1,1.1083924770355225,229,1.0,1 +15729,10,0.0,1,1.3743915557861328,230,0.0,1 +15730,10,0.0,1,1.6693878173828125,231,0.0,1 +15731,10,1.0,1,1.9233845472335815,232,0.0,1 +15732,10,0.0,1,1.652388095855713,233,0.0,1 +15733,10,0.0,1,1.829385757446289,234,1.0,1 +15734,10,0.0,1,1.6563880443572998,235,0.0,1 +15735,10,0.0,1,1.7433868646621704,236,0.0,1 +15736,10,0.0,1,1.502389907836914,237,0.0,1 +15737,10,1.0,1,1.3113924264907837,238,1.0,1 +15738,10,1.0,1,1.410391092300415,239,1.0,1 +15739,10,1.0,1,1.2273927927017212,240,1.0,1 +15740,10,1.0,1,1.2453927993774414,241,1.0,1 +15741,10,1.0,1,1.92238450050354,242,1.0,1 +15742,10,1.0,1,1.8023860454559326,243,1.0,1 +15743,10,1.0,1,1.7163872718811035,244,0.0,1 +15744,10,0.0,1,2.1603894233703613,245,0.0,1 +15745,10,1.0,1,2.329397439956665,246,1.0,1 +15746,10,1.0,1,1.3133924007415771,247,1.0,1 +15747,10,1.0,1,1.5413894653320312,248,1.0,1 +15748,10,1.0,1,1.3343920707702637,249,1.0,1 +15749,10,1.0,1,1.3503918647766113,250,1.0,1 +15750,10,1.0,1,2.028383255004883,251,1.0,1 +15751,10,1.0,1,1.1903927326202393,252,1.0,1 +15752,10,1.0,1,1.265392780303955,253,0.0,1 +15753,10,1.0,1,1.5613892078399658,254,1.0,1 +15754,10,1.0,1,1.9353843927383423,255,1.0,1 +15755,10,1.0,1,1.6143884658813477,256,1.0,1 +15756,10,1.0,1,1.6553879976272583,257,0.0,1 +15757,10,1.0,1,1.369391679763794,258,1.0,1 +15758,10,1.0,1,1.5083898305892944,259,0.0,1 +15759,10,1.0,1,1.6313883066177368,260,0.0,1 +15760,10,0.0,1,1.7283871173858643,261,0.0,1 +15761,10,0.0,1,1.2213927507400513,262,1.0,1 +15762,10,0.0,1,1.4533905982971191,263,0.0,1 +15763,10,1.0,1,1.4663903713226318,264,1.0,1 +15764,10,1.0,1,1.600388765335083,265,0.0,1 +15765,10,1.0,1,1.782386302947998,266,1.0,1 +15766,10,1.0,1,1.5033899545669556,267,1.0,1 +15767,10,1.0,1,1.2943925857543945,268,1.0,1 +15768,10,1.0,1,1.9943835735321045,269,1.0,1 +15769,10,1.0,1,1.6843876838684082,270,0.0,1 +15770,10,1.0,1,1.6133885383605957,271,1.0,1 +15771,10,1.0,1,1.5073899030685425,272,0.0,1 +15772,10,0.0,1,1.7263870239257812,273,0.0,1 +15773,10,0.0,1,1.454390525817871,274,0.0,1 +15774,10,1.0,1,1.6433881521224976,275,1.0,1 +15775,10,1.0,1,1.201392650604248,276,1.0,1 +15776,10,0.0,1,1.1323925256729126,277,0.0,1 +15777,10,1.0,1,1.1803926229476929,278,1.0,1 +15778,10,1.0,1,1.3193923234939575,279,1.0,1 +15779,10,1.0,1,1.3013925552368164,280,1.0,1 +15780,10,1.0,1,1.273392915725708,281,1.0,1 +15781,10,1.0,1,1.4053912162780762,282,1.0,1 +15782,10,1.0,1,1.362391710281372,283,0.0,1 +15783,10,1.0,1,2.036383628845215,284,1.0,1 +15784,10,0.0,1,1.8943848609924316,285,0.0,1 +15785,10,1.0,1,1.4263908863067627,286,1.0,1 +15786,10,1.0,1,1.2203927040100098,287,0.0,1 +15787,10,1.0,1,2.041383981704712,288,1.0,1 +15788,10,1.0,1,1.3043924570083618,289,1.0,1 +15789,10,1.0,1,1.461390495300293,290,1.0,1 +15790,10,1.0,1,2.2183923721313477,291,1.0,1 +15791,10,1.0,1,1.8543853759765625,292,0.0,1 +15792,10,1.0,1,1.6103885173797607,293,1.0,1 +15793,10,0.0,1,2.095386505126953,294,0.0,1 +15794,10,1.0,1,1.4163910150527954,295,1.0,1 +15795,10,1.0,1,1.4893901348114014,296,1.0,1 +15796,10,1.0,1,1.4153910875320435,297,0.0,1 +15797,10,1.0,1,1.89938485622406,298,0.0,1 +15798,10,0.0,1,1.6033886671066284,299,1.0,1 +15799,10,0.0,1,1.391391396522522,300,0.0,1 +15800,10,1.0,1,1.6883876323699951,301,1.0,1 +15801,10,1.0,1,1.4253909587860107,302,1.0,1 +15802,10,0.0,1,1.1803926229476929,303,0.0,1 +15803,10,1.0,1,1.596388816833496,304,1.0,1 +15804,10,1.0,1,1.2123926877975464,305,0.0,1 +15805,10,1.0,1,1.5933887958526611,306,0.0,1 +15806,10,1.0,1,1.9273844957351685,307,1.0,1 +15807,10,1.0,1,1.6773877143859863,308,1.0,1 +15808,10,1.0,1,1.2763928174972534,309,0.0,1 +15809,10,1.0,1,1.9323844909667969,310,1.0,1 +15810,10,1.0,1,1.5603892803192139,311,1.0,1 +15811,10,1.0,1,1.8023860454559326,312,1.0,1 +15812,10,1.0,1,1.527389645576477,313,0.0,1 +15813,10,0.0,1,1.5343894958496094,314,0.0,1 +15814,10,1.0,1,1.641388177871704,315,1.0,1 +15815,10,1.0,1,1.3513919115066528,316,0.0,1 +15816,10,0.0,1,1.5333895683288574,317,0.0,1 +15817,10,1.0,1,1.369391679763794,318,0.0,1 +15818,10,0.0,1,1.2813928127288818,319,0.0,1 +15819,10,1.0,1,1.8173859119415283,320,1.0,1 +15820,10,0.0,1,1.3133924007415771,321,0.0,1 +15821,10,1.0,1,1.4643903970718384,322,0.0,1 +15822,10,1.0,1,2.017383337020874,323,1.0,1 +15823,10,1.0,1,1.270392894744873,324,0.0,1 +15824,10,0.0,1,1.409391164779663,325,0.0,1 +15825,10,0.0,1,1.646388053894043,326,0.0,1 +15826,10,1.0,1,2.036383628845215,327,1.0,1 +15827,10,0.0,1,2.042384147644043,328,0.0,1 +15828,10,0.0,1,1.9373843669891357,329,0.0,1 +15829,10,1.0,1,1.265392780303955,330,0.0,1 +15830,10,1.0,1,1.7473868131637573,331,1.0,1 +15831,10,1.0,1,1.4523905515670776,332,0.0,1 +15832,10,1.0,1,1.4283908605575562,333,0.0,1 +15833,10,1.0,1,1.3083924055099487,334,1.0,1 +15834,10,1.0,1,1.5613892078399658,335,1.0,1 +15835,10,1.0,1,1.2643928527832031,336,1.0,1 +15836,10,1.0,1,1.5863888263702393,337,0.0,1 +15837,10,1.0,1,1.8143858909606934,338,0.0,1 +15838,10,1.0,1,1.4223909378051758,339,1.0,1 +15839,10,1.0,1,1.744386911392212,340,0.0,1 +15840,10,1.0,1,2.019383430480957,341,1.0,1 +15841,10,1.0,1,1.641388177871704,342,0.0,1 +15842,10,0.0,1,1.9373843669891357,343,0.0,1 +15843,10,1.0,1,1.2323927879333496,344,1.0,1 +15844,10,1.0,1,1.370391607284546,345,0.0,1 +15845,10,0.0,1,1.4283908605575562,346,0.0,1 +15846,10,1.0,1,1.314392328262329,347,1.0,1 +15847,10,1.0,1,1.4003912210464478,348,1.0,1 +15848,10,1.0,1,1.296392560005188,349,0.0,1 +15849,10,0.0,1,1.5353895425796509,350,1.0,1 +15850,10,0.0,1,1.1303925514221191,351,1.0,1 +15851,10,0.0,1,1.2833927869796753,352,1.0,1 +15852,10,0.0,1,1.2363927364349365,353,0.0,1 +15853,10,1.0,1,1.6343882083892822,354,1.0,1 +15854,10,0.0,1,1.5773890018463135,355,1.0,1 +15855,10,0.0,1,1.8673852682113647,356,0.0,1 +15856,10,1.0,1,1.9403843879699707,357,0.0,1 +15857,10,0.0,1,1.3383920192718506,358,1.0,1 +15858,10,0.0,1,1.387391448020935,359,0.0,1 +15859,10,0.0,1,1.1953927278518677,360,1.0,1 +15860,10,0.0,1,1.3953913450241089,361,0.0,1 +15861,10,0.0,1,1.921384572982788,362,0.0,1 +15862,10,0.0,1,1.7473868131637573,363,1.0,1 +15863,10,1.0,1,1.41339111328125,364,1.0,1 +15864,10,1.0,1,1.719387173652649,365,0.0,1 +15865,10,0.0,1,1.5773890018463135,366,0.0,1 +15866,10,1.0,1,1.8183858394622803,367,0.0,1 +15867,10,0.0,1,1.27439284324646,368,0.0,1 +15868,10,0.0,1,1.5383894443511963,369,1.0,1 +15869,10,0.0,1,1.2883926630020142,370,0.0,1 +15870,10,0.0,1,1.782386302947998,371,1.0,1 +15871,10,0.0,1,1.3713916540145874,372,0.0,1 +15872,10,0.0,1,1.3313921689987183,373,0.0,1 +15873,10,0.0,1,1.4823901653289795,374,0.0,1 +15874,10,0.0,1,1.8383855819702148,375,0.0,1 +15875,10,0.0,1,1.2573928833007812,376,0.0,1 +15876,10,1.0,1,1.6843876838684082,377,0.0,1 +15877,10,1.0,1,1.2763928174972534,378,1.0,1 +15878,10,1.0,1,2.1353883743286133,379,0.0,1 +15879,10,1.0,1,1.2543928623199463,380,1.0,1 +15880,10,1.0,1,1.4693903923034668,381,1.0,1 +15881,10,1.0,1,1.5583891868591309,382,1.0,1 +15882,10,1.0,1,1.4953900575637817,383,1.0,1 +15883,10,1.0,1,1.200392723083496,384,1.0,1 +15884,10,0.0,1,1.5073899030685425,385,0.0,1 +15885,10,1.0,1,1.27439284324646,386,0.0,1 +15886,10,0.0,1,1.1913926601409912,387,0.0,1 +15887,10,1.0,1,1.2623928785324097,388,1.0,1 +15888,10,1.0,1,1.299392580986023,389,1.0,1 +15889,10,1.0,1,1.317392349243164,390,0.0,1 +15890,10,1.0,1,1.8463854789733887,391,1.0,1 +15891,10,1.0,1,1.295392632484436,392,1.0,1 +15892,10,1.0,1,1.1993926763534546,393,1.0,1 +15893,10,1.0,1,2.2053916454315186,394,0.0,1 +15894,10,1.0,1,1.744386911392212,395,1.0,1 +15895,10,0.0,1,1.2353928089141846,396,1.0,1 +15896,10,1.0,1,1.8023860454559326,397,0.0,1 +15897,10,0.0,1,1.1713926792144775,398,0.0,1 +15898,10,0.0,1,1.3713916540145874,399,0.0,1 +15899,10,1.0,1,1.7553867101669312,400,1.0,1 +15900,10,1.0,1,1.410391092300415,401,1.0,1 +15901,10,1.0,1,1.3993912935256958,402,1.0,1 +15902,10,1.0,1,1.3933913707733154,403,1.0,1 +15903,10,1.0,1,1.6203885078430176,404,1.0,1 +15904,10,1.0,1,1.8103859424591064,405,1.0,1 +15905,10,1.0,1,1.3123923540115356,406,1.0,1 +15906,10,1.0,1,1.3943912982940674,407,1.0,1 +15907,10,0.0,1,1.2633928060531616,408,1.0,1 +15908,10,1.0,1,1.60438871383667,409,1.0,1 +15909,10,0.0,1,1.5033899545669556,410,0.0,1 +15910,10,1.0,1,1.3813915252685547,411,1.0,1 +15911,10,1.0,1,1.3763915300369263,412,1.0,1 +15912,10,1.0,1,1.2263927459716797,413,0.0,1 +15913,10,0.0,1,1.410391092300415,414,1.0,1 +15914,10,0.0,1,1.5803890228271484,415,0.0,1 +15915,10,0.0,1,1.8653852939605713,416,0.0,1 +15916,10,0.0,1,1.3073924779891968,417,0.0,1 +15917,10,1.0,1,1.9073847532272339,418,1.0,1 +15918,10,1.0,1,1.5153898000717163,419,1.0,1 +15919,10,1.0,1,1.347391963005066,420,1.0,1 +15920,10,1.0,1,1.480390191078186,421,0.0,1 +15921,10,1.0,1,1.4373908042907715,422,0.0,1 +15922,10,1.0,1,2.020383358001709,423,1.0,1 +15923,10,1.0,1,1.5513893365859985,424,0.0,1 +15924,10,0.0,1,1.417391061782837,425,1.0,1 +15925,10,0.0,1,1.6313883066177368,426,0.0,1 +15926,10,1.0,1,2.128387928009033,427,1.0,1 +15927,10,1.0,1,1.880385160446167,428,1.0,1 +15928,10,1.0,1,1.2513928413391113,429,1.0,1 +15929,10,1.0,1,1.43639075756073,430,1.0,1 +15930,10,1.0,1,1.321392297744751,431,0.0,1 +15931,10,0.0,1,1.204392671585083,432,0.0,1 +15932,10,1.0,1,1.8983848094940186,433,1.0,1 +15933,10,1.0,1,1.5593892335891724,434,0.0,1 +15934,10,0.0,1,2.083385944366455,435,0.0,1 +15935,10,0.0,1,1.2873927354812622,436,0.0,1 +15936,10,1.0,1,1.921384572982788,437,0.0,1 +15937,10,0.0,1,1.1923927068710327,438,1.0,1 +15938,10,0.0,1,1.484390139579773,439,0.0,1 +15939,10,0.0,1,2.027383327484131,440,1.0,1 +15940,10,0.0,1,1.7293870449066162,441,0.0,1 +15941,10,1.0,1,1.3383920192718506,442,1.0,1 +15942,10,1.0,1,1.8663852214813232,443,1.0,1 +15943,10,1.0,1,1.6173884868621826,444,1.0,1 +15944,10,1.0,1,1.3293921947479248,445,1.0,1 +15945,10,1.0,1,1.5853888988494873,446,1.0,1 +15946,10,1.0,1,1.5763890743255615,447,1.0,1 +15947,10,1.0,1,1.1933927536010742,448,1.0,1 +15948,10,1.0,1,1.325392246246338,449,1.0,1 +15949,10,1.0,1,1.89938485622406,450,1.0,1 +15950,10,1.0,1,1.5203896760940552,451,1.0,1 +15951,10,0.0,1,1.142392635345459,452,1.0,1 +15952,10,0.0,1,1.3153923749923706,453,1.0,1 +15953,10,1.0,1,1.7143871784210205,454,0.0,1 +15954,10,0.0,1,1.5383894443511963,455,0.0,1 +15955,10,1.0,1,1.8943848609924316,456,1.0,1 +15956,10,1.0,1,1.3013925552368164,457,0.0,1 +15957,10,1.0,1,1.3553918600082397,458,0.0,1 +15958,10,0.0,1,1.3273922204971313,459,0.0,1 +15959,10,1.0,1,1.3863914012908936,460,1.0,1 +15960,10,1.0,1,1.3023924827575684,461,1.0,1 +15961,10,1.0,1,1.370391607284546,462,1.0,1 +15962,10,1.0,1,1.299392580986023,463,1.0,1 +15963,10,1.0,1,1.484390139579773,464,1.0,1 +15964,10,1.0,1,1.8043861389160156,465,1.0,1 +15965,10,1.0,1,1.4913901090621948,466,1.0,1 +15966,10,1.0,1,1.3373920917510986,467,1.0,1 +15967,10,1.0,1,1.4443906545639038,468,1.0,1 +15968,10,1.0,1,1.57538902759552,469,1.0,1 +15969,10,1.0,1,1.7453868389129639,470,1.0,1 +15970,10,1.0,1,1.314392328262329,471,1.0,1 +15971,10,1.0,1,1.3633917570114136,472,0.0,1 +15972,10,0.0,1,1.8173859119415283,473,1.0,1 +15973,10,0.0,1,1.2843927145004272,474,1.0,1 +15974,10,0.0,1,1.4523905515670776,475,0.0,1 +15975,10,1.0,1,1.8173859119415283,476,0.0,1 +15976,10,0.0,1,1.234392762184143,477,1.0,1 +15977,10,0.0,1,1.644388198852539,478,0.0,1 +15978,10,0.0,1,1.5333895683288574,479,0.0,1 +15979,10,0.0,1,1.5823888778686523,480,0.0,1 +15980,10,1.0,1,1.6643879413604736,481,1.0,1 +15981,10,1.0,1,1.5613892078399658,482,0.0,1 +15982,10,0.0,1,1.4723902940750122,483,1.0,1 +15983,10,0.0,1,1.6203885078430176,484,0.0,1 +15984,10,0.0,1,1.2943925857543945,485,0.0,1 +15985,10,0.0,1,1.369391679763794,486,0.0,1 +15986,10,1.0,1,1.6263883113861084,487,1.0,1 +15987,10,1.0,1,1.3243921995162964,488,1.0,1 +15988,10,1.0,1,1.4273909330368042,489,1.0,1 +15989,10,1.0,1,1.3273922204971313,490,1.0,1 +15990,10,1.0,1,1.619388461112976,491,1.0,1 +15991,10,1.0,1,1.3603917360305786,492,0.0,1 +15992,10,0.0,1,1.7943861484527588,493,1.0,1 +15993,10,1.0,1,1.510389804840088,494,1.0,1 +15994,10,0.0,1,1.8443856239318848,495,0.0,1 +15995,10,1.0,1,1.439390778541565,496,1.0,1 +15996,10,1.0,1,1.597388744354248,497,1.0,1 +15997,10,1.0,1,1.4963899850845337,498,1.0,1 +15998,10,1.0,1,1.6253883838653564,499,0.0,1 +15999,10,0.0,1,1.461390495300293,500,0.0,1 +16000,10,1.0,2,1.97438383102417,1,0.0,1 +16001,10,0.0,2,1.4123910665512085,2,1.0,1 +16002,10,0.0,2,1.3543918132781982,3,0.0,1 +16003,10,1.0,2,1.646388053894043,4,0.0,1 +16004,10,1.0,2,1.5463893413543701,5,0.0,1 +16005,10,0.0,2,1.8673852682113647,6,1.0,1 +16006,10,0.0,2,1.3783915042877197,7,1.0,1 +16007,10,0.0,2,1.1273925304412842,8,1.0,1 +16008,10,1.0,2,1.8383855819702148,9,0.0,1 +16009,10,0.0,2,1.2083927392959595,10,1.0,1 +16010,10,0.0,2,1.3523918390274048,11,0.0,1 +16011,10,0.0,2,1.2573928833007812,12,0.0,1 +16012,10,0.0,2,1.619388461112976,13,0.0,1 +16013,10,0.0,2,1.6403882503509521,14,1.0,1 +16014,10,1.0,2,1.7243871688842773,15,0.0,1 +16015,10,0.0,2,1.1313925981521606,16,1.0,1 +16016,10,0.0,2,1.3743915557861328,17,0.0,1 +16017,10,0.0,2,1.1143925189971924,18,1.0,1 +16018,10,0.0,2,1.4253909587860107,19,1.0,1 +16019,10,0.0,2,1.1223925352096558,20,1.0,1 +16020,10,0.0,2,1.321392297744751,21,1.0,1 +16021,10,0.0,2,1.3743915557861328,22,0.0,1 +16022,10,1.0,2,1.5263895988464355,23,0.0,1 +16023,10,0.0,2,1.4083911180496216,24,1.0,1 +16024,10,0.0,2,1.2613928318023682,25,1.0,1 +16025,10,0.0,2,1.7453868389129639,26,0.0,1 +16026,10,0.0,2,1.2173926830291748,27,0.0,1 +16027,10,1.0,2,1.7493867874145508,28,1.0,1 +16028,10,0.0,2,1.1493926048278809,29,0.0,1 +16029,10,1.0,2,1.5293896198272705,30,0.0,1 +16030,10,1.0,2,1.4883900880813599,31,0.0,1 +16031,10,0.0,2,1.554389238357544,32,0.0,1 +16032,10,0.0,2,1.4513906240463257,33,0.0,1 +16033,10,0.0,2,1.2793928384780884,34,0.0,1 +16034,10,0.0,2,1.7793864011764526,35,0.0,1 +16035,10,0.0,2,1.5283896923065186,36,1.0,1 +16036,10,0.0,2,1.1713926792144775,37,0.0,1 +16037,10,0.0,2,1.6153885126113892,38,0.0,1 +16038,10,0.0,2,2.2463936805725098,39,0.0,1 +16039,10,1.0,2,1.299392580986023,40,1.0,1 +16040,10,1.0,2,1.646388053894043,41,0.0,1 +16041,10,1.0,2,1.2553927898406982,42,1.0,1 +16042,10,1.0,2,1.6243884563446045,43,0.0,1 +16043,10,0.0,2,1.7483868598937988,44,0.0,1 +16044,10,1.0,2,1.7293870449066162,45,1.0,1 +16045,10,1.0,2,1.763386607170105,46,1.0,1 +16046,10,1.0,2,1.600388765335083,47,0.0,1 +16047,10,1.0,2,1.392391324043274,48,0.0,1 +16048,10,0.0,2,1.26839280128479,49,1.0,1 +16049,10,0.0,2,1.3463919162750244,50,0.0,1 +16050,10,0.0,2,1.2263927459716797,51,0.0,1 +16051,10,0.0,2,1.8653852939605713,52,0.0,1 +16052,10,0.0,2,1.3713916540145874,53,0.0,1 +16053,10,1.0,2,1.6623878479003906,54,0.0,1 +16054,10,1.0,2,1.9113847017288208,55,1.0,1 +16055,10,1.0,2,1.3373920917510986,56,0.0,1 +16056,10,0.0,2,1.3313921689987183,57,0.0,1 +16057,10,1.0,2,1.3523918390274048,58,1.0,1 +16058,10,1.0,2,1.4383907318115234,59,1.0,1 +16059,10,1.0,2,1.203392744064331,60,1.0,1 +16060,10,1.0,2,1.1493926048278809,61,1.0,1 +16061,10,1.0,2,1.6373882293701172,62,1.0,1 +16062,10,1.0,2,1.4263908863067627,63,0.0,1 +16063,10,0.0,2,1.4373908042907715,64,1.0,1 +16064,10,0.0,2,1.623388409614563,65,1.0,1 +16065,10,1.0,2,1.339392066001892,66,1.0,1 +16066,10,1.0,2,1.5403895378112793,67,1.0,1 +16067,10,1.0,2,1.4603904485702515,68,0.0,1 +16068,10,0.0,2,1.1153925657272339,69,1.0,1 +16069,10,0.0,2,1.3093924522399902,70,1.0,1 +16070,10,0.0,2,1.642388105392456,71,0.0,1 +16071,10,1.0,2,1.4673904180526733,72,1.0,1 +16072,10,1.0,2,1.5513893365859985,73,1.0,1 +16073,10,1.0,2,1.2973926067352295,74,1.0,1 +16074,10,1.0,2,1.6103885173797607,75,1.0,1 +16075,10,1.0,2,2.032383441925049,76,0.0,1 +16076,10,1.0,2,1.6073886156082153,77,0.0,1 +16077,10,0.0,2,1.1443926095962524,78,0.0,1 +16078,10,0.0,2,1.2393927574157715,79,0.0,1 +16079,10,0.0,2,1.2333927154541016,80,0.0,1 +16080,10,0.0,2,2.2193922996520996,81,0.0,1 +16081,10,1.0,2,1.2763928174972534,82,1.0,1 +16082,10,1.0,2,1.8163859844207764,83,1.0,1 +16083,10,1.0,2,1.4263908863067627,84,1.0,1 +16084,10,1.0,2,1.2523927688598633,85,1.0,1 +16085,10,1.0,2,1.3163923025131226,86,0.0,1 +16086,10,0.0,2,1.8673852682113647,87,0.0,1 +16087,10,0.0,2,1.246392846107483,88,0.0,1 +16088,10,1.0,2,1.365391731262207,89,1.0,1 +16089,10,1.0,2,1.594388723373413,90,0.0,1 +16090,10,1.0,2,1.3683916330337524,91,0.0,1 +16091,10,1.0,2,1.3733916282653809,92,0.0,1 +16092,10,1.0,2,1.5143897533416748,93,1.0,1 +16093,10,0.0,2,1.6123886108398438,94,1.0,1 +16094,10,0.0,2,2.1393885612487793,95,0.0,1 +16095,10,1.0,2,1.5953887701034546,96,0.0,1 +16096,10,1.0,2,2.026383399963379,97,0.0,1 +16097,10,0.0,2,1.4933900833129883,98,0.0,1 +16098,10,0.0,2,1.4943900108337402,99,1.0,1 +16099,10,0.0,2,1.2193927764892578,100,1.0,1 +16100,10,0.0,2,1.387391448020935,101,0.0,1 +16101,10,0.0,2,1.2603927850723267,102,0.0,1 +16102,10,0.0,2,1.6353882551193237,103,1.0,1 +16103,10,1.0,2,1.690387487411499,104,1.0,1 +16104,10,0.0,2,1.5433894395828247,105,0.0,1 +16105,10,1.0,2,1.9193845987319946,106,0.0,1 +16106,10,0.0,2,1.6593879461288452,107,1.0,1 +16107,10,0.0,2,1.1533925533294678,108,0.0,1 +16108,10,1.0,2,1.3273922204971313,109,0.0,1 +16109,10,0.0,2,1.2363927364349365,110,1.0,1 +16110,10,0.0,2,1.1443926095962524,111,0.0,1 +16111,10,1.0,2,1.8563854694366455,112,1.0,1 +16112,10,0.0,2,1.1413925886154175,113,0.0,1 +16113,10,1.0,2,1.267392873764038,114,0.0,1 +16114,10,0.0,2,1.2893927097320557,115,1.0,1 +16115,10,0.0,2,1.5513893365859985,116,0.0,1 +16116,10,1.0,2,1.8953849077224731,117,0.0,1 +16117,10,0.0,2,1.9093847274780273,118,0.0,1 +16118,10,0.0,2,1.1983927488327026,119,0.0,1 +16119,10,0.0,2,1.8473855257034302,120,0.0,1 +16120,10,1.0,2,1.6703877449035645,121,0.0,1 +16121,10,0.0,2,1.4973900318145752,122,0.0,1 +16122,10,0.0,2,1.9153846502304077,123,0.0,1 +16123,10,1.0,2,1.73738694190979,124,0.0,1 +16124,10,0.0,2,1.4913901090621948,125,1.0,1 +16125,10,0.0,2,1.2323927879333496,126,0.0,1 +16126,10,1.0,2,1.2203927040100098,127,1.0,1 +16127,10,1.0,2,1.7663865089416504,128,0.0,1 +16128,10,1.0,2,1.417391061782837,129,0.0,1 +16129,10,0.0,2,1.9023847579956055,130,1.0,1 +16130,10,0.0,2,1.6753877401351929,131,0.0,1 +16131,10,0.0,2,1.273392915725708,132,0.0,1 +16132,10,0.0,2,1.4023911952972412,133,1.0,1 +16133,10,0.0,2,1.2793928384780884,134,1.0,1 +16134,10,0.0,2,1.1943926811218262,135,0.0,1 +16135,10,0.0,2,1.7303869724273682,136,1.0,1 +16136,10,0.0,2,1.370391607284546,137,1.0,1 +16137,10,0.0,2,1.1873927116394043,138,1.0,1 +16138,10,0.0,2,1.270392894744873,139,1.0,1 +16139,10,0.0,2,1.524389624595642,140,0.0,1 +16140,10,0.0,2,1.4443906545639038,141,0.0,1 +16141,10,0.0,2,1.2493927478790283,142,1.0,1 +16142,10,0.0,2,1.176392674446106,143,0.0,1 +16143,10,0.0,2,1.487390160560608,144,0.0,1 +16144,10,0.0,2,1.3153923749923706,145,0.0,1 +16145,10,1.0,2,1.2793928384780884,146,1.0,1 +16146,10,1.0,2,1.973383903503418,147,1.0,1 +16147,10,1.0,2,1.5703890323638916,148,0.0,1 +16148,10,1.0,2,1.7723865509033203,149,1.0,1 +16149,10,1.0,2,1.3563917875289917,150,0.0,1 +16150,10,0.0,2,1.3313921689987183,151,0.0,1 +16151,10,0.0,2,1.881385087966919,152,0.0,1 +16152,10,1.0,2,1.7693865299224854,153,0.0,1 +16153,10,0.0,2,1.3733916282653809,154,1.0,1 +16154,10,0.0,2,1.2443927526474,155,0.0,1 +16155,10,0.0,2,2.2403931617736816,156,1.0,1 +16156,10,0.0,2,1.5233896970748901,157,1.0,1 +16157,10,0.0,2,1.5263895988464355,158,0.0,1 +16158,10,1.0,2,1.4743902683258057,159,1.0,1 +16159,10,1.0,2,2.026383399963379,160,1.0,1 +16160,10,1.0,2,1.2413928508758545,161,0.0,1 +16161,10,0.0,2,2.015383243560791,162,1.0,1 +16162,10,0.0,2,1.995383620262146,163,1.0,1 +16163,10,1.0,2,1.322392225265503,164,0.0,1 +16164,10,0.0,2,1.461390495300293,165,0.0,1 +16165,10,0.0,2,1.6243884563446045,166,0.0,1 +16166,10,1.0,2,1.1983927488327026,167,0.0,1 +16167,10,0.0,2,1.8233858346939087,168,0.0,1 +16168,10,0.0,2,2.1613895893096924,169,1.0,1 +16169,10,0.0,2,1.300392508506775,170,0.0,1 +16170,10,1.0,2,1.8153859376907349,171,0.0,1 +16171,10,1.0,2,1.9963836669921875,172,0.0,1 +16172,10,0.0,2,1.3773915767669678,173,1.0,1 +16173,10,0.0,2,1.27439284324646,174,0.0,1 +16174,10,0.0,2,1.3383920192718506,175,0.0,1 +16175,10,1.0,2,1.5423893928527832,176,1.0,1 +16176,10,1.0,2,1.3043924570083618,177,0.0,1 +16177,10,1.0,2,1.4383907318115234,178,1.0,1 +16178,10,1.0,2,1.2593928575515747,179,1.0,1 +16179,10,0.0,2,1.2243927717208862,180,1.0,1 +16180,10,0.0,2,1.4113911390304565,181,1.0,1 +16181,10,0.0,2,1.5463893413543701,182,0.0,1 +16182,10,1.0,2,1.5723891258239746,183,0.0,1 +16183,10,0.0,2,1.549389362335205,184,1.0,1 +16184,10,0.0,2,1.243392825126648,185,0.0,1 +16185,10,0.0,2,1.4293909072875977,186,1.0,1 +16186,10,0.0,2,1.7223870754241943,187,0.0,1 +16187,10,1.0,2,1.3083924055099487,188,0.0,1 +16188,10,0.0,2,1.3363920450210571,189,0.0,1 +16189,10,1.0,2,1.321392297744751,190,1.0,1 +16190,10,1.0,2,1.6653878688812256,191,0.0,1 +16191,10,1.0,2,2.098386764526367,192,1.0,1 +16192,10,0.0,2,1.649388074874878,193,1.0,1 +16193,10,0.0,2,1.483390212059021,194,0.0,1 +16194,10,1.0,2,1.6333882808685303,195,0.0,1 +16195,10,0.0,2,1.4703903198242188,196,1.0,1 +16196,10,0.0,2,1.4753903150558472,197,0.0,1 +16197,10,0.0,2,1.696387529373169,198,1.0,1 +16198,10,0.0,2,1.6113885641098022,199,1.0,1 +16199,10,0.0,2,1.1813926696777344,200,1.0,1 +16200,10,0.0,2,1.3323920965194702,201,1.0,1 +16201,10,0.0,2,1.2323927879333496,202,0.0,1 +16202,10,0.0,2,1.3813915252685547,203,0.0,1 +16203,10,1.0,2,1.4923900365829468,204,0.0,1 +16204,10,0.0,2,1.524389624595642,205,0.0,1 +16205,10,0.0,2,1.6163885593414307,206,0.0,1 +16206,10,1.0,2,1.6553879976272583,207,1.0,1 +16207,10,1.0,2,1.4023911952972412,208,1.0,1 +16208,10,1.0,2,1.3673917055130005,209,1.0,1 +16209,10,1.0,2,1.2443927526474,210,1.0,1 +16210,10,1.0,2,1.5823888778686523,211,0.0,1 +16211,10,1.0,2,1.2603927850723267,212,0.0,1 +16212,10,0.0,2,1.5223896503448486,213,0.0,1 +16213,10,0.0,2,1.317392349243164,214,1.0,1 +16214,10,0.0,2,1.6753877401351929,215,1.0,1 +16215,10,0.0,2,1.3423919677734375,216,0.0,1 +16216,10,0.0,2,1.4003912210464478,217,0.0,1 +16217,10,1.0,2,1.210392713546753,218,0.0,1 +16218,10,0.0,2,1.3863914012908936,219,1.0,1 +16219,10,1.0,2,2.1143875122070312,220,1.0,1 +16220,10,0.0,2,1.3903913497924805,221,0.0,1 +16221,10,1.0,2,1.6363883018493652,222,0.0,1 +16222,10,0.0,2,1.602388620376587,223,1.0,1 +16223,10,0.0,2,1.644388198852539,224,0.0,1 +16224,10,0.0,2,1.2533928155899048,225,0.0,1 +16225,10,0.0,2,1.878385066986084,226,0.0,1 +16226,10,1.0,2,1.7023873329162598,227,0.0,1 +16227,10,0.0,2,1.6763877868652344,228,1.0,1 +16228,10,0.0,2,1.2623928785324097,229,0.0,1 +16229,10,1.0,2,1.3963912725448608,230,1.0,1 +16230,10,1.0,2,1.265392780303955,231,0.0,1 +16231,10,0.0,2,1.6113885641098022,232,1.0,1 +16232,10,0.0,2,1.6803877353668213,233,0.0,1 +16233,10,1.0,2,1.4993900060653687,234,1.0,1 +16234,10,1.0,2,1.2803927659988403,235,0.0,1 +16235,10,1.0,2,1.5703890323638916,236,0.0,1 +16236,10,1.0,2,1.6993874311447144,237,1.0,1 +16237,10,1.0,2,1.3133924007415771,238,1.0,1 +16238,10,1.0,2,1.3843914270401,239,0.0,1 +16239,10,0.0,2,1.4493906497955322,240,1.0,1 +16240,10,0.0,2,1.8163859844207764,241,1.0,1 +16241,10,0.0,2,1.4693903923034668,242,0.0,1 +16242,10,1.0,2,1.4013912677764893,243,1.0,1 +16243,10,0.0,2,1.321392297744751,244,0.0,1 +16244,10,1.0,2,1.9083847999572754,245,1.0,1 +16245,10,1.0,2,1.387391448020935,246,1.0,1 +16246,10,1.0,2,1.1933927536010742,247,0.0,1 +16247,10,1.0,2,1.3153923749923706,248,1.0,1 +16248,10,1.0,2,1.6243884563446045,249,1.0,1 +16249,10,1.0,2,1.4373908042907715,250,1.0,1 +16250,10,1.0,2,1.322392225265503,251,0.0,1 +16251,10,0.0,2,1.7923862934112549,252,1.0,1 +16252,10,0.0,2,1.4043911695480347,253,0.0,1 +16253,10,1.0,2,1.1993926763534546,254,0.0,1 +16254,10,0.0,2,1.2533928155899048,255,1.0,1 +16255,10,0.0,2,1.2793928384780884,256,1.0,1 +16256,10,0.0,2,1.200392723083496,257,1.0,1 +16257,10,0.0,2,2.0093834400177,258,0.0,1 +16258,10,0.0,2,1.1293926239013672,259,1.0,1 +16259,10,0.0,2,1.414391040802002,260,1.0,1 +16260,10,0.0,2,1.1113924980163574,261,0.0,1 +16261,10,1.0,2,1.652388095855713,262,0.0,1 +16262,10,0.0,2,1.596388816833496,263,1.0,1 +16263,10,0.0,2,1.2443927526474,264,0.0,1 +16264,10,0.0,2,1.1593925952911377,265,1.0,1 +16265,10,0.0,2,1.1973927021026611,266,1.0,1 +16266,10,0.0,2,1.9163846969604492,267,1.0,1 +16267,10,0.0,2,1.3153923749923706,268,0.0,1 +16268,10,0.0,2,1.2323927879333496,269,0.0,1 +16269,10,1.0,2,1.667387843132019,270,0.0,1 +16270,10,0.0,2,1.2283927202224731,271,0.0,1 +16271,10,0.0,2,1.3723915815353394,272,1.0,1 +16272,10,0.0,2,1.5383894443511963,273,0.0,1 +16273,10,0.0,2,1.4853901863098145,274,1.0,1 +16274,10,0.0,2,1.3013925552368164,275,1.0,1 +16275,10,0.0,2,1.531389594078064,276,0.0,1 +16276,10,0.0,2,1.2823927402496338,277,0.0,1 +16277,10,0.0,2,1.8393856287002563,278,0.0,1 +16278,10,1.0,2,1.6693878173828125,279,0.0,1 +16279,10,0.0,2,1.3763915300369263,280,1.0,1 +16280,10,0.0,2,1.4823901653289795,281,0.0,1 +16281,10,0.0,2,1.4453907012939453,282,0.0,1 +16282,10,0.0,2,1.2613928318023682,283,0.0,1 +16283,10,0.0,2,1.8213858604431152,284,0.0,1 +16284,10,0.0,2,1.2833927869796753,285,0.0,1 +16285,10,0.0,2,1.4533905982971191,286,0.0,1 +16286,10,0.0,2,1.7233871221542358,287,0.0,1 +16287,10,0.0,2,1.325392246246338,288,1.0,1 +16288,10,0.0,2,1.3523918390274048,289,1.0,1 +16289,10,0.0,2,1.4313908815383911,290,1.0,1 +16290,10,0.0,2,1.4033912420272827,291,1.0,1 +16291,10,0.0,2,1.3313921689987183,292,1.0,1 +16292,10,0.0,2,1.4063911437988281,293,0.0,1 +16293,10,0.0,2,1.9363844394683838,294,0.0,1 +16294,10,0.0,2,1.5213897228240967,295,1.0,1 +16295,10,0.0,2,1.3363920450210571,296,1.0,1 +16296,10,0.0,2,1.2413928508758545,297,0.0,1 +16297,10,1.0,2,1.6833876371383667,298,0.0,1 +16298,10,0.0,2,1.6253883838653564,299,0.0,1 +16299,10,1.0,2,1.6573879718780518,300,0.0,1 +16300,10,0.0,2,1.3083924055099487,301,1.0,1 +16301,10,0.0,2,1.2753928899765015,302,0.0,1 +16302,10,0.0,2,1.2903926372528076,303,1.0,1 +16303,10,0.0,2,1.210392713546753,304,0.0,1 +16304,10,0.0,2,1.1133925914764404,305,0.0,1 +16305,10,0.0,2,1.6363883018493652,306,0.0,1 +16306,10,0.0,2,1.2023926973342896,307,1.0,1 +16307,10,0.0,2,1.1923927068710327,308,1.0,1 +16308,10,0.0,2,1.299392580986023,309,0.0,1 +16309,10,0.0,2,1.7213871479034424,310,1.0,1 +16310,10,0.0,2,1.4083911180496216,311,0.0,1 +16311,10,0.0,2,2.055384635925293,312,0.0,1 +16312,10,0.0,2,1.509389877319336,313,0.0,1 +16313,10,0.0,2,1.4633904695510864,314,0.0,1 +16314,10,0.0,2,1.325392246246338,315,0.0,1 +16315,10,0.0,2,1.6323883533477783,316,1.0,1 +16316,10,1.0,2,1.388391375541687,317,1.0,1 +16317,10,1.0,2,1.2163927555084229,318,0.0,1 +16318,10,0.0,2,1.3683916330337524,319,1.0,1 +16319,10,0.0,2,1.2943925857543945,320,0.0,1 +16320,10,1.0,2,1.4963899850845337,321,0.0,1 +16321,10,0.0,2,1.711387276649475,322,1.0,1 +16322,10,0.0,2,1.271392822265625,323,0.0,1 +16323,10,0.0,2,1.246392846107483,324,0.0,1 +16324,10,0.0,2,1.531389594078064,325,0.0,1 +16325,10,0.0,2,1.3313921689987183,326,1.0,1 +16326,10,0.0,2,1.836385726928711,327,0.0,1 +16327,10,0.0,2,1.6743876934051514,328,0.0,1 +16328,10,0.0,2,1.5473893880844116,329,1.0,1 +16329,10,1.0,2,1.9103846549987793,330,0.0,1 +16330,10,0.0,2,1.1853926181793213,331,1.0,1 +16331,10,0.0,2,1.209392786026001,332,0.0,1 +16332,10,1.0,2,1.5353895425796509,333,1.0,1 +16333,10,1.0,2,1.5453894138336182,334,1.0,1 +16334,10,1.0,2,1.7623865604400635,335,0.0,1 +16335,10,1.0,2,1.4203909635543823,336,1.0,1 +16336,10,1.0,2,1.347391963005066,337,0.0,1 +16337,10,0.0,2,1.9423842430114746,338,0.0,1 +16338,10,0.0,2,2.2573940753936768,339,1.0,1 +16339,10,0.0,2,1.2873927354812622,340,0.0,1 +16340,10,1.0,2,1.5413894653320312,341,0.0,1 +16341,10,0.0,2,1.1983927488327026,342,0.0,1 +16342,10,1.0,2,1.1933927536010742,343,0.0,1 +16343,10,1.0,2,1.556389331817627,344,1.0,1 +16344,10,1.0,2,2.1663899421691895,345,1.0,1 +16345,10,1.0,2,1.553389310836792,346,1.0,1 +16346,10,1.0,2,1.4953900575637817,347,0.0,1 +16347,10,0.0,2,1.322392225265503,348,0.0,1 +16348,10,1.0,2,1.8693852424621582,349,0.0,1 +16349,10,1.0,2,1.6373882293701172,350,1.0,1 +16350,10,1.0,2,1.9013848304748535,351,0.0,1 +16351,10,0.0,2,1.2793928384780884,352,1.0,1 +16352,10,0.0,2,1.41339111328125,353,0.0,1 +16353,10,0.0,2,1.5633891820907593,354,0.0,1 +16354,10,0.0,2,1.5813889503479004,355,1.0,1 +16355,10,0.0,2,1.6433881521224976,356,0.0,1 +16356,10,0.0,2,1.432390809059143,357,1.0,1 +16357,10,0.0,2,1.340391993522644,358,1.0,1 +16358,10,0.0,2,1.1503926515579224,359,0.0,1 +16359,10,1.0,2,1.4783902168273926,360,1.0,1 +16360,10,1.0,2,1.5433894395828247,361,0.0,1 +16361,10,0.0,2,1.9863836765289307,362,0.0,1 +16362,10,0.0,2,1.784386396408081,363,1.0,1 +16363,10,0.0,2,1.4213910102844238,364,1.0,1 +16364,10,0.0,2,1.2423927783966064,365,1.0,1 +16365,10,1.0,2,1.736387014389038,366,0.0,1 +16366,10,0.0,2,1.4753903150558472,367,1.0,1 +16367,10,0.0,2,1.2523927688598633,368,0.0,1 +16368,10,1.0,2,1.711387276649475,369,0.0,1 +16369,10,1.0,2,1.9843838214874268,370,1.0,1 +16370,10,1.0,2,1.786386251449585,371,1.0,1 +16371,10,1.0,2,1.759386658668518,372,0.0,1 +16372,10,1.0,2,1.5173897743225098,373,1.0,1 +16373,10,1.0,2,1.1893926858901978,374,1.0,1 +16374,10,1.0,2,1.6883876323699951,375,1.0,1 +16375,10,1.0,2,1.2883926630020142,376,1.0,1 +16376,10,0.0,2,1.3483918905258179,377,1.0,1 +16377,10,1.0,2,1.9353843927383423,378,1.0,1 +16378,10,1.0,2,1.87638521194458,379,0.0,1 +16379,10,0.0,2,1.4153910875320435,380,0.0,1 +16380,10,0.0,2,1.1623926162719727,381,0.0,1 +16381,10,1.0,2,1.855385422706604,382,0.0,1 +16382,10,0.0,2,1.3423919677734375,383,0.0,1 +16383,10,1.0,2,1.9163846969604492,384,0.0,1 +16384,10,0.0,2,1.2413928508758545,385,0.0,1 +16385,10,1.0,2,2.124387741088867,386,0.0,1 +16386,10,0.0,2,2.0003836154937744,387,0.0,1 +16387,10,1.0,2,1.60438871383667,388,0.0,1 +16388,10,1.0,2,1.4723902940750122,389,0.0,1 +16389,10,0.0,2,1.5833889245986938,390,1.0,1 +16390,10,0.0,2,1.2813928127288818,391,1.0,1 +16391,10,0.0,2,1.2163927555084229,392,1.0,1 +16392,10,0.0,2,1.1743927001953125,393,0.0,1 +16393,10,0.0,2,1.2443927526474,394,0.0,1 +16394,10,0.0,2,1.3803914785385132,395,0.0,1 +16395,10,1.0,2,1.5673891305923462,396,0.0,1 +16396,10,1.0,2,1.414391040802002,397,1.0,1 +16397,10,1.0,2,1.2643928527832031,398,1.0,1 +16398,10,1.0,2,1.409391164779663,399,0.0,1 +16399,10,1.0,2,1.571389079093933,400,0.0,1 +16400,10,1.0,2,1.5203896760940552,401,1.0,1 +16401,10,1.0,2,2.059384822845459,402,0.0,1 +16402,10,1.0,2,1.5773890018463135,403,1.0,1 +16403,10,1.0,2,1.2663928270339966,404,0.0,1 +16404,10,0.0,2,1.3553918600082397,405,1.0,1 +16405,10,1.0,2,1.6263883113861084,406,0.0,1 +16406,10,0.0,2,1.2823927402496338,407,0.0,1 +16407,10,1.0,2,1.5553892850875854,408,1.0,1 +16408,10,1.0,2,1.3563917875289917,409,1.0,1 +16409,10,1.0,2,1.57538902759552,410,0.0,1 +16410,10,1.0,2,1.715387225151062,411,0.0,1 +16411,10,0.0,2,1.6063885688781738,412,0.0,1 +16412,10,1.0,2,2.1973912715911865,413,0.0,1 +16413,10,1.0,2,2.020383358001709,414,1.0,1 +16414,10,1.0,2,1.4223909378051758,415,0.0,1 +16415,10,0.0,2,1.3203922510147095,416,0.0,1 +16416,10,1.0,2,1.8123860359191895,417,1.0,1 +16417,10,0.0,2,1.4693903923034668,418,0.0,1 +16418,10,1.0,2,2.032383441925049,419,1.0,1 +16419,10,1.0,2,1.2363927364349365,420,0.0,1 +16420,10,1.0,2,1.5883889198303223,421,0.0,1 +16421,10,0.0,2,1.8203859329223633,422,1.0,1 +16422,10,0.0,2,1.5143897533416748,423,1.0,1 +16423,10,0.0,2,1.7723865509033203,424,1.0,1 +16424,10,0.0,2,1.2763928174972534,425,1.0,1 +16425,10,0.0,2,1.1563925743103027,426,1.0,1 +16426,10,0.0,2,1.210392713546753,427,1.0,1 +16427,10,0.0,2,1.3303921222686768,428,0.0,1 +16428,10,0.0,2,1.5353895425796509,429,1.0,1 +16429,10,0.0,2,1.2913926839828491,430,1.0,1 +16430,10,0.0,2,1.1983927488327026,431,0.0,1 +16431,10,0.0,2,1.781386375427246,432,0.0,1 +16432,10,0.0,2,1.7043874263763428,433,0.0,1 +16433,10,1.0,2,1.6743876934051514,434,1.0,1 +16434,10,1.0,2,1.4563905000686646,435,0.0,1 +16435,10,1.0,2,1.644388198852539,436,0.0,1 +16436,10,0.0,2,1.1803926229476929,437,0.0,1 +16437,10,0.0,2,1.4223909378051758,438,0.0,1 +16438,10,0.0,2,1.8023860454559326,439,1.0,1 +16439,10,0.0,2,1.4183909893035889,440,0.0,1 +16440,10,0.0,2,1.6703877449035645,441,0.0,1 +16441,10,0.0,2,1.3163923025131226,442,0.0,1 +16442,10,1.0,2,1.4073911905288696,443,1.0,1 +16443,10,1.0,2,1.2563928365707397,444,1.0,1 +16444,10,1.0,2,1.505389928817749,445,1.0,1 +16445,10,1.0,2,1.9383842945098877,446,0.0,1 +16446,10,1.0,2,1.479390263557434,447,1.0,1 +16447,10,1.0,2,1.3793915510177612,448,0.0,1 +16448,10,1.0,2,1.7583866119384766,449,0.0,1 +16449,10,0.0,2,1.3203922510147095,450,1.0,1 +16450,10,0.0,2,1.3813915252685547,451,0.0,1 +16451,10,1.0,2,1.6143884658813477,452,1.0,1 +16452,10,1.0,2,1.6113885641098022,453,1.0,1 +16453,10,1.0,2,1.5883889198303223,454,1.0,1 +16454,10,1.0,2,1.3413920402526855,455,0.0,1 +16455,10,1.0,2,1.6793876886367798,456,0.0,1 +16456,10,1.0,2,1.366391658782959,457,1.0,1 +16457,10,1.0,2,1.970383882522583,458,1.0,1 +16458,10,1.0,2,1.689387559890747,459,0.0,1 +16459,10,1.0,2,1.7203872203826904,460,1.0,1 +16460,10,1.0,2,1.6113885641098022,461,1.0,1 +16461,10,1.0,2,1.5373895168304443,462,1.0,1 +16462,10,1.0,2,1.4493906497955322,463,1.0,1 +16463,10,1.0,2,1.7453868389129639,464,1.0,1 +16464,10,1.0,2,1.417391061782837,465,1.0,1 +16465,10,1.0,2,1.9123847484588623,466,1.0,1 +16466,10,1.0,2,1.2783927917480469,467,1.0,1 +16467,10,1.0,2,1.292392611503601,468,0.0,1 +16468,10,0.0,2,1.4243909120559692,469,1.0,1 +16469,10,0.0,2,1.3043924570083618,470,1.0,1 +16470,10,0.0,2,1.6583878993988037,471,1.0,1 +16471,10,0.0,2,1.4563905000686646,472,1.0,1 +16472,10,0.0,2,1.6983873844146729,473,0.0,1 +16473,10,0.0,2,1.9673839807510376,474,0.0,1 +16474,10,1.0,2,1.5403895378112793,475,1.0,1 +16475,10,1.0,2,1.3313921689987183,476,1.0,1 +16476,10,1.0,2,1.4683903455734253,477,1.0,1 +16477,10,0.0,2,1.509389877319336,478,1.0,1 +16478,10,1.0,2,1.5253896713256836,479,1.0,1 +16479,10,0.0,2,1.2983925342559814,480,0.0,1 +16480,10,0.0,2,1.321392297744751,481,1.0,1 +16481,10,0.0,2,1.2523927688598633,482,0.0,1 +16482,10,0.0,2,1.409391164779663,483,1.0,1 +16483,10,0.0,2,1.7073873281478882,484,1.0,1 +16484,10,0.0,2,1.4553905725479126,485,1.0,1 +16485,10,0.0,2,1.176392674446106,486,0.0,1 +16486,10,1.0,2,1.3753916025161743,487,1.0,1 +16487,10,0.0,2,1.7663865089416504,488,0.0,1 +16488,10,1.0,2,1.2753928899765015,489,0.0,1 +16489,10,0.0,2,1.4993900060653687,490,0.0,1 +16490,10,1.0,2,2.092386245727539,491,1.0,1 +16491,10,1.0,2,1.7093873023986816,492,1.0,1 +16492,10,1.0,2,1.1823927164077759,493,1.0,1 +16493,10,1.0,2,1.370391607284546,494,1.0,1 +16494,10,1.0,2,1.7063872814178467,495,0.0,1 +16495,10,1.0,2,1.4773902893066406,496,1.0,1 +16496,10,1.0,2,1.5463893413543701,497,1.0,1 +16497,10,1.0,2,1.3563917875289917,498,0.0,1 +16498,10,1.0,2,2.015383243560791,499,1.0,1 +16499,10,0.0,2,1.524389624595642,500,0.0,1 +16500,11,1.0,0,1.633249282836914,1,1.0,1 +16501,11,1.0,0,1.593249797821045,2,1.0,1 +16502,11,1.0,0,1.261254072189331,3,1.0,1 +16503,11,0.0,0,1.9822449684143066,4,0.0,1 +16504,11,1.0,0,1.2782537937164307,5,1.0,1 +16505,11,1.0,0,1.4542515277862549,6,1.0,1 +16506,11,1.0,0,1.498250961303711,7,0.0,1 +16507,11,0.0,0,2.1902546882629395,8,0.0,1 +16508,11,1.0,0,2.1492526531219482,9,1.0,1 +16509,11,1.0,0,1.475251317024231,10,1.0,1 +16510,11,1.0,0,1.6932485103607178,11,1.0,1 +16511,11,1.0,0,1.497251033782959,12,1.0,1 +16512,11,1.0,0,1.357252836227417,13,1.0,1 +16513,11,1.0,0,1.5032509565353394,14,1.0,1 +16514,11,1.0,0,1.3372530937194824,15,1.0,1 +16515,11,1.0,0,1.4122520685195923,16,0.0,1 +16516,11,0.0,0,1.7562477588653564,17,0.0,1 +16517,11,1.0,0,1.5692501068115234,18,0.0,1 +16518,11,0.0,0,1.335253119468689,19,0.0,1 +16519,11,0.0,0,1.6212494373321533,20,1.0,1 +16520,11,0.0,0,1.140254259109497,21,0.0,1 +16521,11,0.0,0,1.2262544631958008,22,0.0,1 +16522,11,0.0,0,1.1682543754577637,23,0.0,1 +16523,11,0.0,0,1.1692543029785156,24,0.0,1 +16524,11,1.0,0,1.4802511930465698,25,1.0,1 +16525,11,0.0,0,1.2592540979385376,26,1.0,1 +16526,11,1.0,0,1.5042510032653809,27,0.0,1 +16527,11,1.0,0,1.5582501888275146,28,0.0,1 +16528,11,0.0,0,1.1702543497085571,29,0.0,1 +16529,11,0.0,0,1.8562464714050293,30,0.0,1 +16530,11,0.0,0,1.1152541637420654,31,0.0,1 +16531,11,0.0,0,1.1042542457580566,32,0.0,1 +16532,11,0.0,0,1.733247995376587,33,0.0,1 +16533,11,0.0,0,2.2242562770843506,34,0.0,1 +16534,11,1.0,0,1.7202482223510742,35,1.0,1 +16535,11,1.0,0,1.4072521924972534,36,1.0,1 +16536,11,1.0,0,1.314253330230713,37,0.0,1 +16537,11,0.0,0,1.450251579284668,38,0.0,1 +16538,11,1.0,0,1.6942484378814697,39,1.0,1 +16539,11,1.0,0,1.707248330116272,40,1.0,1 +16540,11,1.0,0,1.5162508487701416,41,1.0,1 +16541,11,1.0,0,1.1542543172836304,42,0.0,1 +16542,11,0.0,0,1.3112534284591675,43,1.0,1 +16543,11,0.0,0,1.3232532739639282,44,0.0,1 +16544,11,0.0,0,1.8062469959259033,45,0.0,1 +16545,11,0.0,0,1.641249179840088,46,0.0,1 +16546,11,1.0,0,1.6462490558624268,47,1.0,1 +16547,11,0.0,0,1.6432491540908813,48,0.0,1 +16548,11,1.0,0,1.4152520895004272,49,1.0,1 +16549,11,0.0,0,1.2312544584274292,50,1.0,1 +16550,11,1.0,0,1.287253737449646,51,1.0,1 +16551,11,1.0,0,1.2002544403076172,52,0.0,1 +16552,11,0.0,0,1.174254298210144,53,1.0,1 +16553,11,0.0,0,1.9522452354431152,54,0.0,1 +16554,11,1.0,0,1.4172520637512207,55,1.0,1 +16555,11,0.0,0,1.59024977684021,56,0.0,1 +16556,11,1.0,0,1.3592528104782104,57,0.0,1 +16557,11,1.0,0,1.3162533044815063,58,1.0,1 +16558,11,1.0,0,1.284253716468811,59,0.0,1 +16559,11,0.0,0,1.3812525272369385,60,0.0,1 +16560,11,0.0,0,2.2042553424835205,61,0.0,1 +16561,11,1.0,0,1.6172494888305664,62,1.0,1 +16562,11,1.0,0,1.4822511672973633,63,1.0,1 +16563,11,1.0,0,1.1572543382644653,64,1.0,1 +16564,11,1.0,0,1.500251054763794,65,1.0,1 +16565,11,1.0,0,1.5362505912780762,66,1.0,1 +16566,11,1.0,0,1.236254334449768,67,1.0,1 +16567,11,1.0,0,1.1982543468475342,68,1.0,1 +16568,11,1.0,0,1.729248046875,69,1.0,1 +16569,11,1.0,0,1.7632476091384888,70,1.0,1 +16570,11,1.0,0,1.54425048828125,71,0.0,1 +16571,11,1.0,0,1.2242543697357178,72,1.0,1 +16572,11,1.0,0,1.4182519912719727,73,1.0,1 +16573,11,1.0,0,1.4832512140274048,74,1.0,1 +16574,11,1.0,0,1.5982496738433838,75,1.0,1 +16575,11,1.0,0,1.2972536087036133,76,1.0,1 +16576,11,1.0,0,1.5542502403259277,77,1.0,1 +16577,11,1.0,0,1.6192494630813599,78,1.0,1 +16578,11,1.0,0,1.1332542896270752,79,0.0,1 +16579,11,0.0,0,1.8642463684082031,80,0.0,1 +16580,11,0.0,0,1.887246012687683,81,0.0,1 +16581,11,0.0,0,2.2542576789855957,82,0.0,1 +16582,11,1.0,0,1.4202519655227661,83,1.0,1 +16583,11,1.0,0,1.7182481288909912,84,0.0,1 +16584,11,1.0,0,1.6582489013671875,85,1.0,1 +16585,11,1.0,0,1.8752461671829224,86,0.0,1 +16586,11,0.0,0,1.5722501277923584,87,0.0,1 +16587,11,0.0,0,1.2412543296813965,88,0.0,1 +16588,11,0.0,0,1.9442453384399414,89,0.0,1 +16589,11,1.0,0,1.4302518367767334,90,1.0,1 +16590,11,1.0,0,1.174254298210144,91,1.0,1 +16591,11,1.0,0,1.5092508792877197,92,0.0,1 +16592,11,1.0,0,1.2642539739608765,93,0.0,1 +16593,11,1.0,0,1.6222493648529053,94,1.0,1 +16594,11,0.0,0,1.2592540979385376,95,1.0,1 +16595,11,1.0,0,1.6752487421035767,96,1.0,1 +16596,11,1.0,0,1.1902543306350708,97,1.0,1 +16597,11,0.0,0,1.641249179840088,98,0.0,1 +16598,11,1.0,0,1.7502477169036865,99,1.0,1 +16599,11,1.0,0,1.7062482833862305,100,1.0,1 +16600,11,1.0,0,1.4572515487670898,101,0.0,1 +16601,11,0.0,0,1.431251883506775,102,0.0,1 +16602,11,0.0,0,1.53825044631958,103,0.0,1 +16603,11,0.0,0,1.8782460689544678,104,0.0,1 +16604,11,1.0,0,1.655248999595642,105,0.0,1 +16605,11,0.0,0,1.1052541732788086,106,1.0,1 +16606,11,0.0,0,1.3172533512115479,107,0.0,1 +16607,11,0.0,0,1.2002544403076172,108,1.0,1 +16608,11,0.0,0,1.1632542610168457,109,0.0,1 +16609,11,1.0,0,1.4042521715164185,110,1.0,1 +16610,11,1.0,0,1.3382530212402344,111,1.0,1 +16611,11,1.0,0,1.678248643875122,112,1.0,1 +16612,11,1.0,0,1.5122509002685547,113,1.0,1 +16613,11,1.0,0,1.6432491540908813,114,1.0,1 +16614,11,1.0,0,1.7092483043670654,115,1.0,1 +16615,11,1.0,0,1.2282544374465942,116,0.0,1 +16616,11,1.0,0,1.3562527894973755,117,1.0,1 +16617,11,1.0,0,1.2412543296813965,118,1.0,1 +16618,11,1.0,0,1.291253685951233,119,1.0,1 +16619,11,1.0,0,1.471251368522644,120,0.0,1 +16620,11,0.0,0,1.1702543497085571,121,0.0,1 +16621,11,0.0,0,2.0252468585968018,122,0.0,1 +16622,11,0.0,0,1.1662542819976807,123,1.0,1 +16623,11,0.0,0,1.4212520122528076,124,0.0,1 +16624,11,0.0,0,1.380252480506897,125,0.0,1 +16625,11,0.0,0,1.2032543420791626,126,0.0,1 +16626,11,1.0,0,1.1582542657852173,127,1.0,1 +16627,11,1.0,0,1.357252836227417,128,0.0,1 +16628,11,0.0,0,1.3892524242401123,129,0.0,1 +16629,11,1.0,0,1.379252552986145,130,1.0,1 +16630,11,1.0,0,1.6022496223449707,131,1.0,1 +16631,11,1.0,0,1.3162533044815063,132,1.0,1 +16632,11,1.0,0,1.6122496128082275,133,1.0,1 +16633,11,1.0,0,1.2532541751861572,134,1.0,1 +16634,11,1.0,0,1.633249282836914,135,0.0,1 +16635,11,0.0,0,1.5542502403259277,136,0.0,1 +16636,11,0.0,0,1.4992510080337524,137,0.0,1 +16637,11,1.0,0,1.216254472732544,138,1.0,1 +16638,11,0.0,0,1.1962543725967407,139,0.0,1 +16639,11,1.0,0,1.4032522439956665,140,1.0,1 +16640,11,1.0,0,1.770247459411621,141,1.0,1 +16641,11,1.0,0,1.6012496948242188,142,0.0,1 +16642,11,0.0,0,1.6142494678497314,143,0.0,1 +16643,11,0.0,0,1.4042521715164185,144,0.0,1 +16644,11,1.0,0,1.3242532014846802,145,1.0,1 +16645,11,1.0,0,1.732248067855835,146,1.0,1 +16646,11,1.0,0,1.3552528619766235,147,0.0,1 +16647,11,1.0,0,2.2352566719055176,148,1.0,1 +16648,11,1.0,0,1.331253170967102,149,1.0,1 +16649,11,1.0,0,1.4352518320083618,150,1.0,1 +16650,11,1.0,0,1.542250394821167,151,1.0,1 +16651,11,1.0,0,1.1912543773651123,152,1.0,1 +16652,11,1.0,0,1.2972536087036133,153,0.0,1 +16653,11,1.0,0,1.5772500038146973,154,1.0,1 +16654,11,1.0,0,1.725248098373413,155,1.0,1 +16655,11,1.0,0,1.5252506732940674,156,1.0,1 +16656,11,1.0,0,2.02424693107605,157,1.0,1 +16657,11,1.0,0,1.1922543048858643,158,1.0,1 +16658,11,1.0,0,1.207254409790039,159,0.0,1 +16659,11,0.0,0,1.3962522745132446,160,0.0,1 +16660,11,1.0,0,2.020246744155884,161,0.0,1 +16661,11,0.0,0,1.5562503337860107,162,0.0,1 +16662,11,1.0,0,1.5542502403259277,163,1.0,1 +16663,11,1.0,0,1.6012496948242188,164,1.0,1 +16664,11,1.0,0,1.4382517337799072,165,1.0,1 +16665,11,1.0,0,1.4002522230148315,166,0.0,1 +16666,11,0.0,0,1.2952536344528198,167,1.0,1 +16667,11,0.0,0,1.3002535104751587,168,0.0,1 +16668,11,0.0,0,1.1112542152404785,169,0.0,1 +16669,11,0.0,0,1.453251600265503,170,0.0,1 +16670,11,0.0,0,1.1862543821334839,171,0.0,1 +16671,11,1.0,0,1.7582476139068604,172,1.0,1 +16672,11,0.0,0,1.3272532224655151,173,0.0,1 +16673,11,1.0,0,1.150254249572754,174,1.0,1 +16674,11,1.0,0,1.2012543678283691,175,1.0,1 +16675,11,1.0,0,1.4092521667480469,176,1.0,1 +16676,11,0.0,0,1.1082541942596436,177,0.0,1 +16677,11,1.0,0,1.8612463474273682,178,1.0,1 +16678,11,0.0,0,1.406252145767212,179,0.0,1 +16679,11,1.0,0,1.4732513427734375,180,1.0,1 +16680,11,1.0,0,1.2062543630599976,181,1.0,1 +16681,11,1.0,0,1.6662487983703613,182,1.0,1 +16682,11,1.0,0,1.2022544145584106,183,1.0,1 +16683,11,1.0,0,1.4342517852783203,184,1.0,1 +16684,11,1.0,0,1.2202544212341309,185,1.0,1 +16685,11,1.0,0,1.402252197265625,186,1.0,1 +16686,11,1.0,0,1.210254430770874,187,0.0,1 +16687,11,1.0,0,1.310253381729126,188,1.0,1 +16688,11,1.0,0,1.9952454566955566,189,0.0,1 +16689,11,0.0,0,1.1922543048858643,190,0.0,1 +16690,11,0.0,0,1.3452529907226562,191,0.0,1 +16691,11,1.0,0,1.2282544374465942,192,1.0,1 +16692,11,1.0,0,1.2502541542053223,193,1.0,1 +16693,11,1.0,0,1.1422542333602905,194,1.0,1 +16694,11,1.0,0,1.4522515535354614,195,1.0,1 +16695,11,1.0,0,1.5162508487701416,196,0.0,1 +16696,11,0.0,0,1.5282506942749023,197,0.0,1 +16697,11,1.0,0,1.678248643875122,198,1.0,1 +16698,11,1.0,0,1.3022534847259521,199,1.0,1 +16699,11,1.0,0,1.2012543678283691,200,1.0,1 +16700,11,1.0,0,1.5272506475448608,201,1.0,1 +16701,11,1.0,0,1.1862543821334839,202,1.0,1 +16702,11,0.0,0,2.2632579803466797,203,0.0,1 +16703,11,1.0,0,1.2762538194656372,204,0.0,1 +16704,11,1.0,0,1.5222506523132324,205,1.0,1 +16705,11,1.0,0,1.4182519912719727,206,1.0,1 +16706,11,1.0,0,1.174254298210144,207,1.0,1 +16707,11,1.0,0,1.472251296043396,208,1.0,1 +16708,11,1.0,0,1.3012535572052002,209,1.0,1 +16709,11,1.0,0,1.4072521924972534,210,1.0,1 +16710,11,1.0,0,1.361252784729004,211,1.0,1 +16711,11,1.0,0,1.216254472732544,212,0.0,1 +16712,11,1.0,0,1.59024977684021,213,1.0,1 +16713,11,1.0,0,1.3822524547576904,214,1.0,1 +16714,11,1.0,0,1.2522541284561157,215,1.0,1 +16715,11,1.0,0,1.4612514972686768,216,1.0,1 +16716,11,1.0,0,1.2992535829544067,217,0.0,1 +16717,11,0.0,0,1.545250415802002,218,0.0,1 +16718,11,1.0,0,1.7342479228973389,219,1.0,1 +16719,11,1.0,0,1.110254168510437,220,0.0,1 +16720,11,1.0,0,1.3072534799575806,221,1.0,1 +16721,11,1.0,0,1.2692539691925049,222,1.0,1 +16722,11,1.0,0,1.398252248764038,223,1.0,1 +16723,11,1.0,0,1.4552515745162964,224,1.0,1 +16724,11,1.0,0,1.204254388809204,225,1.0,1 +16725,11,1.0,0,1.5592502355575562,226,1.0,1 +16726,11,1.0,0,1.5162508487701416,227,0.0,1 +16727,11,0.0,0,1.3082534074783325,228,0.0,1 +16728,11,0.0,0,1.8142468929290771,229,0.0,1 +16729,11,1.0,0,1.5612502098083496,230,1.0,1 +16730,11,1.0,0,1.4952510595321655,231,1.0,1 +16731,11,1.0,0,1.5032509565353394,232,1.0,1 +16732,11,1.0,0,1.383252501487732,233,1.0,1 +16733,11,1.0,0,1.1862543821334839,234,0.0,1 +16734,11,1.0,0,1.3182532787322998,235,1.0,1 +16735,11,0.0,0,2.1922547817230225,236,0.0,1 +16736,11,1.0,0,1.2452542781829834,237,1.0,1 +16737,11,1.0,0,1.4862511157989502,238,1.0,1 +16738,11,1.0,0,1.9282455444335938,239,1.0,1 +16739,11,1.0,0,1.6092495918273926,240,1.0,1 +16740,11,1.0,0,1.498250961303711,241,1.0,1 +16741,11,1.0,0,1.1982543468475342,242,1.0,1 +16742,11,1.0,0,1.4952510595321655,243,1.0,1 +16743,11,1.0,0,1.1232541799545288,244,1.0,1 +16744,11,1.0,0,1.7542476654052734,245,1.0,1 +16745,11,1.0,0,1.10625422000885,246,1.0,1 +16746,11,1.0,0,2.31026029586792,247,1.0,1 +16747,11,1.0,0,1.6902484893798828,248,1.0,1 +16748,11,1.0,0,1.476251244544983,249,1.0,1 +16749,11,0.0,0,1.6492490768432617,250,0.0,1 +16750,11,1.0,0,1.2122544050216675,251,1.0,1 +16751,11,1.0,0,1.1722543239593506,252,1.0,1 +16752,11,1.0,0,1.3492529392242432,253,0.0,1 +16753,11,1.0,0,1.9992456436157227,254,1.0,1 +16754,11,1.0,0,1.2642539739608765,255,1.0,1 +16755,11,1.0,0,1.2002544403076172,256,1.0,1 +16756,11,1.0,0,1.204254388809204,257,1.0,1 +16757,11,1.0,0,1.2532541751861572,258,1.0,1 +16758,11,0.0,0,1.2922536134719849,259,0.0,1 +16759,11,1.0,0,1.563250184059143,260,1.0,1 +16760,11,1.0,0,1.4192520380020142,261,1.0,1 +16761,11,1.0,0,1.5352505445480347,262,1.0,1 +16762,11,1.0,0,1.5612502098083496,263,1.0,1 +16763,11,1.0,0,1.5622501373291016,264,1.0,1 +16764,11,1.0,0,1.5252506732940674,265,1.0,1 +16765,11,1.0,0,1.2282544374465942,266,0.0,1 +16766,11,0.0,0,1.8312467336654663,267,0.0,1 +16767,11,0.0,0,1.2222543954849243,268,0.0,1 +16768,11,0.0,0,2.078249454498291,269,0.0,1 +16769,11,0.0,0,1.1272542476654053,270,0.0,1 +16770,11,1.0,0,1.1122541427612305,271,1.0,1 +16771,11,1.0,0,1.0922541618347168,272,1.0,1 +16772,11,1.0,0,1.1962543725967407,273,1.0,1 +16773,11,1.0,0,1.1232541799545288,274,1.0,1 +16774,11,1.0,0,1.2972536087036133,275,1.0,1 +16775,11,1.0,0,1.08225417137146,276,1.0,1 +16776,11,1.0,0,1.5592502355575562,277,1.0,1 +16777,11,1.0,0,1.3822524547576904,278,1.0,1 +16778,11,1.0,0,1.2782537937164307,279,1.0,1 +16779,11,1.0,0,1.3502528667449951,280,0.0,1 +16780,11,1.0,0,1.6712487936019897,281,1.0,1 +16781,11,1.0,0,1.3722525835037231,282,1.0,1 +16782,11,1.0,0,1.7472478151321411,283,1.0,1 +16783,11,1.0,0,1.1812543869018555,284,1.0,1 +16784,11,1.0,0,1.586249828338623,285,1.0,1 +16785,11,1.0,0,1.446251630783081,286,0.0,1 +16786,11,0.0,0,1.2562540769577026,287,0.0,1 +16787,11,0.0,0,2.1512527465820312,288,1.0,1 +16788,11,0.0,0,1.236254334449768,289,0.0,1 +16789,11,1.0,0,1.730247974395752,290,1.0,1 +16790,11,1.0,0,1.773247480392456,291,1.0,1 +16791,11,1.0,0,1.2542541027069092,292,1.0,1 +16792,11,1.0,0,1.6962485313415527,293,1.0,1 +16793,11,1.0,0,1.1202542781829834,294,1.0,1 +16794,11,1.0,0,1.468251347541809,295,1.0,1 +16795,11,1.0,0,1.6532490253448486,296,0.0,1 +16796,11,0.0,0,1.073254108428955,297,0.0,1 +16797,11,1.0,0,1.1582542657852173,298,0.0,1 +16798,11,0.0,0,1.6002497673034668,299,1.0,1 +16799,11,0.0,0,1.4172520637512207,300,0.0,1 +16800,11,0.0,0,1.585249900817871,301,0.0,1 +16801,11,0.0,0,1.5202507972717285,302,0.0,1 +16802,11,0.0,0,1.1332542896270752,303,0.0,1 +16803,11,0.0,0,1.5122509002685547,304,1.0,1 +16804,11,0.0,0,1.0982542037963867,305,0.0,1 +16805,11,1.0,0,1.1892544031143188,306,1.0,1 +16806,11,1.0,0,1.4072521924972534,307,1.0,1 +16807,11,1.0,0,1.1292542219161987,308,1.0,1 +16808,11,0.0,0,2.141252279281616,309,0.0,1 +16809,11,1.0,0,1.08225417137146,310,0.0,1 +16810,11,1.0,0,1.3042534589767456,311,1.0,1 +16811,11,1.0,0,1.3392530679702759,312,1.0,1 +16812,11,1.0,0,1.686248540878296,313,0.0,1 +16813,11,0.0,0,1.1612542867660522,314,1.0,1 +16814,11,0.0,0,1.2282544374465942,315,0.0,1 +16815,11,0.0,0,1.402252197265625,316,0.0,1 +16816,11,1.0,0,1.7912472486495972,317,1.0,1 +16817,11,1.0,0,1.3652527332305908,318,0.0,1 +16818,11,1.0,0,1.475251317024231,319,0.0,1 +16819,11,0.0,0,2.5152697563171387,320,0.0,1 +16820,11,1.0,0,1.7452478408813477,321,1.0,1 +16821,11,1.0,0,2.1612532138824463,322,1.0,1 +16822,11,1.0,0,1.4602514505386353,323,1.0,1 +16823,11,1.0,0,2.093250036239624,324,1.0,1 +16824,11,1.0,0,1.3812525272369385,325,1.0,1 +16825,11,1.0,0,1.3862524032592773,326,1.0,1 +16826,11,1.0,0,1.2502541542053223,327,1.0,1 +16827,11,1.0,0,1.4392517805099487,328,1.0,1 +16828,11,1.0,0,1.5142507553100586,329,1.0,1 +16829,11,1.0,0,1.2012543678283691,330,1.0,1 +16830,11,1.0,0,1.331253170967102,331,1.0,1 +16831,11,1.0,0,1.803247094154358,332,1.0,1 +16832,11,1.0,0,1.2182544469833374,333,1.0,1 +16833,11,1.0,0,1.313253402709961,334,1.0,1 +16834,11,1.0,0,1.2892537117004395,335,1.0,1 +16835,11,1.0,0,1.1452542543411255,336,1.0,1 +16836,11,1.0,0,1.3602527379989624,337,1.0,1 +16837,11,1.0,0,1.1592543125152588,338,1.0,1 +16838,11,0.0,0,1.7432478666305542,339,0.0,1 +16839,11,1.0,0,1.6012496948242188,340,1.0,1 +16840,11,1.0,0,1.291253685951233,341,1.0,1 +16841,11,1.0,0,1.3712526559829712,342,1.0,1 +16842,11,1.0,0,1.1852543354034424,343,1.0,1 +16843,11,1.0,0,1.3072534799575806,344,1.0,1 +16844,11,1.0,0,1.2052544355392456,345,1.0,1 +16845,11,1.0,0,1.6072496175765991,346,0.0,1 +16846,11,0.0,0,1.4072521924972534,347,1.0,1 +16847,11,0.0,0,1.1422542333602905,348,0.0,1 +16848,11,0.0,0,1.4032522439956665,349,0.0,1 +16849,11,0.0,0,1.5342504978179932,350,0.0,1 +16850,11,0.0,0,1.0892541408538818,351,0.0,1 +16851,11,1.0,0,2.1892545223236084,352,0.0,1 +16852,11,1.0,0,1.5812499523162842,353,1.0,1 +16853,11,1.0,0,2.119251251220703,354,1.0,1 +16854,11,1.0,0,1.3662526607513428,355,1.0,1 +16855,11,1.0,0,1.5812499523162842,356,1.0,1 +16856,11,1.0,0,1.843246579170227,357,1.0,1 +16857,11,1.0,0,1.2012543678283691,358,1.0,1 +16858,11,1.0,0,1.3682526350021362,359,1.0,1 +16859,11,1.0,0,1.3192533254623413,360,1.0,1 +16860,11,1.0,0,1.6212494373321533,361,1.0,1 +16861,11,1.0,0,1.725248098373413,362,1.0,1 +16862,11,1.0,0,1.3882523775100708,363,1.0,1 +16863,11,1.0,0,1.3902523517608643,364,1.0,1 +16864,11,1.0,0,1.2552541494369507,365,0.0,1 +16865,11,0.0,0,2.2482573986053467,366,1.0,1 +16866,11,0.0,0,1.1302542686462402,367,0.0,1 +16867,11,0.0,0,1.1232541799545288,368,0.0,1 +16868,11,1.0,0,1.8482465744018555,369,0.0,1 +16869,11,1.0,0,1.8382465839385986,370,1.0,1 +16870,11,1.0,0,1.3222532272338867,371,1.0,1 +16871,11,1.0,0,1.2482541799545288,372,1.0,1 +16872,11,1.0,0,1.6312493085861206,373,1.0,1 +16873,11,1.0,0,1.2712539434432983,374,1.0,1 +16874,11,1.0,0,1.6272493600845337,375,1.0,1 +16875,11,1.0,0,1.147254228591919,376,1.0,1 +16876,11,1.0,0,2.0112462043762207,377,0.0,1 +16877,11,1.0,0,1.1812543869018555,378,1.0,1 +16878,11,0.0,0,1.1882543563842773,379,0.0,1 +16879,11,1.0,0,1.2462542057037354,380,1.0,1 +16880,11,1.0,0,1.2152544260025024,381,1.0,1 +16881,11,1.0,0,1.1852543354034424,382,1.0,1 +16882,11,1.0,0,1.3072534799575806,383,1.0,1 +16883,11,1.0,0,1.4812512397766113,384,1.0,1 +16884,11,1.0,0,1.291253685951233,385,0.0,1 +16885,11,0.0,0,1.2542541027069092,386,0.0,1 +16886,11,0.0,0,2.115251064300537,387,0.0,1 +16887,11,1.0,0,1.3022534847259521,388,1.0,1 +16888,11,1.0,0,1.3722525835037231,389,0.0,1 +16889,11,1.0,0,2.2752585411071777,390,0.0,1 +16890,11,0.0,0,1.335253119468689,391,1.0,1 +16891,11,0.0,0,1.4992510080337524,392,0.0,1 +16892,11,0.0,0,1.5692501068115234,393,1.0,1 +16893,11,0.0,0,1.1412543058395386,394,0.0,1 +16894,11,1.0,0,2.116251230239868,395,1.0,1 +16895,11,1.0,0,1.4582514762878418,396,1.0,1 +16896,11,1.0,0,1.2302544116973877,397,1.0,1 +16897,11,1.0,0,1.498250961303711,398,1.0,1 +16898,11,1.0,0,1.4592515230178833,399,0.0,1 +16899,11,0.0,0,2.2532575130462646,400,0.0,1 +16900,11,0.0,0,1.5812499523162842,401,0.0,1 +16901,11,1.0,0,1.7582476139068604,402,1.0,1 +16902,11,1.0,0,1.3202532529830933,403,1.0,1 +16903,11,1.0,0,1.113254189491272,404,1.0,1 +16904,11,1.0,0,1.1952543258666992,405,1.0,1 +16905,11,1.0,0,1.40525221824646,406,1.0,1 +16906,11,1.0,0,1.3372530937194824,407,1.0,1 +16907,11,1.0,0,1.283253788948059,408,0.0,1 +16908,11,0.0,0,1.5102508068084717,409,0.0,1 +16909,11,0.0,0,1.450251579284668,410,0.0,1 +16910,11,1.0,0,1.1822543144226074,411,1.0,1 +16911,11,1.0,0,1.895245909690857,412,1.0,1 +16912,11,1.0,0,1.6922485828399658,413,1.0,1 +16913,11,1.0,0,1.2502541542053223,414,1.0,1 +16914,11,1.0,0,1.3182532787322998,415,1.0,1 +16915,11,1.0,0,1.895245909690857,416,1.0,1 +16916,11,1.0,0,1.5172507762908936,417,1.0,1 +16917,11,1.0,0,1.3122533559799194,418,1.0,1 +16918,11,1.0,0,1.4222519397735596,419,1.0,1 +16919,11,1.0,0,1.6142494678497314,420,1.0,1 +16920,11,1.0,0,1.2052544355392456,421,0.0,1 +16921,11,0.0,0,1.2562540769577026,422,0.0,1 +16922,11,0.0,0,1.204254388809204,423,1.0,1 +16923,11,0.0,0,1.2682539224624634,424,0.0,1 +16924,11,1.0,0,2.1892545223236084,425,1.0,1 +16925,11,1.0,0,1.4182519912719727,426,1.0,1 +16926,11,1.0,0,1.4362517595291138,427,1.0,1 +16927,11,1.0,0,2.355262279510498,428,0.0,1 +16928,11,1.0,0,1.4162520170211792,429,1.0,1 +16929,11,0.0,0,1.799247145652771,430,0.0,1 +16930,11,1.0,0,1.2352544069290161,431,1.0,1 +16931,11,1.0,0,1.3552528619766235,432,1.0,1 +16932,11,1.0,0,1.1032541990280151,433,1.0,1 +16933,11,1.0,0,1.2932536602020264,434,1.0,1 +16934,11,1.0,0,1.7102482318878174,435,0.0,1 +16935,11,1.0,0,1.5372505187988281,436,1.0,1 +16936,11,1.0,0,1.5172507762908936,437,1.0,1 +16937,11,1.0,0,1.2292544841766357,438,1.0,1 +16938,11,1.0,0,1.2332544326782227,439,1.0,1 +16939,11,1.0,0,1.1972544193267822,440,1.0,1 +16940,11,1.0,0,1.3122533559799194,441,0.0,1 +16941,11,1.0,0,1.9062457084655762,442,0.0,1 +16942,11,0.0,0,1.4182519912719727,443,0.0,1 +16943,11,1.0,0,1.640249252319336,444,1.0,1 +16944,11,1.0,0,1.4202519655227661,445,0.0,1 +16945,11,0.0,0,1.239254355430603,446,0.0,1 +16946,11,1.0,0,1.5142507553100586,447,1.0,1 +16947,11,1.0,0,1.4342517852783203,448,1.0,1 +16948,11,1.0,0,1.1642543077468872,449,1.0,1 +16949,11,1.0,0,1.1422542333602905,450,1.0,1 +16950,11,1.0,0,1.5182507038116455,451,1.0,1 +16951,11,1.0,0,1.6182494163513184,452,1.0,1 +16952,11,1.0,0,1.110254168510437,453,0.0,1 +16953,11,0.0,0,1.1242542266845703,454,0.0,1 +16954,11,1.0,0,1.476251244544983,455,1.0,1 +16955,11,1.0,0,1.3302531242370605,456,1.0,1 +16956,11,1.0,0,1.1532542705535889,457,1.0,1 +16957,11,1.0,0,1.265254020690918,458,1.0,1 +16958,11,1.0,0,1.3882523775100708,459,0.0,1 +16959,11,0.0,0,1.3912523984909058,460,0.0,1 +16960,11,0.0,0,1.1242542266845703,461,0.0,1 +16961,11,1.0,0,1.6652488708496094,462,1.0,1 +16962,11,1.0,0,1.424251914024353,463,1.0,1 +16963,11,1.0,0,1.494251012802124,464,1.0,1 +16964,11,1.0,0,1.6532490253448486,465,1.0,1 +16965,11,1.0,0,1.2562540769577026,466,0.0,1 +16966,11,1.0,0,1.5782499313354492,467,1.0,1 +16967,11,1.0,0,1.379252552986145,468,1.0,1 +16968,11,1.0,0,1.2922536134719849,469,1.0,1 +16969,11,1.0,0,1.1542543172836304,470,1.0,1 +16970,11,1.0,0,1.1912543773651123,471,1.0,1 +16971,11,1.0,0,1.174254298210144,472,1.0,1 +16972,11,1.0,0,2.0292470455169678,473,1.0,1 +16973,11,1.0,0,1.150254249572754,474,1.0,1 +16974,11,1.0,0,1.5722501277923584,475,1.0,1 +16975,11,1.0,0,1.7242481708526611,476,1.0,1 +16976,11,1.0,0,1.1512542963027954,477,1.0,1 +16977,11,1.0,0,1.3672527074813843,478,1.0,1 +16978,11,1.0,0,1.3422529697418213,479,1.0,1 +16979,11,1.0,0,1.8092470169067383,480,1.0,1 +16980,11,1.0,0,1.4592515230178833,481,1.0,1 +16981,11,1.0,0,1.3232532739639282,482,1.0,1 +16982,11,1.0,0,1.3672527074813843,483,1.0,1 +16983,11,1.0,0,1.3922523260116577,484,1.0,1 +16984,11,1.0,0,1.3782525062561035,485,1.0,1 +16985,11,1.0,0,1.7212481498718262,486,1.0,1 +16986,11,1.0,0,1.6662487983703613,487,1.0,1 +16987,11,1.0,0,1.4222519397735596,488,1.0,1 +16988,11,1.0,0,1.1452542543411255,489,1.0,1 +16989,11,1.0,0,1.586249828338623,490,1.0,1 +16990,11,1.0,0,1.497251033782959,491,1.0,1 +16991,11,1.0,0,1.3492529392242432,492,0.0,1 +16992,11,0.0,0,1.2682539224624634,493,0.0,1 +16993,11,0.0,0,2.0132462978363037,494,0.0,1 +16994,11,1.0,0,2.143252372741699,495,0.0,1 +16995,11,0.0,0,1.1592543125152588,496,1.0,1 +16996,11,0.0,0,1.2492542266845703,497,0.0,1 +16997,11,0.0,0,1.4702513217926025,498,1.0,1 +16998,11,0.0,0,1.5262506008148193,499,0.0,1 +16999,11,0.0,0,1.5182507038116455,500,0.0,1 +17000,11,1.0,1,1.4482516050338745,1,1.0,1 +17001,11,0.0,1,1.6872485876083374,2,0.0,1 +17002,11,1.0,1,1.475251317024231,3,0.0,1 +17003,11,1.0,1,1.6892485618591309,4,1.0,1 +17004,11,1.0,1,1.2922536134719849,5,0.0,1 +17005,11,0.0,1,1.213254451751709,6,0.0,1 +17006,11,1.0,1,1.3332531452178955,7,1.0,1 +17007,11,1.0,1,1.843246579170227,8,1.0,1 +17008,11,1.0,1,1.283253788948059,9,1.0,1 +17009,11,0.0,1,1.9042458534240723,10,0.0,1 +17010,11,1.0,1,1.8442466259002686,11,1.0,1 +17011,11,1.0,1,1.6662487983703613,12,1.0,1 +17012,11,0.0,1,1.406252145767212,13,0.0,1 +17013,11,1.0,1,1.6182494163513184,14,1.0,1 +17014,11,1.0,1,1.7232481241226196,15,1.0,1 +17015,11,1.0,1,1.2002544403076172,16,1.0,1 +17016,11,1.0,1,1.3962522745132446,17,0.0,1 +17017,11,0.0,1,1.0992541313171387,18,0.0,1 +17018,11,1.0,1,1.7522478103637695,19,1.0,1 +17019,11,1.0,1,1.5572502613067627,20,0.0,1 +17020,11,0.0,1,1.2892537117004395,21,0.0,1 +17021,11,1.0,1,1.2962535619735718,22,1.0,1 +17022,11,1.0,1,1.150254249572754,23,1.0,1 +17023,11,1.0,1,1.5122509002685547,24,0.0,1 +17024,11,1.0,1,1.380252480506897,25,1.0,1 +17025,11,1.0,1,1.7052483558654785,26,0.0,1 +17026,11,1.0,1,1.2382543087005615,27,0.0,1 +17027,11,0.0,1,1.493251085281372,28,0.0,1 +17028,11,0.0,1,1.2982535362243652,29,1.0,1 +17029,11,1.0,1,1.3932523727416992,30,1.0,1 +17030,11,0.0,1,1.6912485361099243,31,0.0,1 +17031,11,1.0,1,1.3412530422210693,32,1.0,1 +17032,11,1.0,1,1.284253716468811,33,0.0,1 +17033,11,0.0,1,1.9032458066940308,34,0.0,1 +17034,11,1.0,1,1.497251033782959,35,0.0,1 +17035,11,0.0,1,1.1532542705535889,36,0.0,1 +17036,11,0.0,1,2.1852543354034424,37,1.0,1 +17037,11,0.0,1,1.3932523727416992,38,1.0,1 +17038,11,0.0,1,1.214254379272461,39,0.0,1 +17039,11,0.0,1,1.8052470684051514,40,0.0,1 +17040,11,0.0,1,1.5222506523132324,41,0.0,1 +17041,11,0.0,1,1.3922523260116577,42,0.0,1 +17042,11,0.0,1,1.1292542219161987,43,1.0,1 +17043,11,0.0,1,1.2022544145584106,44,0.0,1 +17044,11,0.0,1,1.150254249572754,45,0.0,1 +17045,11,1.0,1,1.3782525062561035,46,1.0,1 +17046,11,1.0,1,1.5842499732971191,47,1.0,1 +17047,11,1.0,1,1.5622501373291016,48,1.0,1 +17048,11,1.0,1,1.3382530212402344,49,1.0,1 +17049,11,1.0,1,1.2312544584274292,50,1.0,1 +17050,11,1.0,1,1.354252815246582,51,1.0,1 +17051,11,1.0,1,1.3372530937194824,52,0.0,1 +17052,11,1.0,1,1.4692513942718506,53,1.0,1 +17053,11,1.0,1,1.375252604484558,54,1.0,1 +17054,11,1.0,1,1.1972544193267822,55,1.0,1 +17055,11,1.0,1,1.5772500038146973,56,1.0,1 +17056,11,1.0,1,1.1892544031143188,57,1.0,1 +17057,11,1.0,1,1.5912498235702515,58,1.0,1 +17058,11,0.0,1,1.7972471714019775,59,0.0,1 +17059,11,1.0,1,1.3672527074813843,60,1.0,1 +17060,11,0.0,1,1.113254189491272,61,1.0,1 +17061,11,1.0,1,1.1852543354034424,62,1.0,1 +17062,11,0.0,1,1.2982535362243652,63,0.0,1 +17063,11,1.0,1,1.5302505493164062,64,0.0,1 +17064,11,0.0,1,1.3592528104782104,65,0.0,1 +17065,11,1.0,1,1.261254072189331,66,0.0,1 +17066,11,1.0,1,1.3962522745132446,67,1.0,1 +17067,11,1.0,1,1.1752543449401855,68,1.0,1 +17068,11,1.0,1,1.6122496128082275,69,0.0,1 +17069,11,1.0,1,1.3432530164718628,70,1.0,1 +17070,11,1.0,1,1.6062495708465576,71,1.0,1 +17071,11,1.0,1,1.803247094154358,72,0.0,1 +17072,11,0.0,1,2.118251323699951,73,0.0,1 +17073,11,1.0,1,1.40525221824646,74,1.0,1 +17074,11,1.0,1,1.4172520637512207,75,1.0,1 +17075,11,1.0,1,1.3222532272338867,76,0.0,1 +17076,11,0.0,1,1.2312544584274292,77,0.0,1 +17077,11,0.0,1,1.817246913909912,78,1.0,1 +17078,11,0.0,1,1.40525221824646,79,0.0,1 +17079,11,1.0,1,1.4162520170211792,80,0.0,1 +17080,11,0.0,1,1.8842461109161377,81,0.0,1 +17081,11,0.0,1,1.6042497158050537,82,1.0,1 +17082,11,0.0,1,1.476251244544983,83,0.0,1 +17083,11,0.0,1,1.2572541236877441,84,0.0,1 +17084,11,1.0,1,1.5912498235702515,85,0.0,1 +17085,11,0.0,1,1.217254400253296,86,0.0,1 +17086,11,1.0,1,2.054248332977295,87,1.0,1 +17087,11,1.0,1,1.494251012802124,88,1.0,1 +17088,11,1.0,1,1.3192533254623413,89,1.0,1 +17089,11,1.0,1,1.3872524499893188,90,1.0,1 +17090,11,1.0,1,1.26625394821167,91,1.0,1 +17091,11,1.0,1,1.4612514972686768,92,0.0,1 +17092,11,0.0,1,1.475251317024231,93,0.0,1 +17093,11,0.0,1,1.0652540922164917,94,0.0,1 +17094,11,0.0,1,1.8112469911575317,95,1.0,1 +17095,11,0.0,1,1.143254280090332,96,1.0,1 +17096,11,0.0,1,1.2772538661956787,97,1.0,1 +17097,11,0.0,1,1.1352542638778687,98,0.0,1 +17098,11,1.0,1,1.2322543859481812,99,1.0,1 +17099,11,1.0,1,1.6952484846115112,100,1.0,1 +17100,11,1.0,1,1.1482542753219604,101,1.0,1 +17101,11,1.0,1,1.869246244430542,102,1.0,1 +17102,11,1.0,1,1.7242481708526611,103,1.0,1 +17103,11,1.0,1,1.37625253200531,104,1.0,1 +17104,11,1.0,1,1.1652543544769287,105,0.0,1 +17105,11,1.0,1,1.1632542610168457,106,1.0,1 +17106,11,1.0,1,1.2422542572021484,107,0.0,1 +17107,11,0.0,1,1.4582514762878418,108,0.0,1 +17108,11,0.0,1,1.1242542266845703,109,0.0,1 +17109,11,0.0,1,1.7182481288909912,110,0.0,1 +17110,11,1.0,1,1.588249921798706,111,1.0,1 +17111,11,0.0,1,1.0592540502548218,112,1.0,1 +17112,11,1.0,1,1.3522528409957886,113,1.0,1 +17113,11,0.0,1,1.3402529954910278,114,0.0,1 +17114,11,1.0,1,1.501250982284546,115,1.0,1 +17115,11,1.0,1,1.2192543745040894,116,1.0,1 +17116,11,1.0,1,1.6972484588623047,117,1.0,1 +17117,11,1.0,1,1.2032543420791626,118,1.0,1 +17118,11,0.0,1,1.4182519912719727,119,1.0,1 +17119,11,0.0,1,1.9372453689575195,120,0.0,1 +17120,11,1.0,1,1.6752487421035767,121,0.0,1 +17121,11,0.0,1,1.2902536392211914,122,0.0,1 +17122,11,1.0,1,1.8632463216781616,123,1.0,1 +17123,11,1.0,1,1.636249303817749,124,1.0,1 +17124,11,1.0,1,1.2332544326782227,125,1.0,1 +17125,11,1.0,1,1.3592528104782104,126,1.0,1 +17126,11,1.0,1,1.592249870300293,127,1.0,1 +17127,11,1.0,1,1.8362467288970947,128,0.0,1 +17128,11,0.0,1,1.2002544403076172,129,0.0,1 +17129,11,1.0,1,2.312260389328003,130,1.0,1 +17130,11,1.0,1,1.3592528104782104,131,1.0,1 +17131,11,1.0,1,1.1512542963027954,132,1.0,1 +17132,11,1.0,1,1.633249282836914,133,1.0,1 +17133,11,1.0,1,1.3972523212432861,134,1.0,1 +17134,11,1.0,1,1.2212544679641724,135,0.0,1 +17135,11,1.0,1,1.183254361152649,136,1.0,1 +17136,11,1.0,1,1.217254400253296,137,0.0,1 +17137,11,0.0,1,1.5322506427764893,138,1.0,1 +17138,11,0.0,1,1.1982543468475342,139,0.0,1 +17139,11,0.0,1,1.7382478713989258,140,0.0,1 +17140,11,1.0,1,2.071249008178711,141,1.0,1 +17141,11,1.0,1,1.8802461624145508,142,1.0,1 +17142,11,1.0,1,1.1182541847229004,143,0.0,1 +17143,11,1.0,1,1.9412453174591064,144,0.0,1 +17144,11,1.0,1,1.2742538452148438,145,1.0,1 +17145,11,1.0,1,1.7922472953796387,146,1.0,1 +17146,11,1.0,1,1.1822543144226074,147,0.0,1 +17147,11,1.0,1,1.7812473773956299,148,1.0,1 +17148,11,1.0,1,1.2472542524337769,149,1.0,1 +17149,11,1.0,1,1.5582501888275146,150,0.0,1 +17150,11,0.0,1,1.5872498750686646,151,0.0,1 +17151,11,1.0,1,1.8832460641860962,152,1.0,1 +17152,11,1.0,1,1.9052457809448242,153,1.0,1 +17153,11,1.0,1,1.8092470169067383,154,1.0,1 +17154,11,1.0,1,2.308260202407837,155,1.0,1 +17155,11,1.0,1,1.144254207611084,156,1.0,1 +17156,11,1.0,1,1.6562490463256836,157,1.0,1 +17157,11,1.0,1,1.4212520122528076,158,1.0,1 +17158,11,1.0,1,1.6202495098114014,159,1.0,1 +17159,11,1.0,1,1.1672543287277222,160,1.0,1 +17160,11,1.0,1,1.5952497720718384,161,1.0,1 +17161,11,1.0,1,1.1282541751861572,162,0.0,1 +17162,11,0.0,1,1.2492542266845703,163,0.0,1 +17163,11,1.0,1,1.4002522230148315,164,0.0,1 +17164,11,0.0,1,2.0132462978363037,165,0.0,1 +17165,11,0.0,1,1.5022509098052979,166,0.0,1 +17166,11,1.0,1,1.6452491283416748,167,1.0,1 +17167,11,1.0,1,1.314253330230713,168,1.0,1 +17168,11,1.0,1,1.1002541780471802,169,0.0,1 +17169,11,1.0,1,1.4922511577606201,170,1.0,1 +17170,11,1.0,1,1.140254259109497,171,1.0,1 +17171,11,0.0,1,1.1722543239593506,172,0.0,1 +17172,11,1.0,1,1.331253170967102,173,0.0,1 +17173,11,1.0,1,1.1782543659210205,174,1.0,1 +17174,11,1.0,1,1.423251986503601,175,1.0,1 +17175,11,1.0,1,1.3552528619766235,176,1.0,1 +17176,11,1.0,1,1.358252763748169,177,1.0,1 +17177,11,1.0,1,1.4262518882751465,178,1.0,1 +17178,11,1.0,1,1.2692539691925049,179,1.0,1 +17179,11,1.0,1,1.331253170967102,180,0.0,1 +17180,11,1.0,1,1.4332518577575684,181,1.0,1 +17181,11,1.0,1,1.1422542333602905,182,0.0,1 +17182,11,1.0,1,1.2962535619735718,183,1.0,1 +17183,11,1.0,1,1.4782512187957764,184,1.0,1 +17184,11,1.0,1,1.968245029449463,185,1.0,1 +17185,11,1.0,1,1.3232532739639282,186,0.0,1 +17186,11,1.0,1,1.9742448329925537,187,1.0,1 +17187,11,1.0,1,1.1592543125152588,188,1.0,1 +17188,11,1.0,1,1.1722543239593506,189,0.0,1 +17189,11,0.0,1,2.106250762939453,190,1.0,1 +17190,11,0.0,1,1.1152541637420654,191,0.0,1 +17191,11,0.0,1,1.2942535877227783,192,1.0,1 +17192,11,0.0,1,1.1622543334960938,193,0.0,1 +17193,11,0.0,1,1.5512503385543823,194,1.0,1 +17194,11,0.0,1,1.4122520685195923,195,0.0,1 +17195,11,1.0,1,1.4602514505386353,196,0.0,1 +17196,11,0.0,1,1.2462542057037354,197,0.0,1 +17197,11,0.0,1,1.4402517080307007,198,0.0,1 +17198,11,0.0,1,1.6232494115829468,199,1.0,1 +17199,11,0.0,1,1.2022544145584106,200,1.0,1 +17200,11,0.0,1,1.8302466869354248,201,1.0,1 +17201,11,0.0,1,1.7312480211257935,202,0.0,1 +17202,11,0.0,1,1.8542463779449463,203,0.0,1 +17203,11,0.0,1,1.9232455492019653,204,0.0,1 +17204,11,0.0,1,1.3662526607513428,205,0.0,1 +17205,11,1.0,1,2.1382522583007812,206,0.0,1 +17206,11,0.0,1,1.1302542686462402,207,0.0,1 +17207,11,1.0,1,1.4642513990402222,208,1.0,1 +17208,11,1.0,1,1.2892537117004395,209,1.0,1 +17209,11,1.0,1,1.4512516260147095,210,1.0,1 +17210,11,1.0,1,1.328253149986267,211,1.0,1 +17211,11,1.0,1,1.2372543811798096,212,0.0,1 +17212,11,0.0,1,1.1122541427612305,213,0.0,1 +17213,11,1.0,1,1.4032522439956665,214,0.0,1 +17214,11,0.0,1,1.2482541799545288,215,0.0,1 +17215,11,0.0,1,1.450251579284668,216,0.0,1 +17216,11,0.0,1,2.302259922027588,217,0.0,1 +17217,11,0.0,1,1.0902541875839233,218,0.0,1 +17218,11,0.0,1,1.4252519607543945,219,0.0,1 +17219,11,1.0,1,1.3942523002624512,220,1.0,1 +17220,11,1.0,1,1.2482541799545288,221,0.0,1 +17221,11,0.0,1,2.2402570247650146,222,0.0,1 +17222,11,1.0,1,1.328253149986267,223,1.0,1 +17223,11,1.0,1,1.475251317024231,224,0.0,1 +17224,11,0.0,1,1.5492503643035889,225,0.0,1 +17225,11,1.0,1,1.8362467288970947,226,1.0,1 +17226,11,1.0,1,1.5622501373291016,227,1.0,1 +17227,11,1.0,1,2.0122463703155518,228,1.0,1 +17228,11,1.0,1,1.5842499732971191,229,0.0,1 +17229,11,0.0,1,1.6792486906051636,230,1.0,1 +17230,11,0.0,1,1.1702543497085571,231,0.0,1 +17231,11,0.0,1,1.1302542686462402,232,0.0,1 +17232,11,0.0,1,1.431251883506775,233,0.0,1 +17233,11,0.0,1,1.3912523984909058,234,0.0,1 +17234,11,1.0,1,2.2512574195861816,235,0.0,1 +17235,11,0.0,1,1.7062482833862305,236,1.0,1 +17236,11,0.0,1,1.5212507247924805,237,1.0,1 +17237,11,0.0,1,1.6962485313415527,238,0.0,1 +17238,11,0.0,1,1.1722543239593506,239,1.0,1 +17239,11,0.0,1,1.2512542009353638,240,1.0,1 +17240,11,0.0,1,1.2322543859481812,241,0.0,1 +17241,11,0.0,1,1.5772500038146973,242,0.0,1 +17242,11,1.0,1,1.083254098892212,243,1.0,1 +17243,11,1.0,1,1.632249355316162,244,1.0,1 +17244,11,1.0,1,1.548250436782837,245,1.0,1 +17245,11,1.0,1,1.305253505706787,246,1.0,1 +17246,11,1.0,1,1.7082483768463135,247,0.0,1 +17247,11,1.0,1,1.820246934890747,248,1.0,1 +17248,11,1.0,1,1.2782537937164307,249,1.0,1 +17249,11,1.0,1,1.92024564743042,250,1.0,1 +17250,11,1.0,1,1.1972544193267822,251,0.0,1 +17251,11,0.0,1,1.8012471199035645,252,0.0,1 +17252,11,0.0,1,1.1682543754577637,253,0.0,1 +17253,11,1.0,1,1.3972523212432861,254,0.0,1 +17254,11,1.0,1,2.087249755859375,255,1.0,1 +17255,11,1.0,1,1.140254259109497,256,0.0,1 +17256,11,0.0,1,1.3492529392242432,257,0.0,1 +17257,11,1.0,1,1.2722538709640503,258,0.0,1 +17258,11,1.0,1,1.5572502613067627,259,1.0,1 +17259,11,1.0,1,1.7482478618621826,260,1.0,1 +17260,11,1.0,1,1.4672514200210571,261,1.0,1 +17261,11,1.0,1,1.1892544031143188,262,1.0,1 +17262,11,1.0,1,1.1532542705535889,263,1.0,1 +17263,11,1.0,1,1.6982483863830566,264,0.0,1 +17264,11,0.0,1,2.2502574920654297,265,0.0,1 +17265,11,0.0,1,1.1982543468475342,266,0.0,1 +17266,11,1.0,1,2.334261417388916,267,1.0,1 +17267,11,1.0,1,1.354252815246582,268,1.0,1 +17268,11,1.0,1,1.7642476558685303,269,0.0,1 +17269,11,1.0,1,1.6462490558624268,270,1.0,1 +17270,11,1.0,1,1.9542450904846191,271,1.0,1 +17271,11,1.0,1,1.1812543869018555,272,0.0,1 +17272,11,0.0,1,1.1762542724609375,273,1.0,1 +17273,11,0.0,1,1.5282506942749023,274,0.0,1 +17274,11,1.0,1,1.7592476606369019,275,0.0,1 +17275,11,0.0,1,1.9242455959320068,276,0.0,1 +17276,11,1.0,1,2.1872544288635254,277,1.0,1 +17277,11,1.0,1,1.1752543449401855,278,1.0,1 +17278,11,1.0,1,1.4032522439956665,279,1.0,1 +17279,11,1.0,1,1.4382517337799072,280,0.0,1 +17280,11,0.0,1,1.2202544212341309,281,1.0,1 +17281,11,0.0,1,1.659248948097229,282,1.0,1 +17282,11,0.0,1,1.7362480163574219,283,0.0,1 +17283,11,1.0,1,1.244254231452942,284,1.0,1 +17284,11,1.0,1,1.8342466354370117,285,1.0,1 +17285,11,1.0,1,1.895245909690857,286,1.0,1 +17286,11,1.0,1,1.2522541284561157,287,0.0,1 +17287,11,0.0,1,1.401252269744873,288,0.0,1 +17288,11,1.0,1,1.8452465534210205,289,1.0,1 +17289,11,1.0,1,1.4072521924972534,290,0.0,1 +17290,11,1.0,1,1.7532477378845215,291,1.0,1 +17291,11,1.0,1,1.3772525787353516,292,1.0,1 +17292,11,1.0,1,1.9972455501556396,293,1.0,1 +17293,11,1.0,1,1.109254240989685,294,1.0,1 +17294,11,1.0,1,1.3112534284591675,295,1.0,1 +17295,11,1.0,1,1.3492529392242432,296,1.0,1 +17296,11,1.0,1,1.2522541284561157,297,1.0,1 +17297,11,1.0,1,1.6492490768432617,298,1.0,1 +17298,11,1.0,1,1.35325288772583,299,1.0,1 +17299,11,0.0,1,1.4842512607574463,300,1.0,1 +17300,11,1.0,1,1.54425048828125,301,1.0,1 +17301,11,1.0,1,1.3432530164718628,302,1.0,1 +17302,11,0.0,1,1.171254277229309,303,0.0,1 +17303,11,1.0,1,1.5372505187988281,304,1.0,1 +17304,11,1.0,1,1.2182544469833374,305,1.0,1 +17305,11,1.0,1,1.4612514972686768,306,1.0,1 +17306,11,1.0,1,1.2752538919448853,307,1.0,1 +17307,11,1.0,1,1.6672488451004028,308,0.0,1 +17308,11,1.0,1,1.6642489433288574,309,1.0,1 +17309,11,1.0,1,1.589249849319458,310,1.0,1 +17310,11,1.0,1,1.5532503128051758,311,0.0,1 +17311,11,0.0,1,1.5692501068115234,312,0.0,1 +17312,11,1.0,1,1.4382517337799072,313,0.0,1 +17313,11,1.0,1,1.475251317024231,314,0.0,1 +17314,11,0.0,1,1.3242532014846802,315,0.0,1 +17315,11,1.0,1,2.034247398376465,316,1.0,1 +17316,11,1.0,1,1.3022534847259521,317,0.0,1 +17317,11,0.0,1,1.146254301071167,318,1.0,1 +17318,11,0.0,1,1.2062543630599976,319,1.0,1 +17319,11,0.0,1,1.2902536392211914,320,0.0,1 +17320,11,0.0,1,2.078249454498291,321,0.0,1 +17321,11,0.0,1,1.2892537117004395,322,0.0,1 +17322,11,1.0,1,1.8802461624145508,323,1.0,1 +17323,11,0.0,1,1.494251012802124,324,0.0,1 +17324,11,1.0,1,1.1822543144226074,325,1.0,1 +17325,11,1.0,1,1.3592528104782104,326,1.0,1 +17326,11,1.0,1,1.262253999710083,327,1.0,1 +17327,11,1.0,1,1.2062543630599976,328,1.0,1 +17328,11,1.0,1,1.3842524290084839,329,0.0,1 +17329,11,0.0,1,1.6562490463256836,330,0.0,1 +17330,11,0.0,1,1.681248664855957,331,0.0,1 +17331,11,0.0,1,1.314253330230713,332,1.0,1 +17332,11,0.0,1,1.655248999595642,333,1.0,1 +17333,11,0.0,1,1.4192520380020142,334,0.0,1 +17334,11,1.0,1,1.2812538146972656,335,1.0,1 +17335,11,0.0,1,1.140254259109497,336,0.0,1 +17336,11,1.0,1,1.1052541732788086,337,0.0,1 +17337,11,1.0,1,1.935245394706726,338,1.0,1 +17338,11,0.0,1,1.383252501487732,339,0.0,1 +17339,11,1.0,1,1.210254430770874,340,1.0,1 +17340,11,1.0,1,1.3262531757354736,341,0.0,1 +17341,11,1.0,1,1.630249261856079,342,1.0,1 +17342,11,1.0,1,1.2412543296813965,343,0.0,1 +17343,11,1.0,1,1.828246831893921,344,1.0,1 +17344,11,1.0,1,1.4612514972686768,345,1.0,1 +17345,11,1.0,1,1.6622488498687744,346,1.0,1 +17346,11,1.0,1,1.1022541522979736,347,0.0,1 +17347,11,0.0,1,1.496251106262207,348,1.0,1 +17348,11,0.0,1,1.828246831893921,349,1.0,1 +17349,11,0.0,1,1.571250081062317,350,0.0,1 +17350,11,1.0,1,1.283253788948059,351,1.0,1 +17351,11,1.0,1,1.755247712135315,352,1.0,1 +17352,11,1.0,1,1.1822543144226074,353,1.0,1 +17353,11,0.0,1,1.1322542428970337,354,1.0,1 +17354,11,1.0,1,1.5972497463226318,355,1.0,1 +17355,11,1.0,1,1.3422529697418213,356,1.0,1 +17356,11,1.0,1,1.4212520122528076,357,1.0,1 +17357,11,1.0,1,1.4042521715164185,358,1.0,1 +17358,11,1.0,1,1.2242543697357178,359,1.0,1 +17359,11,0.0,1,1.1622543334960938,360,0.0,1 +17360,11,1.0,1,1.4382517337799072,361,0.0,1 +17361,11,1.0,1,1.1172542572021484,362,0.0,1 +17362,11,0.0,1,1.265254020690918,363,0.0,1 +17363,11,0.0,1,1.8372466564178467,364,0.0,1 +17364,11,0.0,1,1.4652514457702637,365,0.0,1 +17365,11,0.0,1,1.5112508535385132,366,0.0,1 +17366,11,0.0,1,1.5472503900527954,367,0.0,1 +17367,11,1.0,1,1.5952497720718384,368,1.0,1 +17368,11,1.0,1,1.1232541799545288,369,1.0,1 +17369,11,0.0,1,1.6452491283416748,370,0.0,1 +17370,11,1.0,1,1.1872543096542358,371,1.0,1 +17371,11,1.0,1,1.472251296043396,372,1.0,1 +17372,11,0.0,1,1.7692475318908691,373,0.0,1 +17373,11,1.0,1,1.730247974395752,374,1.0,1 +17374,11,1.0,1,1.1702543497085571,375,0.0,1 +17375,11,1.0,1,1.3712526559829712,376,1.0,1 +17376,11,1.0,1,1.1452542543411255,377,1.0,1 +17377,11,1.0,1,1.4772512912750244,378,1.0,1 +17378,11,1.0,1,1.2482541799545288,379,1.0,1 +17379,11,0.0,1,1.2982535362243652,380,0.0,1 +17380,11,1.0,1,2.2152557373046875,381,0.0,1 +17381,11,1.0,1,1.6282494068145752,382,1.0,1 +17382,11,0.0,1,1.3512529134750366,383,0.0,1 +17383,11,1.0,1,1.284253716468811,384,1.0,1 +17384,11,1.0,1,1.3402529954910278,385,1.0,1 +17385,11,1.0,1,1.2952536344528198,386,1.0,1 +17386,11,1.0,1,1.35325288772583,387,1.0,1 +17387,11,1.0,1,1.2492542266845703,388,1.0,1 +17388,11,1.0,1,1.305253505706787,389,0.0,1 +17389,11,1.0,1,1.2862536907196045,390,1.0,1 +17390,11,1.0,1,1.6262493133544922,391,1.0,1 +17391,11,1.0,1,1.1822543144226074,392,1.0,1 +17392,11,1.0,1,1.7582476139068604,393,1.0,1 +17393,11,1.0,1,1.4622514247894287,394,1.0,1 +17394,11,1.0,1,1.611249566078186,395,1.0,1 +17395,11,1.0,1,1.6192494630813599,396,1.0,1 +17396,11,1.0,1,1.7862472534179688,397,1.0,1 +17397,11,1.0,1,1.5682501792907715,398,1.0,1 +17398,11,1.0,1,1.309253454208374,399,0.0,1 +17399,11,1.0,1,1.2462542057037354,400,1.0,1 +17400,11,1.0,1,1.3562527894973755,401,1.0,1 +17401,11,1.0,1,1.137254238128662,402,0.0,1 +17402,11,1.0,1,1.3652527332305908,403,1.0,1 +17403,11,1.0,1,1.4082521200180054,404,1.0,1 +17404,11,1.0,1,2.0132462978363037,405,1.0,1 +17405,11,1.0,1,1.2722538709640503,406,1.0,1 +17406,11,1.0,1,1.5162508487701416,407,1.0,1 +17407,11,1.0,1,1.1912543773651123,408,1.0,1 +17408,11,1.0,1,1.4122520685195923,409,1.0,1 +17409,11,1.0,1,1.291253685951233,410,0.0,1 +17410,11,0.0,1,1.7562477588653564,411,0.0,1 +17411,11,1.0,1,2.033247232437134,412,1.0,1 +17412,11,1.0,1,1.328253149986267,413,1.0,1 +17413,11,1.0,1,1.208254337310791,414,1.0,1 +17414,11,1.0,1,1.5612502098083496,415,1.0,1 +17415,11,1.0,1,1.171254277229309,416,0.0,1 +17416,11,1.0,1,1.2642539739608765,417,1.0,1 +17417,11,0.0,1,1.0912541151046753,418,1.0,1 +17418,11,1.0,1,1.5042510032653809,419,0.0,1 +17419,11,0.0,1,1.523250699043274,420,0.0,1 +17420,11,0.0,1,1.5032509565353394,421,0.0,1 +17421,11,1.0,1,1.4632514715194702,422,1.0,1 +17422,11,1.0,1,1.6072496175765991,423,0.0,1 +17423,11,0.0,1,1.1672543287277222,424,0.0,1 +17424,11,1.0,1,2.364262819290161,425,1.0,1 +17425,11,1.0,1,1.305253505706787,426,1.0,1 +17426,11,0.0,1,1.5092508792877197,427,0.0,1 +17427,11,1.0,1,1.40525221824646,428,1.0,1 +17428,11,1.0,1,1.3722525835037231,429,1.0,1 +17429,11,1.0,1,1.5282506942749023,430,1.0,1 +17430,11,1.0,1,1.3732526302337646,431,1.0,1 +17431,11,1.0,1,1.4152520895004272,432,1.0,1 +17432,11,1.0,1,1.1892544031143188,433,1.0,1 +17433,11,1.0,1,1.2992535829544067,434,0.0,1 +17434,11,0.0,1,1.8982458114624023,435,0.0,1 +17435,11,1.0,1,1.2512542009353638,436,1.0,1 +17436,11,1.0,1,1.4802511930465698,437,1.0,1 +17437,11,1.0,1,1.6122496128082275,438,1.0,1 +17438,11,1.0,1,1.2762538194656372,439,1.0,1 +17439,11,1.0,1,1.4822511672973633,440,1.0,1 +17440,11,1.0,1,2.071249008178711,441,0.0,1 +17441,11,0.0,1,1.449251651763916,442,0.0,1 +17442,11,1.0,1,1.682248592376709,443,0.0,1 +17443,11,0.0,1,1.6562490463256836,444,0.0,1 +17444,11,0.0,1,1.5492503643035889,445,0.0,1 +17445,11,1.0,1,2.2262563705444336,446,1.0,1 +17446,11,1.0,1,1.4692513942718506,447,0.0,1 +17447,11,1.0,1,1.5222506523132324,448,0.0,1 +17448,11,1.0,1,1.632249355316162,449,1.0,1 +17449,11,1.0,1,1.6432491540908813,450,0.0,1 +17450,11,1.0,1,1.9242455959320068,451,1.0,1 +17451,11,1.0,1,1.7402479648590088,452,1.0,1 +17452,11,1.0,1,1.1902543306350708,453,0.0,1 +17453,11,0.0,1,2.2562577724456787,454,1.0,1 +17454,11,0.0,1,1.171254277229309,455,1.0,1 +17455,11,0.0,1,1.0692541599273682,456,1.0,1 +17456,11,0.0,1,1.6572489738464355,457,0.0,1 +17457,11,1.0,1,1.2222543954849243,458,1.0,1 +17458,11,1.0,1,1.8862459659576416,459,1.0,1 +17459,11,1.0,1,1.9542450904846191,460,0.0,1 +17460,11,0.0,1,1.8862459659576416,461,0.0,1 +17461,11,1.0,1,1.4202519655227661,462,0.0,1 +17462,11,0.0,1,1.379252552986145,463,1.0,1 +17463,11,0.0,1,1.6762487888336182,464,0.0,1 +17464,11,0.0,1,1.6282494068145752,465,0.0,1 +17465,11,1.0,1,1.8302466869354248,466,1.0,1 +17466,11,0.0,1,1.380252480506897,467,0.0,1 +17467,11,1.0,1,1.4092521667480469,468,0.0,1 +17468,11,1.0,1,1.3032535314559937,469,0.0,1 +17469,11,0.0,1,1.328253149986267,470,1.0,1 +17470,11,0.0,1,1.26625394821167,471,1.0,1 +17471,11,0.0,1,1.4852511882781982,472,0.0,1 +17472,11,0.0,1,1.1582542657852173,473,1.0,1 +17473,11,0.0,1,1.541250467300415,474,1.0,1 +17474,11,0.0,1,1.2562540769577026,475,0.0,1 +17475,11,1.0,1,1.5792499780654907,476,0.0,1 +17476,11,0.0,1,1.2092543840408325,477,0.0,1 +17477,11,0.0,1,1.472251296043396,478,0.0,1 +17478,11,0.0,1,1.7182481288909912,479,0.0,1 +17479,11,1.0,1,2.054248332977295,480,0.0,1 +17480,11,1.0,1,1.5652501583099365,481,1.0,1 +17481,11,0.0,1,1.2562540769577026,482,0.0,1 +17482,11,1.0,1,1.3182532787322998,483,1.0,1 +17483,11,1.0,1,1.40525221824646,484,0.0,1 +17484,11,1.0,1,2.112251043319702,485,1.0,1 +17485,11,0.0,1,1.1112542152404785,486,0.0,1 +17486,11,1.0,1,1.6282494068145752,487,1.0,1 +17487,11,1.0,1,1.4482516050338745,488,1.0,1 +17488,11,0.0,1,1.8742461204528809,489,0.0,1 +17489,11,1.0,1,1.143254280090332,490,1.0,1 +17490,11,1.0,1,1.3042534589767456,491,1.0,1 +17491,11,1.0,1,1.5612502098083496,492,0.0,1 +17492,11,0.0,1,1.6562490463256836,493,0.0,1 +17493,11,1.0,1,1.424251914024353,494,1.0,1 +17494,11,1.0,1,1.726248025894165,495,1.0,1 +17495,11,1.0,1,2.052248239517212,496,1.0,1 +17496,11,1.0,1,1.1452542543411255,497,1.0,1 +17497,11,1.0,1,1.4382517337799072,498,1.0,1 +17498,11,1.0,1,1.1952543258666992,499,0.0,1 +17499,11,1.0,1,1.4792512655258179,500,1.0,1 +17500,11,0.0,2,1.8832460641860962,1,0.0,1 +17501,11,1.0,2,1.244254231452942,2,0.0,1 +17502,11,0.0,2,1.375252604484558,3,1.0,1 +17503,11,0.0,2,1.2272543907165527,4,1.0,1 +17504,11,0.0,2,1.3922523260116577,5,0.0,1 +17505,11,0.0,2,1.0662541389465332,6,0.0,1 +17506,11,0.0,2,1.7412478923797607,7,0.0,1 +17507,11,0.0,2,2.2732584476470947,8,0.0,1 +17508,11,0.0,2,1.4892511367797852,9,0.0,1 +17509,11,0.0,2,1.1302542686462402,10,0.0,1 +17510,11,0.0,2,1.5562503337860107,11,0.0,1 +17511,11,1.0,2,1.4612514972686768,12,1.0,1 +17512,11,1.0,2,1.3782525062561035,13,1.0,1 +17513,11,1.0,2,1.4632514715194702,14,0.0,1 +17514,11,1.0,2,2.034247398376465,15,1.0,1 +17515,11,1.0,2,1.1362543106079102,16,0.0,1 +17516,11,0.0,2,1.3922523260116577,17,0.0,1 +17517,11,1.0,2,1.663248896598816,18,0.0,1 +17518,11,1.0,2,1.1642543077468872,19,0.0,1 +17519,11,1.0,2,1.728248119354248,20,1.0,1 +17520,11,1.0,2,1.7202482223510742,21,1.0,1 +17521,11,1.0,2,1.3622527122497559,22,1.0,1 +17522,11,1.0,2,1.3172533512115479,23,1.0,1 +17523,11,1.0,2,1.1242542266845703,24,0.0,1 +17524,11,1.0,2,1.6072496175765991,25,0.0,1 +17525,11,0.0,2,1.8622462749481201,26,1.0,1 +17526,11,0.0,2,1.6202495098114014,27,1.0,1 +17527,11,0.0,2,1.1632542610168457,28,0.0,1 +17528,11,1.0,2,1.9512451887130737,29,1.0,1 +17529,11,1.0,2,1.207254409790039,30,1.0,1 +17530,11,1.0,2,1.4202519655227661,31,1.0,1 +17531,11,1.0,2,1.0982542037963867,32,1.0,1 +17532,11,1.0,2,1.4402517080307007,33,0.0,1 +17533,11,0.0,2,1.965245008468628,34,0.0,1 +17534,11,0.0,2,1.541250467300415,35,0.0,1 +17535,11,1.0,2,1.5812499523162842,36,1.0,1 +17536,11,0.0,2,1.4862511157989502,37,0.0,1 +17537,11,0.0,2,1.3712526559829712,38,0.0,1 +17538,11,1.0,2,1.5562503337860107,39,1.0,1 +17539,11,1.0,2,1.2422542572021484,40,0.0,1 +17540,11,1.0,2,1.3642526865005493,41,1.0,1 +17541,11,1.0,2,1.3892524242401123,42,1.0,1 +17542,11,1.0,2,1.288253664970398,43,0.0,1 +17543,11,1.0,2,1.2462542057037354,44,0.0,1 +17544,11,1.0,2,1.5092508792877197,45,0.0,1 +17545,11,0.0,2,1.6022496223449707,46,1.0,1 +17546,11,0.0,2,1.3772525787353516,47,1.0,1 +17547,11,0.0,2,1.431251883506775,48,0.0,1 +17548,11,0.0,2,1.284253716468811,49,0.0,1 +17549,11,0.0,2,2.028247117996216,50,1.0,1 +17550,11,0.0,2,1.3652527332305908,51,0.0,1 +17551,11,0.0,2,1.214254379272461,52,0.0,1 +17552,11,0.0,2,1.4592515230178833,53,0.0,1 +17553,11,1.0,2,1.3952523469924927,54,1.0,1 +17554,11,1.0,2,1.1902543306350708,55,0.0,1 +17555,11,0.0,2,1.3522528409957886,56,0.0,1 +17556,11,0.0,2,1.548250436782837,57,0.0,1 +17557,11,1.0,2,1.288253664970398,58,0.0,1 +17558,11,0.0,2,1.8962459564208984,59,1.0,1 +17559,11,0.0,2,1.0692541599273682,60,0.0,1 +17560,11,0.0,2,1.7562477588653564,61,0.0,1 +17561,11,0.0,2,1.8002471923828125,62,0.0,1 +17562,11,0.0,2,1.287253737449646,63,1.0,1 +17563,11,0.0,2,1.2222543954849243,64,1.0,1 +17564,11,0.0,2,1.1942543983459473,65,0.0,1 +17565,11,0.0,2,1.3412530422210693,66,0.0,1 +17566,11,1.0,2,2.0092461109161377,67,1.0,1 +17567,11,1.0,2,1.8882460594177246,68,0.0,1 +17568,11,1.0,2,1.5992497205734253,69,1.0,1 +17569,11,1.0,2,2.0252468585968018,70,0.0,1 +17570,11,1.0,2,1.2012543678283691,71,0.0,1 +17571,11,0.0,2,1.4652514457702637,72,0.0,1 +17572,11,0.0,2,1.140254259109497,73,1.0,1 +17573,11,0.0,2,1.1942543983459473,74,0.0,1 +17574,11,0.0,2,1.588249921798706,75,0.0,1 +17575,11,0.0,2,1.3042534589767456,76,1.0,1 +17576,11,0.0,2,1.1282541751861572,77,1.0,1 +17577,11,0.0,2,1.3822524547576904,78,1.0,1 +17578,11,0.0,2,1.4362517595291138,79,1.0,1 +17579,11,0.0,2,1.3702526092529297,80,0.0,1 +17580,11,0.0,2,1.1232541799545288,81,1.0,1 +17581,11,0.0,2,1.398252248764038,82,1.0,1 +17582,11,0.0,2,1.3702526092529297,83,0.0,1 +17583,11,0.0,2,1.4202519655227661,84,0.0,1 +17584,11,1.0,2,1.6992484331130981,85,1.0,1 +17585,11,1.0,2,1.2212544679641724,86,0.0,1 +17586,11,0.0,2,1.2412543296813965,87,0.0,1 +17587,11,0.0,2,1.772247552871704,88,1.0,1 +17588,11,0.0,2,1.5992497205734253,89,0.0,1 +17589,11,1.0,2,1.2202544212341309,90,0.0,1 +17590,11,1.0,2,1.6972484588623047,91,1.0,1 +17591,11,1.0,2,1.1382542848587036,92,1.0,1 +17592,11,1.0,2,1.2322543859481812,93,1.0,1 +17593,11,1.0,2,1.2752538919448853,94,1.0,1 +17594,11,1.0,2,1.6562490463256836,95,0.0,1 +17595,11,0.0,2,1.2712539434432983,96,1.0,1 +17596,11,0.0,2,1.3712526559829712,97,1.0,1 +17597,11,0.0,2,1.7862472534179688,98,0.0,1 +17598,11,1.0,2,1.431251883506775,99,1.0,1 +17599,11,0.0,2,1.1452542543411255,100,1.0,1 +17600,11,0.0,2,1.3022534847259521,101,1.0,1 +17601,11,1.0,2,1.4362517595291138,102,0.0,1 +17602,11,0.0,2,1.3242532014846802,103,1.0,1 +17603,11,1.0,2,1.2682539224624634,104,1.0,1 +17604,11,0.0,2,1.354252815246582,105,1.0,1 +17605,11,1.0,2,1.3482528924942017,106,0.0,1 +17606,11,0.0,2,1.1722543239593506,107,0.0,1 +17607,11,1.0,2,1.2602540254592896,108,0.0,1 +17608,11,0.0,2,1.471251368522644,109,0.0,1 +17609,11,0.0,2,1.1872543096542358,110,1.0,1 +17610,11,0.0,2,1.2712539434432983,111,1.0,1 +17611,11,0.0,2,1.2802537679672241,112,0.0,1 +17612,11,0.0,2,1.5392504930496216,113,1.0,1 +17613,11,0.0,2,1.287253737449646,114,0.0,1 +17614,11,0.0,2,1.2742538452148438,115,1.0,1 +17615,11,0.0,2,1.240254282951355,116,1.0,1 +17616,11,0.0,2,1.3022534847259521,117,1.0,1 +17617,11,0.0,2,1.8072470426559448,118,0.0,1 +17618,11,0.0,2,1.54425048828125,119,0.0,1 +17619,11,0.0,2,1.4852511882781982,120,1.0,1 +17620,11,0.0,2,1.1972544193267822,121,1.0,1 +17621,11,0.0,2,1.310253381729126,122,1.0,1 +17622,11,0.0,2,1.2302544116973877,123,0.0,1 +17623,11,1.0,2,1.8142468929290771,124,0.0,1 +17624,11,0.0,2,1.9532451629638672,125,1.0,1 +17625,11,0.0,2,1.1312541961669922,126,1.0,1 +17626,11,0.0,2,1.380252480506897,127,0.0,1 +17627,11,1.0,2,1.6042497158050537,128,1.0,1 +17628,11,1.0,2,1.494251012802124,129,0.0,1 +17629,11,1.0,2,1.968245029449463,130,0.0,1 +17630,11,1.0,2,1.183254361152649,131,1.0,1 +17631,11,1.0,2,1.1052541732788086,132,1.0,1 +17632,11,1.0,2,1.4382517337799072,133,1.0,1 +17633,11,1.0,2,1.1672543287277222,134,0.0,1 +17634,11,1.0,2,1.8272467851638794,135,1.0,1 +17635,11,1.0,2,1.3392530679702759,136,0.0,1 +17636,11,0.0,2,1.8342466354370117,137,0.0,1 +17637,11,0.0,2,1.5162508487701416,138,1.0,1 +17638,11,0.0,2,1.615249514579773,139,1.0,1 +17639,11,0.0,2,1.2122544050216675,140,1.0,1 +17640,11,0.0,2,1.1052541732788086,141,0.0,1 +17641,11,0.0,2,1.1552542448043823,142,0.0,1 +17642,11,1.0,2,1.3932523727416992,143,1.0,1 +17643,11,1.0,2,1.3642526865005493,144,1.0,1 +17644,11,0.0,2,1.3502528667449951,145,0.0,1 +17645,11,0.0,2,1.2032543420791626,146,0.0,1 +17646,11,1.0,2,1.7972471714019775,147,1.0,1 +17647,11,1.0,2,1.1112542152404785,148,0.0,1 +17648,11,0.0,2,1.5472503900527954,149,1.0,1 +17649,11,0.0,2,1.7832473516464233,150,0.0,1 +17650,11,1.0,2,2.1542530059814453,151,0.0,1 +17651,11,0.0,2,1.5762500762939453,152,0.0,1 +17652,11,1.0,2,1.453251600265503,153,0.0,1 +17653,11,1.0,2,1.5052509307861328,154,0.0,1 +17654,11,0.0,2,1.6942484378814697,155,0.0,1 +17655,11,1.0,2,1.3932523727416992,156,1.0,1 +17656,11,1.0,2,1.6202495098114014,157,0.0,1 +17657,11,0.0,2,1.9482452869415283,158,1.0,1 +17658,11,0.0,2,1.35325288772583,159,1.0,1 +17659,11,0.0,2,1.1042542457580566,160,1.0,1 +17660,11,0.0,2,1.174254298210144,161,0.0,1 +17661,11,1.0,2,1.8012471199035645,162,1.0,1 +17662,11,1.0,2,1.6072496175765991,163,0.0,1 +17663,11,1.0,2,1.707248330116272,164,0.0,1 +17664,11,1.0,2,1.7362480163574219,165,0.0,1 +17665,11,1.0,2,1.541250467300415,166,0.0,1 +17666,11,0.0,2,1.3512529134750366,167,0.0,1 +17667,11,0.0,2,1.1882543563842773,168,1.0,1 +17668,11,0.0,2,1.7582476139068604,169,0.0,1 +17669,11,0.0,2,1.7502477169036865,170,0.0,1 +17670,11,0.0,2,1.7272480726242065,171,0.0,1 +17671,11,1.0,2,2.2042553424835205,172,0.0,1 +17672,11,0.0,2,1.1302542686462402,173,0.0,1 +17673,11,0.0,2,1.4822511672973633,174,1.0,1 +17674,11,0.0,2,1.080254077911377,175,1.0,1 +17675,11,0.0,2,1.3712526559829712,176,1.0,1 +17676,11,0.0,2,1.0892541408538818,177,0.0,1 +17677,11,0.0,2,1.6422491073608398,178,0.0,1 +17678,11,0.0,2,1.4262518882751465,179,0.0,1 +17679,11,1.0,2,1.2942535877227783,180,1.0,1 +17680,11,1.0,2,1.5042510032653809,181,1.0,1 +17681,11,1.0,2,1.3232532739639282,182,1.0,1 +17682,11,1.0,2,2.0292470455169678,183,0.0,1 +17683,11,0.0,2,2.089249849319458,184,1.0,1 +17684,11,0.0,2,1.0812541246414185,185,1.0,1 +17685,11,0.0,2,1.1782543659210205,186,0.0,1 +17686,11,0.0,2,1.6572489738464355,187,0.0,1 +17687,11,0.0,2,2.0022459030151367,188,0.0,1 +17688,11,1.0,2,2.0012457370758057,189,1.0,1 +17689,11,1.0,2,1.119254231452942,190,0.0,1 +17690,11,1.0,2,1.9232455492019653,191,0.0,1 +17691,11,1.0,2,1.935245394706726,192,1.0,1 +17692,11,1.0,2,1.119254231452942,193,1.0,1 +17693,11,0.0,2,1.4892511367797852,194,1.0,1 +17694,11,1.0,2,1.3412530422210693,195,0.0,1 +17695,11,0.0,2,1.0672540664672852,196,1.0,1 +17696,11,0.0,2,1.4432517290115356,197,1.0,1 +17697,11,0.0,2,1.8562464714050293,198,0.0,1 +17698,11,0.0,2,1.0702540874481201,199,0.0,1 +17699,11,1.0,2,1.0892541408538818,200,1.0,1 +17700,11,1.0,2,1.4862511157989502,201,1.0,1 +17701,11,1.0,2,1.3772525787353516,202,0.0,1 +17702,11,0.0,2,1.5512503385543823,203,1.0,1 +17703,11,1.0,2,1.331253170967102,204,1.0,1 +17704,11,1.0,2,1.8352466821670532,205,1.0,1 +17705,11,1.0,2,2.123251438140869,206,0.0,1 +17706,11,1.0,2,1.563250184059143,207,1.0,1 +17707,11,0.0,2,1.2572541236877441,208,1.0,1 +17708,11,1.0,2,1.6122496128082275,209,1.0,1 +17709,11,0.0,2,1.1982543468475342,210,0.0,1 +17710,11,1.0,2,1.682248592376709,211,0.0,1 +17711,11,0.0,2,1.4652514457702637,212,1.0,1 +17712,11,0.0,2,1.4672514200210571,213,1.0,1 +17713,11,0.0,2,1.611249566078186,214,1.0,1 +17714,11,0.0,2,1.0842541456222534,215,0.0,1 +17715,11,1.0,2,1.3962522745132446,216,0.0,1 +17716,11,0.0,2,1.589249849319458,217,1.0,1 +17717,11,1.0,2,1.6692488193511963,218,0.0,1 +17718,11,0.0,2,1.2212544679641724,219,0.0,1 +17719,11,1.0,2,1.916245698928833,220,0.0,1 +17720,11,1.0,2,1.5992497205734253,221,1.0,1 +17721,11,1.0,2,1.2122544050216675,222,0.0,1 +17722,11,0.0,2,1.265254020690918,223,0.0,1 +17723,11,0.0,2,1.2752538919448853,224,0.0,1 +17724,11,1.0,2,1.1932543516159058,225,1.0,1 +17725,11,1.0,2,1.4372518062591553,226,0.0,1 +17726,11,1.0,2,1.5662500858306885,227,1.0,1 +17727,11,1.0,2,1.3512529134750366,228,1.0,1 +17728,11,1.0,2,1.1662542819976807,229,1.0,1 +17729,11,1.0,2,1.1892544031143188,230,1.0,1 +17730,11,1.0,2,1.261254072189331,231,0.0,1 +17731,11,0.0,2,1.5132508277893066,232,1.0,1 +17732,11,0.0,2,1.7412478923797607,233,1.0,1 +17733,11,0.0,2,1.4302518367767334,234,0.0,1 +17734,11,1.0,2,1.328253149986267,235,1.0,1 +17735,11,1.0,2,2.0102462768554688,236,1.0,1 +17736,11,1.0,2,1.2562540769577026,237,0.0,1 +17737,11,0.0,2,1.406252145767212,238,1.0,1 +17738,11,0.0,2,1.1932543516159058,239,0.0,1 +17739,11,1.0,2,1.5162508487701416,240,1.0,1 +17740,11,0.0,2,1.306253433227539,241,0.0,1 +17741,11,1.0,2,1.3852524757385254,242,1.0,1 +17742,11,1.0,2,2.083249568939209,243,1.0,1 +17743,11,1.0,2,1.144254207611084,244,0.0,1 +17744,11,0.0,2,2.1502528190612793,245,1.0,1 +17745,11,0.0,2,1.4562515020370483,246,0.0,1 +17746,11,0.0,2,1.113254189491272,247,0.0,1 +17747,11,1.0,2,1.958245038986206,248,0.0,1 +17748,11,1.0,2,1.6162495613098145,249,0.0,1 +17749,11,0.0,2,1.3272532224655151,250,1.0,1 +17750,11,0.0,2,2.088249921798706,251,0.0,1 +17751,11,1.0,2,1.7692475318908691,252,0.0,1 +17752,11,0.0,2,1.3412530422210693,253,0.0,1 +17753,11,1.0,2,1.7962472438812256,254,0.0,1 +17754,11,1.0,2,1.91424560546875,255,1.0,1 +17755,11,1.0,2,1.3952523469924927,256,1.0,1 +17756,11,1.0,2,1.5332505702972412,257,0.0,1 +17757,11,0.0,2,1.3512529134750366,258,0.0,1 +17758,11,0.0,2,1.3902523517608643,259,1.0,1 +17759,11,0.0,2,1.1352542638778687,260,0.0,1 +17760,11,1.0,2,1.2532541751861572,261,1.0,1 +17761,11,1.0,2,1.1902543306350708,262,0.0,1 +17762,11,0.0,2,1.3882523775100708,263,1.0,1 +17763,11,0.0,2,1.1362543106079102,264,1.0,1 +17764,11,0.0,2,1.2922536134719849,265,0.0,1 +17765,11,0.0,2,1.1662542819976807,266,1.0,1 +17766,11,0.0,2,1.0752540826797485,267,0.0,1 +17767,11,0.0,2,1.24325430393219,268,1.0,1 +17768,11,0.0,2,1.3732526302337646,269,1.0,1 +17769,11,0.0,2,1.1422542333602905,270,0.0,1 +17770,11,0.0,2,1.40525221824646,271,1.0,1 +17771,11,1.0,2,1.7142481803894043,272,0.0,1 +17772,11,0.0,2,1.6772487163543701,273,1.0,1 +17773,11,0.0,2,1.4342517852783203,274,0.0,1 +17774,11,1.0,2,1.5992497205734253,275,1.0,1 +17775,11,1.0,2,1.5652501583099365,276,1.0,1 +17776,11,1.0,2,1.1602542400360107,277,0.0,1 +17777,11,1.0,2,1.2232544422149658,278,0.0,1 +17778,11,1.0,2,1.3992522954940796,279,1.0,1 +17779,11,0.0,2,1.3852524757385254,280,0.0,1 +17780,11,1.0,2,1.1762542724609375,281,0.0,1 +17781,11,1.0,2,2.2592577934265137,282,1.0,1 +17782,11,1.0,2,1.336253046989441,283,0.0,1 +17783,11,0.0,2,1.6742486953735352,284,1.0,1 +17784,11,0.0,2,1.3452529907226562,285,1.0,1 +17785,11,1.0,2,1.9412453174591064,286,1.0,1 +17786,11,1.0,2,1.3782525062561035,287,0.0,1 +17787,11,0.0,2,1.0972541570663452,288,0.0,1 +17788,11,0.0,2,2.387263774871826,289,1.0,1 +17789,11,0.0,2,2.0212466716766357,290,0.0,1 +17790,11,1.0,2,1.1932543516159058,291,1.0,1 +17791,11,1.0,2,1.5942497253417969,292,1.0,1 +17792,11,1.0,2,1.3932523727416992,293,0.0,1 +17793,11,1.0,2,1.5472503900527954,294,0.0,1 +17794,11,0.0,2,1.6432491540908813,295,1.0,1 +17795,11,0.0,2,2.0072460174560547,296,0.0,1 +17796,11,1.0,2,1.6792486906051636,297,1.0,1 +17797,11,1.0,2,1.637249231338501,298,0.0,1 +17798,11,1.0,2,1.3342530727386475,299,1.0,1 +17799,11,1.0,2,1.2502541542053223,300,0.0,1 +17800,11,1.0,2,1.4602514505386353,301,0.0,1 +17801,11,0.0,2,1.0442540645599365,302,1.0,1 +17802,11,0.0,2,1.3812525272369385,303,0.0,1 +17803,11,1.0,2,1.3852524757385254,304,1.0,1 +17804,11,1.0,2,1.680248737335205,305,1.0,1 +17805,11,1.0,2,1.6512490510940552,306,1.0,1 +17806,11,1.0,2,1.571250081062317,307,0.0,1 +17807,11,1.0,2,1.632249355316162,308,1.0,1 +17808,11,1.0,2,1.5202507972717285,309,1.0,1 +17809,11,1.0,2,1.2752538919448853,310,0.0,1 +17810,11,0.0,2,1.3822524547576904,311,0.0,1 +17811,11,1.0,2,1.865246295928955,312,1.0,1 +17812,11,1.0,2,1.3412530422210693,313,0.0,1 +17813,11,1.0,2,1.2242543697357178,314,1.0,1 +17814,11,1.0,2,1.1912543773651123,315,1.0,1 +17815,11,1.0,2,1.5202507972717285,316,0.0,1 +17816,11,1.0,2,1.4362517595291138,317,0.0,1 +17817,11,0.0,2,1.5432504415512085,318,1.0,1 +17818,11,0.0,2,1.4092521667480469,319,0.0,1 +17819,11,0.0,2,1.2972536087036133,320,0.0,1 +17820,11,0.0,2,2.095250129699707,321,1.0,1 +17821,11,0.0,2,1.6082496643066406,322,0.0,1 +17822,11,1.0,2,1.2782537937164307,323,1.0,1 +17823,11,1.0,2,1.4822511672973633,324,1.0,1 +17824,11,1.0,2,1.4252519607543945,325,1.0,1 +17825,11,0.0,2,1.1282541751861572,326,1.0,1 +17826,11,0.0,2,1.632249355316162,327,1.0,1 +17827,11,0.0,2,1.5392504930496216,328,1.0,1 +17828,11,1.0,2,1.5692501068115234,329,1.0,1 +17829,11,0.0,2,1.3462529182434082,330,1.0,1 +17830,11,0.0,2,1.3082534074783325,331,0.0,1 +17831,11,1.0,2,1.4772512912750244,332,0.0,1 +17832,11,0.0,2,1.1642543077468872,333,0.0,1 +17833,11,1.0,2,1.9982457160949707,334,0.0,1 +17834,11,1.0,2,1.6582489013671875,335,1.0,1 +17835,11,0.0,2,1.116254210472107,336,0.0,1 +17836,11,1.0,2,1.7342479228973389,337,0.0,1 +17837,11,0.0,2,1.310253381729126,338,0.0,1 +17838,11,1.0,2,1.8082470893859863,339,0.0,1 +17839,11,1.0,2,1.7582476139068604,340,1.0,1 +17840,11,1.0,2,1.2852537631988525,341,0.0,1 +17841,11,1.0,2,1.9942455291748047,342,0.0,1 +17842,11,1.0,2,2.1652534008026123,343,0.0,1 +17843,11,0.0,2,1.820246934890747,344,0.0,1 +17844,11,1.0,2,2.049247980117798,345,1.0,1 +17845,11,1.0,2,1.0992541313171387,346,0.0,1 +17846,11,1.0,2,1.655248999595642,347,0.0,1 +17847,11,0.0,2,1.10625422000885,348,1.0,1 +17848,11,0.0,2,1.0612541437149048,349,0.0,1 +17849,11,0.0,2,1.2472542524337769,350,0.0,1 +17850,11,0.0,2,1.774247407913208,351,1.0,1 +17851,11,0.0,2,1.4032522439956665,352,1.0,1 +17852,11,0.0,2,1.0412540435791016,353,1.0,1 +17853,11,0.0,2,1.0652540922164917,354,0.0,1 +17854,11,0.0,2,1.2852537631988525,355,0.0,1 +17855,11,1.0,2,1.5042510032653809,356,1.0,1 +17856,11,1.0,2,1.2632540464401245,357,0.0,1 +17857,11,0.0,2,1.2592540979385376,358,1.0,1 +17858,11,0.0,2,1.1582542657852173,359,0.0,1 +17859,11,0.0,2,1.4632514715194702,360,0.0,1 +17860,11,1.0,2,1.663248896598816,361,1.0,1 +17861,11,1.0,2,1.5132508277893066,362,0.0,1 +17862,11,1.0,2,1.0522540807724,363,0.0,1 +17863,11,0.0,2,1.3942523002624512,364,0.0,1 +17864,11,1.0,2,1.431251883506775,365,1.0,1 +17865,11,1.0,2,1.2952536344528198,366,1.0,1 +17866,11,1.0,2,1.3022534847259521,367,0.0,1 +17867,11,1.0,2,1.5592502355575562,368,1.0,1 +17868,11,1.0,2,1.3162533044815063,369,0.0,1 +17869,11,0.0,2,1.2212544679641724,370,0.0,1 +17870,11,1.0,2,1.1762542724609375,371,0.0,1 +17871,11,1.0,2,1.1622543334960938,372,1.0,1 +17872,11,1.0,2,1.1762542724609375,373,1.0,1 +17873,11,1.0,2,1.1972544193267822,374,0.0,1 +17874,11,1.0,2,2.059248447418213,375,0.0,1 +17875,11,0.0,2,1.424251914024353,376,1.0,1 +17876,11,0.0,2,1.140254259109497,377,0.0,1 +17877,11,1.0,2,1.2822537422180176,378,0.0,1 +17878,11,0.0,2,1.4642513990402222,379,1.0,1 +17879,11,0.0,2,1.5522503852844238,380,0.0,1 +17880,11,0.0,2,1.958245038986206,381,1.0,1 +17881,11,0.0,2,1.0572540760040283,382,0.0,1 +17882,11,1.0,2,1.2772538661956787,383,0.0,1 +17883,11,0.0,2,1.1332542896270752,384,0.0,1 +17884,11,0.0,2,1.56725013256073,385,0.0,1 +17885,11,0.0,2,1.328253149986267,386,1.0,1 +17886,11,0.0,2,1.174254298210144,387,0.0,1 +17887,11,1.0,2,1.5582501888275146,388,1.0,1 +17888,11,1.0,2,1.424251914024353,389,1.0,1 +17889,11,1.0,2,1.1942543983459473,390,1.0,1 +17890,11,1.0,2,1.1662542819976807,391,0.0,1 +17891,11,1.0,2,1.6922485828399658,392,1.0,1 +17892,11,1.0,2,1.9952454566955566,393,0.0,1 +17893,11,0.0,2,1.3852524757385254,394,0.0,1 +17894,11,1.0,2,1.872246265411377,395,0.0,1 +17895,11,0.0,2,1.5742499828338623,396,1.0,1 +17896,11,0.0,2,1.2492542266845703,397,0.0,1 +17897,11,0.0,2,2.0162465572357178,398,0.0,1 +17898,11,0.0,2,1.5252506732940674,399,0.0,1 +17899,11,1.0,2,1.3972523212432861,400,1.0,1 +17900,11,1.0,2,1.2462542057037354,401,1.0,1 +17901,11,1.0,2,1.1222542524337769,402,1.0,1 +17902,11,1.0,2,1.1722543239593506,403,1.0,1 +17903,11,1.0,2,1.3472529649734497,404,0.0,1 +17904,11,0.0,2,1.2192543745040894,405,0.0,1 +17905,11,0.0,2,1.6392492055892944,406,0.0,1 +17906,11,0.0,2,1.5782499313354492,407,0.0,1 +17907,11,1.0,2,1.4482516050338745,408,1.0,1 +17908,11,1.0,2,1.5272506475448608,409,1.0,1 +17909,11,1.0,2,1.3332531452178955,410,0.0,1 +17910,11,0.0,2,1.1902543306350708,411,1.0,1 +17911,11,0.0,2,1.4402517080307007,412,0.0,1 +17912,11,1.0,2,1.313253402709961,413,1.0,1 +17913,11,1.0,2,1.2222543954849243,414,0.0,1 +17914,11,1.0,2,1.5062508583068848,415,1.0,1 +17915,11,1.0,2,1.310253381729126,416,0.0,1 +17916,11,1.0,2,2.1242516040802,417,0.0,1 +17917,11,0.0,2,1.4122520685195923,418,0.0,1 +17918,11,0.0,2,1.2792538404464722,419,1.0,1 +17919,11,0.0,2,1.1692543029785156,420,1.0,1 +17920,11,0.0,2,1.144254207611084,421,1.0,1 +17921,11,1.0,2,1.4422516822814941,422,1.0,1 +17922,11,1.0,2,1.5952497720718384,423,0.0,1 +17923,11,0.0,2,1.5842499732971191,424,0.0,1 +17924,11,0.0,2,1.2022544145584106,425,0.0,1 +17925,11,1.0,2,1.4822511672973633,426,1.0,1 +17926,11,1.0,2,1.3472529649734497,427,0.0,1 +17927,11,1.0,2,1.2322543859481812,428,1.0,1 +17928,11,1.0,2,1.2682539224624634,429,1.0,1 +17929,11,1.0,2,1.328253149986267,430,1.0,1 +17930,11,1.0,2,1.540250539779663,431,1.0,1 +17931,11,1.0,2,1.5872498750686646,432,0.0,1 +17932,11,1.0,2,1.6712487936019897,433,0.0,1 +17933,11,0.0,2,1.1332542896270752,434,0.0,1 +17934,11,0.0,2,1.144254207611084,435,1.0,1 +17935,11,0.0,2,1.291253685951233,436,0.0,1 +17936,11,0.0,2,1.42825186252594,437,0.0,1 +17937,11,0.0,2,1.8742461204528809,438,1.0,1 +17938,11,0.0,2,1.2702538967132568,439,1.0,1 +17939,11,0.0,2,1.6752487421035767,440,0.0,1 +17940,11,0.0,2,1.143254280090332,441,0.0,1 +17941,11,0.0,2,1.6722488403320312,442,0.0,1 +17942,11,0.0,2,1.4622514247894287,443,0.0,1 +17943,11,1.0,2,1.2332544326782227,444,1.0,1 +17944,11,1.0,2,1.3152533769607544,445,1.0,1 +17945,11,1.0,2,1.3662526607513428,446,0.0,1 +17946,11,1.0,2,1.427251935005188,447,0.0,1 +17947,11,1.0,2,1.1172542572021484,448,1.0,1 +17948,11,1.0,2,1.210254430770874,449,0.0,1 +17949,11,1.0,2,1.427251935005188,450,0.0,1 +17950,11,0.0,2,1.177254319190979,451,1.0,1 +17951,11,0.0,2,1.1592543125152588,452,1.0,1 +17952,11,0.0,2,1.1602542400360107,453,1.0,1 +17953,11,0.0,2,1.2122544050216675,454,0.0,1 +17954,11,1.0,2,1.4802511930465698,455,0.0,1 +17955,11,0.0,2,2.030247211456299,456,1.0,1 +17956,11,0.0,2,1.2502541542053223,457,0.0,1 +17957,11,0.0,2,1.354252815246582,458,1.0,1 +17958,11,0.0,2,1.0442540645599365,459,0.0,1 +17959,11,0.0,2,2.1522529125213623,460,1.0,1 +17960,11,0.0,2,1.207254409790039,461,0.0,1 +17961,11,0.0,2,1.4692513942718506,462,1.0,1 +17962,11,0.0,2,1.2942535877227783,463,0.0,1 +17963,11,0.0,2,1.0842541456222534,464,0.0,1 +17964,11,0.0,2,1.8482465744018555,465,0.0,1 +17965,11,0.0,2,1.777247428894043,466,1.0,1 +17966,11,1.0,2,1.283253788948059,467,0.0,1 +17967,11,0.0,2,1.6442492008209229,468,1.0,1 +17968,11,0.0,2,1.1422542333602905,469,1.0,1 +17969,11,0.0,2,1.3382530212402344,470,1.0,1 +17970,11,0.0,2,1.1262542009353638,471,0.0,1 +17971,11,1.0,2,1.4132521152496338,472,1.0,1 +17972,11,1.0,2,1.5592502355575562,473,1.0,1 +17973,11,0.0,2,1.3382530212402344,474,0.0,1 +17974,11,1.0,2,1.4862511157989502,475,1.0,1 +17975,11,1.0,2,1.3112534284591675,476,1.0,1 +17976,11,1.0,2,1.3212532997131348,477,0.0,1 +17977,11,1.0,2,1.2682539224624634,478,0.0,1 +17978,11,1.0,2,1.3192533254623413,479,1.0,1 +17979,11,0.0,2,1.6832486391067505,480,0.0,1 +17980,11,1.0,2,1.2352544069290161,481,0.0,1 +17981,11,0.0,2,1.1452542543411255,482,0.0,1 +17982,11,0.0,2,1.1352542638778687,483,1.0,1 +17983,11,0.0,2,1.4842512607574463,484,1.0,1 +17984,11,0.0,2,1.1392542123794556,485,1.0,1 +17985,11,0.0,2,1.4262518882751465,486,1.0,1 +17986,11,0.0,2,1.7372479438781738,487,0.0,1 +17987,11,0.0,2,1.5222506523132324,488,0.0,1 +17988,11,0.0,2,1.9212455749511719,489,1.0,1 +17989,11,1.0,2,1.4162520170211792,490,1.0,1 +17990,11,1.0,2,1.7562477588653564,491,0.0,1 +17991,11,1.0,2,1.4622514247894287,492,0.0,1 +17992,11,0.0,2,1.207254409790039,493,0.0,1 +17993,11,0.0,2,1.4992510080337524,494,0.0,1 +17994,11,1.0,2,1.4992510080337524,495,0.0,1 +17995,11,0.0,2,1.776247501373291,496,1.0,1 +17996,11,0.0,2,1.3462529182434082,497,0.0,1 +17997,11,0.0,2,1.9232455492019653,498,0.0,1 +17998,11,1.0,2,1.3212532997131348,499,0.0,1 +17999,11,0.0,2,1.1972544193267822,500,1.0,1 +18000,12,0.0,0,1.8141798973083496,1,0.0,1 +18001,12,1.0,0,1.6481819152832031,2,0.0,1 +18002,12,0.0,0,1.516183614730835,3,1.0,1 +18003,12,0.0,0,1.248186469078064,4,0.0,1 +18004,12,1.0,0,2.106180191040039,5,1.0,1 +18005,12,1.0,0,1.4731842279434204,6,0.0,1 +18006,12,1.0,0,1.3911852836608887,7,0.0,1 +18007,12,1.0,0,1.6271822452545166,8,1.0,1 +18008,12,1.0,0,1.2501864433288574,9,1.0,1 +18009,12,1.0,0,1.3481857776641846,10,1.0,1 +18010,12,1.0,0,1.5541832447052002,11,0.0,1 +18011,12,1.0,0,2.384192943572998,12,0.0,1 +18012,12,1.0,0,1.8931788206100464,13,1.0,1 +18013,12,1.0,0,1.8201797008514404,14,1.0,1 +18014,12,1.0,0,1.3881852626800537,15,1.0,1 +18015,12,1.0,0,1.4001851081848145,16,1.0,1 +18016,12,1.0,0,1.446184515953064,17,0.0,1 +18017,12,1.0,0,1.654181957244873,18,1.0,1 +18018,12,1.0,0,1.5031838417053223,19,1.0,1 +18019,12,0.0,0,1.2711865901947021,20,0.0,1 +18020,12,1.0,0,1.5901827812194824,21,1.0,1 +18021,12,1.0,0,1.445184588432312,22,1.0,1 +18022,12,1.0,0,1.3221861124038696,23,1.0,1 +18023,12,0.0,0,1.4561843872070312,24,0.0,1 +18024,12,1.0,0,1.471184253692627,25,1.0,1 +18025,12,1.0,0,1.7141811847686768,26,1.0,1 +18026,12,1.0,0,1.5691829919815063,27,0.0,1 +18027,12,0.0,0,1.7161810398101807,28,0.0,1 +18028,12,1.0,0,2.123180866241455,29,1.0,1 +18029,12,1.0,0,1.3921852111816406,30,1.0,1 +18030,12,1.0,0,1.3121862411499023,31,1.0,1 +18031,12,1.0,0,1.3261860609054565,32,0.0,1 +18032,12,0.0,0,2.2491867542266846,33,1.0,1 +18033,12,0.0,0,1.116186261177063,34,0.0,1 +18034,12,0.0,0,2.2071847915649414,35,0.0,1 +18035,12,1.0,0,1.838179588317871,36,1.0,1 +18036,12,1.0,0,1.420184850692749,37,1.0,1 +18037,12,1.0,0,1.3661855459213257,38,1.0,1 +18038,12,1.0,0,1.6451820135116577,39,1.0,1 +18039,12,1.0,0,1.1971863508224487,40,1.0,1 +18040,12,1.0,0,1.769180417060852,41,1.0,1 +18041,12,1.0,0,1.6031825542449951,42,1.0,1 +18042,12,1.0,0,1.6461820602416992,43,1.0,1 +18043,12,0.0,0,1.5291835069656372,44,0.0,1 +18044,12,1.0,0,1.4211848974227905,45,1.0,1 +18045,12,1.0,0,1.3361859321594238,46,1.0,1 +18046,12,1.0,0,1.3111863136291504,47,1.0,1 +18047,12,1.0,0,1.379185438156128,48,1.0,1 +18048,12,1.0,0,1.6661818027496338,49,1.0,1 +18049,12,1.0,0,1.7601804733276367,50,1.0,1 +18050,12,1.0,0,1.5141836404800415,51,1.0,1 +18051,12,1.0,0,1.2681865692138672,52,1.0,1 +18052,12,1.0,0,1.2011864185333252,53,1.0,1 +18053,12,1.0,0,1.2331864833831787,54,1.0,1 +18054,12,0.0,0,1.2971864938735962,55,0.0,1 +18055,12,1.0,0,1.7191810607910156,56,0.0,1 +18056,12,1.0,0,1.3801853656768799,57,1.0,1 +18057,12,1.0,0,1.3481857776641846,58,1.0,1 +18058,12,1.0,0,1.2391865253448486,59,1.0,1 +18059,12,1.0,0,1.2631864547729492,60,1.0,1 +18060,12,1.0,0,1.8541793823242188,61,1.0,1 +18061,12,1.0,0,1.6011825799942017,62,1.0,1 +18062,12,1.0,0,1.6971813440322876,63,1.0,1 +18063,12,1.0,0,1.4821840524673462,64,1.0,1 +18064,12,1.0,0,1.5211836099624634,65,1.0,1 +18065,12,1.0,0,1.244186520576477,66,0.0,1 +18066,12,1.0,0,1.846179485321045,67,0.0,1 +18067,12,0.0,0,1.6851814985275269,68,0.0,1 +18068,12,1.0,0,1.7091811895370483,69,1.0,1 +18069,12,1.0,0,1.3571857213974,70,1.0,1 +18070,12,1.0,0,1.489184021949768,71,1.0,1 +18071,12,1.0,0,1.4561843872070312,72,1.0,1 +18072,12,1.0,0,1.5951826572418213,73,1.0,1 +18073,12,1.0,0,1.5291835069656372,74,0.0,1 +18074,12,0.0,0,1.5921826362609863,75,1.0,1 +18075,12,0.0,0,1.70418119430542,76,0.0,1 +18076,12,1.0,0,1.3681855201721191,77,1.0,1 +18077,12,1.0,0,1.4251848459243774,78,1.0,1 +18078,12,1.0,0,2.2841882705688477,79,1.0,1 +18079,12,1.0,0,1.5101836919784546,80,0.0,1 +18080,12,1.0,0,1.5831828117370605,81,0.0,1 +18081,12,1.0,0,1.6951813697814941,82,1.0,1 +18082,12,1.0,0,1.4741841554641724,83,1.0,1 +18083,12,1.0,0,1.4621843099594116,84,1.0,1 +18084,12,1.0,0,1.446184515953064,85,1.0,1 +18085,12,1.0,0,1.2931865453720093,86,1.0,1 +18086,12,1.0,0,2.2741880416870117,87,0.0,1 +18087,12,0.0,0,2.110180377960205,88,0.0,1 +18088,12,1.0,0,1.6821815967559814,89,0.0,1 +18089,12,0.0,0,1.656181812286377,90,0.0,1 +18090,12,0.0,0,1.2801865339279175,91,0.0,1 +18091,12,0.0,0,1.4441845417022705,92,0.0,1 +18092,12,1.0,0,2.060177803039551,93,1.0,1 +18093,12,1.0,0,1.6431820392608643,94,1.0,1 +18094,12,1.0,0,1.5911827087402344,95,1.0,1 +18095,12,1.0,0,1.6161823272705078,96,1.0,1 +18096,12,1.0,0,1.309186339378357,97,1.0,1 +18097,12,1.0,0,1.6941814422607422,98,1.0,1 +18098,12,1.0,0,1.4791841506958008,99,0.0,1 +18099,12,0.0,0,1.2301864624023438,100,0.0,1 +18100,12,1.0,0,2.156182289123535,101,1.0,1 +18101,12,1.0,0,1.472184181213379,102,1.0,1 +18102,12,1.0,0,1.3151862621307373,103,0.0,1 +18103,12,1.0,0,1.5241835117340088,104,1.0,1 +18104,12,1.0,0,1.427184820175171,105,1.0,1 +18105,12,1.0,0,1.836179494857788,106,1.0,1 +18106,12,1.0,0,1.2581864595413208,107,1.0,1 +18107,12,1.0,0,1.3781853914260864,108,1.0,1 +18108,12,1.0,0,1.6351821422576904,109,1.0,1 +18109,12,1.0,0,1.302186369895935,110,1.0,1 +18110,12,1.0,0,1.4481844902038574,111,1.0,1 +18111,12,1.0,0,1.3851853609085083,112,1.0,1 +18112,12,1.0,0,1.564182996749878,113,0.0,1 +18113,12,0.0,0,1.354185700416565,114,0.0,1 +18114,12,1.0,0,1.6881814002990723,115,1.0,1 +18115,12,1.0,0,1.9641778469085693,116,1.0,1 +18116,12,1.0,0,1.2901865243911743,117,1.0,1 +18117,12,1.0,0,1.2891865968704224,118,1.0,1 +18118,12,1.0,0,1.2561864852905273,119,1.0,1 +18119,12,1.0,0,1.3031864166259766,120,1.0,1 +18120,12,1.0,0,1.4781841039657593,121,1.0,1 +18121,12,1.0,0,1.6431820392608643,122,1.0,1 +18122,12,1.0,0,1.5861828327178955,123,1.0,1 +18123,12,1.0,0,1.4781841039657593,124,0.0,1 +18124,12,0.0,0,1.794180154800415,125,0.0,1 +18125,12,0.0,0,1.7821803092956543,126,0.0,1 +18126,12,0.0,0,1.371185541152954,127,0.0,1 +18127,12,1.0,0,1.7401807308197021,128,1.0,1 +18128,12,1.0,0,1.397185206413269,129,1.0,1 +18129,12,1.0,0,1.6841814517974854,130,1.0,1 +18130,12,0.0,0,1.7161810398101807,131,0.0,1 +18131,12,1.0,0,1.5041837692260742,132,1.0,1 +18132,12,1.0,0,2.2091848850250244,133,1.0,1 +18133,12,1.0,0,1.515183687210083,134,1.0,1 +18134,12,1.0,0,2.0001773834228516,135,1.0,1 +18135,12,1.0,0,1.585182785987854,136,1.0,1 +18136,12,1.0,0,1.6801815032958984,137,1.0,1 +18137,12,1.0,0,1.3391859531402588,138,1.0,1 +18138,12,1.0,0,1.2831865549087524,139,1.0,1 +18139,12,1.0,0,1.275186538696289,140,1.0,1 +18140,12,1.0,0,1.493183970451355,141,1.0,1 +18141,12,1.0,0,1.402185082435608,142,1.0,1 +18142,12,1.0,0,1.242186427116394,143,1.0,1 +18143,12,1.0,0,1.5491832494735718,144,1.0,1 +18144,12,1.0,0,1.5491832494735718,145,1.0,1 +18145,12,1.0,0,1.4691842794418335,146,1.0,1 +18146,12,1.0,0,1.7861802577972412,147,0.0,1 +18147,12,0.0,0,1.5041837692260742,148,0.0,1 +18148,12,0.0,0,1.6571818590164185,149,0.0,1 +18149,12,1.0,0,1.7611805200576782,150,1.0,1 +18150,12,1.0,0,2.1991844177246094,151,1.0,1 +18151,12,1.0,0,2.0441770553588867,152,1.0,1 +18152,12,1.0,0,1.354185700416565,153,1.0,1 +18153,12,1.0,0,1.177186369895935,154,1.0,1 +18154,12,1.0,0,1.9641778469085693,155,1.0,1 +18155,12,1.0,0,1.563183069229126,156,1.0,1 +18156,12,1.0,0,1.3851853609085083,157,1.0,1 +18157,12,1.0,0,1.698181390762329,158,1.0,1 +18158,12,1.0,0,1.7781803607940674,159,0.0,1 +18159,12,1.0,0,1.3681855201721191,160,1.0,1 +18160,12,1.0,0,1.3801853656768799,161,1.0,1 +18161,12,1.0,0,1.281186580657959,162,1.0,1 +18162,12,1.0,0,1.7901802062988281,163,1.0,1 +18163,12,1.0,0,1.471184253692627,164,1.0,1 +18164,12,1.0,0,1.353185772895813,165,1.0,1 +18165,12,1.0,0,1.420184850692749,166,1.0,1 +18166,12,1.0,0,1.2271864414215088,167,0.0,1 +18167,12,1.0,0,2.2261857986450195,168,0.0,1 +18168,12,0.0,0,1.4221848249435425,169,0.0,1 +18169,12,1.0,0,1.497183918952942,170,1.0,1 +18170,12,1.0,0,1.4691842794418335,171,1.0,1 +18171,12,1.0,0,1.3261860609054565,172,1.0,1 +18172,12,1.0,0,1.5651830434799194,173,1.0,1 +18173,12,1.0,0,1.4731842279434204,174,1.0,1 +18174,12,1.0,0,1.4831840991973877,175,1.0,1 +18175,12,1.0,0,2.022177219390869,176,0.0,1 +18176,12,1.0,0,1.3881852626800537,177,1.0,1 +18177,12,1.0,0,1.5021837949752808,178,1.0,1 +18178,12,1.0,0,1.3441858291625977,179,1.0,1 +18179,12,1.0,0,1.5321834087371826,180,1.0,1 +18180,12,1.0,0,1.4441845417022705,181,1.0,1 +18181,12,1.0,0,1.471184253692627,182,1.0,1 +18182,12,1.0,0,1.3521857261657715,183,1.0,1 +18183,12,1.0,0,1.441184639930725,184,1.0,1 +18184,12,1.0,0,1.376185417175293,185,1.0,1 +18185,12,1.0,0,1.5171836614608765,186,0.0,1 +18186,12,1.0,0,1.8571792840957642,187,1.0,1 +18187,12,1.0,0,1.8851789236068726,188,1.0,1 +18188,12,1.0,0,1.51918363571167,189,1.0,1 +18189,12,1.0,0,1.5821828842163086,190,1.0,1 +18190,12,1.0,0,1.4351847171783447,191,1.0,1 +18191,12,1.0,0,2.1661829948425293,192,1.0,1 +18192,12,1.0,0,1.6741816997528076,193,1.0,1 +18193,12,1.0,0,1.6131824254989624,194,1.0,1 +18194,12,1.0,0,1.537183403968811,195,1.0,1 +18195,12,1.0,0,1.327186107635498,196,1.0,1 +18196,12,1.0,0,1.3661855459213257,197,1.0,1 +18197,12,1.0,0,1.442184567451477,198,1.0,1 +18198,12,1.0,0,1.218186378479004,199,1.0,1 +18199,12,1.0,0,1.3621855974197388,200,1.0,1 +18200,12,1.0,0,1.585182785987854,201,0.0,1 +18201,12,1.0,0,1.8341796398162842,202,1.0,1 +18202,12,1.0,0,1.2961864471435547,203,1.0,1 +18203,12,1.0,0,1.6741816997528076,204,1.0,1 +18204,12,1.0,0,1.2691864967346191,205,1.0,1 +18205,12,1.0,0,1.8641791343688965,206,1.0,1 +18206,12,1.0,0,1.3731855154037476,207,1.0,1 +18207,12,1.0,0,1.220186471939087,208,1.0,1 +18208,12,1.0,0,1.5741829872131348,209,0.0,1 +18209,12,0.0,0,1.301186442375183,210,1.0,1 +18210,12,0.0,0,1.4351847171783447,211,0.0,1 +18211,12,1.0,0,1.51918363571167,212,1.0,1 +18212,12,1.0,0,1.4811841249465942,213,0.0,1 +18213,12,1.0,0,1.5391833782196045,214,1.0,1 +18214,12,1.0,0,1.6301822662353516,215,1.0,1 +18215,12,1.0,0,1.3611856698989868,216,1.0,1 +18216,12,1.0,0,1.5461833477020264,217,1.0,1 +18217,12,1.0,0,1.4991838932037354,218,1.0,1 +18218,12,1.0,0,1.5011838674545288,219,1.0,1 +18219,12,1.0,0,1.5031838417053223,220,1.0,1 +18220,12,1.0,0,1.3361859321594238,221,1.0,1 +18221,12,1.0,0,1.5691829919815063,222,1.0,1 +18222,12,1.0,0,1.3131862878799438,223,1.0,1 +18223,12,1.0,0,1.5471832752227783,224,1.0,1 +18224,12,1.0,0,1.398185133934021,225,1.0,1 +18225,12,1.0,0,1.3121862411499023,226,1.0,1 +18226,12,1.0,0,1.4061850309371948,227,1.0,1 +18227,12,1.0,0,1.567183017730713,228,1.0,1 +18228,12,1.0,0,1.2931865453720093,229,1.0,1 +18229,12,1.0,0,1.2861865758895874,230,0.0,1 +18230,12,0.0,0,1.5911827087402344,231,0.0,1 +18231,12,0.0,0,1.6781816482543945,232,0.0,1 +18232,12,1.0,0,1.887178897857666,233,0.0,1 +18233,12,1.0,0,1.5801827907562256,234,1.0,1 +18234,12,1.0,0,1.49018394947052,235,1.0,1 +18235,12,1.0,0,1.423184871673584,236,1.0,1 +18236,12,1.0,0,2.070178508758545,237,1.0,1 +18237,12,1.0,0,1.2601865530014038,238,1.0,1 +18238,12,1.0,0,1.4091850519180298,239,1.0,1 +18239,12,1.0,0,1.379185438156128,240,1.0,1 +18240,12,1.0,0,1.651181936264038,241,1.0,1 +18241,12,1.0,0,1.32818603515625,242,1.0,1 +18242,12,1.0,0,1.3351860046386719,243,1.0,1 +18243,12,1.0,0,1.4341846704483032,244,1.0,1 +18244,12,1.0,0,1.6671817302703857,245,0.0,1 +18245,12,0.0,0,1.424184799194336,246,0.0,1 +18246,12,0.0,0,1.2471864223480225,247,0.0,1 +18247,12,0.0,0,1.7871801853179932,248,0.0,1 +18248,12,1.0,0,1.3221861124038696,249,1.0,1 +18249,12,1.0,0,1.1831862926483154,250,1.0,1 +18250,12,1.0,0,1.5031838417053223,251,1.0,1 +18251,12,1.0,0,1.6371821165084839,252,1.0,1 +18252,12,1.0,0,1.5241835117340088,253,1.0,1 +18253,12,1.0,0,1.281186580657959,254,1.0,1 +18254,12,1.0,0,1.4261847734451294,255,1.0,1 +18255,12,1.0,0,1.721181035041809,256,1.0,1 +18256,12,1.0,0,1.3461858034133911,257,0.0,1 +18257,12,1.0,0,1.8521792888641357,258,1.0,1 +18258,12,1.0,0,1.3921852111816406,259,1.0,1 +18259,12,1.0,0,1.6371821165084839,260,1.0,1 +18260,12,1.0,0,1.4781841039657593,261,1.0,1 +18261,12,1.0,0,1.2971864938735962,262,1.0,1 +18262,12,1.0,0,1.4631843566894531,263,0.0,1 +18263,12,1.0,0,1.3111863136291504,264,0.0,1 +18264,12,0.0,0,1.8501794338226318,265,0.0,1 +18265,12,1.0,0,1.217186450958252,266,1.0,1 +18266,12,0.0,0,1.281186580657959,267,0.0,1 +18267,12,1.0,0,1.8591792583465576,268,1.0,1 +18268,12,1.0,0,1.3421858549118042,269,0.0,1 +18269,12,0.0,0,1.3351860046386719,270,0.0,1 +18270,12,0.0,0,1.2431864738464355,271,0.0,1 +18271,12,1.0,0,1.5871827602386475,272,1.0,1 +18272,12,1.0,0,1.489184021949768,273,1.0,1 +18273,12,1.0,0,1.8021800518035889,274,0.0,1 +18274,12,1.0,0,2.34619140625,275,1.0,1 +18275,12,1.0,0,1.397185206413269,276,1.0,1 +18276,12,0.0,0,1.442184567451477,277,1.0,1 +18277,12,1.0,0,1.6671817302703857,278,1.0,1 +18278,12,1.0,0,1.7331808805465698,279,1.0,1 +18279,12,0.0,0,1.7741804122924805,280,0.0,1 +18280,12,1.0,0,1.4391846656799316,281,1.0,1 +18281,12,1.0,0,1.427184820175171,282,1.0,1 +18282,12,1.0,0,1.217186450958252,283,0.0,1 +18283,12,1.0,0,1.6401820182800293,284,1.0,1 +18284,12,1.0,0,2.122180938720703,285,1.0,1 +18285,12,1.0,0,1.3201861381530762,286,1.0,1 +18286,12,1.0,0,2.168182849884033,287,0.0,1 +18287,12,1.0,0,1.7681803703308105,288,1.0,1 +18288,12,0.0,0,1.6461820602416992,289,0.0,1 +18289,12,1.0,0,1.8061800003051758,290,1.0,1 +18290,12,1.0,0,1.729180932044983,291,1.0,1 +18291,12,1.0,0,1.9451781511306763,292,1.0,1 +18292,12,1.0,0,1.2381864786148071,293,1.0,1 +18293,12,1.0,0,1.3231861591339111,294,1.0,1 +18294,12,1.0,0,1.2291864156723022,295,1.0,1 +18295,12,1.0,0,1.5531831979751587,296,1.0,1 +18296,12,0.0,0,1.2611864805221558,297,0.0,1 +18297,12,1.0,0,1.464184284210205,298,1.0,1 +18298,12,1.0,0,1.2361865043640137,299,0.0,1 +18299,12,0.0,0,2.0041773319244385,300,1.0,1 +18300,12,0.0,0,1.3121862411499023,301,1.0,1 +18301,12,0.0,0,1.4361846446990967,302,0.0,1 +18302,12,1.0,0,1.2611864805221558,303,1.0,1 +18303,12,0.0,0,1.494183897972107,304,0.0,1 +18304,12,1.0,0,1.4211848974227905,305,0.0,1 +18305,12,0.0,0,1.349185824394226,306,0.0,1 +18306,12,1.0,0,2.2121849060058594,307,1.0,1 +18307,12,1.0,0,1.2981864213943481,308,1.0,1 +18308,12,1.0,0,1.2831865549087524,309,1.0,1 +18309,12,1.0,0,1.4661842584609985,310,1.0,1 +18310,12,1.0,0,1.4531844854354858,311,1.0,1 +18311,12,1.0,0,1.4401845932006836,312,1.0,1 +18312,12,1.0,0,1.3391859531402588,313,1.0,1 +18313,12,0.0,0,2.353191614151001,314,0.0,1 +18314,12,0.0,0,1.493183970451355,315,1.0,1 +18315,12,0.0,0,1.3881852626800537,316,1.0,1 +18316,12,1.0,0,1.3551857471466064,317,1.0,1 +18317,12,1.0,0,1.2691864967346191,318,1.0,1 +18318,12,1.0,0,1.7351808547973633,319,1.0,1 +18319,12,0.0,0,1.3081862926483154,320,0.0,1 +18320,12,1.0,0,1.2731865644454956,321,1.0,1 +18321,12,0.0,0,1.2661864757537842,322,0.0,1 +18322,12,1.0,0,1.5471832752227783,323,1.0,1 +18323,12,1.0,0,1.3921852111816406,324,1.0,1 +18324,12,1.0,0,1.3291860818862915,325,1.0,1 +18325,12,1.0,0,1.5171836614608765,326,0.0,1 +18326,12,0.0,0,1.3401858806610107,327,0.0,1 +18327,12,0.0,0,1.6211823225021362,328,0.0,1 +18328,12,1.0,0,1.7761802673339844,329,1.0,1 +18329,12,1.0,0,1.4101849794387817,330,1.0,1 +18330,12,0.0,0,1.3081862926483154,331,0.0,1 +18331,12,1.0,0,1.8071799278259277,332,1.0,1 +18332,12,1.0,0,1.2801865339279175,333,1.0,1 +18333,12,1.0,0,1.6261823177337646,334,1.0,1 +18334,12,1.0,0,1.327186107635498,335,1.0,1 +18335,12,1.0,0,1.537183403968811,336,1.0,1 +18336,12,1.0,0,1.3121862411499023,337,0.0,1 +18337,12,0.0,0,1.2431864738464355,338,0.0,1 +18338,12,1.0,0,1.6821815967559814,339,1.0,1 +18339,12,1.0,0,1.3331860303878784,340,1.0,1 +18340,12,1.0,0,1.70418119430542,341,1.0,1 +18341,12,1.0,0,1.4911839962005615,342,1.0,1 +18342,12,1.0,0,1.5041837692260742,343,1.0,1 +18343,12,1.0,0,1.4331847429275513,344,1.0,1 +18344,12,1.0,0,1.2931865453720093,345,0.0,1 +18345,12,0.0,0,1.3291860818862915,346,0.0,1 +18346,12,0.0,0,1.4431846141815186,347,0.0,1 +18347,12,1.0,0,2.03417706489563,348,1.0,1 +18348,12,1.0,0,1.3161861896514893,349,1.0,1 +18349,12,1.0,0,1.6001825332641602,350,1.0,1 +18350,12,1.0,0,1.4441845417022705,351,1.0,1 +18351,12,1.0,0,1.2551865577697754,352,1.0,1 +18352,12,1.0,0,1.4171849489212036,353,1.0,1 +18353,12,1.0,0,1.3661855459213257,354,1.0,1 +18354,12,1.0,0,1.241186499595642,355,1.0,1 +18355,12,1.0,0,1.3451858758926392,356,1.0,1 +18356,12,1.0,0,1.4441845417022705,357,1.0,1 +18357,12,1.0,0,1.353185772895813,358,1.0,1 +18358,12,1.0,0,1.3911852836608887,359,1.0,1 +18359,12,1.0,0,1.7111811637878418,360,1.0,1 +18360,12,1.0,0,1.6921813488006592,361,0.0,1 +18361,12,0.0,0,2.1701831817626953,362,0.0,1 +18362,12,0.0,0,1.3331860303878784,363,0.0,1 +18363,12,0.0,0,1.2091864347457886,364,0.0,1 +18364,12,1.0,0,1.3161861896514893,365,1.0,1 +18365,12,1.0,0,1.5981826782226562,366,1.0,1 +18366,12,1.0,0,1.46718430519104,367,1.0,1 +18367,12,1.0,0,1.7891801595687866,368,1.0,1 +18368,12,1.0,0,1.567183017730713,369,1.0,1 +18369,12,1.0,0,1.7651804685592651,370,1.0,1 +18370,12,1.0,0,1.4081850051879883,371,1.0,1 +18371,12,1.0,0,1.5041837692260742,372,1.0,1 +18372,12,1.0,0,1.5261834859848022,373,1.0,1 +18373,12,1.0,0,1.251186490058899,374,1.0,1 +18374,12,1.0,0,1.560183048248291,375,0.0,1 +18375,12,1.0,0,1.7381808757781982,376,1.0,1 +18376,12,1.0,0,1.3581856489181519,377,1.0,1 +18377,12,1.0,0,1.4171849489212036,378,1.0,1 +18378,12,0.0,0,1.4731842279434204,379,1.0,1 +18379,12,1.0,0,1.4821840524673462,380,1.0,1 +18380,12,1.0,0,1.743180751800537,381,1.0,1 +18381,12,0.0,0,2.1811835765838623,382,0.0,1 +18382,12,1.0,0,1.556183099746704,383,0.0,1 +18383,12,0.0,0,1.1321862936019897,384,1.0,1 +18384,12,0.0,0,1.1351861953735352,385,0.0,1 +18385,12,1.0,0,1.2971864938735962,386,0.0,1 +18386,12,1.0,0,1.8061800003051758,387,1.0,1 +18387,12,1.0,0,1.6971813440322876,388,1.0,1 +18388,12,1.0,0,1.3081862926483154,389,1.0,1 +18389,12,1.0,0,1.3681855201721191,390,1.0,1 +18390,12,1.0,0,1.567183017730713,391,0.0,1 +18391,12,0.0,0,2.090179443359375,392,0.0,1 +18392,12,0.0,0,1.7821803092956543,393,1.0,1 +18393,12,0.0,0,1.2661864757537842,394,0.0,1 +18394,12,0.0,0,1.2911865711212158,395,0.0,1 +18395,12,1.0,0,2.065178155899048,396,1.0,1 +18396,12,1.0,0,1.4291847944259644,397,1.0,1 +18397,12,1.0,0,1.3881852626800537,398,1.0,1 +18398,12,1.0,0,1.798180103302002,399,1.0,1 +18399,12,1.0,0,1.9421782493591309,400,1.0,1 +18400,12,1.0,0,1.2321864366531372,401,1.0,1 +18401,12,1.0,0,1.9691778421401978,402,1.0,1 +18402,12,1.0,0,1.6431820392608643,403,1.0,1 +18403,12,1.0,0,1.3071863651275635,404,1.0,1 +18404,12,1.0,0,1.6741816997528076,405,0.0,1 +18405,12,1.0,0,1.4471845626831055,406,1.0,1 +18406,12,1.0,0,1.4781841039657593,407,0.0,1 +18407,12,1.0,0,1.754180669784546,408,1.0,1 +18408,12,1.0,0,1.4991838932037354,409,1.0,1 +18409,12,0.0,0,1.4621843099594116,410,0.0,1 +18410,12,0.0,0,2.348191261291504,411,0.0,1 +18411,12,1.0,0,1.2591865062713623,412,1.0,1 +18412,12,1.0,0,1.241186499595642,413,1.0,1 +18413,12,1.0,0,1.3191862106323242,414,0.0,1 +18414,12,0.0,0,1.8761789798736572,415,0.0,1 +18415,12,1.0,0,2.33919095993042,416,1.0,1 +18416,12,1.0,0,1.3781853914260864,417,0.0,1 +18417,12,0.0,0,1.4581843614578247,418,0.0,1 +18418,12,0.0,0,1.838179588317871,419,0.0,1 +18419,12,0.0,0,2.1621828079223633,420,0.0,1 +18420,12,1.0,0,1.9041786193847656,421,1.0,1 +18421,12,1.0,0,1.3201861381530762,422,1.0,1 +18422,12,1.0,0,1.2221864461898804,423,1.0,1 +18423,12,1.0,0,1.282186508178711,424,1.0,1 +18424,12,1.0,0,1.3471858501434326,425,1.0,1 +18425,12,1.0,0,1.2191864252090454,426,0.0,1 +18426,12,0.0,0,2.065178155899048,427,0.0,1 +18427,12,1.0,0,1.4211848974227905,428,1.0,1 +18428,12,1.0,0,1.464184284210205,429,1.0,1 +18429,12,1.0,0,1.2631864547729492,430,1.0,1 +18430,12,1.0,0,1.3641855716705322,431,1.0,1 +18431,12,1.0,0,1.534183382987976,432,1.0,1 +18432,12,1.0,0,1.2211863994598389,433,1.0,1 +18433,12,0.0,0,1.5991826057434082,434,0.0,1 +18434,12,1.0,0,1.3521857261657715,435,1.0,1 +18435,12,1.0,0,1.2361865043640137,436,1.0,1 +18436,12,1.0,0,1.4101849794387817,437,0.0,1 +18437,12,1.0,0,1.515183687210083,438,1.0,1 +18438,12,1.0,0,1.3171862363815308,439,1.0,1 +18439,12,1.0,0,1.2771865129470825,440,1.0,1 +18440,12,1.0,0,1.272186517715454,441,1.0,1 +18441,12,1.0,0,1.5271835327148438,442,1.0,1 +18442,12,1.0,0,1.5991826057434082,443,1.0,1 +18443,12,1.0,0,1.3951852321624756,444,1.0,1 +18444,12,1.0,0,1.4771841764450073,445,1.0,1 +18445,12,0.0,0,1.6131824254989624,446,0.0,1 +18446,12,1.0,0,1.4881839752197266,447,0.0,1 +18447,12,1.0,0,1.4401845932006836,448,1.0,1 +18448,12,1.0,0,1.4481844902038574,449,1.0,1 +18449,12,1.0,0,1.284186601638794,450,1.0,1 +18450,12,1.0,0,1.3901852369308472,451,1.0,1 +18451,12,0.0,0,1.6261823177337646,452,0.0,1 +18452,12,1.0,0,1.4521844387054443,453,1.0,1 +18453,12,1.0,0,1.6311821937561035,454,1.0,1 +18454,12,1.0,0,1.3991851806640625,455,1.0,1 +18455,12,1.0,0,1.982177734375,456,1.0,1 +18456,12,1.0,0,2.1891839504241943,457,0.0,1 +18457,12,0.0,0,1.6531819105148315,458,0.0,1 +18458,12,1.0,0,1.865179181098938,459,1.0,1 +18459,12,1.0,0,1.5441832542419434,460,1.0,1 +18460,12,1.0,0,1.5321834087371826,461,1.0,1 +18461,12,1.0,0,1.3131862878799438,462,1.0,1 +18462,12,1.0,0,1.445184588432312,463,1.0,1 +18463,12,1.0,0,1.5571831464767456,464,0.0,1 +18464,12,0.0,0,1.4111850261688232,465,0.0,1 +18465,12,0.0,0,1.2291864156723022,466,0.0,1 +18466,12,0.0,0,1.4141849279403687,467,0.0,1 +18467,12,0.0,0,1.2461864948272705,468,0.0,1 +18468,12,0.0,0,1.894178867340088,469,1.0,1 +18469,12,0.0,0,1.5651830434799194,470,1.0,1 +18470,12,0.0,0,1.538183331489563,471,0.0,1 +18471,12,1.0,0,1.9251784086227417,472,1.0,1 +18472,12,1.0,0,1.5221835374832153,473,1.0,1 +18473,12,1.0,0,1.2831865549087524,474,1.0,1 +18474,12,0.0,0,1.7321808338165283,475,1.0,1 +18475,12,1.0,0,1.62918221950531,476,0.0,1 +18476,12,0.0,0,1.7801802158355713,477,0.0,1 +18477,12,0.0,0,2.302189350128174,478,0.0,1 +18478,12,0.0,0,1.1851863861083984,479,0.0,1 +18479,12,1.0,0,1.8971787691116333,480,0.0,1 +18480,12,1.0,0,2.0051774978637695,481,1.0,1 +18481,12,1.0,0,1.3151862621307373,482,1.0,1 +18482,12,1.0,0,1.2861865758895874,483,1.0,1 +18483,12,1.0,0,1.306186318397522,484,1.0,1 +18484,12,0.0,0,1.5061837434768677,485,0.0,1 +18485,12,1.0,0,1.754180669784546,486,1.0,1 +18486,12,1.0,0,1.8311796188354492,487,1.0,1 +18487,12,1.0,0,1.6051825284957886,488,0.0,1 +18488,12,0.0,0,1.1491862535476685,489,0.0,1 +18489,12,0.0,0,1.9561779499053955,490,0.0,1 +18490,12,1.0,0,1.581182837486267,491,1.0,1 +18491,12,1.0,0,1.6681816577911377,492,0.0,1 +18492,12,1.0,0,1.6341822147369385,493,0.0,1 +18493,12,0.0,0,1.7871801853179932,494,0.0,1 +18494,12,0.0,0,2.087179183959961,495,0.0,1 +18495,12,1.0,0,1.9001786708831787,496,0.0,1 +18496,12,1.0,0,1.5291835069656372,497,1.0,1 +18497,12,1.0,0,1.284186601638794,498,0.0,1 +18498,12,0.0,0,2.364192008972168,499,0.0,1 +18499,12,0.0,0,1.8631792068481445,500,0.0,1 +18500,12,1.0,1,1.9871776103973389,1,1.0,1 +18501,12,1.0,1,1.6631817817687988,2,1.0,1 +18502,12,1.0,1,1.6371821165084839,3,1.0,1 +18503,12,1.0,1,1.581182837486267,4,1.0,1 +18504,12,1.0,1,1.567183017730713,5,1.0,1 +18505,12,0.0,1,1.3771854639053345,6,0.0,1 +18506,12,1.0,1,1.3961851596832275,7,1.0,1 +18507,12,1.0,1,1.494183897972107,8,0.0,1 +18508,12,1.0,1,2.1841835975646973,9,1.0,1 +18509,12,1.0,1,1.5431833267211914,10,1.0,1 +18510,12,1.0,1,1.7081811428070068,11,1.0,1 +18511,12,1.0,1,1.3001863956451416,12,0.0,1 +18512,12,0.0,1,1.5421833992004395,13,0.0,1 +18513,12,1.0,1,1.751180648803711,14,1.0,1 +18514,12,1.0,1,1.8951787948608398,15,0.0,1 +18515,12,0.0,1,2.337190866470337,16,0.0,1 +18516,12,1.0,1,2.084178924560547,17,1.0,1 +18517,12,1.0,1,1.6351821422576904,18,1.0,1 +18518,12,1.0,1,1.5991826057434082,19,1.0,1 +18519,12,1.0,1,1.3291860818862915,20,1.0,1 +18520,12,1.0,1,1.5081837177276611,21,1.0,1 +18521,12,1.0,1,1.6281821727752686,22,1.0,1 +18522,12,1.0,1,1.3511857986450195,23,1.0,1 +18523,12,1.0,1,1.3581856489181519,24,1.0,1 +18524,12,1.0,1,1.5531831979751587,25,1.0,1 +18525,12,1.0,1,1.4181848764419556,26,1.0,1 +18526,12,1.0,1,1.3251861333847046,27,1.0,1 +18527,12,1.0,1,1.3921852111816406,28,1.0,1 +18528,12,1.0,1,1.3521857261657715,29,1.0,1 +18529,12,1.0,1,1.4691842794418335,30,1.0,1 +18530,12,1.0,1,1.3141862154006958,31,1.0,1 +18531,12,1.0,1,1.6191823482513428,32,0.0,1 +18532,12,0.0,1,2.0041773319244385,33,1.0,1 +18533,12,0.0,1,1.4181848764419556,34,0.0,1 +18534,12,0.0,1,1.3801853656768799,35,0.0,1 +18535,12,1.0,1,1.441184639930725,36,0.0,1 +18536,12,0.0,1,2.353191614151001,37,0.0,1 +18537,12,0.0,1,1.4181848764419556,38,0.0,1 +18538,12,0.0,1,2.141181707382202,39,1.0,1 +18539,12,0.0,1,1.6321821212768555,40,0.0,1 +18540,12,1.0,1,2.071178436279297,41,1.0,1 +18541,12,1.0,1,1.3701854944229126,42,1.0,1 +18542,12,1.0,1,1.5021837949752808,43,1.0,1 +18543,12,1.0,1,1.7191810607910156,44,0.0,1 +18544,12,1.0,1,2.134181499481201,45,1.0,1 +18545,12,1.0,1,1.1621862649917603,46,1.0,1 +18546,12,1.0,1,1.8061800003051758,47,1.0,1 +18547,12,1.0,1,1.2061864137649536,48,1.0,1 +18548,12,1.0,1,1.486184000968933,49,0.0,1 +18549,12,0.0,1,1.566183090209961,50,0.0,1 +18550,12,0.0,1,1.6311821937561035,51,0.0,1 +18551,12,0.0,1,1.836179494857788,52,0.0,1 +18552,12,1.0,1,1.3961851596832275,53,1.0,1 +18553,12,0.0,1,1.468184232711792,54,1.0,1 +18554,12,1.0,1,1.2401864528656006,55,0.0,1 +18555,12,0.0,1,1.6301822662353516,56,0.0,1 +18556,12,0.0,1,1.6891814470291138,57,0.0,1 +18557,12,0.0,1,1.5981826782226562,58,1.0,1 +18558,12,0.0,1,1.3511857986450195,59,0.0,1 +18559,12,0.0,1,2.082179069519043,60,0.0,1 +18560,12,0.0,1,1.1381862163543701,61,0.0,1 +18561,12,1.0,1,1.8721790313720703,62,1.0,1 +18562,12,1.0,1,1.9461781978607178,63,0.0,1 +18563,12,0.0,1,1.5131837129592896,64,0.0,1 +18564,12,0.0,1,1.5171836614608765,65,1.0,1 +18565,12,0.0,1,1.5951826572418213,66,0.0,1 +18566,12,1.0,1,1.372185468673706,67,1.0,1 +18567,12,1.0,1,1.3551857471466064,68,1.0,1 +18568,12,1.0,1,1.4821840524673462,69,1.0,1 +18569,12,1.0,1,1.4951839447021484,70,1.0,1 +18570,12,1.0,1,1.5001838207244873,71,1.0,1 +18571,12,1.0,1,1.4961838722229004,72,1.0,1 +18572,12,1.0,1,1.449184536933899,73,0.0,1 +18573,12,1.0,1,1.585182785987854,74,1.0,1 +18574,12,1.0,1,1.2981864213943481,75,1.0,1 +18575,12,1.0,1,1.350185751914978,76,1.0,1 +18576,12,1.0,1,1.2961864471435547,77,1.0,1 +18577,12,1.0,1,1.4001851081848145,78,1.0,1 +18578,12,1.0,1,1.3031864166259766,79,0.0,1 +18579,12,1.0,1,1.4751842021942139,80,0.0,1 +18580,12,1.0,1,1.936178207397461,81,1.0,1 +18581,12,1.0,1,1.441184639930725,82,1.0,1 +18582,12,0.0,1,1.5901827812194824,83,0.0,1 +18583,12,1.0,1,1.5921826362609863,84,1.0,1 +18584,12,1.0,1,1.2861865758895874,85,0.0,1 +18585,12,1.0,1,1.7581806182861328,86,1.0,1 +18586,12,1.0,1,1.4071850776672363,87,1.0,1 +18587,12,0.0,1,1.8111798763275146,88,0.0,1 +18588,12,1.0,1,1.464184284210205,89,1.0,1 +18589,12,1.0,1,1.4611843824386597,90,0.0,1 +18590,12,0.0,1,2.0141773223876953,91,0.0,1 +18591,12,1.0,1,1.6571818590164185,92,1.0,1 +18592,12,1.0,1,1.397185206413269,93,0.0,1 +18593,12,1.0,1,1.6851814985275269,94,1.0,1 +18594,12,0.0,1,1.5911827087402344,95,0.0,1 +18595,12,0.0,1,1.5531831979751587,96,0.0,1 +18596,12,1.0,1,1.5721828937530518,97,0.0,1 +18597,12,0.0,1,1.5291835069656372,98,0.0,1 +18598,12,0.0,1,1.468184232711792,99,0.0,1 +18599,12,0.0,1,2.033176898956299,100,0.0,1 +18600,12,0.0,1,1.3231861591339111,101,0.0,1 +18601,12,1.0,1,1.248186469078064,102,1.0,1 +18602,12,0.0,1,1.5981826782226562,103,0.0,1 +18603,12,1.0,1,1.4761841297149658,104,1.0,1 +18604,12,0.0,1,1.2591865062713623,105,0.0,1 +18605,12,1.0,1,1.5321834087371826,106,1.0,1 +18606,12,1.0,1,1.3691855669021606,107,0.0,1 +18607,12,1.0,1,1.8311796188354492,108,0.0,1 +18608,12,1.0,1,1.821179747581482,109,1.0,1 +18609,12,1.0,1,1.3161861896514893,110,1.0,1 +18610,12,1.0,1,1.3581856489181519,111,0.0,1 +18611,12,1.0,1,1.3651856184005737,112,0.0,1 +18612,12,1.0,1,1.8491793870925903,113,1.0,1 +18613,12,0.0,1,1.2321864366531372,114,0.0,1 +18614,12,1.0,1,1.4741841554641724,115,1.0,1 +18615,12,1.0,1,1.349185824394226,116,1.0,1 +18616,12,0.0,1,1.5901827812194824,117,0.0,1 +18617,12,1.0,1,1.306186318397522,118,1.0,1 +18618,12,1.0,1,1.3571857213974,119,1.0,1 +18619,12,0.0,1,1.14418625831604,120,1.0,1 +18620,12,0.0,1,1.5271835327148438,121,0.0,1 +18621,12,1.0,1,1.4751842021942139,122,0.0,1 +18622,12,1.0,1,1.9911775588989258,123,1.0,1 +18623,12,1.0,1,1.2691864967346191,124,1.0,1 +18624,12,1.0,1,1.3661855459213257,125,0.0,1 +18625,12,0.0,1,1.2241864204406738,126,1.0,1 +18626,12,0.0,1,1.2231864929199219,127,1.0,1 +18627,12,0.0,1,1.4731842279434204,128,1.0,1 +18628,12,0.0,1,1.721181035041809,129,0.0,1 +18629,12,0.0,1,1.512183666229248,130,0.0,1 +18630,12,1.0,1,1.7221810817718506,131,0.0,1 +18631,12,1.0,1,2.333190679550171,132,1.0,1 +18632,12,1.0,1,1.4591844081878662,133,1.0,1 +18633,12,1.0,1,1.6851814985275269,134,0.0,1 +18634,12,1.0,1,2.2041845321655273,135,1.0,1 +18635,12,1.0,1,1.3441858291625977,136,1.0,1 +18636,12,1.0,1,1.3811854124069214,137,1.0,1 +18637,12,1.0,1,1.2801865339279175,138,1.0,1 +18638,12,1.0,1,1.5741829872131348,139,1.0,1 +18639,12,1.0,1,1.3191862106323242,140,0.0,1 +18640,12,1.0,1,1.8141798973083496,141,1.0,1 +18641,12,1.0,1,1.5081837177276611,142,1.0,1 +18642,12,1.0,1,1.4101849794387817,143,1.0,1 +18643,12,1.0,1,2.2431864738464355,144,0.0,1 +18644,12,1.0,1,1.909178614616394,145,0.0,1 +18645,12,1.0,1,1.9501781463623047,146,0.0,1 +18646,12,1.0,1,1.6491819620132446,147,1.0,1 +18647,12,1.0,1,1.2291864156723022,148,0.0,1 +18648,12,0.0,1,1.2981864213943481,149,0.0,1 +18649,12,0.0,1,1.3681855201721191,150,0.0,1 +18650,12,0.0,1,2.424194812774658,151,0.0,1 +18651,12,0.0,1,1.2521865367889404,152,0.0,1 +18652,12,1.0,1,1.5101836919784546,153,1.0,1 +18653,12,1.0,1,1.3691855669021606,154,1.0,1 +18654,12,0.0,1,1.3581856489181519,155,0.0,1 +18655,12,1.0,1,1.5691829919815063,156,1.0,1 +18656,12,1.0,1,1.6911814212799072,157,1.0,1 +18657,12,0.0,1,1.3931852579116821,158,0.0,1 +18658,12,1.0,1,1.6381821632385254,159,1.0,1 +18659,12,1.0,1,1.3481857776641846,160,0.0,1 +18660,12,1.0,1,1.9171785116195679,161,0.0,1 +18661,12,1.0,1,1.5911827087402344,162,1.0,1 +18662,12,1.0,1,1.7971800565719604,163,1.0,1 +18663,12,1.0,1,1.5881826877593994,164,1.0,1 +18664,12,1.0,1,1.2561864852905273,165,1.0,1 +18665,12,1.0,1,1.4661842584609985,166,1.0,1 +18666,12,1.0,1,1.3821853399276733,167,0.0,1 +18667,12,0.0,1,1.6191823482513428,168,1.0,1 +18668,12,0.0,1,1.4111850261688232,169,1.0,1 +18669,12,0.0,1,1.534183382987976,170,0.0,1 +18670,12,1.0,1,1.3641855716705322,171,1.0,1 +18671,12,1.0,1,1.6371821165084839,172,1.0,1 +18672,12,1.0,1,1.5551831722259521,173,1.0,1 +18673,12,1.0,1,1.3331860303878784,174,1.0,1 +18674,12,1.0,1,2.1931841373443604,175,1.0,1 +18675,12,1.0,1,1.4691842794418335,176,0.0,1 +18676,12,0.0,1,1.3601856231689453,177,0.0,1 +18677,12,0.0,1,1.3251861333847046,178,0.0,1 +18678,12,0.0,1,1.5971826314926147,179,1.0,1 +18679,12,0.0,1,1.4441845417022705,180,0.0,1 +18680,12,0.0,1,1.9241783618927002,181,0.0,1 +18681,12,0.0,1,1.379185438156128,182,1.0,1 +18682,12,0.0,1,1.3931852579116821,183,1.0,1 +18683,12,0.0,1,1.5731829404830933,184,1.0,1 +18684,12,1.0,1,1.6791815757751465,185,0.0,1 +18685,12,0.0,1,1.5071837902069092,186,0.0,1 +18686,12,0.0,1,1.4261847734451294,187,1.0,1 +18687,12,0.0,1,1.2961864471435547,188,0.0,1 +18688,12,0.0,1,1.6841814517974854,189,0.0,1 +18689,12,0.0,1,1.2701865434646606,190,0.0,1 +18690,12,0.0,1,2.0101773738861084,191,1.0,1 +18691,12,0.0,1,1.3851853609085083,192,1.0,1 +18692,12,0.0,1,1.3681855201721191,193,0.0,1 +18693,12,1.0,1,1.5931826829910278,194,1.0,1 +18694,12,0.0,1,1.3921852111816406,195,0.0,1 +18695,12,1.0,1,1.3411859273910522,196,1.0,1 +18696,12,1.0,1,1.332185983657837,197,0.0,1 +18697,12,0.0,1,1.5141836404800415,198,1.0,1 +18698,12,0.0,1,1.3601856231689453,199,0.0,1 +18699,12,0.0,1,1.541183352470398,200,1.0,1 +18700,12,0.0,1,1.8751790523529053,201,0.0,1 +18701,12,1.0,1,1.4581843614578247,202,1.0,1 +18702,12,1.0,1,1.95317804813385,203,1.0,1 +18703,12,1.0,1,1.4311847686767578,204,1.0,1 +18704,12,0.0,1,1.913178563117981,205,0.0,1 +18705,12,1.0,1,1.3191862106323242,206,1.0,1 +18706,12,1.0,1,1.4071850776672363,207,1.0,1 +18707,12,1.0,1,1.2861865758895874,208,1.0,1 +18708,12,0.0,1,2.116180419921875,209,1.0,1 +18709,12,1.0,1,1.4101849794387817,210,1.0,1 +18710,12,0.0,1,1.2211863994598389,211,0.0,1 +18711,12,1.0,1,1.5041837692260742,212,1.0,1 +18712,12,1.0,1,1.3891853094100952,213,1.0,1 +18713,12,1.0,1,1.3871853351593018,214,1.0,1 +18714,12,1.0,1,1.2091864347457886,215,0.0,1 +18715,12,1.0,1,1.2891865968704224,216,1.0,1 +18716,12,1.0,1,1.423184871673584,217,1.0,1 +18717,12,1.0,1,1.493183970451355,218,1.0,1 +18718,12,0.0,1,1.494183897972107,219,1.0,1 +18719,12,0.0,1,1.5201835632324219,220,0.0,1 +18720,12,1.0,1,1.5351834297180176,221,1.0,1 +18721,12,1.0,1,1.4841840267181396,222,1.0,1 +18722,12,1.0,1,1.7071812152862549,223,1.0,1 +18723,12,1.0,1,1.611182451248169,224,1.0,1 +18724,12,1.0,1,1.4761841297149658,225,1.0,1 +18725,12,1.0,1,1.5021837949752808,226,1.0,1 +18726,12,1.0,1,1.1981863975524902,227,1.0,1 +18727,12,1.0,1,1.177186369895935,228,1.0,1 +18728,12,0.0,1,1.2801865339279175,229,0.0,1 +18729,12,1.0,1,1.354185700416565,230,1.0,1 +18730,12,1.0,1,1.5051838159561157,231,0.0,1 +18731,12,0.0,1,1.5351834297180176,232,1.0,1 +18732,12,0.0,1,1.70418119430542,233,0.0,1 +18733,12,1.0,1,1.6341822147369385,234,0.0,1 +18734,12,0.0,1,1.2701865434646606,235,0.0,1 +18735,12,1.0,1,2.108180046081543,236,1.0,1 +18736,12,1.0,1,1.5141836404800415,237,1.0,1 +18737,12,1.0,1,1.2761865854263306,238,1.0,1 +18738,12,1.0,1,1.5171836614608765,239,0.0,1 +18739,12,1.0,1,1.3901852369308472,240,0.0,1 +18740,12,1.0,1,1.5571831464767456,241,1.0,1 +18741,12,1.0,1,1.8511793613433838,242,1.0,1 +18742,12,1.0,1,1.1941863298416138,243,1.0,1 +18743,12,1.0,1,1.5701830387115479,244,1.0,1 +18744,12,1.0,1,1.5531831979751587,245,0.0,1 +18745,12,0.0,1,1.6241822242736816,246,0.0,1 +18746,12,0.0,1,1.2061864137649536,247,0.0,1 +18747,12,0.0,1,1.3221861124038696,248,0.0,1 +18748,12,0.0,1,1.6251822710037231,249,1.0,1 +18749,12,0.0,1,1.3611856698989868,250,0.0,1 +18750,12,1.0,1,1.9291783571243286,251,0.0,1 +18751,12,0.0,1,1.798180103302002,252,0.0,1 +18752,12,1.0,1,1.32818603515625,253,1.0,1 +18753,12,1.0,1,1.9181785583496094,254,1.0,1 +18754,12,1.0,1,1.4261847734451294,255,1.0,1 +18755,12,1.0,1,1.398185133934021,256,1.0,1 +18756,12,1.0,1,1.427184820175171,257,0.0,1 +18757,12,0.0,1,1.7281808853149414,258,1.0,1 +18758,12,0.0,1,1.4951839447021484,259,0.0,1 +18759,12,0.0,1,1.6571818590164185,260,1.0,1 +18760,12,0.0,1,1.2741864919662476,261,0.0,1 +18761,12,1.0,1,2.099179744720459,262,1.0,1 +18762,12,1.0,1,1.4821840524673462,263,1.0,1 +18763,12,1.0,1,1.302186369895935,264,1.0,1 +18764,12,1.0,1,1.3121862411499023,265,0.0,1 +18765,12,1.0,1,2.2681875228881836,266,0.0,1 +18766,12,1.0,1,2.2391862869262695,267,0.0,1 +18767,12,0.0,1,1.8591792583465576,268,0.0,1 +18768,12,1.0,1,1.9081785678863525,269,0.0,1 +18769,12,1.0,1,1.5451833009719849,270,1.0,1 +18770,12,1.0,1,1.984177589416504,271,0.0,1 +18771,12,1.0,1,1.3521857261657715,272,0.0,1 +18772,12,1.0,1,1.6671817302703857,273,1.0,1 +18773,12,1.0,1,1.8281795978546143,274,0.0,1 +18774,12,0.0,1,1.9431781768798828,275,0.0,1 +18775,12,1.0,1,2.108180046081543,276,1.0,1 +18776,12,1.0,1,1.220186471939087,277,0.0,1 +18777,12,0.0,1,1.6461820602416992,278,0.0,1 +18778,12,0.0,1,1.9261784553527832,279,0.0,1 +18779,12,0.0,1,1.884178876876831,280,0.0,1 +18780,12,1.0,1,1.7811802625656128,281,1.0,1 +18781,12,1.0,1,1.3991851806640625,282,1.0,1 +18782,12,1.0,1,1.2581864595413208,283,1.0,1 +18783,12,1.0,1,1.2551865577697754,284,1.0,1 +18784,12,1.0,1,1.1791863441467285,285,1.0,1 +18785,12,1.0,1,1.3611856698989868,286,0.0,1 +18786,12,0.0,1,1.4121849536895752,287,0.0,1 +18787,12,1.0,1,1.6271822452545166,288,1.0,1 +18788,12,1.0,1,1.2701865434646606,289,0.0,1 +18789,12,0.0,1,1.464184284210205,290,1.0,1 +18790,12,0.0,1,1.604182481765747,291,0.0,1 +18791,12,0.0,1,1.3101862668991089,292,0.0,1 +18792,12,0.0,1,1.279186487197876,293,0.0,1 +18793,12,1.0,1,1.5731829404830933,294,1.0,1 +18794,12,1.0,1,1.5251835584640503,295,0.0,1 +18795,12,1.0,1,1.8321795463562012,296,0.0,1 +18796,12,0.0,1,1.2991864681243896,297,1.0,1 +18797,12,0.0,1,1.486184000968933,298,0.0,1 +18798,12,0.0,1,1.397185206413269,299,0.0,1 +18799,12,0.0,1,1.32818603515625,300,0.0,1 +18800,12,0.0,1,1.3071863651275635,301,0.0,1 +18801,12,0.0,1,1.5571831464767456,302,0.0,1 +18802,12,1.0,1,1.7401807308197021,303,1.0,1 +18803,12,1.0,1,1.3681855201721191,304,0.0,1 +18804,12,0.0,1,2.160182476043701,305,1.0,1 +18805,12,0.0,1,1.1261862516403198,306,0.0,1 +18806,12,1.0,1,1.6271822452545166,307,1.0,1 +18807,12,1.0,1,1.5901827812194824,308,1.0,1 +18808,12,1.0,1,1.4571844339370728,309,1.0,1 +18809,12,1.0,1,1.51918363571167,310,0.0,1 +18810,12,0.0,1,1.4371846914291382,311,0.0,1 +18811,12,1.0,1,2.0441770553588867,312,0.0,1 +18812,12,0.0,1,1.4051851034164429,313,0.0,1 +18813,12,0.0,1,1.324186086654663,314,1.0,1 +18814,12,0.0,1,1.331186056137085,315,1.0,1 +18815,12,0.0,1,1.3331860303878784,316,0.0,1 +18816,12,0.0,1,1.6951813697814941,317,0.0,1 +18817,12,0.0,1,1.980177640914917,318,0.0,1 +18818,12,1.0,1,1.4251848459243774,319,1.0,1 +18819,12,1.0,1,1.5131837129592896,320,1.0,1 +18820,12,1.0,1,1.512183666229248,321,0.0,1 +18821,12,1.0,1,1.4001851081848145,322,1.0,1 +18822,12,1.0,1,2.1911840438842773,323,1.0,1 +18823,12,1.0,1,1.559183120727539,324,1.0,1 +18824,12,1.0,1,1.3231861591339111,325,1.0,1 +18825,12,1.0,1,1.49018394947052,326,0.0,1 +18826,12,0.0,1,1.984177589416504,327,0.0,1 +18827,12,0.0,1,1.4001851081848145,328,0.0,1 +18828,12,0.0,1,1.6181824207305908,329,1.0,1 +18829,12,0.0,1,1.1741863489151,330,0.0,1 +18830,12,1.0,1,1.9941775798797607,331,0.0,1 +18831,12,0.0,1,1.220186471939087,332,1.0,1 +18832,12,0.0,1,1.3231861591339111,333,0.0,1 +18833,12,0.0,1,1.2371864318847656,334,0.0,1 +18834,12,0.0,1,1.5261834859848022,335,0.0,1 +18835,12,0.0,1,1.9451781511306763,336,0.0,1 +18836,12,1.0,1,1.6221823692321777,337,1.0,1 +18837,12,1.0,1,2.2641873359680176,338,0.0,1 +18838,12,1.0,1,1.6841814517974854,339,0.0,1 +18839,12,0.0,1,2.0151772499084473,340,0.0,1 +18840,12,0.0,1,1.9031786918640137,341,0.0,1 +18841,12,0.0,1,1.844179391860962,342,1.0,1 +18842,12,0.0,1,1.251186490058899,343,0.0,1 +18843,12,1.0,1,1.8181798458099365,344,1.0,1 +18844,12,1.0,1,1.4731842279434204,345,1.0,1 +18845,12,1.0,1,1.3901852369308472,346,1.0,1 +18846,12,1.0,1,1.8261797428131104,347,0.0,1 +18847,12,0.0,1,1.350185751914978,348,1.0,1 +18848,12,0.0,1,1.4811841249465942,349,0.0,1 +18849,12,0.0,1,1.5931826829910278,350,1.0,1 +18850,12,0.0,1,1.746180772781372,351,0.0,1 +18851,12,0.0,1,1.4351847171783447,352,0.0,1 +18852,12,1.0,1,1.4141849279403687,353,1.0,1 +18853,12,1.0,1,1.6051825284957886,354,1.0,1 +18854,12,1.0,1,1.3771854639053345,355,0.0,1 +18855,12,1.0,1,1.4951839447021484,356,1.0,1 +18856,12,1.0,1,1.3401858806610107,357,1.0,1 +18857,12,1.0,1,1.3521857261657715,358,1.0,1 +18858,12,1.0,1,1.3191862106323242,359,1.0,1 +18859,12,1.0,1,1.6791815757751465,360,1.0,1 +18860,12,1.0,1,1.5141836404800415,361,1.0,1 +18861,12,1.0,1,1.6181824207305908,362,0.0,1 +18862,12,0.0,1,1.9941775798797607,363,0.0,1 +18863,12,0.0,1,2.1891839504241943,364,0.0,1 +18864,12,1.0,1,1.6801815032958984,365,1.0,1 +18865,12,1.0,1,1.397185206413269,366,1.0,1 +18866,12,1.0,1,1.5011838674545288,367,1.0,1 +18867,12,1.0,1,1.6761815547943115,368,1.0,1 +18868,12,1.0,1,1.4911839962005615,369,1.0,1 +18869,12,1.0,1,1.5511832237243652,370,1.0,1 +18870,12,1.0,1,1.2271864414215088,371,0.0,1 +18871,12,1.0,1,1.9061787128448486,372,0.0,1 +18872,12,1.0,1,1.8301796913146973,373,1.0,1 +18873,12,1.0,1,1.30518639087677,374,1.0,1 +18874,12,1.0,1,1.7201809883117676,375,1.0,1 +18875,12,0.0,1,1.3601856231689453,376,1.0,1 +18876,12,0.0,1,1.7631804943084717,377,1.0,1 +18877,12,0.0,1,1.402185082435608,378,0.0,1 +18878,12,1.0,1,1.3781853914260864,379,1.0,1 +18879,12,1.0,1,1.7071812152862549,380,1.0,1 +18880,12,1.0,1,1.242186427116394,381,1.0,1 +18881,12,1.0,1,1.424184799194336,382,1.0,1 +18882,12,1.0,1,1.471184253692627,383,1.0,1 +18883,12,1.0,1,1.2381864786148071,384,1.0,1 +18884,12,1.0,1,1.3181861639022827,385,0.0,1 +18885,12,1.0,1,1.747180700302124,386,1.0,1 +18886,12,1.0,1,1.2261863946914673,387,1.0,1 +18887,12,1.0,1,1.215186357498169,388,1.0,1 +18888,12,1.0,1,1.3201861381530762,389,1.0,1 +18889,12,1.0,1,1.3401858806610107,390,1.0,1 +18890,12,1.0,1,1.3731855154037476,391,1.0,1 +18891,12,1.0,1,1.2251864671707153,392,1.0,1 +18892,12,1.0,1,1.4291847944259644,393,1.0,1 +18893,12,1.0,1,1.217186450958252,394,0.0,1 +18894,12,0.0,1,1.30518639087677,395,1.0,1 +18895,12,0.0,1,1.423184871673584,396,1.0,1 +18896,12,0.0,1,1.4561843872070312,397,0.0,1 +18897,12,0.0,1,1.651181936264038,398,0.0,1 +18898,12,1.0,1,1.416184902191162,399,0.0,1 +18899,12,0.0,1,1.218186378479004,400,0.0,1 +18900,12,0.0,1,1.9961774349212646,401,0.0,1 +18901,12,1.0,1,1.5521831512451172,402,0.0,1 +18902,12,0.0,1,1.6831815242767334,403,0.0,1 +18903,12,1.0,1,1.957177996635437,404,0.0,1 +18904,12,0.0,1,1.7881801128387451,405,1.0,1 +18905,12,0.0,1,1.6641817092895508,406,1.0,1 +18906,12,0.0,1,1.184186339378357,407,0.0,1 +18907,12,0.0,1,2.1781835556030273,408,1.0,1 +18908,12,0.0,1,1.3201861381530762,409,1.0,1 +18909,12,0.0,1,1.7191810607910156,410,0.0,1 +18910,12,0.0,1,1.3201861381530762,411,0.0,1 +18911,12,1.0,1,1.4391846656799316,412,1.0,1 +18912,12,1.0,1,1.3411859273910522,413,1.0,1 +18913,12,1.0,1,1.402185082435608,414,1.0,1 +18914,12,1.0,1,1.4041850566864014,415,1.0,1 +18915,12,1.0,1,1.5651830434799194,416,0.0,1 +18916,12,1.0,1,1.8801789283752441,417,0.0,1 +18917,12,1.0,1,1.398185133934021,418,1.0,1 +18918,12,1.0,1,1.4541844129562378,419,1.0,1 +18919,12,1.0,1,1.6021826267242432,420,1.0,1 +18920,12,1.0,1,2.057177782058716,421,1.0,1 +18921,12,1.0,1,1.5061837434768677,422,1.0,1 +18922,12,1.0,1,1.5831828117370605,423,0.0,1 +18923,12,0.0,1,1.9421782493591309,424,0.0,1 +18924,12,0.0,1,1.5171836614608765,425,1.0,1 +18925,12,0.0,1,1.2251864671707153,426,0.0,1 +18926,12,1.0,1,1.6971813440322876,427,1.0,1 +18927,12,1.0,1,1.5211836099624634,428,0.0,1 +18928,12,1.0,1,1.2681865692138672,429,0.0,1 +18929,12,0.0,1,1.2931865453720093,430,0.0,1 +18930,12,1.0,1,1.497183918952942,431,0.0,1 +18931,12,0.0,1,1.3601856231689453,432,1.0,1 +18932,12,0.0,1,1.5991826057434082,433,0.0,1 +18933,12,1.0,1,1.7931801080703735,434,0.0,1 +18934,12,0.0,1,1.7551805973052979,435,1.0,1 +18935,12,0.0,1,1.4041850566864014,436,1.0,1 +18936,12,0.0,1,1.2591865062713623,437,0.0,1 +18937,12,0.0,1,1.3931852579116821,438,1.0,1 +18938,12,0.0,1,1.394185185432434,439,0.0,1 +18939,12,0.0,1,1.4121849536895752,440,0.0,1 +18940,12,0.0,1,1.402185082435608,441,0.0,1 +18941,12,0.0,1,1.9191784858703613,442,0.0,1 +18942,12,0.0,1,1.4481844902038574,443,0.0,1 +18943,12,1.0,1,1.2601865530014038,444,0.0,1 +18944,12,0.0,1,1.5471832752227783,445,0.0,1 +18945,12,0.0,1,1.6751816272735596,446,0.0,1 +18946,12,0.0,1,1.5041837692260742,447,0.0,1 +18947,12,0.0,1,1.248186469078064,448,0.0,1 +18948,12,1.0,1,2.2551870346069336,449,0.0,1 +18949,12,0.0,1,1.4401845932006836,450,0.0,1 +18950,12,1.0,1,1.7751803398132324,451,1.0,1 +18951,12,1.0,1,1.3201861381530762,452,0.0,1 +18952,12,1.0,1,1.7091811895370483,453,1.0,1 +18953,12,1.0,1,1.9881775379180908,454,1.0,1 +18954,12,1.0,1,1.7331808805465698,455,0.0,1 +18955,12,1.0,1,1.6941814422607422,456,0.0,1 +18956,12,0.0,1,1.5421833992004395,457,0.0,1 +18957,12,1.0,1,1.5311834812164307,458,0.0,1 +18958,12,1.0,1,1.6211823225021362,459,0.0,1 +18959,12,0.0,1,1.3921852111816406,460,0.0,1 +18960,12,0.0,1,1.8331795930862427,461,0.0,1 +18961,12,0.0,1,1.8241796493530273,462,0.0,1 +18962,12,0.0,1,1.2461864948272705,463,0.0,1 +18963,12,0.0,1,2.2661876678466797,464,0.0,1 +18964,12,1.0,1,2.121180772781372,465,1.0,1 +18965,12,1.0,1,1.4731842279434204,466,1.0,1 +18966,12,1.0,1,1.769180417060852,467,1.0,1 +18967,12,1.0,1,1.7391808032989502,468,0.0,1 +18968,12,1.0,1,1.6421821117401123,469,0.0,1 +18969,12,1.0,1,1.562183141708374,470,0.0,1 +18970,12,0.0,1,1.5691829919815063,471,0.0,1 +18971,12,1.0,1,1.2671865224838257,472,1.0,1 +18972,12,1.0,1,1.3891853094100952,473,1.0,1 +18973,12,1.0,1,1.6891814470291138,474,1.0,1 +18974,12,1.0,1,1.9201784133911133,475,1.0,1 +18975,12,1.0,1,1.419184923171997,476,1.0,1 +18976,12,1.0,1,1.2241864204406738,477,0.0,1 +18977,12,0.0,1,1.8571792840957642,478,0.0,1 +18978,12,1.0,1,1.984177589416504,479,1.0,1 +18979,12,1.0,1,1.5301834344863892,480,1.0,1 +18980,12,1.0,1,1.8701791763305664,481,1.0,1 +18981,12,1.0,1,1.6601817607879639,482,0.0,1 +18982,12,0.0,1,1.7331808805465698,483,1.0,1 +18983,12,0.0,1,1.5481832027435303,484,0.0,1 +18984,12,1.0,1,1.541183352470398,485,1.0,1 +18985,12,1.0,1,1.8671791553497314,486,1.0,1 +18986,12,1.0,1,1.3451858758926392,487,1.0,1 +18987,12,1.0,1,1.4661842584609985,488,0.0,1 +18988,12,0.0,1,1.9271783828735352,489,0.0,1 +18989,12,0.0,1,1.7191810607910156,490,0.0,1 +18990,12,1.0,1,1.4851840734481812,491,1.0,1 +18991,12,0.0,1,1.5231835842132568,492,1.0,1 +18992,12,1.0,1,1.5531831979751587,493,1.0,1 +18993,12,0.0,1,1.2351864576339722,494,0.0,1 +18994,12,0.0,1,1.5361833572387695,495,0.0,1 +18995,12,1.0,1,1.3001863956451416,496,0.0,1 +18996,12,1.0,1,1.4221848249435425,497,1.0,1 +18997,12,1.0,1,1.7391808032989502,498,1.0,1 +18998,12,1.0,1,1.656181812286377,499,1.0,1 +18999,12,0.0,1,1.441184639930725,500,0.0,1 +19000,12,1.0,2,1.6381821632385254,1,0.0,1 +19001,12,0.0,2,1.486184000968933,2,1.0,1 +19002,12,0.0,2,1.2701865434646606,3,0.0,1 +19003,12,1.0,2,1.9561779499053955,4,1.0,1 +19004,12,1.0,2,1.2161864042282104,5,0.0,1 +19005,12,1.0,2,1.8141798973083496,6,0.0,1 +19006,12,0.0,2,1.4961838722229004,7,1.0,1 +19007,12,0.0,2,1.151186227798462,8,0.0,1 +19008,12,0.0,2,1.5011838674545288,9,1.0,1 +19009,12,0.0,2,1.113186240196228,10,1.0,1 +19010,12,0.0,2,1.1791863441467285,11,0.0,1 +19011,12,1.0,2,2.036176919937134,12,1.0,1 +19012,12,1.0,2,1.9671778678894043,13,1.0,1 +19013,12,1.0,2,1.65218186378479,14,0.0,1 +19014,12,0.0,2,2.083178997039795,15,0.0,1 +19015,12,0.0,2,1.2691864967346191,16,0.0,1 +19016,12,0.0,2,1.3701854944229126,17,0.0,1 +19017,12,1.0,2,1.3771854639053345,18,1.0,1 +19018,12,1.0,2,1.3861852884292603,19,1.0,1 +19019,12,1.0,2,1.3781853914260864,20,0.0,1 +19020,12,0.0,2,1.2461864948272705,21,0.0,1 +19021,12,0.0,2,1.6831815242767334,22,1.0,1 +19022,12,0.0,2,1.4221848249435425,23,0.0,1 +19023,12,0.0,2,1.6841814517974854,24,1.0,1 +19024,12,0.0,2,1.5281834602355957,25,0.0,1 +19025,12,1.0,2,1.5901827812194824,26,1.0,1 +19026,12,1.0,2,1.9001786708831787,27,1.0,1 +19027,12,1.0,2,1.6781816482543945,28,0.0,1 +19028,12,0.0,2,1.3891853094100952,29,1.0,1 +19029,12,0.0,2,1.9261784553527832,30,0.0,1 +19030,12,0.0,2,1.566183090209961,31,1.0,1 +19031,12,0.0,2,1.2361865043640137,32,1.0,1 +19032,12,0.0,2,1.244186520576477,33,1.0,1 +19033,12,0.0,2,1.3781853914260864,34,0.0,1 +19034,12,0.0,2,1.5691829919815063,35,1.0,1 +19035,12,0.0,2,1.4981838464736938,36,1.0,1 +19036,12,0.0,2,1.5031838417053223,37,1.0,1 +19037,12,0.0,2,1.3681855201721191,38,0.0,1 +19038,12,0.0,2,1.9601778984069824,39,1.0,1 +19039,12,0.0,2,1.3511857986450195,40,1.0,1 +19040,12,0.0,2,1.324186086654663,41,0.0,1 +19041,12,0.0,2,1.7891801595687866,42,1.0,1 +19042,12,0.0,2,1.2341864109039307,43,1.0,1 +19043,12,0.0,2,1.6671817302703857,44,0.0,1 +19044,12,0.0,2,1.659181833267212,45,1.0,1 +19045,12,0.0,2,1.8621792793273926,46,0.0,1 +19046,12,1.0,2,1.7081811428070068,47,0.0,1 +19047,12,0.0,2,2.390193462371826,48,0.0,1 +19048,12,1.0,2,1.3121862411499023,49,0.0,1 +19049,12,0.0,2,1.9951775074005127,50,1.0,1 +19050,12,0.0,2,1.350185751914978,51,0.0,1 +19051,12,0.0,2,1.1721863746643066,52,0.0,1 +19052,12,0.0,2,1.4741841554641724,53,0.0,1 +19053,12,0.0,2,1.6821815967559814,54,1.0,1 +19054,12,0.0,2,1.4821840524673462,55,1.0,1 +19055,12,0.0,2,1.287186622619629,56,1.0,1 +19056,12,0.0,2,1.721181035041809,57,0.0,1 +19057,12,0.0,2,1.8321795463562012,58,1.0,1 +19058,12,0.0,2,1.6881814002990723,59,1.0,1 +19059,12,0.0,2,1.3951852321624756,60,1.0,1 +19060,12,1.0,2,1.4291847944259644,61,1.0,1 +19061,12,1.0,2,1.489184021949768,62,0.0,1 +19062,12,0.0,2,1.562183141708374,63,0.0,1 +19063,12,0.0,2,1.564182996749878,64,0.0,1 +19064,12,1.0,2,1.5201835632324219,65,0.0,1 +19065,12,0.0,2,1.6761815547943115,66,0.0,1 +19066,12,0.0,2,1.7711803913116455,67,0.0,1 +19067,12,0.0,2,1.5251835584640503,68,0.0,1 +19068,12,0.0,2,1.6901814937591553,69,1.0,1 +19069,12,1.0,2,1.8981788158416748,70,1.0,1 +19070,12,0.0,2,1.9051786661148071,71,0.0,1 +19071,12,1.0,2,1.5481832027435303,72,1.0,1 +19072,12,1.0,2,1.2611864805221558,73,1.0,1 +19073,12,1.0,2,1.984177589416504,74,1.0,1 +19074,12,1.0,2,1.4521844387054443,75,1.0,1 +19075,12,1.0,2,1.2461864948272705,76,1.0,1 +19076,12,1.0,2,2.0561776161193848,77,1.0,1 +19077,12,1.0,2,1.4281847476959229,78,1.0,1 +19078,12,1.0,2,1.4391846656799316,79,1.0,1 +19079,12,1.0,2,1.7551805973052979,80,1.0,1 +19080,12,1.0,2,1.6381821632385254,81,1.0,1 +19081,12,1.0,2,1.4911839962005615,82,0.0,1 +19082,12,0.0,2,1.3931852579116821,83,0.0,1 +19083,12,0.0,2,2.0411770343780518,84,0.0,1 +19084,12,0.0,2,1.5081837177276611,85,0.0,1 +19085,12,0.0,2,2.086179256439209,86,1.0,1 +19086,12,0.0,2,1.4551844596862793,87,0.0,1 +19087,12,0.0,2,1.610182523727417,88,0.0,1 +19088,12,1.0,2,1.5731829404830933,89,1.0,1 +19089,12,1.0,2,1.8741791248321533,90,0.0,1 +19090,12,1.0,2,1.3341859579086304,91,0.0,1 +19091,12,0.0,2,1.6861815452575684,92,1.0,1 +19092,12,0.0,2,1.3911852836608887,93,1.0,1 +19093,12,0.0,2,1.1931864023208618,94,0.0,1 +19094,12,0.0,2,1.2671865224838257,95,0.0,1 +19095,12,0.0,2,1.3631856441497803,96,0.0,1 +19096,12,1.0,2,1.3961851596832275,97,1.0,1 +19097,12,1.0,2,1.8221797943115234,98,0.0,1 +19098,12,1.0,2,1.9121785163879395,99,0.0,1 +19099,12,1.0,2,2.2601871490478516,100,0.0,1 +19100,12,0.0,2,1.7201809883117676,101,0.0,1 +19101,12,0.0,2,1.7771803140640259,102,1.0,1 +19102,12,0.0,2,1.883178949356079,103,0.0,1 +19103,12,0.0,2,1.4911839962005615,104,0.0,1 +19104,12,0.0,2,1.6411820650100708,105,1.0,1 +19105,12,0.0,2,1.5131837129592896,106,1.0,1 +19106,12,0.0,2,1.285186529159546,107,1.0,1 +19107,12,0.0,2,1.8991787433624268,108,1.0,1 +19108,12,0.0,2,1.6461820602416992,109,0.0,1 +19109,12,1.0,2,1.9811776876449585,110,0.0,1 +19110,12,1.0,2,1.5781829357147217,111,1.0,1 +19111,12,1.0,2,1.401185154914856,112,1.0,1 +19112,12,1.0,2,1.773180365562439,113,0.0,1 +19113,12,0.0,2,1.6421821117401123,114,1.0,1 +19114,12,0.0,2,1.2901865243911743,115,1.0,1 +19115,12,0.0,2,1.187186360359192,116,0.0,1 +19116,12,1.0,2,1.5091837644577026,117,1.0,1 +19117,12,1.0,2,1.4441845417022705,118,0.0,1 +19118,12,0.0,2,1.3221861124038696,119,1.0,1 +19119,12,0.0,2,1.751180648803711,120,0.0,1 +19120,12,1.0,2,1.4991838932037354,121,0.0,1 +19121,12,0.0,2,2.030177116394043,122,0.0,1 +19122,12,1.0,2,1.8751790523529053,123,0.0,1 +19123,12,0.0,2,1.3341859579086304,124,1.0,1 +19124,12,0.0,2,1.1881864070892334,125,0.0,1 +19125,12,0.0,2,2.145181894302368,126,1.0,1 +19126,12,0.0,2,1.2091864347457886,127,1.0,1 +19127,12,0.0,2,1.2801865339279175,128,1.0,1 +19128,12,0.0,2,1.2591865062713623,129,0.0,1 +19129,12,0.0,2,1.471184253692627,130,0.0,1 +19130,12,1.0,2,1.3631856441497803,131,0.0,1 +19131,12,0.0,2,1.6841814517974854,132,1.0,1 +19132,12,0.0,2,1.5291835069656372,133,1.0,1 +19133,12,0.0,2,1.7331808805465698,134,1.0,1 +19134,12,0.0,2,1.218186378479004,135,0.0,1 +19135,12,1.0,2,1.4331847429275513,136,1.0,1 +19136,12,0.0,2,1.9501781463623047,137,1.0,1 +19137,12,0.0,2,1.354185700416565,138,1.0,1 +19138,12,1.0,2,1.3951852321624756,139,0.0,1 +19139,12,0.0,2,1.1901863813400269,140,0.0,1 +19140,12,0.0,2,1.5361833572387695,141,0.0,1 +19141,12,0.0,2,1.9871776103973389,142,1.0,1 +19142,12,0.0,2,1.4851840734481812,143,1.0,1 +19143,12,0.0,2,1.5261834859848022,144,0.0,1 +19144,12,0.0,2,1.5101836919784546,145,0.0,1 +19145,12,0.0,2,1.6271822452545166,146,0.0,1 +19146,12,1.0,2,1.6681816577911377,147,0.0,1 +19147,12,0.0,2,2.2071847915649414,148,0.0,1 +19148,12,0.0,2,1.5711829662322998,149,0.0,1 +19149,12,1.0,2,1.515183687210083,150,1.0,1 +19150,12,1.0,2,2.0561776161193848,151,1.0,1 +19151,12,1.0,2,1.4091850519180298,152,0.0,1 +19152,12,0.0,2,1.699181318283081,153,0.0,1 +19153,12,0.0,2,1.371185541152954,154,0.0,1 +19154,12,1.0,2,1.6051825284957886,155,1.0,1 +19155,12,1.0,2,1.3841853141784668,156,0.0,1 +19156,12,1.0,2,1.3881852626800537,157,0.0,1 +19157,12,0.0,2,1.3911852836608887,158,0.0,1 +19158,12,1.0,2,1.7901802062988281,159,1.0,1 +19159,12,0.0,2,1.2911865711212158,160,1.0,1 +19160,12,1.0,2,1.6131824254989624,161,1.0,1 +19161,12,1.0,2,1.8011800050735474,162,0.0,1 +19162,12,0.0,2,1.4341846704483032,163,1.0,1 +19163,12,0.0,2,1.5231835842132568,164,1.0,1 +19164,12,0.0,2,1.516183614730835,165,0.0,1 +19165,12,0.0,2,1.2331864833831787,166,0.0,1 +19166,12,0.0,2,2.076178550720215,167,1.0,1 +19167,12,1.0,2,1.8551793098449707,168,0.0,1 +19168,12,0.0,2,1.5301834344863892,169,1.0,1 +19169,12,0.0,2,2.097179651260376,170,0.0,1 +19170,12,0.0,2,1.6471819877624512,171,1.0,1 +19171,12,0.0,2,1.5101836919784546,172,0.0,1 +19172,12,1.0,2,1.3441858291625977,173,1.0,1 +19173,12,1.0,2,1.6801815032958984,174,1.0,1 +19174,12,1.0,2,1.2711865901947021,175,0.0,1 +19175,12,1.0,2,1.6971813440322876,176,1.0,1 +19176,12,1.0,2,1.581182837486267,177,0.0,1 +19177,12,0.0,2,1.1601862907409668,178,0.0,1 +19178,12,0.0,2,2.0021774768829346,179,0.0,1 +19179,12,0.0,2,2.101179838180542,180,1.0,1 +19180,12,0.0,2,1.4001851081848145,181,0.0,1 +19181,12,1.0,2,1.7711803913116455,182,1.0,1 +19182,12,1.0,2,1.5981826782226562,183,0.0,1 +19183,12,0.0,2,1.2971864938735962,184,0.0,1 +19184,12,0.0,2,1.614182472229004,185,0.0,1 +19185,12,0.0,2,1.4801840782165527,186,0.0,1 +19186,12,1.0,2,1.4961838722229004,187,1.0,1 +19187,12,1.0,2,1.1851863861083984,188,1.0,1 +19188,12,1.0,2,1.5491832494735718,189,1.0,1 +19189,12,1.0,2,1.497183918952942,190,1.0,1 +19190,12,1.0,2,1.6381821632385254,191,0.0,1 +19191,12,1.0,2,1.3391859531402588,192,1.0,1 +19192,12,1.0,2,1.3901852369308472,193,1.0,1 +19193,12,1.0,2,1.5551831722259521,194,0.0,1 +19194,12,0.0,2,1.278186559677124,195,0.0,1 +19195,12,1.0,2,1.813179850578308,196,1.0,1 +19196,12,1.0,2,1.1991863250732422,197,1.0,1 +19197,12,1.0,2,1.4031851291656494,198,0.0,1 +19198,12,1.0,2,1.913178563117981,199,0.0,1 +19199,12,0.0,2,1.3261860609054565,200,0.0,1 +19200,12,0.0,2,2.105180025100708,201,1.0,1 +19201,12,0.0,2,1.2091864347457886,202,0.0,1 +19202,12,0.0,2,1.2691864967346191,203,0.0,1 +19203,12,0.0,2,1.497183918952942,204,0.0,1 +19204,12,1.0,2,1.8761789798736572,205,1.0,1 +19205,12,1.0,2,1.7791802883148193,206,0.0,1 +19206,12,1.0,2,1.6251822710037231,207,1.0,1 +19207,12,1.0,2,1.8151798248291016,208,1.0,1 +19208,12,1.0,2,1.2961864471435547,209,1.0,1 +19209,12,1.0,2,1.5951826572418213,210,1.0,1 +19210,12,1.0,2,1.7581806182861328,211,1.0,1 +19211,12,1.0,2,1.6361820697784424,212,1.0,1 +19212,12,1.0,2,1.4171849489212036,213,0.0,1 +19213,12,0.0,2,1.3911852836608887,214,0.0,1 +19214,12,0.0,2,1.7841801643371582,215,0.0,1 +19215,12,0.0,2,1.7161810398101807,216,0.0,1 +19216,12,1.0,2,2.0401768684387207,217,0.0,1 +19217,12,0.0,2,1.9021787643432617,218,0.0,1 +19218,12,1.0,2,1.8201797008514404,219,0.0,1 +19219,12,1.0,2,1.6271822452545166,220,0.0,1 +19220,12,0.0,2,1.5021837949752808,221,1.0,1 +19221,12,0.0,2,1.4141849279403687,222,1.0,1 +19222,12,0.0,2,1.245186448097229,223,1.0,1 +19223,12,0.0,2,1.309186339378357,224,1.0,1 +19224,12,0.0,2,1.1631863117218018,225,0.0,1 +19225,12,0.0,2,1.331186056137085,226,1.0,1 +19226,12,0.0,2,1.7101812362670898,227,0.0,1 +19227,12,1.0,2,1.4951839447021484,228,0.0,1 +19228,12,0.0,2,1.4801840782165527,229,0.0,1 +19229,12,1.0,2,1.6361820697784424,230,1.0,1 +19230,12,1.0,2,1.2951865196228027,231,1.0,1 +19231,12,1.0,2,1.441184639930725,232,1.0,1 +19232,12,1.0,2,1.18018639087677,233,0.0,1 +19233,12,0.0,2,2.131181240081787,234,0.0,1 +19234,12,0.0,2,1.8551793098449707,235,0.0,1 +19235,12,0.0,2,1.796180009841919,236,0.0,1 +19236,12,0.0,2,1.5421833992004395,237,0.0,1 +19237,12,0.0,2,1.8761789798736572,238,0.0,1 +19238,12,0.0,2,1.6901814937591553,239,0.0,1 +19239,12,1.0,2,1.8811789751052856,240,1.0,1 +19240,12,1.0,2,1.2971864938735962,241,1.0,1 +19241,12,1.0,2,1.934178352355957,242,1.0,1 +19242,12,1.0,2,1.6451820135116577,243,1.0,1 +19243,12,1.0,2,1.6151823997497559,244,0.0,1 +19244,12,0.0,2,1.3361859321594238,245,0.0,1 +19245,12,1.0,2,1.511183738708496,246,1.0,1 +19246,12,1.0,2,1.5401833057403564,247,1.0,1 +19247,12,1.0,2,1.4751842021942139,248,0.0,1 +19248,12,1.0,2,1.2131863832473755,249,1.0,1 +19249,12,1.0,2,1.6301822662353516,250,1.0,1 +19250,12,1.0,2,1.5761828422546387,251,0.0,1 +19251,12,0.0,2,1.416184902191162,252,1.0,1 +19252,12,0.0,2,1.3821853399276733,253,0.0,1 +19253,12,0.0,2,1.9151785373687744,254,0.0,1 +19254,12,1.0,2,1.7751803398132324,255,0.0,1 +19255,12,1.0,2,1.6191823482513428,256,0.0,1 +19256,12,0.0,2,1.2321864366531372,257,1.0,1 +19257,12,0.0,2,1.2671865224838257,258,1.0,1 +19258,12,0.0,2,1.285186529159546,259,0.0,1 +19259,12,0.0,2,1.8251796960830688,260,0.0,1 +19260,12,1.0,2,1.6601817607879639,261,0.0,1 +19261,12,0.0,2,1.272186517715454,262,0.0,1 +19262,12,0.0,2,1.8081798553466797,263,0.0,1 +19263,12,0.0,2,1.2501864433288574,264,0.0,1 +19264,12,0.0,2,1.6441819667816162,265,0.0,1 +19265,12,1.0,2,1.8591792583465576,266,0.0,1 +19266,12,1.0,2,1.6011825799942017,267,0.0,1 +19267,12,0.0,2,1.6221823692321777,268,0.0,1 +19268,12,0.0,2,1.5431833267211914,269,1.0,1 +19269,12,1.0,2,1.7221810817718506,270,1.0,1 +19270,12,1.0,2,2.360191822052002,271,0.0,1 +19271,12,0.0,2,1.5481832027435303,272,0.0,1 +19272,12,0.0,2,1.7181811332702637,273,0.0,1 +19273,12,0.0,2,2.109180212020874,274,1.0,1 +19274,12,0.0,2,1.4771841764450073,275,0.0,1 +19275,12,1.0,2,2.029177188873291,276,1.0,1 +19276,12,1.0,2,1.6181824207305908,277,1.0,1 +19277,12,1.0,2,1.445184588432312,278,1.0,1 +19278,12,1.0,2,1.5511832237243652,279,1.0,1 +19279,12,1.0,2,1.423184871673584,280,0.0,1 +19280,12,0.0,2,1.178186297416687,281,1.0,1 +19281,12,0.0,2,1.372185468673706,282,1.0,1 +19282,12,0.0,2,1.2241864204406738,283,0.0,1 +19283,12,0.0,2,1.7281808853149414,284,1.0,1 +19284,12,0.0,2,1.2281864881515503,285,1.0,1 +19285,12,0.0,2,1.3101862668991089,286,0.0,1 +19286,12,0.0,2,1.3861852884292603,287,0.0,1 +19287,12,0.0,2,1.8791790008544922,288,0.0,1 +19288,12,1.0,2,1.794180154800415,289,0.0,1 +19289,12,1.0,2,1.284186601638794,290,1.0,1 +19290,12,1.0,2,1.8821790218353271,291,1.0,1 +19291,12,1.0,2,1.354185700416565,292,0.0,1 +19292,12,1.0,2,2.13318133354187,293,1.0,1 +19293,12,1.0,2,1.51918363571167,294,1.0,1 +19294,12,1.0,2,1.4981838464736938,295,1.0,1 +19295,12,1.0,2,1.9551780223846436,296,1.0,1 +19296,12,1.0,2,1.4541844129562378,297,0.0,1 +19297,12,1.0,2,1.746180772781372,298,0.0,1 +19298,12,1.0,2,2.027177095413208,299,0.0,1 +19299,12,1.0,2,1.3551857471466064,300,1.0,1 +19300,12,1.0,2,1.6931813955307007,301,1.0,1 +19301,12,1.0,2,1.3611856698989868,302,1.0,1 +19302,12,1.0,2,1.6391820907592773,303,1.0,1 +19303,12,1.0,2,1.4871840476989746,304,0.0,1 +19304,12,1.0,2,1.928178310394287,305,1.0,1 +19305,12,1.0,2,1.890178918838501,306,1.0,1 +19306,12,1.0,2,1.379185438156128,307,1.0,1 +19307,12,1.0,2,1.1991863250732422,308,1.0,1 +19308,12,1.0,2,1.65818190574646,309,0.0,1 +19309,12,1.0,2,1.3831853866577148,310,1.0,1 +19310,12,1.0,2,1.9511780738830566,311,1.0,1 +19311,12,1.0,2,1.3511857986450195,312,0.0,1 +19312,12,0.0,2,1.7391808032989502,313,0.0,1 +19313,12,0.0,2,1.464184284210205,314,0.0,1 +19314,12,1.0,2,1.6861815452575684,315,0.0,1 +19315,12,1.0,2,1.7701804637908936,316,0.0,1 +19316,12,0.0,2,2.335190773010254,317,1.0,1 +19317,12,0.0,2,1.2161864042282104,318,0.0,1 +19318,12,0.0,2,1.4831840991973877,319,0.0,1 +19319,12,0.0,2,1.3601856231689453,320,1.0,1 +19320,12,0.0,2,1.251186490058899,321,0.0,1 +19321,12,0.0,2,1.2961864471435547,322,0.0,1 +19322,12,0.0,2,1.6401820182800293,323,0.0,1 +19323,12,1.0,2,1.9421782493591309,324,1.0,1 +19324,12,1.0,2,1.49018394947052,325,0.0,1 +19325,12,0.0,2,1.3351860046386719,326,1.0,1 +19326,12,0.0,2,1.6221823692321777,327,1.0,1 +19327,12,0.0,2,1.2001863718032837,328,0.0,1 +19328,12,0.0,2,1.9961774349212646,329,1.0,1 +19329,12,0.0,2,1.566183090209961,330,1.0,1 +19330,12,0.0,2,1.2371864318847656,331,1.0,1 +19331,12,0.0,2,1.3961851596832275,332,0.0,1 +19332,12,0.0,2,1.3131862878799438,333,0.0,1 +19333,12,0.0,2,1.442184567451477,334,0.0,1 +19334,12,1.0,2,2.4551963806152344,335,1.0,1 +19335,12,1.0,2,1.464184284210205,336,0.0,1 +19336,12,1.0,2,1.5261834859848022,337,0.0,1 +19337,12,0.0,2,1.5921826362609863,338,0.0,1 +19338,12,1.0,2,2.2511868476867676,339,1.0,1 +19339,12,1.0,2,1.2941864728927612,340,1.0,1 +19340,12,1.0,2,1.4361846446990967,341,1.0,1 +19341,12,1.0,2,1.3101862668991089,342,0.0,1 +19342,12,1.0,2,1.607182502746582,343,0.0,1 +19343,12,1.0,2,1.7381808757781982,344,1.0,1 +19344,12,1.0,2,1.2251864671707153,345,1.0,1 +19345,12,1.0,2,1.3151862621307373,346,1.0,1 +19346,12,1.0,2,1.379185438156128,347,1.0,1 +19347,12,1.0,2,1.795180082321167,348,1.0,1 +19348,12,1.0,2,1.5141836404800415,349,1.0,1 +19349,12,1.0,2,1.6911814212799072,350,0.0,1 +19350,12,0.0,2,1.3671855926513672,351,1.0,1 +19351,12,0.0,2,1.1651862859725952,352,1.0,1 +19352,12,0.0,2,1.5921826362609863,353,0.0,1 +19353,12,0.0,2,1.2741864919662476,354,0.0,1 +19354,12,1.0,2,1.9001786708831787,355,0.0,1 +19355,12,0.0,2,2.0441770553588867,356,1.0,1 +19356,12,0.0,2,1.2991864681243896,357,1.0,1 +19357,12,0.0,2,1.2591865062713623,358,0.0,1 +19358,12,0.0,2,2.136181354522705,359,1.0,1 +19359,12,0.0,2,1.2621865272521973,360,0.0,1 +19360,12,1.0,2,2.055177688598633,361,0.0,1 +19361,12,0.0,2,1.6451820135116577,362,0.0,1 +19362,12,1.0,2,2.148181915283203,363,0.0,1 +19363,12,1.0,2,1.248186469078064,364,0.0,1 +19364,12,0.0,2,1.2471864223480225,365,0.0,1 +19365,12,1.0,2,1.538183331489563,366,1.0,1 +19366,12,0.0,2,1.402185082435608,367,0.0,1 +19367,12,1.0,2,1.420184850692749,368,1.0,1 +19368,12,1.0,2,1.4171849489212036,369,1.0,1 +19369,12,1.0,2,1.3451858758926392,370,0.0,1 +19370,12,0.0,2,2.022177219390869,371,1.0,1 +19371,12,0.0,2,1.3221861124038696,372,0.0,1 +19372,12,1.0,2,1.5511832237243652,373,0.0,1 +19373,12,0.0,2,1.2591865062713623,374,1.0,1 +19374,12,0.0,2,1.2621865272521973,375,0.0,1 +19375,12,0.0,2,1.2571865320205688,376,1.0,1 +19376,12,0.0,2,1.8191797733306885,377,0.0,1 +19377,12,0.0,2,1.9231784343719482,378,0.0,1 +19378,12,0.0,2,1.2311863899230957,379,1.0,1 +19379,12,0.0,2,1.2261863946914673,380,0.0,1 +19380,12,1.0,2,1.6441819667816162,381,0.0,1 +19381,12,1.0,2,1.5211836099624634,382,0.0,1 +19382,12,1.0,2,1.939178228378296,383,0.0,1 +19383,12,1.0,2,2.083178997039795,384,1.0,1 +19384,12,1.0,2,1.3901852369308472,385,1.0,1 +19385,12,0.0,2,1.6131824254989624,386,1.0,1 +19386,12,0.0,2,1.5361833572387695,387,0.0,1 +19387,12,1.0,2,1.3841853141784668,388,1.0,1 +19388,12,1.0,2,1.251186490058899,389,0.0,1 +19389,12,0.0,2,2.0441770553588867,390,0.0,1 +19390,12,1.0,2,1.4701842069625854,391,1.0,1 +19391,12,1.0,2,1.6481819152832031,392,0.0,1 +19392,12,0.0,2,1.427184820175171,393,1.0,1 +19393,12,0.0,2,1.7391808032989502,394,0.0,1 +19394,12,1.0,2,1.1711863279342651,395,0.0,1 +19395,12,0.0,2,1.1991863250732422,396,0.0,1 +19396,12,0.0,2,1.7561805248260498,397,1.0,1 +19397,12,0.0,2,1.4361846446990967,398,1.0,1 +19398,12,0.0,2,1.2241864204406738,399,0.0,1 +19399,12,0.0,2,2.099179744720459,400,0.0,1 +19400,12,0.0,2,1.5321834087371826,401,0.0,1 +19401,12,0.0,2,1.6181824207305908,402,1.0,1 +19402,12,0.0,2,1.4071850776672363,403,1.0,1 +19403,12,0.0,2,1.327186107635498,404,1.0,1 +19404,12,0.0,2,1.3461858034133911,405,1.0,1 +19405,12,0.0,2,1.4751842021942139,406,1.0,1 +19406,12,0.0,2,1.7851802110671997,407,0.0,1 +19407,12,0.0,2,1.332185983657837,408,1.0,1 +19408,12,0.0,2,1.3781853914260864,409,0.0,1 +19409,12,1.0,2,1.2251864671707153,410,0.0,1 +19410,12,1.0,2,1.2101863622665405,411,1.0,1 +19411,12,1.0,2,1.7831802368164062,412,1.0,1 +19412,12,1.0,2,1.4571844339370728,413,1.0,1 +19413,12,1.0,2,1.633182168006897,414,1.0,1 +19414,12,1.0,2,1.6451820135116577,415,1.0,1 +19415,12,1.0,2,1.696181297302246,416,0.0,1 +19416,12,0.0,2,1.8501794338226318,417,0.0,1 +19417,12,1.0,2,2.2621874809265137,418,1.0,1 +19418,12,1.0,2,1.4911839962005615,419,0.0,1 +19419,12,1.0,2,1.6021826267242432,420,1.0,1 +19420,12,1.0,2,1.301186442375183,421,0.0,1 +19421,12,0.0,2,2.1841835975646973,422,1.0,1 +19422,12,0.0,2,1.5471832752227783,423,1.0,1 +19423,12,0.0,2,1.1121861934661865,424,1.0,1 +19424,12,0.0,2,1.1331862211227417,425,1.0,1 +19425,12,0.0,2,1.3431859016418457,426,1.0,1 +19426,12,0.0,2,1.5921826362609863,427,1.0,1 +19427,12,0.0,2,1.4131850004196167,428,1.0,1 +19428,12,1.0,2,2.1931841373443604,429,1.0,1 +19429,12,0.0,2,1.2381864786148071,430,0.0,1 +19430,12,1.0,2,1.6431820392608643,431,0.0,1 +19431,12,0.0,2,1.9671778678894043,432,1.0,1 +19432,12,0.0,2,1.4331847429275513,433,1.0,1 +19433,12,0.0,2,1.4741841554641724,434,0.0,1 +19434,12,1.0,2,2.2191853523254395,435,0.0,1 +19435,12,0.0,2,1.5081837177276611,436,1.0,1 +19436,12,0.0,2,1.7271809577941895,437,0.0,1 +19437,12,1.0,2,1.97617769241333,438,1.0,1 +19438,12,1.0,2,1.4121849536895752,439,0.0,1 +19439,12,1.0,2,1.4521844387054443,440,0.0,1 +19440,12,0.0,2,1.9601778984069824,441,1.0,1 +19441,12,0.0,2,1.4001851081848145,442,1.0,1 +19442,12,0.0,2,1.2761865854263306,443,0.0,1 +19443,12,0.0,2,1.654181957244873,444,1.0,1 +19444,12,0.0,2,1.1881864070892334,445,0.0,1 +19445,12,1.0,2,1.4171849489212036,446,0.0,1 +19446,12,0.0,2,1.3451858758926392,447,1.0,1 +19447,12,0.0,2,1.2101863622665405,448,1.0,1 +19448,12,0.0,2,1.3651856184005737,449,1.0,1 +19449,12,0.0,2,1.611182451248169,450,1.0,1 +19450,12,0.0,2,1.3401858806610107,451,0.0,1 +19451,12,1.0,2,1.4511845111846924,452,1.0,1 +19452,12,1.0,2,1.2931865453720093,453,1.0,1 +19453,12,1.0,2,1.6341822147369385,454,1.0,1 +19454,12,1.0,2,1.3731855154037476,455,1.0,1 +19455,12,1.0,2,1.3081862926483154,456,0.0,1 +19456,12,0.0,2,1.7221810817718506,457,0.0,1 +19457,12,1.0,2,1.6831815242767334,458,0.0,1 +19458,12,0.0,2,2.1541824340820312,459,0.0,1 +19459,12,0.0,2,1.1341862678527832,460,0.0,1 +19460,12,1.0,2,1.5311834812164307,461,1.0,1 +19461,12,1.0,2,1.4031851291656494,462,1.0,1 +19462,12,1.0,2,1.281186580657959,463,0.0,1 +19463,12,1.0,2,1.8671791553497314,464,1.0,1 +19464,12,1.0,2,1.6621818542480469,465,0.0,1 +19465,12,0.0,2,1.4041850566864014,466,1.0,1 +19466,12,0.0,2,1.3961851596832275,467,0.0,1 +19467,12,1.0,2,1.5651830434799194,468,1.0,1 +19468,12,1.0,2,1.894178867340088,469,0.0,1 +19469,12,1.0,2,1.5331834554672241,470,1.0,1 +19470,12,1.0,2,1.3121862411499023,471,1.0,1 +19471,12,1.0,2,1.2831865549087524,472,0.0,1 +19472,12,0.0,2,1.8191797733306885,473,0.0,1 +19473,12,0.0,2,1.537183403968811,474,0.0,1 +19474,12,0.0,2,1.287186622619629,475,0.0,1 +19475,12,1.0,2,1.6461820602416992,476,0.0,1 +19476,12,0.0,2,1.7841801643371582,477,0.0,1 +19477,12,0.0,2,1.5831828117370605,478,1.0,1 +19478,12,0.0,2,1.1291862726211548,479,1.0,1 +19479,12,0.0,2,1.3931852579116821,480,0.0,1 +19480,12,0.0,2,1.4511845111846924,481,1.0,1 +19481,12,0.0,2,2.1851837635040283,482,1.0,1 +19482,12,0.0,2,1.2351864576339722,483,0.0,1 +19483,12,0.0,2,1.7341809272766113,484,0.0,1 +19484,12,0.0,2,1.5741829872131348,485,0.0,1 +19485,12,1.0,2,2.2171852588653564,486,0.0,1 +19486,12,0.0,2,1.486184000968933,487,0.0,1 +19487,12,0.0,2,1.2391865253448486,488,1.0,1 +19488,12,0.0,2,1.7221810817718506,489,1.0,1 +19489,12,0.0,2,1.4281847476959229,490,1.0,1 +19490,12,0.0,2,1.3151862621307373,491,0.0,1 +19491,12,1.0,2,1.8721790313720703,492,1.0,1 +19492,12,1.0,2,1.324186086654663,493,1.0,1 +19493,12,1.0,2,2.026177167892456,494,0.0,1 +19494,12,0.0,2,1.511183738708496,495,1.0,1 +19495,12,0.0,2,1.2701865434646606,496,1.0,1 +19496,12,0.0,2,1.2711865901947021,497,1.0,1 +19497,12,0.0,2,1.3471858501434326,498,1.0,1 +19498,12,0.0,2,1.218186378479004,499,0.0,1 +19499,12,1.0,2,1.282186508178711,500,0.0,1 +19500,13,1.0,0,1.901789903640747,1,1.0,1 +19501,13,1.0,0,1.46379554271698,2,0.0,1 +19502,13,1.0,0,1.6647930145263672,3,1.0,1 +19503,13,1.0,0,1.271798014640808,4,1.0,1 +19504,13,1.0,0,1.2517980337142944,5,0.0,1 +19505,13,0.0,0,1.5707942247390747,6,0.0,1 +19506,13,1.0,0,1.7357921600341797,7,1.0,1 +19507,13,1.0,0,1.1567977666854858,8,1.0,1 +19508,13,1.0,0,1.3767967224121094,9,1.0,1 +19509,13,1.0,0,1.5197948217391968,10,1.0,1 +19510,13,1.0,0,1.4827953577041626,11,1.0,1 +19511,13,1.0,0,1.279797911643982,12,1.0,1 +19512,13,1.0,0,1.2627980709075928,13,1.0,1 +19513,13,1.0,0,1.2277979850769043,14,1.0,1 +19514,13,1.0,0,1.5047950744628906,15,1.0,1 +19515,13,1.0,0,1.2697980403900146,16,1.0,1 +19516,13,1.0,0,1.6827927827835083,17,1.0,1 +19517,13,1.0,0,1.1907978057861328,18,1.0,1 +19518,13,1.0,0,1.2247979640960693,19,1.0,1 +19519,13,1.0,0,1.1547977924346924,20,1.0,1 +19520,13,1.0,0,1.4707955121994019,21,1.0,1 +19521,13,1.0,0,1.4777953624725342,22,1.0,1 +19522,13,1.0,0,1.3037976026535034,23,1.0,1 +19523,13,1.0,0,2.119792938232422,24,0.0,1 +19524,13,1.0,0,2.2427988052368164,25,1.0,1 +19525,13,1.0,0,1.2627980709075928,26,1.0,1 +19526,13,1.0,0,1.3637968301773071,27,1.0,1 +19527,13,1.0,0,1.3207974433898926,28,1.0,1 +19528,13,1.0,0,1.5887939929962158,29,1.0,1 +19529,13,1.0,0,1.2607979774475098,30,1.0,1 +19530,13,1.0,0,1.3797966241836548,31,1.0,1 +19531,13,1.0,0,1.297797679901123,32,1.0,1 +19532,13,1.0,0,1.4397958517074585,33,1.0,1 +19533,13,1.0,0,1.4077962636947632,34,0.0,1 +19534,13,0.0,0,1.5727941989898682,35,0.0,1 +19535,13,0.0,0,1.1897978782653809,36,1.0,1 +19536,13,1.0,0,1.9027899503707886,37,1.0,1 +19537,13,0.0,0,1.3647968769073486,38,0.0,1 +19538,13,1.0,0,1.5477945804595947,39,1.0,1 +19539,13,1.0,0,1.4167962074279785,40,1.0,1 +19540,13,1.0,0,1.4727954864501953,41,1.0,1 +19541,13,1.0,0,1.671792984008789,42,1.0,1 +19542,13,1.0,0,1.2857978343963623,43,1.0,1 +19543,13,1.0,0,1.1847978830337524,44,1.0,1 +19544,13,1.0,0,1.506795048713684,45,1.0,1 +19545,13,1.0,0,1.8047912120819092,46,1.0,1 +19546,13,1.0,0,1.5127949714660645,47,1.0,1 +19547,13,1.0,0,1.8177909851074219,48,0.0,1 +19548,13,0.0,0,1.581794023513794,49,0.0,1 +19549,13,1.0,0,1.6457931995391846,50,1.0,1 +19550,13,1.0,0,1.679792881011963,51,1.0,1 +19551,13,1.0,0,1.5697941780090332,52,0.0,1 +19552,13,0.0,0,1.2637979984283447,53,1.0,1 +19553,13,0.0,0,1.3097975254058838,54,1.0,1 +19554,13,0.0,0,1.4297959804534912,55,0.0,1 +19555,13,1.0,0,1.6657929420471191,56,1.0,1 +19556,13,1.0,0,1.506795048713684,57,1.0,1 +19557,13,0.0,0,1.3217973709106445,58,1.0,1 +19558,13,0.0,0,2.0847911834716797,59,1.0,1 +19559,13,0.0,0,1.282797932624817,60,1.0,1 +19560,13,0.0,0,1.2687979936599731,61,0.0,1 +19561,13,1.0,0,1.532794713973999,62,0.0,1 +19562,13,1.0,0,1.8957901000976562,63,1.0,1 +19563,13,0.0,0,1.3257973194122314,64,0.0,1 +19564,13,1.0,0,1.2017978429794312,65,1.0,1 +19565,13,1.0,0,1.4567956924438477,66,1.0,1 +19566,13,1.0,0,1.3987964391708374,67,1.0,1 +19567,13,1.0,0,1.558794379234314,68,1.0,1 +19568,13,1.0,0,1.1567977666854858,69,1.0,1 +19569,13,1.0,0,1.76479172706604,70,1.0,1 +19570,13,1.0,0,1.4287960529327393,71,1.0,1 +19571,13,1.0,0,1.863790512084961,72,1.0,1 +19572,13,1.0,0,1.2017978429794312,73,1.0,1 +19573,13,1.0,0,1.3597968816757202,74,1.0,1 +19574,13,1.0,0,1.2237979173660278,75,1.0,1 +19575,13,1.0,0,1.2517980337142944,76,1.0,1 +19576,13,1.0,0,1.4527957439422607,77,1.0,1 +19577,13,1.0,0,1.860790491104126,78,1.0,1 +19578,13,1.0,0,1.3807966709136963,79,1.0,1 +19579,13,1.0,0,1.4087963104248047,80,1.0,1 +19580,13,1.0,0,1.173797845840454,81,1.0,1 +19581,13,1.0,0,1.558794379234314,82,1.0,1 +19582,13,1.0,0,1.7897913455963135,83,1.0,1 +19583,13,1.0,0,1.250797986984253,84,1.0,1 +19584,13,1.0,0,1.8477907180786133,85,1.0,1 +19585,13,1.0,0,1.7417919635772705,86,1.0,1 +19586,13,1.0,0,1.4397958517074585,87,1.0,1 +19587,13,1.0,0,1.6607930660247803,88,1.0,1 +19588,13,1.0,0,1.3757966756820679,89,1.0,1 +19589,13,1.0,0,1.3377971649169922,90,1.0,1 +19590,13,1.0,0,1.4577956199645996,91,1.0,1 +19591,13,1.0,0,1.5617942810058594,92,1.0,1 +19592,13,1.0,0,1.7737915515899658,93,1.0,1 +19593,13,1.0,0,1.576794147491455,94,1.0,1 +19594,13,1.0,0,1.4937951564788818,95,0.0,1 +19595,13,0.0,0,1.4907952547073364,96,0.0,1 +19596,13,1.0,0,1.4317959547042847,97,0.0,1 +19597,13,1.0,0,1.4547957181930542,98,0.0,1 +19598,13,1.0,0,2.378805160522461,99,1.0,1 +19599,13,0.0,0,1.5217947959899902,100,0.0,1 +19600,13,1.0,0,1.7027925252914429,101,1.0,1 +19601,13,1.0,0,1.243798017501831,102,1.0,1 +19602,13,1.0,0,1.3837965726852417,103,1.0,1 +19603,13,1.0,0,1.213797926902771,104,1.0,1 +19604,13,0.0,0,1.3587969541549683,105,0.0,1 +19605,13,1.0,0,1.238797903060913,106,1.0,1 +19606,13,1.0,0,1.2457979917526245,107,0.0,1 +19607,13,0.0,0,1.6437933444976807,108,0.0,1 +19608,13,1.0,0,1.7347921133041382,109,1.0,1 +19609,13,1.0,0,1.629793405532837,110,1.0,1 +19610,13,1.0,0,1.4567956924438477,111,1.0,1 +19611,13,1.0,0,1.3987964391708374,112,1.0,1 +19612,13,1.0,0,1.4537956714630127,113,1.0,1 +19613,13,1.0,0,1.6147936582565308,114,1.0,1 +19614,13,1.0,0,1.3437970876693726,115,1.0,1 +19615,13,1.0,0,1.2737979888916016,116,0.0,1 +19616,13,0.0,0,2.160794734954834,117,0.0,1 +19617,13,1.0,0,1.7817914485931396,118,1.0,1 +19618,13,1.0,0,1.624793529510498,119,0.0,1 +19619,13,1.0,0,1.676792860031128,120,1.0,1 +19620,13,1.0,0,1.720792293548584,121,0.0,1 +19621,13,1.0,0,1.9987887144088745,122,1.0,1 +19622,13,1.0,0,1.537794589996338,123,1.0,1 +19623,13,1.0,0,1.3597968816757202,124,1.0,1 +19624,13,1.0,0,1.4047963619232178,125,1.0,1 +19625,13,1.0,0,1.3547970056533813,126,1.0,1 +19626,13,1.0,0,1.3467971086502075,127,1.0,1 +19627,13,1.0,0,1.282797932624817,128,1.0,1 +19628,13,1.0,0,1.243798017501831,129,1.0,1 +19629,13,1.0,0,1.484795331954956,130,0.0,1 +19630,13,1.0,0,1.4557956457138062,131,0.0,1 +19631,13,0.0,0,1.3057975769042969,132,0.0,1 +19632,13,1.0,0,2.0967917442321777,133,1.0,1 +19633,13,1.0,0,1.507794976234436,134,1.0,1 +19634,13,1.0,0,1.4907952547073364,135,1.0,1 +19635,13,1.0,0,1.2837978601455688,136,1.0,1 +19636,13,1.0,0,1.3327972888946533,137,1.0,1 +19637,13,1.0,0,1.5667942762374878,138,1.0,1 +19638,13,1.0,0,1.109797716140747,139,1.0,1 +19639,13,1.0,0,1.2897977828979492,140,1.0,1 +19640,13,1.0,0,1.3097975254058838,141,1.0,1 +19641,13,1.0,0,1.322797417640686,142,1.0,1 +19642,13,1.0,0,1.5197948217391968,143,1.0,1 +19643,13,1.0,0,1.4357959032058716,144,1.0,1 +19644,13,1.0,0,1.2667980194091797,145,1.0,1 +19645,13,1.0,0,1.393796443939209,146,1.0,1 +19646,13,1.0,0,1.535794734954834,147,1.0,1 +19647,13,1.0,0,1.3997963666915894,148,1.0,1 +19648,13,1.0,0,1.3157974481582642,149,1.0,1 +19649,13,0.0,0,1.2607979774475098,150,0.0,1 +19650,13,1.0,0,1.2297979593276978,151,1.0,1 +19651,13,1.0,0,1.371796727180481,152,1.0,1 +19652,13,1.0,0,1.3377971649169922,153,1.0,1 +19653,13,1.0,0,1.510794997215271,154,1.0,1 +19654,13,1.0,0,1.2497979402542114,155,1.0,1 +19655,13,1.0,0,1.1787978410720825,156,1.0,1 +19656,13,1.0,0,1.2297979593276978,157,1.0,1 +19657,13,1.0,0,1.2367979288101196,158,1.0,1 +19658,13,1.0,0,1.4137961864471436,159,0.0,1 +19659,13,1.0,0,2.2577993869781494,160,1.0,1 +19660,13,1.0,0,1.5447945594787598,161,1.0,1 +19661,13,1.0,0,1.9817888736724854,162,1.0,1 +19662,13,1.0,0,1.6497931480407715,163,1.0,1 +19663,13,1.0,0,1.3657968044281006,164,0.0,1 +19664,13,1.0,0,2.366804599761963,165,1.0,1 +19665,13,1.0,0,1.3607969284057617,166,0.0,1 +19666,13,0.0,0,1.238797903060913,167,0.0,1 +19667,13,1.0,0,1.419796109199524,168,0.0,1 +19668,13,1.0,0,1.2957977056503296,169,1.0,1 +19669,13,1.0,0,1.5087950229644775,170,1.0,1 +19670,13,1.0,0,1.2737979888916016,171,1.0,1 +19671,13,1.0,0,1.467795491218567,172,1.0,1 +19672,13,1.0,0,1.1217976808547974,173,1.0,1 +19673,13,1.0,0,1.4947952032089233,174,1.0,1 +19674,13,1.0,0,1.4167962074279785,175,1.0,1 +19675,13,1.0,0,1.3307973146438599,176,1.0,1 +19676,13,1.0,0,1.4207961559295654,177,1.0,1 +19677,13,1.0,0,1.6327934265136719,178,1.0,1 +19678,13,1.0,0,1.3097975254058838,179,1.0,1 +19679,13,1.0,0,1.5027951002120972,180,1.0,1 +19680,13,1.0,0,1.2867978811264038,181,1.0,1 +19681,13,1.0,0,1.3247973918914795,182,0.0,1 +19682,13,1.0,0,1.1667978763580322,183,1.0,1 +19683,13,1.0,0,1.370796799659729,184,1.0,1 +19684,13,1.0,0,1.1987979412078857,185,1.0,1 +19685,13,1.0,0,1.511794924736023,186,1.0,1 +19686,13,1.0,0,1.2207978963851929,187,1.0,1 +19687,13,1.0,0,1.1667978763580322,188,1.0,1 +19688,13,1.0,0,1.2947977781295776,189,1.0,1 +19689,13,1.0,0,1.698792576789856,190,1.0,1 +19690,13,1.0,0,1.4437958002090454,191,0.0,1 +19691,13,0.0,0,1.1977978944778442,192,0.0,1 +19692,13,0.0,0,1.9607892036437988,193,0.0,1 +19693,13,1.0,0,1.7277922630310059,194,1.0,1 +19694,13,1.0,0,1.2397979497909546,195,1.0,1 +19695,13,1.0,0,1.3297972679138184,196,1.0,1 +19696,13,1.0,0,1.6477932929992676,197,1.0,1 +19697,13,1.0,0,1.2637979984283447,198,1.0,1 +19698,13,1.0,0,1.4787954092025757,199,0.0,1 +19699,13,1.0,0,1.5577943325042725,200,1.0,1 +19700,13,1.0,0,1.4967951774597168,201,1.0,1 +19701,13,1.0,0,1.3597968816757202,202,1.0,1 +19702,13,1.0,0,1.5517945289611816,203,1.0,1 +19703,13,1.0,0,1.646793246269226,204,1.0,1 +19704,13,0.0,0,1.2867978811264038,205,0.0,1 +19705,13,1.0,0,1.2867978811264038,206,1.0,1 +19706,13,1.0,0,1.247797966003418,207,1.0,1 +19707,13,1.0,0,1.112797737121582,208,1.0,1 +19708,13,1.0,0,1.2147979736328125,209,1.0,1 +19709,13,1.0,0,1.213797926902771,210,1.0,1 +19710,13,1.0,0,2.108792304992676,211,0.0,1 +19711,13,1.0,0,1.5677943229675293,212,0.0,1 +19712,13,0.0,0,1.4777953624725342,213,0.0,1 +19713,13,1.0,0,2.200796604156494,214,1.0,1 +19714,13,1.0,0,1.2697980403900146,215,1.0,1 +19715,13,1.0,0,1.6147936582565308,216,1.0,1 +19716,13,1.0,0,1.4557956457138062,217,1.0,1 +19717,13,1.0,0,1.3757966756820679,218,1.0,1 +19718,13,1.0,0,1.3307973146438599,219,1.0,1 +19719,13,1.0,0,2.0697906017303467,220,1.0,1 +19720,13,1.0,0,1.2187979221343994,221,1.0,1 +19721,13,1.0,0,1.3857965469360352,222,1.0,1 +19722,13,1.0,0,1.4747954607009888,223,1.0,1 +19723,13,1.0,0,1.3117974996566772,224,0.0,1 +19724,13,0.0,0,1.4287960529327393,225,0.0,1 +19725,13,1.0,0,1.9447894096374512,226,1.0,1 +19726,13,1.0,0,1.2367979288101196,227,1.0,1 +19727,13,1.0,0,1.6597931385040283,228,0.0,1 +19728,13,0.0,0,1.182797908782959,229,0.0,1 +19729,13,0.0,0,1.9207897186279297,230,0.0,1 +19730,13,0.0,0,1.6497931480407715,231,0.0,1 +19731,13,1.0,0,1.5977938175201416,232,0.0,1 +19732,13,0.0,0,1.581794023513794,233,0.0,1 +19733,13,0.0,0,1.5447945594787598,234,0.0,1 +19734,13,0.0,0,1.9587892293930054,235,0.0,1 +19735,13,1.0,0,2.0127885341644287,236,1.0,1 +19736,13,1.0,0,1.8497905731201172,237,1.0,1 +19737,13,1.0,0,1.3607969284057617,238,1.0,1 +19738,13,1.0,0,1.4997950792312622,239,1.0,1 +19739,13,1.0,0,1.860790491104126,240,1.0,1 +19740,13,1.0,0,1.3757966756820679,241,1.0,1 +19741,13,1.0,0,1.3557969331741333,242,1.0,1 +19742,13,1.0,0,1.275797963142395,243,1.0,1 +19743,13,1.0,0,1.30179762840271,244,1.0,1 +19744,13,1.0,0,1.30179762840271,245,0.0,1 +19745,13,0.0,0,1.623793601989746,246,0.0,1 +19746,13,0.0,0,1.250797986984253,247,0.0,1 +19747,13,0.0,0,1.2727980613708496,248,0.0,1 +19748,13,1.0,0,1.4277960062026978,249,1.0,1 +19749,13,1.0,0,1.6747928857803345,250,0.0,1 +19750,13,1.0,0,1.4407958984375,251,1.0,1 +19751,13,1.0,0,1.2317979335784912,252,1.0,1 +19752,13,1.0,0,1.2577979564666748,253,1.0,1 +19753,13,1.0,0,1.3607969284057617,254,1.0,1 +19754,13,1.0,0,1.4277960062026978,255,1.0,1 +19755,13,1.0,0,1.4527957439422607,256,1.0,1 +19756,13,0.0,0,1.6887927055358887,257,0.0,1 +19757,13,1.0,0,1.5577943325042725,258,1.0,1 +19758,13,1.0,0,1.3257973194122314,259,1.0,1 +19759,13,1.0,0,1.345797061920166,260,1.0,1 +19760,13,1.0,0,1.2357980012893677,261,1.0,1 +19761,13,1.0,0,1.719792366027832,262,1.0,1 +19762,13,1.0,0,1.4257960319519043,263,1.0,1 +19763,13,1.0,0,1.46379554271698,264,1.0,1 +19764,13,1.0,0,1.3987964391708374,265,1.0,1 +19765,13,1.0,0,1.3087975978851318,266,1.0,1 +19766,13,1.0,0,1.7777915000915527,267,1.0,1 +19767,13,1.0,0,1.1877979040145874,268,1.0,1 +19768,13,1.0,0,1.392796516418457,269,1.0,1 +19769,13,1.0,0,1.2147979736328125,270,1.0,1 +19770,13,1.0,0,1.3807966709136963,271,0.0,1 +19771,13,1.0,0,1.6017937660217285,272,1.0,1 +19772,13,1.0,0,1.2187979221343994,273,1.0,1 +19773,13,1.0,0,1.5127949714660645,274,1.0,1 +19774,13,1.0,0,1.4937951564788818,275,1.0,1 +19775,13,1.0,0,1.2907978296279907,276,1.0,1 +19776,13,1.0,0,1.436795949935913,277,1.0,1 +19777,13,1.0,0,1.3327972888946533,278,1.0,1 +19778,13,1.0,0,1.5407946109771729,279,1.0,1 +19779,13,1.0,0,1.3537969589233398,280,0.0,1 +19780,13,1.0,0,1.6667929887771606,281,1.0,1 +19781,13,1.0,0,1.3587969541549683,282,1.0,1 +19782,13,1.0,0,1.2657979726791382,283,1.0,1 +19783,13,1.0,0,1.1267976760864258,284,1.0,1 +19784,13,1.0,0,1.7297921180725098,285,1.0,1 +19785,13,1.0,0,1.3147975206375122,286,1.0,1 +19786,13,1.0,0,1.4657955169677734,287,0.0,1 +19787,13,0.0,0,1.2947977781295776,288,0.0,1 +19788,13,1.0,0,1.5917940139770508,289,1.0,1 +19789,13,1.0,0,1.4107962846755981,290,1.0,1 +19790,13,1.0,0,1.271798014640808,291,1.0,1 +19791,13,1.0,0,1.510794997215271,292,1.0,1 +19792,13,1.0,0,1.2877978086471558,293,1.0,1 +19793,13,1.0,0,1.6227935552597046,294,1.0,1 +19794,13,1.0,0,1.5597944259643555,295,1.0,1 +19795,13,1.0,0,1.46379554271698,296,1.0,1 +19796,13,1.0,0,1.4007964134216309,297,1.0,1 +19797,13,1.0,0,1.7327921390533447,298,1.0,1 +19798,13,1.0,0,1.3187974691390991,299,1.0,1 +19799,13,1.0,0,1.1787978410720825,300,1.0,1 +19800,13,1.0,0,1.7157924175262451,301,1.0,1 +19801,13,1.0,0,1.7117924690246582,302,1.0,1 +19802,13,1.0,0,1.2327979803085327,303,1.0,1 +19803,13,1.0,0,1.4587956666946411,304,1.0,1 +19804,13,1.0,0,1.4227961301803589,305,1.0,1 +19805,13,1.0,0,1.3027976751327515,306,0.0,1 +19806,13,0.0,0,1.1677978038787842,307,0.0,1 +19807,13,0.0,0,1.7327921390533447,308,0.0,1 +19808,13,0.0,0,1.3027976751327515,309,0.0,1 +19809,13,0.0,0,1.304797649383545,310,0.0,1 +19810,13,0.0,0,1.9437894821166992,311,0.0,1 +19811,13,0.0,0,1.6327934265136719,312,0.0,1 +19812,13,0.0,0,1.5717942714691162,313,0.0,1 +19813,13,0.0,0,1.4767954349517822,314,0.0,1 +19814,13,1.0,0,1.2817978858947754,315,1.0,1 +19815,13,1.0,0,1.5487945079803467,316,1.0,1 +19816,13,1.0,0,1.4807953834533691,317,1.0,1 +19817,13,1.0,0,1.177797794342041,318,1.0,1 +19818,13,1.0,0,1.673792839050293,319,1.0,1 +19819,13,1.0,0,1.489795207977295,320,0.0,1 +19820,13,0.0,0,1.7007925510406494,321,0.0,1 +19821,13,0.0,0,2.0397891998291016,322,0.0,1 +19822,13,0.0,0,1.4297959804534912,323,0.0,1 +19823,13,0.0,0,1.174797773361206,324,0.0,1 +19824,13,0.0,0,1.2947977781295776,325,0.0,1 +19825,13,1.0,0,1.5507944822311401,326,1.0,1 +19826,13,1.0,0,1.57979416847229,327,1.0,1 +19827,13,1.0,0,1.2927978038787842,328,1.0,1 +19828,13,1.0,0,1.3997963666915894,329,1.0,1 +19829,13,1.0,0,1.4487957954406738,330,1.0,1 +19830,13,1.0,0,1.3077975511550903,331,1.0,1 +19831,13,1.0,0,1.27879798412323,332,1.0,1 +19832,13,1.0,0,1.2227978706359863,333,1.0,1 +19833,13,1.0,0,1.4917951822280884,334,1.0,1 +19834,13,1.0,0,1.4317959547042847,335,1.0,1 +19835,13,1.0,0,1.3507970571517944,336,1.0,1 +19836,13,1.0,0,1.5687942504882812,337,1.0,1 +19837,13,1.0,0,1.2247979640960693,338,0.0,1 +19838,13,1.0,0,1.4697954654693604,339,1.0,1 +19839,13,1.0,0,1.3807966709136963,340,1.0,1 +19840,13,1.0,0,1.4567956924438477,341,1.0,1 +19841,13,1.0,0,1.243798017501831,342,1.0,1 +19842,13,1.0,0,1.7187923192977905,343,1.0,1 +19843,13,1.0,0,1.4227961301803589,344,0.0,1 +19844,13,0.0,0,1.717792272567749,345,1.0,1 +19845,13,0.0,0,1.444795846939087,346,0.0,1 +19846,13,1.0,0,1.4867953062057495,347,1.0,1 +19847,13,1.0,0,1.8927900791168213,348,1.0,1 +19848,13,1.0,0,1.4017963409423828,349,1.0,1 +19849,13,1.0,0,1.2297979593276978,350,1.0,1 +19850,13,1.0,0,1.4227961301803589,351,1.0,1 +19851,13,1.0,0,2.140793800354004,352,0.0,1 +19852,13,0.0,0,1.7017924785614014,353,0.0,1 +19853,13,1.0,0,1.6997926235198975,354,1.0,1 +19854,13,1.0,0,1.1857978105545044,355,1.0,1 +19855,13,1.0,0,1.7547918558120728,356,1.0,1 +19856,13,1.0,0,1.1707978248596191,357,0.0,1 +19857,13,1.0,0,1.5917940139770508,358,1.0,1 +19858,13,1.0,0,1.3767967224121094,359,0.0,1 +19859,13,0.0,0,1.6977925300598145,360,1.0,1 +19860,13,0.0,0,1.2657979726791382,361,0.0,1 +19861,13,1.0,0,1.3357971906661987,362,1.0,1 +19862,13,1.0,0,1.180797815322876,363,1.0,1 +19863,13,1.0,0,1.3887965679168701,364,0.0,1 +19864,13,1.0,0,1.367796778678894,365,0.0,1 +19865,13,0.0,0,1.5247948169708252,366,0.0,1 +19866,13,1.0,0,1.2367979288101196,367,1.0,1 +19867,13,1.0,0,1.679792881011963,368,1.0,1 +19868,13,1.0,0,1.3467971086502075,369,1.0,1 +19869,13,1.0,0,1.2257978916168213,370,1.0,1 +19870,13,1.0,0,1.8107911348342896,371,1.0,1 +19871,13,1.0,0,1.1667978763580322,372,1.0,1 +19872,13,1.0,0,1.1147977113723755,373,1.0,1 +19873,13,1.0,0,1.815791130065918,374,1.0,1 +19874,13,1.0,0,1.81679105758667,375,1.0,1 +19875,13,1.0,0,1.5427945852279663,376,1.0,1 +19876,13,1.0,0,1.6497931480407715,377,1.0,1 +19877,13,1.0,0,1.1697977781295776,378,1.0,1 +19878,13,1.0,0,1.319797396659851,379,1.0,1 +19879,13,1.0,0,1.4767954349517822,380,1.0,1 +19880,13,1.0,0,1.2007979154586792,381,1.0,1 +19881,13,1.0,0,1.2027978897094727,382,1.0,1 +19882,13,1.0,0,1.4607956409454346,383,1.0,1 +19883,13,1.0,0,1.3817965984344482,384,1.0,1 +19884,13,1.0,0,1.4977951049804688,385,1.0,1 +19885,13,1.0,0,1.275797963142395,386,1.0,1 +19886,13,1.0,0,1.152797818183899,387,1.0,1 +19887,13,1.0,0,1.392796516418457,388,1.0,1 +19888,13,1.0,0,1.327797293663025,389,1.0,1 +19889,13,1.0,0,1.297797679901123,390,1.0,1 +19890,13,1.0,0,1.4607956409454346,391,1.0,1 +19891,13,1.0,0,1.393796443939209,392,1.0,1 +19892,13,1.0,0,1.4477957487106323,393,1.0,1 +19893,13,1.0,0,1.326797366142273,394,1.0,1 +19894,13,1.0,0,1.8807902336120605,395,1.0,1 +19895,13,1.0,0,1.2497979402542114,396,0.0,1 +19896,13,0.0,0,1.7017924785614014,397,0.0,1 +19897,13,1.0,0,1.5177948474884033,398,1.0,1 +19898,13,1.0,0,1.244797945022583,399,1.0,1 +19899,13,1.0,0,1.3217973709106445,400,1.0,1 +19900,13,1.0,0,1.2557979822158813,401,1.0,1 +19901,13,1.0,0,1.1457977294921875,402,1.0,1 +19902,13,1.0,0,1.4327960014343262,403,1.0,1 +19903,13,1.0,0,1.2667980194091797,404,1.0,1 +19904,13,1.0,0,1.2897977828979492,405,1.0,1 +19905,13,1.0,0,1.389796495437622,406,1.0,1 +19906,13,0.0,0,1.6837928295135498,407,1.0,1 +19907,13,0.0,0,1.4437958002090454,408,0.0,1 +19908,13,1.0,0,1.7527918815612793,409,1.0,1 +19909,13,1.0,0,1.2367979288101196,410,1.0,1 +19910,13,1.0,0,1.4827953577041626,411,1.0,1 +19911,13,1.0,0,1.4907952547073364,412,1.0,1 +19912,13,1.0,0,1.4107962846755981,413,1.0,1 +19913,13,1.0,0,1.2027978897094727,414,1.0,1 +19914,13,1.0,0,1.1917978525161743,415,1.0,1 +19915,13,1.0,0,1.6267935037612915,416,0.0,1 +19916,13,1.0,0,1.536794662475586,417,1.0,1 +19917,13,1.0,0,1.668792963027954,418,1.0,1 +19918,13,0.0,0,1.1757978200912476,419,0.0,1 +19919,13,1.0,0,1.6477932929992676,420,1.0,1 +19920,13,1.0,0,1.6827927827835083,421,1.0,1 +19921,13,1.0,0,1.1907978057861328,422,1.0,1 +19922,13,1.0,0,1.2027978897094727,423,1.0,1 +19923,13,1.0,0,1.344797134399414,424,1.0,1 +19924,13,1.0,0,1.243798017501831,425,1.0,1 +19925,13,1.0,0,1.2957977056503296,426,1.0,1 +19926,13,1.0,0,1.3507970571517944,427,0.0,1 +19927,13,0.0,0,1.6337933540344238,428,0.0,1 +19928,13,0.0,0,1.97878897190094,429,0.0,1 +19929,13,0.0,0,1.6917927265167236,430,0.0,1 +19930,13,0.0,0,1.7827914953231812,431,0.0,1 +19931,13,1.0,0,1.275797963142395,432,1.0,1 +19932,13,0.0,0,1.6957926750183105,433,0.0,1 +19933,13,0.0,0,1.370796799659729,434,0.0,1 +19934,13,1.0,0,1.1557978391647339,435,0.0,1 +19935,13,0.0,0,1.2117979526519775,436,1.0,1 +19936,13,0.0,0,1.2117979526519775,437,0.0,1 +19937,13,1.0,0,1.529794692993164,438,1.0,1 +19938,13,1.0,0,1.6537930965423584,439,1.0,1 +19939,13,1.0,0,1.2907978296279907,440,1.0,1 +19940,13,1.0,0,1.2057979106903076,441,1.0,1 +19941,13,1.0,0,1.5267947912216187,442,1.0,1 +19942,13,1.0,0,1.3627969026565552,443,1.0,1 +19943,13,1.0,0,1.2457979917526245,444,1.0,1 +19944,13,1.0,0,1.2777979373931885,445,0.0,1 +19945,13,0.0,0,2.122793197631836,446,0.0,1 +19946,13,0.0,0,1.7147923707962036,447,0.0,1 +19947,13,0.0,0,1.6417932510375977,448,0.0,1 +19948,13,0.0,0,1.1907978057861328,449,0.0,1 +19949,13,1.0,0,1.6827927827835083,450,1.0,1 +19950,13,1.0,0,1.2577979564666748,451,1.0,1 +19951,13,1.0,0,1.5747941732406616,452,1.0,1 +19952,13,1.0,0,1.878790259361267,453,1.0,1 +19953,13,1.0,0,1.2917977571487427,454,1.0,1 +19954,13,1.0,0,1.767791748046875,455,1.0,1 +19955,13,1.0,0,1.8817901611328125,456,0.0,1 +19956,13,1.0,0,1.5677943229675293,457,1.0,1 +19957,13,1.0,0,1.5997939109802246,458,1.0,1 +19958,13,1.0,0,1.3037976026535034,459,1.0,1 +19959,13,1.0,0,1.3347972631454468,460,1.0,1 +19960,13,1.0,0,1.2887978553771973,461,0.0,1 +19961,13,0.0,0,1.2187979221343994,462,0.0,1 +19962,13,1.0,0,2.0127885341644287,463,1.0,1 +19963,13,1.0,0,1.698792576789856,464,0.0,1 +19964,13,1.0,0,1.319797396659851,465,1.0,1 +19965,13,1.0,0,1.4397958517074585,466,1.0,1 +19966,13,1.0,0,1.241797924041748,467,1.0,1 +19967,13,1.0,0,1.5477945804595947,468,1.0,1 +19968,13,1.0,0,1.2377979755401611,469,1.0,1 +19969,13,1.0,0,1.2487980127334595,470,1.0,1 +19970,13,1.0,0,1.4587956666946411,471,1.0,1 +19971,13,1.0,0,1.4647955894470215,472,1.0,1 +19972,13,1.0,0,1.1667978763580322,473,1.0,1 +19973,13,1.0,0,1.3087975978851318,474,1.0,1 +19974,13,1.0,0,1.1957979202270508,475,0.0,1 +19975,13,0.0,0,1.3607969284057617,476,0.0,1 +19976,13,1.0,0,1.5127949714660645,477,1.0,1 +19977,13,1.0,0,1.3077975511550903,478,1.0,1 +19978,13,1.0,0,1.3767967224121094,479,0.0,1 +19979,13,1.0,0,1.4207961559295654,480,1.0,1 +19980,13,1.0,0,1.3867965936660767,481,1.0,1 +19981,13,1.0,0,1.7417919635772705,482,0.0,1 +19982,13,1.0,0,1.3817965984344482,483,1.0,1 +19983,13,1.0,0,1.4347959756851196,484,1.0,1 +19984,13,1.0,0,1.1237977743148804,485,1.0,1 +19985,13,1.0,0,2.140793800354004,486,1.0,1 +19986,13,1.0,0,1.671792984008789,487,1.0,1 +19987,13,1.0,0,1.2127978801727295,488,1.0,1 +19988,13,1.0,0,1.6907926797866821,489,0.0,1 +19989,13,0.0,0,1.2517980337142944,490,0.0,1 +19990,13,0.0,0,1.9907888174057007,491,1.0,1 +19991,13,0.0,0,1.7007925510406494,492,0.0,1 +19992,13,1.0,0,1.219797968864441,493,1.0,1 +19993,13,1.0,0,1.5267947912216187,494,1.0,1 +19994,13,1.0,0,1.3557969331741333,495,1.0,1 +19995,13,1.0,0,1.629793405532837,496,1.0,1 +19996,13,1.0,0,1.2097978591918945,497,1.0,1 +19997,13,1.0,0,1.5217947959899902,498,0.0,1 +19998,13,1.0,0,1.4797953367233276,499,1.0,1 +19999,13,1.0,0,1.3657968044281006,500,1.0,1 +20000,13,1.0,1,1.4337959289550781,1,0.0,1 +20001,13,0.0,1,1.6017937660217285,2,0.0,1 +20002,13,1.0,1,1.4327960014343262,3,1.0,1 +20003,13,1.0,1,1.4487957954406738,4,1.0,1 +20004,13,1.0,1,1.5417945384979248,5,1.0,1 +20005,13,1.0,1,1.2617980241775513,6,1.0,1 +20006,13,1.0,1,1.216797947883606,7,1.0,1 +20007,13,1.0,1,1.4797953367233276,8,1.0,1 +20008,13,1.0,1,1.2547979354858398,9,0.0,1 +20009,13,0.0,1,1.2567980289459229,10,0.0,1 +20010,13,0.0,1,1.3817965984344482,11,0.0,1 +20011,13,0.0,1,1.1987979412078857,12,0.0,1 +20012,13,1.0,1,1.327797293663025,13,1.0,1 +20013,13,1.0,1,1.3467971086502075,14,0.0,1 +20014,13,0.0,1,1.6107937097549438,15,0.0,1 +20015,13,1.0,1,1.1377977132797241,16,1.0,1 +20016,13,1.0,1,1.2667980194091797,17,0.0,1 +20017,13,1.0,1,1.1567977666854858,18,1.0,1 +20018,13,1.0,1,1.6137936115264893,19,1.0,1 +20019,13,1.0,1,1.5997939109802246,20,1.0,1 +20020,13,1.0,1,1.3297972679138184,21,0.0,1 +20021,13,1.0,1,1.584794044494629,22,1.0,1 +20022,13,1.0,1,1.2277979850769043,23,1.0,1 +20023,13,1.0,1,1.1087976694107056,24,1.0,1 +20024,13,1.0,1,1.6127936840057373,25,0.0,1 +20025,13,1.0,1,1.6267935037612915,26,1.0,1 +20026,13,1.0,1,1.186797857284546,27,1.0,1 +20027,13,1.0,1,1.7057924270629883,28,1.0,1 +20028,13,1.0,1,1.5137948989868164,29,1.0,1 +20029,13,1.0,1,1.5177948474884033,30,1.0,1 +20030,13,1.0,1,1.4697954654693604,31,1.0,1 +20031,13,1.0,1,1.3607969284057617,32,1.0,1 +20032,13,1.0,1,1.4707955121994019,33,1.0,1 +20033,13,1.0,1,1.1917978525161743,34,1.0,1 +20034,13,1.0,1,1.1877979040145874,35,1.0,1 +20035,13,1.0,1,1.532794713973999,36,0.0,1 +20036,13,1.0,1,1.3857965469360352,37,0.0,1 +20037,13,1.0,1,1.529794692993164,38,1.0,1 +20038,13,1.0,1,1.767791748046875,39,1.0,1 +20039,13,1.0,1,1.300797700881958,40,1.0,1 +20040,13,1.0,1,1.4227961301803589,41,0.0,1 +20041,13,1.0,1,1.9227896928787231,42,1.0,1 +20042,13,0.0,1,1.1147977113723755,43,0.0,1 +20043,13,1.0,1,1.319797396659851,44,1.0,1 +20044,13,1.0,1,1.2957977056503296,45,1.0,1 +20045,13,1.0,1,1.5457944869995117,46,1.0,1 +20046,13,1.0,1,1.2287979125976562,47,1.0,1 +20047,13,0.0,1,1.2007979154586792,48,0.0,1 +20048,13,1.0,1,1.1547977924346924,49,1.0,1 +20049,13,1.0,1,1.3117974996566772,50,0.0,1 +20050,13,1.0,1,1.5997939109802246,51,1.0,1 +20051,13,1.0,1,1.2517980337142944,52,1.0,1 +20052,13,1.0,1,1.8457906246185303,53,1.0,1 +20053,13,1.0,1,1.716792345046997,54,1.0,1 +20054,13,1.0,1,1.2607979774475098,55,0.0,1 +20055,13,1.0,1,1.6167936325073242,56,1.0,1 +20056,13,1.0,1,1.304797649383545,57,0.0,1 +20057,13,0.0,1,2.116792678833008,58,0.0,1 +20058,13,0.0,1,1.3947964906692505,59,0.0,1 +20059,13,0.0,1,2.008788585662842,60,1.0,1 +20060,13,0.0,1,1.3697967529296875,61,0.0,1 +20061,13,0.0,1,2.0187883377075195,62,0.0,1 +20062,13,1.0,1,1.436795949935913,63,1.0,1 +20063,13,1.0,1,1.4087963104248047,64,0.0,1 +20064,13,1.0,1,1.60279381275177,65,1.0,1 +20065,13,1.0,1,1.650793194770813,66,1.0,1 +20066,13,1.0,1,1.414796233177185,67,0.0,1 +20067,13,0.0,1,1.2587980031967163,68,1.0,1 +20068,13,0.0,1,1.3307973146438599,69,0.0,1 +20069,13,0.0,1,1.673792839050293,70,0.0,1 +20070,13,0.0,1,1.6447932720184326,71,0.0,1 +20071,13,0.0,1,1.2957977056503296,72,0.0,1 +20072,13,1.0,1,1.7737915515899658,73,0.0,1 +20073,13,1.0,1,1.4027963876724243,74,1.0,1 +20074,13,1.0,1,1.4287960529327393,75,1.0,1 +20075,13,1.0,1,1.3147975206375122,76,1.0,1 +20076,13,1.0,1,1.8587905168533325,77,1.0,1 +20077,13,1.0,1,1.3137974739074707,78,1.0,1 +20078,13,1.0,1,1.2867978811264038,79,1.0,1 +20079,13,1.0,1,1.1757978200912476,80,1.0,1 +20080,13,1.0,1,1.3157974481582642,81,1.0,1 +20081,13,1.0,1,1.5457944869995117,82,1.0,1 +20082,13,1.0,1,1.2947977781295776,83,0.0,1 +20083,13,1.0,1,1.627793550491333,84,1.0,1 +20084,13,1.0,1,1.2707979679107666,85,0.0,1 +20085,13,0.0,1,1.3067976236343384,86,0.0,1 +20086,13,0.0,1,1.9067898988723755,87,0.0,1 +20087,13,1.0,1,1.1957979202270508,88,0.0,1 +20088,13,1.0,1,1.1587977409362793,89,1.0,1 +20089,13,1.0,1,1.5517945289611816,90,1.0,1 +20090,13,1.0,1,1.3087975978851318,91,1.0,1 +20091,13,1.0,1,1.4097962379455566,92,0.0,1 +20092,13,1.0,1,1.7627917528152466,93,1.0,1 +20093,13,1.0,1,1.1387977600097656,94,1.0,1 +20094,13,1.0,1,1.5657942295074463,95,1.0,1 +20095,13,1.0,1,1.4907952547073364,96,1.0,1 +20096,13,1.0,1,1.213797926902771,97,0.0,1 +20097,13,1.0,1,1.6577930450439453,98,0.0,1 +20098,13,0.0,1,1.90378999710083,99,1.0,1 +20099,13,0.0,1,1.4507957696914673,100,0.0,1 +20100,13,1.0,1,1.7917914390563965,101,0.0,1 +20101,13,0.0,1,1.2667980194091797,102,0.0,1 +20102,13,0.0,1,1.6367933750152588,103,0.0,1 +20103,13,1.0,1,1.4607956409454346,104,1.0,1 +20104,13,1.0,1,1.4177961349487305,105,0.0,1 +20105,13,0.0,1,1.7767915725708008,106,0.0,1 +20106,13,1.0,1,1.7357921600341797,107,0.0,1 +20107,13,1.0,1,1.76479172706604,108,1.0,1 +20108,13,1.0,1,1.414796233177185,109,1.0,1 +20109,13,1.0,1,1.2947977781295776,110,1.0,1 +20110,13,1.0,1,1.2327979803085327,111,1.0,1 +20111,13,1.0,1,1.3577969074249268,112,1.0,1 +20112,13,1.0,1,1.5967938899993896,113,0.0,1 +20113,13,0.0,1,1.4587956666946411,114,0.0,1 +20114,13,1.0,1,2.160794734954834,115,0.0,1 +20115,13,1.0,1,1.7107924222946167,116,0.0,1 +20116,13,0.0,1,1.7877914905548096,117,0.0,1 +20117,13,0.0,1,1.2207978963851929,118,0.0,1 +20118,13,0.0,1,1.2237979173660278,119,0.0,1 +20119,13,0.0,1,1.348797082901001,120,0.0,1 +20120,13,0.0,1,1.8457906246185303,121,0.0,1 +20121,13,1.0,1,2.0367889404296875,122,0.0,1 +20122,13,0.0,1,1.558794379234314,123,1.0,1 +20123,13,0.0,1,1.1247977018356323,124,0.0,1 +20124,13,0.0,1,1.3057975769042969,125,0.0,1 +20125,13,1.0,1,1.46379554271698,126,1.0,1 +20126,13,1.0,1,1.2217979431152344,127,1.0,1 +20127,13,1.0,1,1.5447945594787598,128,1.0,1 +20128,13,1.0,1,1.348797082901001,129,1.0,1 +20129,13,1.0,1,1.46379554271698,130,1.0,1 +20130,13,1.0,1,1.271798014640808,131,1.0,1 +20131,13,1.0,1,1.1677978038787842,132,1.0,1 +20132,13,1.0,1,1.4027963876724243,133,0.0,1 +20133,13,1.0,1,1.437795877456665,134,0.0,1 +20134,13,0.0,1,1.3857965469360352,135,1.0,1 +20135,13,0.0,1,1.2527979612350464,136,0.0,1 +20136,13,1.0,1,1.7477920055389404,137,1.0,1 +20137,13,1.0,1,1.5237948894500732,138,1.0,1 +20138,13,1.0,1,1.3257973194122314,139,1.0,1 +20139,13,1.0,1,1.4127962589263916,140,1.0,1 +20140,13,1.0,1,1.5437946319580078,141,1.0,1 +20141,13,1.0,1,1.3957964181900024,142,1.0,1 +20142,13,1.0,1,1.7587918043136597,143,1.0,1 +20143,13,1.0,1,1.5477945804595947,144,1.0,1 +20144,13,1.0,1,1.6177935600280762,145,1.0,1 +20145,13,1.0,1,1.3507970571517944,146,1.0,1 +20146,13,1.0,1,1.6037938594818115,147,1.0,1 +20147,13,1.0,1,1.2767980098724365,148,1.0,1 +20148,13,1.0,1,1.3817965984344482,149,1.0,1 +20149,13,1.0,1,1.1727977991104126,150,1.0,1 +20150,13,1.0,1,1.4747954607009888,151,1.0,1 +20151,13,0.0,1,1.6177935600280762,152,0.0,1 +20152,13,1.0,1,1.5857939720153809,153,1.0,1 +20153,13,1.0,1,1.4647955894470215,154,1.0,1 +20154,13,1.0,1,1.415796160697937,155,1.0,1 +20155,13,1.0,1,1.250797986984253,156,1.0,1 +20156,13,1.0,1,1.4077962636947632,157,0.0,1 +20157,13,1.0,1,1.5387946367263794,158,1.0,1 +20158,13,1.0,1,1.207797884941101,159,1.0,1 +20159,13,0.0,1,1.1707978248596191,160,1.0,1 +20160,13,0.0,1,1.506795048713684,161,0.0,1 +20161,13,0.0,1,1.213797926902771,162,0.0,1 +20162,13,1.0,1,1.4097962379455566,163,0.0,1 +20163,13,1.0,1,2.183795928955078,164,1.0,1 +20164,13,1.0,1,1.6627930402755737,165,0.0,1 +20165,13,0.0,1,1.6937925815582275,166,1.0,1 +20166,13,0.0,1,1.1257977485656738,167,1.0,1 +20167,13,0.0,1,1.392796516418457,168,1.0,1 +20168,13,0.0,1,1.3697967529296875,169,0.0,1 +20169,13,1.0,1,1.6837928295135498,170,1.0,1 +20170,13,1.0,1,1.3307973146438599,171,1.0,1 +20171,13,1.0,1,1.3347972631454468,172,1.0,1 +20172,13,0.0,1,1.2347979545593262,173,0.0,1 +20173,13,1.0,1,1.1847978830337524,174,0.0,1 +20174,13,0.0,1,2.17179536819458,175,1.0,1 +20175,13,0.0,1,1.1387977600097656,176,0.0,1 +20176,13,0.0,1,1.2917977571487427,177,0.0,1 +20177,13,0.0,1,1.7257921695709229,178,0.0,1 +20178,13,0.0,1,1.8317909240722656,179,1.0,1 +20179,13,0.0,1,1.5217947959899902,180,1.0,1 +20180,13,0.0,1,1.1877979040145874,181,0.0,1 +20181,13,1.0,1,1.327797293663025,182,1.0,1 +20182,13,1.0,1,1.3727967739105225,183,1.0,1 +20183,13,1.0,1,1.5617942810058594,184,1.0,1 +20184,13,1.0,1,1.3757966756820679,185,0.0,1 +20185,13,0.0,1,1.6647930145263672,186,1.0,1 +20186,13,0.0,1,1.4587956666946411,187,1.0,1 +20187,13,1.0,1,1.8847901821136475,188,1.0,1 +20188,13,0.0,1,1.2297979593276978,189,1.0,1 +20189,13,0.0,1,1.2547979354858398,190,0.0,1 +20190,13,1.0,1,1.4317959547042847,191,1.0,1 +20191,13,1.0,1,1.243798017501831,192,0.0,1 +20192,13,1.0,1,2.168795108795166,193,1.0,1 +20193,13,1.0,1,1.271798014640808,194,1.0,1 +20194,13,1.0,1,1.246798038482666,195,1.0,1 +20195,13,1.0,1,1.6557931900024414,196,1.0,1 +20196,13,1.0,1,1.3697967529296875,197,1.0,1 +20197,13,1.0,1,1.554794430732727,198,1.0,1 +20198,13,1.0,1,1.1997978687286377,199,1.0,1 +20199,13,1.0,1,1.327797293663025,200,0.0,1 +20200,13,0.0,1,1.3327972888946533,201,0.0,1 +20201,13,1.0,1,1.7507919073104858,202,0.0,1 +20202,13,0.0,1,1.3657968044281006,203,0.0,1 +20203,13,0.0,1,1.1637978553771973,204,0.0,1 +20204,13,0.0,1,1.4067963361740112,205,1.0,1 +20205,13,0.0,1,1.243798017501831,206,0.0,1 +20206,13,0.0,1,1.9877889156341553,207,0.0,1 +20207,13,0.0,1,1.8797903060913086,208,1.0,1 +20208,13,0.0,1,1.244797945022583,209,0.0,1 +20209,13,0.0,1,1.4287960529327393,210,0.0,1 +20210,13,1.0,1,1.367796778678894,211,0.0,1 +20211,13,0.0,1,2.095791816711426,212,0.0,1 +20212,13,0.0,1,1.4547957181930542,213,0.0,1 +20213,13,1.0,1,1.5177948474884033,214,1.0,1 +20214,13,0.0,1,1.5607943534851074,215,0.0,1 +20215,13,1.0,1,1.3537969589233398,216,0.0,1 +20216,13,1.0,1,1.5237948894500732,217,1.0,1 +20217,13,1.0,1,1.4327960014343262,218,1.0,1 +20218,13,1.0,1,1.2637979984283447,219,0.0,1 +20219,13,1.0,1,1.907789945602417,220,1.0,1 +20220,13,1.0,1,1.723792314529419,221,1.0,1 +20221,13,1.0,1,1.2547979354858398,222,0.0,1 +20222,13,1.0,1,2.0367889404296875,223,0.0,1 +20223,13,1.0,1,2.365804433822632,224,1.0,1 +20224,13,1.0,1,1.4277960062026978,225,0.0,1 +20225,13,0.0,1,1.2457979917526245,226,0.0,1 +20226,13,1.0,1,1.9027899503707886,227,0.0,1 +20227,13,1.0,1,1.5427945852279663,228,0.0,1 +20228,13,1.0,1,1.1987979412078857,229,0.0,1 +20229,13,0.0,1,1.118797779083252,230,0.0,1 +20230,13,1.0,1,2.157794713973999,231,1.0,1 +20231,13,1.0,1,1.2697980403900146,232,1.0,1 +20232,13,1.0,1,1.2127978801727295,233,0.0,1 +20233,13,1.0,1,1.4527957439422607,234,1.0,1 +20234,13,1.0,1,1.9397895336151123,235,0.0,1 +20235,13,1.0,1,1.4867953062057495,236,1.0,1 +20236,13,1.0,1,1.3617968559265137,237,1.0,1 +20237,13,1.0,1,1.8377907276153564,238,1.0,1 +20238,13,1.0,1,1.6537930965423584,239,0.0,1 +20239,13,0.0,1,1.1987979412078857,240,1.0,1 +20240,13,0.0,1,1.7737915515899658,241,0.0,1 +20241,13,0.0,1,1.853790521621704,242,0.0,1 +20242,13,1.0,1,1.5167949199676514,243,1.0,1 +20243,13,1.0,1,1.250797986984253,244,1.0,1 +20244,13,1.0,1,1.6667929887771606,245,0.0,1 +20245,13,1.0,1,2.2387986183166504,246,0.0,1 +20246,13,1.0,1,1.7527918815612793,247,1.0,1 +20247,13,1.0,1,1.1957979202270508,248,1.0,1 +20248,13,1.0,1,1.274798035621643,249,1.0,1 +20249,13,1.0,1,1.1627978086471558,250,1.0,1 +20250,13,1.0,1,1.5927939414978027,251,1.0,1 +20251,13,1.0,1,1.297797679901123,252,1.0,1 +20252,13,1.0,1,1.3947964906692505,253,1.0,1 +20253,13,1.0,1,1.2867978811264038,254,0.0,1 +20254,13,1.0,1,1.327797293663025,255,1.0,1 +20255,13,1.0,1,1.4837952852249146,256,0.0,1 +20256,13,0.0,1,2.109792470932007,257,1.0,1 +20257,13,0.0,1,1.2737979888916016,258,0.0,1 +20258,13,1.0,1,1.3427971601486206,259,1.0,1 +20259,13,1.0,1,1.9947887659072876,260,0.0,1 +20260,13,1.0,1,2.0587902069091797,261,1.0,1 +20261,13,1.0,1,1.4927952289581299,262,1.0,1 +20262,13,1.0,1,1.1677978038787842,263,1.0,1 +20263,13,1.0,1,2.3578040599823,264,1.0,1 +20264,13,1.0,1,1.6397933959960938,265,1.0,1 +20265,13,1.0,1,1.485795259475708,266,1.0,1 +20266,13,1.0,1,1.2457979917526245,267,1.0,1 +20267,13,1.0,1,1.2677980661392212,268,1.0,1 +20268,13,1.0,1,1.2567980289459229,269,1.0,1 +20269,13,1.0,1,1.5097949504852295,270,1.0,1 +20270,13,1.0,1,1.5677943229675293,271,1.0,1 +20271,13,1.0,1,1.9617891311645508,272,1.0,1 +20272,13,1.0,1,1.5487945079803467,273,1.0,1 +20273,13,1.0,1,1.414796233177185,274,1.0,1 +20274,13,1.0,1,1.1987979412078857,275,0.0,1 +20275,13,0.0,1,1.6167936325073242,276,0.0,1 +20276,13,0.0,1,1.7807915210723877,277,0.0,1 +20277,13,0.0,1,1.5997939109802246,278,0.0,1 +20278,13,0.0,1,1.8257908821105957,279,0.0,1 +20279,13,1.0,1,1.5227948427200317,280,1.0,1 +20280,13,1.0,1,1.3537969589233398,281,1.0,1 +20281,13,1.0,1,1.531794786453247,282,0.0,1 +20282,13,1.0,1,1.5177948474884033,283,0.0,1 +20283,13,1.0,1,1.8667904138565063,284,0.0,1 +20284,13,0.0,1,1.9367895126342773,285,0.0,1 +20285,13,1.0,1,1.6367933750152588,286,0.0,1 +20286,13,1.0,1,1.7417919635772705,287,1.0,1 +20287,13,1.0,1,1.467795491218567,288,1.0,1 +20288,13,1.0,1,1.3347972631454468,289,1.0,1 +20289,13,1.0,1,1.5257947444915771,290,1.0,1 +20290,13,1.0,1,1.1717978715896606,291,0.0,1 +20291,13,0.0,1,1.531794786453247,292,0.0,1 +20292,13,1.0,1,2.0117886066436768,293,1.0,1 +20293,13,1.0,1,1.3547970056533813,294,1.0,1 +20294,13,1.0,1,1.30179762840271,295,1.0,1 +20295,13,1.0,1,1.3647968769073486,296,1.0,1 +20296,13,1.0,1,1.8467906713485718,297,1.0,1 +20297,13,1.0,1,1.2837978601455688,298,1.0,1 +20298,13,1.0,1,1.3777966499328613,299,0.0,1 +20299,13,0.0,1,1.7397921085357666,300,1.0,1 +20300,13,0.0,1,1.2117979526519775,301,1.0,1 +20301,13,0.0,1,1.529794692993164,302,0.0,1 +20302,13,1.0,1,1.5477945804595947,303,1.0,1 +20303,13,1.0,1,1.9917888641357422,304,1.0,1 +20304,13,1.0,1,1.2357980012893677,305,1.0,1 +20305,13,1.0,1,1.1977978944778442,306,1.0,1 +20306,13,1.0,1,1.2687979936599731,307,1.0,1 +20307,13,1.0,1,1.4557956457138062,308,0.0,1 +20308,13,0.0,1,1.3537969589233398,309,1.0,1 +20309,13,0.0,1,1.6077938079833984,310,0.0,1 +20310,13,0.0,1,1.2117979526519775,311,0.0,1 +20311,13,0.0,1,1.118797779083252,312,0.0,1 +20312,13,1.0,1,1.393796443939209,313,0.0,1 +20313,13,0.0,1,1.5027951002120972,314,0.0,1 +20314,13,1.0,1,1.6197936534881592,315,1.0,1 +20315,13,1.0,1,1.2937977313995361,316,0.0,1 +20316,13,0.0,1,2.0307888984680176,317,0.0,1 +20317,13,0.0,1,1.9427894353866577,318,0.0,1 +20318,13,1.0,1,1.676792860031128,319,1.0,1 +20319,13,1.0,1,1.3727967739105225,320,1.0,1 +20320,13,1.0,1,1.3837965726852417,321,1.0,1 +20321,13,1.0,1,1.462795615196228,322,1.0,1 +20322,13,1.0,1,1.182797908782959,323,0.0,1 +20323,13,0.0,1,1.811791181564331,324,0.0,1 +20324,13,0.0,1,1.5087950229644775,325,0.0,1 +20325,13,0.0,1,2.0117886066436768,326,1.0,1 +20326,13,0.0,1,1.466795563697815,327,0.0,1 +20327,13,1.0,1,1.7157924175262451,328,1.0,1 +20328,13,1.0,1,1.6167936325073242,329,1.0,1 +20329,13,1.0,1,1.3687968254089355,330,1.0,1 +20330,13,1.0,1,1.4697954654693604,331,1.0,1 +20331,13,1.0,1,1.6397933959960938,332,1.0,1 +20332,13,1.0,1,1.1727977991104126,333,1.0,1 +20333,13,1.0,1,1.6607930660247803,334,1.0,1 +20334,13,1.0,1,1.6037938594818115,335,1.0,1 +20335,13,1.0,1,1.176797866821289,336,0.0,1 +20336,13,0.0,1,1.4617955684661865,337,0.0,1 +20337,13,0.0,1,1.7667917013168335,338,0.0,1 +20338,13,1.0,1,2.2748003005981445,339,1.0,1 +20339,13,1.0,1,1.9827889204025269,340,1.0,1 +20340,13,1.0,1,1.4277960062026978,341,0.0,1 +20341,13,1.0,1,1.5677943229675293,342,1.0,1 +20342,13,1.0,1,1.4947952032089233,343,0.0,1 +20343,13,1.0,1,1.7057924270629883,344,1.0,1 +20344,13,1.0,1,1.1647977828979492,345,0.0,1 +20345,13,1.0,1,1.8187910318374634,346,1.0,1 +20346,13,1.0,1,1.3687968254089355,347,0.0,1 +20347,13,0.0,1,1.6997926235198975,348,0.0,1 +20348,13,1.0,1,1.9617891311645508,349,1.0,1 +20349,13,1.0,1,1.650793194770813,350,0.0,1 +20350,13,0.0,1,1.240797996520996,351,0.0,1 +20351,13,0.0,1,1.210797905921936,352,1.0,1 +20352,13,0.0,1,1.207797884941101,353,0.0,1 +20353,13,0.0,1,1.484795331954956,354,0.0,1 +20354,13,0.0,1,2.133793592453003,355,1.0,1 +20355,13,0.0,1,1.3087975978851318,356,0.0,1 +20356,13,0.0,1,1.371796727180481,357,0.0,1 +20357,13,1.0,1,1.6417932510375977,358,0.0,1 +20358,13,0.0,1,1.4977951049804688,359,0.0,1 +20359,13,1.0,1,1.5057950019836426,360,1.0,1 +20360,13,1.0,1,1.3877965211868286,361,1.0,1 +20361,13,1.0,1,1.6097936630249023,362,0.0,1 +20362,13,1.0,1,1.3557969331741333,363,0.0,1 +20363,13,1.0,1,1.7107924222946167,364,1.0,1 +20364,13,1.0,1,1.8947900533676147,365,1.0,1 +20365,13,1.0,1,1.1047977209091187,366,1.0,1 +20366,13,1.0,1,1.1487977504730225,367,1.0,1 +20367,13,1.0,1,1.1937978267669678,368,1.0,1 +20368,13,1.0,1,1.6977925300598145,369,0.0,1 +20369,13,1.0,1,1.419796109199524,370,1.0,1 +20370,13,1.0,1,1.2947977781295776,371,0.0,1 +20371,13,0.0,1,1.3557969331741333,372,0.0,1 +20372,13,1.0,1,1.7577917575836182,373,1.0,1 +20373,13,1.0,1,1.2017978429794312,374,0.0,1 +20374,13,1.0,1,1.2877978086471558,375,0.0,1 +20375,13,0.0,1,1.5827940702438354,376,0.0,1 +20376,13,0.0,1,1.7587918043136597,377,1.0,1 +20377,13,0.0,1,1.6177935600280762,378,1.0,1 +20378,13,0.0,1,1.2247979640960693,379,1.0,1 +20379,13,0.0,1,1.4237960577011108,380,0.0,1 +20380,13,1.0,1,2.2267980575561523,381,1.0,1 +20381,13,1.0,1,1.371796727180481,382,0.0,1 +20382,13,1.0,1,1.856790542602539,383,1.0,1 +20383,13,1.0,1,1.507794976234436,384,1.0,1 +20384,13,1.0,1,1.8017911911010742,385,0.0,1 +20385,13,0.0,1,1.9927887916564941,386,1.0,1 +20386,13,0.0,1,1.4457957744598389,387,1.0,1 +20387,13,0.0,1,1.3387972116470337,388,0.0,1 +20388,13,0.0,1,1.2727980613708496,389,0.0,1 +20389,13,1.0,1,1.4737954139709473,390,1.0,1 +20390,13,1.0,1,1.8247909545898438,391,1.0,1 +20391,13,1.0,1,1.1387977600097656,392,1.0,1 +20392,13,0.0,1,1.2837978601455688,393,0.0,1 +20393,13,1.0,1,1.7477920055389404,394,1.0,1 +20394,13,1.0,1,1.2707979679107666,395,0.0,1 +20395,13,1.0,1,1.623793601989746,396,1.0,1 +20396,13,1.0,1,1.3127975463867188,397,1.0,1 +20397,13,1.0,1,1.812791109085083,398,1.0,1 +20398,13,1.0,1,1.6117937564849854,399,1.0,1 +20399,13,1.0,1,1.1857978105545044,400,1.0,1 +20400,13,1.0,1,1.371796727180481,401,1.0,1 +20401,13,1.0,1,1.2987977266311646,402,0.0,1 +20402,13,1.0,1,1.8527905941009521,403,1.0,1 +20403,13,1.0,1,1.253798007965088,404,0.0,1 +20404,13,0.0,1,1.462795615196228,405,0.0,1 +20405,13,0.0,1,1.834790825843811,406,0.0,1 +20406,13,0.0,1,1.4237960577011108,407,0.0,1 +20407,13,1.0,1,1.459795594215393,408,1.0,1 +20408,13,1.0,1,1.4237960577011108,409,1.0,1 +20409,13,1.0,1,1.2277979850769043,410,1.0,1 +20410,13,1.0,1,1.2397979497909546,411,1.0,1 +20411,13,1.0,1,1.3297972679138184,412,0.0,1 +20412,13,1.0,1,1.4607956409454346,413,1.0,1 +20413,13,1.0,1,1.3857965469360352,414,1.0,1 +20414,13,1.0,1,1.5457944869995117,415,1.0,1 +20415,13,1.0,1,1.213797926902771,416,1.0,1 +20416,13,1.0,1,1.180797815322876,417,0.0,1 +20417,13,1.0,1,1.528794765472412,418,1.0,1 +20418,13,1.0,1,1.2377979755401611,419,0.0,1 +20419,13,1.0,1,1.8517906665802002,420,1.0,1 +20420,13,1.0,1,1.2517980337142944,421,0.0,1 +20421,13,0.0,1,1.5007951259613037,422,1.0,1 +20422,13,0.0,1,1.3757966756820679,423,1.0,1 +20423,13,0.0,1,1.207797884941101,424,1.0,1 +20424,13,0.0,1,2.0297887325286865,425,0.0,1 +20425,13,0.0,1,1.2127978801727295,426,1.0,1 +20426,13,0.0,1,1.2647980451583862,427,0.0,1 +20427,13,0.0,1,1.6407933235168457,428,0.0,1 +20428,13,1.0,1,1.7317922115325928,429,0.0,1 +20429,13,1.0,1,1.467795491218567,430,0.0,1 +20430,13,0.0,1,1.672792911529541,431,1.0,1 +20431,13,0.0,1,1.2367979288101196,432,1.0,1 +20432,13,0.0,1,1.296797752380371,433,1.0,1 +20433,13,0.0,1,1.207797884941101,434,0.0,1 +20434,13,0.0,1,1.6427932977676392,435,0.0,1 +20435,13,0.0,1,1.8947900533676147,436,1.0,1 +20436,13,0.0,1,1.300797700881958,437,0.0,1 +20437,13,1.0,1,1.4277960062026978,438,1.0,1 +20438,13,1.0,1,1.6167936325073242,439,1.0,1 +20439,13,1.0,1,1.5737941265106201,440,0.0,1 +20440,13,0.0,1,1.5407946109771729,441,0.0,1 +20441,13,0.0,1,1.4497957229614258,442,1.0,1 +20442,13,0.0,1,1.7667917013168335,443,0.0,1 +20443,13,0.0,1,1.8817901611328125,444,0.0,1 +20444,13,1.0,1,1.466795563697815,445,0.0,1 +20445,13,0.0,1,1.3567969799041748,446,0.0,1 +20446,13,1.0,1,1.3567969799041748,447,1.0,1 +20447,13,1.0,1,1.4657955169677734,448,1.0,1 +20448,13,1.0,1,1.5257947444915771,449,1.0,1 +20449,13,1.0,1,1.2257978916168213,450,0.0,1 +20450,13,1.0,1,1.7147923707962036,451,1.0,1 +20451,13,1.0,1,1.3877965211868286,452,0.0,1 +20452,13,1.0,1,1.3537969589233398,453,1.0,1 +20453,13,1.0,1,1.2637979984283447,454,1.0,1 +20454,13,1.0,1,1.326797366142273,455,0.0,1 +20455,13,1.0,1,1.584794044494629,456,1.0,1 +20456,13,1.0,1,1.4427958726882935,457,1.0,1 +20457,13,1.0,1,1.2007979154586792,458,1.0,1 +20458,13,1.0,1,1.8837902545928955,459,0.0,1 +20459,13,0.0,1,1.30179762840271,460,1.0,1 +20460,13,0.0,1,1.621793508529663,461,0.0,1 +20461,13,1.0,1,2.0567898750305176,462,0.0,1 +20462,13,0.0,1,1.4127962589263916,463,0.0,1 +20463,13,0.0,1,1.2007979154586792,464,0.0,1 +20464,13,0.0,1,2.0787911415100098,465,0.0,1 +20465,13,1.0,1,1.4067963361740112,466,0.0,1 +20466,13,0.0,1,1.2957977056503296,467,0.0,1 +20467,13,0.0,1,1.2647980451583862,468,1.0,1 +20468,13,0.0,1,1.253798007965088,469,0.0,1 +20469,13,0.0,1,1.240797996520996,470,0.0,1 +20470,13,1.0,1,2.0607900619506836,471,1.0,1 +20471,13,1.0,1,1.6597931385040283,472,1.0,1 +20472,13,1.0,1,1.8297908306121826,473,1.0,1 +20473,13,1.0,1,1.459795594215393,474,1.0,1 +20474,13,1.0,1,1.3287973403930664,475,1.0,1 +20475,13,1.0,1,1.4577956199645996,476,0.0,1 +20476,13,0.0,1,1.5957939624786377,477,1.0,1 +20477,13,0.0,1,1.4477957487106323,478,0.0,1 +20478,13,1.0,1,1.7557919025421143,479,1.0,1 +20479,13,1.0,1,1.598793864250183,480,0.0,1 +20480,13,0.0,1,1.6637930870056152,481,1.0,1 +20481,13,0.0,1,1.2677980661392212,482,1.0,1 +20482,13,0.0,1,1.274798035621643,483,0.0,1 +20483,13,0.0,1,1.7727916240692139,484,0.0,1 +20484,13,1.0,1,1.6967926025390625,485,1.0,1 +20485,13,1.0,1,1.4427958726882935,486,1.0,1 +20486,13,1.0,1,1.5627943277359009,487,0.0,1 +20487,13,1.0,1,1.8927900791168213,488,1.0,1 +20488,13,1.0,1,1.4727954864501953,489,1.0,1 +20489,13,1.0,1,1.9157898426055908,490,1.0,1 +20490,13,1.0,1,1.4727954864501953,491,1.0,1 +20491,13,1.0,1,1.1947978734970093,492,1.0,1 +20492,13,1.0,1,1.7607917785644531,493,0.0,1 +20493,13,0.0,1,1.1967978477478027,494,1.0,1 +20494,13,0.0,1,1.1487977504730225,495,0.0,1 +20495,13,1.0,1,1.5307947397232056,496,1.0,1 +20496,13,0.0,1,1.2277979850769043,497,1.0,1 +20497,13,0.0,1,1.3187974691390991,498,0.0,1 +20498,13,1.0,1,1.2027978897094727,499,1.0,1 +20499,13,1.0,1,1.279797911643982,500,1.0,1 +20500,13,1.0,2,2.139793872833252,1,1.0,1 +20501,13,1.0,2,1.2737979888916016,2,0.0,1 +20502,13,0.0,2,1.344797134399414,3,1.0,1 +20503,13,0.0,2,1.2837978601455688,4,0.0,1 +20504,13,1.0,2,2.2798004150390625,5,1.0,1 +20505,13,1.0,2,1.1937978267669678,6,1.0,1 +20506,13,0.0,2,1.669792890548706,7,1.0,1 +20507,13,0.0,2,2.342803478240967,8,1.0,1 +20508,13,1.0,2,1.4247961044311523,9,0.0,1 +20509,13,0.0,2,1.4177961349487305,10,0.0,1 +20510,13,1.0,2,1.7577917575836182,11,0.0,1 +20511,13,0.0,2,2.201796770095825,12,0.0,1 +20512,13,1.0,2,2.374804973602295,13,1.0,1 +20513,13,1.0,2,1.322797417640686,14,1.0,1 +20514,13,1.0,2,1.4577956199645996,15,0.0,1 +20515,13,0.0,2,1.5657942295074463,16,1.0,1 +20516,13,0.0,2,1.2337979078292847,17,0.0,1 +20517,13,0.0,2,1.2277979850769043,18,0.0,1 +20518,13,1.0,2,1.7557919025421143,19,0.0,1 +20519,13,1.0,2,1.7857913970947266,20,1.0,1 +20520,13,1.0,2,1.1917978525161743,21,1.0,1 +20521,13,1.0,2,1.4137961864471436,22,0.0,1 +20522,13,0.0,2,1.7117924690246582,23,0.0,1 +20523,13,0.0,2,2.0257885456085205,24,0.0,1 +20524,13,1.0,2,2.188796043395996,25,0.0,1 +20525,13,1.0,2,1.397796392440796,26,1.0,1 +20526,13,1.0,2,1.4557956457138062,27,0.0,1 +20527,13,0.0,2,1.41179621219635,28,0.0,1 +20528,13,1.0,2,2.427807331085205,29,1.0,1 +20529,13,0.0,2,1.4397958517074585,30,0.0,1 +20530,13,1.0,2,1.3217973709106445,31,1.0,1 +20531,13,1.0,2,1.392796516418457,32,1.0,1 +20532,13,1.0,2,1.4877952337265015,33,1.0,1 +20533,13,1.0,2,1.213797926902771,34,0.0,1 +20534,13,1.0,2,2.3318028450012207,35,1.0,1 +20535,13,1.0,2,1.2487980127334595,36,1.0,1 +20536,13,1.0,2,1.2367979288101196,37,1.0,1 +20537,13,1.0,2,1.3597968816757202,38,1.0,1 +20538,13,1.0,2,1.349797010421753,39,0.0,1 +20539,13,1.0,2,2.1387939453125,40,0.0,1 +20540,13,0.0,2,1.1587977409362793,41,0.0,1 +20541,13,0.0,2,1.4427958726882935,42,0.0,1 +20542,13,0.0,2,1.2247979640960693,43,0.0,1 +20543,13,0.0,2,1.5507944822311401,44,0.0,1 +20544,13,1.0,2,1.484795331954956,45,1.0,1 +20545,13,1.0,2,1.1977978944778442,46,0.0,1 +20546,13,0.0,2,1.4217960834503174,47,1.0,1 +20547,13,0.0,2,1.3367972373962402,48,0.0,1 +20548,13,1.0,2,1.859790563583374,49,0.0,1 +20549,13,0.0,2,1.1117976903915405,50,0.0,1 +20550,13,1.0,2,1.8487906455993652,51,1.0,1 +20551,13,1.0,2,1.4247961044311523,52,0.0,1 +20552,13,0.0,2,1.1677978038787842,53,1.0,1 +20553,13,0.0,2,1.1857978105545044,54,1.0,1 +20554,13,0.0,2,1.327797293663025,55,1.0,1 +20555,13,0.0,2,1.3567969799041748,56,0.0,1 +20556,13,1.0,2,1.9197897911071777,57,0.0,1 +20557,13,1.0,2,1.9737889766693115,58,1.0,1 +20558,13,1.0,2,1.8047912120819092,59,0.0,1 +20559,13,0.0,2,1.3347972631454468,60,1.0,1 +20560,13,0.0,2,1.213797926902771,61,0.0,1 +20561,13,1.0,2,1.813791036605835,62,1.0,1 +20562,13,1.0,2,1.3337972164154053,63,1.0,1 +20563,13,1.0,2,1.1277977228164673,64,1.0,1 +20564,13,1.0,2,1.149797797203064,65,0.0,1 +20565,13,0.0,2,1.2697980403900146,66,0.0,1 +20566,13,0.0,2,1.5247948169708252,67,0.0,1 +20567,13,0.0,2,1.628793478012085,68,1.0,1 +20568,13,0.0,2,1.2117979526519775,69,0.0,1 +20569,13,0.0,2,1.7957913875579834,70,1.0,1 +20570,13,0.0,2,1.2207978963851929,71,0.0,1 +20571,13,0.0,2,1.6597931385040283,72,0.0,1 +20572,13,1.0,2,1.8357908725738525,73,1.0,1 +20573,13,1.0,2,1.4617955684661865,74,0.0,1 +20574,13,1.0,2,1.3727967739105225,75,1.0,1 +20575,13,1.0,2,1.4707955121994019,76,0.0,1 +20576,13,1.0,2,1.4797953367233276,77,0.0,1 +20577,13,0.0,2,1.2327979803085327,78,1.0,1 +20578,13,0.0,2,1.1547977924346924,79,1.0,1 +20579,13,0.0,2,1.1647977828979492,80,0.0,1 +20580,13,0.0,2,1.4787954092025757,81,0.0,1 +20581,13,1.0,2,1.746791958808899,82,0.0,1 +20582,13,1.0,2,1.7707916498184204,83,1.0,1 +20583,13,1.0,2,1.5237948894500732,84,1.0,1 +20584,13,1.0,2,1.6487932205200195,85,0.0,1 +20585,13,0.0,2,1.7727916240692139,86,0.0,1 +20586,13,0.0,2,1.2607979774475098,87,1.0,1 +20587,13,0.0,2,1.1307977437973022,88,1.0,1 +20588,13,0.0,2,1.207797884941101,89,0.0,1 +20589,13,1.0,2,1.5157948732376099,90,1.0,1 +20590,13,1.0,2,1.3847966194152832,91,1.0,1 +20591,13,1.0,2,1.4277960062026978,92,1.0,1 +20592,13,0.0,2,1.9377894401550293,93,0.0,1 +20593,13,1.0,2,1.8107911348342896,94,1.0,1 +20594,13,1.0,2,1.6327934265136719,95,1.0,1 +20595,13,1.0,2,1.371796727180481,96,0.0,1 +20596,13,0.0,2,1.9797890186309814,97,0.0,1 +20597,13,0.0,2,1.3067976236343384,98,1.0,1 +20598,13,0.0,2,1.907789945602417,99,1.0,1 +20599,13,0.0,2,1.4107962846755981,100,0.0,1 +20600,13,0.0,2,1.7837915420532227,101,0.0,1 +20601,13,0.0,2,1.4057962894439697,102,1.0,1 +20602,13,0.0,2,1.3617968559265137,103,1.0,1 +20603,13,0.0,2,1.3837965726852417,104,1.0,1 +20604,13,0.0,2,1.808791160583496,105,0.0,1 +20605,13,1.0,2,1.606793761253357,106,0.0,1 +20606,13,0.0,2,1.296797752380371,107,0.0,1 +20607,13,1.0,2,1.794791340827942,108,0.0,1 +20608,13,0.0,2,2.3418033123016357,109,0.0,1 +20609,13,0.0,2,1.3347972631454468,110,0.0,1 +20610,13,0.0,2,1.5787941217422485,111,1.0,1 +20611,13,0.0,2,1.5157948732376099,112,0.0,1 +20612,13,0.0,2,1.2617980241775513,113,0.0,1 +20613,13,0.0,2,1.4497957229614258,114,0.0,1 +20614,13,0.0,2,1.2647980451583862,115,0.0,1 +20615,13,0.0,2,1.3577969074249268,116,0.0,1 +20616,13,0.0,2,2.0217883586883545,117,0.0,1 +20617,13,0.0,2,1.2457979917526245,118,0.0,1 +20618,13,1.0,2,1.3207974433898926,119,0.0,1 +20619,13,0.0,2,2.0177884101867676,120,0.0,1 +20620,13,0.0,2,1.4097962379455566,121,0.0,1 +20621,13,1.0,2,2.11879301071167,122,1.0,1 +20622,13,1.0,2,1.529794692993164,123,0.0,1 +20623,13,1.0,2,1.2877978086471558,124,1.0,1 +20624,13,1.0,2,1.319797396659851,125,1.0,1 +20625,13,1.0,2,1.6527931690216064,126,1.0,1 +20626,13,1.0,2,1.1317977905273438,127,1.0,1 +20627,13,1.0,2,1.5197948217391968,128,1.0,1 +20628,13,1.0,2,1.3887965679168701,129,0.0,1 +20629,13,1.0,2,1.7607917785644531,130,0.0,1 +20630,13,1.0,2,1.698792576789856,131,0.0,1 +20631,13,1.0,2,1.765791654586792,132,0.0,1 +20632,13,0.0,2,1.8517906665802002,133,0.0,1 +20633,13,0.0,2,1.2847979068756104,134,0.0,1 +20634,13,0.0,2,1.4497957229614258,135,0.0,1 +20635,13,0.0,2,1.531794786453247,136,0.0,1 +20636,13,0.0,2,1.3137974739074707,137,0.0,1 +20637,13,0.0,2,1.5597944259643555,138,1.0,1 +20638,13,0.0,2,1.5417945384979248,139,0.0,1 +20639,13,0.0,2,1.3647968769073486,140,0.0,1 +20640,13,1.0,2,2.0297887325286865,141,1.0,1 +20641,13,1.0,2,1.6007938385009766,142,1.0,1 +20642,13,1.0,2,1.4917951822280884,143,1.0,1 +20643,13,1.0,2,1.2267979383468628,144,0.0,1 +20644,13,1.0,2,1.7287921905517578,145,0.0,1 +20645,13,0.0,2,1.8757903575897217,146,0.0,1 +20646,13,0.0,2,1.584794044494629,147,1.0,1 +20647,13,0.0,2,1.4087963104248047,148,0.0,1 +20648,13,0.0,2,1.8067911863327026,149,1.0,1 +20649,13,0.0,2,1.4497957229614258,150,1.0,1 +20650,13,0.0,2,1.4507957696914673,151,1.0,1 +20651,13,0.0,2,1.1727977991104126,152,1.0,1 +20652,13,0.0,2,1.8757903575897217,153,0.0,1 +20653,13,1.0,2,1.6167936325073242,154,0.0,1 +20654,13,0.0,2,1.4647955894470215,155,0.0,1 +20655,13,1.0,2,1.3137974739074707,156,1.0,1 +20656,13,1.0,2,1.219797968864441,157,1.0,1 +20657,13,1.0,2,1.1597977876663208,158,0.0,1 +20658,13,1.0,2,1.4937951564788818,159,0.0,1 +20659,13,0.0,2,1.2087979316711426,160,1.0,1 +20660,13,0.0,2,1.6907926797866821,161,1.0,1 +20661,13,0.0,2,1.3557969331741333,162,1.0,1 +20662,13,0.0,2,1.3517969846725464,163,0.0,1 +20663,13,0.0,2,2.0597901344299316,164,0.0,1 +20664,13,1.0,2,1.2487980127334595,165,0.0,1 +20665,13,0.0,2,1.5657942295074463,166,1.0,1 +20666,13,0.0,2,1.3117974996566772,167,1.0,1 +20667,13,0.0,2,1.1567977666854858,168,0.0,1 +20668,13,0.0,2,1.6617929935455322,169,1.0,1 +20669,13,0.0,2,1.2877978086471558,170,0.0,1 +20670,13,1.0,2,1.2647980451583862,171,0.0,1 +20671,13,0.0,2,1.1047977209091187,172,1.0,1 +20672,13,0.0,2,1.1727977991104126,173,1.0,1 +20673,13,0.0,2,1.207797884941101,174,0.0,1 +20674,13,0.0,2,1.2927978038787842,175,1.0,1 +20675,13,0.0,2,1.3347972631454468,176,0.0,1 +20676,13,1.0,2,1.5627943277359009,177,0.0,1 +20677,13,1.0,2,1.7267922163009644,178,1.0,1 +20678,13,1.0,2,1.2587980031967163,179,1.0,1 +20679,13,1.0,2,1.9947887659072876,180,1.0,1 +20680,13,1.0,2,1.4047963619232178,181,1.0,1 +20681,13,1.0,2,1.485795259475708,182,0.0,1 +20682,13,1.0,2,1.4717954397201538,183,1.0,1 +20683,13,1.0,2,1.5437946319580078,184,1.0,1 +20684,13,1.0,2,1.6367933750152588,185,1.0,1 +20685,13,1.0,2,1.1607978343963623,186,0.0,1 +20686,13,0.0,2,1.4547957181930542,187,1.0,1 +20687,13,0.0,2,1.4257960319519043,188,0.0,1 +20688,13,0.0,2,1.4007964134216309,189,1.0,1 +20689,13,0.0,2,1.1607978343963623,190,0.0,1 +20690,13,1.0,2,1.8697903156280518,191,0.0,1 +20691,13,0.0,2,1.6807928085327148,192,0.0,1 +20692,13,1.0,2,1.3887965679168701,193,0.0,1 +20693,13,0.0,2,1.5647943019866943,194,0.0,1 +20694,13,1.0,2,1.9007899761199951,195,1.0,1 +20695,13,1.0,2,1.2287979125976562,196,0.0,1 +20696,13,0.0,2,1.2127978801727295,197,0.0,1 +20697,13,1.0,2,2.2067971229553223,198,0.0,1 +20698,13,0.0,2,1.9657890796661377,199,1.0,1 +20699,13,0.0,2,1.2597980499267578,200,0.0,1 +20700,13,0.0,2,1.3887965679168701,201,0.0,1 +20701,13,0.0,2,1.6647930145263672,202,0.0,1 +20702,13,1.0,2,1.5607943534851074,203,0.0,1 +20703,13,0.0,2,1.3607969284057617,204,1.0,1 +20704,13,0.0,2,1.6367933750152588,205,0.0,1 +20705,13,0.0,2,1.6857926845550537,206,1.0,1 +20706,13,0.0,2,1.742792010307312,207,0.0,1 +20707,13,0.0,2,1.8197910785675049,208,0.0,1 +20708,13,0.0,2,1.2257978916168213,209,0.0,1 +20709,13,0.0,2,1.646793246269226,210,0.0,1 +20710,13,0.0,2,1.7227922677993774,211,1.0,1 +20711,13,0.0,2,1.1397978067398071,212,0.0,1 +20712,13,0.0,2,1.672792911529541,213,0.0,1 +20713,13,0.0,2,1.3357971906661987,214,1.0,1 +20714,13,0.0,2,1.4977951049804688,215,1.0,1 +20715,13,0.0,2,1.467795491218567,216,0.0,1 +20716,13,0.0,2,1.2097978591918945,217,0.0,1 +20717,13,0.0,2,2.0647902488708496,218,0.0,1 +20718,13,0.0,2,1.4237960577011108,219,0.0,1 +20719,13,0.0,2,1.5127949714660645,220,1.0,1 +20720,13,0.0,2,1.4997950792312622,221,1.0,1 +20721,13,0.0,2,1.481795310974121,222,0.0,1 +20722,13,0.0,2,1.1447978019714355,223,0.0,1 +20723,13,0.0,2,1.6327934265136719,224,0.0,1 +20724,13,0.0,2,2.0317888259887695,225,0.0,1 +20725,13,0.0,2,2.3498036861419678,226,0.0,1 +20726,13,1.0,2,2.149794340133667,227,0.0,1 +20727,13,0.0,2,1.2957977056503296,228,1.0,1 +20728,13,0.0,2,2.113792657852173,229,1.0,1 +20729,13,0.0,2,1.1147977113723755,230,0.0,1 +20730,13,0.0,2,1.8007912635803223,231,0.0,1 +20731,13,0.0,2,1.4927952289581299,232,1.0,1 +20732,13,0.0,2,1.326797366142273,233,1.0,1 +20733,13,0.0,2,1.2997976541519165,234,0.0,1 +20734,13,0.0,2,1.7827914953231812,235,1.0,1 +20735,13,0.0,2,1.0917977094650269,236,1.0,1 +20736,13,0.0,2,1.4287960529327393,237,0.0,1 +20737,13,0.0,2,1.3427971601486206,238,0.0,1 +20738,13,0.0,2,1.5437946319580078,239,0.0,1 +20739,13,1.0,2,1.2577979564666748,240,1.0,1 +20740,13,1.0,2,2.000788688659668,241,1.0,1 +20741,13,1.0,2,1.3127975463867188,242,1.0,1 +20742,13,1.0,2,1.2187979221343994,243,1.0,1 +20743,13,1.0,2,1.3327972888946533,244,1.0,1 +20744,13,1.0,2,1.2017978429794312,245,0.0,1 +20745,13,1.0,2,2.2547993659973145,246,0.0,1 +20746,13,0.0,2,1.2367979288101196,247,1.0,1 +20747,13,0.0,2,1.146797776222229,248,0.0,1 +20748,13,0.0,2,1.623793601989746,249,1.0,1 +20749,13,0.0,2,1.3057975769042969,250,0.0,1 +20750,13,1.0,2,1.6627930402755737,251,1.0,1 +20751,13,1.0,2,2.0707907676696777,252,1.0,1 +20752,13,1.0,2,1.5857939720153809,253,1.0,1 +20753,13,1.0,2,1.274798035621643,254,1.0,1 +20754,13,1.0,2,1.3327972888946533,255,1.0,1 +20755,13,1.0,2,1.217797875404358,256,1.0,1 +20756,13,1.0,2,1.5887939929962158,257,1.0,1 +20757,13,1.0,2,2.0377891063690186,258,1.0,1 +20758,13,1.0,2,1.7937912940979004,259,0.0,1 +20759,13,0.0,2,1.1857978105545044,260,0.0,1 +20760,13,0.0,2,1.7837915420532227,261,1.0,1 +20761,13,0.0,2,1.2187979221343994,262,0.0,1 +20762,13,0.0,2,1.326797366142273,263,0.0,1 +20763,13,1.0,2,1.481795310974121,264,0.0,1 +20764,13,0.0,2,1.2597980499267578,265,1.0,1 +20765,13,0.0,2,1.4107962846755981,266,1.0,1 +20766,13,0.0,2,1.2047978639602661,267,0.0,1 +20767,13,1.0,2,1.3597968816757202,268,0.0,1 +20768,13,0.0,2,1.9427894353866577,269,0.0,1 +20769,13,0.0,2,1.3887965679168701,270,0.0,1 +20770,13,1.0,2,1.9707890748977661,271,1.0,1 +20771,13,1.0,2,1.533794641494751,272,0.0,1 +20772,13,1.0,2,1.367796778678894,273,1.0,1 +20773,13,1.0,2,1.6087937355041504,274,0.0,1 +20774,13,0.0,2,1.6577930450439453,275,1.0,1 +20775,13,0.0,2,1.6747928857803345,276,1.0,1 +20776,13,0.0,2,1.581794023513794,277,1.0,1 +20777,13,0.0,2,1.9697890281677246,278,0.0,1 +20778,13,0.0,2,2.2617995738983154,279,1.0,1 +20779,13,0.0,2,1.1647977828979492,280,1.0,1 +20780,13,0.0,2,1.2217979431152344,281,0.0,1 +20781,13,0.0,2,1.8697903156280518,282,0.0,1 +20782,13,1.0,2,1.4327960014343262,283,1.0,1 +20783,13,1.0,2,1.532794713973999,284,1.0,1 +20784,13,1.0,2,1.2337979078292847,285,1.0,1 +20785,13,1.0,2,1.3737967014312744,286,1.0,1 +20786,13,1.0,2,1.4397958517074585,287,0.0,1 +20787,13,0.0,2,1.7037925720214844,288,0.0,1 +20788,13,0.0,2,1.5657942295074463,289,0.0,1 +20789,13,1.0,2,1.3577969074249268,290,1.0,1 +20790,13,1.0,2,1.4927952289581299,291,1.0,1 +20791,13,1.0,2,1.1547977924346924,292,1.0,1 +20792,13,1.0,2,1.3067976236343384,293,1.0,1 +20793,13,1.0,2,1.2687979936599731,294,0.0,1 +20794,13,1.0,2,1.6097936630249023,295,1.0,1 +20795,13,1.0,2,1.5267947912216187,296,0.0,1 +20796,13,1.0,2,1.247797966003418,297,0.0,1 +20797,13,0.0,2,1.5227948427200317,298,0.0,1 +20798,13,1.0,2,1.6617929935455322,299,1.0,1 +20799,13,1.0,2,1.3657968044281006,300,1.0,1 +20800,13,1.0,2,1.4437958002090454,301,0.0,1 +20801,13,0.0,2,1.392796516418457,302,0.0,1 +20802,13,0.0,2,1.771791696548462,303,0.0,1 +20803,13,0.0,2,2.086791515350342,304,0.0,1 +20804,13,1.0,2,1.2847979068756104,305,1.0,1 +20805,13,1.0,2,2.5698139667510986,306,0.0,1 +20806,13,1.0,2,1.8317909240722656,307,0.0,1 +20807,13,1.0,2,1.5827940702438354,308,1.0,1 +20808,13,1.0,2,1.8027912378311157,309,1.0,1 +20809,13,1.0,2,1.3257973194122314,310,1.0,1 +20810,13,1.0,2,1.2957977056503296,311,1.0,1 +20811,13,1.0,2,1.5347946882247925,312,1.0,1 +20812,13,0.0,2,1.1477978229522705,313,1.0,1 +20813,13,1.0,2,1.352797031402588,314,0.0,1 +20814,13,0.0,2,1.2217979431152344,315,0.0,1 +20815,13,0.0,2,1.863790512084961,316,0.0,1 +20816,13,0.0,2,1.6827927827835083,317,1.0,1 +20817,13,0.0,2,1.3627969026565552,318,0.0,1 +20818,13,0.0,2,1.7417919635772705,319,1.0,1 +20819,13,0.0,2,1.506795048713684,320,0.0,1 +20820,13,1.0,2,1.3087975978851318,321,0.0,1 +20821,13,1.0,2,2.5658137798309326,322,1.0,1 +20822,13,1.0,2,1.5207948684692383,323,0.0,1 +20823,13,0.0,2,1.6057937145233154,324,0.0,1 +20824,13,0.0,2,1.4497957229614258,325,1.0,1 +20825,13,0.0,2,1.2397979497909546,326,1.0,1 +20826,13,0.0,2,1.344797134399414,327,1.0,1 +20827,13,0.0,2,1.6627930402755737,328,0.0,1 +20828,13,0.0,2,1.4277960062026978,329,0.0,1 +20829,13,0.0,2,1.6417932510375977,330,1.0,1 +20830,13,0.0,2,1.1417977809906006,331,1.0,1 +20831,13,0.0,2,1.3027976751327515,332,0.0,1 +20832,13,1.0,2,1.2487980127334595,333,0.0,1 +20833,13,1.0,2,1.7307921648025513,334,0.0,1 +20834,13,0.0,2,1.348797082901001,335,0.0,1 +20835,13,1.0,2,1.9707890748977661,336,1.0,1 +20836,13,1.0,2,1.3807966709136963,337,1.0,1 +20837,13,1.0,2,1.94978928565979,338,1.0,1 +20838,13,0.0,2,1.2147979736328125,339,0.0,1 +20839,13,1.0,2,1.6097936630249023,340,1.0,1 +20840,13,1.0,2,1.6587930917739868,341,1.0,1 +20841,13,1.0,2,1.7067924737930298,342,1.0,1 +20842,13,1.0,2,1.3537969589233398,343,1.0,1 +20843,13,1.0,2,1.2707979679107666,344,1.0,1 +20844,13,1.0,2,1.4647955894470215,345,0.0,1 +20845,13,0.0,2,1.217797875404358,346,1.0,1 +20846,13,0.0,2,1.4947952032089233,347,0.0,1 +20847,13,1.0,2,1.207797884941101,348,1.0,1 +20848,13,1.0,2,1.349797010421753,349,1.0,1 +20849,13,1.0,2,1.3917964696884155,350,0.0,1 +20850,13,0.0,2,1.7937912940979004,351,1.0,1 +20851,13,0.0,2,1.1477978229522705,352,0.0,1 +20852,13,0.0,2,2.372804641723633,353,1.0,1 +20853,13,0.0,2,1.3427971601486206,354,0.0,1 +20854,13,1.0,2,1.7357921600341797,355,1.0,1 +20855,13,1.0,2,1.2327979803085327,356,1.0,1 +20856,13,1.0,2,1.4057962894439697,357,0.0,1 +20857,13,0.0,2,1.323797345161438,358,0.0,1 +20858,13,1.0,2,1.7057924270629883,359,0.0,1 +20859,13,0.0,2,1.1707978248596191,360,0.0,1 +20860,13,1.0,2,1.5937938690185547,361,1.0,1 +20861,13,1.0,2,1.4477957487106323,362,0.0,1 +20862,13,1.0,2,1.2457979917526245,363,0.0,1 +20863,13,0.0,2,1.3327972888946533,364,1.0,1 +20864,13,0.0,2,1.241797924041748,365,0.0,1 +20865,13,0.0,2,1.4807953834533691,366,1.0,1 +20866,13,0.0,2,1.217797875404358,367,1.0,1 +20867,13,0.0,2,1.2127978801727295,368,0.0,1 +20868,13,1.0,2,1.4167962074279785,369,0.0,1 +20869,13,0.0,2,1.4647955894470215,370,0.0,1 +20870,13,0.0,2,1.7877914905548096,371,1.0,1 +20871,13,0.0,2,1.5157948732376099,372,0.0,1 +20872,13,0.0,2,1.5867940187454224,373,1.0,1 +20873,13,0.0,2,1.5127949714660645,374,0.0,1 +20874,13,0.0,2,1.4497957229614258,375,1.0,1 +20875,13,0.0,2,1.2707979679107666,376,1.0,1 +20876,13,0.0,2,1.8957901000976562,377,0.0,1 +20877,13,0.0,2,2.2878007888793945,378,0.0,1 +20878,13,0.0,2,2.207797050476074,379,0.0,1 +20879,13,1.0,2,1.2127978801727295,380,1.0,1 +20880,13,1.0,2,1.3507970571517944,381,0.0,1 +20881,13,1.0,2,1.5827940702438354,382,1.0,1 +20882,13,1.0,2,1.2267979383468628,383,0.0,1 +20883,13,1.0,2,1.5907939672470093,384,1.0,1 +20884,13,0.0,2,1.4767954349517822,385,1.0,1 +20885,13,1.0,2,1.808791160583496,386,0.0,1 +20886,13,0.0,2,1.219797968864441,387,0.0,1 +20887,13,0.0,2,1.30179762840271,388,0.0,1 +20888,13,1.0,2,1.2397979497909546,389,1.0,1 +20889,13,1.0,2,1.5497944355010986,390,0.0,1 +20890,13,1.0,2,1.8277909755706787,391,0.0,1 +20891,13,0.0,2,1.367796778678894,392,1.0,1 +20892,13,0.0,2,1.349797010421753,393,0.0,1 +20893,13,0.0,2,1.5927939414978027,394,1.0,1 +20894,13,0.0,2,1.6577930450439453,395,1.0,1 +20895,13,0.0,2,1.4397958517074585,396,0.0,1 +20896,13,0.0,2,1.2157979011535645,397,1.0,1 +20897,13,0.0,2,1.5017950534820557,398,0.0,1 +20898,13,0.0,2,1.2307980060577393,399,0.0,1 +20899,13,1.0,2,2.455808639526367,400,1.0,1 +20900,13,1.0,2,1.441795825958252,401,0.0,1 +20901,13,1.0,2,1.326797366142273,402,1.0,1 +20902,13,1.0,2,1.393796443939209,403,0.0,1 +20903,13,0.0,2,1.352797031402588,404,1.0,1 +20904,13,0.0,2,1.485795259475708,405,0.0,1 +20905,13,1.0,2,1.576794147491455,406,1.0,1 +20906,13,1.0,2,1.282797932624817,407,1.0,1 +20907,13,1.0,2,1.250797986984253,408,1.0,1 +20908,13,1.0,2,1.646793246269226,409,0.0,1 +20909,13,0.0,2,1.6337933540344238,410,0.0,1 +20910,13,0.0,2,1.2267979383468628,411,0.0,1 +20911,13,1.0,2,1.4827953577041626,412,1.0,1 +20912,13,1.0,2,1.466795563697815,413,0.0,1 +20913,13,0.0,2,1.675792932510376,414,0.0,1 +20914,13,1.0,2,1.9287896156311035,415,0.0,1 +20915,13,1.0,2,1.4967951774597168,416,0.0,1 +20916,13,1.0,2,1.3907965421676636,417,0.0,1 +20917,13,1.0,2,2.2687997817993164,418,0.0,1 +20918,13,1.0,2,1.2767980098724365,419,1.0,1 +20919,13,1.0,2,1.4517956972122192,420,1.0,1 +20920,13,1.0,2,1.6657929420471191,421,0.0,1 +20921,13,0.0,2,1.4027963876724243,422,0.0,1 +20922,13,1.0,2,1.9277896881103516,423,0.0,1 +20923,13,1.0,2,1.882790207862854,424,0.0,1 +20924,13,0.0,2,1.6657929420471191,425,0.0,1 +20925,13,1.0,2,1.5427945852279663,426,0.0,1 +20926,13,0.0,2,1.1357977390289307,427,1.0,1 +20927,13,0.0,2,1.1517977714538574,428,0.0,1 +20928,13,0.0,2,1.3437970876693726,429,0.0,1 +20929,13,0.0,2,1.3657968044281006,430,1.0,1 +20930,13,0.0,2,1.3537969589233398,431,0.0,1 +20931,13,0.0,2,1.4837952852249146,432,1.0,1 +20932,13,0.0,2,1.4487957954406738,433,0.0,1 +20933,13,1.0,2,1.5997939109802246,434,0.0,1 +20934,13,1.0,2,1.6077938079833984,435,0.0,1 +20935,13,0.0,2,2.17179536819458,436,0.0,1 +20936,13,1.0,2,1.7227922677993774,437,1.0,1 +20937,13,1.0,2,1.2287979125976562,438,0.0,1 +20938,13,0.0,2,1.4107962846755981,439,1.0,1 +20939,13,0.0,2,1.27879798412323,440,0.0,1 +20940,13,1.0,2,1.4257960319519043,441,1.0,1 +20941,13,1.0,2,1.6347934007644653,442,1.0,1 +20942,13,1.0,2,1.4987951517105103,443,0.0,1 +20943,13,0.0,2,1.466795563697815,444,1.0,1 +20944,13,0.0,2,1.322797417640686,445,0.0,1 +20945,13,0.0,2,1.143797755241394,446,0.0,1 +20946,13,0.0,2,1.8297908306121826,447,1.0,1 +20947,13,0.0,2,1.2267979383468628,448,0.0,1 +20948,13,1.0,2,1.9447894096374512,449,1.0,1 +20949,13,1.0,2,1.6097936630249023,450,0.0,1 +20950,13,1.0,2,1.2277979850769043,451,0.0,1 +20951,13,0.0,2,1.2227978706359863,452,0.0,1 +20952,13,0.0,2,1.5717942714691162,453,0.0,1 +20953,13,1.0,2,1.5387946367263794,454,0.0,1 +20954,13,0.0,2,1.9377894401550293,455,0.0,1 +20955,13,0.0,2,1.2117979526519775,456,1.0,1 +20956,13,0.0,2,1.2217979431152344,457,1.0,1 +20957,13,0.0,2,1.2817978858947754,458,1.0,1 +20958,13,0.0,2,1.2887978553771973,459,1.0,1 +20959,13,0.0,2,1.7477920055389404,460,1.0,1 +20960,13,0.0,2,1.5597944259643555,461,0.0,1 +20961,13,0.0,2,1.2427979707717896,462,0.0,1 +20962,13,1.0,2,1.4927952289581299,463,0.0,1 +20963,13,1.0,2,1.8447906970977783,464,1.0,1 +20964,13,1.0,2,1.2687979936599731,465,1.0,1 +20965,13,1.0,2,1.4007964134216309,466,1.0,1 +20966,13,1.0,2,1.3547970056533813,467,1.0,1 +20967,13,1.0,2,1.1237977743148804,468,1.0,1 +20968,13,0.0,2,1.5747941732406616,469,0.0,1 +20969,13,1.0,2,1.3217973709106445,470,1.0,1 +20970,13,1.0,2,1.2157979011535645,471,0.0,1 +20971,13,1.0,2,1.951789379119873,472,0.0,1 +20972,13,0.0,2,2.2607994079589844,473,0.0,1 +20973,13,0.0,2,1.2987977266311646,474,0.0,1 +20974,13,0.0,2,1.1367977857589722,475,1.0,1 +20975,13,0.0,2,1.4987951517105103,476,0.0,1 +20976,13,1.0,2,1.808791160583496,477,1.0,1 +20977,13,1.0,2,1.5647943019866943,478,0.0,1 +20978,13,0.0,2,1.2907978296279907,479,0.0,1 +20979,13,0.0,2,1.241797924041748,480,0.0,1 +20980,13,1.0,2,1.7437920570373535,481,0.0,1 +20981,13,0.0,2,1.488795280456543,482,1.0,1 +20982,13,0.0,2,1.5667942762374878,483,1.0,1 +20983,13,0.0,2,1.713792324066162,484,1.0,1 +20984,13,0.0,2,1.3257973194122314,485,1.0,1 +20985,13,0.0,2,1.2147979736328125,486,0.0,1 +20986,13,0.0,2,2.187796115875244,487,1.0,1 +20987,13,0.0,2,1.3637968301773071,488,0.0,1 +20988,13,0.0,2,1.4237960577011108,489,0.0,1 +20989,13,1.0,2,1.4777953624725342,490,0.0,1 +20990,13,0.0,2,2.0857913494110107,491,0.0,1 +20991,13,0.0,2,1.6597931385040283,492,1.0,1 +20992,13,0.0,2,1.1447978019714355,493,1.0,1 +20993,13,0.0,2,1.2867978811264038,494,1.0,1 +20994,13,0.0,2,1.2377979755401611,495,0.0,1 +20995,13,0.0,2,1.3407971858978271,496,1.0,1 +20996,13,0.0,2,1.6197936534881592,497,1.0,1 +20997,13,0.0,2,1.2907978296279907,498,0.0,1 +20998,13,0.0,2,1.3167974948883057,499,0.0,1 +20999,13,0.0,2,1.536794662475586,500,1.0,1 +21000,14,0.0,0,1.3537169694900513,1,0.0,1 +21001,14,0.0,0,1.7947113513946533,2,1.0,1 +21002,14,0.0,0,1.2197178602218628,3,0.0,1 +21003,14,1.0,0,1.5077149868011475,4,0.0,1 +21004,14,0.0,0,1.391716480255127,5,0.0,1 +21005,14,0.0,0,1.666712999343872,6,0.0,1 +21006,14,1.0,0,1.761711835861206,7,0.0,1 +21007,14,0.0,0,1.3377171754837036,8,1.0,1 +21008,14,0.0,0,1.4957151412963867,9,0.0,1 +21009,14,0.0,0,1.5327147245407104,10,0.0,1 +21010,14,0.0,0,1.8777103424072266,11,0.0,1 +21011,14,0.0,0,1.4997150897979736,12,0.0,1 +21012,14,1.0,0,1.3327172994613647,13,1.0,1 +21013,14,1.0,0,1.1907176971435547,14,1.0,1 +21014,14,1.0,0,1.5067150592803955,15,1.0,1 +21015,14,1.0,0,1.7477118968963623,16,1.0,1 +21016,14,1.0,0,1.3837165832519531,17,1.0,1 +21017,14,1.0,0,1.4517157077789307,18,1.0,1 +21018,14,1.0,0,1.368716835975647,19,1.0,1 +21019,14,1.0,0,1.4817153215408325,20,1.0,1 +21020,14,1.0,0,1.4337159395217896,21,1.0,1 +21021,14,1.0,0,1.3677167892456055,22,1.0,1 +21022,14,1.0,0,1.412716269493103,23,1.0,1 +21023,14,1.0,0,1.2457178831100464,24,1.0,1 +21024,14,1.0,0,1.3327172994613647,25,1.0,1 +21025,14,1.0,0,1.7087124586105347,26,1.0,1 +21026,14,1.0,0,1.9297096729278564,27,1.0,1 +21027,14,1.0,0,1.2137178182601929,28,1.0,1 +21028,14,1.0,0,1.6547131538391113,29,1.0,1 +21029,14,1.0,0,1.3987164497375488,30,0.0,1 +21030,14,0.0,0,2.0687100887298584,31,1.0,1 +21031,14,0.0,0,1.2587178945541382,32,0.0,1 +21032,14,0.0,0,2.3157215118408203,33,0.0,1 +21033,14,0.0,0,1.6127136945724487,34,0.0,1 +21034,14,1.0,0,2.6507372856140137,35,0.0,1 +21035,14,1.0,0,1.409716248512268,36,1.0,1 +21036,14,1.0,0,1.438715934753418,37,0.0,1 +21037,14,1.0,0,1.9647091627120972,38,1.0,1 +21038,14,1.0,0,1.3887165784835815,39,1.0,1 +21039,14,1.0,0,1.3517169952392578,40,1.0,1 +21040,14,1.0,0,1.828710913658142,41,1.0,1 +21041,14,1.0,0,1.3667168617248535,42,1.0,1 +21042,14,1.0,0,1.4937151670455933,43,1.0,1 +21043,14,1.0,0,1.4427158832550049,44,1.0,1 +21044,14,1.0,0,1.4537156820297241,45,1.0,1 +21045,14,1.0,0,1.4807153940200806,46,0.0,1 +21046,14,0.0,0,1.3087176084518433,47,0.0,1 +21047,14,1.0,0,1.7377121448516846,48,1.0,1 +21048,14,1.0,0,1.4457157850265503,49,1.0,1 +21049,14,1.0,0,1.457715630531311,50,0.0,1 +21050,14,0.0,0,1.943709373474121,51,1.0,1 +21051,14,0.0,0,1.1147176027297974,52,0.0,1 +21052,14,0.0,0,1.3077175617218018,53,0.0,1 +21053,14,0.0,0,1.4557156562805176,54,0.0,1 +21054,14,1.0,0,1.8737103939056396,55,1.0,1 +21055,14,1.0,0,1.4047163724899292,56,1.0,1 +21056,14,1.0,0,1.6517131328582764,57,1.0,1 +21057,14,1.0,0,1.4677155017852783,58,1.0,1 +21058,14,1.0,0,1.2617179155349731,59,1.0,1 +21059,14,1.0,0,1.27171790599823,60,1.0,1 +21060,14,1.0,0,1.3547170162200928,61,1.0,1 +21061,14,1.0,0,1.3417171239852905,62,1.0,1 +21062,14,1.0,0,1.4057163000106812,63,1.0,1 +21063,14,1.0,0,1.3707168102264404,64,1.0,1 +21064,14,1.0,0,1.274717926979065,65,1.0,1 +21065,14,1.0,0,1.6427133083343506,66,1.0,1 +21066,14,1.0,0,1.5157148838043213,67,1.0,1 +21067,14,1.0,0,1.673712968826294,68,1.0,1 +21068,14,1.0,0,1.4527157545089722,69,1.0,1 +21069,14,1.0,0,1.3057175874710083,70,1.0,1 +21070,14,1.0,0,1.3597168922424316,71,1.0,1 +21071,14,1.0,0,1.3857165575027466,72,1.0,1 +21072,14,0.0,0,2.459728240966797,73,0.0,1 +21073,14,1.0,0,1.5597143173217773,74,1.0,1 +21074,14,1.0,0,1.5667142868041992,75,0.0,1 +21075,14,0.0,0,1.5377147197723389,76,0.0,1 +21076,14,1.0,0,2.0167083740234375,77,0.0,1 +21077,14,1.0,0,1.43971586227417,78,1.0,1 +21078,14,1.0,0,1.4377158880233765,79,1.0,1 +21079,14,1.0,0,2.279719829559326,80,1.0,1 +21080,14,1.0,0,1.4587156772613525,81,1.0,1 +21081,14,1.0,0,1.5157148838043213,82,1.0,1 +21082,14,1.0,0,1.5447145700454712,83,1.0,1 +21083,14,1.0,0,1.3927165269851685,84,0.0,1 +21084,14,1.0,0,2.191715717315674,85,1.0,1 +21085,14,1.0,0,1.3557169437408447,86,0.0,1 +21086,14,1.0,0,1.4207161664962769,87,1.0,1 +21087,14,1.0,0,1.7687116861343384,88,1.0,1 +21088,14,1.0,0,1.8407107591629028,89,0.0,1 +21089,14,1.0,0,1.435715913772583,90,1.0,1 +21090,14,1.0,0,1.5127149820327759,91,1.0,1 +21091,14,1.0,0,1.4327160120010376,92,0.0,1 +21092,14,1.0,0,1.7267122268676758,93,1.0,1 +21093,14,1.0,0,1.8687103986740112,94,1.0,1 +21094,14,1.0,0,1.3077175617218018,95,1.0,1 +21095,14,1.0,0,1.207717776298523,96,1.0,1 +21096,14,1.0,0,1.2507178783416748,97,1.0,1 +21097,14,1.0,0,1.3107175827026367,98,1.0,1 +21098,14,1.0,0,1.342717170715332,99,1.0,1 +21099,14,1.0,0,1.170717716217041,100,1.0,1 +21100,14,1.0,0,1.6527131795883179,101,1.0,1 +21101,14,1.0,0,1.6507132053375244,102,0.0,1 +21102,14,0.0,0,2.455728054046631,103,0.0,1 +21103,14,0.0,0,1.692712664604187,104,0.0,1 +21104,14,0.0,0,1.24171781539917,105,0.0,1 +21105,14,1.0,0,1.998708724975586,106,1.0,1 +21106,14,1.0,0,1.386716604232788,107,1.0,1 +21107,14,1.0,0,1.3487170934677124,108,0.0,1 +21108,14,1.0,0,1.3187174797058105,109,1.0,1 +21109,14,1.0,0,1.4157161712646484,110,1.0,1 +21110,14,1.0,0,1.483715295791626,111,0.0,1 +21111,14,0.0,0,2.3097214698791504,112,0.0,1 +21112,14,1.0,0,1.7557117938995361,113,0.0,1 +21113,14,1.0,0,1.4657155275344849,114,1.0,1 +21114,14,1.0,0,2.002708673477173,115,1.0,1 +21115,14,1.0,0,1.811711072921753,116,0.0,1 +21116,14,1.0,0,1.6457133293151855,117,1.0,1 +21117,14,1.0,0,1.766711711883545,118,1.0,1 +21118,14,1.0,0,1.4627156257629395,119,1.0,1 +21119,14,1.0,0,1.246717929840088,120,1.0,1 +21120,14,1.0,0,1.231717824935913,121,1.0,1 +21121,14,1.0,0,1.343717098236084,122,1.0,1 +21122,14,1.0,0,1.3407171964645386,123,0.0,1 +21123,14,1.0,0,1.7387120723724365,124,1.0,1 +21124,14,1.0,0,1.2067177295684814,125,1.0,1 +21125,14,1.0,0,1.1567176580429077,126,1.0,1 +21126,14,1.0,0,1.346717119216919,127,0.0,1 +21127,14,1.0,0,1.7027125358581543,128,1.0,1 +21128,14,1.0,0,1.552714467048645,129,1.0,1 +21129,14,1.0,0,1.6317133903503418,130,1.0,1 +21130,14,1.0,0,1.7107124328613281,131,1.0,1 +21131,14,1.0,0,1.1537176370620728,132,1.0,1 +21132,14,1.0,0,1.2577178478240967,133,1.0,1 +21133,14,1.0,0,1.2267178297042847,134,1.0,1 +21134,14,1.0,0,1.1657177209854126,135,1.0,1 +21135,14,1.0,0,1.3997163772583008,136,1.0,1 +21136,14,1.0,0,1.2187178134918213,137,1.0,1 +21137,14,1.0,0,1.2177177667617798,138,1.0,1 +21138,14,1.0,0,1.1237176656723022,139,1.0,1 +21139,14,1.0,0,1.2627179622650146,140,1.0,1 +21140,14,1.0,0,1.1387176513671875,141,1.0,1 +21141,14,1.0,0,1.4987151622772217,142,1.0,1 +21142,14,1.0,0,2.5547327995300293,143,1.0,1 +21143,14,0.0,0,1.2877178192138672,144,0.0,1 +21144,14,1.0,0,1.814711093902588,145,1.0,1 +21145,14,1.0,0,1.2517179250717163,146,1.0,1 +21146,14,1.0,0,1.2197178602218628,147,1.0,1 +21147,14,1.0,0,1.2567179203033447,148,0.0,1 +21148,14,1.0,0,1.9827089309692383,149,1.0,1 +21149,14,1.0,0,1.3197174072265625,150,1.0,1 +21150,14,1.0,0,1.4857152700424194,151,1.0,1 +21151,14,1.0,0,2.1527140140533447,152,0.0,1 +21152,14,0.0,0,1.1527177095413208,153,0.0,1 +21153,14,1.0,0,1.9857089519500732,154,1.0,1 +21154,14,1.0,0,1.4987151622772217,155,1.0,1 +21155,14,1.0,0,1.6277134418487549,156,1.0,1 +21156,14,1.0,0,1.3677167892456055,157,1.0,1 +21157,14,1.0,0,1.3347172737121582,158,1.0,1 +21158,14,1.0,0,1.3527170419692993,159,1.0,1 +21159,14,1.0,0,1.4117162227630615,160,1.0,1 +21160,14,1.0,0,1.8667104244232178,161,1.0,1 +21161,14,1.0,0,1.3257173299789429,162,0.0,1 +21162,14,1.0,0,1.8177111148834229,163,1.0,1 +21163,14,1.0,0,1.3187174797058105,164,1.0,1 +21164,14,1.0,0,1.201717734336853,165,1.0,1 +21165,14,1.0,0,1.4537156820297241,166,1.0,1 +21166,14,1.0,0,1.390716552734375,167,1.0,1 +21167,14,1.0,0,1.3297172784805298,168,0.0,1 +21168,14,0.0,0,2.0307083129882812,169,0.0,1 +21169,14,0.0,0,1.2817178964614868,170,0.0,1 +21170,14,1.0,0,1.3557169437408447,171,1.0,1 +21171,14,1.0,0,1.7297122478485107,172,1.0,1 +21172,14,1.0,0,1.5547144412994385,173,1.0,1 +21173,14,1.0,0,1.26571786403656,174,1.0,1 +21174,14,1.0,0,1.759711742401123,175,1.0,1 +21175,14,1.0,0,1.4437158107757568,176,1.0,1 +21176,14,1.0,0,1.8167110681533813,177,0.0,1 +21177,14,1.0,0,2.243718147277832,178,1.0,1 +21178,14,1.0,0,1.456715703010559,179,0.0,1 +21179,14,0.0,0,1.294717788696289,180,0.0,1 +21180,14,0.0,0,1.8267109394073486,181,0.0,1 +21181,14,0.0,0,1.4857152700424194,182,0.0,1 +21182,14,0.0,0,1.6887127161026,183,0.0,1 +21183,14,0.0,0,1.5497145652770996,184,0.0,1 +21184,14,1.0,0,1.7837114334106445,185,0.0,1 +21185,14,0.0,0,2.50873064994812,186,0.0,1 +21186,14,0.0,0,1.1247175931930542,187,0.0,1 +21187,14,0.0,0,2.469728946685791,188,1.0,1 +21188,14,0.0,0,1.2727179527282715,189,0.0,1 +21189,14,0.0,0,2.236717939376831,190,0.0,1 +21190,14,1.0,0,1.5417146682739258,191,1.0,1 +21191,14,1.0,0,1.3147175312042236,192,1.0,1 +21192,14,1.0,0,1.1867177486419678,193,1.0,1 +21193,14,1.0,0,1.5177148580551147,194,0.0,1 +21194,14,0.0,0,1.6157135963439941,195,0.0,1 +21195,14,0.0,0,1.5627143383026123,196,0.0,1 +21196,14,0.0,0,1.4047163724899292,197,0.0,1 +21197,14,1.0,0,1.8787102699279785,198,1.0,1 +21198,14,1.0,0,1.6377134323120117,199,1.0,1 +21199,14,1.0,0,1.3937164545059204,200,1.0,1 +21200,14,1.0,0,1.4437158107757568,201,0.0,1 +21201,14,1.0,0,1.2827179431915283,202,1.0,1 +21202,14,1.0,0,1.5137149095535278,203,1.0,1 +21203,14,1.0,0,1.621713638305664,204,1.0,1 +21204,14,1.0,0,1.7007125616073608,205,1.0,1 +21205,14,1.0,0,1.2587178945541382,206,1.0,1 +21206,14,1.0,0,1.5407146215438843,207,1.0,1 +21207,14,1.0,0,1.137717604637146,208,0.0,1 +21208,14,1.0,0,1.4687155485153198,209,1.0,1 +21209,14,1.0,0,1.2167178392410278,210,1.0,1 +21210,14,1.0,0,1.1867177486419678,211,0.0,1 +21211,14,1.0,0,1.7097125053405762,212,1.0,1 +21212,14,1.0,0,1.7577118873596191,213,1.0,1 +21213,14,1.0,0,1.2067177295684814,214,1.0,1 +21214,14,1.0,0,1.4057163000106812,215,1.0,1 +21215,14,1.0,0,1.6687129735946655,216,1.0,1 +21216,14,1.0,0,1.4327160120010376,217,0.0,1 +21217,14,0.0,0,1.6387133598327637,218,0.0,1 +21218,14,0.0,0,1.2587178945541382,219,0.0,1 +21219,14,0.0,0,1.4047163724899292,220,0.0,1 +21220,14,1.0,0,1.4087163209915161,221,1.0,1 +21221,14,1.0,0,1.4767154455184937,222,1.0,1 +21222,14,1.0,0,1.246717929840088,223,1.0,1 +21223,14,1.0,0,1.264717936515808,224,1.0,1 +21224,14,1.0,0,1.1817177534103394,225,1.0,1 +21225,14,1.0,0,1.4247161149978638,226,0.0,1 +21226,14,0.0,0,1.2527178525924683,227,0.0,1 +21227,14,0.0,0,1.27171790599823,228,0.0,1 +21228,14,1.0,0,1.2807179689407349,229,1.0,1 +21229,14,0.0,0,1.52671480178833,230,0.0,1 +21230,14,1.0,0,1.295717716217041,231,1.0,1 +21231,14,1.0,0,1.3137174844741821,232,1.0,1 +21232,14,1.0,0,1.7297122478485107,233,1.0,1 +21233,14,1.0,0,1.3637168407440186,234,0.0,1 +21234,14,0.0,0,1.7037124633789062,235,0.0,1 +21235,14,1.0,0,2.0627098083496094,236,0.0,1 +21236,14,0.0,0,1.7897114753723145,237,0.0,1 +21237,14,1.0,0,1.2577178478240967,238,1.0,1 +21238,14,1.0,0,1.4157161712646484,239,1.0,1 +21239,14,1.0,0,1.1987178325653076,240,1.0,1 +21240,14,1.0,0,1.4527157545089722,241,1.0,1 +21241,14,1.0,0,1.4727154970169067,242,1.0,1 +21242,14,1.0,0,1.76371169090271,243,0.0,1 +21243,14,1.0,0,1.4477157592773438,244,1.0,1 +21244,14,1.0,0,1.898710012435913,245,1.0,1 +21245,14,1.0,0,1.3887165784835815,246,1.0,1 +21246,14,0.0,0,2.1257128715515137,247,0.0,1 +21247,14,1.0,0,1.2447178363800049,248,0.0,1 +21248,14,1.0,0,1.3967164754867554,249,1.0,1 +21249,14,1.0,0,1.434715986251831,250,1.0,1 +21250,14,1.0,0,1.321717381477356,251,1.0,1 +21251,14,1.0,0,1.5677142143249512,252,1.0,1 +21252,14,1.0,0,1.2827179431915283,253,0.0,1 +21253,14,1.0,0,1.7437119483947754,254,1.0,1 +21254,14,1.0,0,1.4337159395217896,255,1.0,1 +21255,14,1.0,0,1.1967177391052246,256,0.0,1 +21256,14,1.0,0,1.6207135915756226,257,1.0,1 +21257,14,1.0,0,1.5637142658233643,258,0.0,1 +21258,14,0.0,0,1.2867178916931152,259,0.0,1 +21259,14,0.0,0,1.487715244293213,260,0.0,1 +21260,14,0.0,0,1.6777129173278809,261,0.0,1 +21261,14,1.0,0,1.3707168102264404,262,1.0,1 +21262,14,1.0,0,1.478715419769287,263,1.0,1 +21263,14,1.0,0,1.3887165784835815,264,1.0,1 +21264,14,1.0,0,1.618713617324829,265,0.0,1 +21265,14,0.0,0,2.0727102756500244,266,0.0,1 +21266,14,1.0,0,1.5477144718170166,267,1.0,1 +21267,14,1.0,0,1.5627143383026123,268,1.0,1 +21268,14,1.0,0,1.4737154245376587,269,1.0,1 +21269,14,1.0,0,1.5617144107818604,270,1.0,1 +21270,14,1.0,0,1.3727167844772339,271,1.0,1 +21271,14,1.0,0,1.5407146215438843,272,1.0,1 +21272,14,1.0,0,1.1927177906036377,273,1.0,1 +21273,14,1.0,0,1.577714204788208,274,1.0,1 +21274,14,1.0,0,1.4187161922454834,275,1.0,1 +21275,14,1.0,0,1.531714677810669,276,1.0,1 +21276,14,1.0,0,1.2367178201675415,277,1.0,1 +21277,14,1.0,0,1.2267178297042847,278,1.0,1 +21278,14,1.0,0,1.2267178297042847,279,1.0,1 +21279,14,1.0,0,1.8087111711502075,280,1.0,1 +21280,14,1.0,0,1.4237160682678223,281,1.0,1 +21281,14,1.0,0,1.9677090644836426,282,1.0,1 +21282,14,1.0,0,1.4447158575057983,283,1.0,1 +21283,14,1.0,0,1.4947152137756348,284,1.0,1 +21284,14,1.0,0,1.945709466934204,285,1.0,1 +21285,14,1.0,0,1.5867140293121338,286,1.0,1 +21286,14,1.0,0,1.7427120208740234,287,1.0,1 +21287,14,1.0,0,1.4507157802581787,288,1.0,1 +21288,14,1.0,0,1.7557117938995361,289,1.0,1 +21289,14,1.0,0,1.2847179174423218,290,1.0,1 +21290,14,1.0,0,1.6607130765914917,291,1.0,1 +21291,14,1.0,0,1.3417171239852905,292,1.0,1 +21292,14,1.0,0,1.671712875366211,293,0.0,1 +21293,14,1.0,0,1.7057125568389893,294,1.0,1 +21294,14,1.0,0,1.810711145401001,295,1.0,1 +21295,14,1.0,0,1.460715651512146,296,1.0,1 +21296,14,1.0,0,1.5497145652770996,297,0.0,1 +21297,14,0.0,0,2.2977209091186523,298,0.0,1 +21298,14,1.0,0,1.2297178506851196,299,1.0,1 +21299,14,1.0,0,1.3827166557312012,300,1.0,1 +21300,14,1.0,0,1.4437158107757568,301,1.0,1 +21301,14,1.0,0,1.2877178192138672,302,1.0,1 +21302,14,1.0,0,1.4277160167694092,303,1.0,1 +21303,14,1.0,0,1.3837165832519531,304,1.0,1 +21304,14,1.0,0,1.2877178192138672,305,1.0,1 +21305,14,1.0,0,1.71171236038208,306,0.0,1 +21306,14,0.0,0,1.758711814880371,307,0.0,1 +21307,14,1.0,0,2.0917110443115234,308,1.0,1 +21308,14,1.0,0,1.2427178621292114,309,1.0,1 +21309,14,1.0,0,1.2397178411483765,310,1.0,1 +21310,14,1.0,0,1.999708652496338,311,1.0,1 +21311,14,1.0,0,1.3347172737121582,312,1.0,1 +21312,14,1.0,0,1.3537169694900513,313,1.0,1 +21313,14,1.0,0,1.7387120723724365,314,1.0,1 +21314,14,1.0,0,1.4937151670455933,315,1.0,1 +21315,14,1.0,0,1.4087163209915161,316,1.0,1 +21316,14,1.0,0,1.26571786403656,317,1.0,1 +21317,14,1.0,0,1.5417146682739258,318,1.0,1 +21318,14,1.0,0,1.6897127628326416,319,1.0,1 +21319,14,1.0,0,1.2287178039550781,320,1.0,1 +21320,14,1.0,0,1.2937177419662476,321,1.0,1 +21321,14,1.0,0,1.574714183807373,322,1.0,1 +21322,14,1.0,0,1.2207177877426147,323,1.0,1 +21323,14,1.0,0,1.267717957496643,324,1.0,1 +21324,14,1.0,0,1.9177098274230957,325,0.0,1 +21325,14,1.0,0,1.4777153730392456,326,1.0,1 +21326,14,1.0,0,1.6917126178741455,327,1.0,1 +21327,14,1.0,0,1.2367178201675415,328,0.0,1 +21328,14,1.0,0,1.5577144622802734,329,1.0,1 +21329,14,1.0,0,1.7257122993469238,330,1.0,1 +21330,14,1.0,0,1.3857165575027466,331,1.0,1 +21331,14,1.0,0,1.3927165269851685,332,1.0,1 +21332,14,1.0,0,1.4997150897979736,333,0.0,1 +21333,14,1.0,0,1.5067150592803955,334,1.0,1 +21334,14,1.0,0,1.461715579032898,335,1.0,1 +21335,14,1.0,0,1.3957164287567139,336,1.0,1 +21336,14,1.0,0,1.4287160634994507,337,1.0,1 +21337,14,1.0,0,1.5677142143249512,338,1.0,1 +21338,14,0.0,0,1.237717866897583,339,0.0,1 +21339,14,1.0,0,1.1617176532745361,340,1.0,1 +21340,14,1.0,0,1.671712875366211,341,1.0,1 +21341,14,1.0,0,1.4737154245376587,342,1.0,1 +21342,14,1.0,0,1.24171781539917,343,1.0,1 +21343,14,1.0,0,1.534714698791504,344,1.0,1 +21344,14,1.0,0,1.6137137413024902,345,1.0,1 +21345,14,1.0,0,1.1657177209854126,346,1.0,1 +21346,14,1.0,0,1.2527178525924683,347,1.0,1 +21347,14,1.0,0,1.2667179107666016,348,1.0,1 +21348,14,1.0,0,1.6517131328582764,349,1.0,1 +21349,14,1.0,0,1.4227161407470703,350,1.0,1 +21350,14,1.0,0,1.483715295791626,351,1.0,1 +21351,14,1.0,0,1.2777179479599,352,1.0,1 +21352,14,1.0,0,1.2127177715301514,353,1.0,1 +21353,14,1.0,0,1.6847127676010132,354,1.0,1 +21354,14,1.0,0,1.2767179012298584,355,1.0,1 +21355,14,1.0,0,1.3347172737121582,356,1.0,1 +21356,14,1.0,0,1.1977177858352661,357,0.0,1 +21357,14,1.0,0,1.3837165832519531,358,1.0,1 +21358,14,1.0,0,1.1597176790237427,359,1.0,1 +21359,14,1.0,0,1.721712350845337,360,1.0,1 +21360,14,1.0,0,1.1387176513671875,361,1.0,1 +21361,14,1.0,0,1.7267122268676758,362,1.0,1 +21362,14,1.0,0,1.2237178087234497,363,1.0,1 +21363,14,1.0,0,1.4547157287597656,364,0.0,1 +21364,14,0.0,0,1.361716866493225,365,0.0,1 +21365,14,1.0,0,1.3237173557281494,366,1.0,1 +21366,14,1.0,0,1.2477178573608398,367,1.0,1 +21367,14,1.0,0,1.3147175312042236,368,1.0,1 +21368,14,1.0,0,1.7537119388580322,369,1.0,1 +21369,14,1.0,0,1.302717685699463,370,1.0,1 +21370,14,1.0,0,1.3837165832519531,371,1.0,1 +21371,14,1.0,0,1.573714256286621,372,1.0,1 +21372,14,1.0,0,1.7737116813659668,373,1.0,1 +21373,14,1.0,0,1.4547157287597656,374,1.0,1 +21374,14,1.0,0,1.321717381477356,375,1.0,1 +21375,14,1.0,0,1.648713231086731,376,1.0,1 +21376,14,1.0,0,1.4027163982391357,377,1.0,1 +21377,14,1.0,0,1.5107150077819824,378,1.0,1 +21378,14,1.0,0,1.324717402458191,379,1.0,1 +21379,14,1.0,0,1.2837178707122803,380,1.0,1 +21380,14,1.0,0,1.4477157592773438,381,1.0,1 +21381,14,1.0,0,1.2517179250717163,382,1.0,1 +21382,14,1.0,0,1.9417095184326172,383,1.0,1 +21383,14,1.0,0,1.8217110633850098,384,1.0,1 +21384,14,1.0,0,1.3667168617248535,385,1.0,1 +21385,14,1.0,0,1.1857177019119263,386,0.0,1 +21386,14,0.0,0,2.18271541595459,387,0.0,1 +21387,14,0.0,0,1.234717845916748,388,0.0,1 +21388,14,1.0,0,1.4767154455184937,389,1.0,1 +21389,14,1.0,0,1.3087176084518433,390,1.0,1 +21390,14,1.0,0,1.274717926979065,391,1.0,1 +21391,14,1.0,0,1.7277121543884277,392,1.0,1 +21392,14,1.0,0,2.0297083854675293,393,1.0,1 +21393,14,1.0,0,1.6907126903533936,394,1.0,1 +21394,14,1.0,0,1.3097175359725952,395,1.0,1 +21395,14,1.0,0,1.6137137413024902,396,1.0,1 +21396,14,1.0,0,1.3097175359725952,397,1.0,1 +21397,14,1.0,0,1.9107098579406738,398,1.0,1 +21398,14,1.0,0,1.621713638305664,399,0.0,1 +21399,14,1.0,0,2.5507326126098633,400,0.0,1 +21400,14,1.0,0,2.0767104625701904,401,1.0,1 +21401,14,1.0,0,1.765711784362793,402,1.0,1 +21402,14,1.0,0,1.1427175998687744,403,1.0,1 +21403,14,1.0,0,1.5247148275375366,404,1.0,1 +21404,14,1.0,0,1.27171790599823,405,1.0,1 +21405,14,1.0,0,1.6357133388519287,406,1.0,1 +21406,14,1.0,0,1.3147175312042236,407,1.0,1 +21407,14,1.0,0,1.6437132358551025,408,1.0,1 +21408,14,1.0,0,1.4107162952423096,409,1.0,1 +21409,14,1.0,0,1.3527170419692993,410,1.0,1 +21410,14,1.0,0,1.2177177667617798,411,1.0,1 +21411,14,1.0,0,1.6977126598358154,412,1.0,1 +21412,14,1.0,0,1.3077175617218018,413,1.0,1 +21413,14,1.0,0,1.4207161664962769,414,1.0,1 +21414,14,1.0,0,1.648713231086731,415,1.0,1 +21415,14,1.0,0,1.6307134628295898,416,1.0,1 +21416,14,1.0,0,1.6277134418487549,417,1.0,1 +21417,14,1.0,0,1.851710557937622,418,1.0,1 +21418,14,1.0,0,1.1757177114486694,419,1.0,1 +21419,14,1.0,0,1.6347134113311768,420,1.0,1 +21420,14,1.0,0,1.3507170677185059,421,1.0,1 +21421,14,1.0,0,1.4637155532836914,422,1.0,1 +21422,14,1.0,0,1.3307173252105713,423,1.0,1 +21423,14,1.0,0,1.784711480140686,424,1.0,1 +21424,14,1.0,0,1.3337172269821167,425,1.0,1 +21425,14,1.0,0,1.2357178926467896,426,1.0,1 +21426,14,1.0,0,1.3767167329788208,427,1.0,1 +21427,14,1.0,0,1.3187174797058105,428,1.0,1 +21428,14,1.0,0,1.4337159395217896,429,1.0,1 +21429,14,1.0,0,1.3847166299819946,430,0.0,1 +21430,14,0.0,0,2.1177124977111816,431,0.0,1 +21431,14,1.0,0,2.191715717315674,432,1.0,1 +21432,14,1.0,0,1.6837127208709717,433,1.0,1 +21433,14,0.0,0,1.299717664718628,434,1.0,1 +21434,14,1.0,0,1.7057125568389893,435,1.0,1 +21435,14,0.0,0,1.721712350845337,436,0.0,1 +21436,14,1.0,0,1.238717794418335,437,0.0,1 +21437,14,0.0,0,1.7377121448516846,438,0.0,1 +21438,14,0.0,0,2.265719413757324,439,0.0,1 +21439,14,0.0,0,2.6207358837127686,440,1.0,1 +21440,14,0.0,0,1.207717776298523,441,0.0,1 +21441,14,1.0,0,1.386716604232788,442,0.0,1 +21442,14,0.0,0,1.2937177419662476,443,0.0,1 +21443,14,1.0,0,1.7957112789154053,444,1.0,1 +21444,14,0.0,0,1.460715651512146,445,0.0,1 +21445,14,1.0,0,1.6437132358551025,446,1.0,1 +21446,14,1.0,0,1.3067176342010498,447,1.0,1 +21447,14,1.0,0,1.3567169904708862,448,1.0,1 +21448,14,1.0,0,1.533714771270752,449,1.0,1 +21449,14,1.0,0,1.4817153215408325,450,1.0,1 +21450,14,1.0,0,1.2097177505493164,451,1.0,1 +21451,14,1.0,0,1.803711175918579,452,1.0,1 +21452,14,1.0,0,1.8497107028961182,453,1.0,1 +21453,14,1.0,0,1.4807153940200806,454,1.0,1 +21454,14,1.0,0,1.3637168407440186,455,1.0,1 +21455,14,1.0,0,1.1927177906036377,456,1.0,1 +21456,14,1.0,0,1.3417171239852905,457,1.0,1 +21457,14,1.0,0,1.6777129173278809,458,1.0,1 +21458,14,1.0,0,1.316717505455017,459,1.0,1 +21459,14,1.0,0,1.5497145652770996,460,0.0,1 +21460,14,0.0,0,1.575714111328125,461,0.0,1 +21461,14,0.0,0,2.1107120513916016,462,0.0,1 +21462,14,0.0,0,1.238717794418335,463,0.0,1 +21463,14,1.0,0,1.3187174797058105,464,1.0,1 +21464,14,1.0,0,1.8607105016708374,465,0.0,1 +21465,14,1.0,0,1.3507170677185059,466,1.0,1 +21466,14,1.0,0,1.317717432975769,467,0.0,1 +21467,14,1.0,0,1.644713282585144,468,1.0,1 +21468,14,1.0,0,1.6107137203216553,469,1.0,1 +21469,14,1.0,0,1.7387120723724365,470,1.0,1 +21470,14,1.0,0,1.295717716217041,471,1.0,1 +21471,14,1.0,0,1.4277160167694092,472,1.0,1 +21472,14,1.0,0,1.6647130250930786,473,1.0,1 +21473,14,1.0,0,1.298717737197876,474,1.0,1 +21474,14,1.0,0,1.200717806816101,475,1.0,1 +21475,14,1.0,0,1.2597179412841797,476,0.0,1 +21476,14,1.0,0,1.9297096729278564,477,1.0,1 +21477,14,1.0,0,1.5877139568328857,478,1.0,1 +21478,14,0.0,0,1.3717167377471924,479,1.0,1 +21479,14,1.0,0,1.3827166557312012,480,1.0,1 +21480,14,0.0,0,1.4887152910232544,481,0.0,1 +21481,14,1.0,0,1.2427178621292114,482,1.0,1 +21482,14,1.0,0,1.6057138442993164,483,1.0,1 +21483,14,1.0,0,1.6617131233215332,484,1.0,1 +21484,14,1.0,0,1.346717119216919,485,1.0,1 +21485,14,1.0,0,1.573714256286621,486,0.0,1 +21486,14,1.0,0,1.3037176132202148,487,1.0,1 +21487,14,1.0,0,1.2627179622650146,488,0.0,1 +21488,14,0.0,0,1.6947126388549805,489,0.0,1 +21489,14,0.0,0,1.1957178115844727,490,0.0,1 +21490,14,1.0,0,1.9677090644836426,491,1.0,1 +21491,14,1.0,0,1.2967177629470825,492,1.0,1 +21492,14,1.0,0,1.3327172994613647,493,1.0,1 +21493,14,1.0,0,1.5157148838043213,494,1.0,1 +21494,14,1.0,0,1.3897165060043335,495,1.0,1 +21495,14,1.0,0,1.4817153215408325,496,1.0,1 +21496,14,1.0,0,1.3417171239852905,497,1.0,1 +21497,14,1.0,0,1.478715419769287,498,1.0,1 +21498,14,1.0,0,1.6827127933502197,499,0.0,1 +21499,14,0.0,0,1.7757115364074707,500,0.0,1 +21500,14,0.0,1,1.6817128658294678,1,0.0,1 +21501,14,0.0,1,1.7707116603851318,2,0.0,1 +21502,14,1.0,1,1.4117162227630615,3,1.0,1 +21503,14,1.0,1,1.6377134323120117,4,1.0,1 +21504,14,1.0,1,1.736712098121643,5,1.0,1 +21505,14,1.0,1,1.6937127113342285,6,0.0,1 +21506,14,1.0,1,2.204716444015503,7,1.0,1 +21507,14,1.0,1,1.4777153730392456,8,1.0,1 +21508,14,1.0,1,1.6167136430740356,9,1.0,1 +21509,14,1.0,1,1.4637155532836914,10,0.0,1 +21510,14,0.0,1,1.8247109651565552,11,0.0,1 +21511,14,1.0,1,1.901710033416748,12,1.0,1 +21512,14,1.0,1,1.6347134113311768,13,1.0,1 +21513,14,1.0,1,1.7877113819122314,14,0.0,1 +21514,14,0.0,1,1.9317095279693604,15,1.0,1 +21515,14,0.0,1,1.1247175931930542,16,1.0,1 +21516,14,0.0,1,1.302717685699463,17,1.0,1 +21517,14,0.0,1,1.1627177000045776,18,1.0,1 +21518,14,0.0,1,1.1687177419662476,19,0.0,1 +21519,14,1.0,1,1.479715347290039,20,1.0,1 +21520,14,1.0,1,2.1497139930725098,21,0.0,1 +21521,14,0.0,1,1.527714729309082,22,0.0,1 +21522,14,1.0,1,1.5207148790359497,23,0.0,1 +21523,14,0.0,1,1.3527170419692993,24,0.0,1 +21524,14,0.0,1,2.0717101097106934,25,0.0,1 +21525,14,0.0,1,1.106717586517334,26,1.0,1 +21526,14,0.0,1,1.3837165832519531,27,0.0,1 +21527,14,0.0,1,1.2587178945541382,28,0.0,1 +21528,14,0.0,1,1.179717779159546,29,1.0,1 +21529,14,0.0,1,1.1817177534103394,30,0.0,1 +21530,14,0.0,1,1.905709981918335,31,0.0,1 +21531,14,1.0,1,1.854710578918457,32,1.0,1 +21532,14,1.0,1,1.9567092657089233,33,1.0,1 +21533,14,1.0,1,1.203717827796936,34,1.0,1 +21534,14,1.0,1,1.4657155275344849,35,0.0,1 +21535,14,1.0,1,1.784711480140686,36,1.0,1 +21536,14,1.0,1,1.3407171964645386,37,1.0,1 +21537,14,1.0,1,2.3347225189208984,38,1.0,1 +21538,14,1.0,1,1.347717046737671,39,1.0,1 +21539,14,1.0,1,1.4667155742645264,40,1.0,1 +21540,14,0.0,1,1.6597130298614502,41,0.0,1 +21541,14,1.0,1,1.2967177629470825,42,1.0,1 +21542,14,1.0,1,1.6027138233184814,43,1.0,1 +21543,14,1.0,1,1.5957138538360596,44,1.0,1 +21544,14,1.0,1,1.3117175102233887,45,1.0,1 +21545,14,1.0,1,1.456715703010559,46,0.0,1 +21546,14,0.0,1,1.1117175817489624,47,0.0,1 +21547,14,1.0,1,1.4937151670455933,48,1.0,1 +21548,14,1.0,1,1.5617144107818604,49,0.0,1 +21549,14,0.0,1,1.179717779159546,50,0.0,1 +21550,14,0.0,1,2.3567235469818115,51,0.0,1 +21551,14,1.0,1,1.9427094459533691,52,1.0,1 +21552,14,1.0,1,1.6357133388519287,53,1.0,1 +21553,14,1.0,1,1.2977176904678345,54,1.0,1 +21554,14,1.0,1,1.6167136430740356,55,0.0,1 +21555,14,0.0,1,1.361716866493225,56,0.0,1 +21556,14,0.0,1,1.1687177419662476,57,0.0,1 +21557,14,0.0,1,1.2737178802490234,58,0.0,1 +21558,14,1.0,1,1.2857178449630737,59,1.0,1 +21559,14,1.0,1,1.3517169952392578,60,1.0,1 +21560,14,1.0,1,1.1497176885604858,61,1.0,1 +21561,14,1.0,1,1.508715033531189,62,1.0,1 +21562,14,1.0,1,1.1717177629470825,63,0.0,1 +21563,14,1.0,1,1.4977151155471802,64,1.0,1 +21564,14,1.0,1,2.004708766937256,65,1.0,1 +21565,14,1.0,1,1.6887127161026,66,1.0,1 +21566,14,1.0,1,1.3807166814804077,67,1.0,1 +21567,14,1.0,1,1.5457146167755127,68,1.0,1 +21568,14,1.0,1,1.759711742401123,69,1.0,1 +21569,14,1.0,1,1.457715630531311,70,1.0,1 +21570,14,1.0,1,1.8737103939056396,71,1.0,1 +21571,14,1.0,1,1.4037163257598877,72,0.0,1 +21572,14,1.0,1,1.5597143173217773,73,1.0,1 +21573,14,1.0,1,1.486715316772461,74,1.0,1 +21574,14,1.0,1,1.4937151670455933,75,0.0,1 +21575,14,0.0,1,1.7067124843597412,76,0.0,1 +21576,14,1.0,1,2.1047117710113525,77,0.0,1 +21577,14,0.0,1,1.5217148065567017,78,0.0,1 +21578,14,0.0,1,1.5357146263122559,79,0.0,1 +21579,14,0.0,1,1.1837177276611328,80,1.0,1 +21580,14,0.0,1,1.7717115879058838,81,1.0,1 +21581,14,0.0,1,1.3067176342010498,82,1.0,1 +21582,14,0.0,1,1.4447158575057983,83,0.0,1 +21583,14,0.0,1,1.4457157850265503,84,1.0,1 +21584,14,0.0,1,1.6177136898040771,85,0.0,1 +21585,14,1.0,1,1.556714415550232,86,1.0,1 +21586,14,1.0,1,1.3727167844772339,87,1.0,1 +21587,14,1.0,1,1.4947152137756348,88,1.0,1 +21588,14,1.0,1,1.204717755317688,89,0.0,1 +21589,14,0.0,1,1.4227161407470703,90,0.0,1 +21590,14,1.0,1,1.8787102699279785,91,0.0,1 +21591,14,0.0,1,1.2837178707122803,92,0.0,1 +21592,14,0.0,1,1.3327172994613647,93,0.0,1 +21593,14,0.0,1,1.5497145652770996,94,0.0,1 +21594,14,1.0,1,1.2807179689407349,95,0.0,1 +21595,14,1.0,1,1.600713849067688,96,1.0,1 +21596,14,1.0,1,1.5067150592803955,97,0.0,1 +21597,14,1.0,1,2.6627378463745117,98,0.0,1 +21598,14,1.0,1,2.1287128925323486,99,1.0,1 +21599,14,1.0,1,1.7677116394042969,100,1.0,1 +21600,14,1.0,1,1.4557156562805176,101,0.0,1 +21601,14,0.0,1,1.950709342956543,102,1.0,1 +21602,14,0.0,1,1.2847179174423218,103,0.0,1 +21603,14,0.0,1,1.4467158317565918,104,1.0,1 +21604,14,0.0,1,1.2167178392410278,105,0.0,1 +21605,14,1.0,1,2.0737104415893555,106,1.0,1 +21606,14,1.0,1,1.291717767715454,107,0.0,1 +21607,14,1.0,1,2.206716537475586,108,1.0,1 +21608,14,1.0,1,1.5297147035598755,109,1.0,1 +21609,14,1.0,1,1.2797179222106934,110,1.0,1 +21610,14,1.0,1,1.9357094764709473,111,1.0,1 +21611,14,1.0,1,1.7427120208740234,112,1.0,1 +21612,14,1.0,1,1.7967113256454468,113,1.0,1 +21613,14,1.0,1,1.3717167377471924,114,1.0,1 +21614,14,1.0,1,1.457715630531311,115,1.0,1 +21615,14,1.0,1,1.5257147550582886,116,1.0,1 +21616,14,1.0,1,1.6307134628295898,117,0.0,1 +21617,14,0.0,1,1.4897152185440063,118,0.0,1 +21618,14,0.0,1,2.1167123317718506,119,0.0,1 +21619,14,1.0,1,1.342717170715332,120,0.0,1 +21620,14,0.0,1,1.945709466934204,121,0.0,1 +21621,14,1.0,1,1.2887178659439087,122,1.0,1 +21622,14,1.0,1,1.4547157287597656,123,0.0,1 +21623,14,0.0,1,1.1727176904678345,124,0.0,1 +21624,14,0.0,1,1.994708776473999,125,1.0,1 +21625,14,0.0,1,1.8187110424041748,126,0.0,1 +21626,14,0.0,1,1.5507144927978516,127,1.0,1 +21627,14,0.0,1,1.2337177991867065,128,0.0,1 +21628,14,0.0,1,1.4147162437438965,129,0.0,1 +21629,14,1.0,1,1.4537156820297241,130,0.0,1 +21630,14,0.0,1,1.5407146215438843,131,0.0,1 +21631,14,0.0,1,1.4967151880264282,132,0.0,1 +21632,14,0.0,1,1.3887165784835815,133,0.0,1 +21633,14,0.0,1,1.2457178831100464,134,1.0,1 +21634,14,0.0,1,1.1717177629470825,135,1.0,1 +21635,14,1.0,1,1.2667179107666016,136,1.0,1 +21636,14,1.0,1,1.6797127723693848,137,1.0,1 +21637,14,0.0,1,1.3827166557312012,138,0.0,1 +21638,14,1.0,1,1.596713900566101,139,0.0,1 +21639,14,0.0,1,1.4707155227661133,140,1.0,1 +21640,14,0.0,1,1.1947177648544312,141,1.0,1 +21641,14,0.0,1,1.2307178974151611,142,0.0,1 +21642,14,0.0,1,2.5657334327697754,143,1.0,1 +21643,14,0.0,1,1.7797114849090576,144,0.0,1 +21644,14,0.0,1,1.6947126388549805,145,0.0,1 +21645,14,0.0,1,1.3837165832519531,146,0.0,1 +21646,14,0.0,1,1.6607130765914917,147,0.0,1 +21647,14,0.0,1,1.8027112483978271,148,0.0,1 +21648,14,0.0,1,1.4987151622772217,149,1.0,1 +21649,14,0.0,1,1.339717149734497,150,0.0,1 +21650,14,0.0,1,2.0977115631103516,151,0.0,1 +21651,14,0.0,1,1.3267173767089844,152,1.0,1 +21652,14,0.0,1,1.7047125101089478,153,0.0,1 +21653,14,0.0,1,1.4967151880264282,154,0.0,1 +21654,14,1.0,1,1.4697154760360718,155,0.0,1 +21655,14,0.0,1,1.6407133340835571,156,0.0,1 +21656,14,1.0,1,1.807711124420166,157,1.0,1 +21657,14,1.0,1,1.805711269378662,158,0.0,1 +21658,14,0.0,1,1.3047176599502563,159,1.0,1 +21659,14,0.0,1,1.3997163772583008,160,0.0,1 +21660,14,0.0,1,2.0097086429595947,161,0.0,1 +21661,14,0.0,1,2.1237125396728516,162,0.0,1 +21662,14,1.0,1,1.556714415550232,163,1.0,1 +21663,14,1.0,1,1.5327147245407104,164,1.0,1 +21664,14,1.0,1,1.3257173299789429,165,1.0,1 +21665,14,1.0,1,1.903709888458252,166,0.0,1 +21666,14,1.0,1,1.6397132873535156,167,1.0,1 +21667,14,1.0,1,1.2187178134918213,168,1.0,1 +21668,14,1.0,1,1.2907178401947021,169,1.0,1 +21669,14,1.0,1,1.2157177925109863,170,1.0,1 +21670,14,1.0,1,1.504715085029602,171,0.0,1 +21671,14,0.0,1,1.4527157545089722,172,0.0,1 +21672,14,0.0,1,1.294717788696289,173,0.0,1 +21673,14,0.0,1,1.5557143688201904,174,0.0,1 +21674,14,1.0,1,2.3657240867614746,175,1.0,1 +21675,14,1.0,1,1.2607178688049316,176,0.0,1 +21676,14,1.0,1,1.6617131233215332,177,0.0,1 +21677,14,0.0,1,1.4677155017852783,178,1.0,1 +21678,14,1.0,1,1.6777129173278809,179,1.0,1 +21679,14,1.0,1,2.1237125396728516,180,0.0,1 +21680,14,0.0,1,1.2617179155349731,181,0.0,1 +21681,14,0.0,1,2.1327130794525146,182,1.0,1 +21682,14,0.0,1,1.8317108154296875,183,0.0,1 +21683,14,0.0,1,1.170717716217041,184,0.0,1 +21684,14,1.0,1,2.469728946685791,185,1.0,1 +21685,14,1.0,1,2.002708673477173,186,1.0,1 +21686,14,1.0,1,1.556714415550232,187,0.0,1 +21687,14,1.0,1,2.443727493286133,188,1.0,1 +21688,14,0.0,1,1.556714415550232,189,1.0,1 +21689,14,0.0,1,1.3147175312042236,190,0.0,1 +21690,14,1.0,1,1.1947177648544312,191,0.0,1 +21691,14,0.0,1,1.294717788696289,192,0.0,1 +21692,14,0.0,1,1.644713282585144,193,1.0,1 +21693,14,0.0,1,1.3627169132232666,194,0.0,1 +21694,14,0.0,1,1.3117175102233887,195,0.0,1 +21695,14,1.0,1,1.6877126693725586,196,1.0,1 +21696,14,1.0,1,1.9877088069915771,197,1.0,1 +21697,14,1.0,1,1.7277121543884277,198,1.0,1 +21698,14,1.0,1,1.6457133293151855,199,1.0,1 +21699,14,1.0,1,1.1807177066802979,200,1.0,1 +21700,14,1.0,1,1.1447176933288574,201,1.0,1 +21701,14,1.0,1,1.6317133903503418,202,0.0,1 +21702,14,0.0,1,1.3897165060043335,203,1.0,1 +21703,14,0.0,1,1.4157161712646484,204,0.0,1 +21704,14,1.0,1,2.1157121658325195,205,1.0,1 +21705,14,1.0,1,1.3897165060043335,206,1.0,1 +21706,14,1.0,1,1.291717767715454,207,1.0,1 +21707,14,1.0,1,1.7817115783691406,208,1.0,1 +21708,14,1.0,1,1.479715347290039,209,1.0,1 +21709,14,1.0,1,1.7227122783660889,210,1.0,1 +21710,14,1.0,1,1.9007099866867065,211,1.0,1 +21711,14,1.0,1,1.394716501235962,212,0.0,1 +21712,14,1.0,1,1.8417108058929443,213,0.0,1 +21713,14,0.0,1,1.298717737197876,214,0.0,1 +21714,14,1.0,1,1.1467176675796509,215,1.0,1 +21715,14,1.0,1,1.7377121448516846,216,1.0,1 +21716,14,1.0,1,1.7297122478485107,217,1.0,1 +21717,14,1.0,1,1.2487179040908813,218,0.0,1 +21718,14,1.0,1,1.9257097244262695,219,1.0,1 +21719,14,1.0,1,1.210717797279358,220,1.0,1 +21720,14,1.0,1,1.316717505455017,221,1.0,1 +21721,14,1.0,1,1.4807153940200806,222,1.0,1 +21722,14,1.0,1,1.3517169952392578,223,1.0,1 +21723,14,1.0,1,1.7747116088867188,224,1.0,1 +21724,14,1.0,1,1.899709939956665,225,1.0,1 +21725,14,1.0,1,1.5917139053344727,226,1.0,1 +21726,14,1.0,1,1.3777166604995728,227,0.0,1 +21727,14,0.0,1,1.3057175874710083,228,1.0,1 +21728,14,0.0,1,1.1557177305221558,229,1.0,1 +21729,14,0.0,1,1.5727142095565796,230,1.0,1 +21730,14,0.0,1,1.5007151365280151,231,0.0,1 +21731,14,1.0,1,1.435715913772583,232,1.0,1 +21732,14,1.0,1,1.1977177858352661,233,1.0,1 +21733,14,1.0,1,1.788711428642273,234,0.0,1 +21734,14,0.0,1,1.438715934753418,235,0.0,1 +21735,14,1.0,1,2.0517091751098633,236,1.0,1 +21736,14,1.0,1,1.435715913772583,237,0.0,1 +21737,14,0.0,1,1.5387146472930908,238,0.0,1 +21738,14,0.0,1,1.6577131748199463,239,1.0,1 +21739,14,0.0,1,1.6977126598358154,240,0.0,1 +21740,14,1.0,1,1.5827140808105469,241,1.0,1 +21741,14,1.0,1,2.2357177734375,242,1.0,1 +21742,14,1.0,1,1.5577144622802734,243,1.0,1 +21743,14,1.0,1,1.2927178144454956,244,1.0,1 +21744,14,1.0,1,1.5957138538360596,245,1.0,1 +21745,14,1.0,1,1.368716835975647,246,0.0,1 +21746,14,1.0,1,1.343717098236084,247,0.0,1 +21747,14,0.0,1,1.9307096004486084,248,0.0,1 +21748,14,0.0,1,1.1207176446914673,249,1.0,1 +21749,14,0.0,1,1.2597179412841797,250,0.0,1 +21750,14,0.0,1,1.8737103939056396,251,0.0,1 +21751,14,0.0,1,1.3507170677185059,252,0.0,1 +21752,14,1.0,1,2.00070858001709,253,0.0,1 +21753,14,1.0,1,1.3987164497375488,254,1.0,1 +21754,14,1.0,1,1.5177148580551147,255,1.0,1 +21755,14,1.0,1,1.2977176904678345,256,1.0,1 +21756,14,1.0,1,1.718712329864502,257,0.0,1 +21757,14,0.0,1,1.5387146472930908,258,0.0,1 +21758,14,0.0,1,2.3667240142822266,259,1.0,1 +21759,14,0.0,1,1.2187178134918213,260,0.0,1 +21760,14,0.0,1,1.1817177534103394,261,0.0,1 +21761,14,1.0,1,1.4977151155471802,262,1.0,1 +21762,14,1.0,1,1.2497178316116333,263,0.0,1 +21763,14,1.0,1,2.1297130584716797,264,1.0,1 +21764,14,1.0,1,1.487715244293213,265,1.0,1 +21765,14,1.0,1,1.4657155275344849,266,0.0,1 +21766,14,1.0,1,1.807711124420166,267,1.0,1 +21767,14,0.0,1,1.7837114334106445,268,0.0,1 +21768,14,1.0,1,1.4227161407470703,269,0.0,1 +21769,14,0.0,1,1.9617092609405518,270,0.0,1 +21770,14,0.0,1,1.8007112741470337,271,1.0,1 +21771,14,0.0,1,1.2697179317474365,272,0.0,1 +21772,14,0.0,1,1.3747167587280273,273,0.0,1 +21773,14,0.0,1,2.265719413757324,274,0.0,1 +21774,14,0.0,1,1.264717936515808,275,0.0,1 +21775,14,0.0,1,1.3417171239852905,276,1.0,1 +21776,14,0.0,1,1.1197175979614258,277,1.0,1 +21777,14,0.0,1,1.1517176628112793,278,0.0,1 +21778,14,1.0,1,1.876710295677185,279,1.0,1 +21779,14,1.0,1,1.264717936515808,280,1.0,1 +21780,14,1.0,1,1.3567169904708862,281,1.0,1 +21781,14,1.0,1,1.434715986251831,282,0.0,1 +21782,14,0.0,1,1.3297172784805298,283,0.0,1 +21783,14,1.0,1,1.8357107639312744,284,0.0,1 +21784,14,1.0,1,1.5497145652770996,285,0.0,1 +21785,14,1.0,1,1.6727129220962524,286,1.0,1 +21786,14,1.0,1,1.7857115268707275,287,1.0,1 +21787,14,1.0,1,1.487715244293213,288,1.0,1 +21788,14,1.0,1,1.671712875366211,289,1.0,1 +21789,14,1.0,1,1.3107175827026367,290,0.0,1 +21790,14,0.0,1,1.1827178001403809,291,0.0,1 +21791,14,1.0,1,1.7827115058898926,292,1.0,1 +21792,14,1.0,1,1.27171790599823,293,1.0,1 +21793,14,1.0,1,1.2847179174423218,294,0.0,1 +21794,14,1.0,1,2.1247127056121826,295,0.0,1 +21795,14,1.0,1,1.3077175617218018,296,1.0,1 +21796,14,1.0,1,1.1567176580429077,297,0.0,1 +21797,14,0.0,1,1.4507157802581787,298,0.0,1 +21798,14,1.0,1,1.8087111711502075,299,0.0,1 +21799,14,1.0,1,1.4197161197662354,300,1.0,1 +21800,14,1.0,1,1.2527178525924683,301,1.0,1 +21801,14,1.0,1,1.6867127418518066,302,1.0,1 +21802,14,1.0,1,1.3637168407440186,303,1.0,1 +21803,14,1.0,1,1.6097137928009033,304,0.0,1 +21804,14,0.0,1,1.5647143125534058,305,0.0,1 +21805,14,1.0,1,2.458728313446045,306,0.0,1 +21806,14,0.0,1,1.4987151622772217,307,0.0,1 +21807,14,1.0,1,1.4667155742645264,308,1.0,1 +21808,14,1.0,1,1.8127111196517944,309,0.0,1 +21809,14,1.0,1,1.993708848953247,310,1.0,1 +21810,14,0.0,1,1.240717887878418,311,0.0,1 +21811,14,0.0,1,2.771742820739746,312,1.0,1 +21812,14,0.0,1,1.4667155742645264,313,0.0,1 +21813,14,0.0,1,1.7747116088867188,314,1.0,1 +21814,14,0.0,1,1.4817153215408325,315,0.0,1 +21815,14,1.0,1,1.8747103214263916,316,1.0,1 +21816,14,1.0,1,1.3737167119979858,317,0.0,1 +21817,14,0.0,1,1.8817102909088135,318,0.0,1 +21818,14,1.0,1,1.836710810661316,319,1.0,1 +21819,14,1.0,1,1.1507177352905273,320,1.0,1 +21820,14,1.0,1,1.2027177810668945,321,0.0,1 +21821,14,1.0,1,1.6477131843566895,322,1.0,1 +21822,14,1.0,1,1.3537169694900513,323,0.0,1 +21823,14,1.0,1,1.7297122478485107,324,1.0,1 +21824,14,1.0,1,2.0937113761901855,325,0.0,1 +21825,14,0.0,1,1.2397178411483765,326,1.0,1 +21826,14,0.0,1,1.2477178573608398,327,1.0,1 +21827,14,0.0,1,1.4227161407470703,328,0.0,1 +21828,14,1.0,1,1.3127175569534302,329,1.0,1 +21829,14,1.0,1,1.692712664604187,330,1.0,1 +21830,14,1.0,1,1.673712968826294,331,1.0,1 +21831,14,1.0,1,1.5577144622802734,332,1.0,1 +21832,14,1.0,1,1.3857165575027466,333,1.0,1 +21833,14,1.0,1,1.3847166299819946,334,1.0,1 +21834,14,1.0,1,1.4117162227630615,335,1.0,1 +21835,14,1.0,1,1.5977139472961426,336,0.0,1 +21836,14,1.0,1,2.0647099018096924,337,0.0,1 +21837,14,1.0,1,2.190715789794922,338,1.0,1 +21838,14,0.0,1,1.3237173557281494,339,0.0,1 +21839,14,0.0,1,1.7047125101089478,340,0.0,1 +21840,14,1.0,1,1.7817115783691406,341,1.0,1 +21841,14,1.0,1,1.177717685699463,342,1.0,1 +21842,14,1.0,1,1.412716269493103,343,1.0,1 +21843,14,1.0,1,1.604713797569275,344,1.0,1 +21844,14,1.0,1,1.5227148532867432,345,0.0,1 +21845,14,0.0,1,2.4277267456054688,346,0.0,1 +21846,14,1.0,1,1.8307108879089355,347,1.0,1 +21847,14,1.0,1,1.6537132263183594,348,0.0,1 +21848,14,0.0,1,2.5657334327697754,349,0.0,1 +21849,14,0.0,1,1.5027151107788086,350,0.0,1 +21850,14,0.0,1,1.991708755493164,351,0.0,1 +21851,14,1.0,1,1.855710506439209,352,1.0,1 +21852,14,1.0,1,1.5837140083312988,353,0.0,1 +21853,14,1.0,1,1.9587092399597168,354,0.0,1 +21854,14,0.0,1,1.321717381477356,355,1.0,1 +21855,14,0.0,1,1.2577178478240967,356,1.0,1 +21856,14,0.0,1,1.714712381362915,357,0.0,1 +21857,14,1.0,1,1.4277160167694092,358,1.0,1 +21858,14,0.0,1,1.3367172479629517,359,0.0,1 +21859,14,1.0,1,1.8797101974487305,360,1.0,1 +21860,14,1.0,1,1.4147162437438965,361,1.0,1 +21861,14,1.0,1,1.3537169694900513,362,0.0,1 +21862,14,0.0,1,1.2977176904678345,363,0.0,1 +21863,14,0.0,1,1.1857177019119263,364,0.0,1 +21864,14,0.0,1,1.316717505455017,365,0.0,1 +21865,14,1.0,1,1.3787167072296143,366,1.0,1 +21866,14,1.0,1,1.487715244293213,367,1.0,1 +21867,14,1.0,1,1.483715295791626,368,1.0,1 +21868,14,1.0,1,1.4107162952423096,369,1.0,1 +21869,14,1.0,1,1.4207161664962769,370,1.0,1 +21870,14,1.0,1,1.574714183807373,371,1.0,1 +21871,14,1.0,1,1.596713900566101,372,1.0,1 +21872,14,1.0,1,1.3447171449661255,373,1.0,1 +21873,14,1.0,1,1.26571786403656,374,1.0,1 +21874,14,1.0,1,1.3627169132232666,375,1.0,1 +21875,14,1.0,1,1.3577169179916382,376,1.0,1 +21876,14,0.0,1,1.2727179527282715,377,0.0,1 +21877,14,1.0,1,1.4917151927947998,378,0.0,1 +21878,14,1.0,1,1.4757153987884521,379,0.0,1 +21879,14,0.0,1,1.2567179203033447,380,0.0,1 +21880,14,1.0,1,1.6307134628295898,381,1.0,1 +21881,14,1.0,1,1.3807166814804077,382,1.0,1 +21882,14,1.0,1,1.575714111328125,383,1.0,1 +21883,14,1.0,1,1.993708848953247,384,1.0,1 +21884,14,1.0,1,1.2247178554534912,385,1.0,1 +21885,14,1.0,1,1.573714256286621,386,1.0,1 +21886,14,1.0,1,1.2187178134918213,387,1.0,1 +21887,14,1.0,1,1.3507170677185059,388,0.0,1 +21888,14,0.0,1,1.3597168922424316,389,0.0,1 +21889,14,1.0,1,1.504715085029602,390,0.0,1 +21890,14,1.0,1,1.953709363937378,391,1.0,1 +21891,14,1.0,1,1.2817178964614868,392,0.0,1 +21892,14,0.0,1,1.1427175998687744,393,1.0,1 +21893,14,0.0,1,1.3887165784835815,394,0.0,1 +21894,14,0.0,1,1.6027138233184814,395,0.0,1 +21895,14,1.0,1,1.5187149047851562,396,0.0,1 +21896,14,1.0,1,2.3757243156433105,397,1.0,1 +21897,14,1.0,1,1.2337177991867065,398,1.0,1 +21898,14,1.0,1,1.1987178325653076,399,0.0,1 +21899,14,0.0,1,1.6357133388519287,400,1.0,1 +21900,14,0.0,1,1.8847101926803589,401,1.0,1 +21901,14,0.0,1,1.27171790599823,402,1.0,1 +21902,14,0.0,1,1.478715419769287,403,0.0,1 +21903,14,1.0,1,1.8667104244232178,404,1.0,1 +21904,14,1.0,1,1.2257177829742432,405,0.0,1 +21905,14,1.0,1,1.596713900566101,406,0.0,1 +21906,14,1.0,1,1.990708827972412,407,0.0,1 +21907,14,0.0,1,1.1697176694869995,408,0.0,1 +21908,14,1.0,1,1.6347134113311768,409,0.0,1 +21909,14,1.0,1,1.3627169132232666,410,1.0,1 +21910,14,1.0,1,1.575714111328125,411,1.0,1 +21911,14,1.0,1,1.3347172737121582,412,1.0,1 +21912,14,1.0,1,1.3567169904708862,413,1.0,1 +21913,14,1.0,1,1.3727167844772339,414,1.0,1 +21914,14,1.0,1,2.207716464996338,415,0.0,1 +21915,14,1.0,1,1.8027112483978271,416,1.0,1 +21916,14,1.0,1,1.622713565826416,417,1.0,1 +21917,14,1.0,1,2.0787105560302734,418,0.0,1 +21918,14,1.0,1,1.7977113723754883,419,1.0,1 +21919,14,1.0,1,1.534714698791504,420,1.0,1 +21920,14,1.0,1,1.320717453956604,421,1.0,1 +21921,14,1.0,1,1.4327160120010376,422,1.0,1 +21922,14,1.0,1,1.6437132358551025,423,1.0,1 +21923,14,1.0,1,1.302717685699463,424,0.0,1 +21924,14,1.0,1,1.9047099351882935,425,0.0,1 +21925,14,1.0,1,1.2457178831100464,426,1.0,1 +21926,14,1.0,1,1.435715913772583,427,1.0,1 +21927,14,1.0,1,1.4737154245376587,428,1.0,1 +21928,14,1.0,1,1.2547178268432617,429,1.0,1 +21929,14,1.0,1,1.3717167377471924,430,1.0,1 +21930,14,1.0,1,1.5627143383026123,431,1.0,1 +21931,14,1.0,1,1.1987178325653076,432,0.0,1 +21932,14,0.0,1,2.198716163635254,433,0.0,1 +21933,14,0.0,1,1.2667179107666016,434,0.0,1 +21934,14,0.0,1,2.3037209510803223,435,0.0,1 +21935,14,0.0,1,2.227717399597168,436,0.0,1 +21936,14,0.0,1,2.1157121658325195,437,1.0,1 +21937,14,0.0,1,1.1177176237106323,438,1.0,1 +21938,14,0.0,1,1.1917177438735962,439,0.0,1 +21939,14,0.0,1,2.441727638244629,440,0.0,1 +21940,14,0.0,1,1.548714518547058,441,0.0,1 +21941,14,1.0,1,1.386716604232788,442,1.0,1 +21942,14,1.0,1,1.1567176580429077,443,1.0,1 +21943,14,1.0,1,1.5127149820327759,444,1.0,1 +21944,14,1.0,1,1.5917139053344727,445,1.0,1 +21945,14,1.0,1,1.6627130508422852,446,0.0,1 +21946,14,0.0,1,1.4447158575057983,447,0.0,1 +21947,14,0.0,1,1.744711995124817,448,1.0,1 +21948,14,0.0,1,1.264717936515808,449,0.0,1 +21949,14,0.0,1,1.4917151927947998,450,0.0,1 +21950,14,0.0,1,2.1027116775512695,451,0.0,1 +21951,14,1.0,1,1.899709939956665,452,1.0,1 +21952,14,1.0,1,1.417716145515442,453,1.0,1 +21953,14,1.0,1,1.4507157802581787,454,1.0,1 +21954,14,1.0,1,1.478715419769287,455,1.0,1 +21955,14,1.0,1,1.478715419769287,456,1.0,1 +21956,14,0.0,1,1.1817177534103394,457,1.0,1 +21957,14,0.0,1,1.6457133293151855,458,1.0,1 +21958,14,1.0,1,1.811711072921753,459,0.0,1 +21959,14,0.0,1,1.2207177877426147,460,1.0,1 +21960,14,0.0,1,1.2777179479599,461,0.0,1 +21961,14,0.0,1,1.7527118921279907,462,0.0,1 +21962,14,0.0,1,1.3447171449661255,463,1.0,1 +21963,14,0.0,1,1.3807166814804077,464,0.0,1 +21964,14,1.0,1,1.761711835861206,465,1.0,1 +21965,14,1.0,1,1.6167136430740356,466,1.0,1 +21966,14,1.0,1,1.3977164030075073,467,0.0,1 +21967,14,1.0,1,1.6467132568359375,468,0.0,1 +21968,14,1.0,1,1.7247122526168823,469,1.0,1 +21969,14,1.0,1,1.1557177305221558,470,1.0,1 +21970,14,1.0,1,1.4087163209915161,471,1.0,1 +21971,14,1.0,1,1.7247122526168823,472,0.0,1 +21972,14,0.0,1,1.3097175359725952,473,0.0,1 +21973,14,1.0,1,2.002708673477173,474,1.0,1 +21974,14,0.0,1,1.1527177095413208,475,0.0,1 +21975,14,1.0,1,1.2397178411483765,476,1.0,1 +21976,14,1.0,1,1.552714467048645,477,1.0,1 +21977,14,1.0,1,1.8047112226486206,478,1.0,1 +21978,14,1.0,1,1.3897165060043335,479,0.0,1 +21979,14,0.0,1,1.24171781539917,480,1.0,1 +21980,14,0.0,1,1.2727179527282715,481,1.0,1 +21981,14,0.0,1,1.5327147245407104,482,0.0,1 +21982,14,1.0,1,1.7677116394042969,483,1.0,1 +21983,14,1.0,1,2.1277127265930176,484,0.0,1 +21984,14,1.0,1,1.4407159090042114,485,0.0,1 +21985,14,0.0,1,1.509714961051941,486,0.0,1 +21986,14,1.0,1,1.6057138442993164,487,1.0,1 +21987,14,1.0,1,1.174717664718628,488,1.0,1 +21988,14,1.0,1,1.2307178974151611,489,1.0,1 +21989,14,1.0,1,1.2607178688049316,490,0.0,1 +21990,14,1.0,1,1.8357107639312744,491,1.0,1 +21991,14,1.0,1,1.27171790599823,492,1.0,1 +21992,14,1.0,1,1.5617144107818604,493,0.0,1 +21993,14,0.0,1,2.439727306365967,494,0.0,1 +21994,14,0.0,1,1.828710913658142,495,0.0,1 +21995,14,0.0,1,2.246718406677246,496,0.0,1 +21996,14,1.0,1,1.413716197013855,497,1.0,1 +21997,14,1.0,1,1.342717170715332,498,1.0,1 +21998,14,1.0,1,1.3227174282073975,499,1.0,1 +21999,14,1.0,1,1.1967177391052246,500,1.0,1 +22000,14,0.0,2,1.8967100381851196,1,0.0,1 +22001,14,1.0,2,1.4697154760360718,2,0.0,1 +22002,14,0.0,2,1.4707155227661133,3,0.0,1 +22003,14,1.0,2,1.7757115364074707,4,0.0,1 +22004,14,0.0,2,1.6157135963439941,5,0.0,1 +22005,14,1.0,2,2.1217126846313477,6,1.0,1 +22006,14,1.0,2,1.4037163257598877,7,1.0,1 +22007,14,1.0,2,1.1547176837921143,8,0.0,1 +22008,14,1.0,2,2.5387320518493652,9,1.0,1 +22009,14,1.0,2,1.8237109184265137,10,0.0,1 +22010,14,0.0,2,2.1107120513916016,11,1.0,1 +22011,14,0.0,2,1.8697104454040527,12,1.0,1 +22012,14,1.0,2,2.0307083129882812,13,1.0,1 +22013,14,0.0,2,1.6157135963439941,14,0.0,1 +22014,14,1.0,2,1.2297178506851196,15,0.0,1 +22015,14,1.0,2,1.3677167892456055,16,1.0,1 +22016,14,1.0,2,1.365716814994812,17,0.0,1 +22017,14,0.0,2,1.1597176790237427,18,0.0,1 +22018,14,1.0,2,1.413716197013855,19,0.0,1 +22019,14,0.0,2,2.3287222385406494,20,0.0,1 +22020,14,1.0,2,1.596713900566101,21,1.0,1 +22021,14,1.0,2,1.6537132263183594,22,0.0,1 +22022,14,0.0,2,1.9707090854644775,23,1.0,1 +22023,14,0.0,2,1.854710578918457,24,0.0,1 +22024,14,0.0,2,2.3197216987609863,25,1.0,1 +22025,14,0.0,2,1.320717453956604,26,0.0,1 +22026,14,0.0,2,1.663712978363037,27,1.0,1 +22027,14,0.0,2,1.3577169179916382,28,1.0,1 +22028,14,0.0,2,1.8637104034423828,29,0.0,1 +22029,14,0.0,2,1.112717628479004,30,1.0,1 +22030,14,0.0,2,1.7287122011184692,31,1.0,1 +22031,14,0.0,2,1.1727176904678345,32,0.0,1 +22032,14,0.0,2,2.208716630935669,33,0.0,1 +22033,14,1.0,2,1.3347172737121582,34,1.0,1 +22034,14,1.0,2,1.3457170724868774,35,1.0,1 +22035,14,1.0,2,1.3007177114486694,36,0.0,1 +22036,14,1.0,2,1.3857165575027466,37,0.0,1 +22037,14,0.0,2,2.4167263507843018,38,1.0,1 +22038,14,0.0,2,1.3357172012329102,39,0.0,1 +22039,14,0.0,2,1.3597168922424316,40,0.0,1 +22040,14,0.0,2,1.2227177619934082,41,0.0,1 +22041,14,0.0,2,2.174715042114258,42,1.0,1 +22042,14,0.0,2,1.9077098369598389,43,0.0,1 +22043,14,1.0,2,1.9887088537216187,44,1.0,1 +22044,14,1.0,2,1.5077149868011475,45,0.0,1 +22045,14,1.0,2,1.8197109699249268,46,1.0,1 +22046,14,0.0,2,1.267717957496643,47,1.0,1 +22047,14,0.0,2,1.431715965270996,48,0.0,1 +22048,14,1.0,2,1.5647143125534058,49,1.0,1 +22049,14,1.0,2,1.629713535308838,50,1.0,1 +22050,14,1.0,2,1.207717776298523,51,1.0,1 +22051,14,1.0,2,1.3827166557312012,52,0.0,1 +22052,14,0.0,2,1.9147098064422607,53,0.0,1 +22053,14,0.0,2,1.461715579032898,54,0.0,1 +22054,14,1.0,2,2.203716278076172,55,1.0,1 +22055,14,1.0,2,1.4807153940200806,56,0.0,1 +22056,14,0.0,2,1.5037150382995605,57,1.0,1 +22057,14,0.0,2,1.1517176628112793,58,1.0,1 +22058,14,0.0,2,1.6787128448486328,59,0.0,1 +22059,14,0.0,2,1.4307160377502441,60,0.0,1 +22060,14,0.0,2,2.1307129859924316,61,0.0,1 +22061,14,0.0,2,1.4487158060073853,62,1.0,1 +22062,14,0.0,2,1.5687142610549927,63,1.0,1 +22063,14,1.0,2,1.905709981918335,64,0.0,1 +22064,14,0.0,2,1.368716835975647,65,1.0,1 +22065,14,0.0,2,1.6067137718200684,66,0.0,1 +22066,14,0.0,2,1.238717794418335,67,0.0,1 +22067,14,0.0,2,1.5977139472961426,68,1.0,1 +22068,14,0.0,2,1.3497170209884644,69,0.0,1 +22069,14,0.0,2,1.5707142353057861,70,1.0,1 +22070,14,0.0,2,1.509714961051941,71,1.0,1 +22071,14,0.0,2,1.4527157545089722,72,0.0,1 +22072,14,0.0,2,2.0147085189819336,73,0.0,1 +22073,14,0.0,2,1.8397107124328613,74,1.0,1 +22074,14,0.0,2,1.2597179412841797,75,1.0,1 +22075,14,0.0,2,1.2667179107666016,76,0.0,1 +22076,14,1.0,2,2.5727336406707764,77,1.0,1 +22077,14,1.0,2,1.3507170677185059,78,1.0,1 +22078,14,1.0,2,1.8507106304168701,79,0.0,1 +22079,14,1.0,2,2.1007115840911865,80,1.0,1 +22080,14,1.0,2,1.3157174587249756,81,0.0,1 +22081,14,0.0,2,1.5137149095535278,82,1.0,1 +22082,14,0.0,2,1.2617179155349731,83,1.0,1 +22083,14,0.0,2,1.809711217880249,84,0.0,1 +22084,14,0.0,2,1.2597179412841797,85,1.0,1 +22085,14,0.0,2,1.4477157592773438,86,0.0,1 +22086,14,0.0,2,1.5677142143249512,87,1.0,1 +22087,14,0.0,2,1.3717167377471924,88,0.0,1 +22088,14,0.0,2,1.4297159910202026,89,1.0,1 +22089,14,1.0,2,1.5007151365280151,90,1.0,1 +22090,14,0.0,2,1.4907152652740479,91,0.0,1 +22091,14,1.0,2,1.6797127723693848,92,1.0,1 +22092,14,1.0,2,1.4847153425216675,93,1.0,1 +22093,14,1.0,2,1.2577178478240967,94,1.0,1 +22094,14,1.0,2,1.6127136945724487,95,0.0,1 +22095,14,0.0,2,1.5447145700454712,96,1.0,1 +22096,14,0.0,2,1.2567179203033447,97,0.0,1 +22097,14,0.0,2,1.6817128658294678,98,0.0,1 +22098,14,0.0,2,2.6587376594543457,99,1.0,1 +22099,14,0.0,2,1.6077136993408203,100,0.0,1 +22100,14,0.0,2,2.3887250423431396,101,0.0,1 +22101,14,0.0,2,2.464728593826294,102,1.0,1 +22102,14,1.0,2,1.368716835975647,103,0.0,1 +22103,14,0.0,2,1.201717734336853,104,0.0,1 +22104,14,1.0,2,1.3937164545059204,105,1.0,1 +22105,14,1.0,2,1.3227174282073975,106,0.0,1 +22106,14,0.0,2,1.1907176971435547,107,0.0,1 +22107,14,1.0,2,2.457728385925293,108,0.0,1 +22108,14,1.0,2,1.210717797279358,109,0.0,1 +22109,14,0.0,2,1.6337134838104248,110,0.0,1 +22110,14,0.0,2,1.7007125616073608,111,1.0,1 +22111,14,0.0,2,1.7097125053405762,112,0.0,1 +22112,14,0.0,2,1.4217160940170288,113,0.0,1 +22113,14,0.0,2,1.9387094974517822,114,0.0,1 +22114,14,1.0,2,2.1437134742736816,115,1.0,1 +22115,14,1.0,2,2.0227084159851074,116,0.0,1 +22116,14,1.0,2,1.9447094202041626,117,0.0,1 +22117,14,1.0,2,1.8407107591629028,118,1.0,1 +22118,14,1.0,2,1.8887101411819458,119,1.0,1 +22119,14,0.0,2,2.1257128715515137,120,1.0,1 +22120,14,0.0,2,1.8637104034423828,121,1.0,1 +22121,14,1.0,2,1.7527118921279907,122,0.0,1 +22122,14,0.0,2,2.0497093200683594,123,1.0,1 +22123,14,1.0,2,1.4277160167694092,124,1.0,1 +22124,14,0.0,2,1.4257160425186157,125,1.0,1 +22125,14,0.0,2,1.8207110166549683,126,0.0,1 +22126,14,1.0,2,1.38771653175354,127,0.0,1 +22127,14,0.0,2,1.6147136688232422,128,0.0,1 +22128,14,0.0,2,1.3627169132232666,129,0.0,1 +22129,14,1.0,2,1.4287160634994507,130,1.0,1 +22130,14,1.0,2,1.8677103519439697,131,0.0,1 +22131,14,0.0,2,1.9217097759246826,132,1.0,1 +22132,14,0.0,2,1.394716501235962,133,0.0,1 +22133,14,0.0,2,1.243717908859253,134,0.0,1 +22134,14,0.0,2,2.425726890563965,135,0.0,1 +22135,14,1.0,2,1.5297147035598755,136,1.0,1 +22136,14,1.0,2,1.2777179479599,137,1.0,1 +22137,14,1.0,2,1.179717779159546,138,0.0,1 +22138,14,0.0,2,1.1357176303863525,139,1.0,1 +22139,14,0.0,2,1.4057163000106812,140,0.0,1 +22140,14,0.0,2,1.9927088022232056,141,1.0,1 +22141,14,0.0,2,1.343717098236084,142,1.0,1 +22142,14,0.0,2,1.1817177534103394,143,1.0,1 +22143,14,0.0,2,1.3357172012329102,144,1.0,1 +22144,14,0.0,2,1.5477144718170166,145,0.0,1 +22145,14,1.0,2,1.9797089099884033,146,1.0,1 +22146,14,1.0,2,1.268717885017395,147,0.0,1 +22147,14,0.0,2,1.9787089824676514,148,0.0,1 +22148,14,1.0,2,1.1837177276611328,149,0.0,1 +22149,14,1.0,2,1.6347134113311768,150,1.0,1 +22150,14,1.0,2,1.629713535308838,151,0.0,1 +22151,14,1.0,2,2.0187084674835205,152,1.0,1 +22152,14,1.0,2,1.2477178573608398,153,0.0,1 +22153,14,0.0,2,1.5417146682739258,154,0.0,1 +22154,14,1.0,2,2.0407087802886963,155,0.0,1 +22155,14,0.0,2,1.548714518547058,156,0.0,1 +22156,14,1.0,2,1.6837127208709717,157,0.0,1 +22157,14,1.0,2,1.2937177419662476,158,0.0,1 +22158,14,1.0,2,1.3527170419692993,159,0.0,1 +22159,14,0.0,2,1.1297175884246826,160,1.0,1 +22160,14,0.0,2,1.365716814994812,161,0.0,1 +22161,14,1.0,2,1.4327160120010376,162,1.0,1 +22162,14,0.0,2,2.4277267456054688,163,0.0,1 +22163,14,1.0,2,1.7027125358581543,164,0.0,1 +22164,14,1.0,2,1.26571786403656,165,0.0,1 +22165,14,1.0,2,1.4677155017852783,166,0.0,1 +22166,14,0.0,2,1.8177111148834229,167,0.0,1 +22167,14,0.0,2,1.9717090129852295,168,0.0,1 +22168,14,0.0,2,1.5927139520645142,169,0.0,1 +22169,14,0.0,2,1.3737167119979858,170,1.0,1 +22170,14,0.0,2,1.5247148275375366,171,0.0,1 +22171,14,0.0,2,1.8917100429534912,172,1.0,1 +22172,14,0.0,2,1.1587176322937012,173,0.0,1 +22173,14,1.0,2,1.320717453956604,174,1.0,1 +22174,14,1.0,2,1.5957138538360596,175,1.0,1 +22175,14,1.0,2,1.5207148790359497,176,0.0,1 +22176,14,0.0,2,1.8937101364135742,177,0.0,1 +22177,14,1.0,2,2.0117084980010986,178,1.0,1 +22178,14,1.0,2,1.2527178525924683,179,0.0,1 +22179,14,0.0,2,1.5637142658233643,180,0.0,1 +22180,14,0.0,2,1.3387172222137451,181,0.0,1 +22181,14,0.0,2,1.200717806816101,182,0.0,1 +22182,14,1.0,2,1.3577169179916382,183,1.0,1 +22183,14,1.0,2,1.302717685699463,184,0.0,1 +22184,14,1.0,2,1.4507157802581787,185,0.0,1 +22185,14,0.0,2,1.2827179431915283,186,0.0,1 +22186,14,0.0,2,1.3857165575027466,187,0.0,1 +22187,14,1.0,2,1.3957164287567139,188,1.0,1 +22188,14,1.0,2,1.5217148065567017,189,1.0,1 +22189,14,1.0,2,1.4107162952423096,190,0.0,1 +22190,14,0.0,2,1.24171781539917,191,0.0,1 +22191,14,0.0,2,1.7507119178771973,192,0.0,1 +22192,14,1.0,2,2.0107085704803467,193,0.0,1 +22193,14,0.0,2,1.3747167587280273,194,0.0,1 +22194,14,0.0,2,1.4307160377502441,195,1.0,1 +22195,14,0.0,2,1.759711742401123,196,1.0,1 +22196,14,0.0,2,1.3067176342010498,197,0.0,1 +22197,14,1.0,2,1.9747090339660645,198,0.0,1 +22198,14,0.0,2,1.1687177419662476,199,0.0,1 +22199,14,1.0,2,1.9207097291946411,200,0.0,1 +22200,14,1.0,2,1.5027151107788086,201,0.0,1 +22201,14,0.0,2,1.3127175569534302,202,0.0,1 +22202,14,1.0,2,2.0107085704803467,203,1.0,1 +22203,14,1.0,2,1.9377095699310303,204,1.0,1 +22204,14,1.0,2,1.5887140035629272,205,1.0,1 +22205,14,1.0,2,1.6417133808135986,206,1.0,1 +22206,14,1.0,2,1.4057163000106812,207,1.0,1 +22207,14,1.0,2,1.3497170209884644,208,0.0,1 +22208,14,1.0,2,1.3807166814804077,209,1.0,1 +22209,14,1.0,2,1.4447158575057983,210,1.0,1 +22210,14,1.0,2,1.5597143173217773,211,0.0,1 +22211,14,0.0,2,1.2267178297042847,212,1.0,1 +22212,14,0.0,2,1.3607169389724731,213,0.0,1 +22213,14,1.0,2,1.7017126083374023,214,0.0,1 +22214,14,0.0,2,2.8107447624206543,215,0.0,1 +22215,14,1.0,2,1.3757166862487793,216,1.0,1 +22216,14,1.0,2,1.4437158107757568,217,0.0,1 +22217,14,1.0,2,1.2257177829742432,218,0.0,1 +22218,14,1.0,2,2.710740089416504,219,1.0,1 +22219,14,1.0,2,1.7287122011184692,220,1.0,1 +22220,14,1.0,2,1.2497178316116333,221,1.0,1 +22221,14,1.0,2,1.6067137718200684,222,1.0,1 +22222,14,1.0,2,1.4077162742614746,223,0.0,1 +22223,14,0.0,2,1.4947152137756348,224,1.0,1 +22224,14,0.0,2,1.903709888458252,225,1.0,1 +22225,14,0.0,2,1.201717734336853,226,1.0,1 +22226,14,0.0,2,1.1517176628112793,227,0.0,1 +22227,14,1.0,2,1.648713231086731,228,0.0,1 +22228,14,1.0,2,1.4007164239883423,229,0.0,1 +22229,14,1.0,2,1.625713586807251,230,0.0,1 +22230,14,1.0,2,2.258718967437744,231,1.0,1 +22231,14,1.0,2,1.8947100639343262,232,1.0,1 +22232,14,1.0,2,1.5957138538360596,233,0.0,1 +22233,14,1.0,2,1.505715012550354,234,0.0,1 +22234,14,0.0,2,1.347717046737671,235,0.0,1 +22235,14,0.0,2,2.206716537475586,236,0.0,1 +22236,14,0.0,2,1.3317172527313232,237,0.0,1 +22237,14,1.0,2,1.4727154970169067,238,0.0,1 +22238,14,1.0,2,1.9377095699310303,239,0.0,1 +22239,14,0.0,2,1.2597179412841797,240,0.0,1 +22240,14,0.0,2,1.3317172527313232,241,0.0,1 +22241,14,0.0,2,1.4207161664962769,242,0.0,1 +22242,14,0.0,2,1.3857165575027466,243,1.0,1 +22243,14,0.0,2,1.604713797569275,244,0.0,1 +22244,14,0.0,2,1.7897114753723145,245,0.0,1 +22245,14,0.0,2,1.6787128448486328,246,0.0,1 +22246,14,0.0,2,1.8357107639312744,247,1.0,1 +22247,14,0.0,2,1.7987112998962402,248,0.0,1 +22248,14,0.0,2,1.390716552734375,249,1.0,1 +22249,14,0.0,2,1.1977177858352661,250,0.0,1 +22250,14,0.0,2,1.2297178506851196,251,0.0,1 +22251,14,0.0,2,1.5897140502929688,252,0.0,1 +22252,14,0.0,2,1.853710651397705,253,1.0,1 +22253,14,0.0,2,1.3127175569534302,254,0.0,1 +22254,14,1.0,2,2.248718500137329,255,1.0,1 +22255,14,1.0,2,1.8447107076644897,256,1.0,1 +22256,14,1.0,2,1.4457157850265503,257,1.0,1 +22257,14,1.0,2,1.4747154712677002,258,0.0,1 +22258,14,0.0,2,1.6307134628295898,259,1.0,1 +22259,14,0.0,2,1.38771653175354,260,0.0,1 +22260,14,0.0,2,1.8867101669311523,261,0.0,1 +22261,14,0.0,2,1.2337177991867065,262,0.0,1 +22262,14,0.0,2,1.4517157077789307,263,0.0,1 +22263,14,0.0,2,1.6887127161026,264,0.0,1 +22264,14,0.0,2,1.4227161407470703,265,0.0,1 +22265,14,0.0,2,1.460715651512146,266,0.0,1 +22266,14,1.0,2,1.8457107543945312,267,1.0,1 +22267,14,1.0,2,1.626713514328003,268,1.0,1 +22268,14,1.0,2,1.6087137460708618,269,0.0,1 +22269,14,1.0,2,2.1167123317718506,270,0.0,1 +22270,14,1.0,2,1.4557156562805176,271,1.0,1 +22271,14,1.0,2,1.343717098236084,272,0.0,1 +22272,14,1.0,2,1.347717046737671,273,0.0,1 +22273,14,0.0,2,2.3367226123809814,274,0.0,1 +22274,14,1.0,2,1.464715600013733,275,0.0,1 +22275,14,1.0,2,1.811711072921753,276,0.0,1 +22276,14,1.0,2,1.947709321975708,277,0.0,1 +22277,14,1.0,2,1.858710527420044,278,0.0,1 +22278,14,0.0,2,1.431715965270996,279,0.0,1 +22279,14,1.0,2,1.361716866493225,280,1.0,1 +22280,14,1.0,2,1.4277160167694092,281,0.0,1 +22281,14,1.0,2,1.5667142868041992,282,1.0,1 +22282,14,1.0,2,1.2507178783416748,283,0.0,1 +22283,14,1.0,2,1.6647130250930786,284,0.0,1 +22284,14,1.0,2,1.4247161149978638,285,1.0,1 +22285,14,1.0,2,1.5377147197723389,286,1.0,1 +22286,14,1.0,2,1.600713849067688,287,0.0,1 +22287,14,0.0,2,1.238717794418335,288,1.0,1 +22288,14,0.0,2,1.2137178182601929,289,0.0,1 +22289,14,0.0,2,1.9397094249725342,290,0.0,1 +22290,14,1.0,2,1.7897114753723145,291,1.0,1 +22291,14,1.0,2,1.2867178916931152,292,0.0,1 +22292,14,1.0,2,1.2477178573608398,293,0.0,1 +22293,14,0.0,2,1.3417171239852905,294,1.0,1 +22294,14,0.0,2,1.2477178573608398,295,1.0,1 +22295,14,0.0,2,1.4407159090042114,296,1.0,1 +22296,14,0.0,2,1.1787177324295044,297,0.0,1 +22297,14,0.0,2,1.2327178716659546,298,1.0,1 +22298,14,0.0,2,1.3987164497375488,299,0.0,1 +22299,14,1.0,2,2.1097121238708496,300,0.0,1 +22300,14,1.0,2,1.4917151927947998,301,1.0,1 +22301,14,0.0,2,1.674712896347046,302,0.0,1 +22302,14,1.0,2,1.3307173252105713,303,1.0,1 +22303,14,1.0,2,1.2757179737091064,304,1.0,1 +22304,14,1.0,2,1.4997150897979736,305,1.0,1 +22305,14,1.0,2,1.5067150592803955,306,1.0,1 +22306,14,1.0,2,1.2517179250717163,307,0.0,1 +22307,14,1.0,2,1.5597143173217773,308,1.0,1 +22308,14,1.0,2,1.2707178592681885,309,0.0,1 +22309,14,0.0,2,1.339717149734497,310,1.0,1 +22310,14,0.0,2,1.41671621799469,311,1.0,1 +22311,14,0.0,2,1.1607177257537842,312,1.0,1 +22312,14,0.0,2,1.2937177419662476,313,0.0,1 +22313,14,0.0,2,1.671712875366211,314,0.0,1 +22314,14,0.0,2,1.530714750289917,315,0.0,1 +22315,14,1.0,2,1.4857152700424194,316,0.0,1 +22316,14,1.0,2,1.434715986251831,317,1.0,1 +22317,14,1.0,2,1.6337134838104248,318,0.0,1 +22318,14,1.0,2,2.0817108154296875,319,0.0,1 +22319,14,1.0,2,1.246717929840088,320,1.0,1 +22320,14,1.0,2,1.2027177810668945,321,1.0,1 +22321,14,1.0,2,1.5387146472930908,322,1.0,1 +22322,14,1.0,2,1.761711835861206,323,0.0,1 +22323,14,1.0,2,1.324717402458191,324,1.0,1 +22324,14,1.0,2,1.413716197013855,325,1.0,1 +22325,14,1.0,2,1.7547118663787842,326,1.0,1 +22326,14,1.0,2,1.52671480178833,327,1.0,1 +22327,14,1.0,2,1.3897165060043335,328,0.0,1 +22328,14,0.0,2,2.0657100677490234,329,0.0,1 +22329,14,0.0,2,1.3797166347503662,330,1.0,1 +22330,14,0.0,2,1.3827166557312012,331,0.0,1 +22331,14,0.0,2,1.1787177324295044,332,0.0,1 +22332,14,0.0,2,1.5627143383026123,333,1.0,1 +22333,14,0.0,2,1.5447145700454712,334,1.0,1 +22334,14,0.0,2,1.2427178621292114,335,1.0,1 +22335,14,0.0,2,1.2117178440093994,336,1.0,1 +22336,14,0.0,2,1.482715368270874,337,1.0,1 +22337,14,0.0,2,1.246717929840088,338,0.0,1 +22338,14,1.0,2,1.6607130765914917,339,0.0,1 +22339,14,0.0,2,1.201717734336853,340,1.0,1 +22340,14,0.0,2,1.6087137460708618,341,0.0,1 +22341,14,1.0,2,1.4427158832550049,342,0.0,1 +22342,14,0.0,2,1.3067176342010498,343,0.0,1 +22343,14,1.0,2,2.0697102546691895,344,0.0,1 +22344,14,0.0,2,2.22971773147583,345,0.0,1 +22345,14,1.0,2,1.626713514328003,346,1.0,1 +22346,14,1.0,2,1.3057175874710083,347,1.0,1 +22347,14,1.0,2,1.2147178649902344,348,0.0,1 +22348,14,1.0,2,1.2237178087234497,349,1.0,1 +22349,14,1.0,2,1.3157174587249756,350,1.0,1 +22350,14,1.0,2,1.479715347290039,351,1.0,1 +22351,14,1.0,2,1.3557169437408447,352,1.0,1 +22352,14,1.0,2,1.3387172222137451,353,1.0,1 +22353,14,1.0,2,1.1987178325653076,354,1.0,1 +22354,14,1.0,2,1.3347172737121582,355,1.0,1 +22355,14,1.0,2,1.7507119178771973,356,1.0,1 +22356,14,1.0,2,1.2447178363800049,357,1.0,1 +22357,14,1.0,2,1.5457146167755127,358,1.0,1 +22358,14,1.0,2,1.3487170934677124,359,1.0,1 +22359,14,1.0,2,1.7287122011184692,360,0.0,1 +22360,14,0.0,2,1.4467158317565918,361,1.0,1 +22361,14,0.0,2,1.8657104969024658,362,0.0,1 +22362,14,0.0,2,1.6797127723693848,363,1.0,1 +22363,14,0.0,2,1.2287178039550781,364,0.0,1 +22364,14,1.0,2,1.5907139778137207,365,1.0,1 +22365,14,1.0,2,1.5977139472961426,366,0.0,1 +22366,14,1.0,2,1.4507157802581787,367,1.0,1 +22367,14,1.0,2,1.302717685699463,368,0.0,1 +22368,14,0.0,2,1.1847177743911743,369,0.0,1 +22369,14,1.0,2,1.813711166381836,370,1.0,1 +22370,14,1.0,2,1.667712926864624,371,0.0,1 +22371,14,1.0,2,1.43971586227417,372,0.0,1 +22372,14,1.0,2,2.259718894958496,373,0.0,1 +22373,14,1.0,2,2.3637237548828125,374,0.0,1 +22374,14,1.0,2,2.547732353210449,375,1.0,1 +22375,14,1.0,2,1.2397178411483765,376,1.0,1 +22376,14,1.0,2,1.3897165060043335,377,1.0,1 +22377,14,1.0,2,1.5927139520645142,378,1.0,1 +22378,14,1.0,2,1.339717149734497,379,1.0,1 +22379,14,1.0,2,1.36471688747406,380,1.0,1 +22380,14,1.0,2,1.5447145700454712,381,1.0,1 +22381,14,1.0,2,1.3157174587249756,382,0.0,1 +22382,14,0.0,2,1.8927100896835327,383,0.0,1 +22383,14,1.0,2,1.3157174587249756,384,1.0,1 +22384,14,1.0,2,1.2247178554534912,385,0.0,1 +22385,14,1.0,2,1.4237160682678223,386,1.0,1 +22386,14,1.0,2,1.5037150382995605,387,0.0,1 +22387,14,1.0,2,1.320717453956604,388,0.0,1 +22388,14,1.0,2,1.2977176904678345,389,0.0,1 +22389,14,0.0,2,1.3047176599502563,390,0.0,1 +22390,14,1.0,2,2.520731210708618,391,1.0,1 +22391,14,1.0,2,1.5447145700454712,392,1.0,1 +22392,14,1.0,2,1.648713231086731,393,1.0,1 +22393,14,1.0,2,1.3127175569534302,394,1.0,1 +22394,14,1.0,2,1.6427133083343506,395,0.0,1 +22395,14,0.0,2,1.622713565826416,396,1.0,1 +22396,14,0.0,2,1.5227148532867432,397,1.0,1 +22397,14,0.0,2,2.1557140350341797,398,0.0,1 +22398,14,0.0,2,1.6577131748199463,399,0.0,1 +22399,14,1.0,2,1.435715913772583,400,0.0,1 +22400,14,1.0,2,1.4427158832550049,401,1.0,1 +22401,14,1.0,2,1.412716269493103,402,1.0,1 +22402,14,1.0,2,1.2797179222106934,403,1.0,1 +22403,14,1.0,2,2.0847108364105225,404,0.0,1 +22404,14,1.0,2,2.465728759765625,405,0.0,1 +22405,14,1.0,2,1.2267178297042847,406,1.0,1 +22406,14,1.0,2,1.5657143592834473,407,0.0,1 +22407,14,0.0,2,1.509714961051941,408,0.0,1 +22408,14,1.0,2,1.8717103004455566,409,0.0,1 +22409,14,1.0,2,1.7837114334106445,410,1.0,1 +22410,14,1.0,2,1.5607143640518188,411,0.0,1 +22411,14,1.0,2,1.5927139520645142,412,1.0,1 +22412,14,1.0,2,1.4237160682678223,413,0.0,1 +22413,14,0.0,2,1.234717845916748,414,0.0,1 +22414,14,1.0,2,1.8797101974487305,415,0.0,1 +22415,14,1.0,2,1.1537176370620728,416,1.0,1 +22416,14,1.0,2,1.7347121238708496,417,0.0,1 +22417,14,1.0,2,1.8167110681533813,418,0.0,1 +22418,14,0.0,2,1.4117162227630615,419,1.0,1 +22419,14,0.0,2,1.533714771270752,420,1.0,1 +22420,14,0.0,2,1.4207161664962769,421,1.0,1 +22421,14,0.0,2,1.2967177629470825,422,1.0,1 +22422,14,0.0,2,1.264717936515808,423,0.0,1 +22423,14,0.0,2,1.57871413230896,424,1.0,1 +22424,14,0.0,2,1.5667142868041992,425,0.0,1 +22425,14,0.0,2,1.3367172479629517,426,1.0,1 +22426,14,0.0,2,1.3287173509597778,427,0.0,1 +22427,14,0.0,2,1.577714204788208,428,0.0,1 +22428,14,0.0,2,1.2637178897857666,429,1.0,1 +22429,14,0.0,2,1.4807153940200806,430,0.0,1 +22430,14,1.0,2,1.7207123041152954,431,1.0,1 +22431,14,1.0,2,1.3297172784805298,432,0.0,1 +22432,14,0.0,2,1.5167149305343628,433,0.0,1 +22433,14,1.0,2,1.237717866897583,434,1.0,1 +22434,14,1.0,2,1.736712098121643,435,1.0,1 +22435,14,1.0,2,1.486715316772461,436,0.0,1 +22436,14,1.0,2,1.140717625617981,437,0.0,1 +22437,14,1.0,2,1.2497178316116333,438,1.0,1 +22438,14,1.0,2,2.0197083950042725,439,0.0,1 +22439,14,0.0,2,2.6667380332946777,440,1.0,1 +22440,14,0.0,2,1.8207110166549683,441,0.0,1 +22441,14,0.0,2,2.0067086219787598,442,1.0,1 +22442,14,0.0,2,1.5637142658233643,443,0.0,1 +22443,14,1.0,2,1.1497176885604858,444,0.0,1 +22444,14,0.0,2,1.6727129220962524,445,0.0,1 +22445,14,0.0,2,1.7417120933532715,446,0.0,1 +22446,14,1.0,2,1.3057175874710083,447,1.0,1 +22447,14,1.0,2,1.2937177419662476,448,1.0,1 +22448,14,1.0,2,1.3337172269821167,449,0.0,1 +22449,14,0.0,2,1.6157135963439941,450,0.0,1 +22450,14,1.0,2,2.1137123107910156,451,0.0,1 +22451,14,1.0,2,1.4367159605026245,452,1.0,1 +22452,14,1.0,2,1.4987151622772217,453,0.0,1 +22453,14,0.0,2,1.604713797569275,454,0.0,1 +22454,14,1.0,2,2.261719226837158,455,1.0,1 +22455,14,1.0,2,2.203716278076172,456,0.0,1 +22456,14,0.0,2,1.3957164287567139,457,0.0,1 +22457,14,0.0,2,1.8847101926803589,458,0.0,1 +22458,14,0.0,2,1.766711711883545,459,0.0,1 +22459,14,1.0,2,2.530731678009033,460,1.0,1 +22460,14,1.0,2,1.177717685699463,461,1.0,1 +22461,14,1.0,2,2.0537095069885254,462,0.0,1 +22462,14,0.0,2,2.270719528198242,463,0.0,1 +22463,14,1.0,2,1.4007164239883423,464,0.0,1 +22464,14,0.0,2,1.3777166604995728,465,1.0,1 +22465,14,0.0,2,1.3187174797058105,466,0.0,1 +22466,14,1.0,2,1.3927165269851685,467,1.0,1 +22467,14,1.0,2,1.3997163772583008,468,0.0,1 +22468,14,0.0,2,1.413716197013855,469,1.0,1 +22469,14,0.0,2,1.5137149095535278,470,1.0,1 +22470,14,0.0,2,1.1687177419662476,471,0.0,1 +22471,14,1.0,2,1.7417120933532715,472,1.0,1 +22472,14,1.0,2,1.1787177324295044,473,1.0,1 +22473,14,1.0,2,1.3547170162200928,474,0.0,1 +22474,14,1.0,2,2.1077117919921875,475,1.0,1 +22475,14,1.0,2,1.24171781539917,476,1.0,1 +22476,14,1.0,2,1.5767141580581665,477,1.0,1 +22477,14,0.0,2,1.316717505455017,478,0.0,1 +22478,14,1.0,2,1.317717432975769,479,1.0,1 +22479,14,1.0,2,1.3227174282073975,480,1.0,1 +22480,14,1.0,2,2.1417136192321777,481,0.0,1 +22481,14,0.0,2,1.4927152395248413,482,1.0,1 +22482,14,0.0,2,1.6417133808135986,483,0.0,1 +22483,14,0.0,2,1.3277173042297363,484,1.0,1 +22484,14,0.0,2,1.5697143077850342,485,0.0,1 +22485,14,0.0,2,1.3857165575027466,486,0.0,1 +22486,14,0.0,2,1.2427178621292114,487,0.0,1 +22487,14,1.0,2,1.9327095746994019,488,1.0,1 +22488,14,1.0,2,1.4947152137756348,489,1.0,1 +22489,14,1.0,2,1.6577131748199463,490,0.0,1 +22490,14,0.0,2,1.9567092657089233,491,1.0,1 +22491,14,0.0,2,1.1857177019119263,492,1.0,1 +22492,14,0.0,2,1.648713231086731,493,1.0,1 +22493,14,0.0,2,1.298717737197876,494,1.0,1 +22494,14,0.0,2,1.2137178182601929,495,0.0,1 +22495,14,1.0,2,1.343717098236084,496,0.0,1 +22496,14,0.0,2,1.391716480255127,497,0.0,1 +22497,14,1.0,2,2.192715883255005,498,0.0,1 +22498,14,0.0,2,1.317717432975769,499,0.0,1 +22499,14,0.0,2,1.6117136478424072,500,0.0,1 +22500,15,0.0,0,1.5513842105865479,1,1.0,1 +22501,15,0.0,0,1.517384648323059,2,0.0,1 +22502,15,0.0,0,2.0773773193359375,3,0.0,1 +22503,15,1.0,0,1.1843866109848022,4,1.0,1 +22504,15,0.0,0,1.455385446548462,5,0.0,1 +22505,15,1.0,0,1.3353869915008545,6,0.0,1 +22506,15,1.0,0,1.2863868474960327,7,1.0,1 +22507,15,1.0,0,1.331386923789978,8,1.0,1 +22508,15,0.0,0,1.3573867082595825,9,0.0,1 +22509,15,1.0,0,1.2523868083953857,10,1.0,1 +22510,15,1.0,0,1.4113860130310059,11,0.0,1 +22511,15,1.0,0,1.7383818626403809,12,1.0,1 +22512,15,0.0,0,1.8863799571990967,13,0.0,1 +22513,15,1.0,0,1.4433856010437012,14,1.0,1 +22514,15,1.0,0,1.2093867063522339,15,1.0,1 +22515,15,1.0,0,1.4373856782913208,16,1.0,1 +22516,15,1.0,0,1.430385708808899,17,1.0,1 +22517,15,1.0,0,1.5063847303390503,18,1.0,1 +22518,15,1.0,0,1.307386875152588,19,1.0,1 +22519,15,1.0,0,1.4283857345581055,20,1.0,1 +22520,15,1.0,0,1.3623865842819214,21,0.0,1 +22521,15,0.0,0,1.3223868608474731,22,0.0,1 +22522,15,1.0,0,1.7913811206817627,23,1.0,1 +22523,15,1.0,0,1.4983848333358765,24,1.0,1 +22524,15,1.0,0,1.2803868055343628,25,1.0,1 +22525,15,1.0,0,1.5033848285675049,26,1.0,1 +22526,15,1.0,0,1.3703864812850952,27,1.0,1 +22527,15,1.0,0,1.5423842668533325,28,1.0,1 +22528,15,1.0,0,1.636383056640625,29,1.0,1 +22529,15,1.0,0,1.4903849363327026,30,0.0,1 +22530,15,0.0,0,2.0803773403167725,31,1.0,1 +22531,15,0.0,0,1.3383868932724,32,0.0,1 +22532,15,0.0,0,1.3193869590759277,33,0.0,1 +22533,15,0.0,0,1.1873866319656372,34,0.0,1 +22534,15,0.0,0,1.261386752128601,35,0.0,1 +22535,15,1.0,0,1.6913824081420898,36,1.0,1 +22536,15,1.0,0,1.360386610031128,37,1.0,1 +22537,15,1.0,0,1.356386661529541,38,1.0,1 +22538,15,1.0,0,2.1173787117004395,39,0.0,1 +22539,15,0.0,0,1.4113860130310059,40,1.0,1 +22540,15,0.0,0,1.2413867712020874,41,0.0,1 +22541,15,0.0,0,1.4063860177993774,42,0.0,1 +22542,15,0.0,0,1.543384313583374,43,0.0,1 +22543,15,1.0,0,1.8253806829452515,44,1.0,1 +22544,15,1.0,0,1.6493829488754272,45,1.0,1 +22545,15,1.0,0,1.4433856010437012,46,0.0,1 +22546,15,1.0,0,1.8183808326721191,47,1.0,1 +22547,15,1.0,0,1.63938307762146,48,1.0,1 +22548,15,1.0,0,1.680382490158081,49,0.0,1 +22549,15,1.0,0,1.3103868961334229,50,1.0,1 +22550,15,1.0,0,1.690382480621338,51,1.0,1 +22551,15,1.0,0,1.3423868417739868,52,1.0,1 +22552,15,1.0,0,1.2473866939544678,53,1.0,1 +22553,15,1.0,0,1.403386116027832,54,1.0,1 +22554,15,1.0,0,1.3753864765167236,55,1.0,1 +22555,15,1.0,0,1.4133859872817993,56,0.0,1 +22556,15,1.0,0,1.5033848285675049,57,1.0,1 +22557,15,1.0,0,2.0293779373168945,58,1.0,1 +22558,15,1.0,0,1.5413843393325806,59,1.0,1 +22559,15,1.0,0,1.3363869190216064,60,1.0,1 +22560,15,1.0,0,1.4763851165771484,61,1.0,1 +22561,15,1.0,0,1.4933849573135376,62,1.0,1 +22562,15,1.0,0,1.4333857297897339,63,1.0,1 +22563,15,1.0,0,1.2813868522644043,64,1.0,1 +22564,15,1.0,0,1.3683865070343018,65,1.0,1 +22565,15,1.0,0,1.3883862495422363,66,1.0,1 +22566,15,1.0,0,1.4183858633041382,67,1.0,1 +22567,15,1.0,0,1.5853837728500366,68,0.0,1 +22568,15,1.0,0,1.709382176399231,69,1.0,1 +22569,15,1.0,0,1.2763868570327759,70,1.0,1 +22570,15,1.0,0,1.734381914138794,71,1.0,1 +22571,15,1.0,0,1.7613815069198608,72,1.0,1 +22572,15,1.0,0,1.3453868627548218,73,0.0,1 +22573,15,0.0,0,1.5283844470977783,74,0.0,1 +22574,15,1.0,0,1.4863849878311157,75,1.0,1 +22575,15,1.0,0,1.3503867387771606,76,1.0,1 +22576,15,1.0,0,1.4093860387802124,77,1.0,1 +22577,15,1.0,0,1.4693852663040161,78,1.0,1 +22578,15,1.0,0,1.7663815021514893,79,1.0,1 +22579,15,1.0,0,1.6973823308944702,80,1.0,1 +22580,15,1.0,0,1.849380373954773,81,1.0,1 +22581,15,1.0,0,1.2443867921829224,82,1.0,1 +22582,15,1.0,0,1.2993868589401245,83,1.0,1 +22583,15,1.0,0,1.709382176399231,84,1.0,1 +22584,15,1.0,0,1.7923810482025146,85,1.0,1 +22585,15,1.0,0,1.304386854171753,86,1.0,1 +22586,15,1.0,0,1.447385549545288,87,1.0,1 +22587,15,1.0,0,1.776381254196167,88,1.0,1 +22588,15,0.0,0,1.5013848543167114,89,0.0,1 +22589,15,1.0,0,1.2883868217468262,90,1.0,1 +22590,15,1.0,0,1.3833863735198975,91,1.0,1 +22591,15,1.0,0,1.6243832111358643,92,1.0,1 +22592,15,1.0,0,1.3063868284225464,93,1.0,1 +22593,15,1.0,0,1.8023810386657715,94,1.0,1 +22594,15,1.0,0,1.264386773109436,95,1.0,1 +22595,15,1.0,0,1.297386884689331,96,1.0,1 +22596,15,0.0,0,1.6933823823928833,97,0.0,1 +22597,15,1.0,0,1.3473868370056152,98,1.0,1 +22598,15,1.0,0,1.5593841075897217,99,1.0,1 +22599,15,1.0,0,1.517384648323059,100,0.0,1 +22600,15,1.0,0,1.7233819961547852,101,1.0,1 +22601,15,1.0,0,1.3483867645263672,102,1.0,1 +22602,15,1.0,0,1.5053848028182983,103,1.0,1 +22603,15,1.0,0,1.7253819704055786,104,1.0,1 +22604,15,1.0,0,1.3833863735198975,105,1.0,1 +22605,15,1.0,0,1.569383978843689,106,1.0,1 +22606,15,1.0,0,1.518384575843811,107,1.0,1 +22607,15,1.0,0,1.5513842105865479,108,1.0,1 +22608,15,1.0,0,1.638383150100708,109,1.0,1 +22609,15,1.0,0,1.5233845710754395,110,1.0,1 +22610,15,1.0,0,1.5813838243484497,111,1.0,1 +22611,15,1.0,0,1.4763851165771484,112,1.0,1 +22612,15,0.0,0,2.013378143310547,113,0.0,1 +22613,15,1.0,0,1.47738516330719,114,1.0,1 +22614,15,1.0,0,1.2563867568969727,115,1.0,1 +22615,15,1.0,0,1.4943848848342896,116,1.0,1 +22616,15,1.0,0,1.3363869190216064,117,1.0,1 +22617,15,1.0,0,1.3143868446350098,118,1.0,1 +22618,15,1.0,0,1.4023860692977905,119,1.0,1 +22619,15,1.0,0,1.705382227897644,120,1.0,1 +22620,15,1.0,0,1.5083847045898438,121,1.0,1 +22621,15,1.0,0,1.3893862962722778,122,0.0,1 +22622,15,1.0,0,1.8543803691864014,123,1.0,1 +22623,15,1.0,0,1.58738374710083,124,1.0,1 +22624,15,1.0,0,1.6023836135864258,125,1.0,1 +22625,15,1.0,0,1.4753851890563965,126,1.0,1 +22626,15,1.0,0,1.5493842363357544,127,1.0,1 +22627,15,1.0,0,1.4203858375549316,128,1.0,1 +22628,15,1.0,0,1.5373843908309937,129,1.0,1 +22629,15,1.0,0,1.4183858633041382,130,1.0,1 +22630,15,1.0,0,1.5933836698532104,131,0.0,1 +22631,15,0.0,0,1.9093796014785767,132,1.0,1 +22632,15,0.0,0,1.3203868865966797,133,0.0,1 +22633,15,0.0,0,1.2873868942260742,134,0.0,1 +22634,15,1.0,0,1.518384575843811,135,1.0,1 +22635,15,1.0,0,1.3493868112564087,136,0.0,1 +22636,15,0.0,0,2.3193881511688232,137,0.0,1 +22637,15,0.0,0,1.239386796951294,138,0.0,1 +22638,15,1.0,0,1.3213869333267212,139,1.0,1 +22639,15,1.0,0,1.5933836698532104,140,1.0,1 +22640,15,1.0,0,1.3193869590759277,141,1.0,1 +22641,15,1.0,0,1.495384931564331,142,1.0,1 +22642,15,0.0,0,1.4183858633041382,143,0.0,1 +22643,15,1.0,0,1.2043867111206055,144,1.0,1 +22644,15,1.0,0,1.3983861207962036,145,1.0,1 +22645,15,1.0,0,1.3573867082595825,146,1.0,1 +22646,15,1.0,0,1.7493816614151,147,1.0,1 +22647,15,1.0,0,1.328386902809143,148,1.0,1 +22648,15,1.0,0,2.0443778038024902,149,1.0,1 +22649,15,0.0,0,1.680382490158081,150,0.0,1 +22650,15,1.0,0,1.3503867387771606,151,0.0,1 +22651,15,1.0,0,1.8433804512023926,152,1.0,1 +22652,15,1.0,0,1.4163858890533447,153,1.0,1 +22653,15,1.0,0,1.3753864765167236,154,0.0,1 +22654,15,0.0,0,1.9403791427612305,155,0.0,1 +22655,15,0.0,0,1.4663852453231812,156,0.0,1 +22656,15,1.0,0,1.922379493713379,157,1.0,1 +22657,15,1.0,0,1.5863837003707886,158,1.0,1 +22658,15,1.0,0,1.3153868913650513,159,1.0,1 +22659,15,1.0,0,1.2873868942260742,160,1.0,1 +22660,15,1.0,0,1.4413856267929077,161,0.0,1 +22661,15,0.0,0,1.7373818159103394,162,0.0,1 +22662,15,1.0,0,2.053377628326416,163,1.0,1 +22663,15,1.0,0,1.422385811805725,164,1.0,1 +22664,15,1.0,0,1.5343843698501587,165,1.0,1 +22665,15,0.0,0,1.7673814296722412,166,1.0,1 +22666,15,1.0,0,1.4543853998184204,167,1.0,1 +22667,15,0.0,0,1.4123859405517578,168,0.0,1 +22668,15,1.0,0,1.3193869590759277,169,1.0,1 +22669,15,1.0,0,1.6723825931549072,170,1.0,1 +22670,15,1.0,0,1.2443867921829224,171,1.0,1 +22671,15,1.0,0,1.3403868675231934,172,1.0,1 +22672,15,1.0,0,1.5463842153549194,173,1.0,1 +22673,15,1.0,0,1.3243869543075562,174,1.0,1 +22674,15,1.0,0,1.3663865327835083,175,1.0,1 +22675,15,1.0,0,1.478385090827942,176,1.0,1 +22676,15,1.0,0,1.2593867778778076,177,1.0,1 +22677,15,1.0,0,1.3293869495391846,178,1.0,1 +22678,15,1.0,0,1.6373831033706665,179,1.0,1 +22679,15,1.0,0,1.297386884689331,180,1.0,1 +22680,15,1.0,0,1.4693852663040161,181,1.0,1 +22681,15,1.0,0,1.4063860177993774,182,1.0,1 +22682,15,1.0,0,2.0373778343200684,183,1.0,1 +22683,15,1.0,0,1.2843868732452393,184,1.0,1 +22684,15,1.0,0,1.544384241104126,185,1.0,1 +22685,15,1.0,0,1.5593841075897217,186,1.0,1 +22686,15,1.0,0,1.2993868589401245,187,1.0,1 +22687,15,1.0,0,1.2503867149353027,188,1.0,1 +22688,15,1.0,0,1.3323869705200195,189,1.0,1 +22689,15,1.0,0,1.3973861932754517,190,1.0,1 +22690,15,1.0,0,1.4613853693008423,191,1.0,1 +22691,15,1.0,0,1.3753864765167236,192,1.0,1 +22692,15,1.0,0,1.5583840608596802,193,1.0,1 +22693,15,1.0,0,1.3363869190216064,194,1.0,1 +22694,15,1.0,0,1.3533867597579956,195,1.0,1 +22695,15,1.0,0,1.5373843908309937,196,1.0,1 +22696,15,1.0,0,1.3183869123458862,197,1.0,1 +22697,15,1.0,0,1.3913862705230713,198,1.0,1 +22698,15,1.0,0,1.5833837985992432,199,1.0,1 +22699,15,1.0,0,1.3863862752914429,200,1.0,1 +22700,15,1.0,0,1.352386713027954,201,1.0,1 +22701,15,1.0,0,1.2103866338729858,202,1.0,1 +22702,15,1.0,0,1.6193833351135254,203,1.0,1 +22703,15,1.0,0,1.4463855028152466,204,1.0,1 +22704,15,1.0,0,1.5083847045898438,205,1.0,1 +22705,15,1.0,0,1.6773825883865356,206,1.0,1 +22706,15,1.0,0,1.5153846740722656,207,0.0,1 +22707,15,0.0,0,1.377386450767517,208,1.0,1 +22708,15,0.0,0,1.6453830003738403,209,0.0,1 +22709,15,1.0,0,1.8063809871673584,210,1.0,1 +22710,15,1.0,0,1.9563789367675781,211,0.0,1 +22711,15,1.0,0,1.864380121231079,212,1.0,1 +22712,15,1.0,0,1.6663827896118164,213,1.0,1 +22713,15,1.0,0,1.2843868732452393,214,1.0,1 +22714,15,1.0,0,1.4563853740692139,215,1.0,1 +22715,15,1.0,0,1.820380687713623,216,0.0,1 +22716,15,1.0,0,1.8443803787231445,217,1.0,1 +22717,15,1.0,0,1.5533841848373413,218,1.0,1 +22718,15,1.0,0,1.5573841333389282,219,1.0,1 +22719,15,1.0,0,1.864380121231079,220,1.0,1 +22720,15,1.0,0,1.7513816356658936,221,1.0,1 +22721,15,1.0,0,1.3183869123458862,222,1.0,1 +22722,15,1.0,0,1.960378885269165,223,1.0,1 +22723,15,1.0,0,1.7293819189071655,224,1.0,1 +22724,15,1.0,0,1.4273858070373535,225,1.0,1 +22725,15,1.0,0,1.3353869915008545,226,1.0,1 +22726,15,1.0,0,1.866380214691162,227,1.0,1 +22727,15,0.0,0,1.1893866062164307,228,0.0,1 +22728,15,1.0,0,1.3383868932724,229,1.0,1 +22729,15,1.0,0,1.4183858633041382,230,1.0,1 +22730,15,1.0,0,1.337386965751648,231,1.0,1 +22731,15,1.0,0,1.6853824853897095,232,1.0,1 +22732,15,1.0,0,2.243384599685669,233,0.0,1 +22733,15,0.0,0,1.7873811721801758,234,1.0,1 +22734,15,0.0,0,2.06137752532959,235,0.0,1 +22735,15,1.0,0,1.6033835411071777,236,1.0,1 +22736,15,1.0,0,1.8553802967071533,237,1.0,1 +22737,15,1.0,0,1.295386791229248,238,1.0,1 +22738,15,1.0,0,1.6413830518722534,239,1.0,1 +22739,15,1.0,0,1.5343843698501587,240,1.0,1 +22740,15,1.0,0,1.5783838033676147,241,1.0,1 +22741,15,1.0,0,1.2723867893218994,242,1.0,1 +22742,15,1.0,0,1.6303832530975342,243,1.0,1 +22743,15,1.0,0,1.2653868198394775,244,1.0,1 +22744,15,1.0,0,1.6773825883865356,245,0.0,1 +22745,15,0.0,0,1.422385811805725,246,0.0,1 +22746,15,1.0,0,1.5103846788406372,247,1.0,1 +22747,15,1.0,0,1.2903867959976196,248,1.0,1 +22748,15,1.0,0,1.3953862190246582,249,1.0,1 +22749,15,0.0,0,1.4873850345611572,250,0.0,1 +22750,15,1.0,0,1.6333831548690796,251,1.0,1 +22751,15,1.0,0,1.4313857555389404,252,1.0,1 +22752,15,1.0,0,1.63938307762146,253,1.0,1 +22753,15,1.0,0,1.2713868618011475,254,0.0,1 +22754,15,1.0,0,1.915379524230957,255,1.0,1 +22755,15,0.0,0,1.6763825416564941,256,0.0,1 +22756,15,0.0,0,1.2523868083953857,257,0.0,1 +22757,15,1.0,0,1.3083869218826294,258,1.0,1 +22758,15,1.0,0,1.3763864040374756,259,1.0,1 +22759,15,1.0,0,1.776381254196167,260,1.0,1 +22760,15,1.0,0,1.5523841381072998,261,1.0,1 +22761,15,1.0,0,1.9453791379928589,262,1.0,1 +22762,15,1.0,0,1.4563853740692139,263,1.0,1 +22763,15,1.0,0,1.5513842105865479,264,1.0,1 +22764,15,1.0,0,1.3363869190216064,265,1.0,1 +22765,15,1.0,0,1.3393869400024414,266,0.0,1 +22766,15,0.0,0,1.5373843908309937,267,0.0,1 +22767,15,1.0,0,1.525384545326233,268,1.0,1 +22768,15,1.0,0,1.447385549545288,269,1.0,1 +22769,15,1.0,0,1.270386815071106,270,1.0,1 +22770,15,1.0,0,1.1893866062164307,271,1.0,1 +22771,15,1.0,0,1.2803868055343628,272,1.0,1 +22772,15,1.0,0,1.5563840866088867,273,1.0,1 +22773,15,1.0,0,1.3713865280151367,274,1.0,1 +22774,15,1.0,0,1.7203819751739502,275,0.0,1 +22775,15,1.0,0,1.731381893157959,276,1.0,1 +22776,15,1.0,0,1.1923866271972656,277,1.0,1 +22777,15,1.0,0,1.478385090827942,278,1.0,1 +22778,15,1.0,0,1.47738516330719,279,0.0,1 +22779,15,1.0,0,1.5933836698532104,280,1.0,1 +22780,15,1.0,0,1.6443829536437988,281,0.0,1 +22781,15,1.0,0,1.44838547706604,282,1.0,1 +22782,15,1.0,0,1.3293869495391846,283,1.0,1 +22783,15,1.0,0,1.381386399269104,284,1.0,1 +22784,15,1.0,0,1.4333857297897339,285,1.0,1 +22785,15,1.0,0,1.5013848543167114,286,1.0,1 +22786,15,1.0,0,1.4463855028152466,287,1.0,1 +22787,15,1.0,0,1.9063796997070312,288,1.0,1 +22788,15,1.0,0,1.408385992050171,289,1.0,1 +22789,15,1.0,0,1.592383623123169,290,1.0,1 +22790,15,1.0,0,1.2563867568969727,291,1.0,1 +22791,15,1.0,0,1.4233858585357666,292,1.0,1 +22792,15,1.0,0,1.4313857555389404,293,1.0,1 +22793,15,1.0,0,1.3173868656158447,294,1.0,1 +22794,15,1.0,0,1.6993823051452637,295,1.0,1 +22795,15,1.0,0,1.2113866806030273,296,1.0,1 +22796,15,1.0,0,1.2793867588043213,297,1.0,1 +22797,15,1.0,0,1.893379807472229,298,1.0,1 +22798,15,1.0,0,1.2913868427276611,299,1.0,1 +22799,15,1.0,0,1.4633853435516357,300,1.0,1 +22800,15,1.0,0,1.3363869190216064,301,1.0,1 +22801,15,0.0,0,1.4423855543136597,302,0.0,1 +22802,15,1.0,0,1.4333857297897339,303,1.0,1 +22803,15,1.0,0,1.2993868589401245,304,1.0,1 +22804,15,1.0,0,1.635383129119873,305,1.0,1 +22805,15,1.0,0,1.7623815536499023,306,1.0,1 +22806,15,1.0,0,1.227386713027954,307,1.0,1 +22807,15,1.0,0,1.9393792152404785,308,0.0,1 +22808,15,0.0,0,1.4933849573135376,309,0.0,1 +22809,15,1.0,0,1.2743867635726929,310,1.0,1 +22810,15,1.0,0,1.3703864812850952,311,1.0,1 +22811,15,1.0,0,1.452385425567627,312,1.0,1 +22812,15,1.0,0,1.470385193824768,313,1.0,1 +22813,15,1.0,0,1.8123807907104492,314,1.0,1 +22814,15,1.0,0,1.4983848333358765,315,1.0,1 +22815,15,1.0,0,1.6983823776245117,316,1.0,1 +22816,15,1.0,0,1.4343856573104858,317,1.0,1 +22817,15,1.0,0,1.4323856830596924,318,1.0,1 +22818,15,1.0,0,1.5893837213516235,319,0.0,1 +22819,15,0.0,0,1.175386667251587,320,1.0,1 +22820,15,0.0,0,1.2023866176605225,321,0.0,1 +22821,15,0.0,0,1.3353869915008545,322,0.0,1 +22822,15,0.0,0,1.2203867435455322,323,0.0,1 +22823,15,1.0,0,1.7233819961547852,324,1.0,1 +22824,15,1.0,0,1.9013797044754028,325,1.0,1 +22825,15,1.0,0,1.4763851165771484,326,1.0,1 +22826,15,1.0,0,1.3353869915008545,327,1.0,1 +22827,15,1.0,0,1.6923823356628418,328,1.0,1 +22828,15,1.0,0,1.294386863708496,329,0.0,1 +22829,15,1.0,0,1.3963861465454102,330,1.0,1 +22830,15,1.0,0,1.50038480758667,331,0.0,1 +22831,15,1.0,0,1.4873850345611572,332,1.0,1 +22832,15,1.0,0,1.5493842363357544,333,1.0,1 +22833,15,1.0,0,1.2413867712020874,334,1.0,1 +22834,15,1.0,0,1.9483790397644043,335,1.0,1 +22835,15,1.0,0,1.42538583278656,336,1.0,1 +22836,15,1.0,0,1.5163846015930176,337,0.0,1 +22837,15,1.0,0,2.1373796463012695,338,1.0,1 +22838,15,1.0,0,1.705382227897644,339,1.0,1 +22839,15,1.0,0,1.237386703491211,340,1.0,1 +22840,15,1.0,0,1.4863849878311157,341,0.0,1 +22841,15,1.0,0,1.2833868265151978,342,1.0,1 +22842,15,1.0,0,1.3643865585327148,343,1.0,1 +22843,15,1.0,0,1.4383856058120728,344,1.0,1 +22844,15,1.0,0,1.3323869705200195,345,1.0,1 +22845,15,1.0,0,1.6933823823928833,346,1.0,1 +22846,15,1.0,0,1.4123859405517578,347,1.0,1 +22847,15,1.0,0,1.5743838548660278,348,1.0,1 +22848,15,1.0,0,1.5603840351104736,349,0.0,1 +22849,15,1.0,0,1.8433804512023926,350,1.0,1 +22850,15,1.0,0,1.8123807907104492,351,1.0,1 +22851,15,1.0,0,1.325386881828308,352,1.0,1 +22852,15,1.0,0,1.2513867616653442,353,1.0,1 +22853,15,1.0,0,1.2293866872787476,354,0.0,1 +22854,15,1.0,0,1.7853811979293823,355,1.0,1 +22855,15,1.0,0,1.4343856573104858,356,0.0,1 +22856,15,0.0,0,1.1793866157531738,357,0.0,1 +22857,15,1.0,0,1.2133866548538208,358,0.0,1 +22858,15,1.0,0,1.642383098602295,359,1.0,1 +22859,15,1.0,0,1.4903849363327026,360,1.0,1 +22860,15,1.0,0,1.6493829488754272,361,0.0,1 +22861,15,0.0,0,1.3733865022659302,362,1.0,1 +22862,15,0.0,0,1.2083866596221924,363,1.0,1 +22863,15,0.0,0,1.4643852710723877,364,0.0,1 +22864,15,1.0,0,2.1733813285827637,365,1.0,1 +22865,15,1.0,0,1.4643852710723877,366,1.0,1 +22866,15,1.0,0,1.5823837518692017,367,1.0,1 +22867,15,1.0,0,1.3743864297866821,368,1.0,1 +22868,15,1.0,0,1.2553868293762207,369,1.0,1 +22869,15,1.0,0,1.297386884689331,370,1.0,1 +22870,15,1.0,0,1.4663852453231812,371,1.0,1 +22871,15,1.0,0,1.5823837518692017,372,1.0,1 +22872,15,0.0,0,1.8253806829452515,373,0.0,1 +22873,15,1.0,0,1.7143821716308594,374,0.0,1 +22874,15,1.0,0,1.3393869400024414,375,1.0,1 +22875,15,1.0,0,1.3643865585327148,376,1.0,1 +22876,15,1.0,0,1.3273868560791016,377,0.0,1 +22877,15,0.0,0,1.9053796529769897,378,0.0,1 +22878,15,0.0,0,2.1433799266815186,379,0.0,1 +22879,15,0.0,0,2.009378433227539,380,0.0,1 +22880,15,1.0,0,1.6693826913833618,381,1.0,1 +22881,15,1.0,0,1.295386791229248,382,1.0,1 +22882,15,1.0,0,1.4233858585357666,383,1.0,1 +22883,15,1.0,0,1.6683826446533203,384,1.0,1 +22884,15,1.0,0,1.2123867273330688,385,0.0,1 +22885,15,0.0,0,1.2513867616653442,386,0.0,1 +22886,15,1.0,0,1.6943824291229248,387,1.0,1 +22887,15,1.0,0,1.5773838758468628,388,1.0,1 +22888,15,1.0,0,1.4203858375549316,389,0.0,1 +22889,15,1.0,0,1.5193846225738525,390,1.0,1 +22890,15,1.0,0,1.377386450767517,391,0.0,1 +22891,15,0.0,0,1.1793866157531738,392,0.0,1 +22892,15,1.0,0,1.4163858890533447,393,1.0,1 +22893,15,1.0,0,1.3153868913650513,394,1.0,1 +22894,15,1.0,0,1.3833863735198975,395,1.0,1 +22895,15,1.0,0,1.3803863525390625,396,1.0,1 +22896,15,1.0,0,1.4053860902786255,397,1.0,1 +22897,15,1.0,0,1.5513842105865479,398,1.0,1 +22898,15,0.0,0,1.730381965637207,399,0.0,1 +22899,15,1.0,0,1.5083847045898438,400,1.0,1 +22900,15,0.0,0,1.4193859100341797,401,0.0,1 +22901,15,0.0,0,1.6563827991485596,402,1.0,1 +22902,15,0.0,0,1.9253793954849243,403,0.0,1 +22903,15,1.0,0,1.7813812494277954,404,1.0,1 +22904,15,1.0,0,1.4613853693008423,405,1.0,1 +22905,15,1.0,0,1.569383978843689,406,1.0,1 +22906,15,1.0,0,1.6103835105895996,407,1.0,1 +22907,15,1.0,0,1.4903849363327026,408,1.0,1 +22908,15,0.0,0,1.2763868570327759,409,0.0,1 +22909,15,1.0,0,1.4673852920532227,410,1.0,1 +22910,15,1.0,0,1.8063809871673584,411,1.0,1 +22911,15,1.0,0,1.5293844938278198,412,1.0,1 +22912,15,1.0,0,2.014378309249878,413,1.0,1 +22913,15,1.0,0,1.3743864297866821,414,1.0,1 +22914,15,1.0,0,1.3913862705230713,415,1.0,1 +22915,15,1.0,0,1.7203819751739502,416,1.0,1 +22916,15,1.0,0,1.2243866920471191,417,1.0,1 +22917,15,1.0,0,1.2773867845535278,418,0.0,1 +22918,15,1.0,0,2.233384132385254,419,1.0,1 +22919,15,1.0,0,1.4203858375549316,420,1.0,1 +22920,15,1.0,0,1.3873863220214844,421,1.0,1 +22921,15,1.0,0,1.2203867435455322,422,1.0,1 +22922,15,1.0,0,1.6993823051452637,423,1.0,1 +22923,15,1.0,0,1.9703788757324219,424,1.0,1 +22924,15,1.0,0,1.352386713027954,425,0.0,1 +22925,15,1.0,0,1.4363856315612793,426,0.0,1 +22926,15,0.0,0,1.6643826961517334,427,0.0,1 +22927,15,1.0,0,1.5333844423294067,428,1.0,1 +22928,15,1.0,0,1.2823867797851562,429,1.0,1 +22929,15,1.0,0,1.5303844213485718,430,0.0,1 +22930,15,1.0,0,1.6913824081420898,431,0.0,1 +22931,15,1.0,0,1.6433830261230469,432,1.0,1 +22932,15,1.0,0,1.6003835201263428,433,1.0,1 +22933,15,1.0,0,1.3653866052627563,434,1.0,1 +22934,15,1.0,0,1.3503867387771606,435,1.0,1 +22935,15,1.0,0,1.522384524345398,436,1.0,1 +22936,15,1.0,0,1.3323869705200195,437,1.0,1 +22937,15,1.0,0,1.3143868446350098,438,0.0,1 +22938,15,0.0,0,1.4013861417770386,439,0.0,1 +22939,15,1.0,0,1.5363843441009521,440,1.0,1 +22940,15,1.0,0,2.048377752304077,441,0.0,1 +22941,15,0.0,0,1.734381914138794,442,0.0,1 +22942,15,1.0,0,1.826380729675293,443,1.0,1 +22943,15,1.0,0,1.4723851680755615,444,1.0,1 +22944,15,1.0,0,1.4153859615325928,445,1.0,1 +22945,15,1.0,0,1.3663865327835083,446,0.0,1 +22946,15,1.0,0,1.377386450767517,447,1.0,1 +22947,15,1.0,0,1.6763825416564941,448,1.0,1 +22948,15,1.0,0,1.6333831548690796,449,0.0,1 +22949,15,1.0,0,1.6213833093643188,450,1.0,1 +22950,15,1.0,0,1.422385811805725,451,1.0,1 +22951,15,1.0,0,1.3613866567611694,452,1.0,1 +22952,15,1.0,0,1.3463867902755737,453,0.0,1 +22953,15,1.0,0,1.7423818111419678,454,1.0,1 +22954,15,1.0,0,1.382386326789856,455,1.0,1 +22955,15,1.0,0,1.8213807344436646,456,1.0,1 +22956,15,1.0,0,1.5683839321136475,457,1.0,1 +22957,15,1.0,0,1.455385446548462,458,0.0,1 +22958,15,1.0,0,1.6943824291229248,459,1.0,1 +22959,15,1.0,0,1.960378885269165,460,0.0,1 +22960,15,1.0,0,1.7373818159103394,461,1.0,1 +22961,15,1.0,0,1.3923861980438232,462,1.0,1 +22962,15,1.0,0,1.5153846740722656,463,1.0,1 +22963,15,1.0,0,1.7683813571929932,464,1.0,1 +22964,15,1.0,0,1.3503867387771606,465,1.0,1 +22965,15,1.0,0,1.4943848848342896,466,1.0,1 +22966,15,1.0,0,1.3913862705230713,467,1.0,1 +22967,15,1.0,0,1.2143867015838623,468,1.0,1 +22968,15,1.0,0,1.518384575843811,469,1.0,1 +22969,15,0.0,0,1.4443855285644531,470,0.0,1 +22970,15,0.0,0,1.5423842668533325,471,0.0,1 +22971,15,1.0,0,1.3103868961334229,472,0.0,1 +22972,15,1.0,0,1.7113821506500244,473,1.0,1 +22973,15,0.0,0,1.9423792362213135,474,0.0,1 +22974,15,1.0,0,1.3203868865966797,475,1.0,1 +22975,15,1.0,0,1.3923861980438232,476,1.0,1 +22976,15,1.0,0,1.4203858375549316,477,0.0,1 +22977,15,0.0,0,1.3423868417739868,478,0.0,1 +22978,15,0.0,0,1.474385142326355,479,0.0,1 +22979,15,1.0,0,1.6593828201293945,480,0.0,1 +22980,15,1.0,0,1.613383412361145,481,1.0,1 +22981,15,1.0,0,1.200386643409729,482,1.0,1 +22982,15,1.0,0,1.3543866872787476,483,1.0,1 +22983,15,1.0,0,1.3083869218826294,484,1.0,1 +22984,15,1.0,0,1.5373843908309937,485,1.0,1 +22985,15,1.0,0,1.6033835411071777,486,0.0,1 +22986,15,1.0,0,1.6633827686309814,487,0.0,1 +22987,15,1.0,0,1.9833786487579346,488,1.0,1 +22988,15,1.0,0,1.452385425567627,489,1.0,1 +22989,15,1.0,0,1.3473868370056152,490,1.0,1 +22990,15,1.0,0,1.4613853693008423,491,1.0,1 +22991,15,1.0,0,1.2253867387771606,492,1.0,1 +22992,15,1.0,0,1.4883849620819092,493,1.0,1 +22993,15,1.0,0,1.3833863735198975,494,1.0,1 +22994,15,1.0,0,1.3913862705230713,495,0.0,1 +22995,15,0.0,0,1.4533854722976685,496,0.0,1 +22996,15,1.0,0,1.4103859663009644,497,1.0,1 +22997,15,1.0,0,1.690382480621338,498,1.0,1 +22998,15,1.0,0,1.2933868169784546,499,0.0,1 +22999,15,1.0,0,1.3473868370056152,500,1.0,1 +23000,15,0.0,1,1.897379755973816,1,0.0,1 +23001,15,1.0,1,1.3993861675262451,2,1.0,1 +23002,15,1.0,1,1.5543841123580933,3,1.0,1 +23003,15,1.0,1,1.3833863735198975,4,1.0,1 +23004,15,1.0,1,1.6923823356628418,5,1.0,1 +23005,15,0.0,1,1.360386610031128,6,0.0,1 +23006,15,1.0,1,1.356386661529541,7,1.0,1 +23007,15,1.0,1,1.42538583278656,8,0.0,1 +23008,15,1.0,1,2.1113784313201904,9,1.0,1 +23009,15,1.0,1,1.3673865795135498,10,0.0,1 +23010,15,1.0,1,1.447385549545288,11,0.0,1 +23011,15,1.0,1,2.1543803215026855,12,0.0,1 +23012,15,1.0,1,1.7713813781738281,13,1.0,1 +23013,15,1.0,1,1.3893862962722778,14,1.0,1 +23014,15,1.0,1,1.2513867616653442,15,1.0,1 +23015,15,1.0,1,1.325386881828308,16,0.0,1 +23016,15,1.0,1,1.525384545326233,17,1.0,1 +23017,15,1.0,1,1.7853811979293823,18,0.0,1 +23018,15,1.0,1,1.4713852405548096,19,0.0,1 +23019,15,0.0,1,1.6723825931549072,20,1.0,1 +23020,15,0.0,1,1.2533867359161377,21,0.0,1 +23021,15,0.0,1,1.6073834896087646,22,0.0,1 +23022,15,1.0,1,1.8653801679611206,23,1.0,1 +23023,15,1.0,1,1.6313831806182861,24,1.0,1 +23024,15,1.0,1,1.864380121231079,25,1.0,1 +23025,15,1.0,1,1.3623865842819214,26,1.0,1 +23026,15,1.0,1,1.617383360862732,27,0.0,1 +23027,15,1.0,1,1.782381296157837,28,1.0,1 +23028,15,1.0,1,1.6003835201263428,29,1.0,1 +23029,15,1.0,1,1.334386944770813,30,1.0,1 +23030,15,1.0,1,1.8073809146881104,31,1.0,1 +23031,15,1.0,1,1.363386631011963,32,0.0,1 +23032,15,0.0,1,1.2463867664337158,33,1.0,1 +23033,15,0.0,1,1.3053869009017944,34,0.0,1 +23034,15,0.0,1,1.7413817644119263,35,0.0,1 +23035,15,1.0,1,1.4173859357833862,36,0.0,1 +23036,15,0.0,1,1.8023810386657715,37,0.0,1 +23037,15,0.0,1,1.3433868885040283,38,0.0,1 +23038,15,1.0,1,2.0343780517578125,39,1.0,1 +23039,15,1.0,1,1.6243832111358643,40,1.0,1 +23040,15,1.0,1,1.2913868427276611,41,1.0,1 +23041,15,1.0,1,1.236386775970459,42,1.0,1 +23042,15,1.0,1,1.2963868379592896,43,0.0,1 +23043,15,0.0,1,1.4593853950500488,44,0.0,1 +23044,15,1.0,1,2.1943821907043457,45,0.0,1 +23045,15,1.0,1,1.2503867149353027,46,0.0,1 +23046,15,0.0,1,1.5093847513198853,47,1.0,1 +23047,15,0.0,1,1.5843837261199951,48,0.0,1 +23048,15,1.0,1,1.4833850860595703,49,1.0,1 +23049,15,1.0,1,1.3793864250183105,50,1.0,1 +23050,15,1.0,1,1.2663867473602295,51,1.0,1 +23051,15,1.0,1,1.3723864555358887,52,1.0,1 +23052,15,1.0,1,1.5303844213485718,53,0.0,1 +23053,15,1.0,1,1.492384910583496,54,0.0,1 +23054,15,1.0,1,1.9053796529769897,55,1.0,1 +23055,15,1.0,1,1.4463855028152466,56,1.0,1 +23056,15,1.0,1,2.1223788261413574,57,1.0,1 +23057,15,1.0,1,1.705382227897644,58,1.0,1 +23058,15,1.0,1,1.4383856058120728,59,1.0,1 +23059,15,1.0,1,1.4353857040405273,60,1.0,1 +23060,15,1.0,1,1.4333857297897339,61,1.0,1 +23061,15,1.0,1,1.2323867082595825,62,1.0,1 +23062,15,1.0,1,1.6193833351135254,63,1.0,1 +23063,15,1.0,1,1.2933868169784546,64,1.0,1 +23064,15,1.0,1,1.4633853435516357,65,1.0,1 +23065,15,1.0,1,1.452385425567627,66,1.0,1 +23066,15,1.0,1,1.3053869009017944,67,1.0,1 +23067,15,1.0,1,1.3223868608474731,68,1.0,1 +23068,15,1.0,1,1.8953797817230225,69,0.0,1 +23069,15,0.0,1,1.8553802967071533,70,0.0,1 +23070,15,0.0,1,1.5863837003707886,71,1.0,1 +23071,15,0.0,1,1.897379755973816,72,0.0,1 +23072,15,0.0,1,1.595383644104004,73,0.0,1 +23073,15,1.0,1,1.8373805284500122,74,1.0,1 +23074,15,1.0,1,1.4423855543136597,75,1.0,1 +23075,15,1.0,1,1.3383868932724,76,1.0,1 +23076,15,1.0,1,1.407386064529419,77,1.0,1 +23077,15,1.0,1,1.301386833190918,78,1.0,1 +23078,15,1.0,1,1.7583816051483154,79,1.0,1 +23079,15,1.0,1,1.4763851165771484,80,1.0,1 +23080,15,1.0,1,1.422385811805725,81,0.0,1 +23081,15,0.0,1,1.2433867454528809,82,0.0,1 +23082,15,1.0,1,1.8633801937103271,83,1.0,1 +23083,15,1.0,1,1.3473868370056152,84,1.0,1 +23084,15,1.0,1,1.8733800649642944,85,0.0,1 +23085,15,1.0,1,1.5013848543167114,86,0.0,1 +23086,15,0.0,1,1.872380018234253,87,0.0,1 +23087,15,0.0,1,1.566383957862854,88,0.0,1 +23088,15,1.0,1,1.6373831033706665,89,1.0,1 +23089,15,1.0,1,1.8373805284500122,90,0.0,1 +23090,15,0.0,1,1.8293806314468384,91,0.0,1 +23091,15,1.0,1,1.5243844985961914,92,1.0,1 +23092,15,1.0,1,1.8143808841705322,93,1.0,1 +23093,15,1.0,1,1.5683839321136475,94,0.0,1 +23094,15,1.0,1,1.6013835668563843,95,0.0,1 +23095,15,0.0,1,2.066377639770508,96,0.0,1 +23096,15,0.0,1,1.3723864555358887,97,1.0,1 +23097,15,0.0,1,1.4283857345581055,98,1.0,1 +23098,15,0.0,1,1.590383768081665,99,1.0,1 +23099,15,0.0,1,1.44838547706604,100,0.0,1 +23100,15,1.0,1,2.058377742767334,101,1.0,1 +23101,15,1.0,1,1.2863868474960327,102,1.0,1 +23102,15,1.0,1,2.1763815879821777,103,1.0,1 +23103,15,1.0,1,1.5263844728469849,104,1.0,1 +23104,15,1.0,1,1.206386685371399,105,1.0,1 +23105,15,1.0,1,1.6083834171295166,106,1.0,1 +23106,15,1.0,1,1.5733839273452759,107,1.0,1 +23107,15,1.0,1,1.2463867664337158,108,0.0,1 +23108,15,0.0,1,1.1683865785598755,109,0.0,1 +23109,15,0.0,1,1.4063860177993774,110,0.0,1 +23110,15,1.0,1,1.5863837003707886,111,1.0,1 +23111,15,1.0,1,1.4093860387802124,112,1.0,1 +23112,15,1.0,1,1.6533828973770142,113,0.0,1 +23113,15,1.0,1,1.7853811979293823,114,1.0,1 +23114,15,1.0,1,1.233386754989624,115,1.0,1 +23115,15,1.0,1,1.3743864297866821,116,1.0,1 +23116,15,1.0,1,1.3973861932754517,117,1.0,1 +23117,15,1.0,1,1.2253867387771606,118,0.0,1 +23118,15,1.0,1,1.5573841333389282,119,1.0,1 +23119,15,1.0,1,1.328386902809143,120,0.0,1 +23120,15,0.0,1,1.3803863525390625,121,0.0,1 +23121,15,0.0,1,1.2473866939544678,122,1.0,1 +23122,15,0.0,1,1.63938307762146,123,0.0,1 +23123,15,0.0,1,1.5563840866088867,124,0.0,1 +23124,15,0.0,1,1.50038480758667,125,1.0,1 +23125,15,0.0,1,1.2913868427276611,126,0.0,1 +23126,15,0.0,1,1.363386631011963,127,0.0,1 +23127,15,1.0,1,1.3833863735198975,128,1.0,1 +23128,15,0.0,1,1.4133859872817993,129,0.0,1 +23129,15,1.0,1,1.4123859405517578,130,0.0,1 +23130,15,1.0,1,1.3863862752914429,131,1.0,1 +23131,15,1.0,1,1.3833863735198975,132,1.0,1 +23132,15,1.0,1,1.5733839273452759,133,1.0,1 +23133,15,1.0,1,1.5133846998214722,134,1.0,1 +23134,15,1.0,1,1.2743867635726929,135,1.0,1 +23135,15,1.0,1,1.5613840818405151,136,1.0,1 +23136,15,1.0,1,1.2353867292404175,137,1.0,1 +23137,15,1.0,1,1.377386450767517,138,0.0,1 +23138,15,0.0,1,1.3023868799209595,139,1.0,1 +23139,15,0.0,1,2.1553804874420166,140,0.0,1 +23140,15,0.0,1,1.1533865928649902,141,1.0,1 +23141,15,1.0,1,1.50038480758667,142,1.0,1 +23142,15,0.0,1,1.4793851375579834,143,0.0,1 +23143,15,1.0,1,1.2573868036270142,144,1.0,1 +23144,15,1.0,1,1.430385708808899,145,1.0,1 +23145,15,1.0,1,1.5683839321136475,146,1.0,1 +23146,15,1.0,1,1.5503841638565063,147,1.0,1 +23147,15,1.0,1,1.6213833093643188,148,1.0,1 +23148,15,0.0,1,2.065377712249756,149,1.0,1 +23149,15,1.0,1,1.6773825883865356,150,1.0,1 +23150,15,1.0,1,1.9393792152404785,151,1.0,1 +23151,15,0.0,1,1.5863837003707886,152,0.0,1 +23152,15,1.0,1,1.6273832321166992,153,1.0,1 +23153,15,1.0,1,1.3873863220214844,154,1.0,1 +23154,15,0.0,1,1.4913849830627441,155,0.0,1 +23155,15,1.0,1,1.6963822841644287,156,1.0,1 +23156,15,1.0,1,1.2453867197036743,157,1.0,1 +23157,15,1.0,1,1.3613866567611694,158,1.0,1 +23158,15,1.0,1,1.525384545326233,159,1.0,1 +23159,15,1.0,1,1.7373818159103394,160,1.0,1 +23160,15,1.0,1,1.3263869285583496,161,0.0,1 +23161,15,0.0,1,2.4333934783935547,162,0.0,1 +23162,15,1.0,1,1.797381043434143,163,1.0,1 +23163,15,1.0,1,1.3303868770599365,164,1.0,1 +23164,15,1.0,1,1.6623828411102295,165,1.0,1 +23165,15,1.0,1,1.5083847045898438,166,1.0,1 +23166,15,1.0,1,1.452385425567627,167,1.0,1 +23167,15,1.0,1,1.3933862447738647,168,1.0,1 +23168,15,1.0,1,1.5283844470977783,169,0.0,1 +23169,15,1.0,1,1.3803863525390625,170,1.0,1 +23170,15,1.0,1,1.8123807907104492,171,0.0,1 +23171,15,0.0,1,1.4813851118087769,172,0.0,1 +23172,15,1.0,1,1.3653866052627563,173,1.0,1 +23173,15,1.0,1,1.937379240989685,174,1.0,1 +23174,15,1.0,1,1.5013848543167114,175,1.0,1 +23175,15,1.0,1,1.7873811721801758,176,0.0,1 +23176,15,0.0,1,1.1813865900039673,177,0.0,1 +23177,15,1.0,1,2.1273791790008545,178,1.0,1 +23178,15,1.0,1,1.295386791229248,179,1.0,1 +23179,15,1.0,1,1.7553815841674805,180,0.0,1 +23180,15,0.0,1,1.565384030342102,181,1.0,1 +23181,15,0.0,1,1.6783826351165771,182,0.0,1 +23182,15,0.0,1,1.6763825416564941,183,0.0,1 +23183,15,1.0,1,1.6163833141326904,184,0.0,1 +23184,15,0.0,1,1.4833850860595703,185,0.0,1 +23185,15,0.0,1,1.5203845500946045,186,0.0,1 +23186,15,0.0,1,1.2593867778778076,187,1.0,1 +23187,15,0.0,1,1.562384009361267,188,0.0,1 +23188,15,0.0,1,1.3663865327835083,189,1.0,1 +23189,15,0.0,1,1.304386854171753,190,0.0,1 +23190,15,1.0,1,1.5283844470977783,191,1.0,1 +23191,15,1.0,1,1.47738516330719,192,0.0,1 +23192,15,1.0,1,1.2553868293762207,193,0.0,1 +23193,15,0.0,1,1.547384262084961,194,0.0,1 +23194,15,1.0,1,1.5333844423294067,195,1.0,1 +23195,15,1.0,1,1.3213869333267212,196,1.0,1 +23196,15,1.0,1,1.7153820991516113,197,0.0,1 +23197,15,0.0,1,1.422385811805725,198,0.0,1 +23198,15,0.0,1,1.3133869171142578,199,0.0,1 +23199,15,0.0,1,1.381386399269104,200,0.0,1 +23200,15,1.0,1,1.3933862447738647,201,1.0,1 +23201,15,1.0,1,1.355386734008789,202,1.0,1 +23202,15,1.0,1,1.6123833656311035,203,1.0,1 +23203,15,1.0,1,1.337386965751648,204,0.0,1 +23204,15,0.0,1,1.6473829746246338,205,1.0,1 +23205,15,0.0,1,1.3903862237930298,206,0.0,1 +23206,15,0.0,1,2.314387798309326,207,0.0,1 +23207,15,1.0,1,1.989378571510315,208,1.0,1 +23208,15,1.0,1,1.897379755973816,209,0.0,1 +23209,15,0.0,1,1.609383463859558,210,0.0,1 +23210,15,1.0,1,1.6153833866119385,211,0.0,1 +23211,15,1.0,1,1.3093868494033813,212,1.0,1 +23212,15,1.0,1,1.7853811979293823,213,0.0,1 +23213,15,1.0,1,1.5153846740722656,214,1.0,1 +23214,15,1.0,1,1.9313793182373047,215,1.0,1 +23215,15,1.0,1,1.5543841123580933,216,1.0,1 +23216,15,1.0,1,1.4243857860565186,217,1.0,1 +23217,15,1.0,1,1.6243832111358643,218,1.0,1 +23218,15,1.0,1,1.9563789367675781,219,1.0,1 +23219,15,1.0,1,1.1913866996765137,220,1.0,1 +23220,15,1.0,1,1.4943848848342896,221,1.0,1 +23221,15,1.0,1,1.3543866872787476,222,1.0,1 +23222,15,1.0,1,1.6223833560943604,223,1.0,1 +23223,15,1.0,1,1.4693852663040161,224,1.0,1 +23224,15,1.0,1,1.5893837213516235,225,1.0,1 +23225,15,1.0,1,1.3543866872787476,226,1.0,1 +23226,15,1.0,1,1.7413817644119263,227,0.0,1 +23227,15,1.0,1,1.4983848333358765,228,1.0,1 +23228,15,1.0,1,1.3923861980438232,229,0.0,1 +23229,15,1.0,1,1.7603814601898193,230,0.0,1 +23230,15,0.0,1,1.3133869171142578,231,0.0,1 +23231,15,0.0,1,2.21738338470459,232,1.0,1 +23232,15,0.0,1,1.3543866872787476,233,1.0,1 +23233,15,0.0,1,1.295386791229248,234,0.0,1 +23234,15,0.0,1,1.408385992050171,235,0.0,1 +23235,15,0.0,1,1.4633853435516357,236,0.0,1 +23236,15,0.0,1,1.3183869123458862,237,0.0,1 +23237,15,0.0,1,1.823380708694458,238,1.0,1 +23238,15,0.0,1,1.1763865947723389,239,0.0,1 +23239,15,0.0,1,1.6633827686309814,240,1.0,1 +23240,15,0.0,1,1.2013866901397705,241,0.0,1 +23241,15,0.0,1,1.4353857040405273,242,1.0,1 +23242,15,0.0,1,1.9523789882659912,243,0.0,1 +23243,15,1.0,1,1.5163846015930176,244,1.0,1 +23244,15,1.0,1,1.6073834896087646,245,1.0,1 +23245,15,1.0,1,1.267386794090271,246,1.0,1 +23246,15,1.0,1,1.4583853483200073,247,0.0,1 +23247,15,1.0,1,1.3753864765167236,248,0.0,1 +23248,15,1.0,1,1.8573802709579468,249,0.0,1 +23249,15,0.0,1,2.232384204864502,250,0.0,1 +23250,15,0.0,1,1.7453817129135132,251,1.0,1 +23251,15,0.0,1,1.240386724472046,252,0.0,1 +23252,15,0.0,1,1.8293806314468384,253,0.0,1 +23253,15,0.0,1,1.5133846998214722,254,0.0,1 +23254,15,1.0,1,1.5203845500946045,255,1.0,1 +23255,15,1.0,1,1.8783800601959229,256,1.0,1 +23256,15,1.0,1,1.5023847818374634,257,0.0,1 +23257,15,1.0,1,1.3613866567611694,258,0.0,1 +23258,15,1.0,1,1.5313844680786133,259,0.0,1 +23259,15,1.0,1,1.7613815069198608,260,1.0,1 +23260,15,1.0,1,1.5133846998214722,261,0.0,1 +23261,15,1.0,1,1.642383098602295,262,0.0,1 +23262,15,0.0,1,1.617383360862732,263,0.0,1 +23263,15,0.0,1,1.7933810949325562,264,1.0,1 +23264,15,0.0,1,1.360386610031128,265,1.0,1 +23265,15,0.0,1,1.3213869333267212,266,0.0,1 +23266,15,0.0,1,1.4093860387802124,267,0.0,1 +23267,15,1.0,1,2.218383312225342,268,0.0,1 +23268,15,1.0,1,1.9483790397644043,269,0.0,1 +23269,15,0.0,1,1.237386703491211,270,0.0,1 +23270,15,1.0,1,1.8133808374404907,271,1.0,1 +23271,15,1.0,1,1.4883849620819092,272,1.0,1 +23272,15,1.0,1,1.6693826913833618,273,1.0,1 +23273,15,1.0,1,1.3323869705200195,274,0.0,1 +23274,15,1.0,1,1.6583828926086426,275,1.0,1 +23275,15,1.0,1,2.0463778972625732,276,1.0,1 +23276,15,1.0,1,1.4613853693008423,277,0.0,1 +23277,15,1.0,1,1.6123833656311035,278,1.0,1 +23278,15,1.0,1,1.4163858890533447,279,1.0,1 +23279,15,1.0,1,1.9533790349960327,280,1.0,1 +23280,15,1.0,1,1.3233869075775146,281,0.0,1 +23281,15,0.0,1,1.4153859615325928,282,0.0,1 +23282,15,1.0,1,1.3893862962722778,283,1.0,1 +23283,15,1.0,1,1.2263866662979126,284,0.0,1 +23284,15,1.0,1,2.0913774967193604,285,1.0,1 +23285,15,1.0,1,1.303386926651001,286,0.0,1 +23286,15,1.0,1,1.9763786792755127,287,0.0,1 +23287,15,0.0,1,1.9973784685134888,288,1.0,1 +23288,15,0.0,1,1.3583866357803345,289,1.0,1 +23289,15,0.0,1,1.3213869333267212,290,1.0,1 +23290,15,0.0,1,1.355386734008789,291,0.0,1 +23291,15,0.0,1,1.2153866291046143,292,1.0,1 +23292,15,0.0,1,1.2473866939544678,293,0.0,1 +23293,15,0.0,1,1.1853866577148438,294,1.0,1 +23294,15,0.0,1,1.1613866090774536,295,0.0,1 +23295,15,0.0,1,2.295387029647827,296,0.0,1 +23296,15,1.0,1,1.7453817129135132,297,1.0,1 +23297,15,1.0,1,1.4103859663009644,298,1.0,1 +23298,15,1.0,1,1.6553828716278076,299,1.0,1 +23299,15,1.0,1,1.5053848028182983,300,1.0,1 +23300,15,1.0,1,1.2353867292404175,301,0.0,1 +23301,15,0.0,1,1.429385781288147,302,1.0,1 +23302,15,0.0,1,1.3513867855072021,303,0.0,1 +23303,15,0.0,1,1.9213794469833374,304,1.0,1 +23304,15,0.0,1,1.3023868799209595,305,0.0,1 +23305,15,0.0,1,1.4243857860565186,306,0.0,1 +23306,15,0.0,1,1.6523828506469727,307,1.0,1 +23307,15,1.0,1,2.003378391265869,308,1.0,1 +23308,15,0.0,1,1.2143867015838623,309,0.0,1 +23309,15,0.0,1,1.3843863010406494,310,0.0,1 +23310,15,1.0,1,1.548384189605713,311,1.0,1 +23311,15,1.0,1,1.4353857040405273,312,1.0,1 +23312,15,1.0,1,1.4903849363327026,313,0.0,1 +23313,15,1.0,1,1.5323843955993652,314,1.0,1 +23314,15,1.0,1,1.3753864765167236,315,0.0,1 +23315,15,1.0,1,1.8563802242279053,316,1.0,1 +23316,15,0.0,1,1.3103868961334229,317,1.0,1 +23317,15,1.0,1,2.29738712310791,318,1.0,1 +23318,15,0.0,1,1.2163866758346558,319,0.0,1 +23319,15,1.0,1,1.3533867597579956,320,1.0,1 +23320,15,1.0,1,1.782381296157837,321,1.0,1 +23321,15,1.0,1,1.334386944770813,322,0.0,1 +23322,15,1.0,1,1.6783826351165771,323,0.0,1 +23323,15,0.0,1,1.63938307762146,324,0.0,1 +23324,15,1.0,1,1.7443816661834717,325,1.0,1 +23325,15,1.0,1,1.6043834686279297,326,1.0,1 +23326,15,1.0,1,1.594383716583252,327,1.0,1 +23327,15,1.0,1,1.4763851165771484,328,1.0,1 +23328,15,1.0,1,1.1993865966796875,329,1.0,1 +23329,15,1.0,1,1.8003809452056885,330,1.0,1 +23330,15,0.0,1,1.5133846998214722,331,0.0,1 +23331,15,1.0,1,1.50038480758667,332,1.0,1 +23332,15,1.0,1,1.7133821249008179,333,1.0,1 +23333,15,1.0,1,1.4153859615325928,334,0.0,1 +23334,15,1.0,1,1.7883810997009277,335,1.0,1 +23335,15,1.0,1,1.2903867959976196,336,0.0,1 +23336,15,0.0,1,1.2723867893218994,337,1.0,1 +23337,15,0.0,1,1.3713865280151367,338,0.0,1 +23338,15,0.0,1,1.8573802709579468,339,0.0,1 +23339,15,0.0,1,1.304386854171753,340,0.0,1 +23340,15,0.0,1,1.613383412361145,341,0.0,1 +23341,15,0.0,1,1.2523868083953857,342,1.0,1 +23342,15,0.0,1,1.4183858633041382,343,0.0,1 +23343,15,1.0,1,1.4563853740692139,344,0.0,1 +23344,15,0.0,1,1.3983861207962036,345,0.0,1 +23345,15,1.0,1,1.1983866691589355,346,1.0,1 +23346,15,1.0,1,1.4983848333358765,347,0.0,1 +23347,15,0.0,1,2.260385513305664,348,0.0,1 +23348,15,1.0,1,2.0443778038024902,349,0.0,1 +23349,15,1.0,1,1.6563827991485596,350,1.0,1 +23350,15,1.0,1,1.5353844165802002,351,1.0,1 +23351,15,0.0,1,1.2783868312835693,352,1.0,1 +23352,15,0.0,1,1.8083808422088623,353,0.0,1 +23353,15,1.0,1,1.2553868293762207,354,0.0,1 +23354,15,0.0,1,1.2123867273330688,355,1.0,1 +23355,15,0.0,1,1.3183869123458862,356,0.0,1 +23356,15,0.0,1,2.3663902282714844,357,1.0,1 +23357,15,0.0,1,1.2593867778778076,358,1.0,1 +23358,15,0.0,1,1.4023860692977905,359,0.0,1 +23359,15,0.0,1,1.6463830471038818,360,0.0,1 +23360,15,1.0,1,2.0983777046203613,361,1.0,1 +23361,15,1.0,1,1.5053848028182983,362,1.0,1 +23362,15,1.0,1,1.360386610031128,363,1.0,1 +23363,15,1.0,1,1.381386399269104,364,0.0,1 +23364,15,0.0,1,1.4013861417770386,365,0.0,1 +23365,15,0.0,1,1.3963861465454102,366,0.0,1 +23366,15,0.0,1,1.295386791229248,367,0.0,1 +23367,15,0.0,1,1.8653801679611206,368,0.0,1 +23368,15,1.0,1,1.8863799571990967,369,1.0,1 +23369,15,1.0,1,1.661382794380188,370,1.0,1 +23370,15,1.0,1,1.3433868885040283,371,1.0,1 +23371,15,1.0,1,1.5993835926055908,372,1.0,1 +23372,15,1.0,1,1.5633840560913086,373,1.0,1 +23373,15,1.0,1,1.4973849058151245,374,1.0,1 +23374,15,1.0,1,1.632383108139038,375,1.0,1 +23375,15,1.0,1,1.3083869218826294,376,0.0,1 +23376,15,1.0,1,1.5633840560913086,377,1.0,1 +23377,15,1.0,1,1.7643814086914062,378,0.0,1 +23378,15,1.0,1,1.4413856267929077,379,1.0,1 +23379,15,1.0,1,1.636383056640625,380,1.0,1 +23380,15,1.0,1,1.2663867473602295,381,1.0,1 +23381,15,1.0,1,1.2853868007659912,382,1.0,1 +23382,15,1.0,1,1.3753864765167236,383,0.0,1 +23383,15,1.0,1,1.6723825931549072,384,1.0,1 +23384,15,1.0,1,1.6163833141326904,385,0.0,1 +23385,15,0.0,1,2.283386468887329,386,0.0,1 +23386,15,0.0,1,1.3393869400024414,387,0.0,1 +23387,15,1.0,1,1.4583853483200073,388,1.0,1 +23388,15,1.0,1,1.4413856267929077,389,1.0,1 +23389,15,1.0,1,1.3083869218826294,390,0.0,1 +23390,15,1.0,1,1.6373831033706665,391,1.0,1 +23391,15,1.0,1,1.4353857040405273,392,0.0,1 +23392,15,0.0,1,1.8583803176879883,393,0.0,1 +23393,15,0.0,1,1.5333844423294067,394,0.0,1 +23394,15,1.0,1,1.6063835620880127,395,1.0,1 +23395,15,1.0,1,1.3763864040374756,396,1.0,1 +23396,15,1.0,1,1.565384030342102,397,0.0,1 +23397,15,1.0,1,1.7883810997009277,398,1.0,1 +23398,15,1.0,1,1.636383056640625,399,0.0,1 +23399,15,1.0,1,1.4283857345581055,400,1.0,1 +23400,15,1.0,1,1.3883862495422363,401,1.0,1 +23401,15,1.0,1,1.356386661529541,402,1.0,1 +23402,15,1.0,1,1.4183858633041382,403,0.0,1 +23403,15,1.0,1,1.4383856058120728,404,0.0,1 +23404,15,1.0,1,1.9933785200119019,405,0.0,1 +23405,15,1.0,1,1.3493868112564087,406,1.0,1 +23406,15,1.0,1,1.6563827991485596,407,1.0,1 +23407,15,1.0,1,1.3263869285583496,408,1.0,1 +23408,15,1.0,1,1.4243857860565186,409,0.0,1 +23409,15,1.0,1,1.3123868703842163,410,1.0,1 +23410,15,1.0,1,1.9453791379928589,411,1.0,1 +23411,15,1.0,1,1.3893862962722778,412,1.0,1 +23412,15,1.0,1,1.683382511138916,413,1.0,1 +23413,15,1.0,1,1.8873798847198486,414,1.0,1 +23414,15,1.0,1,1.5203845500946045,415,1.0,1 +23415,15,1.0,1,1.4383856058120728,416,1.0,1 +23416,15,1.0,1,1.3163869380950928,417,1.0,1 +23417,15,1.0,1,1.2833868265151978,418,1.0,1 +23418,15,0.0,1,1.4173859357833862,419,1.0,1 +23419,15,1.0,1,1.3323869705200195,420,0.0,1 +23420,15,0.0,1,1.3173868656158447,421,0.0,1 +23421,15,0.0,1,1.452385425567627,422,0.0,1 +23422,15,0.0,1,1.9523789882659912,423,0.0,1 +23423,15,1.0,1,2.223383665084839,424,0.0,1 +23424,15,0.0,1,1.3973861932754517,425,0.0,1 +23425,15,0.0,1,1.5823837518692017,426,1.0,1 +23426,15,0.0,1,1.3143868446350098,427,0.0,1 +23427,15,0.0,1,1.7333818674087524,428,0.0,1 +23428,15,1.0,1,1.6103835105895996,429,1.0,1 +23429,15,1.0,1,1.5493842363357544,430,1.0,1 +23430,15,1.0,1,1.2153866291046143,431,0.0,1 +23431,15,0.0,1,1.8213807344436646,432,0.0,1 +23432,15,1.0,1,1.3663865327835083,433,1.0,1 +23433,15,1.0,1,1.6103835105895996,434,0.0,1 +23434,15,0.0,1,1.5353844165802002,435,0.0,1 +23435,15,0.0,1,1.7393817901611328,436,1.0,1 +23436,15,0.0,1,1.2823867797851562,437,1.0,1 +23437,15,0.0,1,1.2583867311477661,438,1.0,1 +23438,15,0.0,1,1.356386661529541,439,1.0,1 +23439,15,0.0,1,1.426385760307312,440,0.0,1 +23440,15,1.0,1,1.9873785972595215,441,0.0,1 +23441,15,0.0,1,1.385386347770691,442,1.0,1 +23442,15,0.0,1,1.9793787002563477,443,1.0,1 +23443,15,0.0,1,1.9843785762786865,444,0.0,1 +23444,15,1.0,1,2.0223782062530518,445,1.0,1 +23445,15,1.0,1,1.845380425453186,446,1.0,1 +23446,15,1.0,1,1.3263869285583496,447,1.0,1 +23447,15,1.0,1,1.2993868589401245,448,1.0,1 +23448,15,1.0,1,1.3923861980438232,449,1.0,1 +23449,15,1.0,1,1.3083869218826294,450,1.0,1 +23450,15,1.0,1,1.5293844938278198,451,1.0,1 +23451,15,1.0,1,1.3583866357803345,452,1.0,1 +23452,15,1.0,1,1.4193859100341797,453,1.0,1 +23453,15,1.0,1,1.7673814296722412,454,1.0,1 +23454,15,1.0,1,1.261386752128601,455,0.0,1 +23455,15,0.0,1,1.517384648323059,456,0.0,1 +23456,15,1.0,1,1.5853837728500366,457,1.0,1 +23457,15,1.0,1,1.492384910583496,458,1.0,1 +23458,15,1.0,1,1.4843850135803223,459,1.0,1 +23459,15,1.0,1,1.3503867387771606,460,0.0,1 +23460,15,0.0,1,1.7873811721801758,461,0.0,1 +23461,15,0.0,1,1.5543841123580933,462,0.0,1 +23462,15,0.0,1,1.2153866291046143,463,0.0,1 +23463,15,0.0,1,1.400386095046997,464,0.0,1 +23464,15,0.0,1,1.6523828506469727,465,1.0,1 +23465,15,1.0,1,1.9293793439865112,466,1.0,1 +23466,15,1.0,1,1.4333857297897339,467,0.0,1 +23467,15,1.0,1,1.6413830518722534,468,1.0,1 +23468,15,1.0,1,1.5203845500946045,469,0.0,1 +23469,15,0.0,1,1.1873866319656372,470,1.0,1 +23470,15,0.0,1,1.4343856573104858,471,1.0,1 +23471,15,0.0,1,1.295386791229248,472,1.0,1 +23472,15,0.0,1,1.2653868198394775,473,0.0,1 +23473,15,1.0,1,1.273386836051941,474,1.0,1 +23474,15,1.0,1,1.3143868446350098,475,1.0,1 +23475,15,1.0,1,1.7513816356658936,476,1.0,1 +23476,15,1.0,1,1.3363869190216064,477,1.0,1 +23477,15,1.0,1,1.686382532119751,478,0.0,1 +23478,15,1.0,1,1.522384524345398,479,1.0,1 +23479,15,1.0,1,1.849380373954773,480,1.0,1 +23480,15,1.0,1,1.8153808116912842,481,1.0,1 +23481,15,1.0,1,1.2323867082595825,482,1.0,1 +23482,15,1.0,1,1.3053869009017944,483,0.0,1 +23483,15,1.0,1,2.0303781032562256,484,1.0,1 +23484,15,0.0,1,1.9083795547485352,485,0.0,1 +23485,15,1.0,1,1.7233819961547852,486,1.0,1 +23486,15,1.0,1,1.5983836650848389,487,0.0,1 +23487,15,0.0,1,1.7253819704055786,488,1.0,1 +23488,15,0.0,1,1.8003809452056885,489,0.0,1 +23489,15,0.0,1,1.2253867387771606,490,0.0,1 +23490,15,0.0,1,1.5093847513198853,491,1.0,1 +23491,15,0.0,1,1.4053860902786255,492,0.0,1 +23492,15,0.0,1,1.3733865022659302,493,0.0,1 +23493,15,1.0,1,1.684382438659668,494,1.0,1 +23494,15,1.0,1,1.5233845710754395,495,1.0,1 +23495,15,1.0,1,1.2683868408203125,496,0.0,1 +23496,15,1.0,1,1.919379472732544,497,1.0,1 +23497,15,1.0,1,1.3223868608474731,498,0.0,1 +23498,15,0.0,1,1.823380708694458,499,0.0,1 +23499,15,1.0,1,1.7713813781738281,500,1.0,1 +23500,15,0.0,2,1.3293869495391846,1,1.0,1 +23501,15,0.0,2,1.473385214805603,2,0.0,1 +23502,15,0.0,2,1.6783826351165771,3,0.0,1 +23503,15,1.0,2,1.540384292602539,4,1.0,1 +23504,15,1.0,2,1.7773813009262085,5,1.0,1 +23505,15,1.0,2,1.5123846530914307,6,0.0,1 +23506,15,0.0,2,1.7883810997009277,7,1.0,1 +23507,15,0.0,2,1.4653853178024292,8,0.0,1 +23508,15,0.0,2,1.915379524230957,9,0.0,1 +23509,15,0.0,2,1.5053848028182983,10,0.0,1 +23510,15,0.0,2,1.478385090827942,11,0.0,1 +23511,15,1.0,2,1.2823867797851562,12,1.0,1 +23512,15,1.0,2,1.8133808374404907,13,0.0,1 +23513,15,0.0,2,1.518384575843811,14,0.0,1 +23514,15,1.0,2,1.8483803272247314,15,1.0,1 +23515,15,0.0,2,1.3223868608474731,16,1.0,1 +23516,15,1.0,2,1.3903862237930298,17,1.0,1 +23517,15,0.0,2,1.731381893157959,18,0.0,1 +23518,15,1.0,2,1.5193846225738525,19,0.0,1 +23519,15,1.0,2,1.2493867874145508,20,1.0,1 +23520,15,1.0,2,1.7253819704055786,21,0.0,1 +23521,15,0.0,2,1.298386812210083,22,0.0,1 +23522,15,0.0,2,1.5073847770690918,23,0.0,1 +23523,15,0.0,2,1.5153846740722656,24,1.0,1 +23524,15,0.0,2,1.4643852710723877,25,1.0,1 +23525,15,0.0,2,1.4603853225708008,26,1.0,1 +23526,15,0.0,2,1.6193833351135254,27,1.0,1 +23527,15,0.0,2,1.915379524230957,28,1.0,1 +23528,15,0.0,2,1.301386833190918,29,0.0,1 +23529,15,1.0,2,1.5153846740722656,30,0.0,1 +23530,15,0.0,2,1.408385992050171,31,0.0,1 +23531,15,1.0,2,2.299387216567993,32,0.0,1 +23532,15,0.0,2,1.3493868112564087,33,1.0,1 +23533,15,0.0,2,1.264386773109436,34,1.0,1 +23534,15,0.0,2,1.430385708808899,35,1.0,1 +23535,15,0.0,2,1.4863849878311157,36,1.0,1 +23536,15,0.0,2,1.3433868885040283,37,0.0,1 +23537,15,1.0,2,2.0293779373168945,38,0.0,1 +23538,15,1.0,2,1.7853811979293823,39,1.0,1 +23539,15,1.0,2,1.4463855028152466,40,1.0,1 +23540,15,1.0,2,1.7203819751739502,41,1.0,1 +23541,15,1.0,2,1.5993835926055908,42,1.0,1 +23542,15,1.0,2,1.2493867874145508,43,0.0,1 +23543,15,0.0,2,2.311387777328491,44,1.0,1 +23544,15,1.0,2,1.8033809661865234,45,0.0,1 +23545,15,0.0,2,1.273386836051941,46,0.0,1 +23546,15,0.0,2,1.868380069732666,47,0.0,1 +23547,15,0.0,2,1.7263820171356201,48,0.0,1 +23548,15,1.0,2,1.3213869333267212,49,0.0,1 +23549,15,0.0,2,2.009378433227539,50,0.0,1 +23550,15,1.0,2,1.521384596824646,51,0.0,1 +23551,15,1.0,2,1.8553802967071533,52,0.0,1 +23552,15,1.0,2,1.4613853693008423,53,1.0,1 +23553,15,1.0,2,1.3723864555358887,54,0.0,1 +23554,15,1.0,2,1.3983861207962036,55,1.0,1 +23555,15,1.0,2,1.5893837213516235,56,0.0,1 +23556,15,0.0,2,1.4893850088119507,57,1.0,1 +23557,15,1.0,2,1.7653814554214478,58,0.0,1 +23558,15,0.0,2,1.3063868284225464,59,0.0,1 +23559,15,0.0,2,1.6923823356628418,60,1.0,1 +23560,15,0.0,2,1.8603801727294922,61,0.0,1 +23561,15,1.0,2,1.4493855237960815,62,1.0,1 +23562,15,1.0,2,1.7813812494277954,63,1.0,1 +23563,15,1.0,2,1.3803863525390625,64,1.0,1 +23564,15,1.0,2,1.521384596824646,65,1.0,1 +23565,15,1.0,2,1.3353869915008545,66,0.0,1 +23566,15,1.0,2,1.3193869590759277,67,1.0,1 +23567,15,1.0,2,1.3793864250183105,68,1.0,1 +23568,15,1.0,2,1.6233832836151123,69,0.0,1 +23569,15,1.0,2,1.757381558418274,70,0.0,1 +23570,15,0.0,2,1.2633867263793945,71,1.0,1 +23571,15,0.0,2,1.679382562637329,72,0.0,1 +23572,15,0.0,2,1.2353867292404175,73,0.0,1 +23573,15,0.0,2,1.959378957748413,74,1.0,1 +23574,15,0.0,2,1.2323867082595825,75,1.0,1 +23575,15,0.0,2,1.5353844165802002,76,1.0,1 +23576,15,0.0,2,1.5983836650848389,77,1.0,1 +23577,15,0.0,2,1.6373831033706665,78,0.0,1 +23578,15,0.0,2,1.2543867826461792,79,0.0,1 +23579,15,0.0,2,1.2173867225646973,80,0.0,1 +23580,15,0.0,2,1.4183858633041382,81,1.0,1 +23581,15,0.0,2,1.239386796951294,82,0.0,1 +23582,15,1.0,2,1.5083847045898438,83,1.0,1 +23583,15,1.0,2,1.295386791229248,84,0.0,1 +23584,15,1.0,2,1.3703864812850952,85,0.0,1 +23585,15,0.0,2,1.5673840045928955,86,0.0,1 +23586,15,0.0,2,1.3673865795135498,87,1.0,1 +23587,15,0.0,2,1.632383108139038,88,0.0,1 +23588,15,0.0,2,1.870380163192749,89,0.0,1 +23589,15,0.0,2,1.3103868961334229,90,1.0,1 +23590,15,0.0,2,1.7033822536468506,91,0.0,1 +23591,15,0.0,2,1.9533790349960327,92,1.0,1 +23592,15,0.0,2,1.352386713027954,93,0.0,1 +23593,15,0.0,2,1.3953862190246582,94,1.0,1 +23594,15,1.0,2,1.3063868284225464,95,0.0,1 +23595,15,0.0,2,1.2083866596221924,96,0.0,1 +23596,15,1.0,2,1.3963861465454102,97,1.0,1 +23597,15,1.0,2,1.5743838548660278,98,1.0,1 +23598,15,1.0,2,1.6413830518722534,99,0.0,1 +23599,15,0.0,2,1.4423855543136597,100,0.0,1 +23600,15,1.0,2,1.7433817386627197,101,1.0,1 +23601,15,1.0,2,1.8113808631896973,102,0.0,1 +23602,15,0.0,2,1.1503865718841553,103,0.0,1 +23603,15,1.0,2,2.300387382507324,104,0.0,1 +23604,15,1.0,2,1.547384262084961,105,0.0,1 +23605,15,1.0,2,1.2293866872787476,106,1.0,1 +23606,15,1.0,2,1.334386944770813,107,0.0,1 +23607,15,1.0,2,1.2683868408203125,108,1.0,1 +23608,15,1.0,2,1.6003835201263428,109,0.0,1 +23609,15,1.0,2,2.3823909759521484,110,1.0,1 +23610,15,0.0,2,1.3123868703842163,111,1.0,1 +23611,15,1.0,2,1.3543866872787476,112,0.0,1 +23612,15,0.0,2,1.4983848333358765,113,1.0,1 +23613,15,0.0,2,1.4173859357833862,114,0.0,1 +23614,15,0.0,2,1.4633853435516357,115,1.0,1 +23615,15,1.0,2,1.4373856782913208,116,1.0,1 +23616,15,1.0,2,1.7173820734024048,117,1.0,1 +23617,15,0.0,2,1.400386095046997,118,0.0,1 +23618,15,1.0,2,1.8813799619674683,119,0.0,1 +23619,15,1.0,2,1.363386631011963,120,1.0,1 +23620,15,1.0,2,1.2773867845535278,121,1.0,1 +23621,15,1.0,2,1.7113821506500244,122,1.0,1 +23622,15,0.0,2,1.539384365081787,123,0.0,1 +23623,15,1.0,2,1.4393856525421143,124,0.0,1 +23624,15,0.0,2,1.5823837518692017,125,0.0,1 +23625,15,0.0,2,1.8793799877166748,126,0.0,1 +23626,15,1.0,2,1.588383674621582,127,1.0,1 +23627,15,1.0,2,1.206386685371399,128,1.0,1 +23628,15,1.0,2,1.3573867082595825,129,1.0,1 +23629,15,1.0,2,1.303386926651001,130,1.0,1 +23630,15,1.0,2,1.517384648323059,131,1.0,1 +23631,15,1.0,2,1.3433868885040283,132,1.0,1 +23632,15,1.0,2,1.3513867855072021,133,1.0,1 +23633,15,1.0,2,1.8343806266784668,134,0.0,1 +23634,15,1.0,2,1.7643814086914062,135,0.0,1 +23635,15,1.0,2,1.6103835105895996,136,1.0,1 +23636,15,1.0,2,1.566383957862854,137,1.0,1 +23637,15,1.0,2,1.5103846788406372,138,1.0,1 +23638,15,1.0,2,1.474385142326355,139,1.0,1 +23639,15,1.0,2,1.403386116027832,140,0.0,1 +23640,15,1.0,2,1.429385781288147,141,0.0,1 +23641,15,0.0,2,1.5313844680786133,142,0.0,1 +23642,15,1.0,2,1.356386661529541,143,0.0,1 +23643,15,0.0,2,1.8073809146881104,144,0.0,1 +23644,15,1.0,2,1.8083808422088623,145,0.0,1 +23645,15,0.0,2,1.8913798332214355,146,1.0,1 +23646,15,0.0,2,1.132386565208435,147,0.0,1 +23647,15,0.0,2,1.9333792924880981,148,1.0,1 +23648,15,0.0,2,1.3483867645263672,149,1.0,1 +23649,15,0.0,2,1.3843863010406494,150,0.0,1 +23650,15,0.0,2,1.3223868608474731,151,0.0,1 +23651,15,1.0,2,1.5673840045928955,152,0.0,1 +23652,15,0.0,2,1.868380069732666,153,1.0,1 +23653,15,0.0,2,1.5603840351104736,154,0.0,1 +23654,15,0.0,2,1.4163858890533447,155,0.0,1 +23655,15,0.0,2,1.403386116027832,156,1.0,1 +23656,15,0.0,2,1.4603853225708008,157,1.0,1 +23657,15,0.0,2,1.206386685371399,158,1.0,1 +23658,15,0.0,2,1.3873863220214844,159,0.0,1 +23659,15,0.0,2,1.3193869590759277,160,1.0,1 +23660,15,0.0,2,1.2123867273330688,161,0.0,1 +23661,15,1.0,2,1.6483829021453857,162,1.0,1 +23662,15,1.0,2,1.50038480758667,163,0.0,1 +23663,15,0.0,2,1.3873863220214844,164,0.0,1 +23664,15,0.0,2,1.3463867902755737,165,1.0,1 +23665,15,0.0,2,1.3713865280151367,166,0.0,1 +23666,15,0.0,2,2.510396957397461,167,0.0,1 +23667,15,0.0,2,1.613383412361145,168,0.0,1 +23668,15,1.0,2,1.8953797817230225,169,1.0,1 +23669,15,1.0,2,2.3333888053894043,170,1.0,1 +23670,15,1.0,2,1.7593815326690674,171,0.0,1 +23671,15,1.0,2,1.9263794422149658,172,1.0,1 +23672,15,1.0,2,1.2923868894577026,173,1.0,1 +23673,15,1.0,2,1.63938307762146,174,0.0,1 +23674,15,1.0,2,1.6733826398849487,175,0.0,1 +23675,15,0.0,2,1.227386713027954,176,1.0,1 +23676,15,0.0,2,1.9913785457611084,177,0.0,1 +23677,15,0.0,2,2.274385929107666,178,0.0,1 +23678,15,0.0,2,1.2883868217468262,179,1.0,1 +23679,15,1.0,2,1.495384931564331,180,1.0,1 +23680,15,0.0,2,1.9493790864944458,181,1.0,1 +23681,15,0.0,2,1.5743838548660278,182,1.0,1 +23682,15,0.0,2,1.753381609916687,183,1.0,1 +23683,15,0.0,2,1.377386450767517,184,0.0,1 +23684,15,0.0,2,1.544384241104126,185,1.0,1 +23685,15,1.0,2,1.7923810482025146,186,0.0,1 +23686,15,0.0,2,1.3463867902755737,187,0.0,1 +23687,15,0.0,2,1.2993868589401245,188,0.0,1 +23688,15,0.0,2,1.197386622428894,189,1.0,1 +23689,15,0.0,2,1.270386815071106,190,0.0,1 +23690,15,0.0,2,1.4463855028152466,191,0.0,1 +23691,15,1.0,2,1.3443868160247803,192,1.0,1 +23692,15,0.0,2,1.304386854171753,193,1.0,1 +23693,15,1.0,2,1.4393856525421143,194,0.0,1 +23694,15,0.0,2,1.300386905670166,195,1.0,1 +23695,15,0.0,2,1.7083821296691895,196,0.0,1 +23696,15,0.0,2,1.5273845195770264,197,1.0,1 +23697,15,0.0,2,1.3463867902755737,198,1.0,1 +23698,15,0.0,2,1.540384292602539,199,1.0,1 +23699,15,0.0,2,1.355386734008789,200,1.0,1 +23700,15,0.0,2,1.5463842153549194,201,0.0,1 +23701,15,1.0,2,1.642383098602295,202,0.0,1 +23702,15,0.0,2,1.4463855028152466,203,1.0,1 +23703,15,0.0,2,1.4133859872817993,204,0.0,1 +23704,15,0.0,2,1.3763864040374756,205,0.0,1 +23705,15,0.0,2,1.566383957862854,206,1.0,1 +23706,15,0.0,2,1.3893862962722778,207,1.0,1 +23707,15,0.0,2,1.3583866357803345,208,1.0,1 +23708,15,0.0,2,1.378386378288269,209,0.0,1 +23709,15,0.0,2,1.9293793439865112,210,0.0,1 +23710,15,0.0,2,1.264386773109436,211,0.0,1 +23711,15,1.0,2,2.29038667678833,212,0.0,1 +23712,15,0.0,2,1.9783787727355957,213,0.0,1 +23713,15,1.0,2,2.1193788051605225,214,1.0,1 +23714,15,1.0,2,1.3463867902755737,215,0.0,1 +23715,15,0.0,2,1.2503867149353027,216,0.0,1 +23716,15,1.0,2,1.3643865585327148,217,1.0,1 +23717,15,1.0,2,1.5353844165802002,218,0.0,1 +23718,15,1.0,2,1.8333805799484253,219,1.0,1 +23719,15,1.0,2,1.4163858890533447,220,1.0,1 +23720,15,1.0,2,1.3713865280151367,221,0.0,1 +23721,15,0.0,2,2.207382917404175,222,1.0,1 +23722,15,0.0,2,1.9343793392181396,223,1.0,1 +23723,15,0.0,2,1.77838134765625,224,0.0,1 +23724,15,1.0,2,1.8113808631896973,225,1.0,1 +23725,15,0.0,2,1.2043867111206055,226,1.0,1 +23726,15,0.0,2,1.5863837003707886,227,1.0,1 +23727,15,0.0,2,1.640383005142212,228,1.0,1 +23728,15,1.0,2,1.592383623123169,229,1.0,1 +23729,15,0.0,2,1.6033835411071777,230,0.0,1 +23730,15,1.0,2,1.7013822793960571,231,0.0,1 +23731,15,0.0,2,1.4653853178024292,232,0.0,1 +23732,15,0.0,2,1.4723851680755615,233,0.0,1 +23733,15,1.0,2,1.640383005142212,234,1.0,1 +23734,15,1.0,2,1.3923861980438232,235,0.0,1 +23735,15,1.0,2,1.7963809967041016,236,1.0,1 +23736,15,1.0,2,1.4053860902786255,237,0.0,1 +23737,15,1.0,2,1.3873863220214844,238,1.0,1 +23738,15,1.0,2,1.2863868474960327,239,0.0,1 +23739,15,1.0,2,1.4973849058151245,240,1.0,1 +23740,15,1.0,2,1.352386713027954,241,1.0,1 +23741,15,1.0,2,1.356386661529541,242,0.0,1 +23742,15,1.0,2,1.3683865070343018,243,1.0,1 +23743,15,1.0,2,1.77238130569458,244,1.0,1 +23744,15,1.0,2,1.3763864040374756,245,1.0,1 +23745,15,1.0,2,1.2523868083953857,246,0.0,1 +23746,15,1.0,2,1.7063822746276855,247,0.0,1 +23747,15,0.0,2,1.2863868474960327,248,1.0,1 +23748,15,0.0,2,1.2623867988586426,249,0.0,1 +23749,15,1.0,2,1.5023847818374634,250,1.0,1 +23750,15,0.0,2,1.5063847303390503,251,1.0,1 +23751,15,1.0,2,2.4243931770324707,252,1.0,1 +23752,15,1.0,2,1.5603840351104736,253,1.0,1 +23753,15,0.0,2,1.6743826866149902,254,0.0,1 +23754,15,1.0,2,1.300386905670166,255,1.0,1 +23755,15,1.0,2,1.5593841075897217,256,0.0,1 +23756,15,0.0,2,2.4423937797546387,257,0.0,1 +23757,15,0.0,2,1.2383867502212524,258,0.0,1 +23758,15,1.0,2,1.7933810949325562,259,0.0,1 +23759,15,0.0,2,1.4613853693008423,260,1.0,1 +23760,15,0.0,2,1.3583866357803345,261,0.0,1 +23761,15,0.0,2,1.3063868284225464,262,1.0,1 +23762,15,0.0,2,1.3063868284225464,263,0.0,1 +23763,15,0.0,2,1.261386752128601,264,0.0,1 +23764,15,0.0,2,1.735381841659546,265,1.0,1 +23765,15,0.0,2,1.2453867197036743,266,0.0,1 +23766,15,1.0,2,1.4343856573104858,267,1.0,1 +23767,15,1.0,2,1.3083869218826294,268,1.0,1 +23768,15,1.0,2,2.1983823776245117,269,1.0,1 +23769,15,1.0,2,1.7673814296722412,270,1.0,1 +23770,15,1.0,2,1.82438063621521,271,1.0,1 +23771,15,1.0,2,1.6213833093643188,272,1.0,1 +23772,15,0.0,2,1.6003835201263428,273,0.0,1 +23773,15,1.0,2,1.3893862962722778,274,1.0,1 +23774,15,1.0,2,1.3713865280151367,275,0.0,1 +23775,15,0.0,2,1.686382532119751,276,0.0,1 +23776,15,0.0,2,1.270386815071106,277,1.0,1 +23777,15,0.0,2,1.3843863010406494,278,1.0,1 +23778,15,0.0,2,1.1743866205215454,279,1.0,1 +23779,15,0.0,2,1.4243857860565186,280,0.0,1 +23780,15,0.0,2,1.4403855800628662,281,0.0,1 +23781,15,0.0,2,1.2803868055343628,282,1.0,1 +23782,15,0.0,2,1.295386791229248,283,0.0,1 +23783,15,0.0,2,1.562384009361267,284,0.0,1 +23784,15,0.0,2,2.3373889923095703,285,0.0,1 +23785,15,1.0,2,1.4323856830596924,286,0.0,1 +23786,15,0.0,2,1.9503791332244873,287,1.0,1 +23787,15,0.0,2,1.44838547706604,288,0.0,1 +23788,15,0.0,2,1.9233794212341309,289,1.0,1 +23789,15,0.0,2,1.1873866319656372,290,1.0,1 +23790,15,0.0,2,1.6223833560943604,291,0.0,1 +23791,15,1.0,2,2.1173787117004395,292,0.0,1 +23792,15,1.0,2,1.5983836650848389,293,0.0,1 +23793,15,1.0,2,2.014378309249878,294,0.0,1 +23794,15,1.0,2,1.6053835153579712,295,1.0,1 +23795,15,0.0,2,2.299387216567993,296,1.0,1 +23796,15,1.0,2,1.2573868036270142,297,1.0,1 +23797,15,0.0,2,1.709382176399231,298,0.0,1 +23798,15,1.0,2,2.0923776626586914,299,0.0,1 +23799,15,1.0,2,1.4433856010437012,300,1.0,1 +23800,15,1.0,2,1.5583840608596802,301,0.0,1 +23801,15,1.0,2,1.2633867263793945,302,0.0,1 +23802,15,0.0,2,1.9053796529769897,303,0.0,1 +23803,15,1.0,2,1.6743826866149902,304,1.0,1 +23804,15,1.0,2,1.3403868675231934,305,0.0,1 +23805,15,0.0,2,2.0213780403137207,306,0.0,1 +23806,15,0.0,2,1.9383792877197266,307,0.0,1 +23807,15,1.0,2,1.5993835926055908,308,0.0,1 +23808,15,0.0,2,1.5553841590881348,309,0.0,1 +23809,15,1.0,2,1.727381944656372,310,1.0,1 +23810,15,1.0,2,1.3153868913650513,311,1.0,1 +23811,15,0.0,2,1.2933868169784546,312,0.0,1 +23812,15,1.0,2,1.2553868293762207,313,0.0,1 +23813,15,1.0,2,1.3193869590759277,314,1.0,1 +23814,15,1.0,2,1.4653853178024292,315,1.0,1 +23815,15,0.0,2,1.5743838548660278,316,0.0,1 +23816,15,1.0,2,1.4283857345581055,317,0.0,1 +23817,15,1.0,2,1.8463804721832275,318,1.0,1 +23818,15,1.0,2,1.3133869171142578,319,1.0,1 +23819,15,1.0,2,1.5513842105865479,320,1.0,1 +23820,15,1.0,2,1.9243793487548828,321,0.0,1 +23821,15,1.0,2,1.6083834171295166,322,0.0,1 +23822,15,1.0,2,1.4113860130310059,323,0.0,1 +23823,15,0.0,2,1.775381326675415,324,0.0,1 +23824,15,1.0,2,1.3133869171142578,325,1.0,1 +23825,15,1.0,2,1.6523828506469727,326,1.0,1 +23826,15,1.0,2,1.303386926651001,327,1.0,1 +23827,15,1.0,2,1.44838547706604,328,1.0,1 +23828,15,1.0,2,1.447385549545288,329,0.0,1 +23829,15,0.0,2,1.4133859872817993,330,1.0,1 +23830,15,0.0,2,1.5273845195770264,331,0.0,1 +23831,15,0.0,2,1.2553868293762207,332,0.0,1 +23832,15,1.0,2,1.3683865070343018,333,1.0,1 +23833,15,1.0,2,1.2563867568969727,334,0.0,1 +23834,15,1.0,2,1.4863849878311157,335,0.0,1 +23835,15,0.0,2,1.7933810949325562,336,1.0,1 +23836,15,0.0,2,1.4643852710723877,337,0.0,1 +23837,15,1.0,2,1.3103868961334229,338,1.0,1 +23838,15,1.0,2,1.4323856830596924,339,0.0,1 +23839,15,0.0,2,1.231386661529541,340,1.0,1 +23840,15,0.0,2,1.3173868656158447,341,0.0,1 +23841,15,1.0,2,1.5893837213516235,342,0.0,1 +23842,15,0.0,2,1.303386926651001,343,1.0,1 +23843,15,0.0,2,1.870380163192749,344,0.0,1 +23844,15,0.0,2,1.8653801679611206,345,0.0,1 +23845,15,0.0,2,1.1513864994049072,346,0.0,1 +23846,15,1.0,2,1.7063822746276855,347,0.0,1 +23847,15,0.0,2,1.679382562637329,348,0.0,1 +23848,15,0.0,2,1.2443867921829224,349,1.0,1 +23849,15,0.0,2,1.4333857297897339,350,0.0,1 +23850,15,0.0,2,1.3453868627548218,351,1.0,1 +23851,15,0.0,2,1.2933868169784546,352,1.0,1 +23852,15,0.0,2,1.492384910583496,353,0.0,1 +23853,15,0.0,2,1.8033809661865234,354,0.0,1 +23854,15,0.0,2,1.3533867597579956,355,1.0,1 +23855,15,0.0,2,1.237386703491211,356,1.0,1 +23856,15,0.0,2,1.6373831033706665,357,0.0,1 +23857,15,0.0,2,1.4453855752944946,358,0.0,1 +23858,15,0.0,2,2.3563899993896484,359,0.0,1 +23859,15,1.0,2,1.478385090827942,360,1.0,1 +23860,15,1.0,2,1.328386902809143,361,0.0,1 +23861,15,1.0,2,1.6163833141326904,362,0.0,1 +23862,15,0.0,2,1.3163869380950928,363,0.0,1 +23863,15,1.0,2,1.6733826398849487,364,1.0,1 +23864,15,1.0,2,1.5733839273452759,365,1.0,1 +23865,15,1.0,2,1.2773867845535278,366,0.0,1 +23866,15,0.0,2,1.1983866691589355,367,0.0,1 +23867,15,1.0,2,1.3353869915008545,368,0.0,1 +23868,15,0.0,2,1.4333857297897339,369,0.0,1 +23869,15,0.0,2,1.9073796272277832,370,1.0,1 +23870,15,0.0,2,1.3333868980407715,371,0.0,1 +23871,15,0.0,2,1.8483803272247314,372,1.0,1 +23872,15,0.0,2,1.200386643409729,373,0.0,1 +23873,15,1.0,2,1.8093808889389038,374,1.0,1 +23874,15,1.0,2,1.5423842668533325,375,1.0,1 +23875,15,1.0,2,1.7003822326660156,376,0.0,1 +23876,15,1.0,2,1.422385811805725,377,1.0,1 +23877,15,0.0,2,1.679382562637329,378,0.0,1 +23878,15,1.0,2,1.5513842105865479,379,0.0,1 +23879,15,1.0,2,2.1723814010620117,380,0.0,1 +23880,15,1.0,2,1.404386043548584,381,0.0,1 +23881,15,1.0,2,1.634383201599121,382,1.0,1 +23882,15,1.0,2,1.422385811805725,383,1.0,1 +23883,15,1.0,2,1.4373856782913208,384,1.0,1 +23884,15,1.0,2,1.294386863708496,385,1.0,1 +23885,15,1.0,2,1.3463867902755737,386,0.0,1 +23886,15,0.0,2,1.4823850393295288,387,1.0,1 +23887,15,0.0,2,2.1183786392211914,388,0.0,1 +23888,15,0.0,2,1.4663852453231812,389,0.0,1 +23889,15,1.0,2,1.270386815071106,390,1.0,1 +23890,15,1.0,2,1.3473868370056152,391,1.0,1 +23891,15,1.0,2,1.7953810691833496,392,1.0,1 +23892,15,1.0,2,1.7293819189071655,393,0.0,1 +23893,15,1.0,2,2.313387870788574,394,1.0,1 +23894,15,0.0,2,2.047377824783325,395,0.0,1 +23895,15,1.0,2,1.4863849878311157,396,0.0,1 +23896,15,0.0,2,1.5303844213485718,397,1.0,1 +23897,15,0.0,2,1.408385992050171,398,1.0,1 +23898,15,0.0,2,1.2753868103027344,399,0.0,1 +23899,15,0.0,2,1.3143868446350098,400,0.0,1 +23900,15,1.0,2,1.5513842105865479,401,1.0,1 +23901,15,1.0,2,1.2653868198394775,402,1.0,1 +23902,15,1.0,2,1.3293869495391846,403,1.0,1 +23903,15,1.0,2,1.8873798847198486,404,1.0,1 +23904,15,1.0,2,1.3333868980407715,405,0.0,1 +23905,15,0.0,2,1.6703827381134033,406,0.0,1 +23906,15,0.0,2,1.5053848028182983,407,0.0,1 +23907,15,1.0,2,1.6543829441070557,408,0.0,1 +23908,15,1.0,2,1.426385760307312,409,1.0,1 +23909,15,1.0,2,1.2183866500854492,410,0.0,1 +23910,15,0.0,2,1.6313831806182861,411,0.0,1 +23911,15,1.0,2,1.3273868560791016,412,1.0,1 +23912,15,1.0,2,1.8343806266784668,413,0.0,1 +23913,15,0.0,2,1.4503854513168335,414,0.0,1 +23914,15,0.0,2,1.2093867063522339,415,0.0,1 +23915,15,1.0,2,1.6593828201293945,416,1.0,1 +23916,15,1.0,2,1.5973836183547974,417,1.0,1 +23917,15,1.0,2,1.6033835411071777,418,0.0,1 +23918,15,0.0,2,1.3433868885040283,419,1.0,1 +23919,15,0.0,2,1.2533867359161377,420,1.0,1 +23920,15,0.0,2,1.3683865070343018,421,1.0,1 +23921,15,0.0,2,1.7433817386627197,422,1.0,1 +23922,15,0.0,2,1.3763864040374756,423,0.0,1 +23923,15,1.0,2,1.9033796787261963,424,1.0,1 +23924,15,1.0,2,1.640383005142212,425,1.0,1 +23925,15,1.0,2,1.613383412361145,426,1.0,1 +23926,15,1.0,2,1.4633853435516357,427,0.0,1 +23927,15,0.0,2,1.492384910583496,428,1.0,1 +23928,15,0.0,2,2.014378309249878,429,0.0,1 +23929,15,0.0,2,1.6483829021453857,430,1.0,1 +23930,15,0.0,2,1.5563840866088867,431,0.0,1 +23931,15,0.0,2,1.3293869495391846,432,1.0,1 +23932,15,0.0,2,1.3673865795135498,433,0.0,1 +23933,15,1.0,2,2.1873819828033447,434,1.0,1 +23934,15,1.0,2,1.870380163192749,435,1.0,1 +23935,15,1.0,2,1.4403855800628662,436,0.0,1 +23936,15,1.0,2,1.5933836698532104,437,1.0,1 +23937,15,1.0,2,1.3333868980407715,438,1.0,1 +23938,15,1.0,2,1.5603840351104736,439,1.0,1 +23939,15,1.0,2,1.3443868160247803,440,0.0,1 +23940,15,0.0,2,1.916379451751709,441,0.0,1 +23941,15,0.0,2,1.4123859405517578,442,0.0,1 +23942,15,1.0,2,2.008378267288208,443,0.0,1 +23943,15,1.0,2,1.634383201599121,444,1.0,1 +23944,15,1.0,2,1.3363869190216064,445,1.0,1 +23945,15,1.0,2,1.3653866052627563,446,0.0,1 +23946,15,1.0,2,1.455385446548462,447,0.0,1 +23947,15,1.0,2,1.5633840560913086,448,0.0,1 +23948,15,0.0,2,1.1813865900039673,449,1.0,1 +23949,15,0.0,2,1.2423866987228394,450,1.0,1 +23950,15,0.0,2,1.2793867588043213,451,1.0,1 +23951,15,0.0,2,1.2873868942260742,452,0.0,1 +23952,15,0.0,2,1.3103868961334229,453,0.0,1 +23953,15,1.0,2,1.9863786697387695,454,1.0,1 +23954,15,1.0,2,1.5553841590881348,455,1.0,1 +23955,15,1.0,2,1.7133821249008179,456,0.0,1 +23956,15,0.0,2,1.234386682510376,457,0.0,1 +23957,15,1.0,2,1.6543829441070557,458,0.0,1 +23958,15,1.0,2,2.1623806953430176,459,0.0,1 +23959,15,1.0,2,2.0823774337768555,460,0.0,1 +23960,15,0.0,2,1.3403868675231934,461,0.0,1 +23961,15,0.0,2,1.566383957862854,462,0.0,1 +23962,15,0.0,2,1.378386378288269,463,0.0,1 +23963,15,1.0,2,2.1823816299438477,464,1.0,1 +23964,15,1.0,2,1.3543866872787476,465,0.0,1 +23965,15,0.0,2,1.4913849830627441,466,0.0,1 +23966,15,1.0,2,2.1123785972595215,467,1.0,1 +23967,15,0.0,2,1.1893866062164307,468,0.0,1 +23968,15,1.0,2,1.5283844470977783,469,1.0,1 +23969,15,1.0,2,1.5143846273422241,470,1.0,1 +23970,15,1.0,2,1.378386378288269,471,1.0,1 +23971,15,1.0,2,1.5573841333389282,472,1.0,1 +23972,15,1.0,2,1.6243832111358643,473,1.0,1 +23973,15,1.0,2,1.2583867311477661,474,1.0,1 +23974,15,1.0,2,1.7113821506500244,475,1.0,1 +23975,15,1.0,2,1.5423842668533325,476,1.0,1 +23976,15,1.0,2,1.735381841659546,477,0.0,1 +23977,15,1.0,2,1.9073796272277832,478,1.0,1 +23978,15,1.0,2,1.5153846740722656,479,0.0,1 +23979,15,1.0,2,1.304386854171753,480,0.0,1 +23980,15,0.0,2,1.5033848285675049,481,0.0,1 +23981,15,0.0,2,1.5243844985961914,482,0.0,1 +23982,15,1.0,2,1.9503791332244873,483,0.0,1 +23983,15,0.0,2,1.569383978843689,484,1.0,1 +23984,15,0.0,2,1.234386682510376,485,0.0,1 +23985,15,0.0,2,1.7513816356658936,486,0.0,1 +23986,15,0.0,2,1.4533854722976685,487,0.0,1 +23987,15,1.0,2,1.4403855800628662,488,0.0,1 +23988,15,0.0,2,1.562384009361267,489,1.0,1 +23989,15,0.0,2,1.4643852710723877,490,1.0,1 +23990,15,0.0,2,1.1833865642547607,491,0.0,1 +23991,15,0.0,2,1.3223868608474731,492,1.0,1 +23992,15,0.0,2,1.1683865785598755,493,1.0,1 +23993,15,0.0,2,1.2823867797851562,494,1.0,1 +23994,15,0.0,2,1.4013861417770386,495,1.0,1 +23995,15,0.0,2,1.4613853693008423,496,0.0,1 +23996,15,0.0,2,1.8903799057006836,497,0.0,1 +23997,15,0.0,2,1.378386378288269,498,1.0,1 +23998,15,0.0,2,1.5833837985992432,499,1.0,1 +23999,15,0.0,2,1.3583866357803345,500,1.0,1 +24000,16,1.0,0,2.4966249465942383,1,1.0,1 +24001,16,0.0,0,1.6936054229736328,2,1.0,1 +24002,16,0.0,0,1.1166108846664429,3,0.0,1 +24003,16,1.0,0,1.2676109075546265,4,1.0,1 +24004,16,1.0,0,1.3196102380752563,5,1.0,1 +24005,16,1.0,0,1.1646109819412231,6,1.0,1 +24006,16,1.0,0,1.4216089248657227,7,1.0,1 +24007,16,1.0,0,1.6126065254211426,8,0.0,1 +24008,16,1.0,0,1.5666069984436035,9,1.0,1 +24009,16,1.0,0,1.331610083580017,10,1.0,1 +24010,16,1.0,0,1.500607967376709,11,1.0,1 +24011,16,0.0,0,1.502607822418213,12,0.0,1 +24012,16,1.0,0,1.1146109104156494,13,1.0,1 +24013,16,1.0,0,1.6936054229736328,14,1.0,1 +24014,16,1.0,0,1.2906105518341064,15,1.0,1 +24015,16,0.0,0,1.2956105470657349,16,0.0,1 +24016,16,1.0,0,1.113610863685608,17,1.0,1 +24017,16,1.0,0,1.288610577583313,18,1.0,1 +24018,16,1.0,0,1.1896109580993652,19,1.0,1 +24019,16,1.0,0,1.3786094188690186,20,1.0,1 +24020,16,1.0,0,1.3436099290847778,21,1.0,1 +24021,16,1.0,0,1.519607663154602,22,1.0,1 +24022,16,1.0,0,1.4836081266403198,23,1.0,1 +24023,16,1.0,0,1.3076103925704956,24,1.0,1 +24024,16,1.0,0,1.2766107320785522,25,1.0,1 +24025,16,1.0,0,1.238611102104187,26,1.0,1 +24026,16,1.0,0,1.5696070194244385,27,1.0,1 +24027,16,1.0,0,1.3456099033355713,28,0.0,1 +24028,16,0.0,0,2.176609992980957,29,0.0,1 +24029,16,1.0,0,1.8386034965515137,30,0.0,1 +24030,16,1.0,0,2.0026016235351562,31,0.0,1 +24031,16,1.0,0,1.826603651046753,32,1.0,1 +24032,16,1.0,0,1.5376074314117432,33,1.0,1 +24033,16,1.0,0,1.1246109008789062,34,1.0,1 +24034,16,1.0,0,1.1736109256744385,35,1.0,1 +24035,16,1.0,0,1.2986104488372803,36,1.0,1 +24036,16,1.0,0,1.3666095733642578,37,1.0,1 +24037,16,1.0,0,1.549607276916504,38,1.0,1 +24038,16,1.0,0,1.3536098003387451,39,1.0,1 +24039,16,1.0,0,1.3346099853515625,40,1.0,1 +24040,16,1.0,0,1.4206088781356812,41,0.0,1 +24041,16,1.0,0,1.5876067876815796,42,1.0,1 +24042,16,1.0,0,1.167611002922058,43,1.0,1 +24043,16,1.0,0,1.424608826637268,44,1.0,1 +24044,16,1.0,0,1.2256110906600952,45,1.0,1 +24045,16,1.0,0,1.0946108102798462,46,1.0,1 +24046,16,1.0,0,1.1656110286712646,47,1.0,1 +24047,16,1.0,0,1.7496047019958496,48,1.0,1 +24048,16,1.0,0,1.1386109590530396,49,1.0,1 +24049,16,1.0,0,1.4956079721450806,50,1.0,1 +24050,16,1.0,0,1.358609676361084,51,1.0,1 +24051,16,1.0,0,1.3186101913452148,52,1.0,1 +24052,16,1.0,0,1.4816081523895264,53,1.0,1 +24053,16,1.0,0,1.8946027755737305,54,1.0,1 +24054,16,1.0,0,1.2716108560562134,55,1.0,1 +24055,16,1.0,0,1.2596110105514526,56,1.0,1 +24056,16,0.0,0,1.7466046810150146,57,0.0,1 +24057,16,1.0,0,1.6146063804626465,58,1.0,1 +24058,16,1.0,0,1.1786110401153564,59,0.0,1 +24059,16,1.0,0,1.266610860824585,60,1.0,1 +24060,16,1.0,0,1.2706108093261719,61,0.0,1 +24061,16,0.0,0,1.6766057014465332,62,0.0,1 +24062,16,1.0,0,1.9256024360656738,63,1.0,1 +24063,16,1.0,0,1.4236088991165161,64,1.0,1 +24064,16,1.0,0,1.5996066331863403,65,1.0,1 +24065,16,1.0,0,1.3676096200942993,66,0.0,1 +24066,16,0.0,0,1.3376100063323975,67,0.0,1 +24067,16,1.0,0,1.472608208656311,68,1.0,1 +24068,16,1.0,0,1.4926079511642456,69,1.0,1 +24069,16,1.0,0,1.310610294342041,70,0.0,1 +24070,16,1.0,0,1.262610912322998,71,1.0,1 +24071,16,1.0,0,1.2156111001968384,72,1.0,1 +24072,16,1.0,0,1.317610263824463,73,1.0,1 +24073,16,1.0,0,1.4576084613800049,74,1.0,1 +24074,16,1.0,0,1.7386047840118408,75,0.0,1 +24075,16,1.0,0,1.9866015911102295,76,1.0,1 +24076,16,1.0,0,1.519607663154602,77,1.0,1 +24077,16,1.0,0,1.5686070919036865,78,1.0,1 +24078,16,1.0,0,1.3776094913482666,79,0.0,1 +24079,16,1.0,0,1.773604393005371,80,1.0,1 +24080,16,1.0,0,1.2766107320785522,81,1.0,1 +24081,16,1.0,0,1.6046066284179688,82,1.0,1 +24082,16,1.0,0,1.6796056032180786,83,1.0,1 +24083,16,1.0,0,1.26961088180542,84,1.0,1 +24084,16,1.0,0,1.2576110363006592,85,1.0,1 +24085,16,1.0,0,1.1116108894348145,86,1.0,1 +24086,16,1.0,0,1.2406110763549805,87,1.0,1 +24087,16,1.0,0,1.2206110954284668,88,0.0,1 +24088,16,1.0,0,2.2926154136657715,89,1.0,1 +24089,16,1.0,0,1.4266088008880615,90,0.0,1 +24090,16,1.0,0,1.3676096200942993,91,0.0,1 +24091,16,1.0,0,1.8936028480529785,92,1.0,1 +24092,16,1.0,0,1.2216110229492188,93,1.0,1 +24093,16,1.0,0,1.6486060619354248,94,1.0,1 +24094,16,1.0,0,1.3856093883514404,95,1.0,1 +24095,16,1.0,0,1.5626070499420166,96,1.0,1 +24096,16,1.0,0,1.9416022300720215,97,1.0,1 +24097,16,1.0,0,1.9856016635894775,98,1.0,1 +24098,16,1.0,0,1.20461106300354,99,0.0,1 +24099,16,1.0,0,1.5386073589324951,100,0.0,1 +24100,16,0.0,0,1.2726107835769653,101,0.0,1 +24101,16,1.0,0,1.7236050367355347,102,1.0,1 +24102,16,1.0,0,1.72660493850708,103,1.0,1 +24103,16,1.0,0,1.59360671043396,104,1.0,1 +24104,16,1.0,0,1.1916110515594482,105,1.0,1 +24105,16,1.0,0,1.4266088008880615,106,1.0,1 +24106,16,1.0,0,1.4406086206436157,107,1.0,1 +24107,16,1.0,0,1.2026110887527466,108,0.0,1 +24108,16,1.0,0,1.3116103410720825,109,1.0,1 +24109,16,1.0,0,1.1616109609603882,110,1.0,1 +24110,16,1.0,0,1.6986052989959717,111,1.0,1 +24111,16,1.0,0,1.354609727859497,112,1.0,1 +24112,16,1.0,0,1.2766107320785522,113,1.0,1 +24113,16,1.0,0,1.633606195449829,114,0.0,1 +24114,16,1.0,0,1.3726094961166382,115,1.0,1 +24115,16,1.0,0,1.1646109819412231,116,1.0,1 +24116,16,1.0,0,1.3026103973388672,117,1.0,1 +24117,16,1.0,0,1.1116108894348145,118,1.0,1 +24118,16,1.0,0,1.6546058654785156,119,1.0,1 +24119,16,1.0,0,1.376609444618225,120,1.0,1 +24120,16,1.0,0,1.2186111211776733,121,1.0,1 +24121,16,1.0,0,1.2756108045578003,122,1.0,1 +24122,16,1.0,0,2.144608497619629,123,1.0,1 +24123,16,1.0,0,1.2766107320785522,124,1.0,1 +24124,16,1.0,0,1.2436110973358154,125,1.0,1 +24125,16,1.0,0,1.1846109628677368,126,1.0,1 +24126,16,1.0,0,1.201611042022705,127,1.0,1 +24127,16,1.0,0,1.1666109561920166,128,1.0,1 +24128,16,1.0,0,1.291610598564148,129,0.0,1 +24129,16,0.0,0,1.2606109380722046,130,0.0,1 +24130,16,1.0,0,1.7166051864624023,131,0.0,1 +24131,16,0.0,0,1.358609676361084,132,0.0,1 +24132,16,0.0,0,1.2466111183166504,133,0.0,1 +24133,16,1.0,0,1.8056039810180664,134,1.0,1 +24134,16,1.0,0,1.4456086158752441,135,0.0,1 +24135,16,0.0,0,1.9046027660369873,136,0.0,1 +24136,16,1.0,0,2.116607189178467,137,0.0,1 +24137,16,1.0,0,1.3936092853546143,138,1.0,1 +24138,16,1.0,0,1.5256075859069824,139,1.0,1 +24139,16,1.0,0,1.6686058044433594,140,1.0,1 +24140,16,1.0,0,1.4146089553833008,141,0.0,1 +24141,16,0.0,0,1.500607967376709,142,0.0,1 +24142,16,0.0,0,1.2156111001968384,143,0.0,1 +24143,16,1.0,0,1.4266088008880615,144,1.0,1 +24144,16,1.0,0,1.6666057109832764,145,1.0,1 +24145,16,1.0,0,1.1916110515594482,146,1.0,1 +24146,16,1.0,0,1.3506097793579102,147,0.0,1 +24147,16,1.0,0,1.4926079511642456,148,1.0,1 +24148,16,1.0,0,1.332610011100769,149,1.0,1 +24149,16,1.0,0,1.4516085386276245,150,1.0,1 +24150,16,1.0,0,1.1846109628677368,151,1.0,1 +24151,16,1.0,0,1.5626070499420166,152,0.0,1 +24152,16,1.0,0,1.4486085176467896,153,1.0,1 +24153,16,1.0,0,1.3746094703674316,154,0.0,1 +24154,16,0.0,0,1.208611011505127,155,0.0,1 +24155,16,0.0,0,1.5786068439483643,156,0.0,1 +24156,16,1.0,0,1.6726057529449463,157,1.0,1 +24157,16,1.0,0,1.7156051397323608,158,1.0,1 +24158,16,1.0,0,1.3086103200912476,159,1.0,1 +24159,16,1.0,0,1.3916093111038208,160,1.0,1 +24160,16,1.0,0,1.358609676361084,161,1.0,1 +24161,16,1.0,0,1.3466098308563232,162,0.0,1 +24162,16,1.0,0,1.2826106548309326,163,1.0,1 +24163,16,1.0,0,1.6496059894561768,164,1.0,1 +24164,16,1.0,0,1.170611023902893,165,1.0,1 +24165,16,1.0,0,1.3476098775863647,166,1.0,1 +24166,16,1.0,0,1.3716095685958862,167,1.0,1 +24167,16,1.0,0,1.991601586341858,168,1.0,1 +24168,16,1.0,0,1.3126102685928345,169,1.0,1 +24169,16,1.0,0,1.6246063709259033,170,1.0,1 +24170,16,1.0,0,1.362609624862671,171,1.0,1 +24171,16,1.0,0,1.476608157157898,172,1.0,1 +24172,16,1.0,0,1.2206110954284668,173,1.0,1 +24173,16,1.0,0,1.4706082344055176,174,1.0,1 +24174,16,1.0,0,1.2196110486984253,175,1.0,1 +24175,16,1.0,0,1.1266108751296997,176,0.0,1 +24176,16,1.0,0,1.3446098566055298,177,0.0,1 +24177,16,1.0,0,1.3006104230880737,178,1.0,1 +24178,16,0.0,0,1.4156090021133423,179,0.0,1 +24179,16,1.0,0,1.5646071434020996,180,1.0,1 +24180,16,1.0,0,1.5176076889038086,181,1.0,1 +24181,16,1.0,0,1.6496059894561768,182,1.0,1 +24182,16,1.0,0,1.3126102685928345,183,1.0,1 +24183,16,1.0,0,1.4816081523895264,184,1.0,1 +24184,16,1.0,0,1.357609748840332,185,1.0,1 +24185,16,1.0,0,1.9946014881134033,186,0.0,1 +24186,16,1.0,0,1.5626070499420166,187,1.0,1 +24187,16,1.0,0,1.5586071014404297,188,1.0,1 +24188,16,1.0,0,1.3726094961166382,189,0.0,1 +24189,16,1.0,0,1.1986110210418701,190,1.0,1 +24190,16,1.0,0,1.9156025648117065,191,1.0,1 +24191,16,1.0,0,1.3076103925704956,192,1.0,1 +24192,16,1.0,0,1.4166089296340942,193,1.0,1 +24193,16,1.0,0,1.3536098003387451,194,1.0,1 +24194,16,1.0,0,1.3216102123260498,195,1.0,1 +24195,16,1.0,0,1.2456111907958984,196,1.0,1 +24196,16,1.0,0,1.4556084871292114,197,0.0,1 +24197,16,1.0,0,1.4996079206466675,198,1.0,1 +24198,16,1.0,0,1.4356087446212769,199,1.0,1 +24199,16,1.0,0,1.2156111001968384,200,0.0,1 +24200,16,1.0,0,2.2496132850646973,201,1.0,1 +24201,16,1.0,0,1.1966110467910767,202,1.0,1 +24202,16,1.0,0,1.201611042022705,203,1.0,1 +24203,16,1.0,0,1.1386109590530396,204,1.0,1 +24204,16,1.0,0,1.2216110229492188,205,1.0,1 +24205,16,1.0,0,1.6676057577133179,206,1.0,1 +24206,16,1.0,0,1.4896080493927002,207,0.0,1 +24207,16,0.0,0,1.336609959602356,208,0.0,1 +24208,16,0.0,0,1.588606834411621,209,0.0,1 +24209,16,1.0,0,2.0146021842956543,210,1.0,1 +24210,16,1.0,0,1.7646045684814453,211,1.0,1 +24211,16,1.0,0,1.361609697341919,212,1.0,1 +24212,16,1.0,0,1.4636083841323853,213,1.0,1 +24213,16,1.0,0,1.5296075344085693,214,1.0,1 +24214,16,1.0,0,1.8546032905578613,215,1.0,1 +24215,16,1.0,0,1.2096110582351685,216,1.0,1 +24216,16,1.0,0,2.5756285190582275,217,1.0,1 +24217,16,1.0,0,1.450608491897583,218,1.0,1 +24218,16,1.0,0,2.0006017684936523,219,1.0,1 +24219,16,1.0,0,1.4296088218688965,220,1.0,1 +24220,16,1.0,0,1.4046090841293335,221,1.0,1 +24221,16,1.0,0,1.5306074619293213,222,1.0,1 +24222,16,1.0,0,1.1476109027862549,223,1.0,1 +24223,16,0.0,0,1.265610933303833,224,0.0,1 +24224,16,1.0,0,1.4846080541610718,225,1.0,1 +24225,16,1.0,0,1.361609697341919,226,1.0,1 +24226,16,1.0,0,1.2526110410690308,227,0.0,1 +24227,16,1.0,0,2.3086161613464355,228,1.0,1 +24228,16,1.0,0,1.3706095218658447,229,1.0,1 +24229,16,1.0,0,1.3776094913482666,230,1.0,1 +24230,16,1.0,0,1.7006053924560547,231,0.0,1 +24231,16,1.0,0,1.8446035385131836,232,1.0,1 +24232,16,1.0,0,1.6326062679290771,233,1.0,1 +24233,16,1.0,0,1.4996079206466675,234,1.0,1 +24234,16,1.0,0,1.2946105003356934,235,1.0,1 +24235,16,1.0,0,1.380609393119812,236,1.0,1 +24236,16,1.0,0,1.7126052379608154,237,0.0,1 +24237,16,1.0,0,1.3336100578308105,238,0.0,1 +24238,16,0.0,0,1.5166077613830566,239,0.0,1 +24239,16,0.0,0,1.685605525970459,240,0.0,1 +24240,16,1.0,0,1.1316108703613281,241,0.0,1 +24241,16,1.0,0,1.4116090536117554,242,1.0,1 +24242,16,1.0,0,1.2736108303070068,243,1.0,1 +24243,16,1.0,0,1.5646071434020996,244,1.0,1 +24244,16,1.0,0,1.5146076679229736,245,1.0,1 +24245,16,1.0,0,1.6066064834594727,246,1.0,1 +24246,16,1.0,0,1.7406048774719238,247,1.0,1 +24247,16,1.0,0,1.2266111373901367,248,1.0,1 +24248,16,1.0,0,1.4126089811325073,249,1.0,1 +24249,16,1.0,0,1.4006091356277466,250,1.0,1 +24250,16,1.0,0,1.2216110229492188,251,1.0,1 +24251,16,1.0,0,2.0196025371551514,252,1.0,1 +24252,16,1.0,0,1.4956079721450806,253,0.0,1 +24253,16,1.0,0,1.1586109399795532,254,1.0,1 +24254,16,1.0,0,1.3636096715927124,255,1.0,1 +24255,16,1.0,0,1.6646058559417725,256,0.0,1 +24256,16,0.0,0,1.6516059637069702,257,1.0,1 +24257,16,0.0,0,1.5056078433990479,258,0.0,1 +24258,16,1.0,0,2.6136302947998047,259,1.0,1 +24259,16,1.0,0,1.2676109075546265,260,1.0,1 +24260,16,1.0,0,1.1796109676361084,261,1.0,1 +24261,16,1.0,0,1.3156102895736694,262,1.0,1 +24262,16,1.0,0,1.72660493850708,263,1.0,1 +24263,16,1.0,0,1.4516085386276245,264,1.0,1 +24264,16,1.0,0,1.2956105470657349,265,1.0,1 +24265,16,1.0,0,1.3726094961166382,266,0.0,1 +24266,16,0.0,0,2.666632652282715,267,0.0,1 +24267,16,1.0,0,1.1246109008789062,268,1.0,1 +24268,16,1.0,0,1.548607349395752,269,1.0,1 +24269,16,1.0,0,1.9636019468307495,270,1.0,1 +24270,16,1.0,0,1.3956092596054077,271,1.0,1 +24271,16,0.0,0,1.4236088991165161,272,0.0,1 +24272,16,1.0,0,2.180610179901123,273,0.0,1 +24273,16,0.0,0,1.2286111116409302,274,0.0,1 +24274,16,1.0,0,1.6006066799163818,275,1.0,1 +24275,16,1.0,0,1.3346099853515625,276,1.0,1 +24276,16,1.0,0,1.40260910987854,277,1.0,1 +24277,16,1.0,0,1.4086090326309204,278,1.0,1 +24278,16,1.0,0,1.16861093044281,279,1.0,1 +24279,16,1.0,0,1.2516111135482788,280,1.0,1 +24280,16,1.0,0,1.5916067361831665,281,1.0,1 +24281,16,1.0,0,1.2276110649108887,282,1.0,1 +24282,16,1.0,0,1.9986015558242798,283,1.0,1 +24283,16,1.0,0,1.5546071529388428,284,1.0,1 +24284,16,1.0,0,1.3346099853515625,285,1.0,1 +24285,16,1.0,0,1.317610263824463,286,1.0,1 +24286,16,1.0,0,1.3196102380752563,287,1.0,1 +24287,16,1.0,0,1.3926092386245728,288,1.0,1 +24288,16,1.0,0,1.4266088008880615,289,1.0,1 +24289,16,1.0,0,1.4826080799102783,290,0.0,1 +24290,16,1.0,0,1.9506020545959473,291,0.0,1 +24291,16,0.0,0,1.3486098051071167,292,1.0,1 +24292,16,0.0,0,1.3946092128753662,293,0.0,1 +24293,16,0.0,0,1.5266075134277344,294,1.0,1 +24294,16,0.0,0,1.2736108303070068,295,0.0,1 +24295,16,1.0,0,1.4626083374023438,296,1.0,1 +24296,16,1.0,0,1.232611060142517,297,1.0,1 +24297,16,1.0,0,1.7956041097640991,298,0.0,1 +24298,16,0.0,0,1.8156038522720337,299,0.0,1 +24299,16,0.0,0,1.449608564376831,300,0.0,1 +24300,16,1.0,0,1.5306074619293213,301,1.0,1 +24301,16,1.0,0,1.2896106243133545,302,1.0,1 +24302,16,1.0,0,1.8096039295196533,303,1.0,1 +24303,16,1.0,0,1.3196102380752563,304,1.0,1 +24304,16,1.0,0,1.357609748840332,305,1.0,1 +24305,16,1.0,0,1.4916080236434937,306,1.0,1 +24306,16,1.0,0,1.3246101140975952,307,1.0,1 +24307,16,1.0,0,1.1556109189987183,308,1.0,1 +24308,16,1.0,0,1.1606109142303467,309,1.0,1 +24309,16,1.0,0,2.0376033782958984,310,1.0,1 +24310,16,1.0,0,1.4516085386276245,311,1.0,1 +24311,16,1.0,0,1.4516085386276245,312,1.0,1 +24312,16,1.0,0,1.1626110076904297,313,1.0,1 +24313,16,1.0,0,1.1606109142303467,314,0.0,1 +24314,16,1.0,0,1.4596084356307983,315,1.0,1 +24315,16,1.0,0,2.0826053619384766,316,1.0,1 +24316,16,1.0,0,1.2396111488342285,317,1.0,1 +24317,16,1.0,0,2.195610761642456,318,1.0,1 +24318,16,1.0,0,1.3986091613769531,319,1.0,1 +24319,16,1.0,0,1.2746107578277588,320,1.0,1 +24320,16,1.0,0,1.4876080751419067,321,1.0,1 +24321,16,0.0,0,1.3786094188690186,322,0.0,1 +24322,16,1.0,0,1.7216050624847412,323,1.0,1 +24323,16,1.0,0,1.2806106805801392,324,0.0,1 +24324,16,1.0,0,1.8976027965545654,325,1.0,1 +24325,16,1.0,0,1.4236088991165161,326,1.0,1 +24326,16,1.0,0,1.7056052684783936,327,1.0,1 +24327,16,1.0,0,1.6496059894561768,328,0.0,1 +24328,16,0.0,0,1.6006066799163818,329,0.0,1 +24329,16,0.0,0,1.5286076068878174,330,0.0,1 +24330,16,1.0,0,2.3166165351867676,331,1.0,1 +24331,16,1.0,0,1.5306074619293213,332,1.0,1 +24332,16,1.0,0,1.1156108379364014,333,1.0,1 +24333,16,1.0,0,1.2976105213165283,334,1.0,1 +24334,16,1.0,0,1.8496034145355225,335,0.0,1 +24335,16,0.0,0,2.5596277713775635,336,0.0,1 +24336,16,1.0,0,1.8716031312942505,337,1.0,1 +24337,16,1.0,0,1.826603651046753,338,0.0,1 +24338,16,0.0,0,1.2726107835769653,339,0.0,1 +24339,16,1.0,0,1.4206088781356812,340,1.0,1 +24340,16,1.0,0,1.143610954284668,341,1.0,1 +24341,16,1.0,0,1.291610598564148,342,1.0,1 +24342,16,1.0,0,1.9866015911102295,343,1.0,1 +24343,16,1.0,0,1.641606092453003,344,0.0,1 +24344,16,0.0,0,2.0546040534973145,345,0.0,1 +24345,16,0.0,0,1.2726107835769653,346,0.0,1 +24346,16,1.0,0,1.9856016635894775,347,1.0,1 +24347,16,1.0,0,1.3446098566055298,348,1.0,1 +24348,16,1.0,0,1.3276101350784302,349,1.0,1 +24349,16,1.0,0,1.5096077919006348,350,0.0,1 +24350,16,1.0,0,1.7176051139831543,351,1.0,1 +24351,16,1.0,0,1.8336036205291748,352,1.0,1 +24352,16,1.0,0,1.542607307434082,353,1.0,1 +24353,16,1.0,0,1.3776094913482666,354,1.0,1 +24354,16,1.0,0,1.1856110095977783,355,1.0,1 +24355,16,1.0,0,1.3666095733642578,356,1.0,1 +24356,16,1.0,0,1.2186111211776733,357,1.0,1 +24357,16,1.0,0,1.4266088008880615,358,1.0,1 +24358,16,1.0,0,1.18061101436615,359,1.0,1 +24359,16,1.0,0,1.1296108961105347,360,1.0,1 +24360,16,1.0,0,1.3676096200942993,361,0.0,1 +24361,16,1.0,0,1.5406074523925781,362,1.0,1 +24362,16,0.0,0,1.4846080541610718,363,0.0,1 +24363,16,1.0,0,1.7646045684814453,364,1.0,1 +24364,16,1.0,0,1.4476085901260376,365,1.0,1 +24365,16,1.0,0,1.1936110258102417,366,1.0,1 +24366,16,1.0,0,1.4616084098815918,367,0.0,1 +24367,16,0.0,0,1.205610990524292,368,0.0,1 +24368,16,1.0,0,2.0226025581359863,369,1.0,1 +24369,16,1.0,0,1.1736109256744385,370,1.0,1 +24370,16,1.0,0,1.6426060199737549,371,0.0,1 +24371,16,1.0,0,1.688605546951294,372,1.0,1 +24372,16,1.0,0,1.336609959602356,373,0.0,1 +24373,16,0.0,0,1.1846109628677368,374,0.0,1 +24374,16,0.0,0,1.262610912322998,375,0.0,1 +24375,16,1.0,0,1.4916080236434937,376,0.0,1 +24376,16,0.0,0,1.2306110858917236,377,0.0,1 +24377,16,1.0,0,1.6186063289642334,378,1.0,1 +24378,16,1.0,0,1.497607946395874,379,1.0,1 +24379,16,1.0,0,1.8176038265228271,380,1.0,1 +24380,16,1.0,0,1.3496098518371582,381,0.0,1 +24381,16,0.0,0,1.232611060142517,382,0.0,1 +24382,16,0.0,0,1.5846068859100342,383,0.0,1 +24383,16,1.0,0,1.773604393005371,384,1.0,1 +24384,16,1.0,0,1.5066077709197998,385,1.0,1 +24385,16,1.0,0,1.1826109886169434,386,1.0,1 +24386,16,1.0,0,1.1256108283996582,387,1.0,1 +24387,16,1.0,0,1.4256088733673096,388,1.0,1 +24388,16,1.0,0,1.8396035432815552,389,1.0,1 +24389,16,1.0,0,1.314610242843628,390,1.0,1 +24390,16,1.0,0,1.244611144065857,391,1.0,1 +24391,16,0.0,0,1.2766107320785522,392,0.0,1 +24392,16,1.0,0,1.2746107578277588,393,1.0,1 +24393,16,1.0,0,1.3216102123260498,394,1.0,1 +24394,16,1.0,0,1.1966110467910767,395,1.0,1 +24395,16,1.0,0,1.634606122970581,396,1.0,1 +24396,16,1.0,0,1.2896106243133545,397,1.0,1 +24397,16,1.0,0,1.2196110486984253,398,1.0,1 +24398,16,1.0,0,1.4586083889007568,399,1.0,1 +24399,16,1.0,0,1.498607873916626,400,1.0,1 +24400,16,1.0,0,1.1846109628677368,401,1.0,1 +24401,16,1.0,0,1.3726094961166382,402,0.0,1 +24402,16,1.0,0,1.891602873802185,403,1.0,1 +24403,16,1.0,0,1.8426034450531006,404,1.0,1 +24404,16,1.0,0,1.4806081056594849,405,1.0,1 +24405,16,1.0,0,1.1166108846664429,406,0.0,1 +24406,16,1.0,0,1.6736056804656982,407,1.0,1 +24407,16,1.0,0,1.6776056289672852,408,1.0,1 +24408,16,1.0,0,2.5936293601989746,409,1.0,1 +24409,16,1.0,0,1.306610345840454,410,1.0,1 +24410,16,1.0,0,1.2176110744476318,411,1.0,1 +24411,16,1.0,0,1.1946110725402832,412,0.0,1 +24412,16,1.0,0,1.4656083583831787,413,1.0,1 +24413,16,1.0,0,1.6496059894561768,414,1.0,1 +24414,16,1.0,0,1.1096107959747314,415,1.0,1 +24415,16,1.0,0,1.2456111907958984,416,1.0,1 +24416,16,1.0,0,1.6926054954528809,417,1.0,1 +24417,16,1.0,0,1.4226088523864746,418,0.0,1 +24418,16,1.0,0,1.37960946559906,419,1.0,1 +24419,16,1.0,0,1.4626083374023438,420,1.0,1 +24420,16,1.0,0,1.1696109771728516,421,1.0,1 +24421,16,1.0,0,1.7136051654815674,422,1.0,1 +24422,16,1.0,0,1.9776017665863037,423,1.0,1 +24423,16,1.0,0,1.479608178138733,424,1.0,1 +24424,16,1.0,0,2.0346031188964844,425,0.0,1 +24425,16,0.0,0,1.5386073589324951,426,0.0,1 +24426,16,0.0,0,1.4456086158752441,427,0.0,1 +24427,16,0.0,0,1.4586083889007568,428,0.0,1 +24428,16,1.0,0,2.2456130981445312,429,1.0,1 +24429,16,1.0,0,1.3636096715927124,430,1.0,1 +24430,16,1.0,0,1.3456099033355713,431,0.0,1 +24431,16,0.0,0,1.0986108779907227,432,0.0,1 +24432,16,1.0,0,1.201611042022705,433,1.0,1 +24433,16,1.0,0,1.0836107730865479,434,1.0,1 +24434,16,1.0,0,1.7716044187545776,435,1.0,1 +24435,16,1.0,0,1.3926092386245728,436,1.0,1 +24436,16,1.0,0,1.3276101350784302,437,0.0,1 +24437,16,1.0,0,1.5166077613830566,438,1.0,1 +24438,16,0.0,0,1.6616058349609375,439,0.0,1 +24439,16,1.0,0,1.4876080751419067,440,1.0,1 +24440,16,1.0,0,1.332610011100769,441,1.0,1 +24441,16,1.0,0,1.4676083326339722,442,1.0,1 +24442,16,1.0,0,1.405609130859375,443,1.0,1 +24443,16,1.0,0,1.6746056079864502,444,1.0,1 +24444,16,1.0,0,1.3346099853515625,445,0.0,1 +24445,16,1.0,0,1.594606637954712,446,1.0,1 +24446,16,1.0,0,1.2516111135482788,447,0.0,1 +24447,16,1.0,0,1.6096065044403076,448,1.0,1 +24448,16,1.0,0,1.5976066589355469,449,1.0,1 +24449,16,1.0,0,1.2426111698150635,450,1.0,1 +24450,16,1.0,0,1.3246101140975952,451,1.0,1 +24451,16,1.0,0,1.2786107063293457,452,1.0,1 +24452,16,1.0,0,1.2946105003356934,453,1.0,1 +24453,16,1.0,0,1.3496098518371582,454,1.0,1 +24454,16,1.0,0,1.2186111211776733,455,1.0,1 +24455,16,1.0,0,1.4696083068847656,456,1.0,1 +24456,16,1.0,0,1.1586109399795532,457,0.0,1 +24457,16,0.0,0,1.0886107683181763,458,0.0,1 +24458,16,0.0,0,2.0986061096191406,459,0.0,1 +24459,16,0.0,0,1.6686058044433594,460,1.0,1 +24460,16,0.0,0,1.383609414100647,461,0.0,1 +24461,16,1.0,0,1.73260498046875,462,1.0,1 +24462,16,1.0,0,1.6266062259674072,463,1.0,1 +24463,16,1.0,0,1.266610860824585,464,1.0,1 +24464,16,1.0,0,1.3416099548339844,465,1.0,1 +24465,16,1.0,0,1.1986110210418701,466,1.0,1 +24466,16,1.0,0,1.2816107273101807,467,1.0,1 +24467,16,1.0,0,1.4176089763641357,468,1.0,1 +24468,16,1.0,0,1.7686045169830322,469,1.0,1 +24469,16,1.0,0,1.5246076583862305,470,1.0,1 +24470,16,1.0,0,1.3056104183197021,471,1.0,1 +24471,16,1.0,0,2.200611114501953,472,1.0,1 +24472,16,1.0,0,1.314610242843628,473,1.0,1 +24473,16,1.0,0,1.1616109609603882,474,1.0,1 +24474,16,1.0,0,1.1456109285354614,475,1.0,1 +24475,16,1.0,0,1.262610912322998,476,1.0,1 +24476,16,1.0,0,1.3426098823547363,477,1.0,1 +24477,16,0.0,0,1.201611042022705,478,0.0,1 +24478,16,1.0,0,1.4196089506149292,479,1.0,1 +24479,16,1.0,0,1.589606761932373,480,1.0,1 +24480,16,1.0,0,2.460623264312744,481,0.0,1 +24481,16,1.0,0,1.9926016330718994,482,1.0,1 +24482,16,1.0,0,1.7936041355133057,483,1.0,1 +24483,16,1.0,0,1.4486085176467896,484,1.0,1 +24484,16,1.0,0,1.7026052474975586,485,0.0,1 +24485,16,0.0,0,1.232611060142517,486,0.0,1 +24486,16,1.0,0,1.3916093111038208,487,1.0,1 +24487,16,1.0,0,2.672633171081543,488,1.0,1 +24488,16,1.0,0,1.314610242843628,489,0.0,1 +24489,16,0.0,0,2.23161244392395,490,0.0,1 +24490,16,0.0,0,1.7276049852371216,491,0.0,1 +24491,16,1.0,0,2.652632236480713,492,1.0,1 +24492,16,1.0,0,1.4656083583831787,493,1.0,1 +24493,16,1.0,0,1.2796107530593872,494,1.0,1 +24494,16,1.0,0,1.5586071014404297,495,1.0,1 +24495,16,1.0,0,1.1206108331680298,496,1.0,1 +24496,16,1.0,0,1.663605809211731,497,1.0,1 +24497,16,1.0,0,1.1666109561920166,498,1.0,1 +24498,16,1.0,0,1.5036078691482544,499,0.0,1 +24499,16,0.0,0,1.6126065254211426,500,0.0,1 +24500,16,1.0,1,1.7186050415039062,1,0.0,1 +24501,16,0.0,1,1.2586109638214111,2,1.0,1 +24502,16,0.0,1,1.265610933303833,3,0.0,1 +24503,16,0.0,1,1.7966041564941406,4,0.0,1 +24504,16,1.0,1,2.0296030044555664,5,0.0,1 +24505,16,1.0,1,1.3006104230880737,6,1.0,1 +24506,16,1.0,1,1.4436086416244507,7,1.0,1 +24507,16,0.0,1,1.0876108407974243,8,0.0,1 +24508,16,1.0,1,1.5106077194213867,9,0.0,1 +24509,16,1.0,1,1.7876042127609253,10,1.0,1 +24510,16,1.0,1,1.5536072254180908,11,0.0,1 +24511,16,1.0,1,1.3826093673706055,12,1.0,1 +24512,16,1.0,1,1.2226110696792603,13,1.0,1 +24513,16,1.0,1,1.5586071014404297,14,0.0,1 +24514,16,0.0,1,1.1916110515594482,15,0.0,1 +24515,16,0.0,1,2.0996062755584717,16,0.0,1 +24516,16,1.0,1,1.7836042642593384,17,1.0,1 +24517,16,1.0,1,1.1866110563278198,18,1.0,1 +24518,16,1.0,1,1.149610996246338,19,1.0,1 +24519,16,1.0,1,1.1876109838485718,20,1.0,1 +24520,16,1.0,1,1.3756095170974731,21,1.0,1 +24521,16,1.0,1,1.6536059379577637,22,1.0,1 +24522,16,1.0,1,1.3346099853515625,23,1.0,1 +24523,16,1.0,1,1.8386034965515137,24,1.0,1 +24524,16,1.0,1,1.5106077194213867,25,0.0,1 +24525,16,1.0,1,1.6476060152053833,26,1.0,1 +24526,16,1.0,1,1.1976110935211182,27,1.0,1 +24527,16,1.0,1,1.7716044187545776,28,1.0,1 +24528,16,1.0,1,1.4436086416244507,29,1.0,1 +24529,16,1.0,1,1.6486060619354248,30,1.0,1 +24530,16,1.0,1,2.0066018104553223,31,1.0,1 +24531,16,1.0,1,1.2306110858917236,32,1.0,1 +24532,16,1.0,1,1.7176051139831543,33,1.0,1 +24533,16,1.0,1,1.266610860824585,34,1.0,1 +24534,16,1.0,1,1.3426098823547363,35,0.0,1 +24535,16,0.0,1,1.3876093626022339,36,0.0,1 +24536,16,0.0,1,1.965601921081543,37,0.0,1 +24537,16,0.0,1,1.6776056289672852,38,0.0,1 +24538,16,1.0,1,1.6836055517196655,39,1.0,1 +24539,16,1.0,1,1.313610315322876,40,1.0,1 +24540,16,1.0,1,1.4086090326309204,41,1.0,1 +24541,16,1.0,1,2.3296170234680176,42,1.0,1 +24542,16,1.0,1,1.4076091051101685,43,1.0,1 +24543,16,1.0,1,1.1906110048294067,44,0.0,1 +24544,16,0.0,1,2.674633026123047,45,0.0,1 +24545,16,1.0,1,1.895602822303772,46,1.0,1 +24546,16,1.0,1,1.3496098518371582,47,1.0,1 +24547,16,1.0,1,1.2146110534667969,48,1.0,1 +24548,16,0.0,1,2.1186070442199707,49,0.0,1 +24549,16,0.0,1,2.0416035652160645,50,0.0,1 +24550,16,1.0,1,1.3656096458435059,51,0.0,1 +24551,16,1.0,1,1.6256062984466553,52,0.0,1 +24552,16,1.0,1,1.6396061182022095,53,0.0,1 +24553,16,1.0,1,1.914602518081665,54,1.0,1 +24554,16,1.0,1,1.3996092081069946,55,0.0,1 +24555,16,0.0,1,2.0686049461364746,56,1.0,1 +24556,16,0.0,1,1.1096107959747314,57,1.0,1 +24557,16,0.0,1,1.8946027755737305,58,0.0,1 +24558,16,1.0,1,1.4086090326309204,59,1.0,1 +24559,16,1.0,1,1.868603229522705,60,1.0,1 +24560,16,1.0,1,1.2686108350753784,61,0.0,1 +24561,16,0.0,1,1.6316062211990356,62,0.0,1 +24562,16,1.0,1,1.1946110725402832,63,1.0,1 +24563,16,1.0,1,2.146608352661133,64,1.0,1 +24564,16,1.0,1,1.4136090278625488,65,1.0,1 +24565,16,1.0,1,1.3076103925704956,66,1.0,1 +24566,16,1.0,1,1.1096107959747314,67,0.0,1 +24567,16,0.0,1,1.4676083326339722,68,0.0,1 +24568,16,1.0,1,1.1856110095977783,69,1.0,1 +24569,16,1.0,1,1.3276101350784302,70,1.0,1 +24570,16,1.0,1,1.5066077709197998,71,1.0,1 +24571,16,1.0,1,1.4446085691452026,72,1.0,1 +24572,16,1.0,1,1.1536109447479248,73,1.0,1 +24573,16,1.0,1,1.5796068906784058,74,1.0,1 +24574,16,1.0,1,1.1916110515594482,75,1.0,1 +24575,16,1.0,1,1.354609727859497,76,1.0,1 +24576,16,1.0,1,1.9856016635894775,77,0.0,1 +24577,16,0.0,1,1.1666109561920166,78,0.0,1 +24578,16,1.0,1,1.6676057577133179,79,0.0,1 +24579,16,1.0,1,1.2586109638214111,80,1.0,1 +24580,16,1.0,1,1.6756056547164917,81,0.0,1 +24581,16,1.0,1,1.3636096715927124,82,0.0,1 +24582,16,0.0,1,1.1476109027862549,83,0.0,1 +24583,16,1.0,1,1.6436060667037964,84,1.0,1 +24584,16,1.0,1,2.0786051750183105,85,1.0,1 +24585,16,1.0,1,1.4036091566085815,86,1.0,1 +24586,16,1.0,1,1.1786110401153564,87,0.0,1 +24587,16,0.0,1,1.3706095218658447,88,0.0,1 +24588,16,1.0,1,1.2366111278533936,89,1.0,1 +24589,16,1.0,1,1.1876109838485718,90,1.0,1 +24590,16,1.0,1,1.332610011100769,91,1.0,1 +24591,16,1.0,1,1.205610990524292,92,1.0,1 +24592,16,1.0,1,1.843603491783142,93,0.0,1 +24593,16,1.0,1,2.229612350463867,94,1.0,1 +24594,16,1.0,1,1.777604341506958,95,1.0,1 +24595,16,1.0,1,1.3246101140975952,96,1.0,1 +24596,16,1.0,1,1.3896093368530273,97,1.0,1 +24597,16,1.0,1,1.493607997894287,98,1.0,1 +24598,16,1.0,1,1.2726107835769653,99,0.0,1 +24599,16,0.0,1,1.966601848602295,100,0.0,1 +24600,16,1.0,1,2.0116021633148193,101,0.0,1 +24601,16,0.0,1,1.729604959487915,102,0.0,1 +24602,16,1.0,1,1.6356061697006226,103,1.0,1 +24603,16,1.0,1,1.590606689453125,104,1.0,1 +24604,16,1.0,1,1.376609444618225,105,1.0,1 +24605,16,1.0,1,1.1956110000610352,106,1.0,1 +24606,16,1.0,1,1.7756043672561646,107,1.0,1 +24607,16,1.0,1,1.3376100063323975,108,0.0,1 +24608,16,0.0,1,1.7206051349639893,109,0.0,1 +24609,16,1.0,1,1.2806106805801392,110,1.0,1 +24610,16,1.0,1,1.2506110668182373,111,0.0,1 +24611,16,0.0,1,1.3186101913452148,112,0.0,1 +24612,16,1.0,1,1.678605556488037,113,0.0,1 +24613,16,0.0,1,1.0866107940673828,114,0.0,1 +24614,16,0.0,1,1.103610873222351,115,1.0,1 +24615,16,0.0,1,1.1456109285354614,116,0.0,1 +24616,16,0.0,1,1.1936110258102417,117,1.0,1 +24617,16,0.0,1,1.1636109352111816,118,0.0,1 +24618,16,0.0,1,1.1386109590530396,119,0.0,1 +24619,16,0.0,1,1.9226024150848389,120,1.0,1 +24620,16,0.0,1,1.6256062984466553,121,0.0,1 +24621,16,1.0,1,1.4996079206466675,122,0.0,1 +24622,16,0.0,1,1.2816107273101807,123,0.0,1 +24623,16,0.0,1,2.137608051300049,124,0.0,1 +24624,16,0.0,1,1.1326109170913696,125,0.0,1 +24625,16,1.0,1,1.3346099853515625,126,1.0,1 +24626,16,1.0,1,1.4416086673736572,127,0.0,1 +24627,16,0.0,1,2.0806055068969727,128,1.0,1 +24628,16,0.0,1,1.2716108560562134,129,0.0,1 +24629,16,1.0,1,1.9116026163101196,130,0.0,1 +24630,16,0.0,1,1.4376087188720703,131,0.0,1 +24631,16,0.0,1,1.376609444618225,132,0.0,1 +24632,16,0.0,1,1.8386034965515137,133,1.0,1 +24633,16,0.0,1,1.235611081123352,134,1.0,1 +24634,16,0.0,1,1.5246076583862305,135,0.0,1 +24635,16,0.0,1,2.3286170959472656,136,1.0,1 +24636,16,0.0,1,1.4176089763641357,137,1.0,1 +24637,16,0.0,1,1.640606164932251,138,0.0,1 +24638,16,0.0,1,2.7636373043060303,139,0.0,1 +24639,16,1.0,1,1.262610912322998,140,1.0,1 +24640,16,0.0,1,1.4116090536117554,141,0.0,1 +24641,16,1.0,1,1.43160879611969,142,1.0,1 +24642,16,1.0,1,1.2196110486984253,143,0.0,1 +24643,16,0.0,1,1.45460844039917,144,1.0,1 +24644,16,0.0,1,1.7276049852371216,145,0.0,1 +24645,16,0.0,1,1.7946040630340576,146,0.0,1 +24646,16,0.0,1,1.7006053924560547,147,0.0,1 +24647,16,1.0,1,2.0756051540374756,148,1.0,1 +24648,16,1.0,1,1.3676096200942993,149,1.0,1 +24649,16,1.0,1,1.2186111211776733,150,1.0,1 +24650,16,1.0,1,1.3906092643737793,151,1.0,1 +24651,16,1.0,1,1.4596084356307983,152,1.0,1 +24652,16,1.0,1,1.201611042022705,153,1.0,1 +24653,16,1.0,1,1.4686082601547241,154,1.0,1 +24654,16,1.0,1,1.208611011505127,155,1.0,1 +24655,16,1.0,1,1.2146110534667969,156,0.0,1 +24656,16,1.0,1,1.7696044445037842,157,0.0,1 +24657,16,0.0,1,1.291610598564148,158,0.0,1 +24658,16,0.0,1,1.498607873916626,159,0.0,1 +24659,16,1.0,1,1.7726044654846191,160,1.0,1 +24660,16,0.0,1,1.2226110696792603,161,1.0,1 +24661,16,1.0,1,2.1006064414978027,162,1.0,1 +24662,16,1.0,1,1.3976092338562012,163,0.0,1 +24663,16,0.0,1,1.5726070404052734,164,0.0,1 +24664,16,0.0,1,1.9476021528244019,165,0.0,1 +24665,16,1.0,1,1.3496098518371582,166,1.0,1 +24666,16,1.0,1,1.4646083116531372,167,1.0,1 +24667,16,1.0,1,1.7416048049926758,168,1.0,1 +24668,16,1.0,1,1.3256101608276367,169,0.0,1 +24669,16,1.0,1,1.870603084564209,170,1.0,1 +24670,16,0.0,1,1.586606740951538,171,1.0,1 +24671,16,0.0,1,1.7046053409576416,172,0.0,1 +24672,16,0.0,1,1.7666044235229492,173,0.0,1 +24673,16,1.0,1,1.1736109256744385,174,0.0,1 +24674,16,1.0,1,1.2496111392974854,175,0.0,1 +24675,16,0.0,1,1.241611123085022,176,0.0,1 +24676,16,0.0,1,2.153608798980713,177,0.0,1 +24677,16,1.0,1,1.8466033935546875,178,0.0,1 +24678,16,0.0,1,1.6756056547164917,179,1.0,1 +24679,16,0.0,1,1.3816094398498535,180,0.0,1 +24680,16,1.0,1,2.1306076049804688,181,1.0,1 +24681,16,1.0,1,1.4136090278625488,182,0.0,1 +24682,16,1.0,1,2.6276309490203857,183,0.0,1 +24683,16,0.0,1,1.8366036415100098,184,1.0,1 +24684,16,1.0,1,1.872603178024292,185,0.0,1 +24685,16,0.0,1,1.3426098823547363,186,0.0,1 +24686,16,0.0,1,1.2686108350753784,187,1.0,1 +24687,16,0.0,1,1.2546110153198242,188,0.0,1 +24688,16,0.0,1,1.3826093673706055,189,1.0,1 +24689,16,0.0,1,1.1356109380722046,190,0.0,1 +24690,16,0.0,1,1.4626083374023438,191,0.0,1 +24691,16,1.0,1,1.201611042022705,192,1.0,1 +24692,16,1.0,1,1.3186101913452148,193,1.0,1 +24693,16,1.0,1,1.8126039505004883,194,1.0,1 +24694,16,1.0,1,1.376609444618225,195,1.0,1 +24695,16,1.0,1,1.3976092338562012,196,1.0,1 +24696,16,1.0,1,1.3196102380752563,197,0.0,1 +24697,16,1.0,1,1.4006091356277466,198,1.0,1 +24698,16,1.0,1,1.546607255935669,199,1.0,1 +24699,16,0.0,1,1.1266108751296997,200,1.0,1 +24700,16,1.0,1,1.3276101350784302,201,1.0,1 +24701,16,1.0,1,1.2596110105514526,202,1.0,1 +24702,16,1.0,1,1.17461097240448,203,1.0,1 +24703,16,1.0,1,1.3266100883483887,204,0.0,1 +24704,16,0.0,1,1.241611123085022,205,1.0,1 +24705,16,0.0,1,1.1326109170913696,206,0.0,1 +24706,16,0.0,1,1.9866015911102295,207,1.0,1 +24707,16,0.0,1,1.235611081123352,208,0.0,1 +24708,16,1.0,1,1.3386099338531494,209,1.0,1 +24709,16,1.0,1,1.2866106033325195,210,0.0,1 +24710,16,1.0,1,1.5606071949005127,211,0.0,1 +24711,16,1.0,1,2.227612257003784,212,1.0,1 +24712,16,1.0,1,1.4456086158752441,213,1.0,1 +24713,16,0.0,1,1.5286076068878174,214,0.0,1 +24714,16,1.0,1,1.5256075859069824,215,1.0,1 +24715,16,1.0,1,1.2196110486984253,216,1.0,1 +24716,16,1.0,1,1.405609130859375,217,0.0,1 +24717,16,0.0,1,1.0626107454299927,218,1.0,1 +24718,16,0.0,1,1.4136090278625488,219,1.0,1 +24719,16,0.0,1,1.3036104440689087,220,0.0,1 +24720,16,1.0,1,2.152608871459961,221,1.0,1 +24721,16,0.0,1,1.2036110162734985,222,0.0,1 +24722,16,1.0,1,2.3126163482666016,223,0.0,1 +24723,16,1.0,1,1.6986052989959717,224,1.0,1 +24724,16,1.0,1,1.6756056547164917,225,0.0,1 +24725,16,1.0,1,1.4576084613800049,226,1.0,1 +24726,16,1.0,1,2.15160870552063,227,0.0,1 +24727,16,0.0,1,1.545607328414917,228,0.0,1 +24728,16,1.0,1,1.8046040534973145,229,1.0,1 +24729,16,1.0,1,1.306610345840454,230,1.0,1 +24730,16,1.0,1,2.246613025665283,231,1.0,1 +24731,16,1.0,1,1.4046090841293335,232,0.0,1 +24732,16,0.0,1,1.5256075859069824,233,0.0,1 +24733,16,1.0,1,1.4476085901260376,234,1.0,1 +24734,16,0.0,1,1.1986110210418701,235,0.0,1 +24735,16,1.0,1,1.3716095685958862,236,1.0,1 +24736,16,1.0,1,1.2276110649108887,237,0.0,1 +24737,16,0.0,1,2.0436036586761475,238,0.0,1 +24738,16,1.0,1,1.1646109819412231,239,0.0,1 +24739,16,0.0,1,1.2236111164093018,240,0.0,1 +24740,16,0.0,1,1.0566108226776123,241,1.0,1 +24741,16,0.0,1,1.14461088180542,242,0.0,1 +24742,16,1.0,1,1.3986091613769531,243,1.0,1 +24743,16,1.0,1,1.7726044654846191,244,1.0,1 +24744,16,1.0,1,1.3726094961166382,245,1.0,1 +24745,16,1.0,1,1.362609624862671,246,1.0,1 +24746,16,1.0,1,1.6036065816879272,247,1.0,1 +24747,16,1.0,1,1.6046066284179688,248,1.0,1 +24748,16,1.0,1,1.2866106033325195,249,1.0,1 +24749,16,1.0,1,1.2366111278533936,250,0.0,1 +24750,16,1.0,1,2.17160964012146,251,1.0,1 +24751,16,1.0,1,1.8006041049957275,252,0.0,1 +24752,16,1.0,1,1.5796068906784058,253,1.0,1 +24753,16,1.0,1,1.895602822303772,254,0.0,1 +24754,16,0.0,1,1.7086052894592285,255,0.0,1 +24755,16,1.0,1,1.3566097021102905,256,0.0,1 +24756,16,1.0,1,1.7016053199768066,257,1.0,1 +24757,16,1.0,1,1.6456060409545898,258,0.0,1 +24758,16,0.0,1,1.5126078128814697,259,0.0,1 +24759,16,0.0,1,1.640606164932251,260,0.0,1 +24760,16,1.0,1,1.137610912322998,261,1.0,1 +24761,16,1.0,1,1.3126102685928345,262,1.0,1 +24762,16,1.0,1,1.4076091051101685,263,1.0,1 +24763,16,1.0,1,1.3916093111038208,264,1.0,1 +24764,16,1.0,1,1.2766107320785522,265,1.0,1 +24765,16,1.0,1,1.6316062211990356,266,1.0,1 +24766,16,1.0,1,1.3246101140975952,267,1.0,1 +24767,16,1.0,1,1.4256088733673096,268,1.0,1 +24768,16,1.0,1,1.107610821723938,269,1.0,1 +24769,16,1.0,1,1.4926079511642456,270,1.0,1 +24770,16,1.0,1,1.2496111392974854,271,1.0,1 +24771,16,1.0,1,1.141610860824585,272,1.0,1 +24772,16,1.0,1,1.2176110744476318,273,1.0,1 +24773,16,1.0,1,1.2766107320785522,274,1.0,1 +24774,16,1.0,1,1.596606731414795,275,0.0,1 +24775,16,0.0,1,1.5526072978973389,276,1.0,1 +24776,16,0.0,1,1.2466111183166504,277,0.0,1 +24777,16,0.0,1,1.1086108684539795,278,1.0,1 +24778,16,0.0,1,1.4376087188720703,279,0.0,1 +24779,16,0.0,1,1.1586109399795532,280,0.0,1 +24780,16,1.0,1,1.314610242843628,281,1.0,1 +24781,16,1.0,1,1.2236111164093018,282,0.0,1 +24782,16,0.0,1,1.2546110153198242,283,1.0,1 +24783,16,0.0,1,1.4676083326339722,284,0.0,1 +24784,16,0.0,1,1.6176064014434814,285,0.0,1 +24785,16,1.0,1,1.1916110515594482,286,0.0,1 +24786,16,0.0,1,1.4706082344055176,287,0.0,1 +24787,16,1.0,1,2.169609546661377,288,1.0,1 +24788,16,1.0,1,1.2516111135482788,289,1.0,1 +24789,16,1.0,1,1.2256110906600952,290,1.0,1 +24790,16,0.0,1,1.1556109189987183,291,0.0,1 +24791,16,1.0,1,1.2276110649108887,292,1.0,1 +24792,16,1.0,1,1.2236111164093018,293,1.0,1 +24793,16,1.0,1,1.3756095170974731,294,0.0,1 +24794,16,1.0,1,1.868603229522705,295,0.0,1 +24795,16,1.0,1,2.897643566131592,296,1.0,1 +24796,16,1.0,1,1.4436086416244507,297,1.0,1 +24797,16,1.0,1,1.2426111698150635,298,0.0,1 +24798,16,1.0,1,1.170611023902893,299,1.0,1 +24799,16,1.0,1,1.2176110744476318,300,1.0,1 +24800,16,1.0,1,1.1786110401153564,301,1.0,1 +24801,16,1.0,1,1.3506097793579102,302,1.0,1 +24802,16,1.0,1,1.59360671043396,303,1.0,1 +24803,16,1.0,1,1.339609980583191,304,1.0,1 +24804,16,1.0,1,1.1226109266281128,305,1.0,1 +24805,16,1.0,1,1.6576058864593506,306,1.0,1 +24806,16,1.0,1,1.7066051959991455,307,1.0,1 +24807,16,1.0,1,1.2866106033325195,308,0.0,1 +24808,16,0.0,1,1.2556110620498657,309,1.0,1 +24809,16,0.0,1,1.1206108331680298,310,1.0,1 +24810,16,0.0,1,1.2986104488372803,311,0.0,1 +24811,16,1.0,1,1.3086103200912476,312,1.0,1 +24812,16,1.0,1,1.4996079206466675,313,1.0,1 +24813,16,1.0,1,1.476608157157898,314,1.0,1 +24814,16,1.0,1,1.5826067924499512,315,1.0,1 +24815,16,1.0,1,1.1766109466552734,316,1.0,1 +24816,16,1.0,1,1.5566072463989258,317,0.0,1 +24817,16,0.0,1,1.774604320526123,318,0.0,1 +24818,16,1.0,1,1.780604362487793,319,1.0,1 +24819,16,1.0,1,1.3206101655960083,320,0.0,1 +24820,16,1.0,1,1.7666044235229492,321,1.0,1 +24821,16,1.0,1,1.5336074829101562,322,1.0,1 +24822,16,1.0,1,1.241611123085022,323,1.0,1 +24823,16,1.0,1,1.2406110763549805,324,1.0,1 +24824,16,1.0,1,1.2186111211776733,325,1.0,1 +24825,16,1.0,1,1.2826106548309326,326,1.0,1 +24826,16,1.0,1,1.3826093673706055,327,1.0,1 +24827,16,1.0,1,1.4486085176467896,328,0.0,1 +24828,16,0.0,1,1.9826016426086426,329,1.0,1 +24829,16,0.0,1,1.1986110210418701,330,1.0,1 +24830,16,0.0,1,1.6226062774658203,331,0.0,1 +24831,16,0.0,1,1.8636032342910767,332,0.0,1 +24832,16,1.0,1,1.2516111135482788,333,1.0,1 +24833,16,1.0,1,1.494607925415039,334,1.0,1 +24834,16,1.0,1,1.2196110486984253,335,0.0,1 +24835,16,1.0,1,1.6006066799163818,336,0.0,1 +24836,16,0.0,1,1.3686095476150513,337,0.0,1 +24837,16,1.0,1,1.640606164932251,338,0.0,1 +24838,16,1.0,1,1.8826029300689697,339,1.0,1 +24839,16,1.0,1,1.1506109237670898,340,1.0,1 +24840,16,1.0,1,1.2946105003356934,341,0.0,1 +24841,16,1.0,1,1.3386099338531494,342,0.0,1 +24842,16,1.0,1,1.3416099548339844,343,1.0,1 +24843,16,0.0,1,2.0866055488586426,344,1.0,1 +24844,16,1.0,1,1.5986065864562988,345,1.0,1 +24845,16,0.0,1,1.8796030282974243,346,1.0,1 +24846,16,1.0,1,1.2336111068725586,347,1.0,1 +24847,16,1.0,1,1.3346099853515625,348,1.0,1 +24848,16,0.0,1,1.8886029720306396,349,0.0,1 +24849,16,1.0,1,1.4126089811325073,350,1.0,1 +24850,16,0.0,1,1.1306109428405762,351,0.0,1 +24851,16,1.0,1,1.498607873916626,352,1.0,1 +24852,16,1.0,1,1.2426111698150635,353,0.0,1 +24853,16,1.0,1,1.8056039810180664,354,1.0,1 +24854,16,1.0,1,1.291610598564148,355,1.0,1 +24855,16,1.0,1,1.5836068391799927,356,1.0,1 +24856,16,1.0,1,1.3686095476150513,357,1.0,1 +24857,16,1.0,1,1.45460844039917,358,1.0,1 +24858,16,1.0,1,1.3116103410720825,359,0.0,1 +24859,16,0.0,1,1.0786107778549194,360,1.0,1 +24860,16,0.0,1,1.2756108045578003,361,1.0,1 +24861,16,0.0,1,1.1546109914779663,362,0.0,1 +24862,16,1.0,1,1.3266100883483887,363,1.0,1 +24863,16,1.0,1,1.4196089506149292,364,1.0,1 +24864,16,1.0,1,1.4656083583831787,365,1.0,1 +24865,16,1.0,1,1.306610345840454,366,1.0,1 +24866,16,1.0,1,1.3786094188690186,367,1.0,1 +24867,16,1.0,1,1.3036104440689087,368,1.0,1 +24868,16,1.0,1,1.4826080799102783,369,1.0,1 +24869,16,1.0,1,1.4776082038879395,370,1.0,1 +24870,16,1.0,1,1.3286100625991821,371,1.0,1 +24871,16,1.0,1,1.9746017456054688,372,0.0,1 +24872,16,1.0,1,1.2286111116409302,373,1.0,1 +24873,16,1.0,1,1.5566072463989258,374,1.0,1 +24874,16,1.0,1,1.140610933303833,375,1.0,1 +24875,16,1.0,1,1.2456111907958984,376,1.0,1 +24876,16,1.0,1,1.5246076583862305,377,0.0,1 +24877,16,1.0,1,2.227612257003784,378,1.0,1 +24878,16,1.0,1,2.0536041259765625,379,1.0,1 +24879,16,1.0,1,1.4346086978912354,380,1.0,1 +24880,16,1.0,1,1.16861093044281,381,0.0,1 +24881,16,1.0,1,1.5646071434020996,382,1.0,1 +24882,16,1.0,1,1.26961088180542,383,1.0,1 +24883,16,1.0,1,1.43160879611969,384,1.0,1 +24884,16,1.0,1,1.306610345840454,385,0.0,1 +24885,16,0.0,1,1.4136090278625488,386,1.0,1 +24886,16,0.0,1,2.5896291732788086,387,1.0,1 +24887,16,0.0,1,1.7666044235229492,388,1.0,1 +24888,16,0.0,1,1.1116108894348145,389,0.0,1 +24889,16,1.0,1,2.3426175117492676,390,1.0,1 +24890,16,1.0,1,1.238611102104187,391,0.0,1 +24891,16,1.0,1,2.1116068363189697,392,1.0,1 +24892,16,1.0,1,1.3566097021102905,393,1.0,1 +24893,16,1.0,1,1.3896093368530273,394,0.0,1 +24894,16,0.0,1,1.3736095428466797,395,0.0,1 +24895,16,0.0,1,1.5706069469451904,396,0.0,1 +24896,16,1.0,1,1.494607925415039,397,1.0,1 +24897,16,1.0,1,1.313610315322876,398,0.0,1 +24898,16,0.0,1,1.9706017971038818,399,0.0,1 +24899,16,1.0,1,2.3756191730499268,400,0.0,1 +24900,16,1.0,1,1.659605860710144,401,1.0,1 +24901,16,0.0,1,1.5546071529388428,402,0.0,1 +24902,16,1.0,1,1.3996092081069946,403,1.0,1 +24903,16,1.0,1,1.5836068391799927,404,0.0,1 +24904,16,1.0,1,2.0736050605773926,405,1.0,1 +24905,16,1.0,1,1.5476073026657104,406,1.0,1 +24906,16,1.0,1,1.238611102104187,407,1.0,1 +24907,16,1.0,1,2.3486180305480957,408,1.0,1 +24908,16,1.0,1,1.6506059169769287,409,1.0,1 +24909,16,1.0,1,1.2816107273101807,410,1.0,1 +24910,16,1.0,1,1.5076078176498413,411,1.0,1 +24911,16,1.0,1,1.9026026725769043,412,0.0,1 +24912,16,1.0,1,1.3656096458435059,413,0.0,1 +24913,16,0.0,1,1.4306087493896484,414,1.0,1 +24914,16,0.0,1,1.3006104230880737,415,0.0,1 +24915,16,0.0,1,1.2606109380722046,416,1.0,1 +24916,16,0.0,1,1.3466098308563232,417,0.0,1 +24917,16,0.0,1,1.2496111392974854,418,1.0,1 +24918,16,0.0,1,1.1316108703613281,419,0.0,1 +24919,16,0.0,1,1.7026052474975586,420,0.0,1 +24920,16,1.0,1,1.2366111278533936,421,1.0,1 +24921,16,1.0,1,1.5996066331863403,422,1.0,1 +24922,16,1.0,1,1.542607307434082,423,0.0,1 +24923,16,1.0,1,1.16861093044281,424,0.0,1 +24924,16,1.0,1,1.7416048049926758,425,1.0,1 +24925,16,1.0,1,1.2806106805801392,426,0.0,1 +24926,16,1.0,1,1.7936041355133057,427,1.0,1 +24927,16,1.0,1,1.6486060619354248,428,1.0,1 +24928,16,1.0,1,2.2656140327453613,429,1.0,1 +24929,16,1.0,1,1.3156102895736694,430,1.0,1 +24930,16,1.0,1,1.5746068954467773,431,1.0,1 +24931,16,1.0,1,1.2166110277175903,432,1.0,1 +24932,16,1.0,1,1.4526084661483765,433,1.0,1 +24933,16,1.0,1,1.2796107530593872,434,1.0,1 +24934,16,1.0,1,1.7756043672561646,435,1.0,1 +24935,16,1.0,1,1.3866093158721924,436,1.0,1 +24936,16,0.0,1,1.2556110620498657,437,0.0,1 +24937,16,1.0,1,1.149610996246338,438,1.0,1 +24938,16,0.0,1,1.3196102380752563,439,0.0,1 +24939,16,1.0,1,1.1126108169555664,440,0.0,1 +24940,16,1.0,1,1.207611083984375,441,1.0,1 +24941,16,1.0,1,1.4306087493896484,442,0.0,1 +24942,16,0.0,1,1.5306074619293213,443,0.0,1 +24943,16,1.0,1,2.144608497619629,444,1.0,1 +24944,16,1.0,1,1.2496111392974854,445,1.0,1 +24945,16,1.0,1,1.685605525970459,446,1.0,1 +24946,16,1.0,1,1.6236063241958618,447,1.0,1 +24947,16,1.0,1,1.2316111326217651,448,1.0,1 +24948,16,1.0,1,1.3476098775863647,449,0.0,1 +24949,16,1.0,1,1.7156051397323608,450,1.0,1 +24950,16,1.0,1,1.2606109380722046,451,1.0,1 +24951,16,1.0,1,1.729604959487915,452,0.0,1 +24952,16,1.0,1,1.8076039552688599,453,1.0,1 +24953,16,1.0,1,1.611606478691101,454,1.0,1 +24954,16,1.0,1,1.3776094913482666,455,1.0,1 +24955,16,1.0,1,1.167611002922058,456,0.0,1 +24956,16,1.0,1,2.0216026306152344,457,1.0,1 +24957,16,1.0,1,1.2256110906600952,458,0.0,1 +24958,16,0.0,1,1.8396035432815552,459,1.0,1 +24959,16,0.0,1,2.2796146869659424,460,0.0,1 +24960,16,1.0,1,1.247611165046692,461,0.0,1 +24961,16,1.0,1,1.6736056804656982,462,1.0,1 +24962,16,1.0,1,1.2526110410690308,463,1.0,1 +24963,16,1.0,1,2.3056159019470215,464,1.0,1 +24964,16,1.0,1,1.6916054487228394,465,1.0,1 +24965,16,1.0,1,1.6016066074371338,466,0.0,1 +24966,16,0.0,1,1.4386086463928223,467,0.0,1 +24967,16,1.0,1,1.634606122970581,468,0.0,1 +24968,16,0.0,1,2.7896385192871094,469,0.0,1 +24969,16,1.0,1,1.201611042022705,470,0.0,1 +24970,16,1.0,1,2.0526041984558105,471,0.0,1 +24971,16,1.0,1,1.5106077194213867,472,1.0,1 +24972,16,1.0,1,1.2196110486984253,473,0.0,1 +24973,16,1.0,1,1.314610242843628,474,0.0,1 +24974,16,0.0,1,1.636606216430664,475,1.0,1 +24975,16,0.0,1,1.8026039600372314,476,0.0,1 +24976,16,0.0,1,1.2486110925674438,477,0.0,1 +24977,16,1.0,1,1.5626070499420166,478,1.0,1 +24978,16,1.0,1,1.6666057109832764,479,1.0,1 +24979,16,1.0,1,1.5666069984436035,480,0.0,1 +24980,16,0.0,1,1.3296101093292236,481,0.0,1 +24981,16,0.0,1,1.3496098518371582,482,0.0,1 +24982,16,0.0,1,1.9466021060943604,483,1.0,1 +24983,16,0.0,1,1.4336087703704834,484,0.0,1 +24984,16,0.0,1,1.5146076679229736,485,0.0,1 +24985,16,1.0,1,1.471608281135559,486,0.0,1 +24986,16,1.0,1,1.5666069984436035,487,0.0,1 +24987,16,0.0,1,1.7956041097640991,488,0.0,1 +24988,16,1.0,1,1.3206101655960083,489,1.0,1 +24989,16,1.0,1,1.1506109237670898,490,0.0,1 +24990,16,0.0,1,1.504607915878296,491,1.0,1 +24991,16,0.0,1,1.0926108360290527,492,0.0,1 +24992,16,0.0,1,1.3196102380752563,493,0.0,1 +24993,16,1.0,1,1.8176038265228271,494,1.0,1 +24994,16,1.0,1,1.288610577583313,495,0.0,1 +24995,16,0.0,1,1.291610598564148,496,0.0,1 +24996,16,1.0,1,1.5186076164245605,497,1.0,1 +24997,16,1.0,1,1.1456109285354614,498,0.0,1 +24998,16,1.0,1,1.9046027660369873,499,1.0,1 +24999,16,0.0,1,1.6666057109832764,500,1.0,1 +25000,16,1.0,2,1.7466046810150146,1,1.0,1 +25001,16,1.0,2,1.8846030235290527,2,0.0,1 +25002,16,0.0,2,1.5526072978973389,3,0.0,1 +25003,16,1.0,2,1.409609079360962,4,0.0,1 +25004,16,1.0,2,1.0916107892990112,5,1.0,1 +25005,16,1.0,2,1.6086065769195557,6,1.0,1 +25006,16,1.0,2,1.916602611541748,7,1.0,1 +25007,16,1.0,2,1.3236101865768433,8,0.0,1 +25008,16,0.0,2,2.2726144790649414,9,0.0,1 +25009,16,1.0,2,1.4106090068817139,10,0.0,1 +25010,16,0.0,2,2.409620761871338,11,0.0,1 +25011,16,0.0,2,1.167611002922058,12,0.0,1 +25012,16,1.0,2,2.6006298065185547,13,1.0,1 +25013,16,1.0,2,1.542607307434082,14,1.0,1 +25014,16,1.0,2,1.4996079206466675,15,1.0,1 +25015,16,1.0,2,1.4406086206436157,16,1.0,1 +25016,16,1.0,2,1.427608847618103,17,0.0,1 +25017,16,0.0,2,1.1116108894348145,18,1.0,1 +25018,16,0.0,2,1.5366075038909912,19,0.0,1 +25019,16,1.0,2,2.0556042194366455,20,0.0,1 +25020,16,1.0,2,1.5386073589324951,21,0.0,1 +25021,16,1.0,2,2.1106066703796387,22,1.0,1 +25022,16,1.0,2,1.3076103925704956,23,0.0,1 +25023,16,1.0,2,1.427608847618103,24,1.0,1 +25024,16,1.0,2,1.2426111698150635,25,1.0,1 +25025,16,1.0,2,1.3816094398498535,26,0.0,1 +25026,16,1.0,2,1.4836081266403198,27,0.0,1 +25027,16,0.0,2,1.143610954284668,28,0.0,1 +25028,16,0.0,2,1.235611081123352,29,1.0,1 +25029,16,0.0,2,1.5286076068878174,30,0.0,1 +25030,16,0.0,2,1.9306023120880127,31,0.0,1 +25031,16,0.0,2,1.472608208656311,32,1.0,1 +25032,16,0.0,2,1.3986091613769531,33,1.0,1 +25033,16,0.0,2,1.8716031312942505,34,0.0,1 +25034,16,1.0,2,2.8626418113708496,35,1.0,1 +25035,16,1.0,2,2.1016063690185547,36,1.0,1 +25036,16,1.0,2,1.1826109886169434,37,1.0,1 +25037,16,1.0,2,1.8606033325195312,38,0.0,1 +25038,16,1.0,2,2.201611042022705,39,0.0,1 +25039,16,1.0,2,2.654632091522217,40,1.0,1 +25040,16,0.0,2,1.2486110925674438,41,1.0,1 +25041,16,0.0,2,1.8056039810180664,42,1.0,1 +25042,16,0.0,2,1.3646095991134644,43,0.0,1 +25043,16,0.0,2,1.4696083068847656,44,1.0,1 +25044,16,1.0,2,1.5206077098846436,45,1.0,1 +25045,16,1.0,2,2.647631883621216,46,0.0,1 +25046,16,0.0,2,1.1586109399795532,47,1.0,1 +25047,16,0.0,2,1.3006104230880737,48,0.0,1 +25048,16,1.0,2,2.3746190071105957,49,1.0,1 +25049,16,1.0,2,1.1926109790802002,50,1.0,1 +25050,16,0.0,2,1.21061110496521,51,0.0,1 +25051,16,1.0,2,1.1936110258102417,52,0.0,1 +25052,16,1.0,2,1.7916041612625122,53,0.0,1 +25053,16,0.0,2,1.3116103410720825,54,1.0,1 +25054,16,0.0,2,1.8406035900115967,55,0.0,1 +25055,16,1.0,2,2.2546133995056152,56,0.0,1 +25056,16,0.0,2,1.7036052942276,57,0.0,1 +25057,16,1.0,2,1.3266100883483887,58,1.0,1 +25058,16,1.0,2,1.3686095476150513,59,0.0,1 +25059,16,0.0,2,1.6126065254211426,60,0.0,1 +25060,16,0.0,2,1.2126110792160034,61,0.0,1 +25061,16,1.0,2,1.3226101398468018,62,0.0,1 +25062,16,0.0,2,1.2706108093261719,63,0.0,1 +25063,16,0.0,2,1.9826016426086426,64,0.0,1 +25064,16,1.0,2,1.2816107273101807,65,0.0,1 +25065,16,0.0,2,1.5246076583862305,66,0.0,1 +25066,16,1.0,2,1.1356109380722046,67,1.0,1 +25067,16,1.0,2,1.3906092643737793,68,0.0,1 +25068,16,0.0,2,1.7676044702529907,69,1.0,1 +25069,16,0.0,2,1.1256108283996582,70,1.0,1 +25070,16,0.0,2,1.1476109027862549,71,1.0,1 +25071,16,1.0,2,2.0206027030944824,72,0.0,1 +25072,16,0.0,2,1.825603723526001,73,1.0,1 +25073,16,0.0,2,1.449608564376831,74,0.0,1 +25074,16,0.0,2,1.5846068859100342,75,0.0,1 +25075,16,0.0,2,1.8076039552688599,76,0.0,1 +25076,16,1.0,2,1.3756095170974731,77,0.0,1 +25077,16,1.0,2,1.6656057834625244,78,0.0,1 +25078,16,1.0,2,1.7476047277450562,79,1.0,1 +25079,16,1.0,2,1.3006104230880737,80,1.0,1 +25080,16,1.0,2,1.1626110076904297,81,0.0,1 +25081,16,0.0,2,1.4856081008911133,82,0.0,1 +25082,16,1.0,2,2.0086021423339844,83,1.0,1 +25083,16,1.0,2,1.1786110401153564,84,0.0,1 +25084,16,1.0,2,1.7586045265197754,85,0.0,1 +25085,16,0.0,2,2.135607957839966,86,1.0,1 +25086,16,0.0,2,1.171610951423645,87,0.0,1 +25087,16,0.0,2,1.5646071434020996,88,0.0,1 +25088,16,1.0,2,2.1056065559387207,89,1.0,1 +25089,16,0.0,2,1.549607276916504,90,1.0,1 +25090,16,1.0,2,1.6546058654785156,91,0.0,1 +25091,16,0.0,2,1.247611165046692,92,1.0,1 +25092,16,0.0,2,1.141610860824585,93,0.0,1 +25093,16,1.0,2,1.3476098775863647,94,1.0,1 +25094,16,1.0,2,1.589606761932373,95,1.0,1 +25095,16,1.0,2,1.3376100063323975,96,1.0,1 +25096,16,1.0,2,1.7216050624847412,97,1.0,1 +25097,16,0.0,2,1.5076078176498413,98,0.0,1 +25098,16,1.0,2,1.5546071529388428,99,0.0,1 +25099,16,0.0,2,1.5286076068878174,100,0.0,1 +25100,16,0.0,2,1.4166089296340942,101,1.0,1 +25101,16,0.0,2,1.306610345840454,102,0.0,1 +25102,16,1.0,2,1.774604320526123,103,0.0,1 +25103,16,1.0,2,1.6396061182022095,104,0.0,1 +25104,16,0.0,2,1.205610990524292,105,0.0,1 +25105,16,0.0,2,1.9446022510528564,106,0.0,1 +25106,16,0.0,2,2.174609661102295,107,1.0,1 +25107,16,0.0,2,1.8936028480529785,108,0.0,1 +25108,16,0.0,2,1.780604362487793,109,0.0,1 +25109,16,0.0,2,1.5146076679229736,110,0.0,1 +25110,16,1.0,2,1.7036052942276,111,1.0,1 +25111,16,1.0,2,1.4816081523895264,112,1.0,1 +25112,16,1.0,2,1.8506033420562744,113,1.0,1 +25113,16,0.0,2,1.5346074104309082,114,0.0,1 +25114,16,1.0,2,1.4576084613800049,115,1.0,1 +25115,16,1.0,2,1.3746094703674316,116,0.0,1 +25116,16,0.0,2,1.2316111326217651,117,0.0,1 +25117,16,0.0,2,1.2586109638214111,118,0.0,1 +25118,16,1.0,2,1.2096110582351685,119,1.0,1 +25119,16,1.0,2,1.4556084871292114,120,1.0,1 +25120,16,1.0,2,1.5176076889038086,121,0.0,1 +25121,16,1.0,2,1.3446098566055298,122,1.0,1 +25122,16,1.0,2,1.5776069164276123,123,0.0,1 +25123,16,0.0,2,1.6586058139801025,124,0.0,1 +25124,16,1.0,2,1.6046066284179688,125,0.0,1 +25125,16,0.0,2,1.2816107273101807,126,0.0,1 +25126,16,1.0,2,1.149610996246338,127,0.0,1 +25127,16,1.0,2,1.406609058380127,128,0.0,1 +25128,16,0.0,2,1.6676057577133179,129,0.0,1 +25129,16,0.0,2,1.5826067924499512,130,0.0,1 +25130,16,0.0,2,1.2376110553741455,131,1.0,1 +25131,16,0.0,2,1.2186111211776733,132,1.0,1 +25132,16,0.0,2,1.1196109056472778,133,0.0,1 +25133,16,0.0,2,1.2486110925674438,134,0.0,1 +25134,16,0.0,2,1.1836110353469849,135,0.0,1 +25135,16,1.0,2,1.2246110439300537,136,0.0,1 +25136,16,1.0,2,1.9116026163101196,137,1.0,1 +25137,16,0.0,2,1.9926016330718994,138,0.0,1 +25138,16,1.0,2,1.8196038007736206,139,1.0,1 +25139,16,1.0,2,1.1786110401153564,140,1.0,1 +25140,16,1.0,2,1.3566097021102905,141,0.0,1 +25141,16,1.0,2,1.1896109580993652,142,1.0,1 +25142,16,0.0,2,1.1896109580993652,143,0.0,1 +25143,16,1.0,2,1.3756095170974731,144,1.0,1 +25144,16,1.0,2,1.317610263824463,145,0.0,1 +25145,16,0.0,2,1.567607045173645,146,0.0,1 +25146,16,0.0,2,1.4596084356307983,147,1.0,1 +25147,16,0.0,2,1.689605474472046,148,0.0,1 +25148,16,0.0,2,1.54160737991333,149,1.0,1 +25149,16,0.0,2,1.9746017456054688,150,0.0,1 +25150,16,1.0,2,1.611606478691101,151,0.0,1 +25151,16,0.0,2,1.2906105518341064,152,0.0,1 +25152,16,0.0,2,2.0626044273376465,153,1.0,1 +25153,16,1.0,2,1.7756043672561646,154,1.0,1 +25154,16,0.0,2,1.7606046199798584,155,0.0,1 +25155,16,0.0,2,1.3246101140975952,156,0.0,1 +25156,16,0.0,2,1.685605525970459,157,1.0,1 +25157,16,1.0,2,1.5206077098846436,158,1.0,1 +25158,16,1.0,2,1.6566059589385986,159,1.0,1 +25159,16,1.0,2,2.1136069297790527,160,0.0,1 +25160,16,0.0,2,1.238611102104187,161,0.0,1 +25161,16,0.0,2,1.728605031967163,162,1.0,1 +25162,16,0.0,2,1.2236111164093018,163,1.0,1 +25163,16,0.0,2,1.4346086978912354,164,1.0,1 +25164,16,0.0,2,1.106610894203186,165,1.0,1 +25165,16,0.0,2,1.1276109218597412,166,0.0,1 +25166,16,0.0,2,1.2786107063293457,167,0.0,1 +25167,16,1.0,2,1.2646108865737915,168,0.0,1 +25168,16,0.0,2,1.2836107015609741,169,0.0,1 +25169,16,0.0,2,1.2606109380722046,170,0.0,1 +25170,16,0.0,2,1.3026103973388672,171,1.0,1 +25171,16,0.0,2,1.2596110105514526,172,0.0,1 +25172,16,0.0,2,1.8976027965545654,173,0.0,1 +25173,16,1.0,2,1.921602487564087,174,1.0,1 +25174,16,1.0,2,1.2146110534667969,175,1.0,1 +25175,16,1.0,2,1.332610011100769,176,1.0,1 +25176,16,0.0,2,1.9456021785736084,177,0.0,1 +25177,16,1.0,2,1.288610577583313,178,1.0,1 +25178,16,1.0,2,1.2866106033325195,179,1.0,1 +25179,16,1.0,2,1.678605556488037,180,0.0,1 +25180,16,0.0,2,1.7376048564910889,181,0.0,1 +25181,16,1.0,2,1.3196102380752563,182,0.0,1 +25182,16,0.0,2,1.588606834411621,183,1.0,1 +25183,16,0.0,2,2.2606139183044434,184,1.0,1 +25184,16,0.0,2,1.1836110353469849,185,0.0,1 +25185,16,1.0,2,1.2466111183166504,186,1.0,1 +25186,16,1.0,2,1.7866041660308838,187,0.0,1 +25187,16,0.0,2,1.4676083326339722,188,0.0,1 +25188,16,1.0,2,1.611606478691101,189,0.0,1 +25189,16,0.0,2,1.2576110363006592,190,1.0,1 +25190,16,0.0,2,1.2196110486984253,191,1.0,1 +25191,16,0.0,2,1.354609727859497,192,0.0,1 +25192,16,1.0,2,1.781604290008545,193,0.0,1 +25193,16,0.0,2,1.4576084613800049,194,0.0,1 +25194,16,1.0,2,1.9486021995544434,195,0.0,1 +25195,16,1.0,2,1.1696109771728516,196,0.0,1 +25196,16,0.0,2,2.0146021842956543,197,0.0,1 +25197,16,1.0,2,1.475608229637146,198,0.0,1 +25198,16,0.0,2,1.2396111488342285,199,0.0,1 +25199,16,0.0,2,1.2336111068725586,200,0.0,1 +25200,16,0.0,2,1.2486110925674438,201,0.0,1 +25201,16,1.0,2,1.3426098823547363,202,0.0,1 +25202,16,1.0,2,1.4256088733673096,203,0.0,1 +25203,16,1.0,2,2.1096067428588867,204,1.0,1 +25204,16,1.0,2,1.5036078691482544,205,0.0,1 +25205,16,1.0,2,1.6246063709259033,206,1.0,1 +25206,16,1.0,2,1.3986091613769531,207,1.0,1 +25207,16,1.0,2,1.7086052894592285,208,0.0,1 +25208,16,0.0,2,1.449608564376831,209,1.0,1 +25209,16,0.0,2,1.2996104955673218,210,0.0,1 +25210,16,1.0,2,2.420621395111084,211,1.0,1 +25211,16,1.0,2,1.4736082553863525,212,1.0,1 +25212,16,1.0,2,1.2926105260849,213,1.0,1 +25213,16,1.0,2,1.3956092596054077,214,1.0,1 +25214,16,1.0,2,1.2756108045578003,215,1.0,1 +25215,16,1.0,2,1.7446048259735107,216,1.0,1 +25216,16,1.0,2,1.8106038570404053,217,0.0,1 +25217,16,0.0,2,1.354609727859497,218,0.0,1 +25218,16,1.0,2,1.3866093158721924,219,0.0,1 +25219,16,0.0,2,1.3466098308563232,220,0.0,1 +25220,16,0.0,2,1.5126078128814697,221,1.0,1 +25221,16,0.0,2,1.7956041097640991,222,1.0,1 +25222,16,0.0,2,2.0466036796569824,223,1.0,1 +25223,16,0.0,2,1.2166110277175903,224,0.0,1 +25224,16,0.0,2,1.5986065864562988,225,1.0,1 +25225,16,0.0,2,1.177610993385315,226,0.0,1 +25226,16,1.0,2,1.8776030540466309,227,1.0,1 +25227,16,1.0,2,1.3266100883483887,228,1.0,1 +25228,16,1.0,2,1.475608229637146,229,1.0,1 +25229,16,1.0,2,1.4576084613800049,230,1.0,1 +25230,16,1.0,2,1.3926092386245728,231,1.0,1 +25231,16,1.0,2,1.2856106758117676,232,1.0,1 +25232,16,1.0,2,1.2896106243133545,233,0.0,1 +25233,16,1.0,2,1.6776056289672852,234,1.0,1 +25234,16,1.0,2,1.8496034145355225,235,1.0,1 +25235,16,1.0,2,1.2406110763549805,236,0.0,1 +25236,16,0.0,2,1.6696057319641113,237,0.0,1 +25237,16,1.0,2,1.409609079360962,238,1.0,1 +25238,16,1.0,2,1.6066064834594727,239,1.0,1 +25239,16,1.0,2,1.8886029720306396,240,1.0,1 +25240,16,1.0,2,1.2976105213165283,241,0.0,1 +25241,16,0.0,2,1.4706082344055176,242,1.0,1 +25242,16,0.0,2,1.4206088781356812,243,0.0,1 +25243,16,1.0,2,1.2796107530593872,244,1.0,1 +25244,16,1.0,2,1.2556110620498657,245,0.0,1 +25245,16,1.0,2,1.4896080493927002,246,1.0,1 +25246,16,1.0,2,1.45460844039917,247,1.0,1 +25247,16,1.0,2,1.7086052894592285,248,1.0,1 +25248,16,1.0,2,2.455622911453247,249,0.0,1 +25249,16,1.0,2,1.7606046199798584,250,0.0,1 +25250,16,1.0,2,1.409609079360962,251,0.0,1 +25251,16,0.0,2,1.3386099338531494,252,0.0,1 +25252,16,1.0,2,1.2906105518341064,253,0.0,1 +25253,16,0.0,2,1.4566084146499634,254,1.0,1 +25254,16,0.0,2,1.9226024150848389,255,0.0,1 +25255,16,0.0,2,1.2296111583709717,256,1.0,1 +25256,16,0.0,2,1.2396111488342285,257,1.0,1 +25257,16,0.0,2,1.2096110582351685,258,1.0,1 +25258,16,1.0,2,1.586606740951538,259,1.0,1 +25259,16,1.0,2,2.0836055278778076,260,0.0,1 +25260,16,0.0,2,1.1736109256744385,261,1.0,1 +25261,16,0.0,2,1.1996110677719116,262,0.0,1 +25262,16,1.0,2,1.2336111068725586,263,1.0,1 +25263,16,1.0,2,1.6036065816879272,264,1.0,1 +25264,16,1.0,2,1.106610894203186,265,1.0,1 +25265,16,1.0,2,1.6356061697006226,266,0.0,1 +25266,16,0.0,2,1.232611060142517,267,0.0,1 +25267,16,0.0,2,1.3406099081039429,268,0.0,1 +25268,16,0.0,2,1.966601848602295,269,0.0,1 +25269,16,1.0,2,1.475608229637146,270,0.0,1 +25270,16,0.0,2,1.5276075601577759,271,0.0,1 +25271,16,1.0,2,1.759604573249817,272,0.0,1 +25272,16,1.0,2,2.442622184753418,273,1.0,1 +25273,16,1.0,2,1.4296088218688965,274,0.0,1 +25274,16,1.0,2,1.913602590560913,275,1.0,1 +25275,16,1.0,2,1.2196110486984253,276,1.0,1 +25276,16,1.0,2,1.1996110677719116,277,0.0,1 +25277,16,0.0,2,1.3406099081039429,278,0.0,1 +25278,16,0.0,2,1.1336109638214111,279,0.0,1 +25279,16,1.0,2,1.9316023588180542,280,0.0,1 +25280,16,0.0,2,1.9576020240783691,281,0.0,1 +25281,16,1.0,2,1.9986015558242798,282,0.0,1 +25282,16,1.0,2,1.3446098566055298,283,0.0,1 +25283,16,0.0,2,1.8856029510498047,284,0.0,1 +25284,16,0.0,2,1.357609748840332,285,1.0,1 +25285,16,1.0,2,1.314610242843628,286,1.0,1 +25286,16,1.0,2,1.5916067361831665,287,0.0,1 +25287,16,0.0,2,1.262610912322998,288,1.0,1 +25288,16,1.0,2,1.3456099033355713,289,0.0,1 +25289,16,0.0,2,1.17461097240448,290,0.0,1 +25290,16,1.0,2,1.4896080493927002,291,0.0,1 +25291,16,0.0,2,1.2426111698150635,292,0.0,1 +25292,16,1.0,2,1.6066064834594727,293,0.0,1 +25293,16,0.0,2,2.0396034717559814,294,0.0,1 +25294,16,0.0,2,2.200611114501953,295,1.0,1 +25295,16,0.0,2,1.3536098003387451,296,1.0,1 +25296,16,0.0,2,1.3416099548339844,297,0.0,1 +25297,16,0.0,2,1.9816017150878906,298,0.0,1 +25298,16,0.0,2,1.3226101398468018,299,0.0,1 +25299,16,0.0,2,1.2806106805801392,300,0.0,1 +25300,16,0.0,2,1.5796068906784058,301,0.0,1 +25301,16,1.0,2,1.9706017971038818,302,1.0,1 +25302,16,1.0,2,2.0136022567749023,303,1.0,1 +25303,16,1.0,2,1.3036104440689087,304,1.0,1 +25304,16,1.0,2,1.2606109380722046,305,1.0,1 +25305,16,1.0,2,1.40260910987854,306,1.0,1 +25306,16,1.0,2,1.3196102380752563,307,0.0,1 +25307,16,1.0,2,1.3046103715896606,308,0.0,1 +25308,16,0.0,2,1.9086027145385742,309,0.0,1 +25309,16,1.0,2,1.825603723526001,310,1.0,1 +25310,16,1.0,2,1.0906108617782593,311,0.0,1 +25311,16,1.0,2,2.3216166496276855,312,1.0,1 +25312,16,1.0,2,2.112607002258301,313,1.0,1 +25313,16,1.0,2,1.1116108894348145,314,0.0,1 +25314,16,1.0,2,1.2286111116409302,315,1.0,1 +25315,16,1.0,2,1.1886110305786133,316,0.0,1 +25316,16,1.0,2,1.549607276916504,317,1.0,1 +25317,16,1.0,2,1.7706043720245361,318,1.0,1 +25318,16,1.0,2,1.545607328414917,319,0.0,1 +25319,16,1.0,2,2.92264461517334,320,0.0,1 +25320,16,1.0,2,1.4086090326309204,321,0.0,1 +25321,16,0.0,2,1.1586109399795532,322,1.0,1 +25322,16,0.0,2,1.6086065769195557,323,0.0,1 +25323,16,1.0,2,1.5566072463989258,324,1.0,1 +25324,16,1.0,2,1.5546071529388428,325,0.0,1 +25325,16,0.0,2,1.383609414100647,326,0.0,1 +25326,16,0.0,2,1.9046027660369873,327,1.0,1 +25327,16,0.0,2,1.2746107578277588,328,1.0,1 +25328,16,0.0,2,1.504607915878296,329,0.0,1 +25329,16,0.0,2,1.1156108379364014,330,0.0,1 +25330,16,0.0,2,1.2006109952926636,331,1.0,1 +25331,16,0.0,2,1.1096107959747314,332,0.0,1 +25332,16,0.0,2,1.8866028785705566,333,1.0,1 +25333,16,1.0,2,1.5076078176498413,334,1.0,1 +25334,16,1.0,2,2.149608612060547,335,1.0,1 +25335,16,1.0,2,1.310610294342041,336,1.0,1 +25336,16,0.0,2,2.0326032638549805,337,1.0,1 +25337,16,1.0,2,1.361609697341919,338,1.0,1 +25338,16,1.0,2,1.2896106243133545,339,1.0,1 +25339,16,0.0,2,1.868603229522705,340,1.0,1 +25340,16,0.0,2,1.5506072044372559,341,1.0,1 +25341,16,1.0,2,1.9366023540496826,342,1.0,1 +25342,16,0.0,2,1.1916110515594482,343,1.0,1 +25343,16,1.0,2,1.2406110763549805,344,0.0,1 +25344,16,1.0,2,1.331610083580017,345,1.0,1 +25345,16,0.0,2,1.238611102104187,346,0.0,1 +25346,16,1.0,2,2.3776192665100098,347,0.0,1 +25347,16,0.0,2,1.5826067924499512,348,0.0,1 +25348,16,0.0,2,2.0526041984558105,349,0.0,1 +25349,16,1.0,2,1.306610345840454,350,1.0,1 +25350,16,1.0,2,1.1836110353469849,351,0.0,1 +25351,16,0.0,2,1.4146089553833008,352,1.0,1 +25352,16,0.0,2,2.224612236022949,353,1.0,1 +25353,16,0.0,2,1.146610975265503,354,1.0,1 +25354,16,0.0,2,1.8986027240753174,355,1.0,1 +25355,16,0.0,2,1.7526047229766846,356,1.0,1 +25356,16,0.0,2,1.358609676361084,357,1.0,1 +25357,16,0.0,2,1.1756110191345215,358,0.0,1 +25358,16,0.0,2,1.7426047325134277,359,1.0,1 +25359,16,0.0,2,1.3056104183197021,360,0.0,1 +25360,16,1.0,2,1.6206064224243164,361,0.0,1 +25361,16,1.0,2,2.3786191940307617,362,0.0,1 +25362,16,0.0,2,1.2496111392974854,363,1.0,1 +25363,16,0.0,2,1.3916093111038208,364,1.0,1 +25364,16,0.0,2,1.734604835510254,365,1.0,1 +25365,16,0.0,2,1.2556110620498657,366,1.0,1 +25366,16,0.0,2,1.201611042022705,367,1.0,1 +25367,16,0.0,2,1.3296101093292236,368,1.0,1 +25368,16,0.0,2,1.406609058380127,369,1.0,1 +25369,16,0.0,2,1.1206108331680298,370,0.0,1 +25370,16,0.0,2,1.2176110744476318,371,1.0,1 +25371,16,0.0,2,1.1866110563278198,372,1.0,1 +25372,16,0.0,2,1.1166108846664429,373,0.0,1 +25373,16,1.0,2,1.2096110582351685,374,0.0,1 +25374,16,0.0,2,1.2226110696792603,375,0.0,1 +25375,16,0.0,2,1.781604290008545,376,0.0,1 +25376,16,0.0,2,2.2676141262054443,377,1.0,1 +25377,16,0.0,2,1.2426111698150635,378,1.0,1 +25378,16,0.0,2,1.1516109704971313,379,1.0,1 +25379,16,0.0,2,1.0966107845306396,380,0.0,1 +25380,16,1.0,2,1.7196050882339478,381,1.0,1 +25381,16,1.0,2,1.3986091613769531,382,0.0,1 +25382,16,1.0,2,1.8446035385131836,383,1.0,1 +25383,16,1.0,2,2.432621955871582,384,1.0,1 +25384,16,1.0,2,1.9276024103164673,385,1.0,1 +25385,16,1.0,2,1.5266075134277344,386,0.0,1 +25386,16,0.0,2,1.2756108045578003,387,0.0,1 +25387,16,0.0,2,1.4186089038848877,388,1.0,1 +25388,16,0.0,2,1.0926108360290527,389,1.0,1 +25389,16,1.0,2,1.6076065301895142,390,1.0,1 +25390,16,1.0,2,1.728605031967163,391,0.0,1 +25391,16,0.0,2,1.1556109189987183,392,1.0,1 +25392,16,0.0,2,1.6226062774658203,393,0.0,1 +25393,16,1.0,2,1.4966078996658325,394,0.0,1 +25394,16,0.0,2,1.1876109838485718,395,0.0,1 +25395,16,0.0,2,1.8136038780212402,396,1.0,1 +25396,16,0.0,2,1.1646109819412231,397,0.0,1 +25397,16,0.0,2,1.313610315322876,398,0.0,1 +25398,16,1.0,2,1.54160737991333,399,0.0,1 +25399,16,1.0,2,1.3976092338562012,400,1.0,1 +25400,16,1.0,2,1.548607349395752,401,1.0,1 +25401,16,1.0,2,1.2456111907958984,402,1.0,1 +25402,16,1.0,2,1.7906041145324707,403,1.0,1 +25403,16,1.0,2,1.6286063194274902,404,0.0,1 +25404,16,1.0,2,1.247611165046692,405,1.0,1 +25405,16,1.0,2,1.1236108541488647,406,0.0,1 +25406,16,0.0,2,2.1106066703796387,407,0.0,1 +25407,16,1.0,2,1.9416022300720215,408,1.0,1 +25408,16,1.0,2,1.306610345840454,409,0.0,1 +25409,16,0.0,2,1.965601921081543,410,0.0,1 +25410,16,0.0,2,1.3426098823547363,411,1.0,1 +25411,16,0.0,2,1.5076078176498413,412,1.0,1 +25412,16,0.0,2,1.3376100063323975,413,0.0,1 +25413,16,0.0,2,1.3446098566055298,414,1.0,1 +25414,16,0.0,2,1.6016066074371338,415,0.0,1 +25415,16,1.0,2,2.0036017894744873,416,1.0,1 +25416,16,1.0,2,1.4396086931228638,417,0.0,1 +25417,16,0.0,2,2.0536041259765625,418,0.0,1 +25418,16,1.0,2,1.14461088180542,419,0.0,1 +25419,16,1.0,2,1.7756043672561646,420,1.0,1 +25420,16,1.0,2,1.8276036977767944,421,0.0,1 +25421,16,0.0,2,2.68363356590271,422,0.0,1 +25422,16,1.0,2,1.5786068439483643,423,0.0,1 +25423,16,1.0,2,1.9116026163101196,424,1.0,1 +25424,16,1.0,2,1.7126052379608154,425,0.0,1 +25425,16,0.0,2,1.1766109466552734,426,0.0,1 +25426,16,1.0,2,1.9316023588180542,427,1.0,1 +25427,16,1.0,2,1.6466059684753418,428,0.0,1 +25428,16,0.0,2,1.2176110744476318,429,0.0,1 +25429,16,1.0,2,1.4336087703704834,430,0.0,1 +25430,16,1.0,2,1.3596097230911255,431,1.0,1 +25431,16,1.0,2,1.5996066331863403,432,1.0,1 +25432,16,1.0,2,1.3886092901229858,433,0.0,1 +25433,16,1.0,2,1.401609182357788,434,0.0,1 +25434,16,1.0,2,1.729604959487915,435,1.0,1 +25435,16,1.0,2,1.4666082859039307,436,1.0,1 +25436,16,1.0,2,1.2866106033325195,437,0.0,1 +25437,16,1.0,2,2.0136022567749023,438,0.0,1 +25438,16,0.0,2,1.1396108865737915,439,1.0,1 +25439,16,0.0,2,1.6066064834594727,440,1.0,1 +25440,16,0.0,2,1.2336111068725586,441,1.0,1 +25441,16,0.0,2,1.2186111211776733,442,1.0,1 +25442,16,0.0,2,1.1216108798980713,443,0.0,1 +25443,16,0.0,2,1.4306087493896484,444,0.0,1 +25444,16,0.0,2,1.8106038570404053,445,0.0,1 +25445,16,0.0,2,1.2346111536026,446,0.0,1 +25446,16,0.0,2,1.5876067876815796,447,1.0,1 +25447,16,0.0,2,1.707605242729187,448,0.0,1 +25448,16,1.0,2,1.1166108846664429,449,0.0,1 +25449,16,1.0,2,1.3966091871261597,450,0.0,1 +25450,16,0.0,2,1.261610984802246,451,1.0,1 +25451,16,0.0,2,1.1026108264923096,452,0.0,1 +25452,16,0.0,2,1.310610294342041,453,0.0,1 +25453,16,0.0,2,1.3246101140975952,454,1.0,1 +25454,16,0.0,2,1.2266111373901367,455,0.0,1 +25455,16,0.0,2,1.1196109056472778,456,0.0,1 +25456,16,1.0,2,2.402620315551758,457,0.0,1 +25457,16,0.0,2,2.2926154136657715,458,0.0,1 +25458,16,0.0,2,1.7686045169830322,459,0.0,1 +25459,16,0.0,2,1.6016066074371338,460,1.0,1 +25460,16,0.0,2,1.1916110515594482,461,1.0,1 +25461,16,0.0,2,1.1586109399795532,462,1.0,1 +25462,16,0.0,2,1.8596032857894897,463,0.0,1 +25463,16,0.0,2,1.2236111164093018,464,0.0,1 +25464,16,0.0,2,1.6726057529449463,465,1.0,1 +25465,16,0.0,2,1.3346099853515625,466,1.0,1 +25466,16,0.0,2,1.3156102895736694,467,0.0,1 +25467,16,0.0,2,1.2206110954284668,468,1.0,1 +25468,16,0.0,2,2.0466036796569824,469,0.0,1 +25469,16,0.0,2,1.6546058654785156,470,0.0,1 +25470,16,0.0,2,1.6456060409545898,471,0.0,1 +25471,16,1.0,2,1.5876067876815796,472,1.0,1 +25472,16,1.0,2,1.2966104745864868,473,1.0,1 +25473,16,1.0,2,1.2096110582351685,474,1.0,1 +25474,16,1.0,2,1.7626044750213623,475,0.0,1 +25475,16,1.0,2,2.2406129837036133,476,0.0,1 +25476,16,1.0,2,1.4206088781356812,477,1.0,1 +25477,16,1.0,2,1.3916093111038208,478,0.0,1 +25478,16,1.0,2,2.1076066493988037,479,0.0,1 +25479,16,1.0,2,2.0606045722961426,480,0.0,1 +25480,16,0.0,2,1.6236063241958618,481,0.0,1 +25481,16,0.0,2,1.4576084613800049,482,1.0,1 +25482,16,0.0,2,1.4576084613800049,483,0.0,1 +25483,16,1.0,2,1.1946110725402832,484,0.0,1 +25484,16,0.0,2,2.476624011993408,485,0.0,1 +25485,16,0.0,2,2.0556042194366455,486,0.0,1 +25486,16,0.0,2,2.0486040115356445,487,1.0,1 +25487,16,0.0,2,1.3286100625991821,488,1.0,1 +25488,16,0.0,2,1.3496098518371582,489,1.0,1 +25489,16,0.0,2,1.1366108655929565,490,0.0,1 +25490,16,0.0,2,1.3716095685958862,491,0.0,1 +25491,16,0.0,2,1.776604413986206,492,1.0,1 +25492,16,0.0,2,1.3936092853546143,493,0.0,1 +25493,16,0.0,2,1.354609727859497,494,0.0,1 +25494,16,0.0,2,1.428608775138855,495,0.0,1 +25495,16,1.0,2,1.4256088733673096,496,1.0,1 +25496,16,1.0,2,1.3046103715896606,497,1.0,1 +25497,16,1.0,2,1.177610993385315,498,1.0,1 +25498,16,1.0,2,1.5786068439483643,499,1.0,1 +25499,16,1.0,2,1.2836107015609741,500,1.0,1 +25500,17,1.0,0,1.6821250915527344,1,1.0,1 +25501,17,1.0,0,1.4311282634735107,2,0.0,1 +25502,17,0.0,0,1.7971235513687134,3,0.0,1 +25503,17,1.0,0,2.390136480331421,4,1.0,1 +25504,17,1.0,0,1.5061272382736206,5,1.0,1 +25505,17,1.0,0,1.1541297435760498,6,1.0,1 +25506,17,1.0,0,1.3781288862228394,7,1.0,1 +25507,17,1.0,0,1.376128911972046,8,1.0,1 +25508,17,1.0,0,1.5481266975402832,9,1.0,1 +25509,17,1.0,0,1.5001273155212402,10,0.0,1 +25510,17,0.0,0,1.4401280879974365,11,0.0,1 +25511,17,0.0,0,1.441128134727478,12,0.0,1 +25512,17,0.0,0,1.8141233921051025,13,0.0,1 +25513,17,0.0,0,1.493127465248108,14,0.0,1 +25514,17,0.0,0,1.9081220626831055,15,0.0,1 +25515,17,0.0,0,1.1841297149658203,16,0.0,1 +25516,17,0.0,0,1.346129298210144,17,0.0,1 +25517,17,1.0,0,1.4881274700164795,18,1.0,1 +25518,17,1.0,0,1.3881287574768066,19,1.0,1 +25519,17,1.0,0,1.209129810333252,20,1.0,1 +25520,17,1.0,0,1.651125431060791,21,1.0,1 +25521,17,1.0,0,1.4781275987625122,22,1.0,1 +25522,17,1.0,0,1.3841288089752197,23,1.0,1 +25523,17,1.0,0,1.4511280059814453,24,1.0,1 +25524,17,1.0,0,1.2991299629211426,25,1.0,1 +25525,17,1.0,0,1.5141271352767944,26,0.0,1 +25526,17,1.0,0,1.6191258430480957,27,1.0,1 +25527,17,1.0,0,1.353129267692566,28,1.0,1 +25528,17,1.0,0,1.3791289329528809,29,1.0,1 +25529,17,1.0,0,1.4721276760101318,30,1.0,1 +25530,17,1.0,0,1.277129888534546,31,1.0,1 +25531,17,1.0,0,1.5751264095306396,32,1.0,1 +25532,17,1.0,0,1.5721263885498047,33,1.0,1 +25533,17,1.0,0,1.5201270580291748,34,1.0,1 +25534,17,1.0,0,1.1711297035217285,35,1.0,1 +25535,17,1.0,0,1.2621299028396606,36,0.0,1 +25536,17,0.0,0,1.7741239070892334,37,0.0,1 +25537,17,1.0,0,1.3221296072006226,38,0.0,1 +25538,17,1.0,0,1.5711264610290527,39,1.0,1 +25539,17,1.0,0,1.765123963356018,40,1.0,1 +25540,17,1.0,0,1.3901287317276,41,1.0,1 +25541,17,1.0,0,1.1981297731399536,42,1.0,1 +25542,17,1.0,0,1.2281298637390137,43,0.0,1 +25543,17,1.0,0,1.2151298522949219,44,1.0,1 +25544,17,1.0,0,1.4341281652450562,45,1.0,1 +25545,17,1.0,0,1.3191297054290771,46,0.0,1 +25546,17,0.0,0,2.2471299171447754,47,0.0,1 +25547,17,0.0,0,1.2181298732757568,48,0.0,1 +25548,17,0.0,0,1.2141298055648804,49,0.0,1 +25549,17,1.0,0,1.9471216201782227,50,1.0,1 +25550,17,1.0,0,1.4571279287338257,51,1.0,1 +25551,17,1.0,0,1.6421256065368652,52,1.0,1 +25552,17,1.0,0,1.90512216091156,53,1.0,1 +25553,17,1.0,0,1.4271283149719238,54,1.0,1 +25554,17,1.0,0,1.602126121520996,55,1.0,1 +25555,17,1.0,0,1.6191258430480957,56,1.0,1 +25556,17,1.0,0,1.206129789352417,57,1.0,1 +25557,17,1.0,0,1.3131297826766968,58,1.0,1 +25558,17,1.0,0,1.445128083229065,59,1.0,1 +25559,17,1.0,0,1.4771276712417603,60,1.0,1 +25560,17,1.0,0,1.4951274394989014,61,1.0,1 +25561,17,1.0,0,1.3831288814544678,62,1.0,1 +25562,17,1.0,0,1.8641226291656494,63,1.0,1 +25563,17,1.0,0,1.6441254615783691,64,1.0,1 +25564,17,1.0,0,1.4321281909942627,65,1.0,1 +25565,17,1.0,0,1.266129970550537,66,0.0,1 +25566,17,0.0,0,1.6341257095336914,67,0.0,1 +25567,17,0.0,0,1.7591240406036377,68,0.0,1 +25568,17,1.0,0,2.0581209659576416,69,0.0,1 +25569,17,0.0,0,1.4621278047561646,70,0.0,1 +25570,17,1.0,0,1.3221296072006226,71,0.0,1 +25571,17,0.0,0,1.9891210794448853,72,0.0,1 +25572,17,1.0,0,2.179126739501953,73,1.0,1 +25573,17,1.0,0,1.44212806224823,74,1.0,1 +25574,17,1.0,0,1.209129810333252,75,1.0,1 +25575,17,1.0,0,1.2411298751831055,76,1.0,1 +25576,17,1.0,0,1.6441254615783691,77,1.0,1 +25577,17,1.0,0,1.2541298866271973,78,1.0,1 +25578,17,1.0,0,1.3641290664672852,79,0.0,1 +25579,17,1.0,0,1.9181220531463623,80,0.0,1 +25580,17,0.0,0,2.2241287231445312,81,0.0,1 +25581,17,0.0,0,1.3801288604736328,82,1.0,1 +25582,17,0.0,0,1.3991286754608154,83,0.0,1 +25583,17,1.0,0,1.1661297082901,84,1.0,1 +25584,17,1.0,0,1.3731290102005005,85,1.0,1 +25585,17,1.0,0,1.7131246328353882,86,1.0,1 +25586,17,0.0,0,1.5841262340545654,87,0.0,1 +25587,17,1.0,0,1.2311298847198486,88,1.0,1 +25588,17,1.0,0,1.2611298561096191,89,1.0,1 +25589,17,1.0,0,1.4321281909942627,90,1.0,1 +25590,17,1.0,0,1.6721251010894775,91,0.0,1 +25591,17,0.0,0,1.4251283407211304,92,1.0,1 +25592,17,0.0,0,1.1671297550201416,93,0.0,1 +25593,17,1.0,0,1.5831263065338135,94,1.0,1 +25594,17,1.0,0,1.350129246711731,95,1.0,1 +25595,17,1.0,0,1.2881299257278442,96,1.0,1 +25596,17,1.0,0,1.4091285467147827,97,1.0,1 +25597,17,1.0,0,1.4661277532577515,98,1.0,1 +25598,17,1.0,0,1.4431281089782715,99,1.0,1 +25599,17,1.0,0,1.3251296281814575,100,1.0,1 +25600,17,1.0,0,1.9671213626861572,101,1.0,1 +25601,17,1.0,0,1.7321243286132812,102,1.0,1 +25602,17,1.0,0,1.4591279029846191,103,1.0,1 +25603,17,1.0,0,1.5261269807815552,104,1.0,1 +25604,17,1.0,0,1.2251298427581787,105,1.0,1 +25605,17,1.0,0,1.4591279029846191,106,1.0,1 +25606,17,1.0,0,1.5821263790130615,107,0.0,1 +25607,17,0.0,0,1.5961260795593262,108,0.0,1 +25608,17,0.0,0,1.8471229076385498,109,1.0,1 +25609,17,0.0,0,1.2191298007965088,110,1.0,1 +25610,17,0.0,0,1.773123860359192,111,0.0,1 +25611,17,0.0,0,1.8701226711273193,112,0.0,1 +25612,17,1.0,0,2.158125638961792,113,1.0,1 +25613,17,0.0,0,1.2741299867630005,114,1.0,1 +25614,17,0.0,0,1.2711299657821655,115,0.0,1 +25615,17,1.0,0,2.0571208000183105,116,0.0,1 +25616,17,0.0,0,1.8791224956512451,117,1.0,1 +25617,17,0.0,0,1.5401268005371094,118,0.0,1 +25618,17,0.0,0,1.8591227531433105,119,1.0,1 +25619,17,0.0,0,1.1711297035217285,120,0.0,1 +25620,17,0.0,0,1.212129831314087,121,0.0,1 +25621,17,0.0,0,1.4221283197402954,122,0.0,1 +25622,17,0.0,0,2.3081326484680176,123,0.0,1 +25623,17,1.0,0,1.8091233968734741,124,1.0,1 +25624,17,1.0,0,1.5031273365020752,125,1.0,1 +25625,17,1.0,0,1.4261282682418823,126,1.0,1 +25626,17,1.0,0,1.2351298332214355,127,1.0,1 +25627,17,1.0,0,1.1741297245025635,128,1.0,1 +25628,17,1.0,0,1.397128701210022,129,1.0,1 +25629,17,1.0,0,1.4001286029815674,130,1.0,1 +25630,17,1.0,0,1.2881299257278442,131,1.0,1 +25631,17,1.0,0,1.277129888534546,132,1.0,1 +25632,17,1.0,0,1.5441267490386963,133,1.0,1 +25633,17,1.0,0,1.393128752708435,134,0.0,1 +25634,17,0.0,0,1.5521266460418701,135,0.0,1 +25635,17,1.0,0,1.2991299629211426,136,1.0,1 +25636,17,1.0,0,1.4571279287338257,137,1.0,1 +25637,17,1.0,0,1.2961299419403076,138,1.0,1 +25638,17,1.0,0,1.2911299467086792,139,1.0,1 +25639,17,1.0,0,1.467127799987793,140,1.0,1 +25640,17,1.0,0,1.3731290102005005,141,1.0,1 +25641,17,1.0,0,1.559126615524292,142,1.0,1 +25642,17,1.0,0,1.5271270275115967,143,1.0,1 +25643,17,1.0,0,1.2741299867630005,144,1.0,1 +25644,17,1.0,0,1.6941249370574951,145,1.0,1 +25645,17,0.0,0,1.464127779006958,146,0.0,1 +25646,17,1.0,0,1.3101297616958618,147,1.0,1 +25647,17,1.0,0,1.3611291646957397,148,1.0,1 +25648,17,1.0,0,1.17812979221344,149,1.0,1 +25649,17,1.0,0,1.3171297311782837,150,1.0,1 +25650,17,1.0,0,1.270129919052124,151,0.0,1 +25651,17,1.0,0,1.909122109413147,152,1.0,1 +25652,17,1.0,0,1.205129861831665,153,1.0,1 +25653,17,1.0,0,1.6011260747909546,154,1.0,1 +25654,17,1.0,0,1.8001234531402588,155,1.0,1 +25655,17,1.0,0,1.4431281089782715,156,1.0,1 +25656,17,1.0,0,1.3861287832260132,157,1.0,1 +25657,17,1.0,0,1.328129529953003,158,1.0,1 +25658,17,1.0,0,1.5651265382766724,159,0.0,1 +25659,17,1.0,0,2.0601210594177246,160,1.0,1 +25660,17,1.0,0,1.603126049041748,161,1.0,1 +25661,17,1.0,0,1.468127727508545,162,1.0,1 +25662,17,1.0,0,1.2461298704147339,163,1.0,1 +25663,17,1.0,0,1.3481292724609375,164,1.0,1 +25664,17,1.0,0,1.301129937171936,165,1.0,1 +25665,17,1.0,0,1.2941299676895142,166,1.0,1 +25666,17,1.0,0,1.4391281604766846,167,0.0,1 +25667,17,0.0,0,1.345129370689392,168,0.0,1 +25668,17,1.0,0,1.7591240406036377,169,0.0,1 +25669,17,0.0,0,1.2281298637390137,170,0.0,1 +25670,17,1.0,0,1.240129828453064,171,1.0,1 +25671,17,1.0,0,1.3341294527053833,172,1.0,1 +25672,17,1.0,0,1.2191298007965088,173,1.0,1 +25673,17,1.0,0,1.2221298217773438,174,1.0,1 +25674,17,0.0,0,1.1951297521591187,175,0.0,1 +25675,17,1.0,0,1.4871275424957275,176,1.0,1 +25676,17,0.0,0,1.1161296367645264,177,0.0,1 +25677,17,1.0,0,1.4561278820037842,178,0.0,1 +25678,17,0.0,0,1.2321298122406006,179,0.0,1 +25679,17,0.0,0,1.834123134613037,180,0.0,1 +25680,17,0.0,0,1.2991299629211426,181,0.0,1 +25681,17,0.0,0,2.3341338634490967,182,0.0,1 +25682,17,0.0,0,1.3361294269561768,183,0.0,1 +25683,17,1.0,0,2.180126667022705,184,1.0,1 +25684,17,1.0,0,1.4731277227401733,185,1.0,1 +25685,17,1.0,0,1.3111298084259033,186,1.0,1 +25686,17,1.0,0,1.9421217441558838,187,1.0,1 +25687,17,1.0,0,1.5261269807815552,188,1.0,1 +25688,17,1.0,0,1.3791289329528809,189,0.0,1 +25689,17,1.0,0,2.0821220874786377,190,1.0,1 +25690,17,1.0,0,1.3161296844482422,191,1.0,1 +25691,17,1.0,0,1.3181296586990356,192,1.0,1 +25692,17,1.0,0,1.2721298933029175,193,1.0,1 +25693,17,1.0,0,1.279129981994629,194,0.0,1 +25694,17,1.0,0,1.9521214962005615,195,1.0,1 +25695,17,1.0,0,1.2921299934387207,196,1.0,1 +25696,17,1.0,0,1.327129602432251,197,1.0,1 +25697,17,1.0,0,1.306129813194275,198,1.0,1 +25698,17,1.0,0,1.2891299724578857,199,1.0,1 +25699,17,1.0,0,1.3131297826766968,200,1.0,1 +25700,17,1.0,0,1.3581291437149048,201,1.0,1 +25701,17,1.0,0,1.3671290874481201,202,0.0,1 +25702,17,1.0,0,1.6211258172988892,203,1.0,1 +25703,17,1.0,0,1.3401293754577637,204,0.0,1 +25704,17,1.0,0,1.7041246891021729,205,1.0,1 +25705,17,1.0,0,1.2381298542022705,206,1.0,1 +25706,17,1.0,0,1.9411216974258423,207,1.0,1 +25707,17,1.0,0,1.4511280059814453,208,1.0,1 +25708,17,1.0,0,1.4501279592514038,209,1.0,1 +25709,17,1.0,0,1.2241297960281372,210,0.0,1 +25710,17,1.0,0,1.4941273927688599,211,1.0,1 +25711,17,1.0,0,1.4711277484893799,212,1.0,1 +25712,17,1.0,0,1.236129879951477,213,1.0,1 +25713,17,1.0,0,1.4361281394958496,214,1.0,1 +25714,17,1.0,0,1.5731264352798462,215,1.0,1 +25715,17,1.0,0,1.305129885673523,216,1.0,1 +25716,17,1.0,0,1.725124478340149,217,1.0,1 +25717,17,1.0,0,1.2941299676895142,218,1.0,1 +25718,17,1.0,0,1.6491254568099976,219,1.0,1 +25719,17,0.0,0,1.2591298818588257,220,0.0,1 +25720,17,1.0,0,1.5441267490386963,221,1.0,1 +25721,17,1.0,0,1.2911299467086792,222,1.0,1 +25722,17,1.0,0,1.243129849433899,223,1.0,1 +25723,17,1.0,0,1.5881261825561523,224,1.0,1 +25724,17,1.0,0,1.490127444267273,225,1.0,1 +25725,17,1.0,0,1.3421293497085571,226,1.0,1 +25726,17,1.0,0,1.2141298055648804,227,1.0,1 +25727,17,1.0,0,1.169129729270935,228,0.0,1 +25728,17,1.0,0,1.350129246711731,229,1.0,1 +25729,17,1.0,0,1.3591291904449463,230,1.0,1 +25730,17,1.0,0,1.4181283712387085,231,1.0,1 +25731,17,1.0,0,1.3001298904418945,232,1.0,1 +25732,17,1.0,0,1.4321281909942627,233,1.0,1 +25733,17,1.0,0,1.1591297388076782,234,1.0,1 +25734,17,1.0,0,1.3101297616958618,235,1.0,1 +25735,17,1.0,0,1.1861298084259033,236,0.0,1 +25736,17,0.0,0,1.445128083229065,237,1.0,1 +25737,17,0.0,0,1.516127109527588,238,0.0,1 +25738,17,0.0,0,1.5441267490386963,239,0.0,1 +25739,17,1.0,0,1.420128345489502,240,1.0,1 +25740,17,1.0,0,1.4561278820037842,241,1.0,1 +25741,17,1.0,0,1.5911262035369873,242,1.0,1 +25742,17,1.0,0,1.740124225616455,243,0.0,1 +25743,17,0.0,0,2.412137508392334,244,1.0,1 +25744,17,0.0,0,1.446128010749817,245,0.0,1 +25745,17,0.0,0,1.4571279287338257,246,0.0,1 +25746,17,1.0,0,1.3351294994354248,247,1.0,1 +25747,17,1.0,0,1.5421267747879028,248,1.0,1 +25748,17,1.0,0,1.3421293497085571,249,0.0,1 +25749,17,1.0,0,1.3511292934417725,250,1.0,1 +25750,17,1.0,0,1.8791224956512451,251,0.0,1 +25751,17,0.0,0,1.4011286497116089,252,0.0,1 +25752,17,0.0,0,1.4471280574798584,253,1.0,1 +25753,17,0.0,0,1.138129711151123,254,0.0,1 +25754,17,1.0,0,1.6351256370544434,255,1.0,1 +25755,17,1.0,0,1.5931261777877808,256,1.0,1 +25756,17,1.0,0,1.2651299238204956,257,1.0,1 +25757,17,1.0,0,1.3481292724609375,258,1.0,1 +25758,17,1.0,0,1.4971274137496948,259,1.0,1 +25759,17,1.0,0,1.277129888534546,260,1.0,1 +25760,17,1.0,0,1.2501299381256104,261,0.0,1 +25761,17,1.0,0,1.9441215991973877,262,1.0,1 +25762,17,1.0,0,1.397128701210022,263,1.0,1 +25763,17,1.0,0,1.508127212524414,264,1.0,1 +25764,17,1.0,0,1.3101297616958618,265,1.0,1 +25765,17,1.0,0,1.2991299629211426,266,1.0,1 +25766,17,1.0,0,1.2131297588348389,267,1.0,1 +25767,17,1.0,0,1.3171297311782837,268,1.0,1 +25768,17,1.0,0,1.209129810333252,269,1.0,1 +25769,17,1.0,0,1.3921287059783936,270,0.0,1 +25770,17,0.0,0,2.0801219940185547,271,0.0,1 +25771,17,0.0,0,1.9001221656799316,272,0.0,1 +25772,17,1.0,0,2.031120538711548,273,0.0,1 +25773,17,1.0,0,1.4031286239624023,274,1.0,1 +25774,17,1.0,0,1.3091298341751099,275,1.0,1 +25775,17,1.0,0,1.1931297779083252,276,1.0,1 +25776,17,1.0,0,1.2841299772262573,277,1.0,1 +25777,17,1.0,0,1.4481279850006104,278,0.0,1 +25778,17,0.0,0,1.8161232471466064,279,0.0,1 +25779,17,0.0,0,1.4731277227401733,280,0.0,1 +25780,17,1.0,0,1.7361242771148682,281,1.0,1 +25781,17,1.0,0,1.3001298904418945,282,1.0,1 +25782,17,1.0,0,1.3321294784545898,283,1.0,1 +25783,17,1.0,0,1.4791276454925537,284,1.0,1 +25784,17,1.0,0,1.306129813194275,285,1.0,1 +25785,17,1.0,0,1.398128628730774,286,1.0,1 +25786,17,1.0,0,1.2621299028396606,287,1.0,1 +25787,17,1.0,0,1.5861263275146484,288,0.0,1 +25788,17,0.0,0,1.9221220016479492,289,0.0,1 +25789,17,0.0,0,1.4331282377243042,290,0.0,1 +25790,17,1.0,0,2.0001208782196045,291,1.0,1 +25791,17,1.0,0,1.2521299123764038,292,1.0,1 +25792,17,1.0,0,1.1531296968460083,293,1.0,1 +25793,17,0.0,0,1.1591297388076782,294,0.0,1 +25794,17,1.0,0,1.8241231441497803,295,1.0,1 +25795,17,1.0,0,1.7721238136291504,296,1.0,1 +25796,17,1.0,0,1.2511298656463623,297,0.0,1 +25797,17,1.0,0,1.7641239166259766,298,1.0,1 +25798,17,1.0,0,1.17212975025177,299,0.0,1 +25799,17,0.0,0,1.9621214866638184,300,0.0,1 +25800,17,1.0,0,1.8271231651306152,301,1.0,1 +25801,17,1.0,0,1.4111285209655762,302,0.0,1 +25802,17,1.0,0,1.4921274185180664,303,1.0,1 +25803,17,1.0,0,1.4081284999847412,304,1.0,1 +25804,17,1.0,0,1.2201298475265503,305,1.0,1 +25805,17,1.0,0,1.3951287269592285,306,1.0,1 +25806,17,1.0,0,1.2881299257278442,307,1.0,1 +25807,17,1.0,0,1.3521292209625244,308,1.0,1 +25808,17,1.0,0,1.3881287574768066,309,0.0,1 +25809,17,1.0,0,1.8921222686767578,310,1.0,1 +25810,17,0.0,0,1.4731277227401733,311,0.0,1 +25811,17,1.0,0,1.420128345489502,312,0.0,1 +25812,17,0.0,0,1.1311296224594116,313,0.0,1 +25813,17,0.0,0,1.420128345489502,314,0.0,1 +25814,17,1.0,0,1.6181259155273438,315,1.0,1 +25815,17,1.0,0,1.327129602432251,316,1.0,1 +25816,17,1.0,0,1.2301298379898071,317,1.0,1 +25817,17,1.0,0,1.3031299114227295,318,1.0,1 +25818,17,1.0,0,1.209129810333252,319,0.0,1 +25819,17,1.0,0,1.5181270837783813,320,1.0,1 +25820,17,1.0,0,1.3551292419433594,321,1.0,1 +25821,17,1.0,0,1.2081297636032104,322,1.0,1 +25822,17,1.0,0,1.5231270790100098,323,1.0,1 +25823,17,1.0,0,1.4971274137496948,324,0.0,1 +25824,17,0.0,0,1.9601213932037354,325,0.0,1 +25825,17,1.0,0,1.3331295251846313,326,1.0,1 +25826,17,1.0,0,1.4071285724639893,327,1.0,1 +25827,17,1.0,0,1.1681296825408936,328,1.0,1 +25828,17,1.0,0,1.1651296615600586,329,1.0,1 +25829,17,1.0,0,1.270129919052124,330,1.0,1 +25830,17,1.0,0,1.4831275939941406,331,1.0,1 +25831,17,1.0,0,1.5651265382766724,332,1.0,1 +25832,17,0.0,0,1.3671290874481201,333,0.0,1 +25833,17,1.0,0,1.4001286029815674,334,1.0,1 +25834,17,1.0,0,1.1951297521591187,335,1.0,1 +25835,17,1.0,0,1.324129581451416,336,1.0,1 +25836,17,1.0,0,1.2301298379898071,337,1.0,1 +25837,17,1.0,0,1.441128134727478,338,0.0,1 +25838,17,0.0,0,1.6211258172988892,339,0.0,1 +25839,17,1.0,0,1.3471293449401855,340,1.0,1 +25840,17,1.0,0,1.5391268730163574,341,1.0,1 +25841,17,1.0,0,1.3001298904418945,342,1.0,1 +25842,17,1.0,0,1.331129550933838,343,1.0,1 +25843,17,1.0,0,1.647125482559204,344,1.0,1 +25844,17,1.0,0,1.2921299934387207,345,1.0,1 +25845,17,1.0,0,1.277129888534546,346,1.0,1 +25846,17,1.0,0,1.264129877090454,347,1.0,1 +25847,17,1.0,0,1.2541298866271973,348,1.0,1 +25848,17,1.0,0,1.58112633228302,349,1.0,1 +25849,17,1.0,0,1.5001273155212402,350,1.0,1 +25850,17,1.0,0,1.4131284952163696,351,0.0,1 +25851,17,0.0,0,1.5021272897720337,352,0.0,1 +25852,17,1.0,0,1.3171297311782837,353,1.0,1 +25853,17,1.0,0,1.4841275215148926,354,1.0,1 +25854,17,1.0,0,1.9261219501495361,355,1.0,1 +25855,17,1.0,0,1.331129550933838,356,1.0,1 +25856,17,1.0,0,1.7221245765686035,357,1.0,1 +25857,17,1.0,0,1.489127516746521,358,1.0,1 +25858,17,1.0,0,1.4401280879974365,359,1.0,1 +25859,17,1.0,0,1.2241297960281372,360,1.0,1 +25860,17,1.0,0,1.2141298055648804,361,1.0,1 +25861,17,1.0,0,1.2621299028396606,362,1.0,1 +25862,17,1.0,0,1.266129970550537,363,1.0,1 +25863,17,1.0,0,1.7051247358322144,364,1.0,1 +25864,17,1.0,0,1.4351282119750977,365,0.0,1 +25865,17,1.0,0,2.023120641708374,366,1.0,1 +25866,17,1.0,0,1.3791289329528809,367,1.0,1 +25867,17,1.0,0,1.266129970550537,368,1.0,1 +25868,17,1.0,0,1.7111246585845947,369,1.0,1 +25869,17,1.0,0,1.7181246280670166,370,1.0,1 +25870,17,1.0,0,1.212129831314087,371,1.0,1 +25871,17,1.0,0,1.3781288862228394,372,1.0,1 +25872,17,1.0,0,1.4311282634735107,373,0.0,1 +25873,17,1.0,0,1.813123345375061,374,1.0,1 +25874,17,1.0,0,1.6311256885528564,375,1.0,1 +25875,17,1.0,0,1.2871299982070923,376,1.0,1 +25876,17,1.0,0,1.3701289892196655,377,0.0,1 +25877,17,0.0,0,1.2231298685073853,378,0.0,1 +25878,17,1.0,0,1.4831275939941406,379,1.0,1 +25879,17,1.0,0,1.2221298217773438,380,1.0,1 +25880,17,1.0,0,1.3661290407180786,381,1.0,1 +25881,17,1.0,0,1.4521279335021973,382,1.0,1 +25882,17,1.0,0,1.3671290874481201,383,1.0,1 +25883,17,1.0,0,1.2921299934387207,384,1.0,1 +25884,17,1.0,0,1.608125925064087,385,1.0,1 +25885,17,1.0,0,1.6341257095336914,386,1.0,1 +25886,17,1.0,0,1.445128083229065,387,1.0,1 +25887,17,1.0,0,1.8671226501464844,388,1.0,1 +25888,17,1.0,0,1.5801262855529785,389,1.0,1 +25889,17,1.0,0,1.269129991531372,390,1.0,1 +25890,17,1.0,0,1.3351294994354248,391,1.0,1 +25891,17,1.0,0,1.3101297616958618,392,1.0,1 +25892,17,0.0,0,1.394128680229187,393,0.0,1 +25893,17,1.0,0,1.273129940032959,394,1.0,1 +25894,17,1.0,0,1.4981273412704468,395,1.0,1 +25895,17,1.0,0,1.6191258430480957,396,1.0,1 +25896,17,1.0,0,2.196127414703369,397,1.0,1 +25897,17,1.0,0,1.5131272077560425,398,0.0,1 +25898,17,0.0,0,1.6591253280639648,399,0.0,1 +25899,17,0.0,0,1.3571292161941528,400,1.0,1 +25900,17,0.0,0,1.5691264867782593,401,0.0,1 +25901,17,0.0,0,1.6751251220703125,402,1.0,1 +25902,17,0.0,0,1.2321298122406006,403,0.0,1 +25903,17,1.0,0,1.5891262292861938,404,1.0,1 +25904,17,1.0,0,1.4391281604766846,405,1.0,1 +25905,17,1.0,0,1.2351298332214355,406,1.0,1 +25906,17,1.0,0,1.4731277227401733,407,1.0,1 +25907,17,1.0,0,1.5951261520385742,408,1.0,1 +25908,17,1.0,0,1.3791289329528809,409,0.0,1 +25909,17,0.0,0,1.6151258945465088,410,1.0,1 +25910,17,0.0,0,1.9561214447021484,411,0.0,1 +25911,17,0.0,0,1.8931223154067993,412,0.0,1 +25912,17,0.0,0,1.397128701210022,413,1.0,1 +25913,17,0.0,0,1.909122109413147,414,0.0,1 +25914,17,1.0,0,1.4471280574798584,415,1.0,1 +25915,17,1.0,0,1.393128752708435,416,0.0,1 +25916,17,0.0,0,1.279129981994629,417,1.0,1 +25917,17,0.0,0,1.206129789352417,418,0.0,1 +25918,17,1.0,0,1.7131246328353882,419,1.0,1 +25919,17,1.0,0,1.302129864692688,420,1.0,1 +25920,17,1.0,0,1.5041272640228271,421,1.0,1 +25921,17,1.0,0,1.3291295766830444,422,1.0,1 +25922,17,1.0,0,1.2191298007965088,423,1.0,1 +25923,17,1.0,0,1.1951297521591187,424,1.0,1 +25924,17,1.0,0,1.3401293754577637,425,1.0,1 +25925,17,1.0,0,1.4881274700164795,426,0.0,1 +25926,17,1.0,0,1.3961286544799805,427,1.0,1 +25927,17,1.0,0,1.276129961013794,428,1.0,1 +25928,17,1.0,0,1.5871262550354004,429,1.0,1 +25929,17,1.0,0,1.4281282424926758,430,1.0,1 +25930,17,1.0,0,1.8191232681274414,431,1.0,1 +25931,17,1.0,0,1.267129898071289,432,1.0,1 +25932,17,1.0,0,1.264129877090454,433,1.0,1 +25933,17,1.0,0,1.4751276969909668,434,1.0,1 +25934,17,1.0,0,1.3621290922164917,435,1.0,1 +25935,17,1.0,0,1.3351294994354248,436,1.0,1 +25936,17,1.0,0,1.61012601852417,437,1.0,1 +25937,17,1.0,0,1.5491267442703247,438,1.0,1 +25938,17,1.0,0,1.2631299495697021,439,1.0,1 +25939,17,1.0,0,1.5171271562576294,440,1.0,1 +25940,17,1.0,0,1.861122727394104,441,1.0,1 +25941,17,1.0,0,1.6111259460449219,442,1.0,1 +25942,17,1.0,0,1.203129768371582,443,0.0,1 +25943,17,1.0,0,1.5491267442703247,444,1.0,1 +25944,17,1.0,0,1.3421293497085571,445,0.0,1 +25945,17,0.0,0,1.629125714302063,446,0.0,1 +25946,17,0.0,0,2.0861222743988037,447,0.0,1 +25947,17,1.0,0,2.034120559692383,448,0.0,1 +25948,17,0.0,0,1.3381294012069702,449,0.0,1 +25949,17,0.0,0,2.137124538421631,450,0.0,1 +25950,17,0.0,0,1.44212806224823,451,0.0,1 +25951,17,0.0,0,1.4391281604766846,452,0.0,1 +25952,17,1.0,0,1.5491267442703247,453,1.0,1 +25953,17,1.0,0,1.534126877784729,454,1.0,1 +25954,17,1.0,0,1.6231257915496826,455,1.0,1 +25955,17,1.0,0,1.3191297054290771,456,1.0,1 +25956,17,1.0,0,1.3511292934417725,457,1.0,1 +25957,17,1.0,0,1.2921299934387207,458,1.0,1 +25958,17,1.0,0,1.9011222124099731,459,1.0,1 +25959,17,1.0,0,1.323129653930664,460,1.0,1 +25960,17,1.0,0,1.742124319076538,461,1.0,1 +25961,17,1.0,0,1.5611265897750854,462,1.0,1 +25962,17,1.0,0,1.4431281089782715,463,0.0,1 +25963,17,1.0,0,1.3871288299560547,464,1.0,1 +25964,17,1.0,0,1.328129529953003,465,1.0,1 +25965,17,1.0,0,1.2491298913955688,466,1.0,1 +25966,17,1.0,0,1.2891299724578857,467,1.0,1 +25967,17,1.0,0,1.4261282682418823,468,1.0,1 +25968,17,1.0,0,1.6401255130767822,469,1.0,1 +25969,17,1.0,0,1.323129653930664,470,1.0,1 +25970,17,1.0,0,1.1981297731399536,471,1.0,1 +25971,17,1.0,0,1.9101221561431885,472,0.0,1 +25972,17,1.0,0,1.9871211051940918,473,1.0,1 +25973,17,1.0,0,1.2741299867630005,474,1.0,1 +25974,17,1.0,0,1.4301282167434692,475,1.0,1 +25975,17,1.0,0,1.6621253490447998,476,1.0,1 +25976,17,1.0,0,1.169129729270935,477,1.0,1 +25977,17,1.0,0,1.5821263790130615,478,1.0,1 +25978,17,1.0,0,1.7011247873306274,479,1.0,1 +25979,17,1.0,0,1.240129828453064,480,1.0,1 +25980,17,1.0,0,1.3091298341751099,481,1.0,1 +25981,17,1.0,0,1.3391294479370117,482,1.0,1 +25982,17,1.0,0,1.3031299114227295,483,1.0,1 +25983,17,1.0,0,1.3121297359466553,484,1.0,1 +25984,17,1.0,0,1.1801297664642334,485,1.0,1 +25985,17,1.0,0,1.5641264915466309,486,1.0,1 +25986,17,1.0,0,1.302129864692688,487,1.0,1 +25987,17,1.0,0,1.3591291904449463,488,1.0,1 +25988,17,1.0,0,1.3951287269592285,489,1.0,1 +25989,17,1.0,0,1.17812979221344,490,1.0,1 +25990,17,1.0,0,1.3421293497085571,491,1.0,1 +25991,17,1.0,0,1.2841299772262573,492,1.0,1 +25992,17,1.0,0,1.446128010749817,493,1.0,1 +25993,17,1.0,0,1.2291297912597656,494,0.0,1 +25994,17,0.0,0,1.6751251220703125,495,0.0,1 +25995,17,1.0,0,1.9611214399337769,496,1.0,1 +25996,17,1.0,0,1.2651299238204956,497,1.0,1 +25997,17,1.0,0,1.327129602432251,498,1.0,1 +25998,17,1.0,0,1.2911299467086792,499,1.0,1 +25999,17,1.0,0,1.3831288814544678,500,1.0,1 +26000,17,0.0,1,1.7711238861083984,1,0.0,1 +26001,17,1.0,1,1.3361294269561768,2,1.0,1 +26002,17,1.0,1,1.6421256065368652,3,1.0,1 +26003,17,1.0,1,1.1961297988891602,4,1.0,1 +26004,17,1.0,1,1.2811299562454224,5,0.0,1 +26005,17,0.0,1,1.4111285209655762,6,0.0,1 +26006,17,1.0,1,1.717124581336975,7,1.0,1 +26007,17,1.0,1,1.3891288042068481,8,1.0,1 +26008,17,1.0,1,1.6681251525878906,9,1.0,1 +26009,17,1.0,1,1.3041298389434814,10,1.0,1 +26010,17,1.0,1,2.185126781463623,11,1.0,1 +26011,17,1.0,1,1.5641264915466309,12,1.0,1 +26012,17,1.0,1,1.2821300029754639,13,1.0,1 +26013,17,1.0,1,1.563126564025879,14,1.0,1 +26014,17,1.0,1,1.4911274909973145,15,1.0,1 +26015,17,1.0,1,1.2951300144195557,16,0.0,1 +26016,17,0.0,1,1.4361281394958496,17,0.0,1 +26017,17,1.0,1,1.7111246585845947,18,1.0,1 +26018,17,1.0,1,1.4071285724639893,19,1.0,1 +26019,17,1.0,1,1.3911287784576416,20,1.0,1 +26020,17,1.0,1,1.4501279592514038,21,1.0,1 +26021,17,1.0,1,1.4241282939910889,22,1.0,1 +26022,17,1.0,1,1.2531299591064453,23,0.0,1 +26023,17,0.0,1,1.4541279077529907,24,1.0,1 +26024,17,0.0,1,1.4831275939941406,25,1.0,1 +26025,17,0.0,1,1.1591297388076782,26,0.0,1 +26026,17,1.0,1,1.327129602432251,27,1.0,1 +26027,17,1.0,1,1.1741297245025635,28,1.0,1 +26028,17,1.0,1,1.3521292209625244,29,1.0,1 +26029,17,1.0,1,1.7581241130828857,30,0.0,1 +26030,17,1.0,1,1.8851224184036255,31,1.0,1 +26031,17,1.0,1,1.5061272382736206,32,0.0,1 +26032,17,1.0,1,1.464127779006958,33,0.0,1 +26033,17,0.0,1,1.7081246376037598,34,0.0,1 +26034,17,1.0,1,1.5431268215179443,35,0.0,1 +26035,17,0.0,1,1.17812979221344,36,0.0,1 +26036,17,0.0,1,2.2661306858062744,37,1.0,1 +26037,17,0.0,1,1.3441293239593506,38,0.0,1 +26038,17,0.0,1,1.5131272077560425,39,1.0,1 +26039,17,0.0,1,1.3131297826766968,40,0.0,1 +26040,17,0.0,1,1.3841288089752197,41,0.0,1 +26041,17,1.0,1,1.5011273622512817,42,1.0,1 +26042,17,1.0,1,1.3621290922164917,43,1.0,1 +26043,17,1.0,1,1.3771289587020874,44,1.0,1 +26044,17,1.0,1,1.1711297035217285,45,1.0,1 +26045,17,1.0,1,1.2621299028396606,46,0.0,1 +26046,17,0.0,1,1.4831275939941406,47,1.0,1 +26047,17,0.0,1,1.236129879951477,48,0.0,1 +26048,17,0.0,1,1.1591297388076782,49,0.0,1 +26049,17,1.0,1,2.377135753631592,50,1.0,1 +26050,17,1.0,1,1.1881297826766968,51,1.0,1 +26051,17,1.0,1,1.2271298170089722,52,1.0,1 +26052,17,1.0,1,1.6181259155273438,53,1.0,1 +26053,17,1.0,1,1.3921287059783936,54,1.0,1 +26054,17,1.0,1,1.301129937171936,55,0.0,1 +26055,17,0.0,1,2.0961227416992188,56,0.0,1 +26056,17,1.0,1,1.8021235466003418,57,1.0,1 +26057,17,1.0,1,1.2451298236846924,58,1.0,1 +26058,17,1.0,1,1.606126070022583,59,0.0,1 +26059,17,1.0,1,1.606126070022583,60,1.0,1 +26060,17,1.0,1,1.92812180519104,61,1.0,1 +26061,17,1.0,1,1.3031299114227295,62,0.0,1 +26062,17,0.0,1,1.577126383781433,63,1.0,1 +26063,17,0.0,1,1.375128984451294,64,0.0,1 +26064,17,0.0,1,1.2851300239562988,65,0.0,1 +26065,17,1.0,1,1.651125431060791,66,1.0,1 +26066,17,1.0,1,1.4691277742385864,67,1.0,1 +26067,17,1.0,1,1.4961273670196533,68,1.0,1 +26068,17,1.0,1,1.931121826171875,69,1.0,1 +26069,17,1.0,1,2.031120538711548,70,1.0,1 +26070,17,1.0,1,1.9471216201782227,71,1.0,1 +26071,17,1.0,1,1.266129970550537,72,0.0,1 +26072,17,0.0,1,2.0871224403381348,73,1.0,1 +26073,17,0.0,1,1.3861287832260132,74,0.0,1 +26074,17,1.0,1,1.2551299333572388,75,0.0,1 +26075,17,0.0,1,1.4651278257369995,76,0.0,1 +26076,17,0.0,1,1.698124885559082,77,0.0,1 +26077,17,0.0,1,1.507127285003662,78,0.0,1 +26078,17,1.0,1,1.58112633228302,79,0.0,1 +26079,17,0.0,1,1.6211258172988892,80,0.0,1 +26080,17,0.0,1,1.4701277017593384,81,0.0,1 +26081,17,0.0,1,1.8251231908798218,82,0.0,1 +26082,17,0.0,1,1.3891288042068481,83,0.0,1 +26083,17,0.0,1,1.512127161026001,84,0.0,1 +26084,17,1.0,1,1.2711299657821655,85,1.0,1 +26085,17,1.0,1,1.41912841796875,86,1.0,1 +26086,17,1.0,1,1.1871297359466553,87,0.0,1 +26087,17,1.0,1,1.788123607635498,88,0.0,1 +26088,17,0.0,1,1.530126929283142,89,1.0,1 +26089,17,0.0,1,1.4871275424957275,90,0.0,1 +26090,17,0.0,1,1.5401268005371094,91,0.0,1 +26091,17,1.0,1,2.0481204986572266,92,1.0,1 +26092,17,1.0,1,1.3991286754608154,93,1.0,1 +26093,17,1.0,1,1.3521292209625244,94,0.0,1 +26094,17,0.0,1,1.8111233711242676,95,0.0,1 +26095,17,0.0,1,1.8551228046417236,96,1.0,1 +26096,17,0.0,1,1.2271298170089722,97,0.0,1 +26097,17,1.0,1,2.136124610900879,98,1.0,1 +26098,17,1.0,1,1.7311244010925293,99,1.0,1 +26099,17,1.0,1,1.8111233711242676,100,1.0,1 +26100,17,1.0,1,1.17812979221344,101,1.0,1 +26101,17,1.0,1,1.3131297826766968,102,1.0,1 +26102,17,1.0,1,2.151125431060791,103,1.0,1 +26103,17,1.0,1,1.460127830505371,104,1.0,1 +26104,17,1.0,1,1.8061234951019287,105,0.0,1 +26105,17,1.0,1,1.8531228303909302,106,0.0,1 +26106,17,0.0,1,1.2191298007965088,107,0.0,1 +26107,17,1.0,1,1.5501267910003662,108,1.0,1 +26108,17,1.0,1,1.5671265125274658,109,1.0,1 +26109,17,1.0,1,1.2251298427581787,110,0.0,1 +26110,17,1.0,1,1.350129246711731,111,1.0,1 +26111,17,1.0,1,1.4551279544830322,112,1.0,1 +26112,17,1.0,1,1.3391294479370117,113,1.0,1 +26113,17,1.0,1,1.3591291904449463,114,1.0,1 +26114,17,0.0,1,1.4111285209655762,115,0.0,1 +26115,17,1.0,1,1.5501267910003662,116,1.0,1 +26116,17,1.0,1,1.5231270790100098,117,0.0,1 +26117,17,0.0,1,2.165125846862793,118,0.0,1 +26118,17,1.0,1,1.9361217021942139,119,0.0,1 +26119,17,0.0,1,2.2241287231445312,120,0.0,1 +26120,17,0.0,1,1.327129602432251,121,0.0,1 +26121,17,0.0,1,1.7591240406036377,122,0.0,1 +26122,17,1.0,1,2.147125244140625,123,1.0,1 +26123,17,0.0,1,1.4551279544830322,124,0.0,1 +26124,17,1.0,1,1.9731212854385376,125,0.0,1 +26125,17,0.0,1,1.3431293964385986,126,0.0,1 +26126,17,1.0,1,1.1981297731399536,127,1.0,1 +26127,17,1.0,1,1.302129864692688,128,1.0,1 +26128,17,1.0,1,1.2741299867630005,129,1.0,1 +26129,17,1.0,1,2.0861222743988037,130,1.0,1 +26130,17,1.0,1,1.4511280059814453,131,1.0,1 +26131,17,1.0,1,1.236129879951477,132,1.0,1 +26132,17,1.0,1,1.2551299333572388,133,1.0,1 +26133,17,1.0,1,1.7681238651275635,134,0.0,1 +26134,17,1.0,1,1.8761224746704102,135,1.0,1 +26135,17,1.0,1,1.1911298036575317,136,0.0,1 +26136,17,1.0,1,1.7041246891021729,137,0.0,1 +26137,17,1.0,1,1.3771289587020874,138,0.0,1 +26138,17,0.0,1,1.5031273365020752,139,1.0,1 +26139,17,0.0,1,1.4211283922195435,140,0.0,1 +26140,17,0.0,1,1.4481279850006104,141,0.0,1 +26141,17,0.0,1,1.865122675895691,142,0.0,1 +26142,17,1.0,1,1.7581241130828857,143,1.0,1 +26143,17,1.0,1,1.2191298007965088,144,0.0,1 +26144,17,0.0,1,1.890122413635254,145,0.0,1 +26145,17,1.0,1,1.4321281909942627,146,0.0,1 +26146,17,1.0,1,1.7091246843338013,147,1.0,1 +26147,17,1.0,1,1.4751276969909668,148,0.0,1 +26148,17,1.0,1,1.92812180519104,149,1.0,1 +26149,17,1.0,1,1.4481279850006104,150,1.0,1 +26150,17,1.0,1,1.4361281394958496,151,1.0,1 +26151,17,1.0,1,1.2311298847198486,152,1.0,1 +26152,17,1.0,1,1.4011286497116089,153,1.0,1 +26153,17,1.0,1,1.4071285724639893,154,1.0,1 +26154,17,1.0,1,2.3421342372894287,155,0.0,1 +26155,17,1.0,1,1.4741276502609253,156,1.0,1 +26156,17,0.0,1,1.2411298751831055,157,0.0,1 +26157,17,1.0,1,1.8091233968734741,158,1.0,1 +26158,17,1.0,1,1.346129298210144,159,1.0,1 +26159,17,1.0,1,1.490127444267273,160,1.0,1 +26160,17,1.0,1,1.416128396987915,161,0.0,1 +26161,17,1.0,1,1.8501229286193848,162,1.0,1 +26162,17,1.0,1,1.7841236591339111,163,1.0,1 +26163,17,1.0,1,1.740124225616455,164,1.0,1 +26164,17,1.0,1,1.3141297101974487,165,1.0,1 +26165,17,1.0,1,1.3401293754577637,166,1.0,1 +26166,17,1.0,1,2.029120445251465,167,0.0,1 +26167,17,1.0,1,1.467127799987793,168,1.0,1 +26168,17,1.0,1,1.3991286754608154,169,1.0,1 +26169,17,1.0,1,1.375128984451294,170,1.0,1 +26170,17,1.0,1,1.6911249160766602,171,1.0,1 +26171,17,1.0,1,1.5641264915466309,172,1.0,1 +26172,17,1.0,1,1.2141298055648804,173,0.0,1 +26173,17,1.0,1,1.886122465133667,174,1.0,1 +26174,17,1.0,1,1.7751238346099854,175,1.0,1 +26175,17,1.0,1,1.2831299304962158,176,1.0,1 +26176,17,1.0,1,1.1891298294067383,177,1.0,1 +26177,17,1.0,1,1.3921287059783936,178,0.0,1 +26178,17,0.0,1,1.2851300239562988,179,1.0,1 +26179,17,0.0,1,1.3391294479370117,180,1.0,1 +26180,17,0.0,1,1.629125714302063,181,0.0,1 +26181,17,0.0,1,1.1741297245025635,182,0.0,1 +26182,17,0.0,1,1.8891223669052124,183,0.0,1 +26183,17,1.0,1,1.6431255340576172,184,0.0,1 +26184,17,1.0,1,1.2231298685073853,185,1.0,1 +26185,17,1.0,1,1.6281256675720215,186,1.0,1 +26186,17,1.0,1,1.4391281604766846,187,1.0,1 +26187,17,1.0,1,1.647125482559204,188,1.0,1 +26188,17,1.0,1,1.4031286239624023,189,0.0,1 +26189,17,0.0,1,1.7331243753433228,190,1.0,1 +26190,17,0.0,1,1.264129877090454,191,0.0,1 +26191,17,0.0,1,1.5361268520355225,192,1.0,1 +26192,17,0.0,1,1.5061272382736206,193,0.0,1 +26193,17,1.0,1,1.2181298732757568,194,1.0,1 +26194,17,1.0,1,1.239129900932312,195,0.0,1 +26195,17,0.0,1,2.3451342582702637,196,0.0,1 +26196,17,0.0,1,1.4321281909942627,197,0.0,1 +26197,17,0.0,1,1.7041246891021729,198,0.0,1 +26198,17,0.0,1,1.2891299724578857,199,0.0,1 +26199,17,1.0,1,1.5231270790100098,200,1.0,1 +26200,17,1.0,1,1.8851224184036255,201,1.0,1 +26201,17,1.0,1,1.320129632949829,202,1.0,1 +26202,17,1.0,1,1.63312566280365,203,1.0,1 +26203,17,1.0,1,1.328129529953003,204,1.0,1 +26204,17,1.0,1,1.4881274700164795,205,1.0,1 +26205,17,1.0,1,1.2841299772262573,206,1.0,1 +26206,17,1.0,1,1.2311298847198486,207,0.0,1 +26207,17,0.0,1,2.3021323680877686,208,0.0,1 +26208,17,1.0,1,1.4541279077529907,209,1.0,1 +26209,17,1.0,1,1.242129921913147,210,1.0,1 +26210,17,1.0,1,1.353129267692566,211,1.0,1 +26211,17,1.0,1,1.398128628730774,212,1.0,1 +26212,17,1.0,1,1.3291295766830444,213,0.0,1 +26213,17,0.0,1,1.464127779006958,214,0.0,1 +26214,17,0.0,1,1.516127109527588,215,0.0,1 +26215,17,1.0,1,1.7311244010925293,216,1.0,1 +26216,17,1.0,1,1.4131284952163696,217,1.0,1 +26217,17,1.0,1,1.2861299514770508,218,1.0,1 +26218,17,1.0,1,1.1611297130584717,219,1.0,1 +26219,17,1.0,1,1.647125482559204,220,1.0,1 +26220,17,1.0,1,1.4091285467147827,221,1.0,1 +26221,17,1.0,1,1.2341299057006836,222,1.0,1 +26222,17,1.0,1,1.4241282939910889,223,1.0,1 +26223,17,1.0,1,1.507127285003662,224,0.0,1 +26224,17,1.0,1,1.3101297616958618,225,1.0,1 +26225,17,1.0,1,1.4051285982131958,226,0.0,1 +26226,17,0.0,1,1.7271244525909424,227,0.0,1 +26227,17,0.0,1,1.1911298036575317,228,0.0,1 +26228,17,0.0,1,2.2451295852661133,229,0.0,1 +26229,17,1.0,1,1.233129858970642,230,1.0,1 +26230,17,1.0,1,1.7791237831115723,231,1.0,1 +26231,17,1.0,1,1.209129810333252,232,1.0,1 +26232,17,1.0,1,1.345129370689392,233,0.0,1 +26233,17,1.0,1,1.2381298542022705,234,0.0,1 +26234,17,0.0,1,1.2071298360824585,235,0.0,1 +26235,17,0.0,1,1.320129632949829,236,1.0,1 +26236,17,0.0,1,1.3331295251846313,237,1.0,1 +26237,17,0.0,1,1.1211296319961548,238,0.0,1 +26238,17,1.0,1,1.5991261005401611,239,0.0,1 +26239,17,0.0,1,2.2491297721862793,240,0.0,1 +26240,17,0.0,1,1.3031299114227295,241,0.0,1 +26241,17,1.0,1,1.490127444267273,242,0.0,1 +26242,17,0.0,1,1.5171271562576294,243,1.0,1 +26243,17,0.0,1,1.8481228351593018,244,0.0,1 +26244,17,0.0,1,1.7551240921020508,245,1.0,1 +26245,17,0.0,1,1.2901300191879272,246,1.0,1 +26246,17,0.0,1,1.243129849433899,247,0.0,1 +26247,17,1.0,1,1.2291297912597656,248,1.0,1 +26248,17,1.0,1,1.4371281862258911,249,0.0,1 +26249,17,0.0,1,1.7161245346069336,250,0.0,1 +26250,17,1.0,1,1.8191232681274414,251,1.0,1 +26251,17,1.0,1,1.3991286754608154,252,1.0,1 +26252,17,1.0,1,1.2521299123764038,253,0.0,1 +26253,17,0.0,1,2.017120838165283,254,0.0,1 +26254,17,1.0,1,1.9411216974258423,255,0.0,1 +26255,17,0.0,1,1.6091259717941284,256,1.0,1 +26256,17,0.0,1,1.2821300029754639,257,0.0,1 +26257,17,0.0,1,1.6841249465942383,258,0.0,1 +26258,17,1.0,1,1.813123345375061,259,1.0,1 +26259,17,1.0,1,1.5181270837783813,260,1.0,1 +26260,17,1.0,1,1.6041259765625,261,1.0,1 +26261,17,1.0,1,1.6051260232925415,262,1.0,1 +26262,17,1.0,1,1.5321269035339355,263,1.0,1 +26263,17,1.0,1,1.2101298570632935,264,1.0,1 +26264,17,1.0,1,1.200129747390747,265,1.0,1 +26265,17,1.0,1,1.2181298732757568,266,1.0,1 +26266,17,1.0,1,1.7801237106323242,267,1.0,1 +26267,17,1.0,1,1.2311298847198486,268,0.0,1 +26268,17,0.0,1,1.441128134727478,269,0.0,1 +26269,17,1.0,1,1.6601252555847168,270,1.0,1 +26270,17,1.0,1,1.243129849433899,271,0.0,1 +26271,17,0.0,1,1.239129900932312,272,0.0,1 +26272,17,1.0,1,1.2841299772262573,273,1.0,1 +26273,17,1.0,1,1.2751299142837524,274,1.0,1 +26274,17,1.0,1,1.1671297550201416,275,0.0,1 +26275,17,1.0,1,2.0101208686828613,276,1.0,1 +26276,17,1.0,1,1.415128469467163,277,0.0,1 +26277,17,1.0,1,1.7351243495941162,278,1.0,1 +26278,17,1.0,1,1.2491298913955688,279,1.0,1 +26279,17,1.0,1,1.750124216079712,280,1.0,1 +26280,17,1.0,1,1.6891249418258667,281,0.0,1 +26281,17,1.0,1,2.0381205081939697,282,1.0,1 +26282,17,1.0,1,1.4721276760101318,283,1.0,1 +26283,17,1.0,1,1.3111298084259033,284,0.0,1 +26284,17,0.0,1,1.9441215991973877,285,1.0,1 +26285,17,0.0,1,1.1611297130584717,286,1.0,1 +26286,17,0.0,1,1.2611298561096191,287,1.0,1 +26287,17,0.0,1,1.233129858970642,288,0.0,1 +26288,17,0.0,1,1.4071285724639893,289,1.0,1 +26289,17,0.0,1,1.2541298866271973,290,0.0,1 +26290,17,0.0,1,1.3731290102005005,291,0.0,1 +26291,17,1.0,1,1.372128963470459,292,1.0,1 +26292,17,1.0,1,1.3151297569274902,293,1.0,1 +26293,17,1.0,1,1.3731290102005005,294,1.0,1 +26294,17,1.0,1,1.7371243238449097,295,1.0,1 +26295,17,1.0,1,1.3621290922164917,296,0.0,1 +26296,17,1.0,1,1.9601213932037354,297,1.0,1 +26297,17,1.0,1,1.3191297054290771,298,1.0,1 +26298,17,0.0,1,1.2241297960281372,299,1.0,1 +26299,17,0.0,1,1.1571297645568848,300,1.0,1 +26300,17,0.0,1,1.6181259155273438,301,1.0,1 +26301,17,0.0,1,1.2141298055648804,302,0.0,1 +26302,17,1.0,1,1.698124885559082,303,1.0,1 +26303,17,1.0,1,1.5131272077560425,304,1.0,1 +26304,17,1.0,1,1.2321298122406006,305,0.0,1 +26305,17,0.0,1,1.746124267578125,306,0.0,1 +26306,17,0.0,1,1.6321256160736084,307,1.0,1 +26307,17,0.0,1,1.1861298084259033,308,0.0,1 +26308,17,1.0,1,1.773123860359192,309,1.0,1 +26309,17,1.0,1,1.3671290874481201,310,1.0,1 +26310,17,1.0,1,1.17812979221344,311,1.0,1 +26311,17,1.0,1,1.4801275730133057,312,1.0,1 +26312,17,1.0,1,1.2441298961639404,313,0.0,1 +26313,17,1.0,1,1.5451267957687378,314,0.0,1 +26314,17,1.0,1,1.4121284484863281,315,1.0,1 +26315,17,1.0,1,1.4351282119750977,316,1.0,1 +26316,17,1.0,1,1.533126950263977,317,1.0,1 +26317,17,1.0,1,1.4661277532577515,318,1.0,1 +26318,17,1.0,1,1.5181270837783813,319,1.0,1 +26319,17,1.0,1,1.233129858970642,320,1.0,1 +26320,17,1.0,1,1.7561240196228027,321,1.0,1 +26321,17,1.0,1,1.3581291437149048,322,1.0,1 +26322,17,1.0,1,1.4691277742385864,323,1.0,1 +26323,17,1.0,1,1.7131246328353882,324,1.0,1 +26324,17,1.0,1,1.489127516746521,325,1.0,1 +26325,17,1.0,1,1.3841288089752197,326,0.0,1 +26326,17,1.0,1,1.7861237525939941,327,0.0,1 +26327,17,0.0,1,1.1961297988891602,328,0.0,1 +26328,17,0.0,1,1.1921297311782837,329,0.0,1 +26329,17,1.0,1,1.267129898071289,330,1.0,1 +26330,17,1.0,1,1.2911299467086792,331,1.0,1 +26331,17,1.0,1,1.6111259460449219,332,1.0,1 +26332,17,1.0,1,1.4531279802322388,333,0.0,1 +26333,17,0.0,1,1.267129898071289,334,0.0,1 +26334,17,1.0,1,1.7371243238449097,335,1.0,1 +26335,17,1.0,1,1.375128984451294,336,1.0,1 +26336,17,1.0,1,1.4811276197433472,337,1.0,1 +26337,17,1.0,1,1.2011297941207886,338,1.0,1 +26338,17,1.0,1,1.4711277484893799,339,1.0,1 +26339,17,0.0,1,1.376128911972046,340,0.0,1 +26340,17,1.0,1,1.3651291131973267,341,1.0,1 +26341,17,1.0,1,1.2171298265457153,342,1.0,1 +26342,17,1.0,1,1.6761250495910645,343,0.0,1 +26343,17,0.0,1,1.608125925064087,344,1.0,1 +26344,17,0.0,1,1.5741264820098877,345,0.0,1 +26345,17,1.0,1,1.3391294479370117,346,1.0,1 +26346,17,1.0,1,1.2991299629211426,347,0.0,1 +26347,17,0.0,1,1.4241282939910889,348,1.0,1 +26348,17,0.0,1,1.4171284437179565,349,0.0,1 +26349,17,1.0,1,1.179129719734192,350,1.0,1 +26350,17,0.0,1,1.6751251220703125,351,0.0,1 +26351,17,1.0,1,1.6451255083084106,352,1.0,1 +26352,17,1.0,1,1.4651278257369995,353,1.0,1 +26353,17,1.0,1,1.3601291179656982,354,1.0,1 +26354,17,1.0,1,1.3831288814544678,355,1.0,1 +26355,17,1.0,1,1.3341294527053833,356,0.0,1 +26356,17,1.0,1,1.792123556137085,357,1.0,1 +26357,17,1.0,1,1.3701289892196655,358,0.0,1 +26358,17,0.0,1,1.3361294269561768,359,1.0,1 +26359,17,0.0,1,1.133129596710205,360,0.0,1 +26360,17,0.0,1,1.6371256113052368,361,1.0,1 +26361,17,0.0,1,1.1561297178268433,362,0.0,1 +26362,17,0.0,1,1.6121258735656738,363,1.0,1 +26363,17,0.0,1,1.13612961769104,364,1.0,1 +26364,17,0.0,1,1.1841297149658203,365,1.0,1 +26365,17,0.0,1,1.394128680229187,366,0.0,1 +26366,17,1.0,1,1.464127779006958,367,1.0,1 +26367,17,1.0,1,1.1521296501159668,368,0.0,1 +26368,17,0.0,1,1.6661252975463867,369,0.0,1 +26369,17,0.0,1,1.7931236028671265,370,0.0,1 +26370,17,0.0,1,1.7681238651275635,371,0.0,1 +26371,17,1.0,1,1.8531228303909302,372,1.0,1 +26372,17,1.0,1,1.7241244316101074,373,1.0,1 +26373,17,1.0,1,1.4821275472640991,374,1.0,1 +26374,17,1.0,1,1.3601291179656982,375,1.0,1 +26375,17,1.0,1,1.3321294784545898,376,1.0,1 +26376,17,1.0,1,1.5291270017623901,377,1.0,1 +26377,17,1.0,1,1.7091246843338013,378,1.0,1 +26378,17,1.0,1,1.538126826286316,379,1.0,1 +26379,17,1.0,1,1.2481298446655273,380,1.0,1 +26380,17,1.0,1,1.323129653930664,381,1.0,1 +26381,17,1.0,1,1.1911298036575317,382,0.0,1 +26382,17,1.0,1,1.3851288557052612,383,1.0,1 +26383,17,1.0,1,1.4271283149719238,384,1.0,1 +26384,17,1.0,1,1.6181259155273438,385,1.0,1 +26385,17,1.0,1,1.1901297569274902,386,0.0,1 +26386,17,1.0,1,1.3031299114227295,387,0.0,1 +26387,17,1.0,1,1.835123062133789,388,1.0,1 +26388,17,1.0,1,1.6171258687973022,389,0.0,1 +26389,17,1.0,1,1.5451267957687378,390,0.0,1 +26390,17,0.0,1,1.1741297245025635,391,0.0,1 +26391,17,1.0,1,1.8551228046417236,392,0.0,1 +26392,17,1.0,1,1.5761263370513916,393,0.0,1 +26393,17,1.0,1,2.107123374938965,394,1.0,1 +26394,17,1.0,1,1.20212984085083,395,1.0,1 +26395,17,1.0,1,1.323129653930664,396,0.0,1 +26396,17,0.0,1,1.8161232471466064,397,1.0,1 +26397,17,0.0,1,1.1681296825408936,398,0.0,1 +26398,17,1.0,1,1.6231257915496826,399,0.0,1 +26399,17,0.0,1,1.3381294012069702,400,0.0,1 +26400,17,1.0,1,1.88212251663208,401,1.0,1 +26401,17,0.0,1,1.2131297588348389,402,0.0,1 +26402,17,1.0,1,1.3621290922164917,403,1.0,1 +26403,17,1.0,1,1.4761276245117188,404,1.0,1 +26404,17,1.0,1,1.4331282377243042,405,1.0,1 +26405,17,1.0,1,1.375128984451294,406,1.0,1 +26406,17,1.0,1,1.3651291131973267,407,0.0,1 +26407,17,0.0,1,1.267129898071289,408,0.0,1 +26408,17,1.0,1,1.3291295766830444,409,1.0,1 +26409,17,1.0,1,1.530126929283142,410,0.0,1 +26410,17,1.0,1,2.0791220664978027,411,0.0,1 +26411,17,0.0,1,1.2441298961639404,412,1.0,1 +26412,17,0.0,1,1.61012601852417,413,0.0,1 +26413,17,0.0,1,1.4081284999847412,414,1.0,1 +26414,17,0.0,1,1.2461298704147339,415,0.0,1 +26415,17,0.0,1,1.323129653930664,416,1.0,1 +26416,17,0.0,1,1.7221245765686035,417,0.0,1 +26417,17,1.0,1,1.6121258735656738,418,0.0,1 +26418,17,0.0,1,1.5841262340545654,419,0.0,1 +26419,17,1.0,1,2.033120632171631,420,1.0,1 +26420,17,1.0,1,1.398128628730774,421,0.0,1 +26421,17,1.0,1,1.277129888534546,422,1.0,1 +26422,17,1.0,1,1.4971274137496948,423,1.0,1 +26423,17,1.0,1,1.6971248388290405,424,0.0,1 +26424,17,1.0,1,1.3521292209625244,425,1.0,1 +26425,17,1.0,1,1.4541279077529907,426,1.0,1 +26426,17,1.0,1,1.838123083114624,427,1.0,1 +26427,17,1.0,1,1.5941262245178223,428,1.0,1 +26428,17,1.0,1,1.5871262550354004,429,1.0,1 +26429,17,1.0,1,1.8621227741241455,430,1.0,1 +26430,17,1.0,1,1.6311256885528564,431,0.0,1 +26431,17,0.0,1,1.3381294012069702,432,1.0,1 +26432,17,0.0,1,1.4951274394989014,433,0.0,1 +26433,17,1.0,1,1.5971261262893677,434,0.0,1 +26434,17,1.0,1,1.629125714302063,435,1.0,1 +26435,17,1.0,1,1.3261295557022095,436,1.0,1 +26436,17,1.0,1,1.3101297616958618,437,1.0,1 +26437,17,1.0,1,1.3181296586990356,438,0.0,1 +26438,17,0.0,1,1.7011247873306274,439,0.0,1 +26439,17,1.0,1,2.217128276824951,440,0.0,1 +26440,17,0.0,1,2.133124351501465,441,0.0,1 +26441,17,1.0,1,2.0661213397979736,442,1.0,1 +26442,17,1.0,1,1.420128345489502,443,0.0,1 +26443,17,0.0,1,1.4971274137496948,444,0.0,1 +26444,17,1.0,1,1.486127495765686,445,1.0,1 +26445,17,1.0,1,1.4021285772323608,446,1.0,1 +26446,17,1.0,1,1.3811289072036743,447,1.0,1 +26447,17,1.0,1,1.559126615524292,448,1.0,1 +26448,17,1.0,1,1.5031273365020752,449,1.0,1 +26449,17,1.0,1,1.5701265335083008,450,1.0,1 +26450,17,1.0,1,1.4061285257339478,451,1.0,1 +26451,17,1.0,1,1.700124740600586,452,1.0,1 +26452,17,1.0,1,1.6241257190704346,453,1.0,1 +26453,17,1.0,1,1.2151298522949219,454,0.0,1 +26454,17,1.0,1,1.4881274700164795,455,1.0,1 +26455,17,1.0,1,1.4881274700164795,456,0.0,1 +26456,17,0.0,1,1.17812979221344,457,1.0,1 +26457,17,0.0,1,1.331129550933838,458,0.0,1 +26458,17,0.0,1,1.6011260747909546,459,1.0,1 +26459,17,0.0,1,1.1531296968460083,460,0.0,1 +26460,17,0.0,1,1.2071298360824585,461,1.0,1 +26461,17,1.0,1,1.2151298522949219,462,1.0,1 +26462,17,1.0,1,1.5291270017623901,463,1.0,1 +26463,17,0.0,1,1.8671226501464844,464,0.0,1 +26464,17,1.0,1,1.2911299467086792,465,0.0,1 +26465,17,0.0,1,2.2191286087036133,466,0.0,1 +26466,17,1.0,1,1.5311269760131836,467,0.0,1 +26467,17,0.0,1,1.4491280317306519,468,0.0,1 +26468,17,1.0,1,1.534126877784729,469,1.0,1 +26469,17,1.0,1,1.3401293754577637,470,1.0,1 +26470,17,1.0,1,1.4651278257369995,471,1.0,1 +26471,17,1.0,1,1.1491296291351318,472,0.0,1 +26472,17,0.0,1,1.725124478340149,473,1.0,1 +26473,17,0.0,1,1.236129879951477,474,0.0,1 +26474,17,0.0,1,1.133129596710205,475,0.0,1 +26475,17,0.0,1,1.3991286754608154,476,0.0,1 +26476,17,1.0,1,1.8231232166290283,477,0.0,1 +26477,17,0.0,1,1.2901300191879272,478,0.0,1 +26478,17,0.0,1,1.4971274137496948,479,0.0,1 +26479,17,0.0,1,2.0971226692199707,480,0.0,1 +26480,17,0.0,1,1.8261232376098633,481,0.0,1 +26481,17,0.0,1,1.4661277532577515,482,0.0,1 +26482,17,0.0,1,1.3411294221878052,483,1.0,1 +26483,17,0.0,1,1.5201270580291748,484,1.0,1 +26484,17,0.0,1,1.3221296072006226,485,1.0,1 +26485,17,0.0,1,1.3371294736862183,486,1.0,1 +26486,17,0.0,1,1.3471293449401855,487,0.0,1 +26487,17,0.0,1,1.264129877090454,488,0.0,1 +26488,17,1.0,1,1.5421267747879028,489,1.0,1 +26489,17,1.0,1,1.2631299495697021,490,0.0,1 +26490,17,0.0,1,1.3161296844482422,491,0.0,1 +26491,17,0.0,1,1.8561227321624756,492,0.0,1 +26492,17,0.0,1,1.3421293497085571,493,0.0,1 +26493,17,0.0,1,1.4991273880004883,494,1.0,1 +26494,17,0.0,1,1.508127212524414,495,0.0,1 +26495,17,1.0,1,1.3901287317276,496,1.0,1 +26496,17,1.0,1,1.7361242771148682,497,0.0,1 +26497,17,0.0,1,1.5571266412734985,498,0.0,1 +26498,17,0.0,1,1.1951297521591187,499,0.0,1 +26499,17,1.0,1,1.3841288089752197,500,1.0,1 +26500,17,0.0,2,1.650125503540039,1,1.0,1 +26501,17,0.0,2,1.5281269550323486,2,0.0,1 +26502,17,1.0,2,1.2261298894882202,3,1.0,1 +26503,17,1.0,2,1.559126615524292,4,1.0,1 +26504,17,1.0,2,1.650125503540039,5,0.0,1 +26505,17,0.0,2,1.6181259155273438,6,1.0,1 +26506,17,0.0,2,1.4531279802322388,7,0.0,1 +26507,17,0.0,2,1.511127233505249,8,0.0,1 +26508,17,1.0,2,1.9451216459274292,9,0.0,1 +26509,17,0.0,2,1.236129879951477,10,0.0,1 +26510,17,0.0,2,1.6571253538131714,11,1.0,1 +26511,17,0.0,2,1.3671290874481201,12,1.0,1 +26512,17,0.0,2,1.1491296291351318,13,1.0,1 +26513,17,0.0,2,1.4951274394989014,14,1.0,1 +26514,17,0.0,2,1.2681299448013306,15,1.0,1 +26515,17,0.0,2,1.3521292209625244,16,1.0,1 +26516,17,0.0,2,1.2751299142837524,17,0.0,1 +26517,17,1.0,2,2.0801219940185547,18,0.0,1 +26518,17,0.0,2,1.375128984451294,19,0.0,1 +26519,17,0.0,2,1.4081284999847412,20,1.0,1 +26520,17,0.0,2,1.3591291904449463,21,0.0,1 +26521,17,0.0,2,1.4481279850006104,22,0.0,1 +26522,17,0.0,2,1.530126929283142,23,0.0,1 +26523,17,0.0,2,2.2491297721862793,24,0.0,1 +26524,17,0.0,2,1.490127444267273,25,1.0,1 +26525,17,0.0,2,1.1401296854019165,26,0.0,1 +26526,17,0.0,2,1.5991261005401611,27,1.0,1 +26527,17,0.0,2,1.4241282939910889,28,1.0,1 +26528,17,0.0,2,2.0011210441589355,29,1.0,1 +26529,17,0.0,2,1.2521299123764038,30,1.0,1 +26530,17,0.0,2,1.2901300191879272,31,0.0,1 +26531,17,1.0,2,1.6011260747909546,32,1.0,1 +26532,17,1.0,2,1.4471280574798584,33,0.0,1 +26533,17,1.0,2,1.276129961013794,34,0.0,1 +26534,17,0.0,2,1.7551240921020508,35,1.0,1 +26535,17,0.0,2,1.270129919052124,36,0.0,1 +26536,17,1.0,2,1.306129813194275,37,1.0,1 +26537,17,1.0,2,1.4131284952163696,38,0.0,1 +26538,17,0.0,2,1.4311282634735107,39,0.0,1 +26539,17,0.0,2,1.346129298210144,40,0.0,1 +26540,17,0.0,2,2.0711216926574707,41,0.0,1 +26541,17,1.0,2,1.3071298599243164,42,0.0,1 +26542,17,1.0,2,1.323129653930664,43,0.0,1 +26543,17,0.0,2,1.3361294269561768,44,1.0,1 +26544,17,0.0,2,1.41912841796875,45,0.0,1 +26545,17,0.0,2,1.2621299028396606,46,1.0,1 +26546,17,0.0,2,1.1161296367645264,47,0.0,1 +26547,17,0.0,2,1.6881248950958252,48,1.0,1 +26548,17,0.0,2,1.746124267578125,49,0.0,1 +26549,17,0.0,2,2.126124143600464,50,1.0,1 +26550,17,0.0,2,1.279129981994629,51,0.0,1 +26551,17,1.0,2,1.1821297407150269,52,1.0,1 +26552,17,1.0,2,1.563126564025879,53,1.0,1 +26553,17,1.0,2,1.4531279802322388,54,0.0,1 +26554,17,0.0,2,1.7791237831115723,55,0.0,1 +26555,17,0.0,2,1.748124122619629,56,1.0,1 +26556,17,0.0,2,1.1921297311782837,57,0.0,1 +26557,17,1.0,2,1.7201244831085205,58,1.0,1 +26558,17,1.0,2,1.8561227321624756,59,1.0,1 +26559,17,1.0,2,1.3471293449401855,60,1.0,1 +26560,17,1.0,2,1.3331295251846313,61,0.0,1 +26561,17,1.0,2,1.887122392654419,62,1.0,1 +26562,17,1.0,2,1.243129849433899,63,1.0,1 +26563,17,1.0,2,1.3411294221878052,64,0.0,1 +26564,17,0.0,2,1.8371230363845825,65,0.0,1 +26565,17,0.0,2,1.4651278257369995,66,0.0,1 +26566,17,1.0,2,2.44313907623291,67,0.0,1 +26567,17,0.0,2,1.6141259670257568,68,0.0,1 +26568,17,1.0,2,2.148125171661377,69,0.0,1 +26569,17,0.0,2,1.6461255550384521,70,0.0,1 +26570,17,1.0,2,1.3851288557052612,71,1.0,1 +26571,17,1.0,2,1.3801288604736328,72,1.0,1 +26572,17,1.0,2,1.4521279335021973,73,0.0,1 +26573,17,1.0,2,1.2851300239562988,74,0.0,1 +26574,17,1.0,2,2.0081207752227783,75,0.0,1 +26575,17,0.0,2,1.2231298685073853,76,0.0,1 +26576,17,0.0,2,1.2781299352645874,77,0.0,1 +26577,17,1.0,2,1.8161232471466064,78,1.0,1 +26578,17,1.0,2,1.3221296072006226,79,1.0,1 +26579,17,1.0,2,1.3481292724609375,80,1.0,1 +26580,17,1.0,2,1.6271257400512695,81,1.0,1 +26581,17,1.0,2,1.2441298961639404,82,1.0,1 +26582,17,1.0,2,1.2071298360824585,83,1.0,1 +26583,17,1.0,2,1.2571299076080322,84,1.0,1 +26584,17,1.0,2,1.555126667022705,85,1.0,1 +26585,17,1.0,2,1.5251270532608032,86,0.0,1 +26586,17,1.0,2,1.6971248388290405,87,1.0,1 +26587,17,1.0,2,2.027120590209961,88,1.0,1 +26588,17,1.0,2,1.3821288347244263,89,0.0,1 +26589,17,1.0,2,2.2331290245056152,90,1.0,1 +26590,17,1.0,2,1.7551240921020508,91,0.0,1 +26591,17,1.0,2,2.0781219005584717,92,1.0,1 +26592,17,0.0,2,1.306129813194275,93,0.0,1 +26593,17,1.0,2,1.7491241693496704,94,1.0,1 +26594,17,1.0,2,1.4341281652450562,95,0.0,1 +26595,17,0.0,2,1.324129581451416,96,0.0,1 +26596,17,0.0,2,2.4831409454345703,97,1.0,1 +26597,17,0.0,2,1.2171298265457153,98,0.0,1 +26598,17,0.0,2,1.5031273365020752,99,0.0,1 +26599,17,1.0,2,1.6641252040863037,100,1.0,1 +26600,17,1.0,2,1.350129246711731,101,1.0,1 +26601,17,1.0,2,1.5141271352767944,102,1.0,1 +26602,17,1.0,2,1.2251298427581787,103,1.0,1 +26603,17,1.0,2,1.3901287317276,104,0.0,1 +26604,17,1.0,2,1.769123911857605,105,0.0,1 +26605,17,0.0,2,1.4021285772323608,106,1.0,1 +26606,17,0.0,2,1.4081284999847412,107,0.0,1 +26607,17,0.0,2,1.4761276245117188,108,0.0,1 +26608,17,0.0,2,1.5171271562576294,109,0.0,1 +26609,17,1.0,2,1.8741226196289062,110,0.0,1 +26610,17,0.0,2,1.8641226291656494,111,0.0,1 +26611,17,0.0,2,1.4741276502609253,112,0.0,1 +26612,17,0.0,2,1.8851224184036255,113,1.0,1 +26613,17,0.0,2,1.4511280059814453,114,1.0,1 +26614,17,0.0,2,1.1511297225952148,115,0.0,1 +26615,17,0.0,2,1.836122989654541,116,0.0,1 +26616,17,0.0,2,1.1841297149658203,117,1.0,1 +26617,17,0.0,2,1.6591253280639648,118,0.0,1 +26618,17,0.0,2,1.197129726409912,119,0.0,1 +26619,17,0.0,2,1.3661290407180786,120,1.0,1 +26620,17,0.0,2,1.236129879951477,121,1.0,1 +26621,17,0.0,2,1.1641297340393066,122,0.0,1 +26622,17,0.0,2,1.3671290874481201,123,0.0,1 +26623,17,0.0,2,1.3191297054290771,124,0.0,1 +26624,17,0.0,2,1.5011273622512817,125,1.0,1 +26625,17,0.0,2,1.3511292934417725,126,0.0,1 +26626,17,0.0,2,1.3471293449401855,127,0.0,1 +26627,17,1.0,2,1.695124864578247,128,0.0,1 +26628,17,1.0,2,1.5841262340545654,129,0.0,1 +26629,17,1.0,2,1.3091298341751099,130,1.0,1 +26630,17,1.0,2,1.5131272077560425,131,0.0,1 +26631,17,1.0,2,2.156125545501709,132,0.0,1 +26632,17,0.0,2,1.6131259202957153,133,0.0,1 +26633,17,0.0,2,1.703124761581421,134,0.0,1 +26634,17,1.0,2,2.2731308937072754,135,0.0,1 +26635,17,1.0,2,1.74312424659729,136,0.0,1 +26636,17,0.0,2,1.212129831314087,137,1.0,1 +26637,17,0.0,2,1.7181246280670166,138,1.0,1 +26638,17,0.0,2,1.4821275472640991,139,0.0,1 +26639,17,0.0,2,1.1681296825408936,140,1.0,1 +26640,17,0.0,2,1.1961297988891602,141,0.0,1 +26641,17,0.0,2,1.1561297178268433,142,0.0,1 +26642,17,0.0,2,1.331129550933838,143,0.0,1 +26643,17,0.0,2,2.0881223678588867,144,0.0,1 +26644,17,1.0,2,1.7111246585845947,145,0.0,1 +26645,17,0.0,2,1.6751251220703125,146,1.0,1 +26646,17,0.0,2,1.17812979221344,147,0.0,1 +26647,17,0.0,2,1.3401293754577637,148,1.0,1 +26648,17,0.0,2,1.2411298751831055,149,1.0,1 +26649,17,0.0,2,1.2341299057006836,150,0.0,1 +26650,17,0.0,2,2.0061209201812744,151,0.0,1 +26651,17,1.0,2,1.267129898071289,152,0.0,1 +26652,17,0.0,2,1.5531266927719116,153,0.0,1 +26653,17,0.0,2,1.394128680229187,154,0.0,1 +26654,17,1.0,2,1.5531266927719116,155,1.0,1 +26655,17,1.0,2,1.8811224699020386,156,0.0,1 +26656,17,0.0,2,2.3571348190307617,157,0.0,1 +26657,17,1.0,2,1.8031234741210938,158,0.0,1 +26658,17,0.0,2,1.5401268005371094,159,0.0,1 +26659,17,1.0,2,1.974121332168579,160,1.0,1 +26660,17,1.0,2,1.2711299657821655,161,1.0,1 +26661,17,1.0,2,1.3921287059783936,162,1.0,1 +26662,17,1.0,2,1.349129319190979,163,0.0,1 +26663,17,1.0,2,1.6901249885559082,164,0.0,1 +26664,17,0.0,2,1.9631214141845703,165,0.0,1 +26665,17,1.0,2,1.5001273155212402,166,1.0,1 +26666,17,1.0,2,1.6371256113052368,167,1.0,1 +26667,17,1.0,2,1.5411268472671509,168,0.0,1 +26668,17,1.0,2,2.155125617980957,169,0.0,1 +26669,17,0.0,2,1.305129885673523,170,1.0,1 +26670,17,0.0,2,1.1571297645568848,171,0.0,1 +26671,17,0.0,2,1.2261298894882202,172,0.0,1 +26672,17,0.0,2,1.346129298210144,173,0.0,1 +26673,17,0.0,2,1.2081297636032104,174,1.0,1 +26674,17,0.0,2,1.1681296825408936,175,0.0,1 +26675,17,1.0,2,1.8591227531433105,176,0.0,1 +26676,17,1.0,2,1.4801275730133057,177,1.0,1 +26677,17,1.0,2,1.2561298608779907,178,1.0,1 +26678,17,1.0,2,1.562126636505127,179,1.0,1 +26679,17,1.0,2,1.4941273927688599,180,1.0,1 +26680,17,1.0,2,1.7101247310638428,181,0.0,1 +26681,17,1.0,2,1.4371281862258911,182,0.0,1 +26682,17,0.0,2,2.2861316204071045,183,0.0,1 +26683,17,0.0,2,1.346129298210144,184,1.0,1 +26684,17,0.0,2,1.323129653930664,185,0.0,1 +26685,17,0.0,2,1.7241244316101074,186,0.0,1 +26686,17,0.0,2,1.353129267692566,187,1.0,1 +26687,17,0.0,2,1.277129888534546,188,0.0,1 +26688,17,0.0,2,2.465139865875244,189,0.0,1 +26689,17,1.0,2,1.7041246891021729,190,1.0,1 +26690,17,1.0,2,1.3371294736862183,191,0.0,1 +26691,17,1.0,2,1.8761224746704102,192,0.0,1 +26692,17,0.0,2,1.7711238861083984,193,0.0,1 +26693,17,0.0,2,1.3221296072006226,194,0.0,1 +26694,17,1.0,2,1.5831263065338135,195,0.0,1 +26695,17,1.0,2,1.4331282377243042,196,0.0,1 +26696,17,0.0,2,2.025120735168457,197,0.0,1 +26697,17,0.0,2,1.791123628616333,198,0.0,1 +26698,17,1.0,2,1.4171284437179565,199,0.0,1 +26699,17,0.0,2,1.6121258735656738,200,1.0,1 +26700,17,0.0,2,1.2581299543380737,201,0.0,1 +26701,17,0.0,2,2.3141329288482666,202,1.0,1 +26702,17,0.0,2,1.8511228561401367,203,0.0,1 +26703,17,1.0,2,1.3841288089752197,204,0.0,1 +26704,17,1.0,2,2.367135524749756,205,1.0,1 +26705,17,1.0,2,1.3841288089752197,206,0.0,1 +26706,17,0.0,2,1.3731290102005005,207,1.0,1 +26707,17,0.0,2,1.9401216506958008,208,1.0,1 +26708,17,0.0,2,1.1941298246383667,209,0.0,1 +26709,17,0.0,2,1.5191271305084229,210,1.0,1 +26710,17,0.0,2,1.8201231956481934,211,0.0,1 +26711,17,1.0,2,1.4831275939941406,212,0.0,1 +26712,17,0.0,2,1.533126950263977,213,1.0,1 +26713,17,0.0,2,1.5491267442703247,214,0.0,1 +26714,17,0.0,2,1.3891288042068481,215,1.0,1 +26715,17,0.0,2,1.2381298542022705,216,1.0,1 +26716,17,0.0,2,1.2631299495697021,217,0.0,1 +26717,17,0.0,2,1.3431293964385986,218,0.0,1 +26718,17,0.0,2,1.2451298236846924,219,0.0,1 +26719,17,0.0,2,1.5891262292861938,220,0.0,1 +26720,17,1.0,2,1.4021285772323608,221,1.0,1 +26721,17,1.0,2,1.415128469467163,222,1.0,1 +26722,17,1.0,2,1.3511292934417725,223,1.0,1 +26723,17,1.0,2,1.2861299514770508,224,1.0,1 +26724,17,1.0,2,1.3171297311782837,225,0.0,1 +26725,17,0.0,2,1.9951210021972656,226,1.0,1 +26726,17,0.0,2,1.1991298198699951,227,1.0,1 +26727,17,0.0,2,1.139129638671875,228,0.0,1 +26728,17,1.0,2,2.375135898590088,229,1.0,1 +26729,17,0.0,2,1.2881299257278442,230,0.0,1 +26730,17,1.0,2,2.0321204662323,231,0.0,1 +26731,17,1.0,2,2.0411205291748047,232,0.0,1 +26732,17,0.0,2,1.240129828453064,233,0.0,1 +26733,17,0.0,2,1.5251270532608032,234,0.0,1 +26734,17,0.0,2,2.0021209716796875,235,1.0,1 +26735,17,0.0,2,1.3071298599243164,236,1.0,1 +26736,17,0.0,2,1.302129864692688,237,0.0,1 +26737,17,0.0,2,1.9561214447021484,238,0.0,1 +26738,17,1.0,2,1.6191258430480957,239,0.0,1 +26739,17,0.0,2,1.997120976448059,240,0.0,1 +26740,17,1.0,2,1.3611291646957397,241,1.0,1 +26741,17,1.0,2,1.393128752708435,242,1.0,1 +26742,17,1.0,2,1.371129035949707,243,1.0,1 +26743,17,1.0,2,1.1861298084259033,244,0.0,1 +26744,17,1.0,2,1.4271283149719238,245,1.0,1 +26745,17,1.0,2,1.3371294736862183,246,0.0,1 +26746,17,1.0,2,1.4271283149719238,247,0.0,1 +26747,17,1.0,2,1.4261282682418823,248,0.0,1 +26748,17,1.0,2,1.490127444267273,249,1.0,1 +26749,17,1.0,2,1.375128984451294,250,0.0,1 +26750,17,0.0,2,1.4101284742355347,251,0.0,1 +26751,17,0.0,2,1.3211296796798706,252,0.0,1 +26752,17,0.0,2,2.017120838165283,253,1.0,1 +26753,17,0.0,2,1.3401293754577637,254,0.0,1 +26754,17,0.0,2,1.7271244525909424,255,1.0,1 +26755,17,0.0,2,1.3191297054290771,256,1.0,1 +26756,17,0.0,2,1.5421267747879028,257,0.0,1 +26757,17,1.0,2,1.8311231136322021,258,1.0,1 +26758,17,1.0,2,1.563126564025879,259,0.0,1 +26759,17,0.0,2,1.2311298847198486,260,0.0,1 +26760,17,0.0,2,1.41912841796875,261,1.0,1 +26761,17,0.0,2,1.1641297340393066,262,1.0,1 +26762,17,0.0,2,1.1731297969818115,263,0.0,1 +26763,17,0.0,2,1.3591291904449463,264,0.0,1 +26764,17,1.0,2,1.3321294784545898,265,1.0,1 +26765,17,1.0,2,1.276129961013794,266,1.0,1 +26766,17,1.0,2,1.4721276760101318,267,1.0,1 +26767,17,1.0,2,1.7301244735717773,268,1.0,1 +26768,17,1.0,2,1.4371281862258911,269,1.0,1 +26769,17,1.0,2,1.4561278820037842,270,0.0,1 +26770,17,1.0,2,1.463127851486206,271,1.0,1 +26771,17,1.0,2,1.5681264400482178,272,0.0,1 +26772,17,0.0,2,2.122123956680298,273,0.0,1 +26773,17,1.0,2,1.6421256065368652,274,1.0,1 +26774,17,1.0,2,1.560126543045044,275,0.0,1 +26775,17,1.0,2,1.3171297311782837,276,1.0,1 +26776,17,1.0,2,1.7261245250701904,277,1.0,1 +26777,17,1.0,2,1.3891288042068481,278,0.0,1 +26778,17,0.0,2,1.2081297636032104,279,1.0,1 +26779,17,0.0,2,1.298129916191101,280,0.0,1 +26780,17,1.0,2,1.5981261730194092,281,1.0,1 +26781,17,1.0,2,1.7531241178512573,282,0.0,1 +26782,17,0.0,2,1.2821300029754639,283,1.0,1 +26783,17,0.0,2,1.1661297082901,284,1.0,1 +26784,17,0.0,2,1.305129885673523,285,1.0,1 +26785,17,0.0,2,1.2491298913955688,286,0.0,1 +26786,17,1.0,2,1.4091285467147827,287,1.0,1 +26787,17,0.0,2,1.5031273365020752,288,0.0,1 +26788,17,0.0,2,1.8011234998703003,289,1.0,1 +26789,17,0.0,2,1.441128134727478,290,1.0,1 +26790,17,0.0,2,1.5871262550354004,291,0.0,1 +26791,17,1.0,2,1.4531279802322388,292,1.0,1 +26792,17,1.0,2,1.4051285982131958,293,0.0,1 +26793,17,0.0,2,1.9611214399337769,294,0.0,1 +26794,17,0.0,2,1.6801249980926514,295,1.0,1 +26795,17,0.0,2,1.394128680229187,296,0.0,1 +26796,17,1.0,2,1.792123556137085,297,0.0,1 +26797,17,0.0,2,1.6971248388290405,298,0.0,1 +26798,17,1.0,2,1.7201244831085205,299,0.0,1 +26799,17,1.0,2,1.5961260795593262,300,1.0,1 +26800,17,1.0,2,1.4351282119750977,301,0.0,1 +26801,17,1.0,2,1.2221298217773438,302,1.0,1 +26802,17,1.0,2,1.3801288604736328,303,0.0,1 +26803,17,0.0,2,1.331129550933838,304,0.0,1 +26804,17,0.0,2,1.5931261777877808,305,1.0,1 +26805,17,0.0,2,1.1861298084259033,306,0.0,1 +26806,17,1.0,2,2.2731308937072754,307,0.0,1 +26807,17,0.0,2,1.8951222896575928,308,1.0,1 +26808,17,0.0,2,1.4321281909942627,309,1.0,1 +26809,17,0.0,2,1.1621297597885132,310,1.0,1 +26810,17,0.0,2,1.4211283922195435,311,0.0,1 +26811,17,1.0,2,1.17212975025177,312,1.0,1 +26812,17,1.0,2,1.2461298704147339,313,0.0,1 +26813,17,0.0,2,1.398128628730774,314,0.0,1 +26814,17,1.0,2,1.8961222171783447,315,1.0,1 +26815,17,1.0,2,1.5141271352767944,316,0.0,1 +26816,17,0.0,2,1.3571292161941528,317,0.0,1 +26817,17,0.0,2,1.7071247100830078,318,1.0,1 +26818,17,0.0,2,2.0011210441589355,319,0.0,1 +26819,17,1.0,2,1.817123293876648,320,0.0,1 +26820,17,0.0,2,1.4821275472640991,321,1.0,1 +26821,17,0.0,2,1.2131297588348389,322,0.0,1 +26822,17,1.0,2,1.650125503540039,323,1.0,1 +26823,17,1.0,2,1.8291231393814087,324,0.0,1 +26824,17,1.0,2,1.746124267578125,325,1.0,1 +26825,17,1.0,2,1.3361294269561768,326,0.0,1 +26826,17,1.0,2,1.655125379562378,327,1.0,1 +26827,17,1.0,2,1.1591297388076782,328,0.0,1 +26828,17,1.0,2,1.652125358581543,329,0.0,1 +26829,17,0.0,2,1.7061247825622559,330,1.0,1 +26830,17,0.0,2,1.4481279850006104,331,0.0,1 +26831,17,0.0,2,1.3831288814544678,332,0.0,1 +26832,17,0.0,2,1.5511267185211182,333,0.0,1 +26833,17,0.0,2,1.3091298341751099,334,0.0,1 +26834,17,1.0,2,1.4041285514831543,335,0.0,1 +26835,17,1.0,2,1.55812668800354,336,1.0,1 +26836,17,1.0,2,1.2951300144195557,337,0.0,1 +26837,17,1.0,2,1.5931261777877808,338,0.0,1 +26838,17,1.0,2,1.5871262550354004,339,0.0,1 +26839,17,1.0,2,2.018120765686035,340,1.0,1 +26840,17,1.0,2,1.5971261262893677,341,0.0,1 +26841,17,1.0,2,1.9101221561431885,342,1.0,1 +26842,17,1.0,2,1.3191297054290771,343,1.0,1 +26843,17,1.0,2,1.3141297101974487,344,0.0,1 +26844,17,0.0,2,1.5211271047592163,345,0.0,1 +26845,17,1.0,2,1.7041246891021729,346,0.0,1 +26846,17,1.0,2,1.493127465248108,347,0.0,1 +26847,17,0.0,2,1.2041298151016235,348,0.0,1 +26848,17,0.0,2,1.3161296844482422,349,1.0,1 +26849,17,0.0,2,1.197129726409912,350,1.0,1 +26850,17,0.0,2,1.1871297359466553,351,0.0,1 +26851,17,1.0,2,2.166126012802124,352,0.0,1 +26852,17,1.0,2,1.3341294527053833,353,1.0,1 +26853,17,1.0,2,1.331129550933838,354,0.0,1 +26854,17,1.0,2,1.3101297616958618,355,1.0,1 +26855,17,1.0,2,1.890122413635254,356,1.0,1 +26856,17,1.0,2,1.493127465248108,357,1.0,1 +26857,17,1.0,2,1.3561291694641113,358,1.0,1 +26858,17,1.0,2,1.6571253538131714,359,0.0,1 +26859,17,0.0,2,1.3111298084259033,360,1.0,1 +26860,17,0.0,2,1.2571299076080322,361,0.0,1 +26861,17,0.0,2,1.3221296072006226,362,0.0,1 +26862,17,1.0,2,1.41912841796875,363,0.0,1 +26863,17,0.0,2,1.8211232423782349,364,0.0,1 +26864,17,0.0,2,1.4171284437179565,365,1.0,1 +26865,17,0.0,2,1.264129877090454,366,0.0,1 +26866,17,0.0,2,1.606126070022583,367,1.0,1 +26867,17,0.0,2,1.145129680633545,368,1.0,1 +26868,17,0.0,2,1.6721251010894775,369,0.0,1 +26869,17,0.0,2,1.6301257610321045,370,1.0,1 +26870,17,0.0,2,1.3411294221878052,371,0.0,1 +26871,17,1.0,2,1.463127851486206,372,1.0,1 +26872,17,1.0,2,1.4491280317306519,373,0.0,1 +26873,17,0.0,2,1.607125997543335,374,1.0,1 +26874,17,0.0,2,1.327129602432251,375,0.0,1 +26875,17,0.0,2,2.2111282348632812,376,1.0,1 +26876,17,0.0,2,1.298129916191101,377,1.0,1 +26877,17,0.0,2,1.1031296253204346,378,0.0,1 +26878,17,1.0,2,1.8481228351593018,379,1.0,1 +26879,17,1.0,2,1.4581278562545776,380,1.0,1 +26880,17,1.0,2,1.5781264305114746,381,0.0,1 +26881,17,0.0,2,1.9171220064163208,382,1.0,1 +26882,17,0.0,2,1.537126898765564,383,0.0,1 +26883,17,1.0,2,1.1911298036575317,384,1.0,1 +26884,17,1.0,2,1.890122413635254,385,1.0,1 +26885,17,1.0,2,1.7831237316131592,386,1.0,1 +26886,17,1.0,2,1.2191298007965088,387,0.0,1 +26887,17,1.0,2,1.394128680229187,388,0.0,1 +26888,17,0.0,2,1.5211271047592163,389,0.0,1 +26889,17,0.0,2,1.515127182006836,390,1.0,1 +26890,17,0.0,2,1.2491298913955688,391,1.0,1 +26891,17,0.0,2,1.197129726409912,392,0.0,1 +26892,17,0.0,2,1.4921274185180664,393,1.0,1 +26893,17,0.0,2,1.8471229076385498,394,1.0,1 +26894,17,0.0,2,1.206129789352417,395,1.0,1 +26895,17,0.0,2,1.1741297245025635,396,1.0,1 +26896,17,0.0,2,1.1211296319961548,397,0.0,1 +26897,17,0.0,2,1.2281298637390137,398,0.0,1 +26898,17,1.0,2,1.6821250915527344,399,1.0,1 +26899,17,1.0,2,1.394128680229187,400,1.0,1 +26900,17,1.0,2,1.4521279335021973,401,1.0,1 +26901,17,1.0,2,1.3191297054290771,402,1.0,1 +26902,17,1.0,2,1.533126950263977,403,1.0,1 +26903,17,1.0,2,1.1991298198699951,404,0.0,1 +26904,17,0.0,2,1.3561291694641113,405,1.0,1 +26905,17,0.0,2,1.1631296873092651,406,0.0,1 +26906,17,1.0,2,1.3111298084259033,407,0.0,1 +26907,17,1.0,2,1.3891288042068481,408,1.0,1 +26908,17,1.0,2,1.2461298704147339,409,1.0,1 +26909,17,1.0,2,1.270129919052124,410,1.0,1 +26910,17,1.0,2,1.883122444152832,411,1.0,1 +26911,17,1.0,2,1.2951300144195557,412,1.0,1 +26912,17,1.0,2,1.559126615524292,413,1.0,1 +26913,17,1.0,2,1.6621253490447998,414,1.0,1 +26914,17,1.0,2,1.267129898071289,415,1.0,1 +26915,17,1.0,2,1.1701297760009766,416,0.0,1 +26916,17,1.0,2,1.8411229848861694,417,1.0,1 +26917,17,1.0,2,1.3791289329528809,418,0.0,1 +26918,17,0.0,2,2.2281289100646973,419,0.0,1 +26919,17,0.0,2,1.3081297874450684,420,0.0,1 +26920,17,0.0,2,1.3381294012069702,421,0.0,1 +26921,17,0.0,2,1.169129729270935,422,0.0,1 +26922,17,0.0,2,1.1241296529769897,423,1.0,1 +26923,17,0.0,2,1.3321294784545898,424,0.0,1 +26924,17,1.0,2,1.791123628616333,425,1.0,1 +26925,17,1.0,2,1.3101297616958618,426,0.0,1 +26926,17,1.0,2,2.018120765686035,427,0.0,1 +26927,17,0.0,2,1.6681251525878906,428,1.0,1 +26928,17,0.0,2,1.5191271305084229,429,0.0,1 +26929,17,1.0,2,1.6201257705688477,430,1.0,1 +26930,17,1.0,2,1.4621278047561646,431,0.0,1 +26931,17,0.0,2,1.769123911857605,432,0.0,1 +26932,17,1.0,2,1.4491280317306519,433,1.0,1 +26933,17,1.0,2,1.6191258430480957,434,0.0,1 +26934,17,0.0,2,1.2921299934387207,435,1.0,1 +26935,17,1.0,2,1.17212975025177,436,0.0,1 +26936,17,0.0,2,1.6701252460479736,437,1.0,1 +26937,17,0.0,2,1.2011297941207886,438,0.0,1 +26938,17,0.0,2,1.4721276760101318,439,0.0,1 +26939,17,1.0,2,1.349129319190979,440,1.0,1 +26940,17,1.0,2,1.4501279592514038,441,0.0,1 +26941,17,0.0,2,1.200129747390747,442,0.0,1 +26942,17,1.0,2,2.2911319732666016,443,0.0,1 +26943,17,1.0,2,1.3781288862228394,444,1.0,1 +26944,17,1.0,2,1.2131297588348389,445,0.0,1 +26945,17,1.0,2,1.5441267490386963,446,1.0,1 +26946,17,1.0,2,1.2101298570632935,447,1.0,1 +26947,17,1.0,2,1.467127799987793,448,1.0,1 +26948,17,1.0,2,1.2621299028396606,449,0.0,1 +26949,17,1.0,2,1.3381294012069702,450,1.0,1 +26950,17,1.0,2,1.269129991531372,451,1.0,1 +26951,17,1.0,2,1.4551279544830322,452,0.0,1 +26952,17,1.0,2,1.3091298341751099,453,1.0,1 +26953,17,1.0,2,1.493127465248108,454,1.0,1 +26954,17,1.0,2,1.4041285514831543,455,1.0,1 +26955,17,1.0,2,1.3251296281814575,456,1.0,1 +26956,17,1.0,2,1.3251296281814575,457,0.0,1 +26957,17,1.0,2,1.4361281394958496,458,0.0,1 +26958,17,1.0,2,1.2141298055648804,459,1.0,1 +26959,17,1.0,2,1.880122423171997,460,1.0,1 +26960,17,1.0,2,1.2541298866271973,461,0.0,1 +26961,17,1.0,2,1.7261245250701904,462,0.0,1 +26962,17,1.0,2,1.324129581451416,463,1.0,1 +26963,17,1.0,2,1.3551292419433594,464,0.0,1 +26964,17,0.0,2,1.7081246376037598,465,0.0,1 +26965,17,1.0,2,1.6211258172988892,466,1.0,1 +26966,17,1.0,2,1.4961273670196533,467,1.0,1 +26967,17,1.0,2,1.1911298036575317,468,1.0,1 +26968,17,1.0,2,1.3591291904449463,469,1.0,1 +26969,17,1.0,2,1.7371243238449097,470,0.0,1 +26970,17,0.0,2,1.445128083229065,471,1.0,1 +26971,17,0.0,2,1.2621299028396606,472,0.0,1 +26972,17,1.0,2,1.3101297616958618,473,1.0,1 +26973,17,0.0,2,1.2381298542022705,474,0.0,1 +26974,17,1.0,2,1.1801297664642334,475,1.0,1 +26975,17,1.0,2,1.5251270532608032,476,1.0,1 +26976,17,1.0,2,1.4271283149719238,477,0.0,1 +26977,17,1.0,2,1.7721238136291504,478,0.0,1 +26978,17,0.0,2,1.537126898765564,479,0.0,1 +26979,17,0.0,2,1.2381298542022705,480,1.0,1 +26980,17,0.0,2,1.179129719734192,481,0.0,1 +26981,17,0.0,2,1.279129981994629,482,1.0,1 +26982,17,0.0,2,1.3891288042068481,483,1.0,1 +26983,17,0.0,2,1.4971274137496948,484,1.0,1 +26984,17,0.0,2,1.2651299238204956,485,0.0,1 +26985,17,0.0,2,2.2221286296844482,486,0.0,1 +26986,17,1.0,2,2.0661213397979736,487,1.0,1 +26987,17,1.0,2,1.8101234436035156,488,0.0,1 +26988,17,0.0,2,1.4321281909942627,489,0.0,1 +26989,17,1.0,2,1.5911262035369873,490,1.0,1 +26990,17,1.0,2,1.5131272077560425,491,0.0,1 +26991,17,0.0,2,1.2181298732757568,492,1.0,1 +26992,17,0.0,2,1.3211296796798706,493,0.0,1 +26993,17,0.0,2,1.7611240148544312,494,1.0,1 +26994,17,0.0,2,1.698124885559082,495,0.0,1 +26995,17,0.0,2,1.3701289892196655,496,0.0,1 +26996,17,1.0,2,1.8711225986480713,497,0.0,1 +26997,17,1.0,2,1.394128680229187,498,1.0,1 +26998,17,1.0,2,1.438128113746643,499,0.0,1 +26999,17,0.0,2,1.8011234998703003,500,1.0,1 +27000,18,1.0,0,1.6505966186523438,1,0.0,1 +27001,18,0.0,0,1.572597622871399,2,0.0,1 +27002,18,0.0,0,1.406599760055542,3,0.0,1 +27003,18,1.0,0,1.5295981168746948,4,1.0,1 +27004,18,1.0,0,1.4885987043380737,5,1.0,1 +27005,18,1.0,0,1.3756000995635986,6,1.0,1 +27006,18,1.0,0,1.3526004552841187,7,1.0,1 +27007,18,1.0,0,1.3786001205444336,8,1.0,1 +27008,18,0.0,0,1.7325955629348755,9,0.0,1 +27009,18,1.0,0,2.6646199226379395,10,1.0,1 +27010,18,1.0,0,2.049591541290283,11,1.0,1 +27011,18,1.0,0,1.245600938796997,12,1.0,1 +27012,18,0.0,0,1.616597056388855,13,0.0,1 +27013,18,1.0,0,1.4425992965698242,14,1.0,1 +27014,18,1.0,0,1.5035984516143799,15,1.0,1 +27015,18,1.0,0,1.730595588684082,16,1.0,1 +27016,18,1.0,0,1.641596794128418,17,1.0,1 +27017,18,1.0,0,1.3266007900238037,18,0.0,1 +27018,18,0.0,0,1.550597906112671,19,0.0,1 +27019,18,0.0,0,1.7905948162078857,20,0.0,1 +27020,18,0.0,0,1.3985998630523682,21,0.0,1 +27021,18,1.0,0,1.4465992450714111,22,1.0,1 +27022,18,1.0,0,2.08659291267395,23,0.0,1 +27023,18,0.0,0,1.5595977306365967,24,0.0,1 +27024,18,0.0,0,1.7735950946807861,25,0.0,1 +27025,18,1.0,0,2.063591957092285,26,1.0,1 +27026,18,1.0,0,2.4636106491088867,27,1.0,1 +27027,18,0.0,0,1.4425992965698242,28,0.0,1 +27028,18,1.0,0,2.4566102027893066,29,1.0,1 +27029,18,1.0,0,1.5345981121063232,30,1.0,1 +27030,18,1.0,0,1.5195982456207275,31,0.0,1 +27031,18,1.0,0,2.2335996627807617,32,1.0,1 +27032,18,1.0,0,2.261600971221924,33,0.0,1 +27033,18,0.0,0,1.5015984773635864,34,0.0,1 +27034,18,0.0,0,2.3756065368652344,35,1.0,1 +27035,18,1.0,0,1.6475965976715088,36,1.0,1 +27036,18,0.0,0,1.4815987348556519,37,0.0,1 +27037,18,1.0,0,1.3756000995635986,38,1.0,1 +27038,18,1.0,0,1.3496004343032837,39,1.0,1 +27039,18,1.0,0,1.3766001462936401,40,1.0,1 +27040,18,0.0,0,2.242600202560425,41,0.0,1 +27041,18,1.0,0,1.3995997905731201,42,1.0,1 +27042,18,0.0,0,1.285601019859314,43,0.0,1 +27043,18,1.0,0,2.3906071186065674,44,1.0,1 +27044,18,1.0,0,1.9135932922363281,45,1.0,1 +27045,18,1.0,0,1.6145970821380615,46,1.0,1 +27046,18,1.0,0,1.362600326538086,47,1.0,1 +27047,18,1.0,0,2.004591941833496,48,1.0,1 +27048,18,1.0,0,1.7615952491760254,49,1.0,1 +27049,18,1.0,0,1.3676002025604248,50,1.0,1 +27050,18,1.0,0,1.9325929880142212,51,1.0,1 +27051,18,0.0,0,1.3046010732650757,52,0.0,1 +27052,18,1.0,0,1.3486005067825317,53,1.0,1 +27053,18,1.0,0,1.4385993480682373,54,1.0,1 +27054,18,1.0,0,1.5335980653762817,55,1.0,1 +27055,18,1.0,0,1.826594352722168,56,1.0,1 +27056,18,1.0,0,1.3945999145507812,57,1.0,1 +27057,18,1.0,0,1.4445992708206177,58,1.0,1 +27058,18,1.0,0,1.9255931377410889,59,1.0,1 +27059,18,1.0,0,1.402599811553955,60,1.0,1 +27060,18,1.0,0,1.333600640296936,61,1.0,1 +27061,18,1.0,0,1.4385993480682373,62,0.0,1 +27062,18,0.0,0,1.5605977773666382,63,0.0,1 +27063,18,1.0,0,1.6685963869094849,64,0.0,1 +27064,18,0.0,0,1.1996008157730103,65,0.0,1 +27065,18,0.0,0,1.9435927867889404,66,1.0,1 +27066,18,0.0,0,2.013592004776001,67,0.0,1 +27067,18,0.0,0,1.4095996618270874,68,0.0,1 +27068,18,0.0,0,2.0015921592712402,69,0.0,1 +27069,18,1.0,0,1.4215995073318481,70,1.0,1 +27070,18,0.0,0,1.8975934982299805,71,0.0,1 +27071,18,1.0,0,1.3476004600524902,72,1.0,1 +27072,18,1.0,0,2.093593120574951,73,1.0,1 +27073,18,1.0,0,1.8305943012237549,74,1.0,1 +27074,18,1.0,0,2.6606197357177734,75,0.0,1 +27075,18,0.0,0,1.620597004890442,76,0.0,1 +27076,18,0.0,0,1.5005985498428345,77,0.0,1 +27077,18,0.0,0,2.7386233806610107,78,0.0,1 +27078,18,0.0,0,2.289602279663086,79,0.0,1 +27079,18,1.0,0,1.7575953006744385,80,1.0,1 +27080,18,1.0,0,1.4835987091064453,81,1.0,1 +27081,18,1.0,0,1.7145957946777344,82,1.0,1 +27082,18,1.0,0,1.7985947132110596,83,1.0,1 +27083,18,0.0,0,1.3686002492904663,84,1.0,1 +27084,18,1.0,0,2.2065985202789307,85,1.0,1 +27085,18,0.0,0,2.361605644226074,86,0.0,1 +27086,18,1.0,0,1.2666009664535522,87,1.0,1 +27087,18,1.0,0,1.4885987043380737,88,1.0,1 +27088,18,1.0,0,1.6155970096588135,89,0.0,1 +27089,18,1.0,0,1.255600929260254,90,1.0,1 +27090,18,1.0,0,1.9205931425094604,91,0.0,1 +27091,18,0.0,0,2.088593006134033,92,0.0,1 +27092,18,1.0,0,1.6725963354110718,93,1.0,1 +27093,18,1.0,0,1.4485992193222046,94,1.0,1 +27094,18,1.0,0,1.6245969533920288,95,1.0,1 +27095,18,1.0,0,1.5105984210968018,96,1.0,1 +27096,18,0.0,0,1.9075932502746582,97,1.0,1 +27097,18,0.0,0,1.6225969791412354,98,0.0,1 +27098,18,1.0,0,1.7135958671569824,99,1.0,1 +27099,18,1.0,0,1.8545939922332764,100,1.0,1 +27100,18,1.0,0,2.1395955085754395,101,1.0,1 +27101,18,0.0,0,2.05359148979187,102,0.0,1 +27102,18,0.0,0,1.215600848197937,103,0.0,1 +27103,18,1.0,0,1.593597412109375,104,1.0,1 +27104,18,1.0,0,1.6435966491699219,105,1.0,1 +27105,18,1.0,0,1.616597056388855,106,1.0,1 +27106,18,0.0,0,1.597597360610962,107,0.0,1 +27107,18,1.0,0,2.0335917472839355,108,1.0,1 +27108,18,1.0,0,2.076592445373535,109,0.0,1 +27109,18,0.0,0,1.8905935287475586,110,0.0,1 +27110,18,0.0,0,1.7905948162078857,111,0.0,1 +27111,18,0.0,0,1.8435940742492676,112,0.0,1 +27112,18,1.0,0,2.2225992679595947,113,1.0,1 +27113,18,1.0,0,1.3286007642745972,114,1.0,1 +27114,18,1.0,0,1.779594898223877,115,1.0,1 +27115,18,1.0,0,1.6145970821380615,116,1.0,1 +27116,18,1.0,0,1.80459463596344,117,1.0,1 +27117,18,1.0,0,1.7365955114364624,118,1.0,1 +27118,18,1.0,0,2.533613681793213,119,1.0,1 +27119,18,1.0,0,1.564597725868225,120,0.0,1 +27120,18,1.0,0,1.6225969791412354,121,1.0,1 +27121,18,1.0,0,1.733595609664917,122,1.0,1 +27122,18,1.0,0,2.1545960903167725,123,1.0,1 +27123,18,0.0,0,1.403599739074707,124,0.0,1 +27124,18,1.0,0,1.6665964126586914,125,1.0,1 +27125,18,1.0,0,1.6455967426300049,126,0.0,1 +27126,18,1.0,0,2.077592372894287,127,1.0,1 +27127,18,1.0,0,1.6935961246490479,128,1.0,1 +27128,18,1.0,0,1.9755923748016357,129,1.0,1 +27129,18,1.0,0,2.079592704772949,130,0.0,1 +27130,18,1.0,0,2.337604522705078,131,1.0,1 +27131,18,1.0,0,1.340600609779358,132,1.0,1 +27132,18,0.0,0,1.3396005630493164,133,1.0,1 +27133,18,0.0,0,1.5515978336334229,134,0.0,1 +27134,18,0.0,0,1.7675950527191162,135,0.0,1 +27135,18,0.0,0,1.5195982456207275,136,0.0,1 +27136,18,1.0,0,1.5535978078842163,137,1.0,1 +27137,18,1.0,0,2.0465915203094482,138,1.0,1 +27138,18,1.0,0,1.3726001977920532,139,1.0,1 +27139,18,0.0,0,1.246600866317749,140,0.0,1 +27140,18,1.0,0,2.0225918292999268,141,1.0,1 +27141,18,1.0,0,1.3236007690429688,142,0.0,1 +27142,18,0.0,0,1.6325968503952026,143,0.0,1 +27143,18,0.0,0,2.496612071990967,144,0.0,1 +27144,18,0.0,0,1.6215970516204834,145,0.0,1 +27145,18,1.0,0,2.592616558074951,146,1.0,1 +27146,18,1.0,0,1.3426005840301514,147,1.0,1 +27147,18,1.0,0,1.9265930652618408,148,1.0,1 +27148,18,1.0,0,1.6115970611572266,149,1.0,1 +27149,18,1.0,0,1.6135971546173096,150,0.0,1 +27150,18,0.0,0,1.9285930395126343,151,1.0,1 +27151,18,0.0,0,1.2106008529663086,152,0.0,1 +27152,18,1.0,0,2.2335996627807617,153,1.0,1 +27153,18,1.0,0,1.5115983486175537,154,1.0,1 +27154,18,1.0,0,1.4395992755889893,155,0.0,1 +27155,18,1.0,0,1.6625964641571045,156,0.0,1 +27156,18,0.0,0,1.8955934047698975,157,0.0,1 +27157,18,0.0,0,1.6695964336395264,158,0.0,1 +27158,18,0.0,0,1.8145945072174072,159,0.0,1 +27159,18,0.0,0,1.2296009063720703,160,1.0,1 +27160,18,0.0,0,1.638596773147583,161,0.0,1 +27161,18,0.0,0,1.5535978078842163,162,0.0,1 +27162,18,1.0,0,1.6595964431762695,163,1.0,1 +27163,18,1.0,0,1.5655977725982666,164,1.0,1 +27164,18,1.0,0,1.6985960006713867,165,1.0,1 +27165,18,1.0,0,1.4745988845825195,166,1.0,1 +27166,18,1.0,0,1.6685963869094849,167,1.0,1 +27167,18,1.0,0,1.5615978240966797,168,1.0,1 +27168,18,1.0,0,1.3796000480651855,169,1.0,1 +27169,18,1.0,0,1.5345981121063232,170,1.0,1 +27170,18,1.0,0,1.3486005067825317,171,1.0,1 +27171,18,1.0,0,1.7555952072143555,172,1.0,1 +27172,18,1.0,0,1.6035971641540527,173,1.0,1 +27173,18,1.0,0,1.3016010522842407,174,1.0,1 +27174,18,0.0,0,1.3466005325317383,175,0.0,1 +27175,18,1.0,0,1.359600305557251,176,1.0,1 +27176,18,0.0,0,2.013592004776001,177,0.0,1 +27177,18,1.0,0,1.3066010475158691,178,1.0,1 +27178,18,1.0,0,1.564597725868225,179,1.0,1 +27179,18,1.0,0,1.8435940742492676,180,1.0,1 +27180,18,0.0,0,2.1035938262939453,181,0.0,1 +27181,18,1.0,0,2.3736062049865723,182,1.0,1 +27182,18,0.0,0,1.1466007232666016,183,0.0,1 +27183,18,1.0,0,1.9955921173095703,184,1.0,1 +27184,18,1.0,0,1.917593240737915,185,0.0,1 +27185,18,1.0,0,1.6915960311889648,186,1.0,1 +27186,18,0.0,0,1.477598786354065,187,0.0,1 +27187,18,0.0,0,1.9315929412841797,188,0.0,1 +27188,18,1.0,0,1.682596206665039,189,1.0,1 +27189,18,1.0,0,1.5565978288650513,190,1.0,1 +27190,18,1.0,0,2.2265994548797607,191,1.0,1 +27191,18,0.0,0,1.6925960779190063,192,0.0,1 +27192,18,1.0,0,1.7735950946807861,193,0.0,1 +27193,18,1.0,0,2.2055983543395996,194,1.0,1 +27194,18,1.0,0,1.5705976486206055,195,0.0,1 +27195,18,0.0,0,1.6145970821380615,196,0.0,1 +27196,18,0.0,0,1.252600908279419,197,0.0,1 +27197,18,0.0,0,1.7235956192016602,198,0.0,1 +27198,18,1.0,0,2.536613941192627,199,1.0,1 +27199,18,1.0,0,1.3756000995635986,200,1.0,1 +27200,18,1.0,0,1.6995959281921387,201,1.0,1 +27201,18,1.0,0,1.6035971641540527,202,1.0,1 +27202,18,1.0,0,1.3236007690429688,203,1.0,1 +27203,18,1.0,0,1.6785962581634521,204,1.0,1 +27204,18,1.0,0,2.29960298538208,205,0.0,1 +27205,18,0.0,0,1.5265982151031494,206,0.0,1 +27206,18,1.0,0,3.019636631011963,207,1.0,1 +27207,18,1.0,0,1.2366008758544922,208,0.0,1 +27208,18,0.0,0,1.45159912109375,209,0.0,1 +27209,18,0.0,0,1.7895948886871338,210,0.0,1 +27210,18,0.0,0,1.2606009244918823,211,0.0,1 +27211,18,1.0,0,1.5075984001159668,212,1.0,1 +27212,18,1.0,0,2.348605155944824,213,1.0,1 +27213,18,1.0,0,1.7505953311920166,214,1.0,1 +27214,18,1.0,0,1.2476009130477905,215,1.0,1 +27215,18,0.0,0,1.1726007461547852,216,0.0,1 +27216,18,1.0,0,2.077592372894287,217,0.0,1 +27217,18,1.0,0,1.4235994815826416,218,1.0,1 +27218,18,1.0,0,1.5965973138809204,219,0.0,1 +27219,18,0.0,0,1.7995946407318115,220,1.0,1 +27220,18,0.0,0,1.333600640296936,221,0.0,1 +27221,18,1.0,0,1.6265969276428223,222,1.0,1 +27222,18,1.0,0,1.7475953102111816,223,1.0,1 +27223,18,0.0,0,1.6475965976715088,224,1.0,1 +27224,18,0.0,0,1.6245969533920288,225,0.0,1 +27225,18,1.0,0,1.3925999402999878,226,1.0,1 +27226,18,1.0,0,1.681596279144287,227,1.0,1 +27227,18,1.0,0,1.3756000995635986,228,1.0,1 +27228,18,1.0,0,1.7855949401855469,229,1.0,1 +27229,18,1.0,0,1.6595964431762695,230,1.0,1 +27230,18,1.0,0,1.8555939197540283,231,1.0,1 +27231,18,1.0,0,2.300602912902832,232,1.0,1 +27232,18,1.0,0,1.3566004037857056,233,1.0,1 +27233,18,1.0,0,2.235599994659424,234,1.0,1 +27234,18,1.0,0,1.7535953521728516,235,1.0,1 +27235,18,1.0,0,1.2406009435653687,236,1.0,1 +27236,18,1.0,0,1.1806007623672485,237,1.0,1 +27237,18,1.0,0,1.5035984516143799,238,1.0,1 +27238,18,1.0,0,1.363600254058838,239,1.0,1 +27239,18,1.0,0,2.1435956954956055,240,0.0,1 +27240,18,1.0,0,1.8515939712524414,241,1.0,1 +27241,18,1.0,0,1.9475927352905273,242,1.0,1 +27242,18,1.0,0,1.9315929412841797,243,1.0,1 +27243,18,1.0,0,1.5485979318618774,244,1.0,1 +27244,18,1.0,0,1.6055972576141357,245,1.0,1 +27245,18,1.0,0,2.1225945949554443,246,1.0,1 +27246,18,1.0,0,1.6265969276428223,247,1.0,1 +27247,18,1.0,0,1.495598554611206,248,1.0,1 +27248,18,1.0,0,2.3966073989868164,249,1.0,1 +27249,18,1.0,0,1.3726001977920532,250,0.0,1 +27250,18,0.0,0,2.1625964641571045,251,0.0,1 +27251,18,0.0,0,1.6035971641540527,252,0.0,1 +27252,18,0.0,0,1.4465992450714111,253,0.0,1 +27253,18,1.0,0,1.5965973138809204,254,1.0,1 +27254,18,1.0,0,1.4135996103286743,255,1.0,1 +27255,18,1.0,0,1.4755988121032715,256,1.0,1 +27256,18,0.0,0,2.306603193283081,257,0.0,1 +27257,18,1.0,0,1.7925947904586792,258,1.0,1 +27258,18,1.0,0,1.731595516204834,259,1.0,1 +27259,18,1.0,0,2.0345916748046875,260,0.0,1 +27260,18,0.0,0,1.5595977306365967,261,0.0,1 +27261,18,0.0,0,1.3306007385253906,262,0.0,1 +27262,18,0.0,0,1.8635938167572021,263,0.0,1 +27263,18,1.0,0,1.6455967426300049,264,0.0,1 +27264,18,1.0,0,1.5755975246429443,265,1.0,1 +27265,18,1.0,0,1.3955998420715332,266,1.0,1 +27266,18,1.0,0,1.7445954084396362,267,1.0,1 +27267,18,1.0,0,2.267601490020752,268,1.0,1 +27268,18,1.0,0,1.4115996360778809,269,0.0,1 +27269,18,0.0,0,2.523613452911377,270,0.0,1 +27270,18,0.0,0,2.341604709625244,271,0.0,1 +27271,18,0.0,0,1.6985960006713867,272,0.0,1 +27272,18,1.0,0,1.7545952796936035,273,1.0,1 +27273,18,1.0,0,1.6225969791412354,274,1.0,1 +27274,18,1.0,0,1.45159912109375,275,1.0,1 +27275,18,1.0,0,1.4965986013412476,276,1.0,1 +27276,18,0.0,0,2.27260160446167,277,0.0,1 +27277,18,1.0,0,1.7905948162078857,278,1.0,1 +27278,18,0.0,0,1.5015984773635864,279,1.0,1 +27279,18,1.0,0,1.5855975151062012,280,0.0,1 +27280,18,1.0,0,1.8065946102142334,281,1.0,1 +27281,18,0.0,0,1.4705989360809326,282,0.0,1 +27282,18,1.0,0,1.6435966491699219,283,1.0,1 +27283,18,0.0,0,1.252600908279419,284,0.0,1 +27284,18,1.0,0,1.4445992708206177,285,0.0,1 +27285,18,0.0,0,1.454599142074585,286,0.0,1 +27286,18,1.0,0,1.3706002235412598,287,1.0,1 +27287,18,1.0,0,1.6585965156555176,288,1.0,1 +27288,18,1.0,0,1.9345929622650146,289,1.0,1 +27289,18,1.0,0,1.3056010007858276,290,0.0,1 +27290,18,0.0,0,1.3676002025604248,291,0.0,1 +27291,18,0.0,0,1.2296009063720703,292,1.0,1 +27292,18,0.0,0,1.5295981168746948,293,0.0,1 +27293,18,1.0,0,2.311603546142578,294,1.0,1 +27294,18,1.0,0,1.4595990180969238,295,0.0,1 +27295,18,1.0,0,1.2876009941101074,296,1.0,1 +27296,18,0.0,0,1.3866000175476074,297,1.0,1 +27297,18,0.0,0,1.4675989151000977,298,0.0,1 +27298,18,1.0,0,1.4695988893508911,299,1.0,1 +27299,18,0.0,0,1.424599528312683,300,1.0,1 +27300,18,1.0,0,1.6285969018936157,301,1.0,1 +27301,18,0.0,0,1.7505953311920166,302,0.0,1 +27302,18,1.0,0,2.4036078453063965,303,1.0,1 +27303,18,1.0,0,1.276600956916809,304,1.0,1 +27304,18,1.0,0,2.1905977725982666,305,1.0,1 +27305,18,1.0,0,2.1455955505371094,306,1.0,1 +27306,18,1.0,0,1.921593189239502,307,1.0,1 +27307,18,1.0,0,1.4655989408493042,308,0.0,1 +27308,18,1.0,0,1.3925999402999878,309,1.0,1 +27309,18,1.0,0,1.5635976791381836,310,1.0,1 +27310,18,0.0,0,1.7495954036712646,311,0.0,1 +27311,18,1.0,0,1.472598910331726,312,1.0,1 +27312,18,1.0,0,2.553614616394043,313,1.0,1 +27313,18,1.0,0,1.5655977725982666,314,1.0,1 +27314,18,0.0,0,1.5745975971221924,315,0.0,1 +27315,18,1.0,0,1.8975934982299805,316,1.0,1 +27316,18,1.0,0,1.6405967473983765,317,1.0,1 +27317,18,1.0,0,1.3646003007888794,318,1.0,1 +27318,18,1.0,0,1.8385941982269287,319,1.0,1 +27319,18,1.0,0,1.8185944557189941,320,0.0,1 +27320,18,1.0,0,1.3955998420715332,321,1.0,1 +27321,18,0.0,0,1.3925999402999878,322,0.0,1 +27322,18,1.0,0,1.3046010732650757,323,1.0,1 +27323,18,1.0,0,1.4605990648269653,324,1.0,1 +27324,18,1.0,0,1.539597988128662,325,1.0,1 +27325,18,1.0,0,1.4595990180969238,326,1.0,1 +27326,18,1.0,0,1.381600022315979,327,1.0,1 +27327,18,0.0,0,2.1655964851379395,328,0.0,1 +27328,18,1.0,0,1.4605990648269653,329,1.0,1 +27329,18,0.0,0,1.5035984516143799,330,0.0,1 +27330,18,1.0,0,1.591597318649292,331,1.0,1 +27331,18,1.0,0,1.8515939712524414,332,1.0,1 +27332,18,1.0,0,1.9335930347442627,333,1.0,1 +27333,18,1.0,0,1.6365967988967896,334,1.0,1 +27334,18,1.0,0,1.3386006355285645,335,1.0,1 +27335,18,1.0,0,1.521598219871521,336,1.0,1 +27336,18,0.0,0,1.6315968036651611,337,0.0,1 +27337,18,1.0,0,1.5285981893539429,338,1.0,1 +27338,18,1.0,0,1.6615965366363525,339,1.0,1 +27339,18,1.0,0,1.6455967426300049,340,1.0,1 +27340,18,1.0,0,1.2196009159088135,341,1.0,1 +27341,18,1.0,0,1.75259530544281,342,1.0,1 +27342,18,1.0,0,1.7205957174301147,343,1.0,1 +27343,18,1.0,0,2.3896069526672363,344,1.0,1 +27344,18,1.0,0,1.8025946617126465,345,0.0,1 +27345,18,0.0,0,1.961592674255371,346,0.0,1 +27346,18,0.0,0,2.1235947608947754,347,1.0,1 +27347,18,0.0,0,2.068592071533203,348,0.0,1 +27348,18,1.0,0,1.6505966186523438,349,1.0,1 +27349,18,1.0,0,2.243600368499756,350,1.0,1 +27350,18,1.0,0,1.9525927305221558,351,1.0,1 +27351,18,1.0,0,1.5555977821350098,352,1.0,1 +27352,18,0.0,0,2.1595964431762695,353,0.0,1 +27353,18,1.0,0,1.9395928382873535,354,1.0,1 +27354,18,1.0,0,2.1075940132141113,355,1.0,1 +27355,18,1.0,0,2.4276089668273926,356,1.0,1 +27356,18,1.0,0,2.3666059970855713,357,1.0,1 +27357,18,1.0,0,1.6475965976715088,358,0.0,1 +27358,18,1.0,0,2.074592351913452,359,0.0,1 +27359,18,1.0,0,1.6195969581604004,360,1.0,1 +27360,18,1.0,0,1.5335980653762817,361,1.0,1 +27361,18,1.0,0,1.6035971641540527,362,1.0,1 +27362,18,1.0,0,1.3026010990142822,363,0.0,1 +27363,18,1.0,0,1.778594970703125,364,0.0,1 +27364,18,1.0,0,1.867593765258789,365,0.0,1 +27365,18,1.0,0,1.7145957946777344,366,1.0,1 +27366,18,1.0,0,1.3945999145507812,367,1.0,1 +27367,18,1.0,0,1.6085971593856812,368,1.0,1 +27368,18,1.0,0,1.8075945377349854,369,1.0,1 +27369,18,0.0,0,1.2636009454727173,370,0.0,1 +27370,18,1.0,0,1.8035945892333984,371,1.0,1 +27371,18,0.0,0,1.4865987300872803,372,0.0,1 +27372,18,1.0,0,1.2046008110046387,373,1.0,1 +27373,18,1.0,0,1.539597988128662,374,1.0,1 +27374,18,1.0,0,1.7365955114364624,375,1.0,1 +27375,18,1.0,0,1.8055946826934814,376,1.0,1 +27376,18,1.0,0,1.498598575592041,377,1.0,1 +27377,18,1.0,0,1.3955998420715332,378,1.0,1 +27378,18,1.0,0,1.403599739074707,379,1.0,1 +27379,18,1.0,0,1.424599528312683,380,1.0,1 +27380,18,0.0,0,1.4855986833572388,381,0.0,1 +27381,18,1.0,0,1.9865922927856445,382,1.0,1 +27382,18,0.0,0,1.3176008462905884,383,1.0,1 +27383,18,0.0,0,1.848594069480896,384,0.0,1 +27384,18,1.0,0,1.3875999450683594,385,1.0,1 +27385,18,1.0,0,1.472598910331726,386,1.0,1 +27386,18,0.0,0,1.8575940132141113,387,1.0,1 +27387,18,1.0,0,2.6086173057556152,388,1.0,1 +27388,18,1.0,0,1.7325955629348755,389,1.0,1 +27389,18,1.0,0,1.178600788116455,390,1.0,1 +27390,18,1.0,0,1.5825974941253662,391,1.0,1 +27391,18,0.0,0,1.381600022315979,392,0.0,1 +27392,18,1.0,0,1.3006010055541992,393,1.0,1 +27393,18,0.0,0,1.3456004858016968,394,0.0,1 +27394,18,0.0,0,1.6175971031188965,395,0.0,1 +27395,18,1.0,0,1.6225969791412354,396,0.0,1 +27396,18,1.0,0,2.324604034423828,397,1.0,1 +27397,18,1.0,0,2.0285916328430176,398,1.0,1 +27398,18,1.0,0,2.560615062713623,399,0.0,1 +27399,18,1.0,0,1.4375993013381958,400,1.0,1 +27400,18,1.0,0,1.7325955629348755,401,1.0,1 +27401,18,1.0,0,1.8535940647125244,402,0.0,1 +27402,18,1.0,0,2.2085986137390137,403,1.0,1 +27403,18,1.0,0,1.8205944299697876,404,1.0,1 +27404,18,1.0,0,1.517598271369934,405,1.0,1 +27405,18,1.0,0,1.3826000690460205,406,1.0,1 +27406,18,0.0,0,1.288601040840149,407,1.0,1 +27407,18,0.0,0,1.3826000690460205,408,0.0,1 +27408,18,1.0,0,1.3756000995635986,409,0.0,1 +27409,18,0.0,0,2.4616103172302246,410,0.0,1 +27410,18,1.0,0,1.967592477798462,411,0.0,1 +27411,18,1.0,0,1.778594970703125,412,0.0,1 +27412,18,0.0,0,1.358600378036499,413,0.0,1 +27413,18,0.0,0,1.279600977897644,414,0.0,1 +27414,18,0.0,0,1.6915960311889648,415,0.0,1 +27415,18,0.0,0,1.3516004085540771,416,0.0,1 +27416,18,0.0,0,1.499598503112793,417,0.0,1 +27417,18,0.0,0,1.8365942239761353,418,1.0,1 +27418,18,0.0,0,1.4205995798110962,419,0.0,1 +27419,18,0.0,0,2.058591604232788,420,0.0,1 +27420,18,1.0,0,2.2135987281799316,421,1.0,1 +27421,18,1.0,0,1.7145957946777344,422,1.0,1 +27422,18,1.0,0,1.2656009197235107,423,1.0,1 +27423,18,1.0,0,1.9985921382904053,424,1.0,1 +27424,18,1.0,0,1.3056010007858276,425,1.0,1 +27425,18,0.0,0,1.9725924730300903,426,0.0,1 +27426,18,1.0,0,1.2366008758544922,427,1.0,1 +27427,18,1.0,0,2.6086173057556152,428,1.0,1 +27428,18,1.0,0,1.455599069595337,429,1.0,1 +27429,18,1.0,0,1.620597004890442,430,1.0,1 +27430,18,1.0,0,1.5985972881317139,431,1.0,1 +27431,18,0.0,0,2.2075986862182617,432,0.0,1 +27432,18,1.0,0,1.288601040840149,433,1.0,1 +27433,18,1.0,0,1.3895999193191528,434,1.0,1 +27434,18,1.0,0,1.6075971126556396,435,1.0,1 +27435,18,1.0,0,1.407599687576294,436,1.0,1 +27436,18,0.0,0,1.2416008710861206,437,0.0,1 +27437,18,1.0,0,2.513612747192383,438,0.0,1 +27438,18,1.0,0,2.569615364074707,439,1.0,1 +27439,18,1.0,0,1.7455954551696777,440,1.0,1 +27440,18,1.0,0,1.4905986785888672,441,1.0,1 +27441,18,1.0,0,2.25960111618042,442,1.0,1 +27442,18,1.0,0,1.5585978031158447,443,1.0,1 +27443,18,1.0,0,2.1205945014953613,444,0.0,1 +27444,18,0.0,0,1.4135996103286743,445,1.0,1 +27445,18,0.0,0,1.6025972366333008,446,1.0,1 +27446,18,0.0,0,1.5555977821350098,447,0.0,1 +27447,18,0.0,0,1.3686002492904663,448,0.0,1 +27448,18,1.0,0,1.315600872039795,449,1.0,1 +27449,18,1.0,0,2.1045937538146973,450,1.0,1 +27450,18,1.0,0,1.9295930862426758,451,1.0,1 +27451,18,1.0,0,1.5985972881317139,452,1.0,1 +27452,18,1.0,0,1.3346006870269775,453,1.0,1 +27453,18,1.0,0,1.875593662261963,454,1.0,1 +27454,18,1.0,0,1.5565978288650513,455,1.0,1 +27455,18,1.0,0,1.3616002798080444,456,1.0,1 +27456,18,1.0,0,1.4375993013381958,457,0.0,1 +27457,18,0.0,0,1.477598786354065,458,0.0,1 +27458,18,1.0,0,1.9045933485031128,459,1.0,1 +27459,18,0.0,0,1.6515965461730957,460,0.0,1 +27460,18,1.0,0,2.0295917987823486,461,1.0,1 +27461,18,1.0,0,1.2996010780334473,462,1.0,1 +27462,18,1.0,0,1.873593807220459,463,0.0,1 +27463,18,0.0,0,1.8865935802459717,464,1.0,1 +27464,18,0.0,0,1.4795987606048584,465,1.0,1 +27465,18,0.0,0,1.4715988636016846,466,0.0,1 +27466,18,1.0,0,1.4715988636016846,467,1.0,1 +27467,18,1.0,0,1.7265956401824951,468,1.0,1 +27468,18,1.0,0,1.4305994510650635,469,1.0,1 +27469,18,0.0,0,2.529613494873047,470,0.0,1 +27470,18,1.0,0,1.5545978546142578,471,0.0,1 +27471,18,0.0,0,1.5125983953475952,472,0.0,1 +27472,18,1.0,0,1.9065933227539062,473,1.0,1 +27473,18,1.0,0,2.6186177730560303,474,1.0,1 +27474,18,1.0,0,2.019591808319092,475,1.0,1 +27475,18,1.0,0,1.5985972881317139,476,1.0,1 +27476,18,0.0,0,1.2776010036468506,477,1.0,1 +27477,18,0.0,0,1.8315942287445068,478,0.0,1 +27478,18,1.0,0,1.967592477798462,479,1.0,1 +27479,18,1.0,0,1.6845961809158325,480,1.0,1 +27480,18,1.0,0,1.875593662261963,481,1.0,1 +27481,18,0.0,0,1.7705950736999512,482,0.0,1 +27482,18,1.0,0,2.3516054153442383,483,1.0,1 +27483,18,1.0,0,1.7905948162078857,484,0.0,1 +27484,18,1.0,0,1.7985947132110596,485,1.0,1 +27485,18,1.0,0,1.2636009454727173,486,1.0,1 +27486,18,1.0,0,2.065591812133789,487,0.0,1 +27487,18,0.0,0,2.1495957374572754,488,0.0,1 +27488,18,0.0,0,1.690596103668213,489,0.0,1 +27489,18,1.0,0,1.4405993223190308,490,1.0,1 +27490,18,1.0,0,2.293602466583252,491,1.0,1 +27491,18,0.0,0,1.147600769996643,492,0.0,1 +27492,18,1.0,0,1.2146008014678955,493,1.0,1 +27493,18,1.0,0,1.2286008596420288,494,1.0,1 +27494,18,0.0,0,1.4745988845825195,495,0.0,1 +27495,18,0.0,0,1.2276009321212769,496,0.0,1 +27496,18,1.0,0,2.3746063709259033,497,1.0,1 +27497,18,1.0,0,1.4495991468429565,498,1.0,1 +27498,18,1.0,0,1.7075958251953125,499,0.0,1 +27499,18,1.0,0,1.2756010293960571,500,1.0,1 +27500,18,0.0,1,1.4195995330810547,1,0.0,1 +27501,18,0.0,1,1.4715988636016846,2,0.0,1 +27502,18,0.0,1,2.836627960205078,3,0.0,1 +27503,18,0.0,1,1.6785962581634521,4,0.0,1 +27504,18,0.0,1,1.7135958671569824,5,0.0,1 +27505,18,1.0,1,1.5145983695983887,6,0.0,1 +27506,18,1.0,1,1.9775924682617188,7,0.0,1 +27507,18,1.0,1,1.4355993270874023,8,1.0,1 +27508,18,1.0,1,2.288602352142334,9,1.0,1 +27509,18,1.0,1,1.6025972366333008,10,0.0,1 +27510,18,0.0,1,1.1766008138656616,11,0.0,1 +27511,18,1.0,1,1.5775976181030273,12,1.0,1 +27512,18,0.0,1,1.3995997905731201,13,0.0,1 +27513,18,1.0,1,1.354600429534912,14,1.0,1 +27514,18,1.0,1,1.3356006145477295,15,1.0,1 +27515,18,1.0,1,1.4635989665985107,16,1.0,1 +27516,18,1.0,1,1.4835987091064453,17,1.0,1 +27517,18,1.0,1,2.1065938472747803,18,0.0,1 +27518,18,0.0,1,1.8895936012268066,19,0.0,1 +27519,18,0.0,1,1.8115944862365723,20,0.0,1 +27520,18,0.0,1,1.3346006870269775,21,0.0,1 +27521,18,0.0,1,1.2666009664535522,22,0.0,1 +27522,18,1.0,1,1.4975985288619995,23,1.0,1 +27523,18,0.0,1,1.550597906112671,24,0.0,1 +27524,18,0.0,1,1.3706002235412598,25,0.0,1 +27525,18,1.0,1,1.2896009683609009,26,0.0,1 +27526,18,0.0,1,1.5145983695983887,27,0.0,1 +27527,18,1.0,1,1.8455941677093506,28,1.0,1 +27528,18,1.0,1,1.4595990180969238,29,1.0,1 +27529,18,1.0,1,1.6035971641540527,30,1.0,1 +27530,18,1.0,1,1.6965960264205933,31,0.0,1 +27531,18,1.0,1,1.8455941677093506,32,1.0,1 +27532,18,1.0,1,1.315600872039795,33,1.0,1 +27533,18,1.0,1,1.224600911140442,34,0.0,1 +27534,18,0.0,1,1.5805975198745728,35,0.0,1 +27535,18,0.0,1,2.3696060180664062,36,0.0,1 +27536,18,1.0,1,1.8345942497253418,37,0.0,1 +27537,18,0.0,1,1.589597463607788,38,0.0,1 +27538,18,0.0,1,2.0995936393737793,39,1.0,1 +27539,18,0.0,1,1.4015997648239136,40,1.0,1 +27540,18,0.0,1,1.5675976276397705,41,1.0,1 +27541,18,0.0,1,1.2346009016036987,42,0.0,1 +27542,18,1.0,1,1.546597957611084,43,1.0,1 +27543,18,0.0,1,1.4435992240905762,44,0.0,1 +27544,18,0.0,1,1.5315980911254883,45,1.0,1 +27545,18,0.0,1,1.3446005582809448,46,0.0,1 +27546,18,1.0,1,1.5525978803634644,47,1.0,1 +27547,18,1.0,1,1.75259530544281,48,1.0,1 +27548,18,1.0,1,2.0875930786132812,49,0.0,1 +27549,18,1.0,1,1.7185957431793213,50,1.0,1 +27550,18,1.0,1,1.5365980863571167,51,1.0,1 +27551,18,1.0,1,1.3176008462905884,52,0.0,1 +27552,18,0.0,1,1.1716008186340332,53,0.0,1 +27553,18,1.0,1,1.9115931987762451,54,1.0,1 +27554,18,1.0,1,1.4015997648239136,55,0.0,1 +27555,18,1.0,1,2.061591625213623,56,1.0,1 +27556,18,1.0,1,1.5095983743667603,57,1.0,1 +27557,18,0.0,1,1.2476009130477905,58,1.0,1 +27558,18,1.0,1,1.3826000690460205,59,0.0,1 +27559,18,1.0,1,2.260601043701172,60,1.0,1 +27560,18,1.0,1,2.280601978302002,61,1.0,1 +27561,18,1.0,1,1.3306007385253906,62,1.0,1 +27562,18,0.0,1,2.071592330932617,63,1.0,1 +27563,18,0.0,1,1.5855975151062012,64,1.0,1 +27564,18,0.0,1,1.6255970001220703,65,0.0,1 +27565,18,1.0,1,2.316603660583496,66,1.0,1 +27566,18,1.0,1,1.5575978755950928,67,1.0,1 +27567,18,1.0,1,1.9305930137634277,68,0.0,1 +27568,18,1.0,1,2.6866209506988525,69,1.0,1 +27569,18,1.0,1,2.1745970249176025,70,1.0,1 +27570,18,1.0,1,1.285601019859314,71,1.0,1 +27571,18,0.0,1,2.019591808319092,72,0.0,1 +27572,18,1.0,1,2.0355916023254395,73,1.0,1 +27573,18,1.0,1,1.867593765258789,74,1.0,1 +27574,18,1.0,1,1.8185944557189941,75,0.0,1 +27575,18,0.0,1,1.8515939712524414,76,0.0,1 +27576,18,0.0,1,1.823594331741333,77,0.0,1 +27577,18,0.0,1,2.010591983795166,78,1.0,1 +27578,18,0.0,1,1.5225982666015625,79,1.0,1 +27579,18,0.0,1,1.4235994815826416,80,1.0,1 +27580,18,0.0,1,1.2356009483337402,81,1.0,1 +27581,18,0.0,1,1.547597885131836,82,0.0,1 +27582,18,0.0,1,2.1705968379974365,83,0.0,1 +27583,18,1.0,1,2.304603099822998,84,1.0,1 +27584,18,1.0,1,1.315600872039795,85,1.0,1 +27585,18,1.0,1,1.5865974426269531,86,1.0,1 +27586,18,1.0,1,1.3945999145507812,87,0.0,1 +27587,18,1.0,1,1.5055984258651733,88,0.0,1 +27588,18,1.0,1,1.4845987558364868,89,1.0,1 +27589,18,1.0,1,1.7535953521728516,90,1.0,1 +27590,18,1.0,1,1.7095959186553955,91,1.0,1 +27591,18,1.0,1,2.1765971183776855,92,0.0,1 +27592,18,1.0,1,1.922593116760254,93,1.0,1 +27593,18,1.0,1,1.825594425201416,94,1.0,1 +27594,18,0.0,1,1.6635963916778564,95,0.0,1 +27595,18,1.0,1,1.8325942754745483,96,0.0,1 +27596,18,0.0,1,1.4165996313095093,97,0.0,1 +27597,18,0.0,1,1.9055933952331543,98,0.0,1 +27598,18,0.0,1,2.4286088943481445,99,0.0,1 +27599,18,1.0,1,1.7015960216522217,100,1.0,1 +27600,18,1.0,1,1.9015934467315674,101,1.0,1 +27601,18,0.0,1,1.4395992755889893,102,0.0,1 +27602,18,1.0,1,1.2616009712219238,103,0.0,1 +27603,18,1.0,1,1.7365955114364624,104,1.0,1 +27604,18,1.0,1,1.4185996055603027,105,0.0,1 +27605,18,0.0,1,1.8055946826934814,106,0.0,1 +27606,18,0.0,1,1.6325968503952026,107,1.0,1 +27607,18,0.0,1,2.1305949687957764,108,0.0,1 +27608,18,0.0,1,2.2125988006591797,109,0.0,1 +27609,18,1.0,1,1.6055972576141357,110,1.0,1 +27610,18,1.0,1,1.221600890159607,111,1.0,1 +27611,18,1.0,1,1.2676010131835938,112,1.0,1 +27612,18,1.0,1,1.432599425315857,113,1.0,1 +27613,18,1.0,1,1.3086010217666626,114,1.0,1 +27614,18,0.0,1,2.4626104831695557,115,1.0,1 +27615,18,0.0,1,1.6985960006713867,116,0.0,1 +27616,18,1.0,1,1.7505953311920166,117,1.0,1 +27617,18,1.0,1,1.8115944862365723,118,1.0,1 +27618,18,1.0,1,1.8915934562683105,119,1.0,1 +27619,18,1.0,1,1.5195982456207275,120,0.0,1 +27620,18,0.0,1,2.238600015640259,121,0.0,1 +27621,18,0.0,1,1.5635976791381836,122,0.0,1 +27622,18,1.0,1,2.338604688644409,123,0.0,1 +27623,18,1.0,1,1.4895986318588257,124,1.0,1 +27624,18,1.0,1,2.743623733520508,125,1.0,1 +27625,18,1.0,1,1.2726010084152222,126,1.0,1 +27626,18,1.0,1,1.8125945329666138,127,1.0,1 +27627,18,1.0,1,1.6145970821380615,128,1.0,1 +27628,18,1.0,1,2.0455915927886963,129,1.0,1 +27629,18,1.0,1,1.3656002283096313,130,1.0,1 +27630,18,1.0,1,1.72959566116333,131,1.0,1 +27631,18,1.0,1,1.4055997133255005,132,1.0,1 +27632,18,1.0,1,1.3965998888015747,133,1.0,1 +27633,18,1.0,1,1.18160080909729,134,1.0,1 +27634,18,1.0,1,1.6485966444015503,135,1.0,1 +27635,18,1.0,1,2.1485958099365234,136,1.0,1 +27636,18,0.0,1,2.6866209506988525,137,1.0,1 +27637,18,0.0,1,1.6685963869094849,138,0.0,1 +27638,18,0.0,1,1.59059739112854,139,0.0,1 +27639,18,0.0,1,1.355600357055664,140,0.0,1 +27640,18,1.0,1,1.3026010990142822,141,1.0,1 +27641,18,1.0,1,1.7145957946777344,142,1.0,1 +27642,18,1.0,1,1.3866000175476074,143,1.0,1 +27643,18,1.0,1,1.7945947647094727,144,1.0,1 +27644,18,1.0,1,1.3346006870269775,145,0.0,1 +27645,18,1.0,1,1.547597885131836,146,1.0,1 +27646,18,0.0,1,2.1035938262939453,147,1.0,1 +27647,18,1.0,1,2.1225945949554443,148,0.0,1 +27648,18,0.0,1,1.8825936317443848,149,0.0,1 +27649,18,1.0,1,1.4685989618301392,150,1.0,1 +27650,18,1.0,1,1.314600944519043,151,1.0,1 +27651,18,1.0,1,1.5115983486175537,152,1.0,1 +27652,18,1.0,1,1.9005934000015259,153,1.0,1 +27653,18,1.0,1,1.6245969533920288,154,1.0,1 +27654,18,1.0,1,1.8915934562683105,155,1.0,1 +27655,18,1.0,1,1.7145957946777344,156,1.0,1 +27656,18,1.0,1,1.288601040840149,157,0.0,1 +27657,18,0.0,1,1.8685938119888306,158,1.0,1 +27658,18,0.0,1,1.2566009759902954,159,0.0,1 +27659,18,0.0,1,1.5045984983444214,160,0.0,1 +27660,18,0.0,1,1.4215995073318481,161,1.0,1 +27661,18,0.0,1,1.2836010456085205,162,1.0,1 +27662,18,0.0,1,1.359600305557251,163,0.0,1 +27663,18,0.0,1,2.4086079597473145,164,0.0,1 +27664,18,1.0,1,2.105593681335449,165,1.0,1 +27665,18,1.0,1,1.550597906112671,166,0.0,1 +27666,18,0.0,1,1.5035984516143799,167,0.0,1 +27667,18,1.0,1,2.297602653503418,168,0.0,1 +27668,18,0.0,1,1.72959566116333,169,0.0,1 +27669,18,0.0,1,2.2245993614196777,170,1.0,1 +27670,18,0.0,1,1.2966010570526123,171,0.0,1 +27671,18,0.0,1,2.062591791152954,172,1.0,1 +27672,18,0.0,1,1.7445954084396362,173,1.0,1 +27673,18,0.0,1,1.336600661277771,174,0.0,1 +27674,18,1.0,1,1.4335993528366089,175,1.0,1 +27675,18,1.0,1,1.6215970516204834,176,1.0,1 +27676,18,1.0,1,2.05359148979187,177,0.0,1 +27677,18,1.0,1,2.021591901779175,178,0.0,1 +27678,18,0.0,1,1.7235956192016602,179,0.0,1 +27679,18,0.0,1,1.3016010522842407,180,0.0,1 +27680,18,0.0,1,1.5625977516174316,181,0.0,1 +27681,18,0.0,1,1.4015997648239136,182,1.0,1 +27682,18,0.0,1,1.6325968503952026,183,0.0,1 +27683,18,1.0,1,1.756595253944397,184,1.0,1 +27684,18,0.0,1,1.877593755722046,185,0.0,1 +27685,18,1.0,1,1.4685989618301392,186,1.0,1 +27686,18,1.0,1,1.9985921382904053,187,1.0,1 +27687,18,1.0,1,2.2045984268188477,188,1.0,1 +27688,18,1.0,1,1.5105984210968018,189,1.0,1 +27689,18,1.0,1,1.3606003522872925,190,0.0,1 +27690,18,1.0,1,1.727595567703247,191,1.0,1 +27691,18,1.0,1,2.6356186866760254,192,1.0,1 +27692,18,1.0,1,1.3066010475158691,193,0.0,1 +27693,18,1.0,1,1.679596185684204,194,1.0,1 +27694,18,1.0,1,1.550597906112671,195,1.0,1 +27695,18,1.0,1,1.7025959491729736,196,0.0,1 +27696,18,1.0,1,1.7165957689285278,197,0.0,1 +27697,18,1.0,1,2.3596057891845703,198,0.0,1 +27698,18,0.0,1,1.5655977725982666,199,0.0,1 +27699,18,1.0,1,1.3356006145477295,200,1.0,1 +27700,18,1.0,1,1.502598524093628,201,1.0,1 +27701,18,1.0,1,1.6105971336364746,202,1.0,1 +27702,18,1.0,1,1.4385993480682373,203,1.0,1 +27703,18,1.0,1,1.498598575592041,204,1.0,1 +27704,18,1.0,1,1.4805988073349,205,0.0,1 +27705,18,1.0,1,1.3186008930206299,206,0.0,1 +27706,18,1.0,1,1.8315942287445068,207,0.0,1 +27707,18,1.0,1,1.7465953826904297,208,1.0,1 +27708,18,1.0,1,1.591597318649292,209,1.0,1 +27709,18,1.0,1,1.4805988073349,210,1.0,1 +27710,18,0.0,1,2.273601531982422,211,0.0,1 +27711,18,1.0,1,1.3746001720428467,212,0.0,1 +27712,18,1.0,1,2.258600950241089,213,0.0,1 +27713,18,1.0,1,1.5355980396270752,214,0.0,1 +27714,18,0.0,1,1.634596824645996,215,0.0,1 +27715,18,0.0,1,1.190600872039795,216,0.0,1 +27716,18,0.0,1,2.058591604232788,217,0.0,1 +27717,18,1.0,1,1.2866010665893555,218,1.0,1 +27718,18,1.0,1,1.4665989875793457,219,1.0,1 +27719,18,1.0,1,1.4865987300872803,220,0.0,1 +27720,18,0.0,1,2.1485958099365234,221,1.0,1 +27721,18,0.0,1,1.708595871925354,222,0.0,1 +27722,18,1.0,1,2.268601417541504,223,1.0,1 +27723,18,1.0,1,1.8375942707061768,224,0.0,1 +27724,18,0.0,1,1.8085945844650269,225,1.0,1 +27725,18,0.0,1,1.4395992755889893,226,0.0,1 +27726,18,1.0,1,1.4655989408493042,227,1.0,1 +27727,18,1.0,1,2.329604148864746,228,1.0,1 +27728,18,1.0,1,2.0345916748046875,229,1.0,1 +27729,18,0.0,1,1.8555939197540283,230,1.0,1 +27730,18,1.0,1,1.3286007642745972,231,0.0,1 +27731,18,0.0,1,1.546597957611084,232,0.0,1 +27732,18,0.0,1,1.5745975971221924,233,0.0,1 +27733,18,1.0,1,1.8085945844650269,234,1.0,1 +27734,18,1.0,1,1.9415929317474365,235,1.0,1 +27735,18,1.0,1,2.071592330932617,236,1.0,1 +27736,18,1.0,1,1.6005972623825073,237,1.0,1 +27737,18,1.0,1,1.5815975666046143,238,1.0,1 +27738,18,1.0,1,1.6115970611572266,239,1.0,1 +27739,18,1.0,1,1.9995920658111572,240,0.0,1 +27740,18,1.0,1,1.3905999660491943,241,1.0,1 +27741,18,1.0,1,1.6525965929031372,242,1.0,1 +27742,18,1.0,1,1.7235956192016602,243,0.0,1 +27743,18,0.0,1,1.8065946102142334,244,0.0,1 +27744,18,1.0,1,2.058591604232788,245,1.0,1 +27745,18,1.0,1,1.7935948371887207,246,1.0,1 +27746,18,1.0,1,1.7505953311920166,247,1.0,1 +27747,18,1.0,1,2.296602725982666,248,1.0,1 +27748,18,1.0,1,2.1585962772369385,249,0.0,1 +27749,18,1.0,1,1.5705976486206055,250,1.0,1 +27750,18,0.0,1,1.4905986785888672,251,0.0,1 +27751,18,0.0,1,1.1276006698608398,252,1.0,1 +27752,18,1.0,1,1.82759428024292,253,0.0,1 +27753,18,0.0,1,1.4795987606048584,254,0.0,1 +27754,18,0.0,1,1.2996010780334473,255,0.0,1 +27755,18,0.0,1,1.6965960264205933,256,1.0,1 +27756,18,0.0,1,2.2255992889404297,257,0.0,1 +27757,18,0.0,1,1.8025946617126465,258,0.0,1 +27758,18,1.0,1,2.254600763320923,259,1.0,1 +27759,18,1.0,1,1.3486005067825317,260,1.0,1 +27760,18,1.0,1,1.4675989151000977,261,0.0,1 +27761,18,1.0,1,1.6685963869094849,262,0.0,1 +27762,18,0.0,1,1.2406009435653687,263,0.0,1 +27763,18,0.0,1,1.42859947681427,264,0.0,1 +27764,18,0.0,1,1.6265969276428223,265,1.0,1 +27765,18,1.0,1,1.4705989360809326,266,0.0,1 +27766,18,0.0,1,1.5585978031158447,267,0.0,1 +27767,18,1.0,1,1.3726001977920532,268,1.0,1 +27768,18,1.0,1,1.6305968761444092,269,0.0,1 +27769,18,0.0,1,1.5745975971221924,270,0.0,1 +27770,18,1.0,1,2.1855974197387695,271,0.0,1 +27771,18,1.0,1,1.4525991678237915,272,1.0,1 +27772,18,1.0,1,1.3206008672714233,273,0.0,1 +27773,18,0.0,1,1.6155970096588135,274,0.0,1 +27774,18,1.0,1,1.3866000175476074,275,1.0,1 +27775,18,1.0,1,1.4235994815826416,276,1.0,1 +27776,18,1.0,1,1.337600588798523,277,1.0,1 +27777,18,1.0,1,1.4145996570587158,278,1.0,1 +27778,18,1.0,1,1.5415979623794556,279,1.0,1 +27779,18,0.0,1,1.3386006355285645,280,1.0,1 +27780,18,1.0,1,1.4405993223190308,281,1.0,1 +27781,18,0.0,1,1.7685950994491577,282,0.0,1 +27782,18,0.0,1,1.2876009941101074,283,1.0,1 +27783,18,0.0,1,1.5125983953475952,284,0.0,1 +27784,18,1.0,1,1.7935948371887207,285,0.0,1 +27785,18,0.0,1,2.256600856781006,286,0.0,1 +27786,18,1.0,1,2.3916072845458984,287,1.0,1 +27787,18,1.0,1,1.3666002750396729,288,1.0,1 +27788,18,1.0,1,1.689596176147461,289,1.0,1 +27789,18,1.0,1,1.4585990905761719,290,1.0,1 +27790,18,1.0,1,1.683596134185791,291,1.0,1 +27791,18,1.0,1,1.8855936527252197,292,0.0,1 +27792,18,0.0,1,2.830627679824829,293,1.0,1 +27793,18,0.0,1,1.9325929880142212,294,0.0,1 +27794,18,0.0,1,1.6045972108840942,295,1.0,1 +27795,18,1.0,1,1.3226008415222168,296,1.0,1 +27796,18,0.0,1,1.9075932502746582,297,0.0,1 +27797,18,0.0,1,1.3166009187698364,298,0.0,1 +27798,18,0.0,1,2.263601303100586,299,1.0,1 +27799,18,0.0,1,1.612597107887268,300,1.0,1 +27800,18,0.0,1,2.3856067657470703,301,0.0,1 +27801,18,1.0,1,1.9305930137634277,302,0.0,1 +27802,18,0.0,1,1.4275994300842285,303,0.0,1 +27803,18,0.0,1,1.7255957126617432,304,0.0,1 +27804,18,0.0,1,2.057591438293457,305,0.0,1 +27805,18,1.0,1,1.9715924263000488,306,1.0,1 +27806,18,1.0,1,1.3496004343032837,307,1.0,1 +27807,18,1.0,1,2.008592128753662,308,0.0,1 +27808,18,1.0,1,2.4546101093292236,309,0.0,1 +27809,18,1.0,1,1.6675963401794434,310,1.0,1 +27810,18,1.0,1,1.7595951557159424,311,0.0,1 +27811,18,1.0,1,1.3686002492904663,312,0.0,1 +27812,18,1.0,1,1.381600022315979,313,1.0,1 +27813,18,1.0,1,1.4095996618270874,314,1.0,1 +27814,18,1.0,1,1.5885974168777466,315,1.0,1 +27815,18,0.0,1,1.9555926322937012,316,0.0,1 +27816,18,1.0,1,1.4575990438461304,317,1.0,1 +27817,18,1.0,1,1.4815987348556519,318,0.0,1 +27818,18,0.0,1,1.285601019859314,319,0.0,1 +27819,18,1.0,1,1.4645990133285522,320,0.0,1 +27820,18,0.0,1,1.2316008806228638,321,1.0,1 +27821,18,0.0,1,2.06659197807312,322,1.0,1 +27822,18,0.0,1,1.2606009244918823,323,0.0,1 +27823,18,0.0,1,1.517598271369934,324,1.0,1 +27824,18,0.0,1,1.4145996570587158,325,0.0,1 +27825,18,0.0,1,1.6335968971252441,326,0.0,1 +27826,18,0.0,1,1.4865987300872803,327,1.0,1 +27827,18,0.0,1,1.7595951557159424,328,0.0,1 +27828,18,0.0,1,2.560615062713623,329,0.0,1 +27829,18,1.0,1,1.5225982666015625,330,0.0,1 +27830,18,0.0,1,1.3476004600524902,331,0.0,1 +27831,18,0.0,1,1.6915960311889648,332,0.0,1 +27832,18,0.0,1,2.3806066513061523,333,0.0,1 +27833,18,0.0,1,1.3616002798080444,334,0.0,1 +27834,18,1.0,1,1.502598524093628,335,1.0,1 +27835,18,1.0,1,1.9525927305221558,336,1.0,1 +27836,18,1.0,1,1.3756000995635986,337,0.0,1 +27837,18,0.0,1,1.2396008968353271,338,0.0,1 +27838,18,0.0,1,1.1986007690429688,339,0.0,1 +27839,18,0.0,1,1.6155970096588135,340,0.0,1 +27840,18,0.0,1,2.1905977725982666,341,0.0,1 +27841,18,0.0,1,1.9085932970046997,342,0.0,1 +27842,18,0.0,1,1.875593662261963,343,1.0,1 +27843,18,0.0,1,1.517598271369934,344,0.0,1 +27844,18,1.0,1,2.0205917358398438,345,1.0,1 +27845,18,1.0,1,1.246600866317749,346,0.0,1 +27846,18,0.0,1,1.2616009712219238,347,0.0,1 +27847,18,0.0,1,1.5745975971221924,348,1.0,1 +27848,18,1.0,1,2.3906071186065674,349,1.0,1 +27849,18,1.0,1,2.074592351913452,350,1.0,1 +27850,18,1.0,1,1.7065958976745605,351,1.0,1 +27851,18,1.0,1,1.4415992498397827,352,1.0,1 +27852,18,1.0,1,1.915593147277832,353,1.0,1 +27853,18,0.0,1,1.7595951557159424,354,0.0,1 +27854,18,1.0,1,1.5515978336334229,355,0.0,1 +27855,18,1.0,1,1.6075971126556396,356,0.0,1 +27856,18,0.0,1,1.7465953826904297,357,0.0,1 +27857,18,0.0,1,1.2946009635925293,358,0.0,1 +27858,18,1.0,1,1.7855949401855469,359,1.0,1 +27859,18,1.0,1,1.310600996017456,360,0.0,1 +27860,18,0.0,1,1.6325968503952026,361,0.0,1 +27861,18,0.0,1,2.0335917472839355,362,1.0,1 +27862,18,0.0,1,1.4805988073349,363,0.0,1 +27863,18,0.0,1,1.5415979623794556,364,0.0,1 +27864,18,0.0,1,1.6485966444015503,365,0.0,1 +27865,18,0.0,1,1.730595588684082,366,0.0,1 +27866,18,0.0,1,1.2036008834838867,367,0.0,1 +27867,18,0.0,1,1.681596279144287,368,0.0,1 +27868,18,0.0,1,1.6745963096618652,369,0.0,1 +27869,18,1.0,1,1.4745988845825195,370,1.0,1 +27870,18,1.0,1,1.4585990905761719,371,0.0,1 +27871,18,0.0,1,1.6115970611572266,372,1.0,1 +27872,18,1.0,1,1.82759428024292,373,0.0,1 +27873,18,0.0,1,1.2686009407043457,374,0.0,1 +27874,18,0.0,1,2.1825973987579346,375,0.0,1 +27875,18,1.0,1,2.268601417541504,376,0.0,1 +27876,18,0.0,1,1.64259672164917,377,0.0,1 +27877,18,1.0,1,1.3646003007888794,378,1.0,1 +27878,18,1.0,1,1.5365980863571167,379,0.0,1 +27879,18,1.0,1,1.638596773147583,380,1.0,1 +27880,18,1.0,1,1.4635989665985107,381,1.0,1 +27881,18,0.0,1,1.6325968503952026,382,0.0,1 +27882,18,0.0,1,1.450599193572998,383,0.0,1 +27883,18,1.0,1,1.6455967426300049,384,0.0,1 +27884,18,1.0,1,1.869593858718872,385,1.0,1 +27885,18,0.0,1,1.6705963611602783,386,0.0,1 +27886,18,0.0,1,2.1355953216552734,387,0.0,1 +27887,18,1.0,1,1.564597725868225,388,1.0,1 +27888,18,1.0,1,1.5745975971221924,389,1.0,1 +27889,18,1.0,1,1.358600378036499,390,1.0,1 +27890,18,1.0,1,1.3356006145477295,391,1.0,1 +27891,18,0.0,1,1.7405954599380493,392,0.0,1 +27892,18,1.0,1,1.520598292350769,393,1.0,1 +27893,18,0.0,1,2.1205945014953613,394,1.0,1 +27894,18,1.0,1,1.9065933227539062,395,1.0,1 +27895,18,1.0,1,2.004591941833496,396,1.0,1 +27896,18,1.0,1,1.8885935544967651,397,1.0,1 +27897,18,1.0,1,1.9895923137664795,398,1.0,1 +27898,18,1.0,1,2.2075986862182617,399,0.0,1 +27899,18,0.0,1,1.712595820426941,400,0.0,1 +27900,18,1.0,1,2.073592185974121,401,1.0,1 +27901,18,0.0,1,1.276600956916809,402,1.0,1 +27902,18,0.0,1,1.4405993223190308,403,0.0,1 +27903,18,0.0,1,1.8655939102172852,404,0.0,1 +27904,18,1.0,1,1.4565991163253784,405,1.0,1 +27905,18,1.0,1,1.524598240852356,406,1.0,1 +27906,18,1.0,1,1.6955959796905518,407,1.0,1 +27907,18,1.0,1,1.591597318649292,408,1.0,1 +27908,18,1.0,1,1.8505940437316895,409,1.0,1 +27909,18,1.0,1,1.8325942754745483,410,1.0,1 +27910,18,0.0,1,1.4935985803604126,411,0.0,1 +27911,18,1.0,1,1.9415929317474365,412,1.0,1 +27912,18,1.0,1,1.542598009109497,413,1.0,1 +27913,18,1.0,1,2.052591323852539,414,1.0,1 +27914,18,1.0,1,1.6775963306427002,415,0.0,1 +27915,18,0.0,1,2.0405917167663574,416,0.0,1 +27916,18,0.0,1,1.4875986576080322,417,0.0,1 +27917,18,0.0,1,1.6715962886810303,418,0.0,1 +27918,18,1.0,1,1.6535966396331787,419,1.0,1 +27919,18,0.0,1,1.3676002025604248,420,1.0,1 +27920,18,0.0,1,1.4645990133285522,421,0.0,1 +27921,18,1.0,1,1.9775924682617188,422,1.0,1 +27922,18,1.0,1,1.2896009683609009,423,1.0,1 +27923,18,1.0,1,1.5155982971191406,424,1.0,1 +27924,18,1.0,1,1.3716001510620117,425,1.0,1 +27925,18,1.0,1,1.336600661277771,426,1.0,1 +27926,18,1.0,1,1.4055997133255005,427,1.0,1 +27927,18,1.0,1,1.7105958461761475,428,1.0,1 +27928,18,0.0,1,2.25260066986084,429,0.0,1 +27929,18,1.0,1,1.4595990180969238,430,1.0,1 +27930,18,1.0,1,1.3026010990142822,431,1.0,1 +27931,18,1.0,1,2.318603754043579,432,1.0,1 +27932,18,1.0,1,2.093593120574951,433,0.0,1 +27933,18,0.0,1,1.2176008224487305,434,0.0,1 +27934,18,1.0,1,2.6486191749572754,435,1.0,1 +27935,18,1.0,1,1.385599970817566,436,0.0,1 +27936,18,0.0,1,1.3736001253128052,437,0.0,1 +27937,18,0.0,1,2.6416187286376953,438,0.0,1 +27938,18,1.0,1,1.9415929317474365,439,0.0,1 +27939,18,0.0,1,1.3196008205413818,440,0.0,1 +27940,18,1.0,1,1.8055946826934814,441,1.0,1 +27941,18,1.0,1,1.3446005582809448,442,1.0,1 +27942,18,1.0,1,1.5625977516174316,443,1.0,1 +27943,18,1.0,1,1.4845987558364868,444,1.0,1 +27944,18,1.0,1,1.252600908279419,445,1.0,1 +27945,18,1.0,1,1.5565978288650513,446,1.0,1 +27946,18,1.0,1,1.8505940437316895,447,1.0,1 +27947,18,0.0,1,2.330604314804077,448,0.0,1 +27948,18,1.0,1,1.2776010036468506,449,1.0,1 +27949,18,1.0,1,1.6885961294174194,450,0.0,1 +27950,18,0.0,1,1.7035958766937256,451,0.0,1 +27951,18,1.0,1,2.1505959033966064,452,1.0,1 +27952,18,0.0,1,1.4095996618270874,453,0.0,1 +27953,18,0.0,1,1.3666002750396729,454,0.0,1 +27954,18,1.0,1,2.051591396331787,455,1.0,1 +27955,18,1.0,1,1.871593713760376,456,1.0,1 +27956,18,1.0,1,1.4825987815856934,457,1.0,1 +27957,18,0.0,1,1.3166009187698364,458,1.0,1 +27958,18,0.0,1,1.9815924167633057,459,1.0,1 +27959,18,0.0,1,1.4615989923477173,460,1.0,1 +27960,18,0.0,1,1.4895986318588257,461,0.0,1 +27961,18,1.0,1,1.3656002283096313,462,1.0,1 +27962,18,1.0,1,1.3995997905731201,463,1.0,1 +27963,18,0.0,1,1.5555977821350098,464,0.0,1 +27964,18,0.0,1,1.3286007642745972,465,1.0,1 +27965,18,1.0,1,1.9735925197601318,466,1.0,1 +27966,18,1.0,1,2.1315951347351074,467,1.0,1 +27967,18,0.0,1,1.4975985288619995,468,0.0,1 +27968,18,1.0,1,1.660596489906311,469,1.0,1 +27969,18,1.0,1,1.8645938634872437,470,1.0,1 +27970,18,1.0,1,1.3995997905731201,471,1.0,1 +27971,18,1.0,1,1.6215970516204834,472,0.0,1 +27972,18,0.0,1,1.1966007947921753,473,1.0,1 +27973,18,0.0,1,1.1916007995605469,474,1.0,1 +27974,18,0.0,1,2.1965980529785156,475,1.0,1 +27975,18,0.0,1,1.499598503112793,476,0.0,1 +27976,18,0.0,1,1.7505953311920166,477,0.0,1 +27977,18,0.0,1,1.3955998420715332,478,0.0,1 +27978,18,0.0,1,1.377600073814392,479,0.0,1 +27979,18,0.0,1,2.301602840423584,480,1.0,1 +27980,18,0.0,1,1.2596009969711304,481,0.0,1 +27981,18,0.0,1,2.34560489654541,482,1.0,1 +27982,18,0.0,1,1.4925986528396606,483,1.0,1 +27983,18,0.0,1,1.9775924682617188,484,0.0,1 +27984,18,0.0,1,2.089592933654785,485,1.0,1 +27985,18,0.0,1,1.18160080909729,486,0.0,1 +27986,18,1.0,1,1.5885974168777466,487,0.0,1 +27987,18,0.0,1,1.185600757598877,488,0.0,1 +27988,18,1.0,1,1.564597725868225,489,1.0,1 +27989,18,1.0,1,1.424599528312683,490,1.0,1 +27990,18,1.0,1,1.473598837852478,491,0.0,1 +27991,18,0.0,1,1.681596279144287,492,0.0,1 +27992,18,1.0,1,1.7055959701538086,493,0.0,1 +27993,18,1.0,1,1.8135945796966553,494,1.0,1 +27994,18,0.0,1,2.1335949897766113,495,0.0,1 +27995,18,1.0,1,1.2736009359359741,496,1.0,1 +27996,18,1.0,1,1.5785975456237793,497,1.0,1 +27997,18,1.0,1,1.2366008758544922,498,0.0,1 +27998,18,0.0,1,1.829594373703003,499,0.0,1 +27999,18,0.0,1,2.0475914478302,500,0.0,1 +28000,18,0.0,2,1.307600975036621,1,1.0,1 +28001,18,1.0,2,1.5495978593826294,2,1.0,1 +28002,18,1.0,2,1.4195995330810547,3,1.0,1 +28003,18,0.0,2,1.2616009712219238,4,0.0,1 +28004,18,1.0,2,1.3396005630493164,5,0.0,1 +28005,18,0.0,2,1.2756010293960571,6,0.0,1 +28006,18,0.0,2,1.3666002750396729,7,1.0,1 +28007,18,1.0,2,2.503612518310547,8,0.0,1 +28008,18,0.0,2,1.5145983695983887,9,1.0,1 +28009,18,0.0,2,1.1986007690429688,10,0.0,1 +28010,18,0.0,2,1.6615965366363525,11,0.0,1 +28011,18,1.0,2,2.079592704772949,12,0.0,1 +28012,18,0.0,2,1.255600929260254,13,1.0,1 +28013,18,0.0,2,1.42859947681427,14,0.0,1 +28014,18,1.0,2,2.1915979385375977,15,0.0,1 +28015,18,1.0,2,2.015591859817505,16,0.0,1 +28016,18,0.0,2,2.1485958099365234,17,1.0,1 +28017,18,0.0,2,1.5195982456207275,18,0.0,1 +28018,18,0.0,2,1.774595022201538,19,0.0,1 +28019,18,0.0,2,1.6055972576141357,20,0.0,1 +28020,18,1.0,2,1.8395941257476807,21,1.0,1 +28021,18,1.0,2,1.8845936059951782,22,1.0,1 +28022,18,0.0,2,1.2446008920669556,23,0.0,1 +28023,18,1.0,2,1.5715975761413574,24,0.0,1 +28024,18,1.0,2,1.5585978031158447,25,0.0,1 +28025,18,1.0,2,1.5625977516174316,26,1.0,1 +28026,18,1.0,2,1.3576003313064575,27,1.0,1 +28027,18,1.0,2,1.4385993480682373,28,1.0,1 +28028,18,1.0,2,1.4575990438461304,29,0.0,1 +28029,18,0.0,2,1.2056008577346802,30,1.0,1 +28030,18,0.0,2,1.2666009664535522,31,0.0,1 +28031,18,0.0,2,1.3186008930206299,32,1.0,1 +28032,18,0.0,2,2.057591438293457,33,1.0,1 +28033,18,0.0,2,2.1795973777770996,34,1.0,1 +28034,18,0.0,2,1.4745988845825195,35,0.0,1 +28035,18,1.0,2,2.6116175651550293,36,1.0,1 +28036,18,0.0,2,2.1555962562561035,37,1.0,1 +28037,18,0.0,2,1.4855986833572388,38,0.0,1 +28038,18,0.0,2,2.3636059761047363,39,1.0,1 +28039,18,0.0,2,1.7425954341888428,40,0.0,1 +28040,18,1.0,2,1.6185970306396484,41,1.0,1 +28041,18,1.0,2,1.2146008014678955,42,0.0,1 +28042,18,0.0,2,1.336600661277771,43,1.0,1 +28043,18,0.0,2,1.919593095779419,44,1.0,1 +28044,18,0.0,2,1.4835987091064453,45,1.0,1 +28045,18,0.0,2,1.3266007900238037,46,1.0,1 +28046,18,0.0,2,1.362600326538086,47,1.0,1 +28047,18,0.0,2,1.730595588684082,48,0.0,1 +28048,18,1.0,2,1.5185983180999756,49,0.0,1 +28049,18,0.0,2,1.147600769996643,50,0.0,1 +28050,18,0.0,2,1.7545952796936035,51,0.0,1 +28051,18,0.0,2,1.7915947437286377,52,0.0,1 +28052,18,1.0,2,1.779594898223877,53,1.0,1 +28053,18,0.0,2,1.5565978288650513,54,0.0,1 +28054,18,1.0,2,1.5155982971191406,55,1.0,1 +28055,18,1.0,2,1.8455941677093506,56,0.0,1 +28056,18,0.0,2,2.4856114387512207,57,1.0,1 +28057,18,0.0,2,1.871593713760376,58,1.0,1 +28058,18,0.0,2,1.4855986833572388,59,0.0,1 +28059,18,0.0,2,1.1736007928848267,60,0.0,1 +28060,18,0.0,2,1.8095946311950684,61,0.0,1 +28061,18,1.0,2,1.5845974683761597,62,0.0,1 +28062,18,0.0,2,1.2446008920669556,63,1.0,1 +28063,18,0.0,2,1.6625964641571045,64,1.0,1 +28064,18,0.0,2,1.6005972623825073,65,1.0,1 +28065,18,0.0,2,1.425599455833435,66,0.0,1 +28066,18,1.0,2,1.7595951557159424,67,1.0,1 +28067,18,0.0,2,1.6555964946746826,68,0.0,1 +28068,18,1.0,2,1.3316006660461426,69,0.0,1 +28069,18,1.0,2,2.1215944290161133,70,1.0,1 +28070,18,1.0,2,1.80459463596344,71,0.0,1 +28071,18,0.0,2,1.2896009683609009,72,0.0,1 +28072,18,1.0,2,1.639596700668335,73,0.0,1 +28073,18,0.0,2,1.5275981426239014,74,1.0,1 +28074,18,0.0,2,1.3446005582809448,75,0.0,1 +28075,18,1.0,2,1.7725950479507446,76,0.0,1 +28076,18,1.0,2,2.4336090087890625,77,0.0,1 +28077,18,1.0,2,1.7285956144332886,78,0.0,1 +28078,18,0.0,2,2.253600597381592,79,0.0,1 +28079,18,1.0,2,2.261600971221924,80,0.0,1 +28080,18,1.0,2,1.8015947341918945,81,1.0,1 +28081,18,1.0,2,1.3166009187698364,82,0.0,1 +28082,18,0.0,2,2.1205945014953613,83,0.0,1 +28083,18,1.0,2,1.7935948371887207,84,1.0,1 +28084,18,1.0,2,1.5555977821350098,85,0.0,1 +28085,18,0.0,2,1.917593240737915,86,1.0,1 +28086,18,0.0,2,1.2736009359359741,87,1.0,1 +28087,18,0.0,2,1.5005985498428345,88,0.0,1 +28088,18,0.0,2,2.3526053428649902,89,1.0,1 +28089,18,0.0,2,2.007591962814331,90,1.0,1 +28090,18,1.0,2,1.8995933532714844,91,1.0,1 +28091,18,0.0,2,1.2936010360717773,92,1.0,1 +28092,18,1.0,2,1.8605939149856567,93,0.0,1 +28093,18,0.0,2,1.572597622871399,94,0.0,1 +28094,18,0.0,2,2.3556056022644043,95,0.0,1 +28095,18,0.0,2,1.2076008319854736,96,1.0,1 +28096,18,0.0,2,1.9905922412872314,97,0.0,1 +28097,18,0.0,2,1.363600254058838,98,0.0,1 +28098,18,0.0,2,1.2896009683609009,99,1.0,1 +28099,18,0.0,2,1.2286008596420288,100,1.0,1 +28100,18,0.0,2,2.008592128753662,101,0.0,1 +28101,18,0.0,2,2.1445956230163574,102,0.0,1 +28102,18,0.0,2,2.0945932865142822,103,1.0,1 +28103,18,0.0,2,1.3416005373001099,104,0.0,1 +28104,18,0.0,2,1.2746009826660156,105,0.0,1 +28105,18,1.0,2,1.6765962839126587,106,0.0,1 +28106,18,0.0,2,1.597597360610962,107,0.0,1 +28107,18,1.0,2,1.8655939102172852,108,0.0,1 +28108,18,1.0,2,1.7725950479507446,109,0.0,1 +28109,18,0.0,2,1.3935998678207397,110,1.0,1 +28110,18,0.0,2,1.8475940227508545,111,0.0,1 +28111,18,0.0,2,1.8595938682556152,112,0.0,1 +28112,18,0.0,2,2.516613006591797,113,0.0,1 +28113,18,0.0,2,1.498598575592041,114,1.0,1 +28114,18,0.0,2,1.1936007738113403,115,1.0,1 +28115,18,0.0,2,1.3895999193191528,116,0.0,1 +28116,18,1.0,2,2.2195992469787598,117,0.0,1 +28117,18,0.0,2,1.3716001510620117,118,0.0,1 +28118,18,0.0,2,1.2976009845733643,119,1.0,1 +28119,18,0.0,2,1.5495978593826294,120,0.0,1 +28120,18,0.0,2,2.568615436553955,121,0.0,1 +28121,18,0.0,2,1.1706007719039917,122,0.0,1 +28122,18,1.0,2,1.4265995025634766,123,0.0,1 +28123,18,1.0,2,1.6285969018936157,124,0.0,1 +28124,18,1.0,2,1.4195995330810547,125,0.0,1 +28125,18,0.0,2,2.860629081726074,126,1.0,1 +28126,18,0.0,2,1.8725937604904175,127,0.0,1 +28127,18,0.0,2,1.212600827217102,128,0.0,1 +28128,18,1.0,2,1.6465966701507568,129,0.0,1 +28129,18,1.0,2,1.825594425201416,130,0.0,1 +28130,18,1.0,2,2.1725969314575195,131,0.0,1 +28131,18,1.0,2,1.9335930347442627,132,0.0,1 +28132,18,0.0,2,2.0985934734344482,133,0.0,1 +28133,18,1.0,2,1.6325968503952026,134,0.0,1 +28134,18,0.0,2,1.6035971641540527,135,1.0,1 +28135,18,0.0,2,1.2596009969711304,136,0.0,1 +28136,18,1.0,2,2.283602237701416,137,1.0,1 +28137,18,1.0,2,1.7625951766967773,138,1.0,1 +28138,18,0.0,2,1.5065984725952148,139,0.0,1 +28139,18,1.0,2,2.3506052494049072,140,1.0,1 +28140,18,1.0,2,1.450599193572998,141,0.0,1 +28141,18,1.0,2,1.45159912109375,142,1.0,1 +28142,18,1.0,2,1.6365967988967896,143,1.0,1 +28143,18,1.0,2,1.6755962371826172,144,0.0,1 +28144,18,1.0,2,2.4546101093292236,145,1.0,1 +28145,18,1.0,2,1.6045972108840942,146,1.0,1 +28146,18,1.0,2,1.5985972881317139,147,1.0,1 +28147,18,1.0,2,2.1305949687957764,148,0.0,1 +28148,18,1.0,2,1.9605926275253296,149,0.0,1 +28149,18,1.0,2,1.6235969066619873,150,1.0,1 +28150,18,1.0,2,1.5765975713729858,151,0.0,1 +28151,18,0.0,2,1.8845936059951782,152,0.0,1 +28152,18,0.0,2,2.1225945949554443,153,1.0,1 +28153,18,0.0,2,1.6995959281921387,154,1.0,1 +28154,18,0.0,2,1.4935985803604126,155,0.0,1 +28155,18,1.0,2,2.278601884841919,156,0.0,1 +28156,18,0.0,2,1.4575990438461304,157,0.0,1 +28157,18,1.0,2,2.8706295490264893,158,1.0,1 +28158,18,1.0,2,1.4975985288619995,159,0.0,1 +28159,18,1.0,2,2.6646199226379395,160,1.0,1 +28160,18,1.0,2,1.8135945796966553,161,0.0,1 +28161,18,0.0,2,1.4645990133285522,162,0.0,1 +28162,18,0.0,2,1.221600890159607,163,1.0,1 +28163,18,0.0,2,1.2136008739471436,164,0.0,1 +28164,18,0.0,2,1.3296006917953491,165,0.0,1 +28165,18,0.0,2,1.550597906112671,166,0.0,1 +28166,18,0.0,2,1.1996008157730103,167,0.0,1 +28167,18,1.0,2,1.4335993528366089,168,0.0,1 +28168,18,1.0,2,1.5555977821350098,169,1.0,1 +28169,18,1.0,2,2.0285916328430176,170,0.0,1 +28170,18,1.0,2,1.5355980396270752,171,1.0,1 +28171,18,1.0,2,1.6365967988967896,172,0.0,1 +28172,18,0.0,2,1.1666007041931152,173,1.0,1 +28173,18,0.0,2,1.288601040840149,174,1.0,1 +28174,18,0.0,2,1.3796000480651855,175,1.0,1 +28175,18,0.0,2,1.2876009941101074,176,1.0,1 +28176,18,0.0,2,1.245600938796997,177,0.0,1 +28177,18,0.0,2,1.3606003522872925,178,1.0,1 +28178,18,0.0,2,1.2376009225845337,179,1.0,1 +28179,18,0.0,2,1.2226009368896484,180,1.0,1 +28180,18,0.0,2,1.5015984773635864,181,1.0,1 +28181,18,0.0,2,1.7605952024459839,182,1.0,1 +28182,18,0.0,2,1.2056008577346802,183,0.0,1 +28183,18,0.0,2,1.5315980911254883,184,0.0,1 +28184,18,1.0,2,1.7485953569412231,185,0.0,1 +28185,18,0.0,2,1.2776010036468506,186,0.0,1 +28186,18,0.0,2,1.3706002235412598,187,1.0,1 +28187,18,0.0,2,1.252600908279419,188,0.0,1 +28188,18,1.0,2,2.568615436553955,189,0.0,1 +28189,18,1.0,2,1.2606009244918823,190,0.0,1 +28190,18,1.0,2,1.477598786354065,191,1.0,1 +28191,18,0.0,2,1.2436009645462036,192,0.0,1 +28192,18,1.0,2,1.9115931987762451,193,0.0,1 +28193,18,0.0,2,1.8095946311950684,194,0.0,1 +28194,18,1.0,2,1.9325929880142212,195,1.0,1 +28195,18,1.0,2,1.6785962581634521,196,1.0,1 +28196,18,1.0,2,1.4755988121032715,197,0.0,1 +28197,18,0.0,2,1.3096009492874146,198,1.0,1 +28198,18,0.0,2,1.6295969486236572,199,0.0,1 +28199,18,1.0,2,1.992592215538025,200,0.0,1 +28200,18,0.0,2,1.4385993480682373,201,0.0,1 +28201,18,0.0,2,1.476598858833313,202,0.0,1 +28202,18,1.0,2,1.6535966396331787,203,1.0,1 +28203,18,0.0,2,1.3246008157730103,204,1.0,1 +28204,18,0.0,2,1.2346009016036987,205,0.0,1 +28205,18,1.0,2,1.8505940437316895,206,1.0,1 +28206,18,1.0,2,1.2996010780334473,207,1.0,1 +28207,18,1.0,2,1.5835974216461182,208,0.0,1 +28208,18,1.0,2,1.3905999660491943,209,1.0,1 +28209,18,1.0,2,1.4125996828079224,210,1.0,1 +28210,18,1.0,2,1.4485992193222046,211,0.0,1 +28211,18,1.0,2,1.8085945844650269,212,0.0,1 +28212,18,0.0,2,1.5405980348587036,213,0.0,1 +28213,18,0.0,2,1.5535978078842163,214,1.0,1 +28214,18,0.0,2,1.2966010570526123,215,0.0,1 +28215,18,0.0,2,1.42859947681427,216,0.0,1 +28216,18,0.0,2,1.922593116760254,217,0.0,1 +28217,18,1.0,2,1.821594476699829,218,0.0,1 +28218,18,1.0,2,1.6655964851379395,219,1.0,1 +28219,18,1.0,2,1.2846009731292725,220,0.0,1 +28220,18,0.0,2,1.212600827217102,221,0.0,1 +28221,18,0.0,2,1.874593734741211,222,1.0,1 +28222,18,1.0,2,2.300602912902832,223,1.0,1 +28223,18,0.0,2,1.4685989618301392,224,0.0,1 +28224,18,0.0,2,1.3476004600524902,225,1.0,1 +28225,18,1.0,2,1.5925973653793335,226,1.0,1 +28226,18,0.0,2,1.2506009340286255,227,1.0,1 +28227,18,1.0,2,1.4135996103286743,228,1.0,1 +28228,18,0.0,2,1.403599739074707,229,1.0,1 +28229,18,0.0,2,2.077592372894287,230,0.0,1 +28230,18,1.0,2,1.3216007947921753,231,1.0,1 +28231,18,1.0,2,1.7995946407318115,232,1.0,1 +28232,18,1.0,2,1.679596185684204,233,1.0,1 +28233,18,1.0,2,1.896593451499939,234,0.0,1 +28234,18,0.0,2,1.4375993013381958,235,0.0,1 +28235,18,1.0,2,1.5495978593826294,236,1.0,1 +28236,18,1.0,2,1.9965921640396118,237,1.0,1 +28237,18,1.0,2,1.5695977210998535,238,0.0,1 +28238,18,0.0,2,1.3726001977920532,239,0.0,1 +28239,18,0.0,2,1.7115957736968994,240,1.0,1 +28240,18,0.0,2,1.8145945072174072,241,1.0,1 +28241,18,0.0,2,1.5275981426239014,242,0.0,1 +28242,18,0.0,2,1.992592215538025,243,1.0,1 +28243,18,0.0,2,2.337604522705078,244,1.0,1 +28244,18,0.0,2,1.154600739479065,245,0.0,1 +28245,18,1.0,2,1.6095972061157227,246,1.0,1 +28246,18,1.0,2,1.8425941467285156,247,1.0,1 +28247,18,1.0,2,1.3726001977920532,248,1.0,1 +28248,18,1.0,2,1.4685989618301392,249,0.0,1 +28249,18,0.0,2,1.2716009616851807,250,0.0,1 +28250,18,0.0,2,1.380600094795227,251,0.0,1 +28251,18,0.0,2,1.3446005582809448,252,1.0,1 +28252,18,1.0,2,1.8285943269729614,253,0.0,1 +28253,18,0.0,2,1.3676002025604248,254,0.0,1 +28254,18,0.0,2,2.2015981674194336,255,1.0,1 +28255,18,1.0,2,1.4665989875793457,256,1.0,1 +28256,18,0.0,2,1.5705976486206055,257,0.0,1 +28257,18,0.0,2,1.6325968503952026,258,0.0,1 +28258,18,1.0,2,1.4095996618270874,259,0.0,1 +28259,18,1.0,2,1.5835974216461182,260,1.0,1 +28260,18,1.0,2,1.3925999402999878,261,1.0,1 +28261,18,1.0,2,1.568597674369812,262,1.0,1 +28262,18,1.0,2,1.4885987043380737,263,1.0,1 +28263,18,0.0,2,1.6515965461730957,264,1.0,1 +28264,18,1.0,2,1.5675976276397705,265,0.0,1 +28265,18,0.0,2,1.6175971031188965,266,1.0,1 +28266,18,0.0,2,1.9305930137634277,267,1.0,1 +28267,18,0.0,2,2.016592025756836,268,0.0,1 +28268,18,0.0,2,1.587597370147705,269,1.0,1 +28269,18,0.0,2,1.5515978336334229,270,1.0,1 +28270,18,1.0,2,2.015591859817505,271,1.0,1 +28271,18,0.0,2,1.8885935544967651,272,0.0,1 +28272,18,1.0,2,1.8415942192077637,273,1.0,1 +28273,18,0.0,2,2.3976073265075684,274,0.0,1 +28274,18,0.0,2,1.6565965414047241,275,1.0,1 +28275,18,0.0,2,1.3026010990142822,276,1.0,1 +28276,18,1.0,2,2.4976119995117188,277,1.0,1 +28277,18,1.0,2,2.0015921592712402,278,1.0,1 +28278,18,0.0,2,1.425599455833435,279,0.0,1 +28279,18,1.0,2,1.4965986013412476,280,0.0,1 +28280,18,0.0,2,2.016592025756836,281,0.0,1 +28281,18,1.0,2,2.1595964431762695,282,0.0,1 +28282,18,1.0,2,2.4726109504699707,283,1.0,1 +28283,18,1.0,2,1.384600043296814,284,0.0,1 +28284,18,1.0,2,2.3546054363250732,285,1.0,1 +28285,18,1.0,2,1.245600938796997,286,0.0,1 +28286,18,0.0,2,1.8885935544967651,287,0.0,1 +28287,18,0.0,2,2.1265947818756104,288,1.0,1 +28288,18,0.0,2,1.2896009683609009,289,1.0,1 +28289,18,0.0,2,1.2576009035110474,290,1.0,1 +28290,18,0.0,2,1.9105932712554932,291,0.0,1 +28291,18,1.0,2,1.3975998163223267,292,1.0,1 +28292,18,1.0,2,1.7165957689285278,293,0.0,1 +28293,18,0.0,2,2.4016075134277344,294,0.0,1 +28294,18,0.0,2,1.5455979108810425,295,0.0,1 +28295,18,1.0,2,1.4145996570587158,296,1.0,1 +28296,18,1.0,2,1.7715950012207031,297,0.0,1 +28297,18,0.0,2,2.238600015640259,298,1.0,1 +28298,18,0.0,2,1.4425992965698242,299,1.0,1 +28299,18,0.0,2,1.7985947132110596,300,1.0,1 +28300,18,0.0,2,1.6625964641571045,301,1.0,1 +28301,18,0.0,2,1.4715988636016846,302,0.0,1 +28302,18,1.0,2,2.3666059970855713,303,1.0,1 +28303,18,1.0,2,1.733595609664917,304,1.0,1 +28304,18,1.0,2,1.5775976181030273,305,0.0,1 +28305,18,1.0,2,2.0455915927886963,306,1.0,1 +28306,18,1.0,2,1.18160080909729,307,1.0,1 +28307,18,1.0,2,1.2536009550094604,308,1.0,1 +28308,18,1.0,2,1.2936010360717773,309,0.0,1 +28309,18,0.0,2,1.2966010570526123,310,1.0,1 +28310,18,0.0,2,1.3096009492874146,311,0.0,1 +28311,18,1.0,2,1.6885961294174194,312,0.0,1 +28312,18,0.0,2,1.3696001768112183,313,0.0,1 +28313,18,1.0,2,1.6495966911315918,314,1.0,1 +28314,18,0.0,2,1.6915960311889648,315,0.0,1 +28315,18,0.0,2,2.2345998287200928,316,1.0,1 +28316,18,1.0,2,1.8945934772491455,317,0.0,1 +28317,18,0.0,2,1.6095972061157227,318,1.0,1 +28318,18,0.0,2,1.4575990438461304,319,0.0,1 +28319,18,0.0,2,2.1775970458984375,320,1.0,1 +28320,18,0.0,2,1.7645951509475708,321,0.0,1 +28321,18,1.0,2,1.4335993528366089,322,1.0,1 +28322,18,1.0,2,2.1305949687957764,323,1.0,1 +28323,18,1.0,2,1.2296009063720703,324,1.0,1 +28324,18,1.0,2,1.5055984258651733,325,0.0,1 +28325,18,0.0,2,1.7235956192016602,326,1.0,1 +28326,18,0.0,2,2.0015921592712402,327,1.0,1 +28327,18,0.0,2,1.869593858718872,328,1.0,1 +28328,18,0.0,2,1.2946009635925293,329,1.0,1 +28329,18,0.0,2,1.3236007690429688,330,0.0,1 +28330,18,0.0,2,1.3066010475158691,331,0.0,1 +28331,18,1.0,2,1.681596279144287,332,1.0,1 +28332,18,1.0,2,1.7195956707000732,333,1.0,1 +28333,18,1.0,2,2.0835928916931152,334,1.0,1 +28334,18,1.0,2,1.8205944299697876,335,1.0,1 +28335,18,1.0,2,1.3925999402999878,336,1.0,1 +28336,18,1.0,2,2.0445914268493652,337,1.0,1 +28337,18,1.0,2,1.7405954599380493,338,1.0,1 +28338,18,1.0,2,1.2386009693145752,339,0.0,1 +28339,18,1.0,2,1.7325955629348755,340,0.0,1 +28340,18,0.0,2,1.641596794128418,341,1.0,1 +28341,18,0.0,2,1.288601040840149,342,1.0,1 +28342,18,0.0,2,1.4145996570587158,343,1.0,1 +28343,18,0.0,2,1.4585990905761719,344,1.0,1 +28344,18,1.0,2,1.6565965414047241,345,0.0,1 +28345,18,0.0,2,1.8135945796966553,346,1.0,1 +28346,18,0.0,2,2.340604782104492,347,1.0,1 +28347,18,0.0,2,1.1836007833480835,348,0.0,1 +28348,18,0.0,2,2.529613494873047,349,1.0,1 +28349,18,0.0,2,1.363600254058838,350,0.0,1 +28350,18,0.0,2,2.0405917167663574,351,1.0,1 +28351,18,0.0,2,1.4345993995666504,352,0.0,1 +28352,18,0.0,2,1.2926009893417358,353,1.0,1 +28353,18,0.0,2,1.3016010522842407,354,0.0,1 +28354,18,1.0,2,1.4895986318588257,355,1.0,1 +28355,18,1.0,2,1.992592215538025,356,1.0,1 +28356,18,1.0,2,1.4825987815856934,357,1.0,1 +28357,18,1.0,2,1.547597885131836,358,1.0,1 +28358,18,1.0,2,1.7635951042175293,359,1.0,1 +28359,18,1.0,2,1.3196008205413818,360,0.0,1 +28360,18,1.0,2,1.5705976486206055,361,1.0,1 +28361,18,0.0,2,1.4785988330841064,362,1.0,1 +28362,18,0.0,2,1.3316006660461426,363,1.0,1 +28363,18,0.0,2,1.6985960006713867,364,0.0,1 +28364,18,1.0,2,2.575615882873535,365,0.0,1 +28365,18,0.0,2,1.5145983695983887,366,1.0,1 +28366,18,1.0,2,2.1855974197387695,367,1.0,1 +28367,18,0.0,2,1.5985972881317139,368,0.0,1 +28368,18,1.0,2,1.2986010313034058,369,1.0,1 +28369,18,1.0,2,1.5735976696014404,370,0.0,1 +28370,18,0.0,2,2.1525959968566895,371,1.0,1 +28371,18,0.0,2,2.0405917167663574,372,1.0,1 +28372,18,0.0,2,1.285601019859314,373,1.0,1 +28373,18,0.0,2,1.7055959701538086,374,0.0,1 +28374,18,1.0,2,1.874593734741211,375,0.0,1 +28375,18,1.0,2,1.9425928592681885,376,1.0,1 +28376,18,1.0,2,1.6665964126586914,377,1.0,1 +28377,18,0.0,2,1.4135996103286743,378,1.0,1 +28378,18,0.0,2,1.564597725868225,379,1.0,1 +28379,18,1.0,2,2.2015981674194336,380,0.0,1 +28380,18,0.0,2,1.542598009109497,381,1.0,1 +28381,18,0.0,2,1.3356006145477295,382,1.0,1 +28382,18,0.0,2,1.733595609664917,383,1.0,1 +28383,18,0.0,2,2.262601137161255,384,0.0,1 +28384,18,0.0,2,1.7165957689285278,385,0.0,1 +28385,18,1.0,2,2.0345916748046875,386,1.0,1 +28386,18,1.0,2,1.1766008138656616,387,0.0,1 +28387,18,0.0,2,2.604617118835449,388,0.0,1 +28388,18,1.0,2,1.2786009311676025,389,0.0,1 +28389,18,0.0,2,2.1355953216552734,390,0.0,1 +28390,18,1.0,2,1.7855949401855469,391,0.0,1 +28391,18,1.0,2,1.7955946922302246,392,1.0,1 +28392,18,1.0,2,1.3915998935699463,393,1.0,1 +28393,18,1.0,2,1.4345993995666504,394,1.0,1 +28394,18,1.0,2,1.3616002798080444,395,1.0,1 +28395,18,1.0,2,1.8945934772491455,396,1.0,1 +28396,18,1.0,2,1.3226008415222168,397,0.0,1 +28397,18,0.0,2,1.3446005582809448,398,0.0,1 +28398,18,0.0,2,1.2866010665893555,399,0.0,1 +28399,18,1.0,2,1.3606003522872925,400,1.0,1 +28400,18,1.0,2,1.6275968551635742,401,0.0,1 +28401,18,1.0,2,1.5095983743667603,402,1.0,1 +28402,18,1.0,2,2.0915932655334473,403,0.0,1 +28403,18,0.0,2,1.4085997343063354,404,0.0,1 +28404,18,0.0,2,1.7725950479507446,405,0.0,1 +28405,18,1.0,2,1.5595977306365967,406,0.0,1 +28406,18,1.0,2,1.5065984725952148,407,0.0,1 +28407,18,1.0,2,2.0245919227600098,408,0.0,1 +28408,18,1.0,2,2.051591396331787,409,1.0,1 +28409,18,1.0,2,1.2786009311676025,410,0.0,1 +28410,18,1.0,2,1.4795987606048584,411,1.0,1 +28411,18,1.0,2,2.3526053428649902,412,0.0,1 +28412,18,1.0,2,2.067592144012451,413,1.0,1 +28413,18,1.0,2,2.4126081466674805,414,1.0,1 +28414,18,1.0,2,1.3006010055541992,415,1.0,1 +28415,18,1.0,2,1.2746009826660156,416,0.0,1 +28416,18,1.0,2,2.516613006591797,417,1.0,1 +28417,18,1.0,2,1.915593147277832,418,1.0,1 +28418,18,1.0,2,1.7855949401855469,419,1.0,1 +28419,18,1.0,2,1.3686002492904663,420,1.0,1 +28420,18,1.0,2,1.410599708557129,421,1.0,1 +28421,18,0.0,2,1.4365993738174438,422,0.0,1 +28422,18,1.0,2,1.3566004037857056,423,0.0,1 +28423,18,0.0,2,1.3456004858016968,424,1.0,1 +28424,18,0.0,2,1.3176008462905884,425,1.0,1 +28425,18,0.0,2,1.1616007089614868,426,1.0,1 +28426,18,0.0,2,1.5155982971191406,427,1.0,1 +28427,18,0.0,2,1.3436005115509033,428,0.0,1 +28428,18,1.0,2,1.8165944814682007,429,1.0,1 +28429,18,1.0,2,2.4176082611083984,430,0.0,1 +28430,18,1.0,2,1.5145983695983887,431,0.0,1 +28431,18,0.0,2,1.7905948162078857,432,1.0,1 +28432,18,0.0,2,1.1676007509231567,433,0.0,1 +28433,18,0.0,2,1.9575927257537842,434,0.0,1 +28434,18,1.0,2,1.6985960006713867,435,1.0,1 +28435,18,1.0,2,2.1095938682556152,436,1.0,1 +28436,18,0.0,2,2.2015981674194336,437,1.0,1 +28437,18,0.0,2,1.9345929622650146,438,0.0,1 +28438,18,1.0,2,1.681596279144287,439,0.0,1 +28439,18,0.0,2,2.088593006134033,440,0.0,1 +28440,18,1.0,2,2.6516194343566895,441,1.0,1 +28441,18,1.0,2,2.283602237701416,442,1.0,1 +28442,18,1.0,2,1.2476009130477905,443,1.0,1 +28443,18,1.0,2,1.4005998373031616,444,0.0,1 +28444,18,0.0,2,2.304603099822998,445,1.0,1 +28445,18,0.0,2,1.2146008014678955,446,0.0,1 +28446,18,0.0,2,1.5385980606079102,447,0.0,1 +28447,18,1.0,2,1.524598240852356,448,0.0,1 +28448,18,1.0,2,1.683596134185791,449,0.0,1 +28449,18,0.0,2,1.1916007995605469,450,0.0,1 +28450,18,0.0,2,1.4935985803604126,451,0.0,1 +28451,18,0.0,2,1.8855936527252197,452,0.0,1 +28452,18,0.0,2,1.5515978336334229,453,1.0,1 +28453,18,0.0,2,1.3646003007888794,454,1.0,1 +28454,18,0.0,2,1.429599404335022,455,1.0,1 +28455,18,0.0,2,1.5225982666015625,456,0.0,1 +28456,18,0.0,2,1.5405980348587036,457,1.0,1 +28457,18,0.0,2,2.067592144012451,458,1.0,1 +28458,18,1.0,2,1.6435966491699219,459,0.0,1 +28459,18,0.0,2,1.8135945796966553,460,0.0,1 +28460,18,0.0,2,2.4496097564697266,461,1.0,1 +28461,18,0.0,2,2.244600296020508,462,0.0,1 +28462,18,0.0,2,2.0415916442871094,463,0.0,1 +28463,18,1.0,2,1.8905935287475586,464,0.0,1 +28464,18,1.0,2,1.3346006870269775,465,1.0,1 +28465,18,1.0,2,1.4455991983413696,466,0.0,1 +28466,18,1.0,2,1.9065933227539062,467,0.0,1 +28467,18,1.0,2,2.063591957092285,468,1.0,1 +28468,18,0.0,2,1.4805988073349,469,1.0,1 +28469,18,1.0,2,2.0275917053222656,470,1.0,1 +28470,18,0.0,2,1.3706002235412598,471,0.0,1 +28471,18,1.0,2,1.6505966186523438,472,1.0,1 +28472,18,1.0,2,1.4715988636016846,473,0.0,1 +28473,18,0.0,2,1.2536009550094604,474,0.0,1 +28474,18,0.0,2,1.4095996618270874,475,1.0,1 +28475,18,0.0,2,1.9755923748016357,476,0.0,1 +28476,18,0.0,2,1.4045997858047485,477,1.0,1 +28477,18,0.0,2,1.6945960521697998,478,1.0,1 +28478,18,0.0,2,2.4386093616485596,479,1.0,1 +28479,18,0.0,2,1.3955998420715332,480,0.0,1 +28480,18,0.0,2,1.340600609779358,481,0.0,1 +28481,18,0.0,2,1.4835987091064453,482,0.0,1 +28482,18,1.0,2,2.575615882873535,483,0.0,1 +28483,18,1.0,2,2.073592185974121,484,0.0,1 +28484,18,0.0,2,1.821594476699829,485,0.0,1 +28485,18,0.0,2,1.9605926275253296,486,0.0,1 +28486,18,1.0,2,2.302603006362915,487,1.0,1 +28487,18,1.0,2,1.8815937042236328,488,0.0,1 +28488,18,1.0,2,1.381600022315979,489,0.0,1 +28489,18,1.0,2,2.1765971183776855,490,0.0,1 +28490,18,1.0,2,1.5305981636047363,491,1.0,1 +28491,18,0.0,2,1.4155995845794678,492,0.0,1 +28492,18,1.0,2,2.1085939407348633,493,0.0,1 +28493,18,1.0,2,1.3536003828048706,494,1.0,1 +28494,18,1.0,2,1.64259672164917,495,1.0,1 +28495,18,1.0,2,1.708595871925354,496,0.0,1 +28496,18,1.0,2,1.377600073814392,497,1.0,1 +28497,18,1.0,2,1.4225995540618896,498,0.0,1 +28498,18,1.0,2,1.5865974426269531,499,1.0,1 +28499,18,1.0,2,1.7265956401824951,500,1.0,1 +28500,19,1.0,0,1.589006781578064,1,1.0,1 +28501,19,1.0,0,1.4690083265304565,2,0.0,1 +28502,19,0.0,0,1.2190093994140625,3,0.0,1 +28503,19,0.0,0,1.4480085372924805,4,1.0,1 +28504,19,0.0,0,1.2840094566345215,5,0.0,1 +28505,19,0.0,0,1.4730082750320435,6,0.0,1 +28506,19,1.0,0,1.611006498336792,7,1.0,1 +28507,19,1.0,0,1.939002275466919,8,1.0,1 +28508,19,1.0,0,1.7650045156478882,9,1.0,1 +28509,19,1.0,0,1.3080095052719116,10,1.0,1 +28510,19,1.0,0,1.4640083312988281,11,1.0,1 +28511,19,1.0,0,1.316009521484375,12,1.0,1 +28512,19,1.0,0,1.4920079708099365,13,1.0,1 +28513,19,1.0,0,1.4790081977844238,14,1.0,1 +28514,19,1.0,0,1.704005241394043,15,1.0,1 +28515,19,1.0,0,1.93400239944458,16,1.0,1 +28516,19,1.0,0,1.3840093612670898,17,1.0,1 +28517,19,1.0,0,1.8220038414001465,18,1.0,1 +28518,19,1.0,0,1.7600045204162598,19,1.0,1 +28519,19,0.0,0,1.5480072498321533,20,0.0,1 +28520,19,1.0,0,1.3990092277526855,21,1.0,1 +28521,19,1.0,0,1.7700045108795166,22,1.0,1 +28522,19,1.0,0,1.7210050821304321,23,1.0,1 +28523,19,1.0,0,1.3540096282958984,24,1.0,1 +28524,19,1.0,0,2.11299991607666,25,1.0,1 +28525,19,1.0,0,1.699005365371704,26,1.0,1 +28526,19,1.0,0,1.6090065240859985,27,1.0,1 +28527,19,1.0,0,1.3360096216201782,28,1.0,1 +28528,19,1.0,0,1.750004768371582,29,1.0,1 +28529,19,1.0,0,1.6730057001113892,30,1.0,1 +28530,19,1.0,0,1.5920066833496094,31,1.0,1 +28531,19,1.0,0,1.4330087900161743,32,1.0,1 +28532,19,1.0,0,1.5800068378448486,33,1.0,1 +28533,19,1.0,0,1.6280062198638916,34,1.0,1 +28534,19,1.0,0,1.545007348060608,35,1.0,1 +28535,19,1.0,0,2.2190048694610596,36,1.0,1 +28536,19,1.0,0,1.2270092964172363,37,0.0,1 +28537,19,1.0,0,1.7460048198699951,38,1.0,1 +28538,19,1.0,0,2.11299991607666,39,1.0,1 +28539,19,1.0,0,1.6100064516067505,40,1.0,1 +28540,19,1.0,0,1.4510085582733154,41,1.0,1 +28541,19,1.0,0,1.4870080947875977,42,0.0,1 +28542,19,1.0,0,1.4260088205337524,43,0.0,1 +28543,19,0.0,0,1.704005241394043,44,0.0,1 +28544,19,0.0,0,2.1780028343200684,45,0.0,1 +28545,19,1.0,0,1.3990092277526855,46,1.0,1 +28546,19,1.0,0,1.4840080738067627,47,1.0,1 +28547,19,1.0,0,2.129000663757324,48,1.0,1 +28548,19,1.0,0,1.5070078372955322,49,1.0,1 +28549,19,1.0,0,1.3960092067718506,50,1.0,1 +28550,19,1.0,0,1.5010079145431519,51,1.0,1 +28551,19,1.0,0,1.472008228302002,52,1.0,1 +28552,19,1.0,0,1.427008867263794,53,1.0,1 +28553,19,1.0,0,1.3710095882415771,54,0.0,1 +28554,19,0.0,0,1.5480072498321533,55,0.0,1 +28555,19,1.0,0,1.6610058546066284,56,1.0,1 +28556,19,1.0,0,1.725005030632019,57,1.0,1 +28557,19,1.0,0,1.3640096187591553,58,1.0,1 +28558,19,1.0,0,2.0980002880096436,59,1.0,1 +28559,19,1.0,0,1.4760081768035889,60,1.0,1 +28560,19,1.0,0,1.3590096235275269,61,0.0,1 +28561,19,1.0,0,1.704005241394043,62,1.0,1 +28562,19,1.0,0,1.2800095081329346,63,0.0,1 +28563,19,1.0,0,1.7050052881240845,64,1.0,1 +28564,19,1.0,0,1.4370087385177612,65,1.0,1 +28565,19,1.0,0,1.248009443283081,66,1.0,1 +28566,19,1.0,0,1.4650083780288696,67,1.0,1 +28567,19,1.0,0,1.516007661819458,68,0.0,1 +28568,19,0.0,0,1.8960027694702148,69,0.0,1 +28569,19,1.0,0,1.468008279800415,70,1.0,1 +28570,19,0.0,0,1.9080026149749756,71,1.0,1 +28571,19,0.0,0,1.2780094146728516,72,0.0,1 +28572,19,1.0,0,1.420008897781372,73,1.0,1 +28573,19,1.0,0,1.585006833076477,74,1.0,1 +28574,19,1.0,0,1.542007327079773,75,1.0,1 +28575,19,1.0,0,1.246009349822998,76,1.0,1 +28576,19,1.0,0,1.5170077085494995,77,1.0,1 +28577,19,1.0,0,1.7170051336288452,78,1.0,1 +28578,19,1.0,0,1.7240049839019775,79,1.0,1 +28579,19,1.0,0,2.1350009441375732,80,1.0,1 +28580,19,1.0,0,1.3810094594955444,81,0.0,1 +28581,19,0.0,0,1.5310075283050537,82,0.0,1 +28582,19,1.0,0,2.020001173019409,83,1.0,1 +28583,19,0.0,0,1.2840094566345215,84,0.0,1 +28584,19,0.0,0,1.3480095863342285,85,0.0,1 +28585,19,0.0,0,1.4890080690383911,86,0.0,1 +28586,19,1.0,0,1.4040091037750244,87,1.0,1 +28587,19,1.0,0,2.595022439956665,88,1.0,1 +28588,19,1.0,0,2.1910035610198975,89,1.0,1 +28589,19,1.0,0,1.6890054941177368,90,1.0,1 +28590,19,1.0,0,1.7870042324066162,91,1.0,1 +28591,19,1.0,0,1.7720043659210205,92,0.0,1 +28592,19,1.0,0,1.4350087642669678,93,1.0,1 +28593,19,0.0,0,1.4780081510543823,94,0.0,1 +28594,19,1.0,0,1.6040065288543701,95,0.0,1 +28595,19,1.0,0,1.5610071420669556,96,1.0,1 +28596,19,1.0,0,1.79500412940979,97,0.0,1 +28597,19,1.0,0,1.750004768371582,98,1.0,1 +28598,19,1.0,0,1.6980054378509521,99,1.0,1 +28599,19,1.0,0,1.3930093050003052,100,1.0,1 +28600,19,1.0,0,1.5320074558258057,101,1.0,1 +28601,19,1.0,0,1.468008279800415,102,1.0,1 +28602,19,1.0,0,1.3000094890594482,103,0.0,1 +28603,19,0.0,0,1.4250088930130005,104,1.0,1 +28604,19,0.0,0,1.541007399559021,105,0.0,1 +28605,19,0.0,0,1.3400095701217651,106,0.0,1 +28606,19,1.0,0,1.9910016059875488,107,0.0,1 +28607,19,1.0,0,1.5950067043304443,108,0.0,1 +28608,19,1.0,0,1.5290075540542603,109,0.0,1 +28609,19,0.0,0,1.8160037994384766,110,0.0,1 +28610,19,0.0,0,1.2780094146728516,111,0.0,1 +28611,19,0.0,0,1.6170064210891724,112,1.0,1 +28612,19,0.0,0,1.3930093050003052,113,0.0,1 +28613,19,0.0,0,1.6250063180923462,114,1.0,1 +28614,19,0.0,0,1.895002841949463,115,0.0,1 +28615,19,1.0,0,1.9020028114318848,116,1.0,1 +28616,19,1.0,0,1.4120090007781982,117,1.0,1 +28617,19,1.0,0,1.4250088930130005,118,1.0,1 +28618,19,1.0,0,1.8490034341812134,119,1.0,1 +28619,19,1.0,0,1.5810068845748901,120,1.0,1 +28620,19,0.0,0,1.4640083312988281,121,0.0,1 +28621,19,1.0,0,1.4130090475082397,122,1.0,1 +28622,19,1.0,0,1.2940094470977783,123,1.0,1 +28623,19,1.0,0,1.5530072450637817,124,0.0,1 +28624,19,0.0,0,1.825003743171692,125,0.0,1 +28625,19,0.0,0,1.6830055713653564,126,0.0,1 +28626,19,0.0,0,1.3330096006393433,127,0.0,1 +28627,19,0.0,0,1.31300950050354,128,0.0,1 +28628,19,0.0,0,2.026001214981079,129,0.0,1 +28629,19,0.0,0,1.3950092792510986,130,0.0,1 +28630,19,1.0,0,1.6830055713653564,131,1.0,1 +28631,19,1.0,0,1.3690096139907837,132,1.0,1 +28632,19,1.0,0,1.7590045928955078,133,0.0,1 +28633,19,0.0,0,2.2230050563812256,134,0.0,1 +28634,19,1.0,0,1.9290024042129517,135,1.0,1 +28635,19,1.0,0,1.467008352279663,136,1.0,1 +28636,19,1.0,0,1.637006163597107,137,1.0,1 +28637,19,0.0,0,2.347010850906372,138,0.0,1 +28638,19,1.0,0,1.2910094261169434,139,1.0,1 +28639,19,1.0,0,1.7420048713684082,140,1.0,1 +28640,19,1.0,0,1.8010040521621704,141,1.0,1 +28641,19,1.0,0,2.034001111984253,142,0.0,1 +28642,19,0.0,0,2.080000400543213,143,0.0,1 +28643,19,0.0,0,1.376009464263916,144,0.0,1 +28644,19,1.0,0,1.7350049018859863,145,1.0,1 +28645,19,1.0,0,1.7670044898986816,146,0.0,1 +28646,19,1.0,0,2.0190012454986572,147,0.0,1 +28647,19,1.0,0,1.4300087690353394,148,0.0,1 +28648,19,1.0,0,1.9890016317367554,149,1.0,1 +28649,19,1.0,0,1.5350074768066406,150,1.0,1 +28650,19,1.0,0,1.3400095701217651,151,1.0,1 +28651,19,1.0,0,1.8570033311843872,152,0.0,1 +28652,19,1.0,0,2.3760123252868652,153,1.0,1 +28653,19,1.0,0,1.6690057516098022,154,1.0,1 +28654,19,1.0,0,2.0060014724731445,155,1.0,1 +28655,19,1.0,0,1.5730069875717163,156,1.0,1 +28656,19,1.0,0,1.755004644393921,157,1.0,1 +28657,19,1.0,0,1.542007327079773,158,1.0,1 +28658,19,1.0,0,1.7330049276351929,159,1.0,1 +28659,19,1.0,0,1.2960095405578613,160,1.0,1 +28660,19,1.0,0,1.4160089492797852,161,1.0,1 +28661,19,1.0,0,1.5530072450637817,162,1.0,1 +28662,19,1.0,0,1.4800081253051758,163,1.0,1 +28663,19,1.0,0,1.5830068588256836,164,1.0,1 +28664,19,1.0,0,1.28900945186615,165,1.0,1 +28665,19,1.0,0,1.4560084342956543,166,1.0,1 +28666,19,1.0,0,1.5240075588226318,167,1.0,1 +28667,19,1.0,0,1.5920066833496094,168,1.0,1 +28668,19,1.0,0,2.2070043087005615,169,1.0,1 +28669,19,1.0,0,1.5080077648162842,170,0.0,1 +28670,19,0.0,0,1.4260088205337524,171,0.0,1 +28671,19,0.0,0,2.1780028343200684,172,0.0,1 +28672,19,0.0,0,1.3650096654891968,173,1.0,1 +28673,19,0.0,0,1.493008017539978,174,0.0,1 +28674,19,0.0,0,1.2190093994140625,175,0.0,1 +28675,19,0.0,0,1.9530020952224731,176,1.0,1 +28676,19,0.0,0,1.2830095291137695,177,1.0,1 +28677,19,0.0,0,1.7350049018859863,178,0.0,1 +28678,19,1.0,0,1.984001636505127,179,1.0,1 +28679,19,0.0,0,1.31900954246521,180,0.0,1 +28680,19,0.0,0,1.3300095796585083,181,0.0,1 +28681,19,1.0,0,1.6060065031051636,182,1.0,1 +28682,19,1.0,0,1.987001657485962,183,1.0,1 +28683,19,1.0,0,1.3650096654891968,184,1.0,1 +28684,19,1.0,0,1.4530085325241089,185,1.0,1 +28685,19,1.0,0,1.427008867263794,186,1.0,1 +28686,19,1.0,0,1.4260088205337524,187,1.0,1 +28687,19,1.0,0,1.4340087175369263,188,0.0,1 +28688,19,0.0,0,2.027001142501831,189,0.0,1 +28689,19,1.0,0,1.589006781578064,190,1.0,1 +28690,19,1.0,0,1.4480085372924805,191,1.0,1 +28691,19,1.0,0,1.5490072965621948,192,0.0,1 +28692,19,0.0,0,1.5340074300765991,193,1.0,1 +28693,19,0.0,0,1.5140076875686646,194,0.0,1 +28694,19,0.0,0,2.1640024185180664,195,0.0,1 +28695,19,1.0,0,1.4910080432891846,196,1.0,1 +28696,19,0.0,0,1.5210076570510864,197,0.0,1 +28697,19,1.0,0,1.3370095491409302,198,0.0,1 +28698,19,1.0,0,1.2720094919204712,199,1.0,1 +28699,19,1.0,0,1.515007734298706,200,1.0,1 +28700,19,1.0,0,1.5170077085494995,201,1.0,1 +28701,19,1.0,0,1.612006425857544,202,1.0,1 +28702,19,1.0,0,2.0440008640289307,203,1.0,1 +28703,19,1.0,0,1.608006477355957,204,0.0,1 +28704,19,0.0,0,1.9770017862319946,205,0.0,1 +28705,19,1.0,0,1.4770082235336304,206,1.0,1 +28706,19,1.0,0,1.6690057516098022,207,1.0,1 +28707,19,1.0,0,1.6040065288543701,208,0.0,1 +28708,19,0.0,0,1.4130090475082397,209,0.0,1 +28709,19,1.0,0,1.6680057048797607,210,1.0,1 +28710,19,1.0,0,1.3600096702575684,211,1.0,1 +28711,19,1.0,0,1.8300037384033203,212,1.0,1 +28712,19,1.0,0,1.4030091762542725,213,1.0,1 +28713,19,1.0,0,1.5180076360702515,214,1.0,1 +28714,19,1.0,0,1.5070078372955322,215,1.0,1 +28715,19,1.0,0,1.2690094709396362,216,1.0,1 +28716,19,1.0,0,1.702005386352539,217,1.0,1 +28717,19,1.0,0,1.564007043838501,218,1.0,1 +28718,19,1.0,0,1.3730095624923706,219,1.0,1 +28719,19,1.0,0,1.7220051288604736,220,1.0,1 +28720,19,1.0,0,1.6040065288543701,221,1.0,1 +28721,19,1.0,0,1.8040039539337158,222,1.0,1 +28722,19,0.0,0,1.755004644393921,223,0.0,1 +28723,19,1.0,0,1.6380062103271484,224,1.0,1 +28724,19,1.0,0,1.5170077085494995,225,1.0,1 +28725,19,0.0,0,1.4480085372924805,226,1.0,1 +28726,19,1.0,0,1.4820080995559692,227,0.0,1 +28727,19,0.0,0,2.017001152038574,228,0.0,1 +28728,19,1.0,0,2.0180013179779053,229,1.0,1 +28729,19,1.0,0,1.5210076570510864,230,1.0,1 +28730,19,1.0,0,1.8610032796859741,231,1.0,1 +28731,19,1.0,0,1.5360074043273926,232,0.0,1 +28732,19,1.0,0,1.9490021467208862,233,1.0,1 +28733,19,1.0,0,1.4370087385177612,234,0.0,1 +28734,19,0.0,0,1.252009391784668,235,0.0,1 +28735,19,1.0,0,1.6210063695907593,236,1.0,1 +28736,19,1.0,0,1.6180064678192139,237,1.0,1 +28737,19,1.0,0,1.246009349822998,238,1.0,1 +28738,19,1.0,0,1.4370087385177612,239,1.0,1 +28739,19,1.0,0,1.777004361152649,240,1.0,1 +28740,19,1.0,0,1.516007661819458,241,1.0,1 +28741,19,1.0,0,1.3770095109939575,242,1.0,1 +28742,19,1.0,0,2.2070043087005615,243,1.0,1 +28743,19,1.0,0,2.0910003185272217,244,1.0,1 +28744,19,1.0,0,1.563007116317749,245,0.0,1 +28745,19,1.0,0,2.0020015239715576,246,0.0,1 +28746,19,0.0,0,1.8130038976669312,247,0.0,1 +28747,19,0.0,0,2.0440008640289307,248,0.0,1 +28748,19,1.0,0,1.7400047779083252,249,1.0,1 +28749,19,1.0,0,2.1490015983581543,250,1.0,1 +28750,19,1.0,0,1.7900042533874512,251,1.0,1 +28751,19,1.0,0,1.6280062198638916,252,1.0,1 +28752,19,1.0,0,1.4080090522766113,253,1.0,1 +28753,19,1.0,0,1.3050094842910767,254,1.0,1 +28754,19,1.0,0,1.3730095624923706,255,1.0,1 +28755,19,1.0,0,1.590006709098816,256,1.0,1 +28756,19,1.0,0,1.383009433746338,257,1.0,1 +28757,19,1.0,0,1.3840093612670898,258,1.0,1 +28758,19,1.0,0,1.490007996559143,259,1.0,1 +28759,19,1.0,0,1.5550072193145752,260,1.0,1 +28760,19,1.0,0,1.3200095891952515,261,1.0,1 +28761,19,1.0,0,1.3400095701217651,262,0.0,1 +28762,19,0.0,0,2.1940035820007324,263,0.0,1 +28763,19,1.0,0,1.9230024814605713,264,0.0,1 +28764,19,0.0,0,1.4430086612701416,265,0.0,1 +28765,19,0.0,0,1.221009373664856,266,0.0,1 +28766,19,1.0,0,1.9190025329589844,267,1.0,1 +28767,19,1.0,0,1.9050027132034302,268,1.0,1 +28768,19,1.0,0,1.9750018119812012,269,1.0,1 +28769,19,1.0,0,1.379009485244751,270,1.0,1 +28770,19,1.0,0,1.8570033311843872,271,1.0,1 +28771,19,1.0,0,1.8370035886764526,272,1.0,1 +28772,19,1.0,0,1.585006833076477,273,1.0,1 +28773,19,1.0,0,1.424008846282959,274,1.0,1 +28774,19,1.0,0,1.4650083780288696,275,0.0,1 +28775,19,0.0,0,1.4320087432861328,276,0.0,1 +28776,19,1.0,0,1.886003017425537,277,1.0,1 +28777,19,1.0,0,1.5030078887939453,278,1.0,1 +28778,19,1.0,0,1.5310075283050537,279,1.0,1 +28779,19,1.0,0,1.5390074253082275,280,1.0,1 +28780,19,1.0,0,1.9540021419525146,281,1.0,1 +28781,19,1.0,0,1.3180094957351685,282,1.0,1 +28782,19,1.0,0,1.450008511543274,283,1.0,1 +28783,19,1.0,0,1.4040091037750244,284,1.0,1 +28784,19,1.0,0,1.796004056930542,285,1.0,1 +28785,19,1.0,0,1.3880093097686768,286,1.0,1 +28786,19,0.0,0,1.2200093269348145,287,0.0,1 +28787,19,1.0,0,1.935002326965332,288,1.0,1 +28788,19,1.0,0,1.3240095376968384,289,0.0,1 +28789,19,0.0,0,1.9630019664764404,290,1.0,1 +28790,19,0.0,0,1.4380086660385132,291,1.0,1 +28791,19,0.0,0,1.3440096378326416,292,0.0,1 +28792,19,1.0,0,1.5950067043304443,293,1.0,1 +28793,19,1.0,0,1.3910093307495117,294,0.0,1 +28794,19,0.0,0,2.1800031661987305,295,0.0,1 +28795,19,0.0,0,1.9940016269683838,296,1.0,1 +28796,19,0.0,0,1.4910080432891846,297,0.0,1 +28797,19,1.0,0,2.4140138626098633,298,0.0,1 +28798,19,0.0,0,2.2560067176818848,299,0.0,1 +28799,19,0.0,0,1.3950092792510986,300,1.0,1 +28800,19,0.0,0,1.2990095615386963,301,0.0,1 +28801,19,1.0,0,1.5400073528289795,302,1.0,1 +28802,19,1.0,0,1.3620096445083618,303,1.0,1 +28803,19,1.0,0,1.9560019969940186,304,0.0,1 +28804,19,1.0,0,1.4580084085464478,305,0.0,1 +28805,19,0.0,0,1.3690096139907837,306,0.0,1 +28806,19,0.0,0,1.5220075845718384,307,0.0,1 +28807,19,1.0,0,1.9580020904541016,308,1.0,1 +28808,19,1.0,0,1.6790056228637695,309,1.0,1 +28809,19,0.0,0,1.4960079193115234,310,0.0,1 +28810,19,1.0,0,1.5750069618225098,311,1.0,1 +28811,19,1.0,0,1.6740057468414307,312,1.0,1 +28812,19,1.0,0,1.6610058546066284,313,1.0,1 +28813,19,1.0,0,1.6250063180923462,314,1.0,1 +28814,19,1.0,0,1.6460061073303223,315,1.0,1 +28815,19,1.0,0,1.3710095882415771,316,1.0,1 +28816,19,1.0,0,2.0890002250671387,317,1.0,1 +28817,19,1.0,0,1.4620083570480347,318,1.0,1 +28818,19,1.0,0,1.3480095863342285,319,1.0,1 +28819,19,1.0,0,1.748004674911499,320,1.0,1 +28820,19,1.0,0,1.5430073738098145,321,1.0,1 +28821,19,1.0,0,1.490007996559143,322,1.0,1 +28822,19,1.0,0,1.449008584022522,323,1.0,1 +28823,19,1.0,0,1.4480085372924805,324,0.0,1 +28824,19,1.0,0,2.4230144023895264,325,1.0,1 +28825,19,1.0,0,1.6130064725875854,326,1.0,1 +28826,19,1.0,0,1.3570096492767334,327,1.0,1 +28827,19,1.0,0,1.3540096282958984,328,1.0,1 +28828,19,0.0,0,1.8680031299591064,329,0.0,1 +28829,19,1.0,0,1.6650058031082153,330,1.0,1 +28830,19,1.0,0,1.5580071210861206,331,0.0,1 +28831,19,1.0,0,1.8490034341812134,332,1.0,1 +28832,19,1.0,0,2.0660006999969482,333,1.0,1 +28833,19,1.0,0,1.2700093984603882,334,1.0,1 +28834,19,1.0,0,1.6030066013336182,335,1.0,1 +28835,19,1.0,0,1.2700093984603882,336,1.0,1 +28836,19,1.0,0,1.5800068378448486,337,1.0,1 +28837,19,1.0,0,1.563007116317749,338,1.0,1 +28838,19,1.0,0,1.3630096912384033,339,1.0,1 +28839,19,0.0,0,1.4390087127685547,340,0.0,1 +28840,19,1.0,0,1.792004108428955,341,0.0,1 +28841,19,1.0,0,1.8260037899017334,342,0.0,1 +28842,19,1.0,0,1.8670032024383545,343,1.0,1 +28843,19,0.0,0,1.5960066318511963,344,0.0,1 +28844,19,1.0,0,1.5870068073272705,345,1.0,1 +28845,19,0.0,0,1.4850081205368042,346,1.0,1 +28846,19,0.0,0,1.6100064516067505,347,0.0,1 +28847,19,1.0,0,1.4910080432891846,348,1.0,1 +28848,19,1.0,0,1.8050040006637573,349,0.0,1 +28849,19,0.0,0,1.519007682800293,350,0.0,1 +28850,19,1.0,0,1.2920094728469849,351,1.0,1 +28851,19,1.0,0,1.6910054683685303,352,1.0,1 +28852,19,1.0,0,1.652005910873413,353,0.0,1 +28853,19,0.0,0,1.6630058288574219,354,0.0,1 +28854,19,0.0,0,1.2470093965530396,355,0.0,1 +28855,19,0.0,0,1.8230037689208984,356,0.0,1 +28856,19,1.0,0,1.279009461402893,357,1.0,1 +28857,19,1.0,0,1.4100090265274048,358,1.0,1 +28858,19,1.0,0,1.372009515762329,359,1.0,1 +28859,19,1.0,0,1.2870094776153564,360,1.0,1 +28860,19,1.0,0,1.515007734298706,361,1.0,1 +28861,19,1.0,0,1.5070078372955322,362,1.0,1 +28862,19,1.0,0,1.5920066833496094,363,1.0,1 +28863,19,1.0,0,1.7050052881240845,364,1.0,1 +28864,19,0.0,0,1.428008794784546,365,0.0,1 +28865,19,1.0,0,1.258009433746338,366,1.0,1 +28866,19,1.0,0,1.4890080690383911,367,1.0,1 +28867,19,1.0,0,1.4700082540512085,368,1.0,1 +28868,19,1.0,0,1.4310088157653809,369,1.0,1 +28869,19,1.0,0,1.2590093612670898,370,1.0,1 +28870,19,1.0,0,1.7140052318572998,371,0.0,1 +28871,19,0.0,0,2.0840003490448,372,0.0,1 +28872,19,0.0,0,1.4420086145401,373,0.0,1 +28873,19,0.0,0,1.4600083827972412,374,0.0,1 +28874,19,0.0,0,1.3780094385147095,375,0.0,1 +28875,19,1.0,0,1.6010066270828247,376,1.0,1 +28876,19,1.0,0,1.5520071983337402,377,0.0,1 +28877,19,0.0,0,1.5840067863464355,378,0.0,1 +28878,19,1.0,0,1.4080090522766113,379,0.0,1 +28879,19,0.0,0,2.53201961517334,380,0.0,1 +28880,19,1.0,0,2.2010040283203125,381,1.0,1 +28881,19,1.0,0,1.843003511428833,382,1.0,1 +28882,19,1.0,0,1.3780094385147095,383,0.0,1 +28883,19,0.0,0,1.5730069875717163,384,0.0,1 +28884,19,1.0,0,1.8830029964447021,385,1.0,1 +28885,19,0.0,0,1.450008511543274,386,0.0,1 +28886,19,1.0,0,1.541007399559021,387,0.0,1 +28887,19,1.0,0,1.7590045928955078,388,1.0,1 +28888,19,1.0,0,2.357011318206787,389,0.0,1 +28889,19,1.0,0,1.8830029964447021,390,1.0,1 +28890,19,1.0,0,2.114000082015991,391,1.0,1 +28891,19,1.0,0,1.353009581565857,392,1.0,1 +28892,19,1.0,0,1.563007116317749,393,1.0,1 +28893,19,1.0,0,1.405009150505066,394,1.0,1 +28894,19,1.0,0,1.7350049018859863,395,1.0,1 +28895,19,1.0,0,1.3670096397399902,396,1.0,1 +28896,19,1.0,0,1.3510096073150635,397,1.0,1 +28897,19,1.0,0,1.4060090780258179,398,1.0,1 +28898,19,1.0,0,1.5910067558288574,399,0.0,1 +28899,19,1.0,0,1.935002326965332,400,1.0,1 +28900,19,1.0,0,1.5760068893432617,401,1.0,1 +28901,19,1.0,0,1.3700095415115356,402,1.0,1 +28902,19,1.0,0,1.47100830078125,403,1.0,1 +28903,19,1.0,0,1.615006446838379,404,1.0,1 +28904,19,1.0,0,1.6000065803527832,405,1.0,1 +28905,19,1.0,0,1.3890093564987183,406,1.0,1 +28906,19,1.0,0,1.615006446838379,407,1.0,1 +28907,19,1.0,0,1.445008635520935,408,1.0,1 +28908,19,1.0,0,1.4290088415145874,409,1.0,1 +28909,19,1.0,0,1.5300074815750122,410,1.0,1 +28910,19,1.0,0,2.2540063858032227,411,1.0,1 +28911,19,1.0,0,1.5430073738098145,412,1.0,1 +28912,19,0.0,0,1.3570096492767334,413,0.0,1 +28913,19,1.0,0,1.8060040473937988,414,1.0,1 +28914,19,1.0,0,1.3210095167160034,415,1.0,1 +28915,19,1.0,0,1.5710070133209229,416,1.0,1 +28916,19,1.0,0,1.34900963306427,417,1.0,1 +28917,19,1.0,0,1.3730095624923706,418,1.0,1 +28918,19,1.0,0,1.4210089445114136,419,1.0,1 +28919,19,1.0,0,1.2470093965530396,420,0.0,1 +28920,19,1.0,0,1.5480072498321533,421,1.0,1 +28921,19,1.0,0,1.4430086612701416,422,0.0,1 +28922,19,0.0,0,1.7610045671463013,423,0.0,1 +28923,19,0.0,0,1.8750030994415283,424,0.0,1 +28924,19,1.0,0,2.0400009155273438,425,1.0,1 +28925,19,1.0,0,1.7200050354003906,426,1.0,1 +28926,19,1.0,0,1.3840093612670898,427,1.0,1 +28927,19,1.0,0,1.4780081510543823,428,0.0,1 +28928,19,1.0,0,1.383009433746338,429,1.0,1 +28929,19,1.0,0,1.3430095911026,430,1.0,1 +28930,19,0.0,0,1.8500034809112549,431,0.0,1 +28931,19,1.0,0,1.5560071468353271,432,1.0,1 +28932,19,1.0,0,1.752004623413086,433,1.0,1 +28933,19,1.0,0,1.5800068378448486,434,1.0,1 +28934,19,1.0,0,1.3990092277526855,435,1.0,1 +28935,19,1.0,0,1.6020065546035767,436,1.0,1 +28936,19,1.0,0,1.654006004333496,437,1.0,1 +28937,19,1.0,0,2.4670164585113525,438,1.0,1 +28938,19,1.0,0,1.5470073223114014,439,1.0,1 +28939,19,1.0,0,1.6310062408447266,440,1.0,1 +28940,19,1.0,0,1.7660045623779297,441,0.0,1 +28941,19,1.0,0,2.6360244750976562,442,1.0,1 +28942,19,1.0,0,1.615006446838379,443,1.0,1 +28943,19,1.0,0,1.4990079402923584,444,1.0,1 +28944,19,1.0,0,1.8740031719207764,445,1.0,1 +28945,19,1.0,0,1.5530072450637817,446,1.0,1 +28946,19,1.0,0,2.2290053367614746,447,1.0,1 +28947,19,1.0,0,1.9950015544891357,448,1.0,1 +28948,19,1.0,0,1.6960053443908691,449,0.0,1 +28949,19,1.0,0,2.2780075073242188,450,1.0,1 +28950,19,1.0,0,2.134000778198242,451,1.0,1 +28951,19,1.0,0,1.6660058498382568,452,1.0,1 +28952,19,1.0,0,1.4910080432891846,453,1.0,1 +28953,19,1.0,0,1.4600083827972412,454,1.0,1 +28954,19,1.0,0,1.8660032749176025,455,1.0,1 +28955,19,1.0,0,1.6660058498382568,456,1.0,1 +28956,19,1.0,0,1.3870093822479248,457,1.0,1 +28957,19,1.0,0,1.4170089960098267,458,1.0,1 +28958,19,1.0,0,1.846003532409668,459,1.0,1 +28959,19,1.0,0,2.0400009155273438,460,1.0,1 +28960,19,1.0,0,1.6350061893463135,461,1.0,1 +28961,19,1.0,0,1.4470086097717285,462,0.0,1 +28962,19,0.0,0,2.2200050354003906,463,0.0,1 +28963,19,0.0,0,1.6250063180923462,464,1.0,1 +28964,19,0.0,0,1.6640057563781738,465,0.0,1 +28965,19,1.0,0,1.6420061588287354,466,1.0,1 +28966,19,0.0,0,1.3210095167160034,467,0.0,1 +28967,19,1.0,0,1.4400086402893066,468,1.0,1 +28968,19,1.0,0,1.3810094594955444,469,1.0,1 +28969,19,1.0,0,1.538007378578186,470,1.0,1 +28970,19,1.0,0,1.8450034856796265,471,1.0,1 +28971,19,1.0,0,1.4190089702606201,472,1.0,1 +28972,19,1.0,0,1.4610084295272827,473,0.0,1 +28973,19,1.0,0,1.4170089960098267,474,1.0,1 +28974,19,1.0,0,1.449008584022522,475,1.0,1 +28975,19,1.0,0,1.512007713317871,476,1.0,1 +28976,19,1.0,0,1.6950054168701172,477,1.0,1 +28977,19,1.0,0,1.5500072240829468,478,1.0,1 +28978,19,1.0,0,1.8800029754638672,479,0.0,1 +28979,19,1.0,0,1.656005859375,480,1.0,1 +28980,19,1.0,0,1.8630032539367676,481,1.0,1 +28981,19,1.0,0,1.8540034294128418,482,1.0,1 +28982,19,1.0,0,1.3070094585418701,483,0.0,1 +28983,19,1.0,0,1.6720056533813477,484,1.0,1 +28984,19,1.0,0,1.6170064210891724,485,1.0,1 +28985,19,1.0,0,1.2810094356536865,486,1.0,1 +28986,19,1.0,0,1.3620096445083618,487,1.0,1 +28987,19,1.0,0,1.6010066270828247,488,1.0,1 +28988,19,1.0,0,1.5960066318511963,489,1.0,1 +28989,19,0.0,0,1.248009443283081,490,0.0,1 +28990,19,1.0,0,1.6300063133239746,491,1.0,1 +28991,19,1.0,0,1.4430086612701416,492,1.0,1 +28992,19,1.0,0,1.3340095281600952,493,0.0,1 +28993,19,0.0,0,2.4450154304504395,494,0.0,1 +28994,19,0.0,0,2.1050000190734863,495,0.0,1 +28995,19,1.0,0,2.077000617980957,496,1.0,1 +28996,19,1.0,0,1.6840054988861084,497,0.0,1 +28997,19,0.0,0,1.2660094499588013,498,0.0,1 +28998,19,0.0,0,2.0540008544921875,499,1.0,1 +28999,19,0.0,0,1.7050052881240845,500,0.0,1 +29000,19,0.0,1,1.4410086870193481,1,0.0,1 +29001,19,1.0,1,1.748004674911499,2,0.0,1 +29002,19,1.0,1,1.401009202003479,3,0.0,1 +29003,19,1.0,1,2.285007953643799,4,1.0,1 +29004,19,1.0,1,1.7010053396224976,5,1.0,1 +29005,19,0.0,1,1.6200063228607178,6,1.0,1 +29006,19,1.0,1,1.8480033874511719,7,1.0,1 +29007,19,1.0,1,1.710005283355713,8,0.0,1 +29008,19,0.0,1,1.2320094108581543,9,0.0,1 +29009,19,0.0,1,1.8130038976669312,10,0.0,1 +29010,19,0.0,1,1.6490060091018677,11,1.0,1 +29011,19,0.0,1,1.5310075283050537,12,0.0,1 +29012,19,1.0,1,1.5530072450637817,13,1.0,1 +29013,19,1.0,1,1.699005365371704,14,0.0,1 +29014,19,0.0,1,1.8230037689208984,15,0.0,1 +29015,19,1.0,1,1.5830068588256836,16,1.0,1 +29016,19,0.0,1,1.3890093564987183,17,1.0,1 +29017,19,0.0,1,1.3300095796585083,18,0.0,1 +29018,19,1.0,1,1.4250088930130005,19,0.0,1 +29019,19,1.0,1,1.5260075330734253,20,1.0,1 +29020,19,1.0,1,2.2220048904418945,21,1.0,1 +29021,19,1.0,1,1.7930041551589966,22,1.0,1 +29022,19,1.0,1,1.3060095310211182,23,1.0,1 +29023,19,1.0,1,1.6680057048797607,24,0.0,1 +29024,19,1.0,1,1.798004150390625,25,1.0,1 +29025,19,0.0,1,1.2020093202590942,26,1.0,1 +29026,19,1.0,1,2.0090012550354004,27,1.0,1 +29027,19,0.0,1,2.1110000610351562,28,0.0,1 +29028,19,1.0,1,1.68500554561615,29,1.0,1 +29029,19,0.0,1,1.3270095586776733,30,0.0,1 +29030,19,1.0,1,1.3660095930099487,31,0.0,1 +29031,19,1.0,1,2.0630006790161133,32,1.0,1 +29032,19,1.0,1,1.3550095558166504,33,1.0,1 +29033,19,1.0,1,1.4790081977844238,34,0.0,1 +29034,19,1.0,1,1.7230050563812256,35,1.0,1 +29035,19,1.0,1,1.475008249282837,36,1.0,1 +29036,19,1.0,1,1.4790081977844238,37,0.0,1 +29037,19,1.0,1,1.4410086870193481,38,1.0,1 +29038,19,1.0,1,2.0580008029937744,39,0.0,1 +29039,19,0.0,1,1.5940066576004028,40,0.0,1 +29040,19,1.0,1,2.0000014305114746,41,1.0,1 +29041,19,1.0,1,1.5660070180892944,42,1.0,1 +29042,19,1.0,1,2.1090002059936523,43,1.0,1 +29043,19,1.0,1,1.4390087127685547,44,0.0,1 +29044,19,0.0,1,1.4170089960098267,45,1.0,1 +29045,19,0.0,1,1.3440096378326416,46,0.0,1 +29046,19,0.0,1,1.356009602546692,47,0.0,1 +29047,19,1.0,1,2.300008773803711,48,1.0,1 +29048,19,1.0,1,1.2280093431472778,49,1.0,1 +29049,19,1.0,1,1.751004695892334,50,1.0,1 +29050,19,1.0,1,1.8970028162002563,51,1.0,1 +29051,19,1.0,1,1.7970041036605835,52,1.0,1 +29052,19,1.0,1,1.5870068073272705,53,0.0,1 +29053,19,1.0,1,1.4030091762542725,54,1.0,1 +29054,19,1.0,1,1.3820093870162964,55,1.0,1 +29055,19,1.0,1,1.5810068845748901,56,1.0,1 +29056,19,1.0,1,1.750004768371582,57,1.0,1 +29057,19,0.0,1,1.846003532409668,58,1.0,1 +29058,19,0.0,1,2.305008888244629,59,0.0,1 +29059,19,1.0,1,1.3550095558166504,60,1.0,1 +29060,19,1.0,1,1.379009485244751,61,0.0,1 +29061,19,1.0,1,1.7420048713684082,62,1.0,1 +29062,19,1.0,1,2.4360151290893555,63,1.0,1 +29063,19,1.0,1,1.4760081768035889,64,1.0,1 +29064,19,1.0,1,1.5720069408416748,65,1.0,1 +29065,19,1.0,1,1.9100027084350586,66,0.0,1 +29066,19,1.0,1,2.2740073204040527,67,0.0,1 +29067,19,0.0,1,1.468008279800415,68,0.0,1 +29068,19,1.0,1,1.559007167816162,69,1.0,1 +29069,19,1.0,1,1.747004747390747,70,1.0,1 +29070,19,1.0,1,1.8380036354064941,71,1.0,1 +29071,19,1.0,1,1.3070094585418701,72,1.0,1 +29072,19,1.0,1,2.1310007572174072,73,1.0,1 +29073,19,1.0,1,1.450008511543274,74,1.0,1 +29074,19,1.0,1,1.5430073738098145,75,0.0,1 +29075,19,1.0,1,2.0120012760162354,76,1.0,1 +29076,19,1.0,1,1.542007327079773,77,1.0,1 +29077,19,1.0,1,1.468008279800415,78,1.0,1 +29078,19,1.0,1,1.6940054893493652,79,1.0,1 +29079,19,1.0,1,2.122000217437744,80,1.0,1 +29080,19,1.0,1,1.7230050563812256,81,0.0,1 +29081,19,1.0,1,1.4580084085464478,82,1.0,1 +29082,19,1.0,1,1.7570046186447144,83,1.0,1 +29083,19,1.0,1,1.475008249282837,84,1.0,1 +29084,19,1.0,1,1.3580095767974854,85,1.0,1 +29085,19,1.0,1,1.654006004333496,86,0.0,1 +29086,19,1.0,1,1.8160037994384766,87,0.0,1 +29087,19,1.0,1,1.3890093564987183,88,0.0,1 +29088,19,0.0,1,1.6720056533813477,89,0.0,1 +29089,19,0.0,1,2.4150140285491943,90,1.0,1 +29090,19,1.0,1,1.9160025119781494,91,1.0,1 +29091,19,0.0,1,1.5430073738098145,92,0.0,1 +29092,19,1.0,1,1.5220075845718384,93,0.0,1 +29093,19,0.0,1,1.282009482383728,94,0.0,1 +29094,19,1.0,1,1.4660083055496216,95,1.0,1 +29095,19,1.0,1,1.659005880355835,96,1.0,1 +29096,19,1.0,1,1.5210076570510864,97,0.0,1 +29097,19,1.0,1,1.8110039234161377,98,1.0,1 +29098,19,1.0,1,1.6870055198669434,99,1.0,1 +29099,19,1.0,1,1.563007116317749,100,0.0,1 +29100,19,1.0,1,1.9630019664764404,101,1.0,1 +29101,19,1.0,1,1.652005910873413,102,1.0,1 +29102,19,1.0,1,1.8990027904510498,103,1.0,1 +29103,19,1.0,1,1.6270062923431396,104,1.0,1 +29104,19,1.0,1,1.5650070905685425,105,1.0,1 +29105,19,1.0,1,1.490007996559143,106,1.0,1 +29106,19,1.0,1,1.6220064163208008,107,1.0,1 +29107,19,1.0,1,1.6880054473876953,108,0.0,1 +29108,19,0.0,1,1.8700032234191895,109,0.0,1 +29109,19,0.0,1,1.5770069360733032,110,0.0,1 +29110,19,1.0,1,2.069000720977783,111,1.0,1 +29111,19,1.0,1,1.5990066528320312,112,1.0,1 +29112,19,1.0,1,1.4360086917877197,113,1.0,1 +29113,19,1.0,1,1.8300037384033203,114,0.0,1 +29114,19,1.0,1,1.6950054168701172,115,1.0,1 +29115,19,1.0,1,1.3390095233917236,116,1.0,1 +29116,19,1.0,1,1.6970053911209106,117,1.0,1 +29117,19,0.0,1,1.2530094385147095,118,0.0,1 +29118,19,1.0,1,1.402009129524231,119,1.0,1 +29119,19,1.0,1,1.398009181022644,120,1.0,1 +29120,19,1.0,1,1.3670096397399902,121,1.0,1 +29121,19,1.0,1,1.3580095767974854,122,1.0,1 +29122,19,1.0,1,1.936002254486084,123,1.0,1 +29123,19,1.0,1,1.8560032844543457,124,1.0,1 +29124,19,1.0,1,1.4790081977844238,125,1.0,1 +29125,19,1.0,1,2.1930036544799805,126,1.0,1 +29126,19,1.0,1,1.4480085372924805,127,0.0,1 +29127,19,1.0,1,1.6480059623718262,128,1.0,1 +29128,19,1.0,1,1.498007893562317,129,0.0,1 +29129,19,1.0,1,1.9700019359588623,130,0.0,1 +29130,19,1.0,1,1.538007378578186,131,1.0,1 +29131,19,0.0,1,1.3990092277526855,132,0.0,1 +29132,19,1.0,1,1.5790069103240967,133,1.0,1 +29133,19,1.0,1,1.7810043096542358,134,1.0,1 +29134,19,1.0,1,1.4250088930130005,135,1.0,1 +29135,19,1.0,1,1.6430060863494873,136,1.0,1 +29136,19,1.0,1,1.5060077905654907,137,1.0,1 +29137,19,1.0,1,1.8700032234191895,138,1.0,1 +29138,19,1.0,1,1.68500554561615,139,0.0,1 +29139,19,0.0,1,1.5940066576004028,140,1.0,1 +29140,19,1.0,1,1.5400073528289795,141,1.0,1 +29141,19,0.0,1,1.2250093221664429,142,1.0,1 +29142,19,0.0,1,2.1490015983581543,143,1.0,1 +29143,19,1.0,1,1.4510085582733154,144,0.0,1 +29144,19,0.0,1,1.2900094985961914,145,1.0,1 +29145,19,0.0,1,1.3240095376968384,146,0.0,1 +29146,19,0.0,1,1.428008794784546,147,1.0,1 +29147,19,0.0,1,1.2340093851089478,148,0.0,1 +29148,19,0.0,1,1.5620070695877075,149,1.0,1 +29149,19,0.0,1,1.3340095281600952,150,0.0,1 +29150,19,0.0,1,2.54502010345459,151,1.0,1 +29151,19,0.0,1,1.2050093412399292,152,1.0,1 +29152,19,0.0,1,1.4550085067749023,153,0.0,1 +29153,19,1.0,1,1.446008563041687,154,1.0,1 +29154,19,1.0,1,1.5400073528289795,155,0.0,1 +29155,19,1.0,1,1.9630019664764404,156,0.0,1 +29156,19,1.0,1,1.9220025539398193,157,1.0,1 +29157,19,0.0,1,1.6300063133239746,158,0.0,1 +29158,19,1.0,1,2.0670006275177,159,1.0,1 +29159,19,1.0,1,1.519007682800293,160,1.0,1 +29160,19,1.0,1,1.322009563446045,161,1.0,1 +29161,19,0.0,1,1.6050065755844116,162,0.0,1 +29162,19,1.0,1,1.751004695892334,163,1.0,1 +29163,19,0.0,1,1.754004716873169,164,0.0,1 +29164,19,1.0,1,1.3690096139907837,165,0.0,1 +29165,19,0.0,1,2.1540017127990723,166,0.0,1 +29166,19,0.0,1,1.2660094499588013,167,0.0,1 +29167,19,0.0,1,2.324009895324707,168,1.0,1 +29168,19,0.0,1,1.5690070390701294,169,0.0,1 +29169,19,0.0,1,1.3280096054077148,170,0.0,1 +29170,19,0.0,1,1.5490072965621948,171,0.0,1 +29171,19,0.0,1,1.4380086660385132,172,0.0,1 +29172,19,0.0,1,1.8980028629302979,173,0.0,1 +29173,19,1.0,1,1.6460061073303223,174,1.0,1 +29174,19,1.0,1,1.47100830078125,175,1.0,1 +29175,19,1.0,1,1.397009253501892,176,1.0,1 +29176,19,1.0,1,1.2560094594955444,177,1.0,1 +29177,19,1.0,1,1.6220064163208008,178,0.0,1 +29178,19,1.0,1,1.6430060863494873,179,0.0,1 +29179,19,1.0,1,1.352009654045105,180,1.0,1 +29180,19,1.0,1,1.6470060348510742,181,1.0,1 +29181,19,1.0,1,1.6310062408447266,182,0.0,1 +29182,19,0.0,1,1.493008017539978,183,0.0,1 +29183,19,1.0,1,1.3610095977783203,184,1.0,1 +29184,19,1.0,1,1.4090090990066528,185,1.0,1 +29185,19,1.0,1,1.6670057773590088,186,1.0,1 +29186,19,1.0,1,1.4170089960098267,187,1.0,1 +29187,19,1.0,1,1.315009593963623,188,1.0,1 +29188,19,1.0,1,1.4480085372924805,189,1.0,1 +29189,19,1.0,1,1.3480095863342285,190,1.0,1 +29190,19,1.0,1,1.4420086145401,191,0.0,1 +29191,19,0.0,1,2.1610021591186523,192,0.0,1 +29192,19,1.0,1,1.4530085325241089,193,1.0,1 +29193,19,1.0,1,1.3430095911026,194,1.0,1 +29194,19,1.0,1,1.8600032329559326,195,0.0,1 +29195,19,1.0,1,1.7390048503875732,196,0.0,1 +29196,19,0.0,1,1.8350036144256592,197,0.0,1 +29197,19,0.0,1,1.4590084552764893,198,0.0,1 +29198,19,1.0,1,2.394012928009033,199,1.0,1 +29199,19,1.0,1,1.9640018939971924,200,0.0,1 +29200,19,1.0,1,1.8380036354064941,201,1.0,1 +29201,19,1.0,1,1.3350095748901367,202,0.0,1 +29202,19,1.0,1,2.4010133743286133,203,1.0,1 +29203,19,1.0,1,1.4360086917877197,204,1.0,1 +29204,19,1.0,1,1.6350061893463135,205,0.0,1 +29205,19,0.0,1,1.7570046186447144,206,0.0,1 +29206,19,0.0,1,1.9700019359588623,207,0.0,1 +29207,19,0.0,1,1.8200037479400635,208,0.0,1 +29208,19,1.0,1,1.6460061073303223,209,0.0,1 +29209,19,1.0,1,1.6380062103271484,210,0.0,1 +29210,19,0.0,1,1.652005910873413,211,0.0,1 +29211,19,0.0,1,1.2310093641281128,212,0.0,1 +29212,19,0.0,1,1.3200095891952515,213,0.0,1 +29213,19,0.0,1,1.538007378578186,214,1.0,1 +29214,19,0.0,1,1.3410096168518066,215,1.0,1 +29215,19,0.0,1,1.258009433746338,216,1.0,1 +29216,19,0.0,1,1.2810094356536865,217,0.0,1 +29217,19,0.0,1,2.1370010375976562,218,0.0,1 +29218,19,1.0,1,1.936002254486084,219,1.0,1 +29219,19,1.0,1,1.979001760482788,220,1.0,1 +29220,19,1.0,1,1.2340093851089478,221,0.0,1 +29221,19,1.0,1,2.4290146827697754,222,1.0,1 +29222,19,1.0,1,1.6210063695907593,223,0.0,1 +29223,19,1.0,1,1.3820093870162964,224,1.0,1 +29224,19,1.0,1,1.5620070695877075,225,1.0,1 +29225,19,1.0,1,1.5090078115463257,226,1.0,1 +29226,19,1.0,1,1.6690057516098022,227,1.0,1 +29227,19,1.0,1,1.6410061120986938,228,1.0,1 +29228,19,0.0,1,1.5550072193145752,229,1.0,1 +29229,19,1.0,1,1.817003846168518,230,1.0,1 +29230,19,1.0,1,1.7600045204162598,231,0.0,1 +29231,19,0.0,1,1.3010095357894897,232,1.0,1 +29232,19,0.0,1,1.350009560585022,233,1.0,1 +29233,19,0.0,1,2.1460013389587402,234,0.0,1 +29234,19,0.0,1,1.802004098892212,235,0.0,1 +29235,19,0.0,1,1.322009563446045,236,0.0,1 +29236,19,1.0,1,2.4610161781311035,237,1.0,1 +29237,19,1.0,1,2.2560067176818848,238,1.0,1 +29238,19,1.0,1,1.4660083055496216,239,1.0,1 +29239,19,1.0,1,2.0140013694763184,240,1.0,1 +29240,19,1.0,1,1.445008635520935,241,1.0,1 +29241,19,1.0,1,1.7370048761367798,242,1.0,1 +29242,19,1.0,1,1.3110095262527466,243,1.0,1 +29243,19,1.0,1,2.069000720977783,244,0.0,1 +29244,19,0.0,1,1.428008794784546,245,0.0,1 +29245,19,1.0,1,1.4570084810256958,246,1.0,1 +29246,19,0.0,1,1.282009482383728,247,0.0,1 +29247,19,1.0,1,1.5760068893432617,248,0.0,1 +29248,19,1.0,1,1.6340062618255615,249,0.0,1 +29249,19,1.0,1,2.595022439956665,250,1.0,1 +29250,19,1.0,1,2.0040013790130615,251,1.0,1 +29251,19,1.0,1,1.7220051288604736,252,1.0,1 +29252,19,1.0,1,1.4350087642669678,253,1.0,1 +29253,19,1.0,1,1.7140052318572998,254,1.0,1 +29254,19,1.0,1,1.4370087385177612,255,1.0,1 +29255,19,1.0,1,1.8060040473937988,256,1.0,1 +29256,19,0.0,1,1.5250076055526733,257,0.0,1 +29257,19,1.0,1,1.4220088720321655,258,1.0,1 +29258,19,1.0,1,1.6020065546035767,259,1.0,1 +29259,19,1.0,1,1.8980028629302979,260,0.0,1 +29260,19,1.0,1,1.4790081977844238,261,1.0,1 +29261,19,0.0,1,1.5270075798034668,262,0.0,1 +29262,19,1.0,1,1.935002326965332,263,1.0,1 +29263,19,1.0,1,1.467008352279663,264,1.0,1 +29264,19,1.0,1,1.843003511428833,265,0.0,1 +29265,19,1.0,1,1.7650045156478882,266,0.0,1 +29266,19,0.0,1,2.305008888244629,267,0.0,1 +29267,19,0.0,1,2.0160012245178223,268,0.0,1 +29268,19,0.0,1,1.2310093641281128,269,1.0,1 +29269,19,0.0,1,1.4220088720321655,270,0.0,1 +29270,19,0.0,1,1.2970094680786133,271,1.0,1 +29271,19,0.0,1,1.3350095748901367,272,1.0,1 +29272,19,0.0,1,1.5580071210861206,273,0.0,1 +29273,19,0.0,1,1.4870080947875977,274,0.0,1 +29274,19,0.0,1,2.325009822845459,275,0.0,1 +29275,19,0.0,1,1.5540071725845337,276,1.0,1 +29276,19,0.0,1,1.285009503364563,277,0.0,1 +29277,19,0.0,1,1.282009482383728,278,1.0,1 +29278,19,0.0,1,1.3320095539093018,279,1.0,1 +29279,19,0.0,1,1.4140089750289917,280,0.0,1 +29280,19,0.0,1,1.4150090217590332,281,0.0,1 +29281,19,1.0,1,2.1890034675598145,282,0.0,1 +29282,19,0.0,1,1.3700095415115356,283,0.0,1 +29283,19,0.0,1,1.7490047216415405,284,1.0,1 +29284,19,0.0,1,1.5720069408416748,285,0.0,1 +29285,19,0.0,1,1.3710095882415771,286,0.0,1 +29286,19,0.0,1,1.2290093898773193,287,0.0,1 +29287,19,0.0,1,1.6970053911209106,288,0.0,1 +29288,19,0.0,1,1.589006781578064,289,0.0,1 +29289,19,0.0,1,1.4960079193115234,290,0.0,1 +29290,19,0.0,1,1.5940066576004028,291,1.0,1 +29291,19,0.0,1,1.8730031251907349,292,0.0,1 +29292,19,0.0,1,1.7130051851272583,293,1.0,1 +29293,19,0.0,1,1.2690094709396362,294,0.0,1 +29294,19,0.0,1,1.5090078115463257,295,1.0,1 +29295,19,0.0,1,1.3580095767974854,296,0.0,1 +29296,19,0.0,1,2.2450060844421387,297,1.0,1 +29297,19,0.0,1,1.6970053911209106,298,0.0,1 +29298,19,0.0,1,1.7620046138763428,299,0.0,1 +29299,19,0.0,1,1.794004201889038,300,0.0,1 +29300,19,0.0,1,2.0450010299682617,301,0.0,1 +29301,19,0.0,1,1.4260088205337524,302,0.0,1 +29302,19,0.0,1,1.515007734298706,303,0.0,1 +29303,19,0.0,1,1.9150025844573975,304,0.0,1 +29304,19,0.0,1,1.34900963306427,305,0.0,1 +29305,19,0.0,1,1.2840094566345215,306,0.0,1 +29306,19,0.0,1,1.796004056930542,307,0.0,1 +29307,19,1.0,1,1.5610071420669556,308,0.0,1 +29308,19,0.0,1,2.1560020446777344,309,0.0,1 +29309,19,1.0,1,1.4320087432861328,310,0.0,1 +29310,19,0.0,1,1.7430047988891602,311,0.0,1 +29311,19,0.0,1,1.4340087175369263,312,0.0,1 +29312,19,1.0,1,1.8610032796859741,313,0.0,1 +29313,19,0.0,1,1.9080026149749756,314,1.0,1 +29314,19,0.0,1,1.8010040521621704,315,0.0,1 +29315,19,0.0,1,1.3640096187591553,316,0.0,1 +29316,19,0.0,1,2.0050015449523926,317,1.0,1 +29317,19,0.0,1,1.490007996559143,318,0.0,1 +29318,19,0.0,1,1.4160089492797852,319,0.0,1 +29319,19,0.0,1,1.4740082025527954,320,1.0,1 +29320,19,0.0,1,1.2720094919204712,321,0.0,1 +29321,19,1.0,1,2.273007392883301,322,1.0,1 +29322,19,1.0,1,1.5760068893432617,323,1.0,1 +29323,19,1.0,1,1.6050065755844116,324,0.0,1 +29324,19,0.0,1,1.5520071983337402,325,1.0,1 +29325,19,0.0,1,1.5390074253082275,326,0.0,1 +29326,19,0.0,1,1.6950054168701172,327,0.0,1 +29327,19,0.0,1,1.9990015029907227,328,0.0,1 +29328,19,0.0,1,1.4190089702606201,329,0.0,1 +29329,19,1.0,1,1.498007893562317,330,1.0,1 +29330,19,1.0,1,1.7270050048828125,331,0.0,1 +29331,19,1.0,1,1.800004005432129,332,1.0,1 +29332,19,1.0,1,1.3300095796585083,333,0.0,1 +29333,19,0.0,1,1.9940016269683838,334,1.0,1 +29334,19,0.0,1,1.2190093994140625,335,0.0,1 +29335,19,1.0,1,1.4310088157653809,336,1.0,1 +29336,19,1.0,1,1.4360086917877197,337,1.0,1 +29337,19,1.0,1,1.938002347946167,338,1.0,1 +29338,19,1.0,1,1.5260075330734253,339,1.0,1 +29339,19,1.0,1,1.424008846282959,340,1.0,1 +29340,19,1.0,1,1.8850029706954956,341,0.0,1 +29341,19,0.0,1,1.7840042114257812,342,0.0,1 +29342,19,0.0,1,1.773004412651062,343,0.0,1 +29343,19,0.0,1,1.3480095863342285,344,1.0,1 +29344,19,0.0,1,1.1760092973709106,345,0.0,1 +29345,19,0.0,1,2.2270052433013916,346,0.0,1 +29346,19,1.0,1,1.5650070905685425,347,1.0,1 +29347,19,1.0,1,1.5240075588226318,348,1.0,1 +29348,19,1.0,1,1.5000078678131104,349,1.0,1 +29349,19,1.0,1,2.11299991607666,350,0.0,1 +29350,19,1.0,1,1.9910016059875488,351,1.0,1 +29351,19,1.0,1,1.6020065546035767,352,1.0,1 +29352,19,1.0,1,1.5620070695877075,353,0.0,1 +29353,19,0.0,1,1.3600096702575684,354,0.0,1 +29354,19,1.0,1,1.7650045156478882,355,1.0,1 +29355,19,1.0,1,1.4350087642669678,356,1.0,1 +29356,19,1.0,1,1.4420086145401,357,0.0,1 +29357,19,1.0,1,1.7790043354034424,358,1.0,1 +29358,19,1.0,1,1.7670044898986816,359,1.0,1 +29359,19,1.0,1,1.468008279800415,360,0.0,1 +29360,19,0.0,1,1.8150038719177246,361,1.0,1 +29361,19,0.0,1,1.6760056018829346,362,0.0,1 +29362,19,0.0,1,1.98600172996521,363,0.0,1 +29363,19,1.0,1,1.9560019969940186,364,1.0,1 +29364,19,1.0,1,1.9050027132034302,365,1.0,1 +29365,19,1.0,1,1.63300621509552,366,1.0,1 +29366,19,1.0,1,1.9270024299621582,367,1.0,1 +29367,19,1.0,1,1.9930015802383423,368,0.0,1 +29368,19,1.0,1,1.5740069150924683,369,0.0,1 +29369,19,0.0,1,1.7830042839050293,370,0.0,1 +29370,19,0.0,1,1.4060090780258179,371,0.0,1 +29371,19,0.0,1,2.9080371856689453,372,1.0,1 +29372,19,0.0,1,1.2830095291137695,373,0.0,1 +29373,19,1.0,1,2.3870127201080322,374,1.0,1 +29374,19,1.0,1,1.376009464263916,375,1.0,1 +29375,19,1.0,1,1.7180051803588867,376,1.0,1 +29376,19,1.0,1,1.5480072498321533,377,1.0,1 +29377,19,1.0,1,1.5250076055526733,378,1.0,1 +29378,19,1.0,1,1.5220075845718384,379,1.0,1 +29379,19,1.0,1,2.4440155029296875,380,0.0,1 +29380,19,0.0,1,1.322009563446045,381,0.0,1 +29381,19,1.0,1,1.8890029191970825,382,1.0,1 +29382,19,1.0,1,2.0450010299682617,383,0.0,1 +29383,19,0.0,1,2.0210013389587402,384,0.0,1 +29384,19,1.0,1,2.607023000717163,385,1.0,1 +29385,19,1.0,1,1.4390087127685547,386,1.0,1 +29386,19,1.0,1,1.4390087127685547,387,0.0,1 +29387,19,1.0,1,1.5610071420669556,388,1.0,1 +29388,19,0.0,1,1.4360086917877197,389,1.0,1 +29389,19,1.0,1,1.515007734298706,390,0.0,1 +29390,19,0.0,1,1.5560071468353271,391,1.0,1 +29391,19,0.0,1,1.6140064001083374,392,1.0,1 +29392,19,0.0,1,1.372009515762329,393,1.0,1 +29393,19,0.0,1,1.4440085887908936,394,1.0,1 +29394,19,0.0,1,1.6670057773590088,395,0.0,1 +29395,19,0.0,1,1.983001708984375,396,1.0,1 +29396,19,0.0,1,1.63300621509552,397,0.0,1 +29397,19,0.0,1,1.7560045719146729,398,0.0,1 +29398,19,1.0,1,1.4510085582733154,399,1.0,1 +29399,19,1.0,1,1.5040078163146973,400,1.0,1 +29400,19,1.0,1,2.0970001220703125,401,0.0,1 +29401,19,1.0,1,1.7790043354034424,402,1.0,1 +29402,19,1.0,1,1.4320087432861328,403,1.0,1 +29403,19,1.0,1,1.4430086612701416,404,1.0,1 +29404,19,1.0,1,1.3540096282958984,405,0.0,1 +29405,19,0.0,1,1.3230094909667969,406,0.0,1 +29406,19,1.0,1,1.4140089750289917,407,1.0,1 +29407,19,1.0,1,1.4730082750320435,408,1.0,1 +29408,19,1.0,1,2.308009147644043,409,1.0,1 +29409,19,1.0,1,1.2440093755722046,410,1.0,1 +29410,19,1.0,1,1.4660083055496216,411,1.0,1 +29411,19,1.0,1,1.6830055713653564,412,1.0,1 +29412,19,1.0,1,1.7530046701431274,413,0.0,1 +29413,19,0.0,1,2.2380056381225586,414,1.0,1 +29414,19,0.0,1,1.3040095567703247,415,1.0,1 +29415,19,0.0,1,1.31300950050354,416,0.0,1 +29416,19,0.0,1,1.6090065240859985,417,1.0,1 +29417,19,0.0,1,2.0570006370544434,418,1.0,1 +29418,19,0.0,1,1.5920066833496094,419,0.0,1 +29419,19,1.0,1,1.3850094079971313,420,1.0,1 +29420,19,1.0,1,1.2770094871520996,421,1.0,1 +29421,19,1.0,1,1.5350074768066406,422,1.0,1 +29422,19,1.0,1,1.2500094175338745,423,1.0,1 +29423,19,1.0,1,2.291008234024048,424,1.0,1 +29424,19,1.0,1,1.846003532409668,425,1.0,1 +29425,19,1.0,1,1.3340095281600952,426,0.0,1 +29426,19,0.0,1,1.4140089750289917,427,0.0,1 +29427,19,0.0,1,1.8190038204193115,428,1.0,1 +29428,19,0.0,1,1.4820080995559692,429,0.0,1 +29429,19,0.0,1,1.356009602546692,430,0.0,1 +29430,19,1.0,1,1.6190063953399658,431,1.0,1 +29431,19,1.0,1,1.4660083055496216,432,1.0,1 +29432,19,1.0,1,1.5060077905654907,433,1.0,1 +29433,19,1.0,1,1.6350061893463135,434,1.0,1 +29434,19,1.0,1,1.3850094079971313,435,1.0,1 +29435,19,1.0,1,1.5810068845748901,436,0.0,1 +29436,19,0.0,1,1.3540096282958984,437,1.0,1 +29437,19,0.0,1,1.887002944946289,438,0.0,1 +29438,19,0.0,1,1.4290088415145874,439,0.0,1 +29439,19,1.0,1,2.083000421524048,440,1.0,1 +29440,19,1.0,1,1.7310049533843994,441,1.0,1 +29441,19,1.0,1,2.03800106048584,442,1.0,1 +29442,19,1.0,1,1.2900094985961914,443,1.0,1 +29443,19,1.0,1,1.380009412765503,444,1.0,1 +29444,19,0.0,1,1.2840094566345215,445,1.0,1 +29445,19,1.0,1,1.8270037174224854,446,1.0,1 +29446,19,1.0,1,1.6890054941177368,447,1.0,1 +29447,19,0.0,1,1.3680095672607422,448,0.0,1 +29448,19,0.0,1,1.427008867263794,449,0.0,1 +29449,19,1.0,1,1.8410035371780396,450,0.0,1 +29450,19,1.0,1,1.6280062198638916,451,0.0,1 +29451,19,1.0,1,1.9580020904541016,452,0.0,1 +29452,19,0.0,1,1.4170089960098267,453,1.0,1 +29453,19,0.0,1,1.490007996559143,454,1.0,1 +29454,19,0.0,1,1.2170093059539795,455,0.0,1 +29455,19,1.0,1,1.4640083312988281,456,1.0,1 +29456,19,1.0,1,1.4470086097717285,457,1.0,1 +29457,19,1.0,1,1.6420061588287354,458,0.0,1 +29458,19,1.0,1,1.3340095281600952,459,1.0,1 +29459,19,1.0,1,1.3570096492767334,460,0.0,1 +29460,19,1.0,1,1.7460048198699951,461,0.0,1 +29461,19,1.0,1,1.6790056228637695,462,1.0,1 +29462,19,1.0,1,1.6800055503845215,463,1.0,1 +29463,19,1.0,1,1.7900042533874512,464,1.0,1 +29464,19,1.0,1,1.541007399559021,465,1.0,1 +29465,19,1.0,1,2.1990039348602295,466,1.0,1 +29466,19,1.0,1,1.5030078887939453,467,0.0,1 +29467,19,1.0,1,1.6210063695907593,468,1.0,1 +29468,19,1.0,1,1.4160089492797852,469,1.0,1 +29469,19,1.0,1,1.4250088930130005,470,1.0,1 +29470,19,1.0,1,1.3010095357894897,471,1.0,1 +29471,19,0.0,1,1.3400095701217651,472,1.0,1 +29472,19,1.0,1,1.5840067863464355,473,1.0,1 +29473,19,0.0,1,1.843003511428833,474,0.0,1 +29474,19,1.0,1,1.892002820968628,475,0.0,1 +29475,19,0.0,1,1.5070078372955322,476,0.0,1 +29476,19,1.0,1,2.303008794784546,477,1.0,1 +29477,19,1.0,1,1.519007682800293,478,1.0,1 +29478,19,1.0,1,1.6900055408477783,479,1.0,1 +29479,19,1.0,1,1.7740044593811035,480,0.0,1 +29480,19,0.0,1,1.5740069150924683,481,0.0,1 +29481,19,1.0,1,2.1970038414001465,482,1.0,1 +29482,19,1.0,1,1.468008279800415,483,1.0,1 +29483,19,1.0,1,2.268007278442383,484,1.0,1 +29484,19,1.0,1,1.5550072193145752,485,1.0,1 +29485,19,1.0,1,1.3860093355178833,486,1.0,1 +29486,19,1.0,1,1.4850081205368042,487,1.0,1 +29487,19,1.0,1,1.3620096445083618,488,1.0,1 +29488,19,1.0,1,1.9650019407272339,489,1.0,1 +29489,19,1.0,1,1.424008846282959,490,1.0,1 +29490,19,1.0,1,1.5750069618225098,491,1.0,1 +29491,19,1.0,1,1.5270075798034668,492,1.0,1 +29492,19,1.0,1,1.3910093307495117,493,0.0,1 +29493,19,1.0,1,2.1770029067993164,494,0.0,1 +29494,19,0.0,1,1.4150090217590332,495,1.0,1 +29495,19,0.0,1,1.6750056743621826,496,0.0,1 +29496,19,0.0,1,1.3370095491409302,497,1.0,1 +29497,19,0.0,1,1.8050040006637573,498,0.0,1 +29498,19,0.0,1,1.346009612083435,499,0.0,1 +29499,19,1.0,1,2.1330008506774902,500,1.0,1 +29500,19,1.0,2,1.9760017395019531,1,1.0,1 +29501,19,0.0,2,1.5430073738098145,2,1.0,1 +29502,19,1.0,2,1.6970053911209106,3,1.0,1 +29503,19,0.0,2,2.338010311126709,4,1.0,1 +29504,19,0.0,2,1.5070078372955322,5,0.0,1 +29505,19,1.0,2,1.2630094289779663,6,1.0,1 +29506,19,1.0,2,1.6490060091018677,7,0.0,1 +29507,19,1.0,2,1.8820030689239502,8,1.0,1 +29508,19,1.0,2,1.748004674911499,9,1.0,1 +29509,19,1.0,2,1.3470096588134766,10,1.0,1 +29510,19,1.0,2,1.5100077390670776,11,0.0,1 +29511,19,1.0,2,1.5930067300796509,12,1.0,1 +29512,19,1.0,2,1.427008867263794,13,1.0,1 +29513,19,1.0,2,1.4650083780288696,14,1.0,1 +29514,19,1.0,2,1.7870042324066162,15,0.0,1 +29515,19,0.0,2,1.6210063695907593,16,0.0,1 +29516,19,0.0,2,1.6450060606002808,17,1.0,1 +29517,19,0.0,2,1.7680044174194336,18,1.0,1 +29518,19,0.0,2,1.2640094757080078,19,1.0,1 +29519,19,0.0,2,1.3230094909667969,20,1.0,1 +29520,19,0.0,2,1.3430095911026,21,1.0,1 +29521,19,0.0,2,1.7930041551589966,22,0.0,1 +29522,19,0.0,2,1.6740057468414307,23,1.0,1 +29523,19,0.0,2,1.4630084037780762,24,0.0,1 +29524,19,1.0,2,2.0930004119873047,25,1.0,1 +29525,19,1.0,2,1.4100090265274048,26,1.0,1 +29526,19,1.0,2,1.519007682800293,27,1.0,1 +29527,19,1.0,2,1.3240095376968384,28,0.0,1 +29528,19,1.0,2,2.1920037269592285,29,1.0,1 +29529,19,1.0,2,1.3540096282958984,30,1.0,1 +29530,19,1.0,2,1.3550095558166504,31,0.0,1 +29531,19,0.0,2,2.588022232055664,32,1.0,1 +29532,19,0.0,2,1.4890080690383911,33,1.0,1 +29533,19,0.0,2,1.6820056438446045,34,1.0,1 +29534,19,0.0,2,1.398009181022644,35,0.0,1 +29535,19,0.0,2,1.446008563041687,36,0.0,1 +29536,19,1.0,2,1.5480072498321533,37,1.0,1 +29537,19,1.0,2,1.4780081510543823,38,0.0,1 +29538,19,1.0,2,1.4130090475082397,39,1.0,1 +29539,19,1.0,2,1.4350087642669678,40,1.0,1 +29540,19,1.0,2,2.0910003185272217,41,0.0,1 +29541,19,0.0,2,1.8140039443969727,42,1.0,1 +29542,19,0.0,2,2.4240145683288574,43,1.0,1 +29543,19,0.0,2,1.2290093898773193,44,0.0,1 +29544,19,0.0,2,2.4740166664123535,45,1.0,1 +29545,19,0.0,2,1.7370048761367798,46,1.0,1 +29546,19,0.0,2,1.3570096492767334,47,1.0,1 +29547,19,0.0,2,1.3300095796585083,48,1.0,1 +29548,19,0.0,2,1.3910093307495117,49,1.0,1 +29549,19,0.0,2,1.2990095615386963,50,1.0,1 +29550,19,0.0,2,1.3810094594955444,51,0.0,1 +29551,19,0.0,2,1.4560084342956543,52,0.0,1 +29552,19,1.0,2,1.6710057258605957,53,1.0,1 +29553,19,1.0,2,2.0150012969970703,54,0.0,1 +29554,19,1.0,2,1.7870042324066162,55,0.0,1 +29555,19,1.0,2,2.1660022735595703,56,1.0,1 +29556,19,1.0,2,1.4470086097717285,57,0.0,1 +29557,19,0.0,2,1.8350036144256592,58,0.0,1 +29558,19,0.0,2,1.7750043869018555,59,1.0,1 +29559,19,0.0,2,1.4430086612701416,60,0.0,1 +29560,19,0.0,2,1.3880093097686768,61,0.0,1 +29561,19,0.0,2,1.31900954246521,62,0.0,1 +29562,19,1.0,2,2.6530251502990723,63,0.0,1 +29563,19,0.0,2,1.5530072450637817,64,1.0,1 +29564,19,0.0,2,1.5170077085494995,65,1.0,1 +29565,19,0.0,2,1.2910094261169434,66,1.0,1 +29566,19,0.0,2,1.315009593963623,67,0.0,1 +29567,19,1.0,2,1.8040039539337158,68,1.0,1 +29568,19,1.0,2,2.2200050354003906,69,0.0,1 +29569,19,0.0,2,2.323009729385376,70,1.0,1 +29570,19,0.0,2,1.4780081510543823,71,1.0,1 +29571,19,0.0,2,1.3240095376968384,72,0.0,1 +29572,19,0.0,2,1.5810068845748901,73,1.0,1 +29573,19,0.0,2,1.6470060348510742,74,0.0,1 +29574,19,1.0,2,1.8730031251907349,75,1.0,1 +29575,19,1.0,2,1.4740082025527954,76,0.0,1 +29576,19,1.0,2,2.0110013484954834,77,1.0,1 +29577,19,1.0,2,1.3820093870162964,78,1.0,1 +29578,19,1.0,2,1.792004108428955,79,0.0,1 +29579,19,0.0,2,1.677005648612976,80,1.0,1 +29580,19,0.0,2,1.2650094032287598,81,1.0,1 +29581,19,0.0,2,1.9030027389526367,82,1.0,1 +29582,19,0.0,2,1.8220038414001465,83,0.0,1 +29583,19,0.0,2,1.2830095291137695,84,0.0,1 +29584,19,0.0,2,1.3620096445083618,85,1.0,1 +29585,19,0.0,2,1.3090095520019531,86,1.0,1 +29586,19,0.0,2,1.2680094242095947,87,0.0,1 +29587,19,1.0,2,1.4650083780288696,88,1.0,1 +29588,19,1.0,2,1.34900963306427,89,0.0,1 +29589,19,0.0,2,1.520007610321045,90,0.0,1 +29590,19,1.0,2,2.0140013694763184,91,0.0,1 +29591,19,1.0,2,1.8360035419464111,92,0.0,1 +29592,19,0.0,2,1.516007661819458,93,0.0,1 +29593,19,1.0,2,1.3890093564987183,94,0.0,1 +29594,19,1.0,2,1.380009412765503,95,1.0,1 +29595,19,1.0,2,1.4210089445114136,96,0.0,1 +29596,19,1.0,2,1.7180051803588867,97,1.0,1 +29597,19,1.0,2,1.2930095195770264,98,1.0,1 +29598,19,1.0,2,1.6380062103271484,99,0.0,1 +29599,19,0.0,2,1.8230037689208984,100,0.0,1 +29600,19,1.0,2,1.5430073738098145,101,1.0,1 +29601,19,1.0,2,1.4000091552734375,102,1.0,1 +29602,19,1.0,2,1.3110095262527466,103,1.0,1 +29603,19,1.0,2,1.79500412940979,104,0.0,1 +29604,19,0.0,2,2.0520007610321045,105,0.0,1 +29605,19,0.0,2,1.5220075845718384,106,0.0,1 +29606,19,1.0,2,2.070000648498535,107,0.0,1 +29607,19,0.0,2,1.2130093574523926,108,0.0,1 +29608,19,0.0,2,1.6300063133239746,109,0.0,1 +29609,19,1.0,2,1.34900963306427,110,1.0,1 +29610,19,1.0,2,1.917002558708191,111,1.0,1 +29611,19,1.0,2,1.4130090475082397,112,1.0,1 +29612,19,1.0,2,2.289008140563965,113,0.0,1 +29613,19,1.0,2,1.700005292892456,114,0.0,1 +29614,19,0.0,2,1.6930054426193237,115,1.0,1 +29615,19,0.0,2,1.2650094032287598,116,1.0,1 +29616,19,0.0,2,1.286009430885315,117,1.0,1 +29617,19,0.0,2,1.9120025634765625,118,0.0,1 +29618,19,0.0,2,1.6640057563781738,119,1.0,1 +29619,19,0.0,2,1.2750093936920166,120,0.0,1 +29620,19,0.0,2,1.3600096702575684,121,0.0,1 +29621,19,1.0,2,1.3950092792510986,122,0.0,1 +29622,19,1.0,2,1.8990027904510498,123,0.0,1 +29623,19,0.0,2,1.938002347946167,124,0.0,1 +29624,19,1.0,2,2.604022979736328,125,1.0,1 +29625,19,1.0,2,1.4190089702606201,126,1.0,1 +29626,19,1.0,2,1.6270062923431396,127,1.0,1 +29627,19,1.0,2,1.2950094938278198,128,1.0,1 +29628,19,1.0,2,1.5430073738098145,129,0.0,1 +29629,19,1.0,2,2.077000617980957,130,0.0,1 +29630,19,0.0,2,1.4660083055496216,131,1.0,1 +29631,19,0.0,2,1.2360093593597412,132,1.0,1 +29632,19,0.0,2,1.7230050563812256,133,1.0,1 +29633,19,0.0,2,1.5870068073272705,134,1.0,1 +29634,19,0.0,2,1.2870094776153564,135,1.0,1 +29635,19,0.0,2,1.4810081720352173,136,0.0,1 +29636,19,0.0,2,1.6190063953399658,137,0.0,1 +29637,19,1.0,2,1.3950092792510986,138,1.0,1 +29638,19,1.0,2,1.2340093851089478,139,0.0,1 +29639,19,0.0,2,2.4950177669525146,140,1.0,1 +29640,19,0.0,2,1.2020093202590942,141,1.0,1 +29641,19,0.0,2,1.2390093803405762,142,1.0,1 +29642,19,0.0,2,1.2980095148086548,143,1.0,1 +29643,19,0.0,2,1.5910067558288574,144,0.0,1 +29644,19,1.0,2,1.744004726409912,145,1.0,1 +29645,19,1.0,2,1.424008846282959,146,0.0,1 +29646,19,0.0,2,1.5130077600479126,147,0.0,1 +29647,19,0.0,2,1.7700045108795166,148,1.0,1 +29648,19,0.0,2,1.4910080432891846,149,0.0,1 +29649,19,1.0,2,1.6140064001083374,150,1.0,1 +29650,19,1.0,2,1.6360061168670654,151,1.0,1 +29651,19,1.0,2,1.3280096054077148,152,0.0,1 +29652,19,1.0,2,1.6310062408447266,153,1.0,1 +29653,19,1.0,2,1.4530085325241089,154,1.0,1 +29654,19,1.0,2,1.9740018844604492,155,1.0,1 +29655,19,1.0,2,1.402009129524231,156,1.0,1 +29656,19,1.0,2,1.8010040521621704,157,1.0,1 +29657,19,1.0,2,1.3730095624923706,158,1.0,1 +29658,19,1.0,2,1.9160025119781494,159,0.0,1 +29659,19,0.0,2,2.5100183486938477,160,0.0,1 +29660,19,0.0,2,1.8560032844543457,161,0.0,1 +29661,19,0.0,2,1.936002254486084,162,1.0,1 +29662,19,1.0,2,1.6790056228637695,163,1.0,1 +29663,19,0.0,2,2.559020757675171,164,0.0,1 +29664,19,1.0,2,2.026001214981079,165,1.0,1 +29665,19,1.0,2,1.7680044174194336,166,0.0,1 +29666,19,1.0,2,1.6720056533813477,167,0.0,1 +29667,19,0.0,2,1.3270095586776733,168,0.0,1 +29668,19,0.0,2,1.2440093755722046,169,0.0,1 +29669,19,0.0,2,1.3780094385147095,170,1.0,1 +29670,19,0.0,2,1.6240062713623047,171,0.0,1 +29671,19,1.0,2,1.9500021934509277,172,1.0,1 +29672,19,1.0,2,1.7240049839019775,173,1.0,1 +29673,19,1.0,2,1.5230076313018799,174,1.0,1 +29674,19,1.0,2,1.7880041599273682,175,0.0,1 +29675,19,1.0,2,1.4110090732574463,176,0.0,1 +29676,19,0.0,2,1.188009262084961,177,1.0,1 +29677,19,0.0,2,1.7600045204162598,178,1.0,1 +29678,19,0.0,2,1.5620070695877075,179,1.0,1 +29679,19,0.0,2,1.545007348060608,180,0.0,1 +29680,19,1.0,2,1.891002893447876,181,1.0,1 +29681,19,1.0,2,1.637006163597107,182,1.0,1 +29682,19,1.0,2,1.3320095539093018,183,1.0,1 +29683,19,1.0,2,1.4320087432861328,184,0.0,1 +29684,19,1.0,2,2.3920130729675293,185,1.0,1 +29685,19,1.0,2,1.4410086870193481,186,0.0,1 +29686,19,1.0,2,1.5880067348480225,187,0.0,1 +29687,19,1.0,2,1.5040078163146973,188,1.0,1 +29688,19,1.0,2,1.5560071468353271,189,0.0,1 +29689,19,0.0,2,1.5880067348480225,190,0.0,1 +29690,19,0.0,2,1.6160063743591309,191,0.0,1 +29691,19,1.0,2,1.8500034809112549,192,1.0,1 +29692,19,1.0,2,1.6920053958892822,193,0.0,1 +29693,19,1.0,2,2.1030001640319824,194,1.0,1 +29694,19,1.0,2,1.353009581565857,195,0.0,1 +29695,19,1.0,2,1.559007167816162,196,1.0,1 +29696,19,1.0,2,1.8560032844543457,197,1.0,1 +29697,19,1.0,2,2.4710166454315186,198,0.0,1 +29698,19,0.0,2,1.6050065755844116,199,0.0,1 +29699,19,0.0,2,1.846003532409668,200,0.0,1 +29700,19,1.0,2,1.6310062408447266,201,1.0,1 +29701,19,1.0,2,1.31900954246521,202,0.0,1 +29702,19,0.0,2,1.5010079145431519,203,1.0,1 +29703,19,0.0,2,1.5950067043304443,204,1.0,1 +29704,19,0.0,2,1.8700032234191895,205,0.0,1 +29705,19,1.0,2,1.752004623413086,206,1.0,1 +29706,19,1.0,2,1.2730094194412231,207,1.0,1 +29707,19,1.0,2,1.4480085372924805,208,1.0,1 +29708,19,1.0,2,1.490007996559143,209,1.0,1 +29709,19,1.0,2,2.2110044956207275,210,0.0,1 +29710,19,1.0,2,1.5550072193145752,211,0.0,1 +29711,19,0.0,2,2.2460060119628906,212,0.0,1 +29712,19,0.0,2,2.6320242881774902,213,1.0,1 +29713,19,0.0,2,1.3390095233917236,214,0.0,1 +29714,19,1.0,2,1.3920092582702637,215,0.0,1 +29715,19,0.0,2,1.3380095958709717,216,1.0,1 +29716,19,0.0,2,1.3640096187591553,217,0.0,1 +29717,19,1.0,2,2.579021692276001,218,0.0,1 +29718,19,1.0,2,1.6750056743621826,219,0.0,1 +29719,19,1.0,2,2.2590067386627197,220,1.0,1 +29720,19,1.0,2,1.7710044384002686,221,0.0,1 +29721,19,0.0,2,1.9960014820098877,222,0.0,1 +29722,19,1.0,2,1.9850016832351685,223,1.0,1 +29723,19,0.0,2,1.5620070695877075,224,0.0,1 +29724,19,1.0,2,1.6820056438446045,225,1.0,1 +29725,19,1.0,2,1.279009461402893,226,0.0,1 +29726,19,0.0,2,2.118000030517578,227,0.0,1 +29727,19,1.0,2,2.1940035820007324,228,0.0,1 +29728,19,0.0,2,1.3940092325210571,229,1.0,1 +29729,19,0.0,2,1.6870055198669434,230,1.0,1 +29730,19,0.0,2,1.285009503364563,231,1.0,1 +29731,19,0.0,2,1.729004979133606,232,0.0,1 +29732,19,1.0,2,1.4400086402893066,233,0.0,1 +29733,19,0.0,2,2.2220048904418945,234,0.0,1 +29734,19,1.0,2,2.1680026054382324,235,1.0,1 +29735,19,1.0,2,1.7120051383972168,236,1.0,1 +29736,19,1.0,2,1.5220075845718384,237,1.0,1 +29737,19,1.0,2,1.4300087690353394,238,1.0,1 +29738,19,1.0,2,1.497007966041565,239,1.0,1 +29739,19,1.0,2,1.8360035419464111,240,0.0,1 +29740,19,0.0,2,2.307008981704712,241,0.0,1 +29741,19,1.0,2,1.8490034341812134,242,0.0,1 +29742,19,0.0,2,1.5970066785812378,243,0.0,1 +29743,19,0.0,2,2.0640006065368652,244,1.0,1 +29744,19,0.0,2,2.1700024604797363,245,1.0,1 +29745,19,0.0,2,1.276009440422058,246,1.0,1 +29746,19,0.0,2,1.450008511543274,247,0.0,1 +29747,19,0.0,2,1.79500412940979,248,0.0,1 +29748,19,0.0,2,1.4660083055496216,249,0.0,1 +29749,19,0.0,2,1.8060040473937988,250,1.0,1 +29750,19,0.0,2,1.356009602546692,251,1.0,1 +29751,19,0.0,2,1.3070094585418701,252,0.0,1 +29752,19,0.0,2,1.582006812095642,253,1.0,1 +29753,19,0.0,2,1.6460061073303223,254,1.0,1 +29754,19,0.0,2,1.567007064819336,255,1.0,1 +29755,19,0.0,2,1.611006498336792,256,0.0,1 +29756,19,1.0,2,2.1060001850128174,257,1.0,1 +29757,19,1.0,2,1.2920094728469849,258,1.0,1 +29758,19,1.0,2,1.6820056438446045,259,0.0,1 +29759,19,0.0,2,1.9490021467208862,260,0.0,1 +29760,19,0.0,2,1.6450060606002808,261,1.0,1 +29761,19,0.0,2,1.7700045108795166,262,0.0,1 +29762,19,1.0,2,1.5750069618225098,263,0.0,1 +29763,19,0.0,2,1.563007116317749,264,1.0,1 +29764,19,0.0,2,1.512007713317871,265,0.0,1 +29765,19,0.0,2,1.7740044593811035,266,0.0,1 +29766,19,0.0,2,1.659005880355835,267,1.0,1 +29767,19,0.0,2,1.4120090007781982,268,1.0,1 +29768,19,0.0,2,1.5880067348480225,269,1.0,1 +29769,19,0.0,2,1.3350095748901367,270,1.0,1 +29770,19,0.0,2,1.3920092582702637,271,0.0,1 +29771,19,1.0,2,2.0110013484954834,272,1.0,1 +29772,19,1.0,2,1.6840054988861084,273,0.0,1 +29773,19,0.0,2,1.4950079917907715,274,1.0,1 +29774,19,0.0,2,1.31300950050354,275,1.0,1 +29775,19,0.0,2,1.6220064163208008,276,1.0,1 +29776,19,0.0,2,1.6410061120986938,277,0.0,1 +29777,19,0.0,2,1.4220088720321655,278,1.0,1 +29778,19,0.0,2,1.3550095558166504,279,1.0,1 +29779,19,0.0,2,2.3840126991271973,280,1.0,1 +29780,19,0.0,2,2.079000473022461,281,1.0,1 +29781,19,0.0,2,1.315009593963623,282,1.0,1 +29782,19,0.0,2,1.8570033311843872,283,1.0,1 +29783,19,0.0,2,1.2340093851089478,284,0.0,1 +29784,19,1.0,2,1.4830081462860107,285,1.0,1 +29785,19,1.0,2,1.3360096216201782,286,1.0,1 +29786,19,0.0,2,1.5050078630447388,287,0.0,1 +29787,19,1.0,2,1.5720069408416748,288,1.0,1 +29788,19,0.0,2,1.7360048294067383,289,1.0,1 +29789,19,0.0,2,1.8280036449432373,290,0.0,1 +29790,19,1.0,2,1.8130038976669312,291,1.0,1 +29791,19,0.0,2,1.3680095672607422,292,0.0,1 +29792,19,1.0,2,1.3050094842910767,293,0.0,1 +29793,19,1.0,2,2.0150012969970703,294,0.0,1 +29794,19,1.0,2,2.2090044021606445,295,1.0,1 +29795,19,1.0,2,1.7890042066574097,296,1.0,1 +29796,19,1.0,2,1.4590084552764893,297,1.0,1 +29797,19,1.0,2,1.2470093965530396,298,1.0,1 +29798,19,1.0,2,1.7650045156478882,299,0.0,1 +29799,19,1.0,2,1.4600083827972412,300,1.0,1 +29800,19,1.0,2,1.375009536743164,301,0.0,1 +29801,19,1.0,2,1.5580071210861206,302,0.0,1 +29802,19,0.0,2,1.4540084600448608,303,1.0,1 +29803,19,0.0,2,1.4030091762542725,304,0.0,1 +29804,19,1.0,2,1.5070078372955322,305,1.0,1 +29805,19,1.0,2,2.0030014514923096,306,1.0,1 +29806,19,1.0,2,2.0900003910064697,307,0.0,1 +29807,19,1.0,2,1.8480033874511719,308,1.0,1 +29808,19,1.0,2,1.3850094079971313,309,0.0,1 +29809,19,0.0,2,1.276009440422058,310,1.0,1 +29810,19,0.0,2,1.8750030994415283,311,0.0,1 +29811,19,1.0,2,2.4870173931121826,312,1.0,1 +29812,19,1.0,2,2.2160048484802246,313,1.0,1 +29813,19,1.0,2,1.5990066528320312,314,1.0,1 +29814,19,0.0,2,1.5060077905654907,315,1.0,1 +29815,19,0.0,2,1.681005597114563,316,1.0,1 +29816,19,0.0,2,1.917002558708191,317,1.0,1 +29817,19,1.0,2,2.1950037479400635,318,1.0,1 +29818,19,0.0,2,2.338010311126709,319,0.0,1 +29819,19,1.0,2,1.3880093097686768,320,0.0,1 +29820,19,0.0,2,1.4860080480575562,321,1.0,1 +29821,19,0.0,2,1.6970053911209106,322,1.0,1 +29822,19,0.0,2,1.4360086917877197,323,1.0,1 +29823,19,0.0,2,1.4540084600448608,324,0.0,1 +29824,19,0.0,2,1.792004108428955,325,0.0,1 +29825,19,0.0,2,1.4260088205337524,326,0.0,1 +29826,19,1.0,2,1.3890093564987183,327,1.0,1 +29827,19,1.0,2,1.6500060558319092,328,1.0,1 +29828,19,1.0,2,1.3680095672607422,329,0.0,1 +29829,19,0.0,2,1.5810068845748901,330,0.0,1 +29830,19,1.0,2,1.4220088720321655,331,1.0,1 +29831,19,1.0,2,1.8100039958953857,332,0.0,1 +29832,19,0.0,2,1.450008511543274,333,1.0,1 +29833,19,0.0,2,1.6660058498382568,334,1.0,1 +29834,19,0.0,2,1.2200093269348145,335,0.0,1 +29835,19,0.0,2,1.4370087385177612,336,1.0,1 +29836,19,0.0,2,1.3210095167160034,337,1.0,1 +29837,19,0.0,2,1.188009262084961,338,0.0,1 +29838,19,1.0,2,1.6920053958892822,339,1.0,1 +29839,19,1.0,2,1.66200590133667,340,1.0,1 +29840,19,1.0,2,1.3270095586776733,341,0.0,1 +29841,19,0.0,2,1.3600096702575684,342,0.0,1 +29842,19,1.0,2,2.2110044956207275,343,1.0,1 +29843,19,1.0,2,1.6440060138702393,344,1.0,1 +29844,19,1.0,2,1.5050078630447388,345,1.0,1 +29845,19,1.0,2,1.5940066576004028,346,1.0,1 +29846,19,1.0,2,1.428008794784546,347,1.0,1 +29847,19,1.0,2,1.6300063133239746,348,1.0,1 +29848,19,1.0,2,1.285009503364563,349,1.0,1 +29849,19,1.0,2,1.7300050258636475,350,0.0,1 +29850,19,1.0,2,1.7400047779083252,351,1.0,1 +29851,19,1.0,2,2.1650023460388184,352,1.0,1 +29852,19,1.0,2,1.5020078420639038,353,0.0,1 +29853,19,0.0,2,1.6710057258605957,354,1.0,1 +29854,19,0.0,2,1.7420048713684082,355,1.0,1 +29855,19,0.0,2,1.4780081510543823,356,1.0,1 +29856,19,0.0,2,1.7810043096542358,357,1.0,1 +29857,19,0.0,2,1.6040065288543701,358,0.0,1 +29858,19,0.0,2,2.0580008029937744,359,0.0,1 +29859,19,0.0,2,1.655005931854248,360,0.0,1 +29860,19,1.0,2,1.8670032024383545,361,1.0,1 +29861,19,0.0,2,1.4480085372924805,362,0.0,1 +29862,19,1.0,2,1.4700082540512085,363,1.0,1 +29863,19,1.0,2,1.5610071420669556,364,0.0,1 +29864,19,1.0,2,1.9040026664733887,365,0.0,1 +29865,19,0.0,2,1.6870055198669434,366,0.0,1 +29866,19,0.0,2,1.5740069150924683,367,1.0,1 +29867,19,0.0,2,1.4630084037780762,368,0.0,1 +29868,19,0.0,2,1.4960079193115234,369,0.0,1 +29869,19,1.0,2,1.7710044384002686,370,0.0,1 +29870,19,0.0,2,1.2920094728469849,371,1.0,1 +29871,19,0.0,2,1.6260063648223877,372,1.0,1 +29872,19,0.0,2,1.4030091762542725,373,0.0,1 +29873,19,1.0,2,1.5790069103240967,374,0.0,1 +29874,19,0.0,2,2.615023374557495,375,0.0,1 +29875,19,1.0,2,2.320009708404541,376,0.0,1 +29876,19,0.0,2,2.0070013999938965,377,1.0,1 +29877,19,0.0,2,1.6050065755844116,378,1.0,1 +29878,19,0.0,2,1.2570093870162964,379,1.0,1 +29879,19,0.0,2,1.5100077390670776,380,1.0,1 +29880,19,0.0,2,1.243009328842163,381,1.0,1 +29881,19,0.0,2,1.423008918762207,382,1.0,1 +29882,19,0.0,2,1.251009464263916,383,0.0,1 +29883,19,1.0,2,1.7330049276351929,384,1.0,1 +29884,19,1.0,2,1.4150090217590332,385,0.0,1 +29885,19,0.0,2,1.4210089445114136,386,1.0,1 +29886,19,0.0,2,1.2920094728469849,387,1.0,1 +29887,19,0.0,2,1.2840094566345215,388,0.0,1 +29888,19,1.0,2,1.5990066528320312,389,1.0,1 +29889,19,1.0,2,1.5910067558288574,390,0.0,1 +29890,19,1.0,2,1.7680044174194336,391,1.0,1 +29891,19,1.0,2,1.563007116317749,392,1.0,1 +29892,19,1.0,2,1.3820093870162964,393,0.0,1 +29893,19,0.0,2,1.2300093173980713,394,0.0,1 +29894,19,1.0,2,1.79500412940979,395,0.0,1 +29895,19,1.0,2,1.8270037174224854,396,0.0,1 +29896,19,1.0,2,1.537007451057434,397,1.0,1 +29897,19,1.0,2,1.3080095052719116,398,0.0,1 +29898,19,1.0,2,1.4530085325241089,399,1.0,1 +29899,19,0.0,2,1.6820056438446045,400,0.0,1 +29900,19,1.0,2,2.1070001125335693,401,1.0,1 +29901,19,1.0,2,1.5240075588226318,402,1.0,1 +29902,19,1.0,2,1.215009331703186,403,0.0,1 +29903,19,1.0,2,1.6420061588287354,404,0.0,1 +29904,19,0.0,2,1.9230024814605713,405,1.0,1 +29905,19,0.0,2,1.2690094709396362,406,0.0,1 +29906,19,1.0,2,1.350009560585022,407,0.0,1 +29907,19,1.0,2,2.35901141166687,408,1.0,1 +29908,19,1.0,2,1.4690083265304565,409,1.0,1 +29909,19,1.0,2,1.4470086097717285,410,1.0,1 +29910,19,0.0,2,1.4590084552764893,411,1.0,1 +29911,19,1.0,2,1.497007966041565,412,1.0,1 +29912,19,1.0,2,2.1890034675598145,413,1.0,1 +29913,19,1.0,2,1.6700057983398438,414,0.0,1 +29914,19,0.0,2,1.3400095701217651,415,1.0,1 +29915,19,0.0,2,1.31300950050354,416,0.0,1 +29916,19,1.0,2,1.5040078163146973,417,1.0,1 +29917,19,1.0,2,1.895002841949463,418,0.0,1 +29918,19,1.0,2,1.6260063648223877,419,1.0,1 +29919,19,1.0,2,1.450008511543274,420,0.0,1 +29920,19,1.0,2,1.4630084037780762,421,1.0,1 +29921,19,1.0,2,2.119000196456909,422,0.0,1 +29922,19,0.0,2,1.2710094451904297,423,0.0,1 +29923,19,1.0,2,1.5020078420639038,424,1.0,1 +29924,19,1.0,2,2.1740026473999023,425,1.0,1 +29925,19,1.0,2,1.6840054988861084,426,1.0,1 +29926,19,1.0,2,1.9910016059875488,427,0.0,1 +29927,19,1.0,2,1.5300074815750122,428,1.0,1 +29928,19,1.0,2,1.5440073013305664,429,1.0,1 +29929,19,1.0,2,1.6340062618255615,430,0.0,1 +29930,19,0.0,2,1.5620070695877075,431,0.0,1 +29931,19,1.0,2,2.2400059700012207,432,1.0,1 +29932,19,1.0,2,1.6190063953399658,433,0.0,1 +29933,19,0.0,2,2.086000442504883,434,1.0,1 +29934,19,0.0,2,1.468008279800415,435,0.0,1 +29935,19,1.0,2,1.3230094909667969,436,0.0,1 +29936,19,1.0,2,1.5530072450637817,437,0.0,1 +29937,19,0.0,2,1.5930067300796509,438,0.0,1 +29938,19,0.0,2,1.379009485244751,439,0.0,1 +29939,19,1.0,2,1.6040065288543701,440,1.0,1 +29940,19,1.0,2,1.4730082750320435,441,0.0,1 +29941,19,1.0,2,1.7910041809082031,442,0.0,1 +29942,19,0.0,2,2.071000576019287,443,0.0,1 +29943,19,0.0,2,1.3330096006393433,444,1.0,1 +29944,19,0.0,2,1.6180064678192139,445,1.0,1 +29945,19,0.0,2,1.4210089445114136,446,0.0,1 +29946,19,1.0,2,1.773004412651062,447,1.0,1 +29947,19,1.0,2,1.6160063743591309,448,0.0,1 +29948,19,0.0,2,2.086000442504883,449,0.0,1 +29949,19,0.0,2,2.2530064582824707,450,1.0,1 +29950,19,0.0,2,1.6670057773590088,451,0.0,1 +29951,19,1.0,2,1.7260050773620605,452,1.0,1 +29952,19,1.0,2,2.2260050773620605,453,0.0,1 +29953,19,0.0,2,1.802004098892212,454,0.0,1 +29954,19,1.0,2,1.681005597114563,455,1.0,1 +29955,19,1.0,2,1.4400086402893066,456,0.0,1 +29956,19,0.0,2,1.4170089960098267,457,0.0,1 +29957,19,1.0,2,1.5020078420639038,458,0.0,1 +29958,19,0.0,2,1.4090090990066528,459,0.0,1 +29959,19,0.0,2,2.5130186080932617,460,0.0,1 +29960,19,1.0,2,2.030001163482666,461,1.0,1 +29961,19,0.0,2,2.0210013389587402,462,0.0,1 +29962,19,1.0,2,1.6740057468414307,463,0.0,1 +29963,19,1.0,2,2.037001132965088,464,1.0,1 +29964,19,0.0,2,1.6920053958892822,465,0.0,1 +29965,19,1.0,2,1.6250063180923462,466,1.0,1 +29966,19,1.0,2,1.5910067558288574,467,0.0,1 +29967,19,0.0,2,1.5480072498321533,468,1.0,1 +29968,19,0.0,2,1.472008228302002,469,0.0,1 +29969,19,1.0,2,1.6890054941177368,470,1.0,1 +29970,19,0.0,2,1.401009202003479,471,1.0,1 +29971,19,1.0,2,1.8570033311843872,472,1.0,1 +29972,19,1.0,2,2.020001173019409,473,0.0,1 +29973,19,0.0,2,1.3320095539093018,474,0.0,1 +29974,19,1.0,2,1.9990015029907227,475,0.0,1 +29975,19,0.0,2,1.9990015029907227,476,0.0,1 +29976,19,1.0,2,1.4870080947875977,477,0.0,1 +29977,19,1.0,2,1.8700032234191895,478,1.0,1 +29978,19,1.0,2,2.2710072994232178,479,1.0,1 +29979,19,0.0,2,1.4120090007781982,480,1.0,1 +29980,19,1.0,2,1.9600019454956055,481,1.0,1 +29981,19,1.0,2,1.7640044689178467,482,1.0,1 +29982,19,0.0,2,1.4320087432861328,483,0.0,1 +29983,19,1.0,2,1.4410086870193481,484,0.0,1 +29984,19,1.0,2,1.747004747390747,485,0.0,1 +29985,19,0.0,2,1.5000078678131104,486,0.0,1 +29986,19,0.0,2,1.6690057516098022,487,1.0,1 +29987,19,0.0,2,1.5750069618225098,488,0.0,1 +29988,19,0.0,2,1.1800092458724976,489,0.0,1 +29989,19,0.0,2,2.2000041007995605,490,1.0,1 +29990,19,0.0,2,1.7340049743652344,491,0.0,1 +29991,19,0.0,2,1.3450095653533936,492,1.0,1 +29992,19,0.0,2,1.8890029191970825,493,0.0,1 +29993,19,0.0,2,1.710005283355713,494,0.0,1 +29994,19,0.0,2,2.2310054302215576,495,1.0,1 +29995,19,0.0,2,1.224009394645691,496,0.0,1 +29996,19,1.0,2,1.6200063228607178,497,0.0,1 +29997,19,0.0,2,1.1720092296600342,498,0.0,1 +29998,19,0.0,2,2.0500009059906006,499,1.0,1 +29999,19,0.0,2,1.6020065546035767,500,0.0,1 +30000,0,1.0,0,1.2858986854553223,1,1.0,2 +30001,0,1.0,0,1.4338974952697754,2,0.0,2 +30002,0,0.0,0,1.5978953838348389,3,0.0,2 +30003,0,1.0,0,1.3388986587524414,4,1.0,2 +30004,0,1.0,0,1.755893349647522,5,1.0,2 +30005,0,1.0,0,1.7578933238983154,6,1.0,2 +30006,0,1.0,0,1.3948979377746582,7,1.0,2 +30007,0,1.0,0,1.3718982934951782,8,1.0,2 +30008,0,1.0,0,1.47689688205719,9,1.0,2 +30009,0,1.0,0,1.596895456314087,10,1.0,2 +30010,0,1.0,0,1.8488922119140625,11,1.0,2 +30011,0,1.0,0,1.4128977060317993,12,1.0,2 +30012,0,1.0,0,1.3928979635238647,13,1.0,2 +30013,0,1.0,0,1.9108912944793701,14,1.0,2 +30014,0,1.0,0,1.7898929119110107,15,1.0,2 +30015,0,1.0,0,1.3918980360031128,16,0.0,2 +30016,0,0.0,0,1.2618986368179321,17,0.0,2 +30017,0,1.0,0,1.5188963413238525,18,1.0,2 +30018,0,1.0,0,1.295898675918579,19,1.0,2 +30019,0,1.0,0,1.549896001815796,20,1.0,2 +30020,0,0.0,0,1.3778982162475586,21,0.0,2 +30021,0,1.0,0,1.5178964138031006,22,0.0,2 +30022,0,1.0,0,1.6538946628570557,23,1.0,2 +30023,0,1.0,0,1.8888916969299316,24,1.0,2 +30024,0,0.0,0,1.4518972635269165,25,0.0,2 +30025,0,1.0,0,1.4378974437713623,26,1.0,2 +30026,0,1.0,0,1.2468986511230469,27,1.0,2 +30027,0,1.0,0,1.2818987369537354,28,1.0,2 +30028,0,1.0,0,1.4778969287872314,29,0.0,2 +30029,0,0.0,0,1.3388986587524414,30,0.0,2 +30030,0,1.0,0,1.4828968048095703,31,1.0,2 +30031,0,1.0,0,1.5078965425491333,32,1.0,2 +30032,0,1.0,0,1.405897855758667,33,1.0,2 +30033,0,1.0,0,1.239898681640625,34,0.0,2 +30034,0,0.0,0,1.7108938694000244,35,0.0,2 +30035,0,1.0,0,1.7968928813934326,36,0.0,2 +30036,0,1.0,0,2.0838894844055176,37,1.0,2 +30037,0,1.0,0,2.1188910007476807,38,1.0,2 +30038,0,1.0,0,1.6998940706253052,39,1.0,2 +30039,0,1.0,0,1.91689133644104,40,1.0,2 +30040,0,1.0,0,1.47689688205719,41,1.0,2 +30041,0,1.0,0,1.6528947353363037,42,0.0,2 +30042,0,1.0,0,1.7208938598632812,43,1.0,2 +30043,0,1.0,0,2.018889904022217,44,1.0,2 +30044,0,1.0,0,1.5138964653015137,45,0.0,2 +30045,0,0.0,0,1.2828986644744873,46,1.0,2 +30046,0,1.0,0,1.5598958730697632,47,1.0,2 +30047,0,0.0,0,1.3668982982635498,48,0.0,2 +30048,0,1.0,0,1.3978979587554932,49,1.0,2 +30049,0,1.0,0,1.4788968563079834,50,1.0,2 +30050,0,1.0,0,1.8998914957046509,51,1.0,2 +30051,0,1.0,0,1.8398922681808472,52,1.0,2 +30052,0,1.0,0,1.2508985996246338,53,1.0,2 +30053,0,1.0,0,1.2628986835479736,54,1.0,2 +30054,0,1.0,0,1.5348961353302002,55,0.0,2 +30055,0,1.0,0,1.3428986072540283,56,1.0,2 +30056,0,1.0,0,1.3188987970352173,57,0.0,2 +30057,0,1.0,0,1.8948915004730225,58,0.0,2 +30058,0,0.0,0,1.3128987550735474,59,0.0,2 +30059,0,1.0,0,2.1038904190063477,60,1.0,2 +30060,0,1.0,0,1.6488947868347168,61,1.0,2 +30061,0,1.0,0,1.6258950233459473,62,1.0,2 +30062,0,1.0,0,1.8338923454284668,63,0.0,2 +30063,0,0.0,0,1.4638971090316772,64,0.0,2 +30064,0,0.0,0,1.335898756980896,65,1.0,2 +30065,0,1.0,0,1.873891830444336,66,1.0,2 +30066,0,1.0,0,1.9508907794952393,67,1.0,2 +30067,0,1.0,0,1.9958902597427368,68,1.0,2 +30068,0,1.0,0,1.7158938646316528,69,1.0,2 +30069,0,0.0,0,1.6998940706253052,70,0.0,2 +30070,0,1.0,0,1.4568971395492554,71,1.0,2 +30071,0,1.0,0,1.7618932723999023,72,1.0,2 +30072,0,1.0,0,1.541896104812622,73,0.0,2 +30073,0,1.0,0,1.406897783279419,74,1.0,2 +30074,0,1.0,0,1.7538933753967285,75,1.0,2 +30075,0,1.0,0,1.2808986902236938,76,0.0,2 +30076,0,1.0,0,1.2588986158370972,77,1.0,2 +30077,0,1.0,0,1.8938915729522705,78,1.0,2 +30078,0,1.0,0,1.4818968772888184,79,1.0,2 +30079,0,0.0,0,2.180893898010254,80,0.0,2 +30080,0,1.0,0,1.3608983755111694,81,1.0,2 +30081,0,1.0,0,1.9338910579681396,82,1.0,2 +30082,0,1.0,0,1.2508985996246338,83,1.0,2 +30083,0,1.0,0,1.1688984632492065,84,1.0,2 +30084,0,1.0,0,1.5508959293365479,85,1.0,2 +30085,0,1.0,0,1.9008915424346924,86,0.0,2 +30086,0,1.0,0,1.7408936023712158,87,1.0,2 +30087,0,1.0,0,1.3428986072540283,88,1.0,2 +30088,0,1.0,0,1.8098926544189453,89,0.0,2 +30089,0,0.0,0,1.6878942251205444,90,0.0,2 +30090,0,0.0,0,1.6248950958251953,91,0.0,2 +30091,0,1.0,0,1.2788987159729004,92,0.0,2 +30092,0,0.0,0,1.2158985137939453,93,0.0,2 +30093,0,1.0,0,1.6618945598602295,94,1.0,2 +30094,0,1.0,0,1.6958941221237183,95,1.0,2 +30095,0,1.0,0,1.310898780822754,96,1.0,2 +30096,0,1.0,0,1.588895559310913,97,1.0,2 +30097,0,1.0,0,1.6108951568603516,98,1.0,2 +30098,0,1.0,0,1.3728982210159302,99,1.0,2 +30099,0,1.0,0,2.21189546585083,100,0.0,2 +30100,0,0.0,0,1.1588984727859497,101,0.0,2 +30101,0,0.0,0,1.1918985843658447,102,0.0,2 +30102,0,1.0,0,1.4898967742919922,103,0.0,2 +30103,0,0.0,0,1.23689866065979,104,0.0,2 +30104,0,1.0,0,1.6478947401046753,105,1.0,2 +30105,0,1.0,0,1.7238937616348267,106,1.0,2 +30106,0,1.0,0,1.7278937101364136,107,1.0,2 +30107,0,0.0,0,2.059889316558838,108,0.0,2 +30108,0,1.0,0,1.307898759841919,109,1.0,2 +30109,0,1.0,0,1.9998902082443237,110,1.0,2 +30110,0,1.0,0,1.4658970832824707,111,1.0,2 +30111,0,1.0,0,1.7138938903808594,112,1.0,2 +30112,0,1.0,0,1.5628957748413086,113,1.0,2 +30113,0,1.0,0,1.8528921604156494,114,1.0,2 +30114,0,0.0,0,1.1998984813690186,115,1.0,2 +30115,0,1.0,0,1.8798917531967163,116,0.0,2 +30116,0,0.0,0,1.7378935813903809,117,0.0,2 +30117,0,0.0,0,1.2058985233306885,118,0.0,2 +30118,0,0.0,0,1.270898699760437,119,0.0,2 +30119,0,0.0,0,1.4328974485397339,120,0.0,2 +30120,0,1.0,0,1.45389723777771,121,1.0,2 +30121,0,1.0,0,1.380898118019104,122,1.0,2 +30122,0,0.0,0,1.5358961820602417,123,0.0,2 +30123,0,1.0,0,2.1068904399871826,124,1.0,2 +30124,0,1.0,0,1.8418922424316406,125,0.0,2 +30125,0,0.0,0,1.843892216682434,126,0.0,2 +30126,0,0.0,0,1.3948979377746582,127,0.0,2 +30127,0,0.0,0,1.5658957958221436,128,0.0,2 +30128,0,1.0,0,1.475896954536438,129,1.0,2 +30129,0,1.0,0,1.5798956155776978,130,0.0,2 +30130,0,1.0,0,1.5108964443206787,131,1.0,2 +30131,0,0.0,0,1.233898639678955,132,1.0,2 +30132,0,1.0,0,2.0928897857666016,133,1.0,2 +30133,0,0.0,0,1.5078965425491333,134,0.0,2 +30134,0,1.0,0,1.2968987226486206,135,1.0,2 +30135,0,1.0,0,1.6578946113586426,136,1.0,2 +30136,0,1.0,0,1.6168951988220215,137,1.0,2 +30137,0,1.0,0,1.987890362739563,138,1.0,2 +30138,0,1.0,0,1.3128987550735474,139,1.0,2 +30139,0,1.0,0,1.6108951568603516,140,0.0,2 +30140,0,1.0,0,1.9338910579681396,141,0.0,2 +30141,0,0.0,0,1.9818904399871826,142,0.0,2 +30142,0,0.0,0,1.4488972425460815,143,0.0,2 +30143,0,0.0,0,2.176893711090088,144,1.0,2 +30144,0,0.0,0,1.358898401260376,145,0.0,2 +30145,0,1.0,0,1.686894178390503,146,1.0,2 +30146,0,0.0,0,1.42489755153656,147,0.0,2 +30147,0,1.0,0,1.4118977785110474,148,0.0,2 +30148,0,1.0,0,1.405897855758667,149,1.0,2 +30149,0,1.0,0,1.5098965167999268,150,1.0,2 +30150,0,1.0,0,1.4848967790603638,151,1.0,2 +30151,0,1.0,0,1.3278987407684326,152,0.0,2 +30152,0,0.0,0,1.8158925771713257,153,0.0,2 +30153,0,0.0,0,1.301898717880249,154,0.0,2 +30154,0,0.0,0,1.6668944358825684,155,0.0,2 +30155,0,0.0,0,2.5369105339050293,156,1.0,2 +30156,0,0.0,0,1.1588984727859497,157,1.0,2 +30157,0,0.0,0,1.7428934574127197,158,1.0,2 +30158,0,0.0,0,1.824892520904541,159,0.0,2 +30159,0,0.0,0,1.471897006034851,160,0.0,2 +30160,0,1.0,0,2.0838894844055176,161,1.0,2 +30161,0,1.0,0,1.5258963108062744,162,1.0,2 +30162,0,1.0,0,1.450897216796875,163,1.0,2 +30163,0,1.0,0,1.9058914184570312,164,1.0,2 +30164,0,1.0,0,1.4588971138000488,165,1.0,2 +30165,0,1.0,0,1.8968915939331055,166,1.0,2 +30166,0,1.0,0,1.8298923969268799,167,1.0,2 +30167,0,1.0,0,1.4078978300094604,168,1.0,2 +30168,0,1.0,0,2.059889316558838,169,1.0,2 +30169,0,1.0,0,1.3788981437683105,170,1.0,2 +30170,0,1.0,0,1.5918954610824585,171,1.0,2 +30171,0,1.0,0,1.6008954048156738,172,1.0,2 +30172,0,1.0,0,1.5798956155776978,173,0.0,2 +30173,0,0.0,0,1.4088977575302124,174,0.0,2 +30174,0,0.0,0,1.9118913412094116,175,0.0,2 +30175,0,1.0,0,2.135891914367676,176,1.0,2 +30176,0,1.0,0,1.6088953018188477,177,1.0,2 +30177,0,1.0,0,1.3758982419967651,178,0.0,2 +30178,0,1.0,0,1.5408960580825806,179,0.0,2 +30179,0,0.0,0,1.5848956108093262,180,0.0,2 +30180,0,0.0,0,1.6628944873809814,181,0.0,2 +30181,0,1.0,0,1.7438935041427612,182,1.0,2 +30182,0,1.0,0,2.061889410018921,183,1.0,2 +30183,0,1.0,0,1.3718982934951782,184,1.0,2 +30184,0,1.0,0,1.5008965730667114,185,1.0,2 +30185,0,1.0,0,1.4788968563079834,186,1.0,2 +30186,0,1.0,0,1.5278962850570679,187,1.0,2 +30187,0,1.0,0,1.3668982982635498,188,1.0,2 +30188,0,1.0,0,1.471897006034851,189,1.0,2 +30189,0,1.0,0,1.3878980875015259,190,1.0,2 +30190,0,1.0,0,1.3878980875015259,191,0.0,2 +30191,0,1.0,0,1.3388986587524414,192,1.0,2 +30192,0,1.0,0,1.5268962383270264,193,1.0,2 +30193,0,1.0,0,1.2918987274169922,194,0.0,2 +30194,0,0.0,0,1.3928979635238647,195,0.0,2 +30195,0,1.0,0,1.3468985557556152,196,1.0,2 +30196,0,1.0,0,1.380898118019104,197,1.0,2 +30197,0,1.0,0,1.5048965215682983,198,1.0,2 +30198,0,1.0,0,1.383898138999939,199,1.0,2 +30199,0,1.0,0,1.493896722793579,200,1.0,2 +30200,0,1.0,0,1.5348961353302002,201,0.0,2 +30201,0,0.0,0,1.3558984994888306,202,0.0,2 +30202,0,0.0,0,1.3268988132476807,203,0.0,2 +30203,0,1.0,0,1.7938928604125977,204,1.0,2 +30204,0,0.0,0,1.3498985767364502,205,0.0,2 +30205,0,1.0,0,1.380898118019104,206,1.0,2 +30206,0,1.0,0,2.0318899154663086,207,1.0,2 +30207,0,1.0,0,1.42489755153656,208,1.0,2 +30208,0,1.0,0,1.307898759841919,209,0.0,2 +30209,0,1.0,0,1.6228950023651123,210,0.0,2 +30210,0,1.0,0,1.5668957233428955,211,0.0,2 +30211,0,0.0,0,1.494896650314331,212,0.0,2 +30212,0,1.0,0,1.6988940238952637,213,1.0,2 +30213,0,1.0,0,1.3758982419967651,214,1.0,2 +30214,0,1.0,0,1.3428986072540283,215,1.0,2 +30215,0,1.0,0,1.6448948383331299,216,0.0,2 +30216,0,1.0,0,2.3199005126953125,217,1.0,2 +30217,0,1.0,0,1.2928987741470337,218,0.0,2 +30218,0,0.0,0,1.2488986253738403,219,1.0,2 +30219,0,0.0,0,1.297898769378662,220,0.0,2 +30220,0,1.0,0,1.5798956155776978,221,1.0,2 +30221,0,1.0,0,2.0738892555236816,222,1.0,2 +30222,0,1.0,0,1.3828980922698975,223,1.0,2 +30223,0,0.0,0,1.2448986768722534,224,0.0,2 +30224,0,1.0,0,1.2698986530303955,225,1.0,2 +30225,0,1.0,0,1.383898138999939,226,1.0,2 +30226,0,1.0,0,1.2158985137939453,227,0.0,2 +30227,0,0.0,0,1.8138926029205322,228,1.0,2 +30228,0,0.0,0,1.7418935298919678,229,0.0,2 +30229,0,1.0,0,1.5068964958190918,230,1.0,2 +30230,0,1.0,0,1.2948987483978271,231,1.0,2 +30231,0,1.0,0,1.4478973150253296,232,1.0,2 +30232,0,1.0,0,1.5268962383270264,233,1.0,2 +30233,0,1.0,0,1.588895559310913,234,1.0,2 +30234,0,1.0,0,1.5978953838348389,235,1.0,2 +30235,0,1.0,0,1.3388986587524414,236,1.0,2 +30236,0,1.0,0,1.8818917274475098,237,1.0,2 +30237,0,1.0,0,1.2838987112045288,238,1.0,2 +30238,0,1.0,0,1.4198976755142212,239,0.0,2 +30239,0,0.0,0,1.8498921394348145,240,0.0,2 +30240,0,1.0,0,1.9828903675079346,241,1.0,2 +30241,0,1.0,0,2.0328898429870605,242,1.0,2 +30242,0,0.0,0,1.8888916969299316,243,0.0,2 +30243,0,1.0,0,1.2478985786437988,244,1.0,2 +30244,0,1.0,0,1.2918987274169922,245,0.0,2 +30245,0,0.0,0,1.63889479637146,246,0.0,2 +30246,0,1.0,0,1.6318949460983276,247,1.0,2 +30247,0,1.0,0,2.499908924102783,248,1.0,2 +30248,0,1.0,0,1.3218988180160522,249,1.0,2 +30249,0,1.0,0,1.5068964958190918,250,1.0,2 +30250,0,1.0,0,1.3988978862762451,251,0.0,2 +30251,0,1.0,0,1.773893117904663,252,1.0,2 +30252,0,1.0,0,2.3068997859954834,253,0.0,2 +30253,0,0.0,0,1.3788981437683105,254,0.0,2 +30254,0,1.0,0,2.064889430999756,255,1.0,2 +30255,0,0.0,0,1.965890645980835,256,0.0,2 +30256,0,1.0,0,1.3688982725143433,257,1.0,2 +30257,0,0.0,0,1.3438986539840698,258,0.0,2 +30258,0,1.0,0,1.2078986167907715,259,1.0,2 +30259,0,1.0,0,1.4848967790603638,260,0.0,2 +30260,0,0.0,0,1.3858981132507324,261,0.0,2 +30261,0,1.0,0,1.498896598815918,262,1.0,2 +30262,0,1.0,0,1.7128939628601074,263,1.0,2 +30263,0,1.0,0,1.3698983192443848,264,1.0,2 +30264,0,1.0,0,1.3348987102508545,265,1.0,2 +30265,0,0.0,0,1.5848956108093262,266,0.0,2 +30266,0,1.0,0,1.2798986434936523,267,1.0,2 +30267,0,1.0,0,1.4478973150253296,268,1.0,2 +30268,0,0.0,0,1.5528959035873413,269,0.0,2 +30269,0,1.0,0,1.6148951053619385,270,1.0,2 +30270,0,0.0,0,1.4438973665237427,271,0.0,2 +30271,0,1.0,0,1.357898473739624,272,1.0,2 +30272,0,1.0,0,1.7048940658569336,273,1.0,2 +30273,0,0.0,0,1.5138964653015137,274,1.0,2 +30274,0,0.0,0,2.059889316558838,275,1.0,2 +30275,0,1.0,0,1.5988953113555908,276,0.0,2 +30276,0,0.0,0,1.2518986463546753,277,0.0,2 +30277,0,0.0,0,1.1818984746932983,278,0.0,2 +30278,0,0.0,0,1.3168988227844238,279,0.0,2 +30279,0,0.0,0,1.243898630142212,280,0.0,2 +30280,0,0.0,0,2.5649118423461914,281,0.0,2 +30281,0,0.0,0,1.6078952550888062,282,0.0,2 +30282,0,1.0,0,1.5348961353302002,283,1.0,2 +30283,0,1.0,0,1.3778982162475586,284,1.0,2 +30284,0,1.0,0,1.7018940448760986,285,1.0,2 +30285,0,1.0,0,1.6778943538665771,286,1.0,2 +30286,0,1.0,0,1.2288986444473267,287,1.0,2 +30287,0,1.0,0,1.2948987483978271,288,0.0,2 +30288,0,0.0,0,1.5358961820602417,289,0.0,2 +30289,0,1.0,0,1.3778982162475586,290,1.0,2 +30290,0,1.0,0,1.5518959760665894,291,1.0,2 +30291,0,1.0,0,1.3908979892730713,292,1.0,2 +30292,0,1.0,0,1.5548958778381348,293,1.0,2 +30293,0,0.0,0,1.987890362739563,294,0.0,2 +30294,0,1.0,0,1.6228950023651123,295,1.0,2 +30295,0,1.0,0,1.4258975982666016,296,1.0,2 +30296,0,1.0,0,1.5128964185714722,297,1.0,2 +30297,0,1.0,0,1.498896598815918,298,1.0,2 +30298,0,1.0,0,1.4788968563079834,299,1.0,2 +30299,0,1.0,0,1.8088927268981934,300,1.0,2 +30300,0,1.0,0,2.059889316558838,301,0.0,2 +30301,0,0.0,0,1.56389582157135,302,0.0,2 +30302,0,1.0,0,1.730893611907959,303,1.0,2 +30303,0,1.0,0,1.4858968257904053,304,0.0,2 +30304,0,0.0,0,1.707893967628479,305,0.0,2 +30305,0,1.0,0,1.9958902597427368,306,1.0,2 +30306,0,1.0,0,1.40189790725708,307,1.0,2 +30307,0,1.0,0,1.2788987159729004,308,1.0,2 +30308,0,1.0,0,1.5668957233428955,309,1.0,2 +30309,0,1.0,0,1.3978979587554932,310,1.0,2 +30310,0,0.0,0,1.3688982725143433,311,0.0,2 +30311,0,1.0,0,1.2898987531661987,312,1.0,2 +30312,0,1.0,0,1.5378961563110352,313,1.0,2 +30313,0,1.0,0,1.590895414352417,314,1.0,2 +30314,0,1.0,0,1.3428986072540283,315,1.0,2 +30315,0,1.0,0,1.2848987579345703,316,1.0,2 +30316,0,1.0,0,1.4448972940444946,317,1.0,2 +30317,0,1.0,0,1.5368961095809937,318,1.0,2 +30318,0,1.0,0,1.4518972635269165,319,1.0,2 +30319,0,0.0,0,1.546895980834961,320,0.0,2 +30320,0,0.0,0,1.7908928394317627,321,0.0,2 +30321,0,1.0,0,1.3388986587524414,322,1.0,2 +30322,0,1.0,0,1.4788968563079834,323,1.0,2 +30323,0,1.0,0,1.3248988389968872,324,1.0,2 +30324,0,1.0,0,2.200894832611084,325,0.0,2 +30325,0,0.0,0,1.4428973197937012,326,0.0,2 +30326,0,1.0,0,1.4928966760635376,327,1.0,2 +30327,0,1.0,0,1.619895100593567,328,1.0,2 +30328,0,1.0,0,1.7918928861618042,329,1.0,2 +30329,0,1.0,0,1.4118977785110474,330,1.0,2 +30330,0,1.0,0,1.5528959035873413,331,1.0,2 +30331,0,1.0,0,1.4808968305587769,332,1.0,2 +30332,0,1.0,0,1.3828980922698975,333,1.0,2 +30333,0,1.0,0,1.47689688205719,334,0.0,2 +30334,0,1.0,0,2.5079092979431152,335,1.0,2 +30335,0,0.0,0,1.2548986673355103,336,1.0,2 +30336,0,1.0,0,1.8678919076919556,337,1.0,2 +30337,0,0.0,0,1.7018940448760986,338,0.0,2 +30338,0,1.0,0,1.7618932723999023,339,1.0,2 +30339,0,1.0,0,2.052889585494995,340,1.0,2 +30340,0,1.0,0,1.298898696899414,341,1.0,2 +30341,0,0.0,0,1.4158977270126343,342,0.0,2 +30342,0,1.0,0,1.384898066520691,343,1.0,2 +30343,0,0.0,0,1.2628986835479736,344,0.0,2 +30344,0,1.0,0,1.5768955945968628,345,0.0,2 +30345,0,0.0,0,1.3818981647491455,346,0.0,2 +30346,0,0.0,0,1.7418935298919678,347,0.0,2 +30347,0,1.0,0,1.264898657798767,348,1.0,2 +30348,0,0.0,0,1.9988901615142822,349,0.0,2 +30349,0,1.0,0,1.5568958520889282,350,0.0,2 +30350,0,0.0,0,1.2868987321853638,351,0.0,2 +30351,0,0.0,0,1.7598932981491089,352,0.0,2 +30352,0,0.0,0,1.4488972425460815,353,1.0,2 +30353,0,0.0,0,1.501896619796753,354,1.0,2 +30354,0,0.0,0,1.1938985586166382,355,0.0,2 +30355,0,1.0,0,1.4638971090316772,356,1.0,2 +30356,0,0.0,0,1.6468946933746338,357,0.0,2 +30357,0,1.0,0,1.47689688205719,358,1.0,2 +30358,0,1.0,0,1.7478934526443481,359,1.0,2 +30359,0,1.0,0,1.3568984270095825,360,0.0,2 +30360,0,0.0,0,1.2578986883163452,361,1.0,2 +30361,0,0.0,0,1.5058965682983398,362,0.0,2 +30362,0,1.0,0,1.273898720741272,363,1.0,2 +30363,0,0.0,0,1.1708984375,364,0.0,2 +30364,0,1.0,0,1.2828986644744873,365,0.0,2 +30365,0,0.0,0,1.4218976497650146,366,1.0,2 +30366,0,0.0,0,1.2918987274169922,367,0.0,2 +30367,0,1.0,0,1.9068913459777832,368,1.0,2 +30368,0,1.0,0,1.822892427444458,369,1.0,2 +30369,0,1.0,0,1.9378910064697266,370,1.0,2 +30370,0,1.0,0,1.7678931951522827,371,1.0,2 +30371,0,1.0,0,1.3738982677459717,372,1.0,2 +30372,0,1.0,0,1.7188937664031982,373,0.0,2 +30373,0,0.0,0,1.9368910789489746,374,1.0,2 +30374,0,0.0,0,1.3218988180160522,375,0.0,2 +30375,0,0.0,0,1.2518986463546753,376,0.0,2 +30376,0,0.0,0,1.8328924179077148,377,0.0,2 +30377,0,0.0,0,1.8858916759490967,378,0.0,2 +30378,0,1.0,0,2.165893077850342,379,1.0,2 +30379,0,1.0,0,1.8008928298950195,380,1.0,2 +30380,0,1.0,0,1.295898675918579,381,1.0,2 +30381,0,1.0,0,1.541896104812622,382,1.0,2 +30382,0,1.0,0,1.4418973922729492,383,1.0,2 +30383,0,1.0,0,1.3698983192443848,384,1.0,2 +30384,0,1.0,0,1.732893705368042,385,1.0,2 +30385,0,1.0,0,1.273898720741272,386,1.0,2 +30386,0,1.0,0,1.9388909339904785,387,1.0,2 +30387,0,1.0,0,1.5028965473175049,388,1.0,2 +30388,0,1.0,0,1.406897783279419,389,1.0,2 +30389,0,0.0,0,1.5658957958221436,390,0.0,2 +30390,0,1.0,0,1.9578907489776611,391,1.0,2 +30391,0,1.0,0,1.6188950538635254,392,1.0,2 +30392,0,1.0,0,1.589895486831665,393,1.0,2 +30393,0,1.0,0,1.519896388053894,394,1.0,2 +30394,0,1.0,0,1.3388986587524414,395,1.0,2 +30395,0,1.0,0,1.6398948431015015,396,1.0,2 +30396,0,1.0,0,1.799892783164978,397,1.0,2 +30397,0,1.0,0,1.5398961305618286,398,1.0,2 +30398,0,1.0,0,1.7668931484222412,399,0.0,2 +30399,0,0.0,0,1.273898720741272,400,0.0,2 +30400,0,0.0,0,1.1868984699249268,401,0.0,2 +30401,0,1.0,0,1.7838929891586304,402,1.0,2 +30402,0,1.0,0,1.3268988132476807,403,1.0,2 +30403,0,1.0,0,1.7028939723968506,404,1.0,2 +30404,0,1.0,0,1.6588945388793945,405,1.0,2 +30405,0,1.0,0,1.5218963623046875,406,1.0,2 +30406,0,1.0,0,1.707893967628479,407,0.0,2 +30407,0,1.0,0,1.707893967628479,408,1.0,2 +30408,0,1.0,0,1.56389582157135,409,1.0,2 +30409,0,1.0,0,1.5738956928253174,410,1.0,2 +30410,0,1.0,0,1.233898639678955,411,1.0,2 +30411,0,1.0,0,1.376898169517517,412,1.0,2 +30412,0,1.0,0,1.6468946933746338,413,0.0,2 +30413,0,0.0,0,1.5358961820602417,414,1.0,2 +30414,0,0.0,0,1.1898984909057617,415,0.0,2 +30415,0,1.0,0,1.3338987827301025,416,1.0,2 +30416,0,1.0,0,1.4148976802825928,417,1.0,2 +30417,0,1.0,0,2.046889543533325,418,1.0,2 +30418,0,1.0,0,2.004890203475952,419,1.0,2 +30419,0,1.0,0,1.304898738861084,420,1.0,2 +30420,0,1.0,0,1.471897006034851,421,1.0,2 +30421,0,1.0,0,1.4428973197937012,422,1.0,2 +30422,0,1.0,0,1.4298975467681885,423,1.0,2 +30423,0,1.0,0,1.9268910884857178,424,1.0,2 +30424,0,1.0,0,1.520896315574646,425,1.0,2 +30425,0,1.0,0,1.4078978300094604,426,1.0,2 +30426,0,0.0,0,1.4668970108032227,427,0.0,2 +30427,0,1.0,0,1.2118985652923584,428,1.0,2 +30428,0,1.0,0,1.270898699760437,429,1.0,2 +30429,0,1.0,0,1.3898980617523193,430,1.0,2 +30430,0,1.0,0,1.9408910274505615,431,1.0,2 +30431,0,1.0,0,1.3388986587524414,432,1.0,2 +30432,0,1.0,0,1.4438973665237427,433,1.0,2 +30433,0,1.0,0,1.4118977785110474,434,1.0,2 +30434,0,1.0,0,1.7568933963775635,435,1.0,2 +30435,0,1.0,0,1.3448985815048218,436,0.0,2 +30436,0,0.0,0,1.2828986644744873,437,0.0,2 +30437,0,0.0,0,1.5228962898254395,438,0.0,2 +30438,0,1.0,0,1.5488959550857544,439,1.0,2 +30439,0,1.0,0,1.6328949928283691,440,1.0,2 +30440,0,1.0,0,1.5708956718444824,441,1.0,2 +30441,0,1.0,0,1.4168976545333862,442,1.0,2 +30442,0,1.0,0,1.5808956623077393,443,0.0,2 +30443,0,1.0,0,1.4478973150253296,444,1.0,2 +30444,0,1.0,0,1.9418909549713135,445,1.0,2 +30445,0,1.0,0,1.58689546585083,446,1.0,2 +30446,0,1.0,0,1.5268962383270264,447,1.0,2 +30447,0,1.0,0,1.8448922634124756,448,1.0,2 +30448,0,1.0,0,2.0888895988464355,449,1.0,2 +30449,0,1.0,0,2.1148908138275146,450,1.0,2 +30450,0,1.0,0,1.5578958988189697,451,1.0,2 +30451,0,1.0,0,2.002890110015869,452,1.0,2 +30452,0,1.0,0,1.402897834777832,453,1.0,2 +30453,0,1.0,0,1.3208987712860107,454,1.0,2 +30454,0,1.0,0,1.4178977012634277,455,1.0,2 +30455,0,1.0,0,1.516896367073059,456,1.0,2 +30456,0,1.0,0,1.6738944053649902,457,1.0,2 +30457,0,1.0,0,1.5328961610794067,458,1.0,2 +30458,0,1.0,0,1.4838968515396118,459,1.0,2 +30459,0,1.0,0,1.5668957233428955,460,1.0,2 +30460,0,1.0,0,1.7948927879333496,461,1.0,2 +30461,0,1.0,0,1.3158987760543823,462,1.0,2 +30462,0,1.0,0,1.3948979377746582,463,0.0,2 +30463,0,0.0,0,1.5058965682983398,464,0.0,2 +30464,0,0.0,0,1.354898452758789,465,0.0,2 +30465,0,0.0,0,1.966890573501587,466,0.0,2 +30466,0,1.0,0,1.5308961868286133,467,1.0,2 +30467,0,1.0,0,1.3068987131118774,468,1.0,2 +30468,0,1.0,0,1.2788987159729004,469,1.0,2 +30469,0,1.0,0,1.4878968000411987,470,1.0,2 +30470,0,1.0,0,1.5218963623046875,471,1.0,2 +30471,0,1.0,0,1.9118913412094116,472,1.0,2 +30472,0,1.0,0,2.1148908138275146,473,1.0,2 +30473,0,1.0,0,1.2528986930847168,474,1.0,2 +30474,0,1.0,0,1.7588932514190674,475,1.0,2 +30475,0,1.0,0,1.4118977785110474,476,0.0,2 +30476,0,1.0,0,1.5438960790634155,477,1.0,2 +30477,0,1.0,0,1.5798956155776978,478,1.0,2 +30478,0,1.0,0,1.729893684387207,479,0.0,2 +30479,0,1.0,0,2.135891914367676,480,1.0,2 +30480,0,0.0,0,1.497896671295166,481,0.0,2 +30481,0,0.0,0,1.8938915729522705,482,0.0,2 +30482,0,1.0,0,1.3028987646102905,483,1.0,2 +30483,0,1.0,0,1.9518908262252808,484,1.0,2 +30484,0,1.0,0,1.454897165298462,485,1.0,2 +30485,0,1.0,0,1.5068964958190918,486,0.0,2 +30486,0,1.0,0,1.680894374847412,487,1.0,2 +30487,0,0.0,0,1.636894941329956,488,0.0,2 +30488,0,1.0,0,1.523896336555481,489,1.0,2 +30489,0,1.0,0,1.3788981437683105,490,0.0,2 +30490,0,0.0,0,1.494896650314331,491,0.0,2 +30491,0,1.0,0,1.7758930921554565,492,1.0,2 +30492,0,1.0,0,1.331898808479309,493,1.0,2 +30493,0,0.0,0,1.5618958473205566,494,0.0,2 +30494,0,1.0,0,1.6188950538635254,495,1.0,2 +30495,0,1.0,0,1.3938980102539062,496,1.0,2 +30496,0,1.0,0,1.7578933238983154,497,1.0,2 +30497,0,1.0,0,1.3228987455368042,498,1.0,2 +30498,0,1.0,0,1.3158987760543823,499,1.0,2 +30499,0,1.0,0,1.428897500038147,500,0.0,2 +30500,0,0.0,1,1.5368961095809937,1,0.0,2 +30501,0,0.0,1,1.5178964138031006,2,0.0,2 +30502,0,1.0,1,2.3739027976989746,3,0.0,2 +30503,0,1.0,1,1.362898349761963,4,1.0,2 +30504,0,1.0,1,2.0888895988464355,5,1.0,2 +30505,0,1.0,1,1.5988953113555908,6,1.0,2 +30506,0,1.0,1,1.3518985509872437,7,1.0,2 +30507,0,1.0,1,1.865891933441162,8,1.0,2 +30508,0,1.0,1,1.541896104812622,9,1.0,2 +30509,0,1.0,1,1.3948979377746582,10,1.0,2 +30510,0,1.0,1,1.6178951263427734,11,1.0,2 +30511,0,1.0,1,1.6628944873809814,12,1.0,2 +30512,0,0.0,1,1.270898699760437,13,1.0,2 +30513,0,0.0,1,2.3769030570983887,14,0.0,2 +30514,0,1.0,1,1.4008978605270386,15,0.0,2 +30515,0,0.0,1,1.3268988132476807,16,0.0,2 +30516,0,0.0,1,1.590895414352417,17,0.0,2 +30517,0,1.0,1,1.5408960580825806,18,0.0,2 +30518,0,1.0,1,1.77789306640625,19,0.0,2 +30519,0,0.0,1,1.3998979330062866,20,0.0,2 +30520,0,0.0,1,1.5838955640792847,21,0.0,2 +30521,0,1.0,1,1.7588932514190674,22,1.0,2 +30522,0,1.0,1,1.2638986110687256,23,0.0,2 +30523,0,1.0,1,1.5088964700698853,24,0.0,2 +30524,0,0.0,1,2.059889316558838,25,0.0,2 +30525,0,1.0,1,1.7848930358886719,26,0.0,2 +30526,0,1.0,1,1.5668957233428955,27,1.0,2 +30527,0,1.0,1,1.5958954095840454,28,0.0,2 +30528,0,1.0,1,2.1118907928466797,29,0.0,2 +30529,0,0.0,1,1.6248950958251953,30,1.0,2 +30530,0,0.0,1,1.596895456314087,31,0.0,2 +30531,0,0.0,1,1.6518946886062622,32,0.0,2 +30532,0,1.0,1,1.7968928813934326,33,1.0,2 +30533,0,1.0,1,1.77789306640625,34,1.0,2 +30534,0,1.0,1,1.6108951568603516,35,1.0,2 +30535,0,1.0,1,1.6288950443267822,36,0.0,2 +30536,0,0.0,1,1.7428934574127197,37,0.0,2 +30537,0,0.0,1,1.6138951778411865,38,1.0,2 +30538,0,0.0,1,1.8128926753997803,39,1.0,2 +30539,0,0.0,1,1.3508985042572021,40,1.0,2 +30540,0,0.0,1,1.3508985042572021,41,0.0,2 +30541,0,1.0,1,1.7048940658569336,42,1.0,2 +30542,0,1.0,1,1.4558972120285034,43,1.0,2 +30543,0,1.0,1,1.3988978862762451,44,1.0,2 +30544,0,1.0,1,1.3418986797332764,45,0.0,2 +30545,0,1.0,1,2.003890037536621,46,1.0,2 +30546,0,0.0,1,1.5568958520889282,47,1.0,2 +30547,0,0.0,1,2.16489315032959,48,1.0,2 +30548,0,0.0,1,1.6428947448730469,49,1.0,2 +30549,0,0.0,1,1.516896367073059,50,0.0,2 +30550,0,1.0,1,1.5278962850570679,51,1.0,2 +30551,0,0.0,1,1.5828955173492432,52,1.0,2 +30552,0,0.0,1,1.3308987617492676,53,0.0,2 +30553,0,1.0,1,1.3698983192443848,54,1.0,2 +30554,0,1.0,1,1.357898473739624,55,1.0,2 +30555,0,1.0,1,1.542896032333374,56,1.0,2 +30556,0,1.0,1,1.3818981647491455,57,0.0,2 +30557,0,0.0,1,1.3258987665176392,58,0.0,2 +30558,0,0.0,1,1.6728944778442383,59,0.0,2 +30559,0,0.0,1,1.9028913974761963,60,0.0,2 +30560,0,1.0,1,1.5408960580825806,61,0.0,2 +30561,0,1.0,1,1.9828903675079346,62,1.0,2 +30562,0,1.0,1,1.5998953580856323,63,1.0,2 +30563,0,1.0,1,1.5508959293365479,64,0.0,2 +30564,0,0.0,1,1.4338974952697754,65,0.0,2 +30565,0,1.0,1,1.2588986158370972,66,1.0,2 +30566,0,1.0,1,1.6208951473236084,67,1.0,2 +30567,0,1.0,1,1.6628944873809814,68,0.0,2 +30568,0,1.0,1,1.3478986024856567,69,1.0,2 +30569,0,1.0,1,1.6008954048156738,70,1.0,2 +30570,0,1.0,1,1.3698983192443848,71,0.0,2 +30571,0,1.0,1,1.5038965940475464,72,1.0,2 +30572,0,1.0,1,1.9978902339935303,73,1.0,2 +30573,0,0.0,1,1.8108925819396973,74,0.0,2 +30574,0,1.0,1,1.7798930406570435,75,1.0,2 +30575,0,0.0,1,1.7238937616348267,76,1.0,2 +30576,0,1.0,1,1.8588919639587402,77,1.0,2 +30577,0,1.0,1,1.5478960275650024,78,1.0,2 +30578,0,1.0,1,1.6538946628570557,79,1.0,2 +30579,0,1.0,1,1.4788968563079834,80,1.0,2 +30580,0,1.0,1,2.407904624938965,81,1.0,2 +30581,0,0.0,1,1.686894178390503,82,0.0,2 +30582,0,1.0,1,1.4828968048095703,83,1.0,2 +30583,0,0.0,1,1.5668957233428955,84,0.0,2 +30584,0,1.0,1,1.2088985443115234,85,1.0,2 +30585,0,1.0,1,1.6488947868347168,86,1.0,2 +30586,0,1.0,1,1.5918954610824585,87,1.0,2 +30587,0,0.0,1,1.6458947658538818,88,1.0,2 +30588,0,0.0,1,1.303898811340332,89,0.0,2 +30589,0,1.0,1,1.56389582157135,90,1.0,2 +30590,0,1.0,1,1.353898525238037,91,1.0,2 +30591,0,1.0,1,1.5278962850570679,92,1.0,2 +30592,0,1.0,1,1.4378974437713623,93,0.0,2 +30593,0,0.0,1,1.8808917999267578,94,1.0,2 +30594,0,1.0,1,1.6718944311141968,95,1.0,2 +30595,0,1.0,1,2.2558975219726562,96,1.0,2 +30596,0,1.0,1,1.427897572517395,97,1.0,2 +30597,0,0.0,1,1.8848917484283447,98,0.0,2 +30598,0,1.0,1,1.5108964443206787,99,1.0,2 +30599,0,1.0,1,1.3658983707427979,100,1.0,2 +30600,0,0.0,1,1.335898756980896,101,0.0,2 +30601,0,1.0,1,1.3438986539840698,102,0.0,2 +30602,0,0.0,1,1.3698983192443848,103,0.0,2 +30603,0,1.0,1,1.5628957748413086,104,1.0,2 +30604,0,1.0,1,1.678894281387329,105,1.0,2 +30605,0,1.0,1,1.4298975467681885,106,1.0,2 +30606,0,1.0,1,1.4228975772857666,107,1.0,2 +30607,0,1.0,1,1.7258937358856201,108,0.0,2 +30608,0,0.0,1,1.331898808479309,109,1.0,2 +30609,0,0.0,1,1.5288962125778198,110,1.0,2 +30610,0,0.0,1,1.1948984861373901,111,0.0,2 +30611,0,1.0,1,2.1318917274475098,112,1.0,2 +30612,0,0.0,1,1.6478947401046753,113,0.0,2 +30613,0,1.0,1,1.42489755153656,114,0.0,2 +30614,0,0.0,1,1.538896083831787,115,0.0,2 +30615,0,0.0,1,1.3928979635238647,116,0.0,2 +30616,0,1.0,1,1.5608958005905151,117,1.0,2 +30617,0,1.0,1,1.5588958263397217,118,0.0,2 +30618,0,0.0,1,1.7318936586380005,119,1.0,2 +30619,0,0.0,1,1.7098939418792725,120,0.0,2 +30620,0,0.0,1,1.471897006034851,121,0.0,2 +30621,0,1.0,1,2.0008902549743652,122,1.0,2 +30622,0,0.0,1,1.3388986587524414,123,0.0,2 +30623,0,1.0,1,1.4118977785110474,124,0.0,2 +30624,0,1.0,1,1.5998953580856323,125,1.0,2 +30625,0,1.0,1,1.273898720741272,126,1.0,2 +30626,0,1.0,1,1.822892427444458,127,1.0,2 +30627,0,1.0,1,1.3058987855911255,128,0.0,2 +30628,0,1.0,1,1.4898967742919922,129,0.0,2 +30629,0,0.0,1,1.449897289276123,130,0.0,2 +30630,0,0.0,1,1.962890625,131,1.0,2 +30631,0,0.0,1,1.4388973712921143,132,1.0,2 +30632,0,0.0,1,1.2388986349105835,133,0.0,2 +30633,0,0.0,1,1.7388935089111328,134,0.0,2 +30634,0,0.0,1,1.40189790725708,135,0.0,2 +30635,0,1.0,1,1.4868967533111572,136,1.0,2 +30636,0,1.0,1,1.4458973407745361,137,0.0,2 +30637,0,0.0,1,1.2858986854553223,138,0.0,2 +30638,0,1.0,1,2.135891914367676,139,1.0,2 +30639,0,1.0,1,1.5318962335586548,140,1.0,2 +30640,0,1.0,1,1.240898609161377,141,0.0,2 +30641,0,0.0,1,1.428897500038147,142,0.0,2 +30642,0,1.0,1,1.4008978605270386,143,1.0,2 +30643,0,0.0,1,2.3939037322998047,144,0.0,2 +30644,0,0.0,1,1.20689857006073,145,0.0,2 +30645,0,1.0,1,1.379898190498352,146,1.0,2 +30646,0,1.0,1,1.5368961095809937,147,0.0,2 +30647,0,0.0,1,1.6548945903778076,148,0.0,2 +30648,0,0.0,1,1.3958979845046997,149,0.0,2 +30649,0,1.0,1,1.3138988018035889,150,1.0,2 +30650,0,1.0,1,1.7378935813903809,151,0.0,2 +30651,0,0.0,1,2.168893337249756,152,1.0,2 +30652,0,0.0,1,1.3598984479904175,153,0.0,2 +30653,0,1.0,1,1.5708956718444824,154,1.0,2 +30654,0,1.0,1,1.4378974437713623,155,0.0,2 +30655,0,1.0,1,1.685894250869751,156,1.0,2 +30656,0,0.0,1,1.5308961868286133,157,1.0,2 +30657,0,0.0,1,1.3158987760543823,158,0.0,2 +30658,0,1.0,1,1.7848930358886719,159,1.0,2 +30659,0,1.0,1,1.8858916759490967,160,1.0,2 +30660,0,1.0,1,1.7548933029174805,161,0.0,2 +30661,0,0.0,1,1.8298923969268799,162,0.0,2 +30662,0,1.0,1,1.588895559310913,163,1.0,2 +30663,0,1.0,1,1.9098913669586182,164,1.0,2 +30664,0,1.0,1,1.3708982467651367,165,1.0,2 +30665,0,1.0,1,2.012890100479126,166,1.0,2 +30666,0,1.0,1,1.5528959035873413,167,0.0,2 +30667,0,1.0,1,1.6488947868347168,168,1.0,2 +30668,0,0.0,1,1.2878987789154053,169,0.0,2 +30669,0,1.0,1,1.6608946323394775,170,1.0,2 +30670,0,1.0,1,2.19789457321167,171,1.0,2 +30671,0,1.0,1,1.588895559310913,172,1.0,2 +30672,0,0.0,1,2.1378917694091797,173,1.0,2 +30673,0,1.0,1,2.0248899459838867,174,1.0,2 +30674,0,1.0,1,2.1088905334472656,175,1.0,2 +30675,0,0.0,1,1.3118987083435059,176,0.0,2 +30676,0,1.0,1,1.847892165184021,177,1.0,2 +30677,0,1.0,1,1.2838987112045288,178,0.0,2 +30678,0,0.0,1,1.2728986740112305,179,1.0,2 +30679,0,0.0,1,1.3738982677459717,180,0.0,2 +30680,0,1.0,1,1.680894374847412,181,1.0,2 +30681,0,1.0,1,1.3178987503051758,182,1.0,2 +30682,0,1.0,1,1.689894199371338,183,1.0,2 +30683,0,1.0,1,1.6078952550888062,184,1.0,2 +30684,0,1.0,1,1.5558959245681763,185,1.0,2 +30685,0,1.0,1,1.231898546218872,186,1.0,2 +30686,0,1.0,1,1.7028939723968506,187,1.0,2 +30687,0,1.0,1,1.3478986024856567,188,1.0,2 +30688,0,1.0,1,1.2258986234664917,189,1.0,2 +30689,0,1.0,1,1.2638986110687256,190,1.0,2 +30690,0,1.0,1,1.824892520904541,191,1.0,2 +30691,0,1.0,1,1.4428973197937012,192,1.0,2 +30692,0,0.0,1,1.9778904914855957,193,0.0,2 +30693,0,1.0,1,1.637894868850708,194,1.0,2 +30694,0,0.0,1,1.4328974485397339,195,0.0,2 +30695,0,1.0,1,1.431897521018982,196,1.0,2 +30696,0,1.0,1,1.5448960065841675,197,0.0,2 +30697,0,1.0,1,2.0298898220062256,198,1.0,2 +30698,0,1.0,1,1.4918967485427856,199,1.0,2 +30699,0,1.0,1,1.755893349647522,200,1.0,2 +30700,0,1.0,1,1.5258963108062744,201,0.0,2 +30701,0,1.0,1,1.8578920364379883,202,1.0,2 +30702,0,1.0,1,1.3968979120254517,203,0.0,2 +30703,0,1.0,1,1.8758918046951294,204,1.0,2 +30704,0,1.0,1,1.494896650314331,205,1.0,2 +30705,0,1.0,1,1.7188937664031982,206,1.0,2 +30706,0,1.0,1,1.3568984270095825,207,1.0,2 +30707,0,1.0,1,1.9048914909362793,208,1.0,2 +30708,0,1.0,1,1.3528984785079956,209,0.0,2 +30709,0,1.0,1,2.064889430999756,210,1.0,2 +30710,0,1.0,1,1.3168988227844238,211,0.0,2 +30711,0,1.0,1,1.6238950490951538,212,0.0,2 +30712,0,0.0,1,1.3378987312316895,213,0.0,2 +30713,0,1.0,1,1.5838955640792847,214,1.0,2 +30714,0,1.0,1,1.7378935813903809,215,1.0,2 +30715,0,1.0,1,1.524896264076233,216,1.0,2 +30716,0,1.0,1,1.876891851425171,217,0.0,2 +30717,0,1.0,1,2.3319010734558105,218,1.0,2 +30718,0,1.0,1,1.733893632888794,219,1.0,2 +30719,0,1.0,1,1.4688969850540161,220,1.0,2 +30720,0,0.0,1,1.7128939628601074,221,0.0,2 +30721,0,0.0,1,1.4958966970443726,222,0.0,2 +30722,0,1.0,1,1.5818955898284912,223,0.0,2 +30723,0,1.0,1,1.7718931436538696,224,1.0,2 +30724,0,0.0,1,2.064889430999756,225,1.0,2 +30725,0,0.0,1,2.060889482498169,226,1.0,2 +30726,0,1.0,1,1.961890697479248,227,1.0,2 +30727,0,0.0,1,1.824892520904541,228,1.0,2 +30728,0,0.0,1,1.446897268295288,229,0.0,2 +30729,0,1.0,1,1.6148951053619385,230,0.0,2 +30730,0,1.0,1,1.9538908004760742,231,0.0,2 +30731,0,0.0,1,1.2888987064361572,232,0.0,2 +30732,0,0.0,1,1.6398948431015015,233,0.0,2 +30733,0,1.0,1,1.729893684387207,234,1.0,2 +30734,0,1.0,1,2.2958993911743164,235,1.0,2 +30735,0,1.0,1,1.2238986492156982,236,1.0,2 +30736,0,1.0,1,1.5338962078094482,237,0.0,2 +30737,0,0.0,1,1.9108912944793701,238,0.0,2 +30738,0,0.0,1,1.7648932933807373,239,0.0,2 +30739,0,1.0,1,1.276898741722107,240,0.0,2 +30740,0,1.0,1,1.682894229888916,241,0.0,2 +30741,0,0.0,1,1.5658957958221436,242,0.0,2 +30742,0,0.0,1,2.193894386291504,243,0.0,2 +30743,0,0.0,1,1.7198938131332397,244,0.0,2 +30744,0,1.0,1,1.6708943843841553,245,1.0,2 +30745,0,1.0,1,1.3068987131118774,246,1.0,2 +30746,0,0.0,1,1.7238937616348267,247,0.0,2 +30747,0,1.0,1,1.3888980150222778,248,0.0,2 +30748,0,1.0,1,1.8628919124603271,249,0.0,2 +30749,0,0.0,1,2.3559021949768066,250,1.0,2 +30750,0,0.0,1,1.6248950958251953,251,0.0,2 +30751,0,0.0,1,1.4618971347808838,252,1.0,2 +30752,0,0.0,1,1.4598971605300903,253,0.0,2 +30753,0,0.0,1,1.5068964958190918,254,0.0,2 +30754,0,0.0,1,1.9458909034729004,255,0.0,2 +30755,0,0.0,1,1.9768905639648438,256,1.0,2 +30756,0,0.0,1,1.778892993927002,257,0.0,2 +30757,0,0.0,1,1.6018953323364258,258,0.0,2 +30758,0,0.0,1,1.4628970623016357,259,0.0,2 +30759,0,1.0,1,1.8808917999267578,260,1.0,2 +30760,0,1.0,1,1.6648945808410645,261,0.0,2 +30761,0,0.0,1,1.427897572517395,262,0.0,2 +30762,0,0.0,1,1.402897834777832,263,1.0,2 +30763,0,0.0,1,1.3258987665176392,264,0.0,2 +30764,0,1.0,1,1.6088953018188477,265,0.0,2 +30765,0,0.0,1,2.017889976501465,266,0.0,2 +30766,0,1.0,1,1.6108951568603516,267,1.0,2 +30767,0,1.0,1,1.4888967275619507,268,1.0,2 +30768,0,1.0,1,1.5298962593078613,269,1.0,2 +30769,0,0.0,1,1.3128987550735474,270,0.0,2 +30770,0,1.0,1,1.3668982982635498,271,0.0,2 +30771,0,0.0,1,1.5058965682983398,272,0.0,2 +30772,0,0.0,1,1.4628970623016357,273,0.0,2 +30773,0,1.0,1,1.8908915519714355,274,1.0,2 +30774,0,0.0,1,1.4648970365524292,275,0.0,2 +30775,0,1.0,1,1.7188937664031982,276,1.0,2 +30776,0,1.0,1,1.7188937664031982,277,1.0,2 +30777,0,1.0,1,1.3408986330032349,278,1.0,2 +30778,0,0.0,1,1.409897804260254,279,0.0,2 +30779,0,0.0,1,1.4118977785110474,280,0.0,2 +30780,0,1.0,1,1.564895749092102,281,1.0,2 +30781,0,1.0,1,1.659894585609436,282,0.0,2 +30782,0,1.0,1,1.4698970317840576,283,1.0,2 +30783,0,0.0,1,1.4678970575332642,284,0.0,2 +30784,0,1.0,1,1.4338974952697754,285,1.0,2 +30785,0,1.0,1,1.5788955688476562,286,1.0,2 +30786,0,1.0,1,1.7068939208984375,287,1.0,2 +30787,0,1.0,1,2.17789363861084,288,1.0,2 +30788,0,1.0,1,1.571895718574524,289,0.0,2 +30789,0,0.0,1,1.9738905429840088,290,0.0,2 +30790,0,0.0,1,2.0978899002075195,291,0.0,2 +30791,0,1.0,1,1.4638971090316772,292,0.0,2 +30792,0,0.0,1,2.0288898944854736,293,0.0,2 +30793,0,0.0,1,1.733893632888794,294,1.0,2 +30794,0,0.0,1,1.173898458480835,295,1.0,2 +30795,0,0.0,1,1.2778986692428589,296,1.0,2 +30796,0,0.0,1,1.3298988342285156,297,0.0,2 +30797,0,1.0,1,1.4578971862792969,298,1.0,2 +30798,0,1.0,1,1.6708943843841553,299,1.0,2 +30799,0,1.0,1,1.5148963928222656,300,1.0,2 +30800,0,1.0,1,1.6008954048156738,301,0.0,2 +30801,0,0.0,1,1.405897855758667,302,0.0,2 +30802,0,0.0,1,1.3718982934951782,303,0.0,2 +30803,0,1.0,1,1.7598932981491089,304,1.0,2 +30804,0,1.0,1,1.8598920106887817,305,1.0,2 +30805,0,1.0,1,1.2568986415863037,306,1.0,2 +30806,0,0.0,1,1.8598920106887817,307,0.0,2 +30807,0,1.0,1,1.5828955173492432,308,1.0,2 +30808,0,1.0,1,1.5438960790634155,309,1.0,2 +30809,0,1.0,1,1.9068913459777832,310,1.0,2 +30810,0,1.0,1,1.637894868850708,311,1.0,2 +30811,0,1.0,1,1.5488959550857544,312,1.0,2 +30812,0,0.0,1,1.7598932981491089,313,0.0,2 +30813,0,1.0,1,1.913891315460205,314,1.0,2 +30814,0,1.0,1,1.4308974742889404,315,1.0,2 +30815,0,1.0,1,1.3738982677459717,316,0.0,2 +30816,0,1.0,1,2.01488995552063,317,1.0,2 +30817,0,1.0,1,1.564895749092102,318,0.0,2 +30818,0,1.0,1,1.5158964395523071,319,1.0,2 +30819,0,1.0,1,1.56389582157135,320,1.0,2 +30820,0,1.0,1,1.958890676498413,321,1.0,2 +30821,0,1.0,1,1.7238937616348267,322,1.0,2 +30822,0,1.0,1,1.5328961610794067,323,1.0,2 +30823,0,1.0,1,1.5848956108093262,324,0.0,2 +30824,0,1.0,1,1.4828968048095703,325,0.0,2 +30825,0,1.0,1,1.4598971605300903,326,1.0,2 +30826,0,1.0,1,1.2388986349105835,327,1.0,2 +30827,0,1.0,1,1.987890362739563,328,1.0,2 +30828,0,1.0,1,1.77789306640625,329,1.0,2 +30829,0,1.0,1,1.428897500038147,330,1.0,2 +30830,0,1.0,1,1.751893401145935,331,1.0,2 +30831,0,1.0,1,1.5608958005905151,332,1.0,2 +30832,0,1.0,1,1.4478973150253296,333,1.0,2 +30833,0,0.0,1,1.869891881942749,334,1.0,2 +30834,0,0.0,1,1.5368961095809937,335,0.0,2 +30835,0,0.0,1,1.3748981952667236,336,0.0,2 +30836,0,1.0,1,1.9898903369903564,337,1.0,2 +30837,0,1.0,1,1.5628957748413086,338,1.0,2 +30838,0,1.0,1,1.402897834777832,339,1.0,2 +30839,0,1.0,1,1.9078913927078247,340,1.0,2 +30840,0,1.0,1,1.5328961610794067,341,0.0,2 +30841,0,0.0,1,1.914891242980957,342,0.0,2 +30842,0,1.0,1,1.5548958778381348,343,1.0,2 +30843,0,1.0,1,1.9198912382125854,344,0.0,2 +30844,0,0.0,1,1.5548958778381348,345,0.0,2 +30845,0,1.0,1,1.3278987407684326,346,1.0,2 +30846,0,1.0,1,2.1538925170898438,347,0.0,2 +30847,0,1.0,1,1.4808968305587769,348,0.0,2 +30848,0,1.0,1,2.181893825531006,349,1.0,2 +30849,0,1.0,1,1.5538959503173828,350,1.0,2 +30850,0,1.0,1,1.3788981437683105,351,1.0,2 +30851,0,1.0,1,1.8558920621871948,352,1.0,2 +30852,0,1.0,1,1.5478960275650024,353,1.0,2 +30853,0,1.0,1,1.2168985605239868,354,1.0,2 +30854,0,1.0,1,1.5828955173492432,355,0.0,2 +30855,0,1.0,1,2.3159003257751465,356,1.0,2 +30856,0,1.0,1,1.383898138999939,357,1.0,2 +30857,0,1.0,1,1.376898169517517,358,1.0,2 +30858,0,1.0,1,1.243898630142212,359,1.0,2 +30859,0,1.0,1,1.803892731666565,360,1.0,2 +30860,0,1.0,1,1.5348961353302002,361,0.0,2 +30861,0,1.0,1,1.471897006034851,362,1.0,2 +30862,0,1.0,1,1.5038965940475464,363,1.0,2 +30863,0,1.0,1,1.6428947448730469,364,1.0,2 +30864,0,1.0,1,1.6168951988220215,365,0.0,2 +30865,0,0.0,1,1.8538920879364014,366,0.0,2 +30866,0,1.0,1,1.2888987064361572,367,1.0,2 +30867,0,1.0,1,1.7048940658569336,368,1.0,2 +30868,0,1.0,1,2.193894386291504,369,1.0,2 +30869,0,1.0,1,1.3378987312316895,370,1.0,2 +30870,0,0.0,1,1.7058939933776855,371,0.0,2 +30871,0,1.0,1,1.3598984479904175,372,0.0,2 +30872,0,0.0,1,1.659894585609436,373,0.0,2 +30873,0,1.0,1,1.4658970832824707,374,1.0,2 +30874,0,1.0,1,1.3998979330062866,375,1.0,2 +30875,0,1.0,1,1.6718944311141968,376,0.0,2 +30876,0,0.0,1,1.197898507118225,377,0.0,2 +30877,0,0.0,1,1.2728986740112305,378,1.0,2 +30878,0,0.0,1,1.172898530960083,379,0.0,2 +30879,0,1.0,1,1.5478960275650024,380,0.0,2 +30880,0,0.0,1,1.2478985786437988,381,1.0,2 +30881,0,0.0,1,1.3158987760543823,382,1.0,2 +30882,0,0.0,1,1.233898639678955,383,1.0,2 +30883,0,0.0,1,1.2568986415863037,384,0.0,2 +30884,0,0.0,1,1.376898169517517,385,1.0,2 +30885,0,0.0,1,1.264898657798767,386,1.0,2 +30886,0,0.0,1,1.3448985815048218,387,0.0,2 +30887,0,0.0,1,1.2728986740112305,388,1.0,2 +30888,0,0.0,1,1.7698931694030762,389,0.0,2 +30889,0,1.0,1,1.298898696899414,390,0.0,2 +30890,0,0.0,1,1.3338987827301025,391,0.0,2 +30891,0,0.0,1,1.339898705482483,392,1.0,2 +30892,0,0.0,1,1.357898473739624,393,1.0,2 +30893,0,0.0,1,1.6528947353363037,394,0.0,2 +30894,0,0.0,1,1.3708982467651367,395,0.0,2 +30895,0,0.0,1,1.2618986368179321,396,1.0,2 +30896,0,0.0,1,1.3918980360031128,397,0.0,2 +30897,0,0.0,1,1.4208976030349731,398,0.0,2 +30898,0,0.0,1,1.4658970832824707,399,0.0,2 +30899,0,0.0,1,2.01488995552063,400,0.0,2 +30900,0,0.0,1,1.3258987665176392,401,0.0,2 +30901,0,0.0,1,1.3518985509872437,402,1.0,2 +30902,0,0.0,1,1.405897855758667,403,0.0,2 +30903,0,1.0,1,2.0288898944854736,404,0.0,2 +30904,0,0.0,1,1.8938915729522705,405,1.0,2 +30905,0,0.0,1,1.4778969287872314,406,1.0,2 +30906,0,0.0,1,1.4688969850540161,407,0.0,2 +30907,0,1.0,1,1.6648945808410645,408,0.0,2 +30908,0,0.0,1,1.6168951988220215,409,0.0,2 +30909,0,1.0,1,1.353898525238037,410,0.0,2 +30910,0,0.0,1,1.6438947916030884,411,0.0,2 +30911,0,0.0,1,1.7018940448760986,412,1.0,2 +30912,0,0.0,1,1.3098987340927124,413,0.0,2 +30913,0,0.0,1,1.6258950233459473,414,0.0,2 +30914,0,0.0,1,1.5878955125808716,415,0.0,2 +30915,0,1.0,1,1.7008941173553467,416,1.0,2 +30916,0,1.0,1,1.3258987665176392,417,0.0,2 +30917,0,0.0,1,1.3288987874984741,418,0.0,2 +30918,0,1.0,1,1.4878968000411987,419,1.0,2 +30919,0,0.0,1,1.4708969593048096,420,0.0,2 +30920,0,1.0,1,1.9058914184570312,421,1.0,2 +30921,0,1.0,1,1.7968928813934326,422,1.0,2 +30922,0,1.0,1,1.7588932514190674,423,0.0,2 +30923,0,1.0,1,1.6978940963745117,424,1.0,2 +30924,0,1.0,1,1.304898738861084,425,1.0,2 +30925,0,1.0,1,1.7598932981491089,426,0.0,2 +30926,0,1.0,1,1.781893014907837,427,1.0,2 +30927,0,1.0,1,1.5368961095809937,428,1.0,2 +30928,0,1.0,1,1.2528986930847168,429,0.0,2 +30929,0,1.0,1,1.4078978300094604,430,1.0,2 +30930,0,1.0,1,1.335898756980896,431,1.0,2 +30931,0,1.0,1,1.3928979635238647,432,1.0,2 +30932,0,1.0,1,1.684894323348999,433,0.0,2 +30933,0,0.0,1,1.4998966455459595,434,0.0,2 +30934,0,1.0,1,1.7538933753967285,435,0.0,2 +30935,0,0.0,1,1.4178977012634277,436,0.0,2 +30936,0,0.0,1,2.050889492034912,437,0.0,2 +30937,0,1.0,1,1.5828955173492432,438,0.0,2 +30938,0,1.0,1,2.1468923091888428,439,0.0,2 +30939,0,1.0,1,1.568895697593689,440,1.0,2 +30940,0,1.0,1,1.237898588180542,441,1.0,2 +30941,0,1.0,1,1.4998966455459595,442,0.0,2 +30942,0,1.0,1,1.5098965167999268,443,1.0,2 +30943,0,1.0,1,2.059889316558838,444,1.0,2 +30944,0,1.0,1,1.6648945808410645,445,0.0,2 +30945,0,0.0,1,1.5108964443206787,446,1.0,2 +30946,0,1.0,1,1.847892165184021,447,0.0,2 +30947,0,0.0,1,1.2558987140655518,448,0.0,2 +30948,0,1.0,1,1.7938928604125977,449,0.0,2 +30949,0,0.0,1,1.471897006034851,450,0.0,2 +30950,0,1.0,1,1.4378974437713623,451,1.0,2 +30951,0,1.0,1,1.379898190498352,452,1.0,2 +30952,0,1.0,1,1.4848967790603638,453,1.0,2 +30953,0,1.0,1,1.7158938646316528,454,1.0,2 +30954,0,1.0,1,1.3558984994888306,455,0.0,2 +30955,0,1.0,1,1.47689688205719,456,1.0,2 +30956,0,1.0,1,1.5478960275650024,457,1.0,2 +30957,0,1.0,1,1.5068964958190918,458,1.0,2 +30958,0,1.0,1,1.519896388053894,459,1.0,2 +30959,0,0.0,1,1.3138988018035889,460,0.0,2 +30960,0,1.0,1,1.2828986644744873,461,1.0,2 +30961,0,1.0,1,2.472907543182373,462,0.0,2 +30962,0,0.0,1,1.8308923244476318,463,1.0,2 +30963,0,1.0,1,1.851892113685608,464,0.0,2 +30964,0,0.0,1,1.7648932933807373,465,0.0,2 +30965,0,0.0,1,1.3068987131118774,466,0.0,2 +30966,0,0.0,1,1.7508933544158936,467,0.0,2 +30967,0,0.0,1,2.175893783569336,468,1.0,2 +30968,0,0.0,1,2.3319010734558105,469,0.0,2 +30969,0,0.0,1,1.2598986625671387,470,1.0,2 +30970,0,0.0,1,1.7598932981491089,471,1.0,2 +30971,0,1.0,1,1.8048927783966064,472,1.0,2 +30972,0,0.0,1,1.3788981437683105,473,0.0,2 +30973,0,1.0,1,1.5288962125778198,474,1.0,2 +30974,0,1.0,1,1.4698970317840576,475,1.0,2 +30975,0,1.0,1,1.8538920879364014,476,0.0,2 +30976,0,0.0,1,1.2538986206054688,477,0.0,2 +30977,0,0.0,1,1.5048965215682983,478,1.0,2 +30978,0,0.0,1,1.2488986253738403,479,0.0,2 +30979,0,0.0,1,1.8828916549682617,480,0.0,2 +30980,0,1.0,1,1.7218937873840332,481,0.0,2 +30981,0,1.0,1,1.6018953323364258,482,0.0,2 +30982,0,0.0,1,1.5058965682983398,483,1.0,2 +30983,0,0.0,1,1.3408986330032349,484,0.0,2 +30984,0,0.0,1,1.2938987016677856,485,1.0,2 +30985,0,0.0,1,1.3438986539840698,486,0.0,2 +30986,0,0.0,1,1.2968987226486206,487,0.0,2 +30987,0,0.0,1,1.4528971910476685,488,0.0,2 +30988,0,0.0,1,1.9458909034729004,489,0.0,2 +30989,0,1.0,1,1.6658945083618164,490,1.0,2 +30990,0,1.0,1,1.5558959245681763,491,1.0,2 +30991,0,0.0,1,1.6988940238952637,492,1.0,2 +30992,0,1.0,1,1.5878955125808716,493,1.0,2 +30993,0,0.0,1,1.824892520904541,494,0.0,2 +30994,0,1.0,1,1.423897624015808,495,1.0,2 +30995,0,1.0,1,1.4108977317810059,496,1.0,2 +30996,0,0.0,1,1.1478984355926514,497,0.0,2 +30997,0,1.0,1,1.7408936023712158,498,0.0,2 +30998,0,1.0,1,1.2658987045288086,499,1.0,2 +30999,0,1.0,1,1.6618945598602295,500,0.0,2 +31000,0,0.0,2,1.6628944873809814,1,1.0,2 +31001,0,0.0,2,2.057889461517334,2,0.0,2 +31002,0,0.0,2,1.5358961820602417,3,0.0,2 +31003,0,1.0,2,1.5708956718444824,4,1.0,2 +31004,0,0.0,2,1.619895100593567,5,1.0,2 +31005,0,0.0,2,1.3658983707427979,6,0.0,2 +31006,0,1.0,2,1.240898609161377,7,0.0,2 +31007,0,0.0,2,1.641894817352295,8,1.0,2 +31008,0,0.0,2,1.2918987274169922,9,0.0,2 +31009,0,0.0,2,1.3998979330062866,10,1.0,2 +31010,0,0.0,2,1.3208987712860107,11,0.0,2 +31011,0,1.0,2,1.454897165298462,12,1.0,2 +31012,0,1.0,2,1.2808986902236938,13,1.0,2 +31013,0,1.0,2,2.0808892250061035,14,1.0,2 +31014,0,1.0,2,1.5488959550857544,15,1.0,2 +31015,0,1.0,2,1.6058952808380127,16,0.0,2 +31016,0,1.0,2,1.2448986768722534,17,0.0,2 +31017,0,1.0,2,1.3378987312316895,18,1.0,2 +31018,0,1.0,2,1.523896336555481,19,0.0,2 +31019,0,1.0,2,1.7868928909301758,20,1.0,2 +31020,0,1.0,2,1.4168976545333862,21,0.0,2 +31021,0,0.0,2,1.203898549079895,22,0.0,2 +31022,0,1.0,2,1.4528971910476685,23,1.0,2 +31023,0,1.0,2,1.5668957233428955,24,1.0,2 +31024,0,1.0,2,1.4458973407745361,25,1.0,2 +31025,0,1.0,2,1.7898929119110107,26,1.0,2 +31026,0,1.0,2,1.335898756980896,27,0.0,2 +31027,0,1.0,2,1.8388922214508057,28,1.0,2 +31028,0,1.0,2,1.3688982725143433,29,0.0,2 +31029,0,0.0,2,1.5608958005905151,30,0.0,2 +31030,0,1.0,2,2.160892963409424,31,1.0,2 +31031,0,1.0,2,1.6708943843841553,32,0.0,2 +31032,0,1.0,2,1.6008954048156738,33,1.0,2 +31033,0,1.0,2,1.479896903038025,34,1.0,2 +31034,0,1.0,2,1.6358948945999146,35,1.0,2 +31035,0,1.0,2,1.3988978862762451,36,0.0,2 +31036,0,1.0,2,2.215895652770996,37,0.0,2 +31037,0,0.0,2,1.7108938694000244,38,0.0,2 +31038,0,0.0,2,1.4428973197937012,39,1.0,2 +31039,0,0.0,2,1.2538986206054688,40,0.0,2 +31040,0,1.0,2,1.4458973407745361,41,0.0,2 +31041,0,1.0,2,2.012890100479126,42,0.0,2 +31042,0,0.0,2,1.6738944053649902,43,1.0,2 +31043,0,0.0,2,1.2048985958099365,44,1.0,2 +31044,0,0.0,2,1.2568986415863037,45,0.0,2 +31045,0,0.0,2,1.8458921909332275,46,1.0,2 +31046,0,0.0,2,1.8888916969299316,47,1.0,2 +31047,0,0.0,2,1.870891809463501,48,1.0,2 +31048,0,0.0,2,1.3248988389968872,49,0.0,2 +31049,0,0.0,2,1.6328949928283691,50,0.0,2 +31050,0,1.0,2,1.4478973150253296,51,0.0,2 +31051,0,1.0,2,1.9238911867141724,52,0.0,2 +31052,0,1.0,2,1.4338974952697754,53,1.0,2 +31053,0,1.0,2,1.5028965473175049,54,0.0,2 +31054,0,0.0,2,1.6948940753936768,55,0.0,2 +31055,0,1.0,2,1.3158987760543823,56,1.0,2 +31056,0,1.0,2,1.3478986024856567,57,0.0,2 +31057,0,0.0,2,1.3278987407684326,58,0.0,2 +31058,0,1.0,2,1.5308961868286133,59,1.0,2 +31059,0,1.0,2,1.7688932418823242,60,1.0,2 +31060,0,0.0,2,1.295898675918579,61,0.0,2 +31061,0,1.0,2,1.5398961305618286,62,1.0,2 +31062,0,1.0,2,1.4918967485427856,63,0.0,2 +31063,0,0.0,2,1.479896903038025,64,1.0,2 +31064,0,0.0,2,1.6608946323394775,65,1.0,2 +31065,0,0.0,2,1.2478985786437988,66,0.0,2 +31066,0,0.0,2,1.733893632888794,67,1.0,2 +31067,0,0.0,2,1.295898675918579,68,0.0,2 +31068,0,0.0,2,2.1068904399871826,69,0.0,2 +31069,0,0.0,2,1.8068926334381104,70,0.0,2 +31070,0,1.0,2,1.4648970365524292,71,1.0,2 +31071,0,1.0,2,1.640894889831543,72,0.0,2 +31072,0,0.0,2,1.6028952598571777,73,0.0,2 +31073,0,1.0,2,1.3348987102508545,74,1.0,2 +31074,0,1.0,2,1.493896722793579,75,1.0,2 +31075,0,1.0,2,1.6588945388793945,76,1.0,2 +31076,0,1.0,2,1.4608970880508423,77,0.0,2 +31077,0,0.0,2,2.018889904022217,78,1.0,2 +31078,0,0.0,2,1.3718982934951782,79,1.0,2 +31079,0,0.0,2,1.7958928346633911,80,0.0,2 +31080,0,0.0,2,1.4898967742919922,81,0.0,2 +31081,0,1.0,2,2.148892402648926,82,1.0,2 +31082,0,1.0,2,2.0218899250030518,83,1.0,2 +31083,0,1.0,2,1.5298962593078613,84,1.0,2 +31084,0,1.0,2,1.446897268295288,85,0.0,2 +31085,0,1.0,2,1.8568921089172363,86,1.0,2 +31086,0,1.0,2,1.568895697593689,87,1.0,2 +31087,0,0.0,2,1.2558987140655518,88,1.0,2 +31088,0,0.0,2,1.4108977317810059,89,1.0,2 +31089,0,1.0,2,1.5708956718444824,90,1.0,2 +31090,0,1.0,2,1.8378922939300537,91,1.0,2 +31091,0,0.0,2,1.1538984775543213,92,0.0,2 +31092,0,1.0,2,1.6228950023651123,93,0.0,2 +31093,0,1.0,2,1.3958979845046997,94,1.0,2 +31094,0,1.0,2,2.3199005126953125,95,0.0,2 +31095,0,1.0,2,1.6498947143554688,96,1.0,2 +31096,0,0.0,2,1.5128964185714722,97,0.0,2 +31097,0,1.0,2,1.9118913412094116,98,0.0,2 +31098,0,1.0,2,1.6838942766189575,99,1.0,2 +31099,0,1.0,2,1.5738956928253174,100,1.0,2 +31100,0,1.0,2,1.267898678779602,101,0.0,2 +31101,0,1.0,2,1.571895718574524,102,0.0,2 +31102,0,0.0,2,1.8618919849395752,103,0.0,2 +31103,0,1.0,2,1.9858903884887695,104,0.0,2 +31104,0,0.0,2,1.2018985748291016,105,0.0,2 +31105,0,0.0,2,1.4568971395492554,106,0.0,2 +31106,0,1.0,2,1.3248988389968872,107,0.0,2 +31107,0,1.0,2,1.3998979330062866,108,0.0,2 +31108,0,1.0,2,1.5598958730697632,109,0.0,2 +31109,0,0.0,2,1.8368923664093018,110,0.0,2 +31110,0,0.0,2,1.3428986072540283,111,0.0,2 +31111,0,1.0,2,2.221895694732666,112,1.0,2 +31112,0,1.0,2,1.304898738861084,113,1.0,2 +31113,0,0.0,2,1.380898118019104,114,1.0,2 +31114,0,1.0,2,1.3898980617523193,115,1.0,2 +31115,0,1.0,2,1.8348922729492188,116,1.0,2 +31116,0,0.0,2,1.405897855758667,117,0.0,2 +31117,0,1.0,2,1.2488986253738403,118,1.0,2 +31118,0,1.0,2,1.3348987102508545,119,1.0,2 +31119,0,0.0,2,1.2148985862731934,120,1.0,2 +31120,0,0.0,2,1.4048978090286255,121,0.0,2 +31121,0,1.0,2,1.6148951053619385,122,0.0,2 +31122,0,1.0,2,2.2808985710144043,123,1.0,2 +31123,0,1.0,2,1.8758918046951294,124,0.0,2 +31124,0,1.0,2,1.6708943843841553,125,0.0,2 +31125,0,0.0,2,1.6668944358825684,126,0.0,2 +31126,0,1.0,2,1.3298988342285156,127,0.0,2 +31127,0,0.0,2,2.1078906059265137,128,1.0,2 +31128,0,0.0,2,1.233898639678955,129,0.0,2 +31129,0,0.0,2,1.4188976287841797,130,1.0,2 +31130,0,0.0,2,1.3298988342285156,131,1.0,2 +31131,0,0.0,2,1.1708984375,132,1.0,2 +31132,0,0.0,2,1.5568958520889282,133,0.0,2 +31133,0,1.0,2,1.8798917531967163,134,0.0,2 +31134,0,0.0,2,1.3878980875015259,135,1.0,2 +31135,0,0.0,2,1.5408960580825806,136,0.0,2 +31136,0,0.0,2,1.3088988065719604,137,0.0,2 +31137,0,0.0,2,1.493896722793579,138,0.0,2 +31138,0,1.0,2,1.874891757965088,139,0.0,2 +31139,0,0.0,2,1.9818904399871826,140,0.0,2 +31140,0,1.0,2,1.9478908777236938,141,1.0,2 +31141,0,1.0,2,1.5228962898254395,142,0.0,2 +31142,0,0.0,2,1.5438960790634155,143,0.0,2 +31143,0,0.0,2,1.6508946418762207,144,1.0,2 +31144,0,0.0,2,1.3978979587554932,145,1.0,2 +31145,0,0.0,2,1.4178977012634277,146,1.0,2 +31146,0,0.0,2,1.2298985719680786,147,1.0,2 +31147,0,0.0,2,1.7478934526443481,148,1.0,2 +31148,0,0.0,2,1.5308961868286133,149,1.0,2 +31149,0,0.0,2,1.4678970575332642,150,1.0,2 +31150,0,0.0,2,1.7098939418792725,151,0.0,2 +31151,0,1.0,2,2.249897003173828,152,1.0,2 +31152,0,1.0,2,1.6398948431015015,153,1.0,2 +31153,0,1.0,2,2.466907262802124,154,1.0,2 +31154,0,1.0,2,1.7858929634094238,155,0.0,2 +31155,0,0.0,2,1.733893632888794,156,1.0,2 +31156,0,0.0,2,1.8538920879364014,157,0.0,2 +31157,0,1.0,2,1.4198976755142212,158,1.0,2 +31158,0,1.0,2,1.45389723777771,159,0.0,2 +31159,0,1.0,2,1.4928966760635376,160,0.0,2 +31160,0,0.0,2,1.6068952083587646,161,0.0,2 +31161,0,0.0,2,1.5148963928222656,162,0.0,2 +31162,0,1.0,2,1.5158964395523071,163,0.0,2 +31163,0,1.0,2,1.7548933029174805,164,0.0,2 +31164,0,1.0,2,1.354898452758789,165,0.0,2 +31165,0,1.0,2,1.7108938694000244,166,1.0,2 +31166,0,1.0,2,1.4148976802825928,167,1.0,2 +31167,0,0.0,2,1.9908902645111084,168,1.0,2 +31168,0,0.0,2,1.7938928604125977,169,0.0,2 +31169,0,1.0,2,1.4128977060317993,170,0.0,2 +31170,0,0.0,2,1.6438947916030884,171,1.0,2 +31171,0,0.0,2,1.8008928298950195,172,1.0,2 +31172,0,0.0,2,2.0338897705078125,173,1.0,2 +31173,0,0.0,2,1.5228962898254395,174,1.0,2 +31174,0,0.0,2,1.876891851425171,175,0.0,2 +31175,0,0.0,2,1.681894302368164,176,0.0,2 +31176,0,1.0,2,1.8378922939300537,177,0.0,2 +31177,0,1.0,2,1.6048953533172607,178,0.0,2 +31178,0,0.0,2,1.5618958473205566,179,0.0,2 +31179,0,0.0,2,1.5128964185714722,180,0.0,2 +31180,0,1.0,2,1.868891954421997,181,0.0,2 +31181,0,1.0,2,1.8168926239013672,182,1.0,2 +31182,0,0.0,2,1.9758905172348022,183,1.0,2 +31183,0,1.0,2,1.9958902597427368,184,0.0,2 +31184,0,0.0,2,1.5158964395523071,185,1.0,2 +31185,0,0.0,2,1.8868916034698486,186,1.0,2 +31186,0,0.0,2,1.1828985214233398,187,0.0,2 +31187,0,1.0,2,1.6288950443267822,188,1.0,2 +31188,0,0.0,2,1.5698957443237305,189,1.0,2 +31189,0,0.0,2,1.2528986930847168,190,1.0,2 +31190,0,0.0,2,1.5398961305618286,191,1.0,2 +31191,0,0.0,2,2.3108999729156494,192,1.0,2 +31192,0,0.0,2,1.1908985376358032,193,1.0,2 +31193,0,0.0,2,1.3068987131118774,194,0.0,2 +31194,0,1.0,2,1.3468985557556152,195,0.0,2 +31195,0,1.0,2,1.8408923149108887,196,0.0,2 +31196,0,0.0,2,1.2498986721038818,197,0.0,2 +31197,0,1.0,2,2.0918898582458496,198,1.0,2 +31198,0,1.0,2,1.6948940753936768,199,1.0,2 +31199,0,1.0,2,1.2788987159729004,200,1.0,2 +31200,0,1.0,2,1.5118964910507202,201,1.0,2 +31201,0,1.0,2,1.6508946418762207,202,0.0,2 +31202,0,1.0,2,2.060889482498169,203,0.0,2 +31203,0,1.0,2,1.751893401145935,204,1.0,2 +31204,0,1.0,2,1.7598932981491089,205,1.0,2 +31205,0,0.0,2,1.4038978815078735,206,0.0,2 +31206,0,1.0,2,1.7988927364349365,207,1.0,2 +31207,0,1.0,2,1.818892478942871,208,1.0,2 +31208,0,1.0,2,1.5518959760665894,209,1.0,2 +31209,0,0.0,2,1.549896001815796,210,1.0,2 +31210,0,0.0,2,1.2878987789154053,211,1.0,2 +31211,0,1.0,2,1.9228911399841309,212,1.0,2 +31212,0,0.0,2,1.339898705482483,213,0.0,2 +31213,0,1.0,2,1.3978979587554932,214,1.0,2 +31214,0,1.0,2,2.008890151977539,215,1.0,2 +31215,0,1.0,2,1.4108977317810059,216,1.0,2 +31216,0,1.0,2,1.734893560409546,217,0.0,2 +31217,0,0.0,2,1.6698944568634033,218,0.0,2 +31218,0,0.0,2,1.4598971605300903,219,1.0,2 +31219,0,0.0,2,1.6288950443267822,220,1.0,2 +31220,0,1.0,2,1.3678983449935913,221,1.0,2 +31221,0,0.0,2,1.2968987226486206,222,0.0,2 +31222,0,1.0,2,1.822892427444458,223,1.0,2 +31223,0,1.0,2,1.6258950233459473,224,1.0,2 +31224,0,1.0,2,1.3148987293243408,225,0.0,2 +31225,0,0.0,2,1.6468946933746338,226,0.0,2 +31226,0,1.0,2,2.2958993911743164,227,1.0,2 +31227,0,1.0,2,1.4658970832824707,228,1.0,2 +31228,0,1.0,2,1.3878980875015259,229,0.0,2 +31229,0,1.0,2,1.6748943328857422,230,0.0,2 +31230,0,0.0,2,1.8968915939331055,231,1.0,2 +31231,0,0.0,2,1.6248950958251953,232,1.0,2 +31232,0,0.0,2,1.2558987140655518,233,0.0,2 +31233,0,0.0,2,1.431897521018982,234,1.0,2 +31234,0,0.0,2,1.20689857006073,235,0.0,2 +31235,0,0.0,2,1.1888985633850098,236,0.0,2 +31236,0,1.0,2,1.5628957748413086,237,0.0,2 +31237,0,1.0,2,1.3568984270095825,238,0.0,2 +31238,0,0.0,2,1.5568958520889282,239,1.0,2 +31239,0,0.0,2,1.5318962335586548,240,0.0,2 +31240,0,1.0,2,1.5328961610794067,241,1.0,2 +31241,0,1.0,2,1.3778982162475586,242,1.0,2 +31242,0,1.0,2,1.9778904914855957,243,1.0,2 +31243,0,1.0,2,1.6188950538635254,244,1.0,2 +31244,0,1.0,2,1.4898967742919922,245,1.0,2 +31245,0,1.0,2,1.9938902854919434,246,1.0,2 +31246,0,1.0,2,1.2388986349105835,247,1.0,2 +31247,0,1.0,2,1.689894199371338,248,1.0,2 +31248,0,1.0,2,1.4808968305587769,249,1.0,2 +31249,0,1.0,2,1.3238987922668457,250,0.0,2 +31250,0,0.0,2,1.876891851425171,251,1.0,2 +31251,0,1.0,2,1.8618919849395752,252,1.0,2 +31252,0,1.0,2,1.7488934993743896,253,0.0,2 +31253,0,0.0,2,1.4888967275619507,254,1.0,2 +31254,0,0.0,2,1.6248950958251953,255,1.0,2 +31255,0,0.0,2,1.2468986511230469,256,0.0,2 +31256,0,1.0,2,1.3198988437652588,257,1.0,2 +31257,0,1.0,2,1.2058985233306885,258,0.0,2 +31258,0,0.0,2,1.8608920574188232,259,0.0,2 +31259,0,0.0,2,1.2558987140655518,260,0.0,2 +31260,0,1.0,2,2.172893524169922,261,0.0,2 +31261,0,0.0,2,1.4168976545333862,262,1.0,2 +31262,0,0.0,2,1.4358974695205688,263,0.0,2 +31263,0,0.0,2,1.7278937101364136,264,0.0,2 +31264,0,0.0,2,1.6398948431015015,265,0.0,2 +31265,0,1.0,2,1.8938915729522705,266,1.0,2 +31266,0,1.0,2,1.3568984270095825,267,0.0,2 +31267,0,0.0,2,1.9328911304473877,268,0.0,2 +31268,0,1.0,2,1.3158987760543823,269,1.0,2 +31269,0,1.0,2,1.5748956203460693,270,1.0,2 +31270,0,1.0,2,1.5158964395523071,271,1.0,2 +31271,0,1.0,2,1.4108977317810059,272,1.0,2 +31272,0,1.0,2,1.3648983240127563,273,1.0,2 +31273,0,0.0,2,1.5408960580825806,274,1.0,2 +31274,0,1.0,2,1.5578958988189697,275,0.0,2 +31275,0,0.0,2,1.3168988227844238,276,0.0,2 +31276,0,1.0,2,1.498896598815918,277,0.0,2 +31277,0,0.0,2,1.3278987407684326,278,1.0,2 +31278,0,0.0,2,1.4598971605300903,279,0.0,2 +31279,0,0.0,2,1.231898546218872,280,1.0,2 +31280,0,0.0,2,1.2208986282348633,281,0.0,2 +31281,0,1.0,2,2.1308915615081787,282,1.0,2 +31282,0,1.0,2,2.0268898010253906,283,1.0,2 +31283,0,1.0,2,1.5318962335586548,284,0.0,2 +31284,0,1.0,2,1.9108912944793701,285,0.0,2 +31285,0,0.0,2,1.9848904609680176,286,1.0,2 +31286,0,0.0,2,1.6438947916030884,287,0.0,2 +31287,0,0.0,2,1.4438973665237427,288,0.0,2 +31288,0,0.0,2,1.5068964958190918,289,0.0,2 +31289,0,0.0,2,1.3068987131118774,290,1.0,2 +31290,0,0.0,2,1.5848956108093262,291,1.0,2 +31291,0,1.0,2,1.3598984479904175,292,0.0,2 +31292,0,0.0,2,1.7868928909301758,293,0.0,2 +31293,0,0.0,2,2.3509018421173096,294,0.0,2 +31294,0,0.0,2,1.9158912897109985,295,0.0,2 +31295,0,0.0,2,1.4208976030349731,296,1.0,2 +31296,0,0.0,2,1.523896336555481,297,1.0,2 +31297,0,0.0,2,1.2188985347747803,298,1.0,2 +31298,0,0.0,2,1.362898349761963,299,1.0,2 +31299,0,0.0,2,1.2998987436294556,300,1.0,2 +31300,0,0.0,2,1.6108951568603516,301,0.0,2 +31301,0,1.0,2,1.6528947353363037,302,0.0,2 +31302,0,0.0,2,1.7198938131332397,303,1.0,2 +31303,0,0.0,2,1.1618984937667847,304,0.0,2 +31304,0,0.0,2,1.729893684387207,305,1.0,2 +31305,0,0.0,2,1.2828986644744873,306,1.0,2 +31306,0,1.0,2,1.243898630142212,307,0.0,2 +31307,0,0.0,2,1.2758986949920654,308,0.0,2 +31308,0,0.0,2,1.4268975257873535,309,0.0,2 +31309,0,1.0,2,2.010890007019043,310,1.0,2 +31310,0,1.0,2,1.5048965215682983,311,1.0,2 +31311,0,1.0,2,1.524896264076233,312,0.0,2 +31312,0,0.0,2,1.6658945083618164,313,1.0,2 +31313,0,0.0,2,1.568895697593689,314,0.0,2 +31314,0,1.0,2,1.9458909034729004,315,1.0,2 +31315,0,1.0,2,1.8808917999267578,316,0.0,2 +31316,0,1.0,2,1.2238986492156982,317,0.0,2 +31317,0,0.0,2,1.3208987712860107,318,1.0,2 +31318,0,0.0,2,1.2468986511230469,319,0.0,2 +31319,0,1.0,2,2.163893222808838,320,1.0,2 +31320,0,1.0,2,1.736893653869629,321,1.0,2 +31321,0,1.0,2,1.2898987531661987,322,1.0,2 +31322,0,1.0,2,1.3718982934951782,323,1.0,2 +31323,0,1.0,2,1.571895718574524,324,0.0,2 +31324,0,0.0,2,1.240898609161377,325,0.0,2 +31325,0,1.0,2,1.7148938179016113,326,0.0,2 +31326,0,1.0,2,1.6468946933746338,327,1.0,2 +31327,0,1.0,2,1.4378974437713623,328,1.0,2 +31328,0,1.0,2,1.5368961095809937,329,1.0,2 +31329,0,1.0,2,1.7548933029174805,330,0.0,2 +31330,0,1.0,2,2.1538925170898438,331,1.0,2 +31331,0,1.0,2,1.336898684501648,332,0.0,2 +31332,0,0.0,2,1.2298985719680786,333,1.0,2 +31333,0,0.0,2,1.8878916501998901,334,1.0,2 +31334,0,0.0,2,1.4648970365524292,335,0.0,2 +31335,0,0.0,2,1.234898567199707,336,1.0,2 +31336,0,0.0,2,1.6088953018188477,337,1.0,2 +31337,0,0.0,2,1.2118985652923584,338,1.0,2 +31338,0,0.0,2,1.2948987483978271,339,1.0,2 +31339,0,0.0,2,1.3948979377746582,340,0.0,2 +31340,0,1.0,2,1.2598986625671387,341,1.0,2 +31341,0,1.0,2,1.332898736000061,342,1.0,2 +31342,0,1.0,2,1.3778982162475586,343,0.0,2 +31343,0,1.0,2,1.6618945598602295,344,0.0,2 +31344,0,1.0,2,1.7698931694030762,345,1.0,2 +31345,0,1.0,2,1.6508946418762207,346,0.0,2 +31346,0,1.0,2,1.7428934574127197,347,0.0,2 +31347,0,0.0,2,1.5758956670761108,348,0.0,2 +31348,0,1.0,2,1.7468934059143066,349,1.0,2 +31349,0,1.0,2,1.3698983192443848,350,0.0,2 +31350,0,0.0,2,1.5918954610824585,351,1.0,2 +31351,0,0.0,2,1.1588984727859497,352,1.0,2 +31352,0,0.0,2,2.051889419555664,353,0.0,2 +31353,0,1.0,2,2.1378917694091797,354,1.0,2 +31354,0,1.0,2,1.6088953018188477,355,0.0,2 +31355,0,0.0,2,1.2698986530303955,356,1.0,2 +31356,0,0.0,2,1.331898808479309,357,1.0,2 +31357,0,0.0,2,1.7938928604125977,358,1.0,2 +31358,0,0.0,2,1.2118985652923584,359,0.0,2 +31359,0,0.0,2,1.239898681640625,360,0.0,2 +31360,0,0.0,2,1.6928942203521729,361,1.0,2 +31361,0,0.0,2,1.243898630142212,362,1.0,2 +31362,0,0.0,2,1.4408973455429077,363,1.0,2 +31363,0,0.0,2,1.5178964138031006,364,0.0,2 +31364,0,0.0,2,1.8838917016983032,365,0.0,2 +31365,0,1.0,2,1.4698970317840576,366,0.0,2 +31366,0,1.0,2,1.918891191482544,367,1.0,2 +31367,0,1.0,2,1.5308961868286133,368,1.0,2 +31368,0,1.0,2,1.4218976497650146,369,1.0,2 +31369,0,1.0,2,1.2878987789154053,370,1.0,2 +31370,0,0.0,2,1.2168985605239868,371,1.0,2 +31371,0,0.0,2,1.4388973712921143,372,0.0,2 +31372,0,1.0,2,1.7838929891586304,373,1.0,2 +31373,0,1.0,2,1.4878968000411987,374,0.0,2 +31374,0,0.0,2,1.2128986120224,375,0.0,2 +31375,0,0.0,2,1.2158985137939453,376,0.0,2 +31376,0,1.0,2,1.7378935813903809,377,0.0,2 +31377,0,1.0,2,2.0868895053863525,378,1.0,2 +31378,0,1.0,2,1.3068987131118774,379,0.0,2 +31379,0,0.0,2,1.5808956623077393,380,0.0,2 +31380,0,0.0,2,1.1238985061645508,381,1.0,2 +31381,0,1.0,2,1.4148976802825928,382,1.0,2 +31382,0,1.0,2,1.6468946933746338,383,0.0,2 +31383,0,0.0,2,1.7278937101364136,384,0.0,2 +31384,0,1.0,2,1.4648970365524292,385,0.0,2 +31385,0,0.0,2,1.2528986930847168,386,1.0,2 +31386,0,1.0,2,1.8508920669555664,387,0.0,2 +31387,0,0.0,2,1.2938987016677856,388,1.0,2 +31388,0,0.0,2,1.538896083831787,389,1.0,2 +31389,0,1.0,2,1.4998966455459595,390,0.0,2 +31390,0,0.0,2,1.5518959760665894,391,1.0,2 +31391,0,0.0,2,1.264898657798767,392,1.0,2 +31392,0,0.0,2,1.209898591041565,393,1.0,2 +31393,0,0.0,2,1.2418986558914185,394,0.0,2 +31394,0,0.0,2,1.5598958730697632,395,0.0,2 +31395,0,1.0,2,1.3228987455368042,396,0.0,2 +31396,0,0.0,2,1.56389582157135,397,0.0,2 +31397,0,0.0,2,1.2828986644744873,398,0.0,2 +31398,0,0.0,2,1.353898525238037,399,1.0,2 +31399,0,0.0,2,1.4838968515396118,400,1.0,2 +31400,0,0.0,2,1.1998984813690186,401,0.0,2 +31401,0,0.0,2,1.6798943281173706,402,1.0,2 +31402,0,0.0,2,1.5188963413238525,403,1.0,2 +31403,0,0.0,2,1.2848987579345703,404,0.0,2 +31404,0,1.0,2,1.297898769378662,405,1.0,2 +31405,0,1.0,2,1.3308987617492676,406,0.0,2 +31406,0,0.0,2,1.233898639678955,407,1.0,2 +31407,0,0.0,2,1.4428973197937012,408,0.0,2 +31408,0,0.0,2,1.3478986024856567,409,1.0,2 +31409,0,1.0,2,2.209895133972168,410,1.0,2 +31410,0,1.0,2,1.58689546585083,411,1.0,2 +31411,0,0.0,2,1.5138964653015137,412,1.0,2 +31412,0,1.0,2,1.7938928604125977,413,1.0,2 +31413,0,1.0,2,1.961890697479248,414,0.0,2 +31414,0,0.0,2,1.2298985719680786,415,1.0,2 +31415,0,0.0,2,1.7498934268951416,416,1.0,2 +31416,0,0.0,2,1.9908902645111084,417,0.0,2 +31417,0,0.0,2,1.9978902339935303,418,0.0,2 +31418,0,1.0,2,1.5328961610794067,419,0.0,2 +31419,0,0.0,2,1.2268985509872437,420,0.0,2 +31420,0,0.0,2,1.6068952083587646,421,0.0,2 +31421,0,1.0,2,1.298898696899414,422,0.0,2 +31422,0,0.0,2,1.5618958473205566,423,0.0,2 +31423,0,0.0,2,1.8828916549682617,424,1.0,2 +31424,0,0.0,2,1.475896954536438,425,0.0,2 +31425,0,0.0,2,1.684894323348999,426,0.0,2 +31426,0,0.0,2,2.3229005336761475,427,1.0,2 +31427,0,0.0,2,1.3458986282348633,428,0.0,2 +31428,0,0.0,2,1.3508985042572021,429,0.0,2 +31429,0,0.0,2,2.04988956451416,430,1.0,2 +31430,0,0.0,2,1.1958985328674316,431,1.0,2 +31431,0,1.0,2,2.3289008140563965,432,0.0,2 +31432,0,0.0,2,1.2518986463546753,433,1.0,2 +31433,0,0.0,2,1.4608970880508423,434,1.0,2 +31434,0,0.0,2,1.4088977575302124,435,0.0,2 +31435,0,1.0,2,2.0948898792266846,436,1.0,2 +31436,0,1.0,2,1.6498947143554688,437,0.0,2 +31437,0,0.0,2,2.161892890930176,438,1.0,2 +31438,0,0.0,2,1.4788968563079834,439,0.0,2 +31439,0,1.0,2,1.4748969078063965,440,0.0,2 +31440,0,0.0,2,1.3708982467651367,441,1.0,2 +31441,0,0.0,2,1.6268949508666992,442,0.0,2 +31442,0,0.0,2,1.4958966970443726,443,0.0,2 +31443,0,0.0,2,2.0698893070220947,444,0.0,2 +31444,0,0.0,2,1.501896619796753,445,1.0,2 +31445,0,0.0,2,2.056889533996582,446,1.0,2 +31446,0,0.0,2,1.7598932981491089,447,1.0,2 +31447,0,0.0,2,1.274898648262024,448,0.0,2 +31448,0,0.0,2,2.2908990383148193,449,0.0,2 +31449,0,1.0,2,1.4668970108032227,450,0.0,2 +31450,0,0.0,2,1.7468934059143066,451,0.0,2 +31451,0,1.0,2,1.3308987617492676,452,1.0,2 +31452,0,1.0,2,1.2618986368179321,453,0.0,2 +31453,0,0.0,2,1.9098913669586182,454,0.0,2 +31454,0,0.0,2,1.2908986806869507,455,0.0,2 +31455,0,1.0,2,1.7398935556411743,456,0.0,2 +31456,0,0.0,2,1.3558984994888306,457,0.0,2 +31457,0,1.0,2,1.8468921184539795,458,1.0,2 +31458,0,1.0,2,1.545896053314209,459,1.0,2 +31459,0,0.0,2,1.2638986110687256,460,0.0,2 +31460,0,1.0,2,1.7838929891586304,461,1.0,2 +31461,0,0.0,2,1.9118913412094116,462,1.0,2 +31462,0,0.0,2,1.729893684387207,463,0.0,2 +31463,0,1.0,2,1.5518959760665894,464,1.0,2 +31464,0,1.0,2,1.297898769378662,465,0.0,2 +31465,0,0.0,2,2.168893337249756,466,1.0,2 +31466,0,0.0,2,1.5268962383270264,467,0.0,2 +31467,0,1.0,2,1.5668957233428955,468,1.0,2 +31468,0,1.0,2,1.711893916130066,469,1.0,2 +31469,0,0.0,2,1.2448986768722534,470,0.0,2 +31470,0,1.0,2,1.6668944358825684,471,1.0,2 +31471,0,1.0,2,1.568895697593689,472,1.0,2 +31472,0,1.0,2,1.450897216796875,473,0.0,2 +31473,0,0.0,2,1.6458947658538818,474,0.0,2 +31474,0,0.0,2,1.61589515209198,475,0.0,2 +31475,0,0.0,2,2.0998902320861816,476,0.0,2 +31476,0,1.0,2,2.209895133972168,477,0.0,2 +31477,0,0.0,2,1.8608920574188232,478,0.0,2 +31478,0,1.0,2,1.3998979330062866,479,0.0,2 +31479,0,0.0,2,1.5438960790634155,480,0.0,2 +31480,0,1.0,2,1.5568958520889282,481,0.0,2 +31481,0,0.0,2,1.431897521018982,482,0.0,2 +31482,0,1.0,2,1.4408973455429077,483,0.0,2 +31483,0,0.0,2,1.3868980407714844,484,1.0,2 +31484,0,0.0,2,1.1888985633850098,485,0.0,2 +31485,0,0.0,2,1.4148976802825928,486,1.0,2 +31486,0,0.0,2,1.5308961868286133,487,0.0,2 +31487,0,0.0,2,2.004890203475952,488,0.0,2 +31488,0,1.0,2,1.3238987922668457,489,0.0,2 +31489,0,0.0,2,1.682894229888916,490,0.0,2 +31490,0,0.0,2,2.167893409729004,491,1.0,2 +31491,0,0.0,2,1.7698931694030762,492,0.0,2 +31492,0,1.0,2,1.4048978090286255,493,0.0,2 +31493,0,1.0,2,1.7388935089111328,494,0.0,2 +31494,0,0.0,2,1.5728956460952759,495,1.0,2 +31495,0,0.0,2,1.1898984909057617,496,0.0,2 +31496,0,1.0,2,2.0828893184661865,497,1.0,2 +31497,0,0.0,2,1.4388973712921143,498,1.0,2 +31498,0,0.0,2,1.303898811340332,499,1.0,2 +31499,0,0.0,2,1.707893967628479,500,1.0,2 +31500,1,0.0,0,1.6223130226135254,1,0.0,2 +31501,1,1.0,0,1.3083170652389526,2,1.0,2 +31502,1,1.0,0,1.2373168468475342,3,0.0,2 +31503,1,1.0,0,1.7313116788864136,4,1.0,2 +31504,1,1.0,0,1.6553126573562622,5,1.0,2 +31505,1,1.0,0,1.4663150310516357,6,1.0,2 +31506,1,1.0,0,1.4073158502578735,7,1.0,2 +31507,1,1.0,0,1.61931312084198,8,1.0,2 +31508,1,1.0,0,1.3043169975280762,9,1.0,2 +31509,1,1.0,0,1.7623112201690674,10,1.0,2 +31510,1,0.0,0,1.8063106536865234,11,0.0,2 +31511,1,1.0,0,1.4183156490325928,12,1.0,2 +31512,1,1.0,0,1.4113157987594604,13,1.0,2 +31513,1,1.0,0,1.5103144645690918,14,1.0,2 +31514,1,1.0,0,1.2763170003890991,15,1.0,2 +31515,1,1.0,0,1.2543169260025024,16,1.0,2 +31516,1,0.0,0,1.2413169145584106,17,0.0,2 +31517,1,1.0,0,2.07830810546875,18,1.0,2 +31518,1,1.0,0,1.343316674232483,19,0.0,2 +31519,1,0.0,0,1.3933160305023193,20,0.0,2 +31520,1,0.0,0,1.7203118801116943,21,0.0,2 +31521,1,1.0,0,1.5123144388198853,22,1.0,2 +31522,1,1.0,0,1.6483128070831299,23,1.0,2 +31523,1,1.0,0,1.2673169374465942,24,1.0,2 +31524,1,1.0,0,1.4173157215118408,25,1.0,2 +31525,1,1.0,0,1.475314974784851,26,1.0,2 +31526,1,1.0,0,1.3033170700073242,27,0.0,2 +31527,1,0.0,0,1.6223130226135254,28,0.0,2 +31528,1,0.0,0,2.308319091796875,29,0.0,2 +31529,1,1.0,0,1.2243168354034424,30,1.0,2 +31530,1,1.0,0,1.4013159275054932,31,1.0,2 +31531,1,1.0,0,1.3683162927627563,32,1.0,2 +31532,1,1.0,0,1.4363154172897339,33,1.0,2 +31533,1,1.0,0,1.5413141250610352,34,1.0,2 +31534,1,1.0,0,1.2933170795440674,35,1.0,2 +31535,1,1.0,0,1.5843136310577393,36,1.0,2 +31536,1,1.0,0,1.182316780090332,37,1.0,2 +31537,1,0.0,0,1.2773170471191406,38,0.0,2 +31538,1,1.0,0,1.5523139238357544,39,1.0,2 +31539,1,1.0,0,1.939309000968933,40,1.0,2 +31540,1,1.0,0,1.1693167686462402,41,1.0,2 +31541,1,1.0,0,1.6543126106262207,42,1.0,2 +31542,1,1.0,0,1.3273168802261353,43,1.0,2 +31543,1,1.0,0,1.6643126010894775,44,1.0,2 +31544,1,1.0,0,1.2933170795440674,45,1.0,2 +31545,1,1.0,0,1.2143168449401855,46,1.0,2 +31546,1,1.0,0,1.527314305305481,47,1.0,2 +31547,1,1.0,0,1.2683169841766357,48,1.0,2 +31548,1,1.0,0,1.7963109016418457,49,1.0,2 +31549,1,1.0,0,1.5163143873214722,50,0.0,2 +31550,1,1.0,0,1.5073145627975464,51,1.0,2 +31551,1,0.0,0,1.1663167476654053,52,0.0,2 +31552,1,1.0,0,1.4013159275054932,53,1.0,2 +31553,1,1.0,0,1.4073158502578735,54,1.0,2 +31554,1,1.0,0,1.9553087949752808,55,1.0,2 +31555,1,1.0,0,1.366316318511963,56,1.0,2 +31556,1,1.0,0,1.5593138933181763,57,1.0,2 +31557,1,1.0,0,1.3543164730072021,58,1.0,2 +31558,1,1.0,0,1.5763137340545654,59,0.0,2 +31559,1,0.0,0,1.2413169145584106,60,0.0,2 +31560,1,1.0,0,2.0403077602386475,61,0.0,2 +31561,1,1.0,0,1.7873109579086304,62,1.0,2 +31562,1,1.0,0,1.740311622619629,63,1.0,2 +31563,1,1.0,0,1.4643150568008423,64,0.0,2 +31564,1,1.0,0,1.9023094177246094,65,0.0,2 +31565,1,0.0,0,1.243316888809204,66,1.0,2 +31566,1,0.0,0,1.5113145112991333,67,0.0,2 +31567,1,0.0,0,2.11830997467041,68,0.0,2 +31568,1,0.0,0,1.4893147945404053,69,0.0,2 +31569,1,0.0,0,1.2513169050216675,70,1.0,2 +31570,1,0.0,0,1.1433167457580566,71,0.0,2 +31571,1,0.0,0,1.279317021369934,72,1.0,2 +31572,1,0.0,0,1.366316318511963,73,1.0,2 +31573,1,0.0,0,1.314316987991333,74,0.0,2 +31574,1,1.0,0,1.7233117818832397,75,1.0,2 +31575,1,1.0,0,1.7273117303848267,76,1.0,2 +31576,1,1.0,0,1.384316086769104,77,1.0,2 +31577,1,1.0,0,1.2763170003890991,78,1.0,2 +31578,1,1.0,0,1.431315541267395,79,1.0,2 +31579,1,1.0,0,1.3753162622451782,80,1.0,2 +31580,1,1.0,0,1.361316442489624,81,1.0,2 +31581,1,1.0,0,1.216316819190979,82,0.0,2 +31582,1,1.0,0,1.3413166999816895,83,0.0,2 +31583,1,1.0,0,1.380316138267517,84,1.0,2 +31584,1,1.0,0,1.8713098764419556,85,0.0,2 +31585,1,0.0,0,1.2593169212341309,86,0.0,2 +31586,1,1.0,0,1.3593164682388306,87,1.0,2 +31587,1,1.0,0,1.383316159248352,88,1.0,2 +31588,1,1.0,0,1.6693124771118164,89,1.0,2 +31589,1,1.0,0,1.4893147945404053,90,1.0,2 +31590,1,1.0,0,1.7663111686706543,91,1.0,2 +31591,1,1.0,0,1.6083133220672607,92,1.0,2 +31592,1,1.0,0,2.1693124771118164,93,1.0,2 +31593,1,1.0,0,1.575313687324524,94,1.0,2 +31594,1,1.0,0,1.4433153867721558,95,1.0,2 +31595,1,1.0,0,1.4293155670166016,96,1.0,2 +31596,1,1.0,0,2.058307409286499,97,0.0,2 +31597,1,0.0,0,1.1683167219161987,98,1.0,2 +31598,1,0.0,0,1.286316990852356,99,0.0,2 +31599,1,0.0,0,1.8933095932006836,100,0.0,2 +31600,1,1.0,0,1.7763111591339111,101,0.0,2 +31601,1,0.0,0,1.5343141555786133,102,0.0,2 +31602,1,0.0,0,1.8083107471466064,103,0.0,2 +31603,1,1.0,0,1.9023094177246094,104,1.0,2 +31604,1,1.0,0,2.1383109092712402,105,1.0,2 +31605,1,1.0,0,1.4593151807785034,106,1.0,2 +31606,1,1.0,0,1.2043168544769287,107,1.0,2 +31607,1,1.0,0,1.4693150520324707,108,0.0,2 +31608,1,1.0,0,2.1693124771118164,109,1.0,2 +31609,1,1.0,0,1.5783135890960693,110,1.0,2 +31610,1,1.0,0,1.283316969871521,111,1.0,2 +31611,1,1.0,0,1.5433140993118286,112,0.0,2 +31612,1,1.0,0,1.3273168802261353,113,1.0,2 +31613,1,1.0,0,1.40531587600708,114,1.0,2 +31614,1,1.0,0,1.4613151550292969,115,1.0,2 +31615,1,1.0,0,1.663312554359436,116,1.0,2 +31616,1,1.0,0,1.2953170537948608,117,0.0,2 +31617,1,0.0,0,1.343316674232483,118,0.0,2 +31618,1,0.0,0,1.2923170328140259,119,0.0,2 +31619,1,0.0,0,1.3453166484832764,120,0.0,2 +31620,1,1.0,0,2.539329767227173,121,1.0,2 +31621,1,1.0,0,1.245316982269287,122,1.0,2 +31622,1,1.0,0,1.409315824508667,123,1.0,2 +31623,1,1.0,0,1.2363169193267822,124,1.0,2 +31624,1,1.0,0,1.410315752029419,125,0.0,2 +31625,1,1.0,0,1.5743136405944824,126,1.0,2 +31626,1,1.0,0,1.383316159248352,127,1.0,2 +31627,1,1.0,0,1.6603126525878906,128,1.0,2 +31628,1,1.0,0,1.4663150310516357,129,1.0,2 +31629,1,1.0,0,2.055307388305664,130,1.0,2 +31630,1,1.0,0,1.2353168725967407,131,1.0,2 +31631,1,1.0,0,1.339316725730896,132,1.0,2 +31632,1,1.0,0,1.3543164730072021,133,1.0,2 +31633,1,1.0,0,1.9673086404800415,134,1.0,2 +31634,1,1.0,0,1.3813161849975586,135,1.0,2 +31635,1,1.0,0,1.785310983657837,136,1.0,2 +31636,1,1.0,0,1.310317039489746,137,0.0,2 +31637,1,1.0,0,1.9833084344863892,138,0.0,2 +31638,1,0.0,0,1.435315489768982,139,1.0,2 +31639,1,0.0,0,1.2353168725967407,140,1.0,2 +31640,1,0.0,0,1.2233169078826904,141,0.0,2 +31641,1,0.0,0,1.6953121423721313,142,0.0,2 +31642,1,0.0,0,1.3523164987564087,143,0.0,2 +31643,1,0.0,0,1.5143144130706787,144,0.0,2 +31644,1,0.0,0,1.3673163652420044,145,0.0,2 +31645,1,1.0,0,1.431315541267395,146,1.0,2 +31646,1,0.0,0,1.6743123531341553,147,0.0,2 +31647,1,1.0,0,1.7883110046386719,148,1.0,2 +31648,1,1.0,0,1.822310447692871,149,1.0,2 +31649,1,1.0,0,1.3493165969848633,150,1.0,2 +31650,1,1.0,0,1.9503087997436523,151,1.0,2 +31651,1,1.0,0,1.7573113441467285,152,1.0,2 +31652,1,1.0,0,1.6063132286071777,153,1.0,2 +31653,1,1.0,0,1.361316442489624,154,1.0,2 +31654,1,1.0,0,1.523314356803894,155,0.0,2 +31655,1,0.0,0,1.2933170795440674,156,0.0,2 +31656,1,0.0,0,1.3263168334960938,157,0.0,2 +31657,1,0.0,0,1.6353129148483276,158,0.0,2 +31658,1,1.0,0,1.8093106746673584,159,1.0,2 +31659,1,1.0,0,1.40531587600708,160,1.0,2 +31660,1,1.0,0,1.4843147993087769,161,1.0,2 +31661,1,1.0,0,1.738311529159546,162,1.0,2 +31662,1,1.0,0,1.4863147735595703,163,1.0,2 +31663,1,1.0,0,1.2073168754577637,164,0.0,2 +31664,1,1.0,0,1.4143157005310059,165,1.0,2 +31665,1,0.0,0,1.410315752029419,166,0.0,2 +31666,1,1.0,0,2.59033203125,167,1.0,2 +31667,1,1.0,0,1.546314001083374,168,1.0,2 +31668,1,1.0,0,1.2213168144226074,169,1.0,2 +31669,1,1.0,0,1.3763161897659302,170,1.0,2 +31670,1,1.0,0,1.4123157262802124,171,0.0,2 +31671,1,1.0,0,1.4373154640197754,172,1.0,2 +31672,1,1.0,0,1.335316777229309,173,1.0,2 +31673,1,1.0,0,1.7473114728927612,174,1.0,2 +31674,1,1.0,0,1.497314691543579,175,1.0,2 +31675,1,1.0,0,1.7583112716674805,176,1.0,2 +31676,1,1.0,0,1.5373141765594482,177,1.0,2 +31677,1,1.0,0,1.1753168106079102,178,1.0,2 +31678,1,1.0,0,1.6733124256134033,179,1.0,2 +31679,1,1.0,0,1.4413154125213623,180,1.0,2 +31680,1,1.0,0,1.597313404083252,181,1.0,2 +31681,1,1.0,0,1.1923167705535889,182,1.0,2 +31682,1,1.0,0,1.313317060470581,183,1.0,2 +31683,1,1.0,0,1.2373168468475342,184,1.0,2 +31684,1,1.0,0,1.3853161334991455,185,1.0,2 +31685,1,1.0,0,1.3893160820007324,186,1.0,2 +31686,1,1.0,0,1.684312343597412,187,1.0,2 +31687,1,1.0,0,1.8963096141815186,188,1.0,2 +31688,1,1.0,0,1.3253169059753418,189,1.0,2 +31689,1,1.0,0,2.1523118019104004,190,0.0,2 +31690,1,0.0,0,1.4143157005310059,191,0.0,2 +31691,1,1.0,0,1.2773170471191406,192,1.0,2 +31692,1,1.0,0,1.3753162622451782,193,1.0,2 +31693,1,1.0,0,1.5043145418167114,194,1.0,2 +31694,1,1.0,0,1.2343169450759888,195,1.0,2 +31695,1,1.0,0,1.8863096237182617,196,1.0,2 +31696,1,1.0,0,1.3773162364959717,197,1.0,2 +31697,1,1.0,0,1.3753162622451782,198,1.0,2 +31698,1,1.0,0,1.343316674232483,199,1.0,2 +31699,1,1.0,0,1.4153157472610474,200,1.0,2 +31700,1,1.0,0,1.3503165245056152,201,1.0,2 +31701,1,1.0,0,1.2263169288635254,202,1.0,2 +31702,1,1.0,0,1.4163156747817993,203,1.0,2 +31703,1,1.0,0,1.3023170232772827,204,1.0,2 +31704,1,1.0,0,1.7733111381530762,205,1.0,2 +31705,1,1.0,0,1.5623137950897217,206,1.0,2 +31706,1,1.0,0,1.5723137855529785,207,0.0,2 +31707,1,0.0,0,1.778311014175415,208,1.0,2 +31708,1,1.0,0,1.4513152837753296,209,1.0,2 +31709,1,1.0,0,1.5043145418167114,210,1.0,2 +31710,1,1.0,0,1.5853135585784912,211,1.0,2 +31711,1,0.0,0,1.4003158807754517,212,1.0,2 +31712,1,0.0,0,1.45731520652771,213,0.0,2 +31713,1,1.0,0,1.3003170490264893,214,1.0,2 +31714,1,1.0,0,1.4073158502578735,215,1.0,2 +31715,1,1.0,0,1.4703149795532227,216,1.0,2 +31716,1,0.0,0,1.409315824508667,217,0.0,2 +31717,1,1.0,0,1.453315258026123,218,1.0,2 +31718,1,1.0,0,1.246316909790039,219,1.0,2 +31719,1,1.0,0,1.637312889099121,220,1.0,2 +31720,1,1.0,0,1.6993120908737183,221,1.0,2 +31721,1,1.0,0,1.9983081817626953,222,1.0,2 +31722,1,1.0,0,1.3863160610198975,223,1.0,2 +31723,1,1.0,0,1.4913147687911987,224,1.0,2 +31724,1,1.0,0,1.6763124465942383,225,0.0,2 +31725,1,0.0,0,1.7893109321594238,226,0.0,2 +31726,1,0.0,0,1.5683138370513916,227,0.0,2 +31727,1,0.0,0,1.7183117866516113,228,0.0,2 +31728,1,0.0,0,2.007308006286621,229,0.0,2 +31729,1,0.0,0,2.0453076362609863,230,0.0,2 +31730,1,1.0,0,1.4853148460388184,231,1.0,2 +31731,1,1.0,0,1.59031343460083,232,0.0,2 +31732,1,0.0,0,2.2153146266937256,233,0.0,2 +31733,1,0.0,0,1.7833110094070435,234,1.0,2 +31734,1,0.0,0,1.5913134813308716,235,0.0,2 +31735,1,0.0,0,1.9083094596862793,236,0.0,2 +31736,1,1.0,0,2.2043142318725586,237,1.0,2 +31737,1,1.0,0,1.3793162107467651,238,0.0,2 +31738,1,1.0,0,1.427315592765808,239,1.0,2 +31739,1,1.0,0,1.3903160095214844,240,1.0,2 +31740,1,1.0,0,1.3453166484832764,241,0.0,2 +31741,1,1.0,0,1.8913096189498901,242,1.0,2 +31742,1,1.0,0,1.6433128118515015,243,0.0,2 +31743,1,1.0,0,1.5663137435913086,244,1.0,2 +31744,1,1.0,0,1.7543113231658936,245,1.0,2 +31745,1,1.0,0,1.2083168029785156,246,1.0,2 +31746,1,1.0,0,1.8933095932006836,247,1.0,2 +31747,1,1.0,0,1.498314619064331,248,1.0,2 +31748,1,1.0,0,1.4953147172927856,249,1.0,2 +31749,1,1.0,0,1.5213143825531006,250,1.0,2 +31750,1,0.0,0,1.191316843032837,251,0.0,2 +31751,1,1.0,0,1.2243168354034424,252,1.0,2 +31752,1,0.0,0,1.7103118896484375,253,0.0,2 +31753,1,1.0,0,1.3373167514801025,254,1.0,2 +31754,1,1.0,0,1.2063168287277222,255,1.0,2 +31755,1,1.0,0,1.2063168287277222,256,1.0,2 +31756,1,1.0,0,1.7963109016418457,257,1.0,2 +31757,1,1.0,0,1.5043145418167114,258,1.0,2 +31758,1,1.0,0,1.388316035270691,259,1.0,2 +31759,1,1.0,0,1.6513127088546753,260,1.0,2 +31760,1,1.0,0,2.0313076972961426,261,0.0,2 +31761,1,0.0,0,1.497314691543579,262,0.0,2 +31762,1,1.0,0,1.6783123016357422,263,0.0,2 +31763,1,0.0,0,1.962308645248413,264,0.0,2 +31764,1,1.0,0,1.3893160820007324,265,1.0,2 +31765,1,1.0,0,1.380316138267517,266,1.0,2 +31766,1,1.0,0,1.523314356803894,267,1.0,2 +31767,1,1.0,0,1.9743084907531738,268,1.0,2 +31768,1,1.0,0,1.454315185546875,269,1.0,2 +31769,1,0.0,0,2.055307388305664,270,0.0,2 +31770,1,1.0,0,1.4363154172897339,271,1.0,2 +31771,1,1.0,0,1.5663137435913086,272,1.0,2 +31772,1,0.0,0,1.2993170022964478,273,1.0,2 +31773,1,1.0,0,1.4773149490356445,274,0.0,2 +31774,1,0.0,0,1.1943168640136719,275,0.0,2 +31775,1,1.0,0,1.6753123998641968,276,1.0,2 +31776,1,0.0,0,1.3603163957595825,277,0.0,2 +31777,1,1.0,0,1.5783135890960693,278,1.0,2 +31778,1,1.0,0,1.5073145627975464,279,1.0,2 +31779,1,1.0,0,1.785310983657837,280,1.0,2 +31780,1,1.0,0,1.3763161897659302,281,1.0,2 +31781,1,1.0,0,1.2713170051574707,282,1.0,2 +31782,1,1.0,0,1.365316390991211,283,1.0,2 +31783,1,1.0,0,1.4913147687911987,284,1.0,2 +31784,1,0.0,0,1.5703136920928955,285,0.0,2 +31785,1,1.0,0,1.6243131160736084,286,0.0,2 +31786,1,0.0,0,1.6553126573562622,287,0.0,2 +31787,1,0.0,0,1.9753085374832153,288,0.0,2 +31788,1,1.0,0,1.5223143100738525,289,1.0,2 +31789,1,1.0,0,1.3963159322738647,290,1.0,2 +31790,1,1.0,0,1.7753111124038696,291,1.0,2 +31791,1,1.0,0,1.6713124513626099,292,1.0,2 +31792,1,1.0,0,1.4253156185150146,293,1.0,2 +31793,1,1.0,0,1.5633138418197632,294,1.0,2 +31794,1,1.0,0,1.2343169450759888,295,1.0,2 +31795,1,1.0,0,1.5963134765625,296,1.0,2 +31796,1,1.0,0,1.3503165245056152,297,1.0,2 +31797,1,1.0,0,1.413315773010254,298,1.0,2 +31798,1,1.0,0,1.3203169107437134,299,0.0,2 +31799,1,1.0,0,2.0473074913024902,300,1.0,2 +31800,1,1.0,0,1.358316421508789,301,1.0,2 +31801,1,1.0,0,1.3913160562515259,302,1.0,2 +31802,1,1.0,0,1.970308542251587,303,1.0,2 +31803,1,1.0,0,1.4863147735595703,304,1.0,2 +31804,1,1.0,0,1.3703162670135498,305,1.0,2 +31805,1,1.0,0,1.4193156957626343,306,0.0,2 +31806,1,0.0,0,1.6783123016357422,307,0.0,2 +31807,1,0.0,0,2.2213149070739746,308,0.0,2 +31808,1,1.0,0,1.8403103351593018,309,1.0,2 +31809,1,1.0,0,1.340316653251648,310,1.0,2 +31810,1,1.0,0,1.5853135585784912,311,1.0,2 +31811,1,1.0,0,1.4243155717849731,312,1.0,2 +31812,1,1.0,0,1.4883147478103638,313,1.0,2 +31813,1,1.0,0,1.9413089752197266,314,0.0,2 +31814,1,1.0,0,1.6733124256134033,315,0.0,2 +31815,1,0.0,0,1.2483168840408325,316,1.0,2 +31816,1,0.0,0,1.7493114471435547,317,0.0,2 +31817,1,1.0,0,1.4373154640197754,318,1.0,2 +31818,1,1.0,0,1.8683099746704102,319,1.0,2 +31819,1,1.0,0,1.2753169536590576,320,1.0,2 +31820,1,1.0,0,1.6213130950927734,321,1.0,2 +31821,1,1.0,0,1.2733169794082642,322,1.0,2 +31822,1,1.0,0,1.3723162412643433,323,1.0,2 +31823,1,1.0,0,1.7463114261627197,324,0.0,2 +31824,1,1.0,0,1.2293169498443604,325,0.0,2 +31825,1,0.0,0,2.344320774078369,326,0.0,2 +31826,1,0.0,0,1.3263168334960938,327,0.0,2 +31827,1,0.0,0,1.1533167362213135,328,0.0,2 +31828,1,1.0,0,1.4403153657913208,329,1.0,2 +31829,1,1.0,0,1.336316704750061,330,1.0,2 +31830,1,1.0,0,1.4723149538040161,331,1.0,2 +31831,1,1.0,0,1.2323168516159058,332,1.0,2 +31832,1,0.0,0,1.2473169565200806,333,0.0,2 +31833,1,1.0,0,1.645312786102295,334,1.0,2 +31834,1,1.0,0,2.055307388305664,335,1.0,2 +31835,1,1.0,0,1.874309778213501,336,0.0,2 +31836,1,1.0,0,1.3773162364959717,337,1.0,2 +31837,1,1.0,0,1.693312168121338,338,1.0,2 +31838,1,1.0,0,1.6113132238388062,339,1.0,2 +31839,1,1.0,0,1.4563151597976685,340,1.0,2 +31840,1,1.0,0,1.8333103656768799,341,1.0,2 +31841,1,1.0,0,1.5063145160675049,342,0.0,2 +31842,1,1.0,0,1.9523088932037354,343,0.0,2 +31843,1,1.0,0,1.255316972732544,344,1.0,2 +31844,1,1.0,0,1.1573166847229004,345,1.0,2 +31845,1,1.0,0,1.3823161125183105,346,1.0,2 +31846,1,1.0,0,1.6103131771087646,347,1.0,2 +31847,1,1.0,0,1.340316653251648,348,1.0,2 +31848,1,1.0,0,1.3253169059753418,349,0.0,2 +31849,1,0.0,0,1.1473166942596436,350,0.0,2 +31850,1,1.0,0,2.1233103275299072,351,1.0,2 +31851,1,1.0,0,1.4193156957626343,352,1.0,2 +31852,1,1.0,0,1.6023132801055908,353,1.0,2 +31853,1,1.0,0,1.502314567565918,354,0.0,2 +31854,1,0.0,0,1.869309902191162,355,0.0,2 +31855,1,1.0,0,1.343316674232483,356,1.0,2 +31856,1,1.0,0,1.6253130435943604,357,1.0,2 +31857,1,1.0,0,1.3543164730072021,358,1.0,2 +31858,1,1.0,0,1.4563151597976685,359,1.0,2 +31859,1,1.0,0,1.3313168287277222,360,1.0,2 +31860,1,1.0,0,1.9293091297149658,361,1.0,2 +31861,1,1.0,0,1.280316948890686,362,1.0,2 +31862,1,1.0,0,1.4943146705627441,363,1.0,2 +31863,1,1.0,0,1.4463152885437012,364,1.0,2 +31864,1,1.0,0,1.4453153610229492,365,1.0,2 +31865,1,1.0,0,1.6123132705688477,366,0.0,2 +31866,1,0.0,0,1.7263116836547852,367,0.0,2 +31867,1,1.0,0,2.01830792427063,368,1.0,2 +31868,1,0.0,0,2.4483256340026855,369,0.0,2 +31869,1,1.0,0,1.362316370010376,370,1.0,2 +31870,1,1.0,0,1.3593164682388306,371,1.0,2 +31871,1,1.0,0,1.3273168802261353,372,1.0,2 +31872,1,1.0,0,1.4703149795532227,373,1.0,2 +31873,1,1.0,0,1.2593169212341309,374,1.0,2 +31874,1,1.0,0,1.3713163137435913,375,1.0,2 +31875,1,1.0,0,1.3513165712356567,376,1.0,2 +31876,1,1.0,0,1.2593169212341309,377,1.0,2 +31877,1,1.0,0,1.7573113441467285,378,0.0,2 +31878,1,0.0,0,1.7623112201690674,379,0.0,2 +31879,1,0.0,0,1.5193144083023071,380,0.0,2 +31880,1,0.0,0,1.4713150262832642,381,0.0,2 +31881,1,1.0,0,1.4153157472610474,382,1.0,2 +31882,1,1.0,0,1.3633164167404175,383,1.0,2 +31883,1,1.0,0,1.8213105201721191,384,1.0,2 +31884,1,1.0,0,1.6563127040863037,385,1.0,2 +31885,1,1.0,0,1.3123170137405396,386,1.0,2 +31886,1,1.0,0,1.8943095207214355,387,1.0,2 +31887,1,1.0,0,1.6653125286102295,388,1.0,2 +31888,1,1.0,0,1.6103131771087646,389,1.0,2 +31889,1,1.0,0,1.2313169240951538,390,1.0,2 +31890,1,1.0,0,1.645312786102295,391,0.0,2 +31891,1,0.0,0,1.283316969871521,392,0.0,2 +31892,1,1.0,0,1.3703162670135498,393,1.0,2 +31893,1,1.0,0,1.4623150825500488,394,1.0,2 +31894,1,1.0,0,1.4183156490325928,395,1.0,2 +31895,1,1.0,0,1.4193156957626343,396,1.0,2 +31896,1,1.0,0,1.8233104944229126,397,1.0,2 +31897,1,1.0,0,1.4333155155181885,398,1.0,2 +31898,1,1.0,0,1.734311580657959,399,1.0,2 +31899,1,1.0,0,1.253316879272461,400,1.0,2 +31900,1,1.0,0,1.6033133268356323,401,1.0,2 +31901,1,1.0,0,1.5313142538070679,402,1.0,2 +31902,1,1.0,0,1.597313404083252,403,1.0,2 +31903,1,1.0,0,1.4563151597976685,404,1.0,2 +31904,1,1.0,0,1.4663150310516357,405,1.0,2 +31905,1,1.0,0,1.5303142070770264,406,1.0,2 +31906,1,1.0,0,1.4693150520324707,407,1.0,2 +31907,1,1.0,0,1.216316819190979,408,1.0,2 +31908,1,1.0,0,2.07830810546875,409,0.0,2 +31909,1,0.0,0,1.9233092069625854,410,1.0,2 +31910,1,0.0,0,1.5893135070800781,411,0.0,2 +31911,1,0.0,0,2.356321334838867,412,0.0,2 +31912,1,0.0,0,1.4843147993087769,413,0.0,2 +31913,1,0.0,0,1.1283166408538818,414,0.0,2 +31914,1,1.0,0,2.115309953689575,415,0.0,2 +31915,1,1.0,0,1.3593164682388306,416,1.0,2 +31916,1,1.0,0,1.575313687324524,417,1.0,2 +31917,1,1.0,0,1.4183156490325928,418,1.0,2 +31918,1,1.0,0,1.31831693649292,419,1.0,2 +31919,1,1.0,0,2.088308811187744,420,1.0,2 +31920,1,1.0,0,1.553313970565796,421,1.0,2 +31921,1,1.0,0,1.520314335823059,422,1.0,2 +31922,1,1.0,0,1.5733137130737305,423,1.0,2 +31923,1,1.0,0,1.7613112926483154,424,1.0,2 +31924,1,1.0,0,1.3053170442581177,425,1.0,2 +31925,1,1.0,0,1.7223117351531982,426,1.0,2 +31926,1,1.0,0,1.4423153400421143,427,1.0,2 +31927,1,1.0,0,1.3723162412643433,428,1.0,2 +31928,1,1.0,0,1.2653169631958008,429,1.0,2 +31929,1,1.0,0,1.549314022064209,430,1.0,2 +31930,1,1.0,0,1.5833135843276978,431,1.0,2 +31931,1,1.0,0,1.6473127603530884,432,1.0,2 +31932,1,1.0,0,1.5113145112991333,433,1.0,2 +31933,1,0.0,0,1.3443166017532349,434,1.0,2 +31934,1,0.0,0,1.362316370010376,435,0.0,2 +31935,1,1.0,0,1.7863109111785889,436,1.0,2 +31936,1,1.0,0,1.2703169584274292,437,1.0,2 +31937,1,1.0,0,1.6593126058578491,438,1.0,2 +31938,1,1.0,0,1.4563151597976685,439,1.0,2 +31939,1,1.0,0,1.8533101081848145,440,1.0,2 +31940,1,1.0,0,1.5893135070800781,441,1.0,2 +31941,1,1.0,0,1.2943170070648193,442,1.0,2 +31942,1,1.0,0,1.3413166999816895,443,0.0,2 +31943,1,1.0,0,1.5153144598007202,444,1.0,2 +31944,1,0.0,0,1.550313949584961,445,0.0,2 +31945,1,1.0,0,1.497314691543579,446,1.0,2 +31946,1,1.0,0,1.523314356803894,447,1.0,2 +31947,1,1.0,0,1.6133131980895996,448,1.0,2 +31948,1,1.0,0,1.4403153657913208,449,1.0,2 +31949,1,1.0,0,1.1443166732788086,450,1.0,2 +31950,1,1.0,0,1.5143144130706787,451,1.0,2 +31951,1,1.0,0,1.1843167543411255,452,1.0,2 +31952,1,1.0,0,1.4193156957626343,453,0.0,2 +31953,1,0.0,0,1.5433140993118286,454,0.0,2 +31954,1,0.0,0,1.431315541267395,455,0.0,2 +31955,1,1.0,0,1.7923109531402588,456,1.0,2 +31956,1,1.0,0,2.1653122901916504,457,1.0,2 +31957,1,1.0,0,1.6303129196166992,458,1.0,2 +31958,1,1.0,0,1.641312837600708,459,1.0,2 +31959,1,1.0,0,1.3493165969848633,460,0.0,2 +31960,1,1.0,0,1.61931312084198,461,1.0,2 +31961,1,1.0,0,1.497314691543579,462,1.0,2 +31962,1,1.0,0,1.5843136310577393,463,1.0,2 +31963,1,1.0,0,1.3683162927627563,464,0.0,2 +31964,1,0.0,0,1.2883169651031494,465,1.0,2 +31965,1,0.0,0,1.3013169765472412,466,1.0,2 +31966,1,0.0,0,1.3783161640167236,467,0.0,2 +31967,1,1.0,0,1.663312554359436,468,1.0,2 +31968,1,1.0,0,1.667312502861023,469,1.0,2 +31969,1,1.0,0,1.8543100357055664,470,1.0,2 +31970,1,0.0,0,1.154316782951355,471,0.0,2 +31971,1,1.0,0,1.5723137855529785,472,1.0,2 +31972,1,0.0,0,1.5393141508102417,473,1.0,2 +31973,1,0.0,0,1.4873148202896118,474,1.0,2 +31974,1,1.0,0,1.454315185546875,475,1.0,2 +31975,1,0.0,0,1.410315752029419,476,1.0,2 +31976,1,0.0,0,1.4263155460357666,477,0.0,2 +31977,1,1.0,0,1.6263129711151123,478,1.0,2 +31978,1,1.0,0,1.4643150568008423,479,1.0,2 +31979,1,1.0,0,1.4693150520324707,480,1.0,2 +31980,1,1.0,0,1.4633151292800903,481,1.0,2 +31981,1,1.0,0,1.497314691543579,482,0.0,2 +31982,1,1.0,0,2.052307605743408,483,1.0,2 +31983,1,1.0,0,1.2593169212341309,484,1.0,2 +31984,1,1.0,0,1.3163169622421265,485,1.0,2 +31985,1,1.0,0,1.2593169212341309,486,0.0,2 +31986,1,0.0,0,1.218316912651062,487,1.0,2 +31987,1,0.0,0,2.01830792427063,488,0.0,2 +31988,1,1.0,0,1.5153144598007202,489,1.0,2 +31989,1,1.0,0,1.3233169317245483,490,1.0,2 +31990,1,1.0,0,1.317317008972168,491,0.0,2 +31991,1,1.0,0,1.987308382987976,492,0.0,2 +31992,1,0.0,0,2.1373109817504883,493,0.0,2 +31993,1,1.0,0,1.874309778213501,494,1.0,2 +31994,1,0.0,0,1.6773123741149902,495,0.0,2 +31995,1,1.0,0,1.4123157262802124,496,1.0,2 +31996,1,1.0,0,1.5213143825531006,497,1.0,2 +31997,1,1.0,0,1.6813123226165771,498,1.0,2 +31998,1,1.0,0,1.218316912651062,499,0.0,2 +31999,1,0.0,0,2.3983230590820312,500,1.0,2 +32000,1,0.0,1,1.921309232711792,1,0.0,2 +32001,1,0.0,1,1.6723124980926514,2,0.0,2 +32002,1,1.0,1,1.9403090476989746,3,1.0,2 +32003,1,1.0,1,1.2633169889450073,4,0.0,2 +32004,1,1.0,1,1.9963083267211914,5,1.0,2 +32005,1,1.0,1,1.42831552028656,6,0.0,2 +32006,1,0.0,1,2.100309371948242,7,0.0,2 +32007,1,0.0,1,1.413315773010254,8,0.0,2 +32008,1,1.0,1,1.3003170490264893,9,1.0,2 +32009,1,1.0,1,1.7093119621276855,10,1.0,2 +32010,1,0.0,1,1.4393154382705688,11,0.0,2 +32011,1,1.0,1,1.3443166017532349,12,0.0,2 +32012,1,0.0,1,1.5593138933181763,13,0.0,2 +32013,1,0.0,1,1.2983170747756958,14,0.0,2 +32014,1,1.0,1,1.7673112154006958,15,0.0,2 +32015,1,1.0,1,1.4293155670166016,16,0.0,2 +32016,1,0.0,1,1.2173168659210205,17,1.0,2 +32017,1,0.0,1,1.5793136358261108,18,0.0,2 +32018,1,0.0,1,1.8613100051879883,19,1.0,2 +32019,1,0.0,1,1.8353103399276733,20,0.0,2 +32020,1,1.0,1,1.3713163137435913,21,1.0,2 +32021,1,1.0,1,1.176316738128662,22,0.0,2 +32022,1,0.0,1,2.1503114700317383,23,0.0,2 +32023,1,0.0,1,1.2963169813156128,24,0.0,2 +32024,1,1.0,1,1.3333168029785156,25,0.0,2 +32025,1,0.0,1,1.4953147172927856,26,0.0,2 +32026,1,0.0,1,1.3093171119689941,27,0.0,2 +32027,1,1.0,1,2.277317523956299,28,0.0,2 +32028,1,1.0,1,1.2483168840408325,29,1.0,2 +32029,1,1.0,1,2.4323248863220215,30,1.0,2 +32030,1,1.0,1,1.2383168935775757,31,1.0,2 +32031,1,1.0,1,1.5593138933181763,32,1.0,2 +32032,1,1.0,1,1.3113170862197876,33,1.0,2 +32033,1,1.0,1,1.689312219619751,34,1.0,2 +32034,1,1.0,1,1.553313970565796,35,0.0,2 +32035,1,0.0,1,1.5993133783340454,36,0.0,2 +32036,1,0.0,1,1.4493153095245361,37,0.0,2 +32037,1,0.0,1,1.8063106536865234,38,0.0,2 +32038,1,1.0,1,2.321319580078125,39,1.0,2 +32039,1,1.0,1,1.5083144903182983,40,1.0,2 +32040,1,1.0,1,1.2743170261383057,41,0.0,2 +32041,1,0.0,1,1.7533113956451416,42,0.0,2 +32042,1,0.0,1,1.45731520652771,43,1.0,2 +32043,1,0.0,1,1.1733167171478271,44,0.0,2 +32044,1,0.0,1,1.216316819190979,45,0.0,2 +32045,1,0.0,1,1.6293129920959473,46,0.0,2 +32046,1,1.0,1,1.8903095722198486,47,0.0,2 +32047,1,1.0,1,1.9113093614578247,48,1.0,2 +32048,1,1.0,1,1.458315134048462,49,1.0,2 +32049,1,0.0,1,1.2383168935775757,50,1.0,2 +32050,1,0.0,1,1.4923146963119507,51,0.0,2 +32051,1,1.0,1,1.6143131256103516,52,0.0,2 +32052,1,0.0,1,1.8903095722198486,53,0.0,2 +32053,1,1.0,1,1.9003095626831055,54,0.0,2 +32054,1,0.0,1,1.3823161125183105,55,1.0,2 +32055,1,0.0,1,1.2883169651031494,56,1.0,2 +32056,1,0.0,1,1.4633151292800903,57,1.0,2 +32057,1,0.0,1,1.410315752029419,58,0.0,2 +32058,1,1.0,1,1.2933170795440674,59,1.0,2 +32059,1,1.0,1,1.313317060470581,60,1.0,2 +32060,1,1.0,1,1.5683138370513916,61,1.0,2 +32061,1,1.0,1,1.4743149280548096,62,0.0,2 +32062,1,1.0,1,1.6793123483657837,63,1.0,2 +32063,1,1.0,1,1.4383153915405273,64,0.0,2 +32064,1,1.0,1,1.7033120393753052,65,0.0,2 +32065,1,1.0,1,1.9083094596862793,66,1.0,2 +32066,1,1.0,1,1.527314305305481,67,1.0,2 +32067,1,1.0,1,1.4043158292770386,68,1.0,2 +32068,1,1.0,1,1.592313528060913,69,1.0,2 +32069,1,1.0,1,1.3533165454864502,70,1.0,2 +32070,1,1.0,1,1.216316819190979,71,0.0,2 +32071,1,1.0,1,2.0303077697753906,72,1.0,2 +32072,1,1.0,1,1.755311369895935,73,0.0,2 +32073,1,0.0,1,1.339316725730896,74,0.0,2 +32074,1,0.0,1,1.3013169765472412,75,0.0,2 +32075,1,0.0,1,1.4213156700134277,76,0.0,2 +32076,1,1.0,1,1.1753168106079102,77,0.0,2 +32077,1,0.0,1,1.4613151550292969,78,0.0,2 +32078,1,0.0,1,1.807310700416565,79,0.0,2 +32079,1,1.0,1,1.6553126573562622,80,1.0,2 +32080,1,1.0,1,1.6223130226135254,81,0.0,2 +32081,1,1.0,1,1.6273130178451538,82,0.0,2 +32082,1,0.0,1,1.2683169841766357,83,1.0,2 +32083,1,0.0,1,1.2273168563842773,84,0.0,2 +32084,1,1.0,1,2.013308048248291,85,1.0,2 +32085,1,1.0,1,1.3213169574737549,86,0.0,2 +32086,1,0.0,1,1.4773149490356445,87,0.0,2 +32087,1,1.0,1,1.7033120393753052,88,1.0,2 +32088,1,1.0,1,1.4263155460357666,89,1.0,2 +32089,1,1.0,1,1.9423089027404785,90,1.0,2 +32090,1,1.0,1,1.2603169679641724,91,1.0,2 +32091,1,1.0,1,1.663312554359436,92,1.0,2 +32092,1,1.0,1,1.9443089962005615,93,0.0,2 +32093,1,1.0,1,1.8653099536895752,94,0.0,2 +32094,1,1.0,1,1.5213143825531006,95,1.0,2 +32095,1,1.0,1,1.6093132495880127,96,0.0,2 +32096,1,0.0,1,1.3443166017532349,97,1.0,2 +32097,1,0.0,1,1.6363129615783691,98,0.0,2 +32098,1,0.0,1,1.4463152885437012,99,1.0,2 +32099,1,0.0,1,1.4203156232833862,100,1.0,2 +32100,1,0.0,1,1.7413115501403809,101,0.0,2 +32101,1,1.0,1,1.6323130130767822,102,1.0,2 +32102,1,1.0,1,1.2703169584274292,103,0.0,2 +32103,1,1.0,1,1.7003121376037598,104,1.0,2 +32104,1,0.0,1,1.8683099746704102,105,1.0,2 +32105,1,1.0,1,1.9603087902069092,106,1.0,2 +32106,1,0.0,1,1.4193156957626343,107,0.0,2 +32107,1,1.0,1,1.4893147945404053,108,1.0,2 +32108,1,1.0,1,1.2603169679641724,109,1.0,2 +32109,1,1.0,1,1.4023158550262451,110,1.0,2 +32110,1,0.0,1,1.7423114776611328,111,0.0,2 +32111,1,1.0,1,1.4423153400421143,112,1.0,2 +32112,1,1.0,1,1.6343128681182861,113,1.0,2 +32113,1,1.0,1,1.640312910079956,114,1.0,2 +32114,1,1.0,1,1.361316442489624,115,1.0,2 +32115,1,1.0,1,1.3683162927627563,116,0.0,2 +32116,1,0.0,1,1.2373168468475342,117,0.0,2 +32117,1,0.0,1,1.3323167562484741,118,0.0,2 +32118,1,0.0,1,1.641312837600708,119,0.0,2 +32119,1,1.0,1,1.5073145627975464,120,1.0,2 +32120,1,1.0,1,1.1353167295455933,121,1.0,2 +32121,1,1.0,1,1.2643169164657593,122,1.0,2 +32122,1,1.0,1,1.3263168334960938,123,1.0,2 +32123,1,1.0,1,1.3333168029785156,124,0.0,2 +32124,1,0.0,1,1.6033133268356323,125,0.0,2 +32125,1,1.0,1,1.5523139238357544,126,0.0,2 +32126,1,1.0,1,1.6603126525878906,127,1.0,2 +32127,1,1.0,1,2.0413076877593994,128,1.0,2 +32128,1,1.0,1,1.3543164730072021,129,1.0,2 +32129,1,1.0,1,1.5073145627975464,130,0.0,2 +32130,1,1.0,1,1.780311107635498,131,0.0,2 +32131,1,1.0,1,1.734311580657959,132,1.0,2 +32132,1,1.0,1,1.4623150825500488,133,1.0,2 +32133,1,1.0,1,1.245316982269287,134,0.0,2 +32134,1,1.0,1,1.962308645248413,135,1.0,2 +32135,1,1.0,1,1.7933108806610107,136,1.0,2 +32136,1,1.0,1,1.6773123741149902,137,1.0,2 +32137,1,1.0,1,1.3343167304992676,138,1.0,2 +32138,1,1.0,1,1.2343169450759888,139,0.0,2 +32139,1,0.0,1,1.222316861152649,140,0.0,2 +32140,1,1.0,1,1.6433128118515015,141,1.0,2 +32141,1,1.0,1,1.3003170490264893,142,1.0,2 +32142,1,1.0,1,1.357316493988037,143,1.0,2 +32143,1,1.0,1,1.4433153867721558,144,1.0,2 +32144,1,1.0,1,1.3063170909881592,145,1.0,2 +32145,1,1.0,1,1.5733137130737305,146,1.0,2 +32146,1,1.0,1,1.5473140478134155,147,1.0,2 +32147,1,1.0,1,1.4693150520324707,148,0.0,2 +32148,1,0.0,1,1.4233156442642212,149,0.0,2 +32149,1,1.0,1,1.6763124465942383,150,1.0,2 +32150,1,1.0,1,1.7963109016418457,151,0.0,2 +32151,1,1.0,1,1.8193105459213257,152,1.0,2 +32152,1,0.0,1,1.9233092069625854,153,0.0,2 +32153,1,1.0,1,1.7093119621276855,154,1.0,2 +32154,1,1.0,1,1.2393169403076172,155,1.0,2 +32155,1,0.0,1,1.3473166227340698,156,1.0,2 +32156,1,1.0,1,1.3533165454864502,157,0.0,2 +32157,1,0.0,1,1.1703168153762817,158,1.0,2 +32158,1,0.0,1,1.527314305305481,159,0.0,2 +32159,1,0.0,1,1.692312240600586,160,1.0,2 +32160,1,0.0,1,1.2643169164657593,161,0.0,2 +32161,1,1.0,1,1.693312168121338,162,0.0,2 +32162,1,0.0,1,1.9053094387054443,163,0.0,2 +32163,1,1.0,1,1.4743149280548096,164,1.0,2 +32164,1,1.0,1,1.3233169317245483,165,1.0,2 +32165,1,1.0,1,1.3303167819976807,166,0.0,2 +32166,1,0.0,1,1.387316107749939,167,0.0,2 +32167,1,1.0,1,1.527314305305481,168,0.0,2 +32168,1,1.0,1,1.922309160232544,169,1.0,2 +32169,1,0.0,1,2.0443077087402344,170,0.0,2 +32170,1,1.0,1,1.4723149538040161,171,1.0,2 +32171,1,1.0,1,1.435315489768982,172,1.0,2 +32172,1,1.0,1,1.7973108291625977,173,0.0,2 +32173,1,1.0,1,1.4143157005310059,174,1.0,2 +32174,1,1.0,1,1.7163119316101074,175,1.0,2 +32175,1,1.0,1,1.3113170862197876,176,0.0,2 +32176,1,0.0,1,2.014307975769043,177,0.0,2 +32177,1,1.0,1,1.8503100872039795,178,1.0,2 +32178,1,1.0,1,1.5403140783309937,179,1.0,2 +32179,1,1.0,1,1.282317042350769,180,1.0,2 +32180,1,1.0,1,1.413315773010254,181,1.0,2 +32181,1,1.0,1,1.5353142023086548,182,1.0,2 +32182,1,1.0,1,2.309319019317627,183,0.0,2 +32183,1,0.0,1,1.256316900253296,184,0.0,2 +32184,1,0.0,1,1.2323168516159058,185,0.0,2 +32185,1,0.0,1,1.832310438156128,186,0.0,2 +32186,1,1.0,1,2.1903133392333984,187,0.0,2 +32187,1,0.0,1,1.2873170375823975,188,0.0,2 +32188,1,0.0,1,2.1473114490509033,189,0.0,2 +32189,1,0.0,1,1.361316442489624,190,0.0,2 +32190,1,0.0,1,1.7913109064102173,191,1.0,2 +32191,1,0.0,1,1.2603169679641724,192,1.0,2 +32192,1,0.0,1,1.2253168821334839,193,0.0,2 +32193,1,0.0,1,1.899309515953064,194,1.0,2 +32194,1,0.0,1,1.4033159017562866,195,0.0,2 +32195,1,0.0,1,1.8163106441497803,196,1.0,2 +32196,1,0.0,1,1.479314923286438,197,0.0,2 +32197,1,0.0,1,1.5093145370483398,198,0.0,2 +32198,1,0.0,1,1.8063106536865234,199,1.0,2 +32199,1,0.0,1,1.4293155670166016,200,1.0,2 +32200,1,0.0,1,1.289317011833191,201,0.0,2 +32201,1,0.0,1,2.069307804107666,202,0.0,2 +32202,1,1.0,1,1.4163156747817993,203,1.0,2 +32203,1,1.0,1,1.8863096237182617,204,1.0,2 +32204,1,1.0,1,1.289317011833191,205,0.0,2 +32205,1,1.0,1,2.0413076877593994,206,1.0,2 +32206,1,1.0,1,1.6553126573562622,207,1.0,2 +32207,1,0.0,1,1.7213118076324463,208,1.0,2 +32208,1,1.0,1,1.5143144130706787,209,1.0,2 +32209,1,0.0,1,1.1923167705535889,210,0.0,2 +32210,1,1.0,1,1.5083144903182983,211,1.0,2 +32211,1,1.0,1,1.4863147735595703,212,1.0,2 +32212,1,1.0,1,1.3673163652420044,213,1.0,2 +32213,1,0.0,1,2.010308027267456,214,0.0,2 +32214,1,1.0,1,1.5083144903182983,215,1.0,2 +32215,1,1.0,1,1.2943170070648193,216,1.0,2 +32216,1,1.0,1,1.3123170137405396,217,1.0,2 +32217,1,1.0,1,1.40531587600708,218,1.0,2 +32218,1,1.0,1,1.336316704750061,219,1.0,2 +32219,1,1.0,1,1.3533165454864502,220,0.0,2 +32220,1,1.0,1,1.212316870689392,221,1.0,2 +32221,1,1.0,1,1.4203156232833862,222,1.0,2 +32222,1,1.0,1,1.3463165760040283,223,1.0,2 +32223,1,1.0,1,1.4173157215118408,224,1.0,2 +32224,1,1.0,1,2.0443077087402344,225,1.0,2 +32225,1,1.0,1,1.3723162412643433,226,1.0,2 +32226,1,1.0,1,1.7293117046356201,227,0.0,2 +32227,1,1.0,1,1.6943120956420898,228,1.0,2 +32228,1,1.0,1,1.8453102111816406,229,0.0,2 +32229,1,1.0,1,2.126310348510742,230,1.0,2 +32230,1,1.0,1,1.615313172340393,231,1.0,2 +32231,1,1.0,1,1.4233156442642212,232,1.0,2 +32232,1,1.0,1,1.3943159580230713,233,0.0,2 +32233,1,1.0,1,1.3983159065246582,234,0.0,2 +32234,1,1.0,1,1.7243118286132812,235,1.0,2 +32235,1,1.0,1,1.4073158502578735,236,0.0,2 +32236,1,0.0,1,2.5093283653259277,237,0.0,2 +32237,1,1.0,1,1.3453166484832764,238,0.0,2 +32238,1,1.0,1,1.4183156490325928,239,0.0,2 +32239,1,0.0,1,1.4853148460388184,240,0.0,2 +32240,1,0.0,1,1.3333168029785156,241,0.0,2 +32241,1,0.0,1,1.8823096752166748,242,0.0,2 +32242,1,0.0,1,2.306318759918213,243,0.0,2 +32243,1,0.0,1,1.4203156232833862,244,0.0,2 +32244,1,1.0,1,1.8173105716705322,245,1.0,2 +32245,1,0.0,1,1.5063145160675049,246,1.0,2 +32246,1,0.0,1,1.3233169317245483,247,1.0,2 +32247,1,1.0,1,2.0283079147338867,248,1.0,2 +32248,1,1.0,1,1.427315592765808,249,1.0,2 +32249,1,0.0,1,1.5843136310577393,250,0.0,2 +32250,1,1.0,1,1.737311601638794,251,1.0,2 +32251,1,1.0,1,1.357316493988037,252,1.0,2 +32252,1,1.0,1,1.686312198638916,253,0.0,2 +32253,1,0.0,1,1.7243118286132812,254,0.0,2 +32254,1,1.0,1,1.59031343460083,255,0.0,2 +32255,1,0.0,1,1.313317060470581,256,0.0,2 +32256,1,1.0,1,1.2283169031143188,257,0.0,2 +32257,1,0.0,1,1.7753111124038696,258,1.0,2 +32258,1,0.0,1,2.281317710876465,259,0.0,2 +32259,1,0.0,1,1.2623169422149658,260,0.0,2 +32260,1,1.0,1,1.6203131675720215,261,1.0,2 +32261,1,1.0,1,1.7743110656738281,262,1.0,2 +32262,1,1.0,1,1.5623137950897217,263,0.0,2 +32263,1,1.0,1,1.4913147687911987,264,0.0,2 +32264,1,0.0,1,1.2733169794082642,265,1.0,2 +32265,1,0.0,1,1.4693150520324707,266,0.0,2 +32266,1,0.0,1,1.2913169860839844,267,0.0,2 +32267,1,0.0,1,1.592313528060913,268,1.0,2 +32268,1,0.0,1,1.475314974784851,269,0.0,2 +32269,1,1.0,1,1.780311107635498,270,1.0,2 +32270,1,1.0,1,1.361316442489624,271,0.0,2 +32271,1,1.0,1,1.6623125076293945,272,1.0,2 +32272,1,1.0,1,1.3523164987564087,273,1.0,2 +32273,1,1.0,1,1.3223168849945068,274,0.0,2 +32274,1,1.0,1,1.6973121166229248,275,1.0,2 +32275,1,1.0,1,1.3473166227340698,276,1.0,2 +32276,1,1.0,1,1.7573113441467285,277,1.0,2 +32277,1,1.0,1,1.6023132801055908,278,0.0,2 +32278,1,1.0,1,1.7413115501403809,279,1.0,2 +32279,1,1.0,1,1.9523088932037354,280,0.0,2 +32280,1,0.0,1,1.5663137435913086,281,0.0,2 +32281,1,1.0,1,2.2463159561157227,282,1.0,2 +32282,1,1.0,1,1.502314567565918,283,0.0,2 +32283,1,1.0,1,1.6963121891021729,284,1.0,2 +32284,1,1.0,1,1.3733162879943848,285,1.0,2 +32285,1,0.0,1,1.6103131771087646,286,0.0,2 +32286,1,0.0,1,1.2953170537948608,287,1.0,2 +32287,1,0.0,1,1.5563138723373413,288,0.0,2 +32288,1,1.0,1,1.571313738822937,289,1.0,2 +32289,1,1.0,1,1.4383153915405273,290,1.0,2 +32290,1,1.0,1,1.3423166275024414,291,1.0,2 +32291,1,1.0,1,1.5163143873214722,292,1.0,2 +32292,1,1.0,1,1.2613170146942139,293,1.0,2 +32293,1,1.0,1,1.2133169174194336,294,1.0,2 +32294,1,1.0,1,1.663312554359436,295,1.0,2 +32295,1,0.0,1,1.8093106746673584,296,0.0,2 +32296,1,1.0,1,1.8463101387023926,297,1.0,2 +32297,1,1.0,1,1.336316704750061,298,0.0,2 +32298,1,0.0,1,1.3483165502548218,299,0.0,2 +32299,1,1.0,1,1.252316951751709,300,1.0,2 +32300,1,1.0,1,1.5433140993118286,301,1.0,2 +32301,1,1.0,1,1.546314001083374,302,0.0,2 +32302,1,1.0,1,1.5403140783309937,303,1.0,2 +32303,1,1.0,1,1.362316370010376,304,0.0,2 +32304,1,0.0,1,1.4693150520324707,305,1.0,2 +32305,1,0.0,1,1.3163169622421265,306,0.0,2 +32306,1,0.0,1,1.5693137645721436,307,1.0,2 +32307,1,0.0,1,1.2103168964385986,308,0.0,2 +32308,1,0.0,1,1.4263155460357666,309,1.0,2 +32309,1,0.0,1,1.343316674232483,310,0.0,2 +32310,1,0.0,1,1.549314022064209,311,0.0,2 +32311,1,1.0,1,1.5483139753341675,312,0.0,2 +32312,1,0.0,1,1.3733162879943848,313,0.0,2 +32313,1,0.0,1,1.3993159532546997,314,1.0,2 +32314,1,0.0,1,1.5823135375976562,315,0.0,2 +32315,1,0.0,1,1.8013107776641846,316,0.0,2 +32316,1,0.0,1,2.310318946838379,317,0.0,2 +32317,1,0.0,1,1.6913121938705444,318,0.0,2 +32318,1,0.0,1,1.191316843032837,319,1.0,2 +32319,1,0.0,1,1.2043168544769287,320,0.0,2 +32320,1,1.0,1,1.6653125286102295,321,0.0,2 +32321,1,0.0,1,1.4823148250579834,322,0.0,2 +32322,1,0.0,1,1.2903170585632324,323,0.0,2 +32323,1,0.0,1,1.2173168659210205,324,0.0,2 +32324,1,0.0,1,1.3853161334991455,325,0.0,2 +32325,1,1.0,1,1.3493165969848633,326,1.0,2 +32326,1,1.0,1,1.3303167819976807,327,1.0,2 +32327,1,1.0,1,1.4453153610229492,328,1.0,2 +32328,1,1.0,1,1.61931312084198,329,1.0,2 +32329,1,1.0,1,1.3913160562515259,330,0.0,2 +32330,1,1.0,1,1.410315752029419,331,1.0,2 +32331,1,1.0,1,1.4443153142929077,332,1.0,2 +32332,1,1.0,1,1.343316674232483,333,1.0,2 +32333,1,1.0,1,1.8753098249435425,334,1.0,2 +32334,1,1.0,1,1.553313970565796,335,0.0,2 +32335,1,0.0,1,1.413315773010254,336,1.0,2 +32336,1,0.0,1,1.3213169574737549,337,0.0,2 +32337,1,0.0,1,1.5783135890960693,338,0.0,2 +32338,1,0.0,1,1.6223130226135254,339,0.0,2 +32339,1,0.0,1,1.736311674118042,340,0.0,2 +32340,1,0.0,1,1.2063168287277222,341,1.0,2 +32341,1,0.0,1,1.4903147220611572,342,0.0,2 +32342,1,1.0,1,2.289318084716797,343,1.0,2 +32343,1,1.0,1,1.5843136310577393,344,0.0,2 +32344,1,0.0,1,1.3333168029785156,345,0.0,2 +32345,1,1.0,1,1.3933160305023193,346,1.0,2 +32346,1,0.0,1,1.9553087949752808,347,0.0,2 +32347,1,1.0,1,1.3113170862197876,348,1.0,2 +32348,1,1.0,1,1.7143118381500244,349,0.0,2 +32349,1,0.0,1,1.1843167543411255,350,0.0,2 +32350,1,1.0,1,1.546314001083374,351,0.0,2 +32351,1,1.0,1,2.288318157196045,352,1.0,2 +32352,1,1.0,1,1.2753169536590576,353,1.0,2 +32353,1,1.0,1,1.4253156185150146,354,1.0,2 +32354,1,1.0,1,1.7523114681243896,355,0.0,2 +32355,1,1.0,1,2.071307897567749,356,1.0,2 +32356,1,1.0,1,1.7483115196228027,357,1.0,2 +32357,1,1.0,1,1.663312554359436,358,0.0,2 +32358,1,0.0,1,1.366316318511963,359,0.0,2 +32359,1,0.0,1,1.380316138267517,360,0.0,2 +32360,1,0.0,1,1.4683150053024292,361,0.0,2 +32361,1,1.0,1,1.6183130741119385,362,1.0,2 +32362,1,1.0,1,1.8373103141784668,363,1.0,2 +32363,1,1.0,1,1.3763161897659302,364,1.0,2 +32364,1,1.0,1,1.644312858581543,365,1.0,2 +32365,1,1.0,1,1.8863096237182617,366,1.0,2 +32366,1,1.0,1,1.245316982269287,367,0.0,2 +32367,1,1.0,1,1.5873135328292847,368,0.0,2 +32368,1,0.0,1,1.3233169317245483,369,1.0,2 +32369,1,0.0,1,1.1113166809082031,370,0.0,2 +32370,1,0.0,1,1.384316086769104,371,0.0,2 +32371,1,1.0,1,1.5143144130706787,372,1.0,2 +32372,1,1.0,1,1.2473169565200806,373,0.0,2 +32373,1,1.0,1,1.6123132705688477,374,1.0,2 +32374,1,1.0,1,1.4153157472610474,375,0.0,2 +32375,1,1.0,1,1.6323130130767822,376,1.0,2 +32376,1,1.0,1,1.6123132705688477,377,1.0,2 +32377,1,1.0,1,1.2033168077468872,378,1.0,2 +32378,1,0.0,1,1.4113157987594604,379,1.0,2 +32379,1,1.0,1,1.7213118076324463,380,1.0,2 +32380,1,1.0,1,1.56731379032135,381,0.0,2 +32381,1,0.0,1,1.5893135070800781,382,0.0,2 +32382,1,1.0,1,1.4863147735595703,383,0.0,2 +32383,1,0.0,1,1.427315592765808,384,0.0,2 +32384,1,0.0,1,1.707311987876892,385,0.0,2 +32385,1,0.0,1,1.2723169326782227,386,1.0,2 +32386,1,0.0,1,1.2943170070648193,387,0.0,2 +32387,1,0.0,1,2.533329486846924,388,0.0,2 +32388,1,0.0,1,1.340316653251648,389,0.0,2 +32389,1,0.0,1,1.289317011833191,390,0.0,2 +32390,1,0.0,1,1.692312240600586,391,1.0,2 +32391,1,0.0,1,1.5853135585784912,392,1.0,2 +32392,1,0.0,1,1.8933095932006836,393,0.0,2 +32393,1,0.0,1,2.4363250732421875,394,0.0,2 +32394,1,1.0,1,1.7253117561340332,395,1.0,2 +32395,1,1.0,1,1.3813161849975586,396,0.0,2 +32396,1,1.0,1,1.317317008972168,397,0.0,2 +32397,1,1.0,1,1.7273117303848267,398,1.0,2 +32398,1,1.0,1,1.2973170280456543,399,0.0,2 +32399,1,0.0,1,1.4863147735595703,400,0.0,2 +32400,1,0.0,1,2.342320442199707,401,0.0,2 +32401,1,1.0,1,1.6593126058578491,402,0.0,2 +32402,1,0.0,1,1.1923167705535889,403,1.0,2 +32403,1,0.0,1,1.2083168029785156,404,0.0,2 +32404,1,1.0,1,1.7253117561340332,405,1.0,2 +32405,1,1.0,1,1.4163156747817993,406,1.0,2 +32406,1,1.0,1,1.6283130645751953,407,1.0,2 +32407,1,1.0,1,1.310317039489746,408,1.0,2 +32408,1,1.0,1,1.2023168802261353,409,1.0,2 +32409,1,1.0,1,1.4363154172897339,410,1.0,2 +32410,1,0.0,1,1.6063132286071777,411,0.0,2 +32411,1,1.0,1,1.6163132190704346,412,1.0,2 +32412,1,1.0,1,1.3283168077468872,413,1.0,2 +32413,1,1.0,1,1.6213130950927734,414,0.0,2 +32414,1,0.0,1,1.289317011833191,415,1.0,2 +32415,1,0.0,1,1.7673112154006958,416,0.0,2 +32416,1,0.0,1,1.5403140783309937,417,1.0,2 +32417,1,0.0,1,1.3093171119689941,418,0.0,2 +32418,1,1.0,1,1.5583138465881348,419,1.0,2 +32419,1,1.0,1,1.258316993713379,420,1.0,2 +32420,1,1.0,1,1.361316442489624,421,1.0,2 +32421,1,1.0,1,1.2873170375823975,422,1.0,2 +32422,1,1.0,1,1.1673167943954468,423,1.0,2 +32423,1,1.0,1,1.6473127603530884,424,1.0,2 +32424,1,1.0,1,1.335316777229309,425,0.0,2 +32425,1,0.0,1,1.5763137340545654,426,0.0,2 +32426,1,1.0,1,1.644312858581543,427,1.0,2 +32427,1,1.0,1,1.313317060470581,428,1.0,2 +32428,1,0.0,1,1.2873170375823975,429,1.0,2 +32429,1,0.0,1,1.6503126621246338,430,1.0,2 +32430,1,0.0,1,2.103309392929077,431,1.0,2 +32431,1,1.0,1,1.3553165197372437,432,1.0,2 +32432,1,1.0,1,1.8193105459213257,433,1.0,2 +32433,1,1.0,1,1.6093132495880127,434,1.0,2 +32434,1,0.0,1,1.6293129920959473,435,0.0,2 +32435,1,0.0,1,1.4843147993087769,436,1.0,2 +32436,1,1.0,1,1.3753162622451782,437,1.0,2 +32437,1,1.0,1,1.7983107566833496,438,1.0,2 +32438,1,1.0,1,1.253316879272461,439,1.0,2 +32439,1,1.0,1,1.6803123950958252,440,0.0,2 +32440,1,0.0,1,1.6593126058578491,441,0.0,2 +32441,1,1.0,1,2.347320795059204,442,0.0,2 +32442,1,0.0,1,1.1593167781829834,443,0.0,2 +32443,1,0.0,1,1.8503100872039795,444,0.0,2 +32444,1,0.0,1,1.9493088722229004,445,0.0,2 +32445,1,0.0,1,1.3783161640167236,446,0.0,2 +32446,1,0.0,1,2.082308292388916,447,1.0,2 +32447,1,0.0,1,1.2263169288635254,448,0.0,2 +32448,1,0.0,1,1.6113132238388062,449,0.0,2 +32449,1,0.0,1,1.2373168468475342,450,1.0,2 +32450,1,1.0,1,1.6833122968673706,451,1.0,2 +32451,1,0.0,1,1.3373167514801025,452,0.0,2 +32452,1,1.0,1,1.4443153142929077,453,0.0,2 +32453,1,1.0,1,1.7623112201690674,454,1.0,2 +32454,1,1.0,1,1.7883110046386719,455,0.0,2 +32455,1,0.0,1,1.498314619064331,456,0.0,2 +32456,1,1.0,1,1.4903147220611572,457,0.0,2 +32457,1,0.0,1,1.5343141555786133,458,0.0,2 +32458,1,1.0,1,1.6873122453689575,459,1.0,2 +32459,1,0.0,1,1.872309923171997,460,0.0,2 +32460,1,1.0,1,1.5823135375976562,461,1.0,2 +32461,1,1.0,1,1.7163119316101074,462,1.0,2 +32462,1,1.0,1,1.4783148765563965,463,1.0,2 +32463,1,0.0,1,1.5293142795562744,464,1.0,2 +32464,1,1.0,1,1.4173157215118408,465,1.0,2 +32465,1,0.0,1,1.8843097686767578,466,0.0,2 +32466,1,1.0,1,1.5103144645690918,467,0.0,2 +32467,1,0.0,1,1.645312786102295,468,0.0,2 +32468,1,0.0,1,2.064307689666748,469,0.0,2 +32469,1,0.0,1,1.3283168077468872,470,0.0,2 +32470,1,0.0,1,1.6023132801055908,471,0.0,2 +32471,1,0.0,1,1.8093106746673584,472,1.0,2 +32472,1,0.0,1,1.5803136825561523,473,0.0,2 +32473,1,0.0,1,1.1363166570663452,474,1.0,2 +32474,1,0.0,1,1.3423166275024414,475,1.0,2 +32475,1,0.0,1,1.453315258026123,476,1.0,2 +32476,1,0.0,1,1.1803168058395386,477,1.0,2 +32477,1,0.0,1,1.3633164167404175,478,0.0,2 +32478,1,1.0,1,1.5683138370513916,479,1.0,2 +32479,1,1.0,1,1.340316653251648,480,1.0,2 +32480,1,1.0,1,1.409315824508667,481,0.0,2 +32481,1,0.0,1,1.5063145160675049,482,1.0,2 +32482,1,0.0,1,1.8043107986450195,483,0.0,2 +32483,1,1.0,1,1.9103093147277832,484,0.0,2 +32484,1,1.0,1,1.594313383102417,485,0.0,2 +32485,1,1.0,1,1.6913121938705444,486,1.0,2 +32486,1,1.0,1,1.243316888809204,487,1.0,2 +32487,1,1.0,1,1.6353129148483276,488,1.0,2 +32488,1,1.0,1,1.2963169813156128,489,1.0,2 +32489,1,1.0,1,1.9283092021942139,490,1.0,2 +32490,1,1.0,1,1.2513169050216675,491,1.0,2 +32491,1,1.0,1,1.4713150262832642,492,1.0,2 +32492,1,1.0,1,1.644312858581543,493,1.0,2 +32493,1,1.0,1,1.388316035270691,494,0.0,2 +32494,1,1.0,1,2.0653076171875,495,1.0,2 +32495,1,1.0,1,1.5683138370513916,496,1.0,2 +32496,1,1.0,1,1.222316861152649,497,0.0,2 +32497,1,0.0,1,1.5413141250610352,498,1.0,2 +32498,1,0.0,1,1.9333090782165527,499,0.0,2 +32499,1,0.0,1,1.8503100872039795,500,0.0,2 +32500,1,0.0,2,1.575313687324524,1,0.0,2 +32501,1,1.0,2,1.99530827999115,2,0.0,2 +32502,1,0.0,2,1.8213105201721191,3,0.0,2 +32503,1,1.0,2,1.9443089962005615,4,1.0,2 +32504,1,1.0,2,1.3343167304992676,5,1.0,2 +32505,1,1.0,2,1.5823135375976562,6,0.0,2 +32506,1,0.0,2,1.2313169240951538,7,1.0,2 +32507,1,0.0,2,1.3293168544769287,8,0.0,2 +32508,1,1.0,2,1.3453166484832764,9,0.0,2 +32509,1,1.0,2,1.2403168678283691,10,0.0,2 +32510,1,0.0,2,2.115309953689575,11,0.0,2 +32511,1,0.0,2,1.8573100566864014,12,1.0,2 +32512,1,0.0,2,1.2053167819976807,13,0.0,2 +32513,1,1.0,2,1.450315237045288,14,0.0,2 +32514,1,0.0,2,1.7923109531402588,15,0.0,2 +32515,1,1.0,2,1.921309232711792,16,1.0,2 +32516,1,1.0,2,1.2073168754577637,17,1.0,2 +32517,1,1.0,2,1.4493153095245361,18,1.0,2 +32518,1,1.0,2,1.4563151597976685,19,1.0,2 +32519,1,1.0,2,1.3203169107437134,20,1.0,2 +32520,1,1.0,2,1.427315592765808,21,0.0,2 +32521,1,1.0,2,1.5793136358261108,22,0.0,2 +32522,1,0.0,2,1.785310983657837,23,1.0,2 +32523,1,0.0,2,1.3523164987564087,24,0.0,2 +32524,1,0.0,2,1.3163169622421265,25,1.0,2 +32525,1,0.0,2,1.4383153915405273,26,0.0,2 +32526,1,1.0,2,1.6113132238388062,27,0.0,2 +32527,1,0.0,2,1.4373154640197754,28,0.0,2 +32528,1,0.0,2,1.2923170328140259,29,0.0,2 +32529,1,1.0,2,1.3333168029785156,30,0.0,2 +32530,1,1.0,2,2.1643123626708984,31,0.0,2 +32531,1,0.0,2,1.1903167963027954,32,0.0,2 +32532,1,0.0,2,1.969308614730835,33,0.0,2 +32533,1,0.0,2,2.1123099327087402,34,1.0,2 +32534,1,0.0,2,1.7613112926483154,35,1.0,2 +32535,1,0.0,2,1.2333168983459473,36,1.0,2 +32536,1,0.0,2,1.339316725730896,37,1.0,2 +32537,1,0.0,2,1.313317060470581,38,1.0,2 +32538,1,0.0,2,1.3203169107437134,39,0.0,2 +32539,1,1.0,2,1.3073170185089111,40,0.0,2 +32540,1,1.0,2,1.4293155670166016,41,0.0,2 +32541,1,0.0,2,1.361316442489624,42,1.0,2 +32542,1,0.0,2,1.2593169212341309,43,1.0,2 +32543,1,0.0,2,1.2253168821334839,44,1.0,2 +32544,1,0.0,2,1.1733167171478271,45,0.0,2 +32545,1,0.0,2,1.2733169794082642,46,0.0,2 +32546,1,1.0,2,1.6353129148483276,47,0.0,2 +32547,1,0.0,2,1.4943146705627441,48,1.0,2 +32548,1,0.0,2,1.2973170280456543,49,1.0,2 +32549,1,0.0,2,1.3783161640167236,50,1.0,2 +32550,1,0.0,2,1.1503167152404785,51,0.0,2 +32551,1,1.0,2,1.6773123741149902,52,1.0,2 +32552,1,0.0,2,1.4913147687911987,53,0.0,2 +32553,1,1.0,2,1.3323167562484741,54,0.0,2 +32554,1,1.0,2,1.8273104429244995,55,0.0,2 +32555,1,1.0,2,1.4693150520324707,56,1.0,2 +32556,1,1.0,2,1.387316107749939,57,0.0,2 +32557,1,1.0,2,2.0483076572418213,58,1.0,2 +32558,1,1.0,2,1.3643163442611694,59,0.0,2 +32559,1,0.0,2,1.732311725616455,60,1.0,2 +32560,1,0.0,2,1.409315824508667,61,1.0,2 +32561,1,0.0,2,1.2923170328140259,62,1.0,2 +32562,1,0.0,2,1.880309820175171,63,0.0,2 +32563,1,1.0,2,1.4993146657943726,64,0.0,2 +32564,1,0.0,2,1.6213130950927734,65,1.0,2 +32565,1,0.0,2,1.4003158807754517,66,0.0,2 +32566,1,0.0,2,1.4293155670166016,67,0.0,2 +32567,1,0.0,2,1.5223143100738525,68,1.0,2 +32568,1,1.0,2,1.7143118381500244,69,1.0,2 +32569,1,1.0,2,1.9993082284927368,70,1.0,2 +32570,1,0.0,2,1.6613125801086426,71,0.0,2 +32571,1,1.0,2,1.4963146448135376,72,0.0,2 +32572,1,1.0,2,1.475314974784851,73,0.0,2 +32573,1,0.0,2,1.6753123998641968,74,1.0,2 +32574,1,0.0,2,1.2373168468475342,75,0.0,2 +32575,1,0.0,2,1.314316987991333,76,1.0,2 +32576,1,0.0,2,1.5593138933181763,77,1.0,2 +32577,1,0.0,2,1.1843167543411255,78,0.0,2 +32578,1,0.0,2,1.8003108501434326,79,1.0,2 +32579,1,0.0,2,1.4143157005310059,80,1.0,2 +32580,1,0.0,2,1.3553165197372437,81,1.0,2 +32581,1,0.0,2,1.5373141765594482,82,0.0,2 +32582,1,1.0,2,1.4853148460388184,83,1.0,2 +32583,1,1.0,2,1.2763170003890991,84,1.0,2 +32584,1,1.0,2,1.732311725616455,85,0.0,2 +32585,1,0.0,2,1.410315752029419,86,0.0,2 +32586,1,1.0,2,1.5603138208389282,87,0.0,2 +32587,1,1.0,2,1.7283117771148682,88,0.0,2 +32588,1,0.0,2,2.1653122901916504,89,1.0,2 +32589,1,0.0,2,1.1593167781829834,90,1.0,2 +32590,1,0.0,2,1.2853169441223145,91,1.0,2 +32591,1,0.0,2,1.7953108549118042,92,1.0,2 +32592,1,0.0,2,1.2873170375823975,93,0.0,2 +32593,1,0.0,2,1.2003167867660522,94,0.0,2 +32594,1,1.0,2,1.3923159837722778,95,0.0,2 +32595,1,0.0,2,1.432315468788147,96,1.0,2 +32596,1,0.0,2,1.1973168849945068,97,0.0,2 +32597,1,0.0,2,1.3453166484832764,98,1.0,2 +32598,1,0.0,2,1.3313168287277222,99,1.0,2 +32599,1,0.0,2,1.3313168287277222,100,1.0,2 +32600,1,0.0,2,1.3043169975280762,101,1.0,2 +32601,1,0.0,2,1.2023168802261353,102,1.0,2 +32602,1,0.0,2,1.3113170862197876,103,0.0,2 +32603,1,0.0,2,1.4923146963119507,104,0.0,2 +32604,1,0.0,2,1.9113093614578247,105,0.0,2 +32605,1,1.0,2,1.40531587600708,106,1.0,2 +32606,1,1.0,2,1.6913121938705444,107,1.0,2 +32607,1,0.0,2,1.2633169889450073,108,0.0,2 +32608,1,1.0,2,1.5913134813308716,109,1.0,2 +32609,1,1.0,2,1.5063145160675049,110,1.0,2 +32610,1,1.0,2,1.380316138267517,111,1.0,2 +32611,1,1.0,2,1.3733162879943848,112,1.0,2 +32612,1,1.0,2,1.2253168821334839,113,1.0,2 +32613,1,1.0,2,1.3693163394927979,114,0.0,2 +32614,1,0.0,2,1.3163169622421265,115,0.0,2 +32615,1,1.0,2,1.6163132190704346,116,0.0,2 +32616,1,1.0,2,1.498314619064331,117,1.0,2 +32617,1,0.0,2,1.2703169584274292,118,1.0,2 +32618,1,0.0,2,1.4433153867721558,119,1.0,2 +32619,1,0.0,2,1.3053170442581177,120,1.0,2 +32620,1,0.0,2,1.3983159065246582,121,0.0,2 +32621,1,1.0,2,1.4963146448135376,122,1.0,2 +32622,1,1.0,2,1.637312889099121,123,0.0,2 +32623,1,0.0,2,1.413315773010254,124,0.0,2 +32624,1,1.0,2,1.2873170375823975,125,1.0,2 +32625,1,1.0,2,1.5033146142959595,126,0.0,2 +32626,1,1.0,2,1.9923083782196045,127,0.0,2 +32627,1,1.0,2,1.8103106021881104,128,1.0,2 +32628,1,1.0,2,1.644312858581543,129,1.0,2 +32629,1,1.0,2,1.4213156700134277,130,1.0,2 +32630,1,1.0,2,1.692312240600586,131,0.0,2 +32631,1,0.0,2,1.6133131980895996,132,0.0,2 +32632,1,1.0,2,2.1793129444122314,133,0.0,2 +32633,1,0.0,2,1.409315824508667,134,0.0,2 +32634,1,1.0,2,1.2173168659210205,135,1.0,2 +32635,1,1.0,2,1.2013168334960938,136,0.0,2 +32636,1,1.0,2,1.4243155717849731,137,0.0,2 +32637,1,0.0,2,1.8593100309371948,138,1.0,2 +32638,1,0.0,2,1.6063132286071777,139,0.0,2 +32639,1,0.0,2,1.336316704750061,140,1.0,2 +32640,1,0.0,2,1.5853135585784912,141,1.0,2 +32641,1,0.0,2,1.3343167304992676,142,0.0,2 +32642,1,0.0,2,1.5993133783340454,143,1.0,2 +32643,1,0.0,2,2.021307945251465,144,0.0,2 +32644,1,0.0,2,1.3093171119689941,145,1.0,2 +32645,1,0.0,2,1.3533165454864502,146,1.0,2 +32646,1,0.0,2,1.3313168287277222,147,1.0,2 +32647,1,0.0,2,1.282317042350769,148,1.0,2 +32648,1,0.0,2,1.249316930770874,149,1.0,2 +32649,1,0.0,2,1.40531587600708,150,0.0,2 +32650,1,0.0,2,1.6803123950958252,151,1.0,2 +32651,1,0.0,2,1.2403168678283691,152,0.0,2 +32652,1,1.0,2,1.3943159580230713,153,0.0,2 +32653,1,0.0,2,1.218316912651062,154,1.0,2 +32654,1,0.0,2,2.083308458328247,155,1.0,2 +32655,1,0.0,2,1.3553165197372437,156,0.0,2 +32656,1,0.0,2,1.6323130130767822,157,1.0,2 +32657,1,0.0,2,1.3633164167404175,158,1.0,2 +32658,1,0.0,2,1.3543164730072021,159,0.0,2 +32659,1,0.0,2,1.185316801071167,160,1.0,2 +32660,1,0.0,2,1.7573113441467285,161,1.0,2 +32661,1,0.0,2,1.3503165245056152,162,1.0,2 +32662,1,0.0,2,1.550313949584961,163,1.0,2 +32663,1,0.0,2,1.4443153142929077,164,0.0,2 +32664,1,0.0,2,1.3633164167404175,165,1.0,2 +32665,1,1.0,2,1.289317011833191,166,1.0,2 +32666,1,1.0,2,1.733311653137207,167,0.0,2 +32667,1,0.0,2,1.357316493988037,168,1.0,2 +32668,1,0.0,2,1.4033159017562866,169,0.0,2 +32669,1,0.0,2,1.2543169260025024,170,1.0,2 +32670,1,0.0,2,1.5043145418167114,171,0.0,2 +32671,1,0.0,2,1.8413102626800537,172,1.0,2 +32672,1,0.0,2,1.5433140993118286,173,0.0,2 +32673,1,0.0,2,1.5063145160675049,174,1.0,2 +32674,1,0.0,2,1.1833168268203735,175,1.0,2 +32675,1,0.0,2,1.498314619064331,176,0.0,2 +32676,1,0.0,2,1.7033120393753052,177,0.0,2 +32677,1,0.0,2,1.3993159532546997,178,1.0,2 +32678,1,0.0,2,1.9813084602355957,179,1.0,2 +32679,1,0.0,2,1.3023170232772827,180,0.0,2 +32680,1,1.0,2,1.5373141765594482,181,0.0,2 +32681,1,0.0,2,1.9083094596862793,182,0.0,2 +32682,1,1.0,2,1.3413166999816895,183,1.0,2 +32683,1,1.0,2,1.5563138723373413,184,0.0,2 +32684,1,0.0,2,1.475314974784851,185,1.0,2 +32685,1,0.0,2,1.3923159837722778,186,0.0,2 +32686,1,1.0,2,1.498314619064331,187,1.0,2 +32687,1,1.0,2,1.3823161125183105,188,0.0,2 +32688,1,1.0,2,1.3043169975280762,189,1.0,2 +32689,1,1.0,2,1.3043169975280762,190,0.0,2 +32690,1,0.0,2,1.6163132190704346,191,1.0,2 +32691,1,1.0,2,2.063307523727417,192,1.0,2 +32692,1,0.0,2,1.8313103914260864,193,0.0,2 +32693,1,1.0,2,1.5223143100738525,194,0.0,2 +32694,1,1.0,2,1.968308687210083,195,0.0,2 +32695,1,0.0,2,1.826310396194458,196,1.0,2 +32696,1,0.0,2,1.5993133783340454,197,0.0,2 +32697,1,0.0,2,1.6783123016357422,198,0.0,2 +32698,1,1.0,2,1.9903082847595215,199,1.0,2 +32699,1,1.0,2,1.4993146657943726,200,0.0,2 +32700,1,0.0,2,1.5003145933151245,201,0.0,2 +32701,1,1.0,2,1.830310344696045,202,1.0,2 +32702,1,1.0,2,1.4013159275054932,203,0.0,2 +32703,1,1.0,2,2.015307903289795,204,0.0,2 +32704,1,0.0,2,2.1663122177124023,205,0.0,2 +32705,1,0.0,2,1.965308666229248,206,1.0,2 +32706,1,0.0,2,1.4653151035308838,207,1.0,2 +32707,1,0.0,2,1.1783168315887451,208,1.0,2 +32708,1,0.0,2,1.148316740989685,209,1.0,2 +32709,1,0.0,2,1.7753111124038696,210,1.0,2 +32710,1,0.0,2,1.6073132753372192,211,1.0,2 +32711,1,0.0,2,1.2043168544769287,212,1.0,2 +32712,1,0.0,2,1.2753169536590576,213,0.0,2 +32713,1,0.0,2,1.6363129615783691,214,1.0,2 +32714,1,0.0,2,1.830310344696045,215,0.0,2 +32715,1,0.0,2,1.3303167819976807,216,0.0,2 +32716,1,0.0,2,1.2473169565200806,217,1.0,2 +32717,1,0.0,2,1.453315258026123,218,0.0,2 +32718,1,0.0,2,1.6773123741149902,219,1.0,2 +32719,1,0.0,2,1.6593126058578491,220,1.0,2 +32720,1,0.0,2,1.1693167686462402,221,0.0,2 +32721,1,0.0,2,1.4143157005310059,222,0.0,2 +32722,1,0.0,2,1.245316982269287,223,0.0,2 +32723,1,0.0,2,1.4183156490325928,224,0.0,2 +32724,1,1.0,2,1.5473140478134155,225,1.0,2 +32725,1,1.0,2,1.335316777229309,226,0.0,2 +32726,1,1.0,2,2.317319393157959,227,1.0,2 +32727,1,1.0,2,1.924309253692627,228,1.0,2 +32728,1,1.0,2,1.3563164472579956,229,0.0,2 +32729,1,0.0,2,1.3533165454864502,230,0.0,2 +32730,1,0.0,2,1.8383102416992188,231,1.0,2 +32731,1,0.0,2,1.6873122453689575,232,1.0,2 +32732,1,0.0,2,1.2483168840408325,233,0.0,2 +32733,1,1.0,2,2.1333107948303223,234,0.0,2 +32734,1,1.0,2,1.4333155155181885,235,1.0,2 +32735,1,0.0,2,1.3163169622421265,236,1.0,2 +32736,1,1.0,2,2.122310161590576,237,0.0,2 +32737,1,0.0,2,1.4953147172927856,238,1.0,2 +32738,1,0.0,2,1.7753111124038696,239,1.0,2 +32739,1,0.0,2,1.176316738128662,240,1.0,2 +32740,1,0.0,2,1.4883147478103638,241,1.0,2 +32741,1,0.0,2,1.5593138933181763,242,0.0,2 +32742,1,1.0,2,1.6603126525878906,243,1.0,2 +32743,1,1.0,2,1.6333129405975342,244,1.0,2 +32744,1,1.0,2,1.4953147172927856,245,1.0,2 +32745,1,1.0,2,1.2353168725967407,246,1.0,2 +32746,1,1.0,2,1.310317039489746,247,1.0,2 +32747,1,1.0,2,1.3413166999816895,248,1.0,2 +32748,1,1.0,2,1.545314073562622,249,1.0,2 +32749,1,1.0,2,1.5783135890960693,250,1.0,2 +32750,1,1.0,2,1.2753169536590576,251,0.0,2 +32751,1,0.0,2,1.310317039489746,252,0.0,2 +32752,1,1.0,2,1.8873096704483032,253,1.0,2 +32753,1,1.0,2,1.388316035270691,254,0.0,2 +32754,1,0.0,2,1.5303142070770264,255,0.0,2 +32755,1,1.0,2,2.0233078002929688,256,1.0,2 +32756,1,1.0,2,1.7413115501403809,257,1.0,2 +32757,1,1.0,2,1.6213130950927734,258,0.0,2 +32758,1,1.0,2,1.6643126010894775,259,1.0,2 +32759,1,1.0,2,1.435315489768982,260,0.0,2 +32760,1,0.0,2,1.3093171119689941,261,0.0,2 +32761,1,1.0,2,1.383316159248352,262,0.0,2 +32762,1,0.0,2,1.6493127346038818,263,1.0,2 +32763,1,0.0,2,1.2783169746398926,264,0.0,2 +32764,1,0.0,2,1.7003121376037598,265,0.0,2 +32765,1,1.0,2,2.0363078117370605,266,1.0,2 +32766,1,1.0,2,1.4303154945373535,267,0.0,2 +32767,1,0.0,2,1.2133169174194336,268,0.0,2 +32768,1,1.0,2,1.8753098249435425,269,0.0,2 +32769,1,0.0,2,1.5593138933181763,270,1.0,2 +32770,1,0.0,2,1.454315185546875,271,0.0,2 +32771,1,1.0,2,1.7233117818832397,272,1.0,2 +32772,1,1.0,2,1.5333142280578613,273,0.0,2 +32773,1,0.0,2,1.4033159017562866,274,1.0,2 +32774,1,0.0,2,1.5733137130737305,275,1.0,2 +32775,1,0.0,2,1.2593169212341309,276,0.0,2 +32776,1,0.0,2,1.5353142023086548,277,0.0,2 +32777,1,0.0,2,1.7953108549118042,278,1.0,2 +32778,1,0.0,2,1.869309902191162,279,0.0,2 +32779,1,0.0,2,1.730311632156372,280,1.0,2 +32780,1,0.0,2,2.121310234069824,281,1.0,2 +32781,1,0.0,2,1.715311884880066,282,1.0,2 +32782,1,0.0,2,1.970308542251587,283,0.0,2 +32783,1,1.0,2,1.7433115243911743,284,1.0,2 +32784,1,1.0,2,1.3813161849975586,285,0.0,2 +32785,1,0.0,2,1.5853135585784912,286,1.0,2 +32786,1,0.0,2,1.6963121891021729,287,1.0,2 +32787,1,0.0,2,1.5623137950897217,288,0.0,2 +32788,1,0.0,2,1.6263129711151123,289,0.0,2 +32789,1,1.0,2,1.4993146657943726,290,0.0,2 +32790,1,0.0,2,1.2673169374465942,291,1.0,2 +32791,1,0.0,2,1.1593167781829834,292,1.0,2 +32792,1,0.0,2,1.3293168544769287,293,1.0,2 +32793,1,0.0,2,1.2983170747756958,294,0.0,2 +32794,1,0.0,2,1.5893135070800781,295,0.0,2 +32795,1,1.0,2,1.40531587600708,296,1.0,2 +32796,1,1.0,2,1.4473153352737427,297,0.0,2 +32797,1,0.0,2,1.2773170471191406,298,0.0,2 +32798,1,0.0,2,1.2963169813156128,299,1.0,2 +32799,1,0.0,2,1.9593087434768677,300,1.0,2 +32800,1,0.0,2,1.7243118286132812,301,1.0,2 +32801,1,0.0,2,1.3773162364959717,302,0.0,2 +32802,1,0.0,2,1.313317060470581,303,1.0,2 +32803,1,0.0,2,1.1933168172836304,304,0.0,2 +32804,1,0.0,2,1.3453166484832764,305,1.0,2 +32805,1,0.0,2,1.388316035270691,306,1.0,2 +32806,1,0.0,2,1.2673169374465942,307,1.0,2 +32807,1,0.0,2,1.2813169956207275,308,0.0,2 +32808,1,1.0,2,1.685312271118164,309,1.0,2 +32809,1,1.0,2,1.2933170795440674,310,0.0,2 +32810,1,0.0,2,1.8343102931976318,311,1.0,2 +32811,1,0.0,2,1.686312198638916,312,1.0,2 +32812,1,0.0,2,1.4413154125213623,313,0.0,2 +32813,1,0.0,2,1.7353116273880005,314,0.0,2 +32814,1,1.0,2,1.7933108806610107,315,1.0,2 +32815,1,1.0,2,1.2943170070648193,316,1.0,2 +32816,1,0.0,2,1.6113132238388062,317,0.0,2 +32817,1,1.0,2,1.7683112621307373,318,0.0,2 +32818,1,0.0,2,1.6283130645751953,319,1.0,2 +32819,1,0.0,2,1.2743170261383057,320,0.0,2 +32820,1,1.0,2,1.5313142538070679,321,1.0,2 +32821,1,0.0,2,1.6763124465942383,322,0.0,2 +32822,1,1.0,2,1.3083170652389526,323,0.0,2 +32823,1,0.0,2,1.8713098764419556,324,1.0,2 +32824,1,0.0,2,1.3063170909881592,325,0.0,2 +32825,1,0.0,2,1.2813169956207275,326,1.0,2 +32826,1,1.0,2,1.2573169469833374,327,1.0,2 +32827,1,1.0,2,2.1983137130737305,328,0.0,2 +32828,1,0.0,2,1.2383168935775757,329,0.0,2 +32829,1,1.0,2,1.947308897972107,330,1.0,2 +32830,1,1.0,2,1.5653138160705566,331,1.0,2 +32831,1,1.0,2,1.2883169651031494,332,0.0,2 +32832,1,1.0,2,1.3543164730072021,333,0.0,2 +32833,1,1.0,2,1.528314232826233,334,1.0,2 +32834,1,1.0,2,1.6653125286102295,335,1.0,2 +32835,1,1.0,2,1.48031485080719,336,0.0,2 +32836,1,1.0,2,1.3943159580230713,337,0.0,2 +32837,1,1.0,2,1.3603163957595825,338,0.0,2 +32838,1,0.0,2,1.5623137950897217,339,1.0,2 +32839,1,0.0,2,1.5913134813308716,340,0.0,2 +32840,1,0.0,2,1.5593138933181763,341,1.0,2 +32841,1,0.0,2,1.3993159532546997,342,1.0,2 +32842,1,0.0,2,1.4463152885437012,343,0.0,2 +32843,1,0.0,2,1.9263091087341309,344,1.0,2 +32844,1,0.0,2,1.9943082332611084,345,1.0,2 +32845,1,0.0,2,1.2063168287277222,346,1.0,2 +32846,1,0.0,2,1.4523152112960815,347,1.0,2 +32847,1,0.0,2,1.4863147735595703,348,0.0,2 +32848,1,0.0,2,1.4513152837753296,349,0.0,2 +32849,1,0.0,2,1.5363141298294067,350,0.0,2 +32850,1,1.0,2,2.4063234329223633,351,0.0,2 +32851,1,1.0,2,1.7543113231658936,352,1.0,2 +32852,1,1.0,2,1.2253168821334839,353,1.0,2 +32853,1,1.0,2,1.4813148975372314,354,1.0,2 +32854,1,1.0,2,1.3273168802261353,355,0.0,2 +32855,1,0.0,2,1.553313970565796,356,0.0,2 +32856,1,1.0,2,1.962308645248413,357,0.0,2 +32857,1,1.0,2,1.6183130741119385,358,0.0,2 +32858,1,0.0,2,2.1573119163513184,359,0.0,2 +32859,1,0.0,2,1.550313949584961,360,1.0,2 +32860,1,0.0,2,1.3373167514801025,361,1.0,2 +32861,1,0.0,2,1.2723169326782227,362,0.0,2 +32862,1,0.0,2,1.9143092632293701,363,0.0,2 +32863,1,0.0,2,1.2173168659210205,364,1.0,2 +32864,1,0.0,2,1.6103131771087646,365,1.0,2 +32865,1,0.0,2,1.6283130645751953,366,0.0,2 +32866,1,0.0,2,1.7743110656738281,367,1.0,2 +32867,1,0.0,2,1.246316909790039,368,0.0,2 +32868,1,1.0,2,1.8213105201721191,369,0.0,2 +32869,1,1.0,2,1.3213169574737549,370,1.0,2 +32870,1,1.0,2,1.7043120861053467,371,0.0,2 +32871,1,0.0,2,1.7793110609054565,372,0.0,2 +32872,1,1.0,2,1.45731520652771,373,1.0,2 +32873,1,1.0,2,2.056307554244995,374,0.0,2 +32874,1,0.0,2,1.1313166618347168,375,0.0,2 +32875,1,1.0,2,1.3423166275024414,376,0.0,2 +32876,1,0.0,2,2.4873273372650146,377,0.0,2 +32877,1,1.0,2,1.5833135843276978,378,0.0,2 +32878,1,1.0,2,1.450315237045288,379,1.0,2 +32879,1,1.0,2,1.9933083057403564,380,0.0,2 +32880,1,1.0,2,1.2743170261383057,381,1.0,2 +32881,1,1.0,2,1.3243168592453003,382,1.0,2 +32882,1,1.0,2,1.222316861152649,383,1.0,2 +32883,1,1.0,2,1.2343169450759888,384,1.0,2 +32884,1,1.0,2,1.8233104944229126,385,0.0,2 +32885,1,1.0,2,1.8123106956481934,386,0.0,2 +32886,1,0.0,2,1.286316990852356,387,0.0,2 +32887,1,1.0,2,2.09830904006958,388,1.0,2 +32888,1,1.0,2,1.458315134048462,389,1.0,2 +32889,1,1.0,2,1.2063168287277222,390,0.0,2 +32890,1,0.0,2,1.9133093357086182,391,1.0,2 +32891,1,0.0,2,1.1403167247772217,392,1.0,2 +32892,1,0.0,2,1.2413169145584106,393,1.0,2 +32893,1,0.0,2,1.5193144083023071,394,1.0,2 +32894,1,0.0,2,1.6113132238388062,395,0.0,2 +32895,1,1.0,2,1.4693150520324707,396,0.0,2 +32896,1,0.0,2,1.693312168121338,397,1.0,2 +32897,1,0.0,2,1.6833122968673706,398,0.0,2 +32898,1,0.0,2,1.3853161334991455,399,0.0,2 +32899,1,0.0,2,1.9673086404800415,400,0.0,2 +32900,1,0.0,2,1.2733169794082642,401,1.0,2 +32901,1,0.0,2,1.3443166017532349,402,0.0,2 +32902,1,0.0,2,1.3333168029785156,403,1.0,2 +32903,1,0.0,2,1.2703169584274292,404,1.0,2 +32904,1,0.0,2,1.3983159065246582,405,0.0,2 +32905,1,0.0,2,1.1723167896270752,406,1.0,2 +32906,1,0.0,2,1.2333168983459473,407,0.0,2 +32907,1,0.0,2,1.59031343460083,408,0.0,2 +32908,1,0.0,2,2.097309112548828,409,0.0,2 +32909,1,1.0,2,1.877309799194336,410,1.0,2 +32910,1,1.0,2,2.285317897796631,411,0.0,2 +32911,1,1.0,2,1.7473114728927612,412,0.0,2 +32912,1,0.0,2,2.0253078937530518,413,0.0,2 +32913,1,1.0,2,1.9463088512420654,414,1.0,2 +32914,1,1.0,2,1.6363129615783691,415,1.0,2 +32915,1,1.0,2,1.4723149538040161,416,1.0,2 +32916,1,1.0,2,1.2333168983459473,417,0.0,2 +32917,1,1.0,2,1.734311580657959,418,0.0,2 +32918,1,0.0,2,2.109309673309326,419,1.0,2 +32919,1,0.0,2,1.4673150777816772,420,1.0,2 +32920,1,0.0,2,1.458315134048462,421,0.0,2 +32921,1,0.0,2,1.2513169050216675,422,0.0,2 +32922,1,1.0,2,1.8663098812103271,423,1.0,2 +32923,1,1.0,2,1.5003145933151245,424,1.0,2 +32924,1,1.0,2,1.7723112106323242,425,1.0,2 +32925,1,1.0,2,1.523314356803894,426,0.0,2 +32926,1,1.0,2,1.9373090267181396,427,1.0,2 +32927,1,1.0,2,1.684312343597412,428,0.0,2 +32928,1,0.0,2,1.4713150262832642,429,1.0,2 +32929,1,0.0,2,1.9143092632293701,430,0.0,2 +32930,1,1.0,2,1.2643169164657593,431,1.0,2 +32931,1,1.0,2,1.924309253692627,432,1.0,2 +32932,1,1.0,2,1.8353103399276733,433,1.0,2 +32933,1,1.0,2,1.5723137855529785,434,1.0,2 +32934,1,1.0,2,1.3693163394927979,435,0.0,2 +32935,1,1.0,2,1.6503126621246338,436,1.0,2 +32936,1,1.0,2,1.807310700416565,437,0.0,2 +32937,1,0.0,2,1.384316086769104,438,0.0,2 +32938,1,1.0,2,1.3473166227340698,439,0.0,2 +32939,1,1.0,2,1.8533101081848145,440,0.0,2 +32940,1,0.0,2,1.3443166017532349,441,1.0,2 +32941,1,0.0,2,1.8363103866577148,442,0.0,2 +32942,1,1.0,2,1.4913147687911987,443,0.0,2 +32943,1,0.0,2,1.5843136310577393,444,1.0,2 +32944,1,0.0,2,1.5883135795593262,445,1.0,2 +32945,1,0.0,2,1.4213156700134277,446,0.0,2 +32946,1,1.0,2,1.3453166484832764,447,1.0,2 +32947,1,1.0,2,1.4463152885437012,448,1.0,2 +32948,1,1.0,2,1.5543138980865479,449,1.0,2 +32949,1,1.0,2,1.2703169584274292,450,1.0,2 +32950,1,1.0,2,1.4723149538040161,451,1.0,2 +32951,1,1.0,2,1.4293155670166016,452,1.0,2 +32952,1,1.0,2,1.45731520652771,453,1.0,2 +32953,1,1.0,2,1.8013107776641846,454,1.0,2 +32954,1,1.0,2,1.5153144598007202,455,1.0,2 +32955,1,1.0,2,1.5553139448165894,456,0.0,2 +32956,1,1.0,2,1.9563088417053223,457,0.0,2 +32957,1,1.0,2,1.4783148765563965,458,1.0,2 +32958,1,0.0,2,1.7143118381500244,459,0.0,2 +32959,1,1.0,2,1.243316888809204,460,1.0,2 +32960,1,0.0,2,1.1973168849945068,461,1.0,2 +32961,1,0.0,2,1.8233104944229126,462,1.0,2 +32962,1,0.0,2,1.7573113441467285,463,0.0,2 +32963,1,0.0,2,1.3093171119689941,464,0.0,2 +32964,1,1.0,2,1.921309232711792,465,1.0,2 +32965,1,1.0,2,1.9133093357086182,466,1.0,2 +32966,1,1.0,2,1.7683112621307373,467,0.0,2 +32967,1,1.0,2,1.3423166275024414,468,1.0,2 +32968,1,1.0,2,2.2743172645568848,469,0.0,2 +32969,1,0.0,2,2.054307460784912,470,1.0,2 +32970,1,0.0,2,1.5143144130706787,471,0.0,2 +32971,1,1.0,2,1.9293091297149658,472,0.0,2 +32972,1,0.0,2,1.3943159580230713,473,1.0,2 +32973,1,0.0,2,1.4113157987594604,474,1.0,2 +32974,1,0.0,2,1.2303168773651123,475,1.0,2 +32975,1,0.0,2,1.413315773010254,476,0.0,2 +32976,1,0.0,2,1.2943170070648193,477,0.0,2 +32977,1,1.0,2,2.09230899810791,478,0.0,2 +32978,1,1.0,2,1.5573139190673828,479,1.0,2 +32979,1,1.0,2,1.3993159532546997,480,1.0,2 +32980,1,1.0,2,1.6733124256134033,481,0.0,2 +32981,1,0.0,2,1.2603169679641724,482,1.0,2 +32982,1,0.0,2,1.2253168821334839,483,0.0,2 +32983,1,1.0,2,1.4843147993087769,484,0.0,2 +32984,1,1.0,2,1.4693150520324707,485,1.0,2 +32985,1,1.0,2,1.4333155155181885,486,0.0,2 +32986,1,0.0,2,1.6753123998641968,487,0.0,2 +32987,1,0.0,2,1.3003170490264893,488,1.0,2 +32988,1,0.0,2,1.6643126010894775,489,0.0,2 +32989,1,1.0,2,1.550313949584961,490,1.0,2 +32990,1,0.0,2,1.8393102884292603,491,0.0,2 +32991,1,1.0,2,1.5263142585754395,492,0.0,2 +32992,1,0.0,2,1.4123157262802124,493,1.0,2 +32993,1,0.0,2,1.3323167562484741,494,0.0,2 +32994,1,0.0,2,1.830310344696045,495,0.0,2 +32995,1,1.0,2,2.1713125705718994,496,0.0,2 +32996,1,0.0,2,1.2813169956207275,497,0.0,2 +32997,1,1.0,2,1.9083094596862793,498,0.0,2 +32998,1,0.0,2,1.5773136615753174,499,0.0,2 +32999,1,1.0,2,1.7533113956451416,500,1.0,2 +33000,2,0.0,0,2.564523220062256,1,0.0,2 +33001,2,0.0,0,1.6765024662017822,2,1.0,2 +33002,2,0.0,0,1.3755062818527222,3,0.0,2 +33003,2,0.0,0,1.4125057458877563,4,0.0,2 +33004,2,1.0,0,1.3115071058273315,5,1.0,2 +33005,2,1.0,0,2.1675045490264893,6,0.0,2 +33006,2,1.0,0,1.5435041189193726,7,1.0,2 +33007,2,1.0,0,1.5515040159225464,8,1.0,2 +33008,2,1.0,0,1.520504355430603,9,1.0,2 +33009,2,1.0,0,1.431505560874939,10,1.0,2 +33010,2,1.0,0,1.4655051231384277,11,1.0,2 +33011,2,1.0,0,1.3515065908432007,12,1.0,2 +33012,2,1.0,0,1.2495074272155762,13,1.0,2 +33013,2,1.0,0,1.3165069818496704,14,0.0,2 +33014,2,0.0,0,1.1825073957443237,15,0.0,2 +33015,2,0.0,0,1.6875022649765015,16,1.0,2 +33016,2,0.0,0,1.3165069818496704,17,0.0,2 +33017,2,0.0,0,1.432505488395691,18,0.0,2 +33018,2,1.0,0,1.5435041189193726,19,1.0,2 +33019,2,1.0,0,1.410505771636963,20,1.0,2 +33020,2,1.0,0,1.4515053033828735,21,0.0,2 +33021,2,0.0,0,1.255507469177246,22,0.0,2 +33022,2,0.0,0,1.4155057668685913,23,0.0,2 +33023,2,0.0,0,1.4925047159194946,24,1.0,2 +33024,2,1.0,0,1.3205069303512573,25,1.0,2 +33025,2,0.0,0,2.10150146484375,26,0.0,2 +33026,2,1.0,0,1.8465001583099365,27,1.0,2 +33027,2,1.0,0,1.2065074443817139,28,0.0,2 +33028,2,0.0,0,1.6335029602050781,29,0.0,2 +33029,2,0.0,0,1.4045058488845825,30,0.0,2 +33030,2,0.0,0,1.428505539894104,31,1.0,2 +33031,2,1.0,0,1.9854984283447266,32,1.0,2 +33032,2,0.0,0,1.733501672744751,33,0.0,2 +33033,2,1.0,0,1.589503526687622,34,1.0,2 +33034,2,1.0,0,1.4445053339004517,35,1.0,2 +33035,2,1.0,0,1.1715073585510254,36,1.0,2 +33036,2,1.0,0,1.264507532119751,37,1.0,2 +33037,2,1.0,0,1.193507432937622,38,1.0,2 +33038,2,1.0,0,1.3245068788528442,39,1.0,2 +33039,2,1.0,0,1.3995059728622437,40,1.0,2 +33040,2,1.0,0,1.541504144668579,41,1.0,2 +33041,2,1.0,0,1.3385066986083984,42,1.0,2 +33042,2,1.0,0,1.1555073261260986,43,1.0,2 +33043,2,1.0,0,1.3255069255828857,44,1.0,2 +33044,2,1.0,0,1.7205018997192383,45,1.0,2 +33045,2,1.0,0,1.7135019302368164,46,1.0,2 +33046,2,1.0,0,1.4175057411193848,47,1.0,2 +33047,2,1.0,0,1.545504093170166,48,0.0,2 +33048,2,1.0,0,1.5995033979415894,49,1.0,2 +33049,2,1.0,0,1.402505874633789,50,1.0,2 +33050,2,1.0,0,1.780501127243042,51,1.0,2 +33051,2,1.0,0,1.6265029907226562,52,0.0,2 +33052,2,1.0,0,1.6565027236938477,53,1.0,2 +33053,2,1.0,0,1.6505026817321777,54,1.0,2 +33054,2,1.0,0,1.3345067501068115,55,1.0,2 +33055,2,1.0,0,1.8165006637573242,56,1.0,2 +33056,2,1.0,0,1.1755073070526123,57,1.0,2 +33057,2,1.0,0,1.309507131576538,58,1.0,2 +33058,2,1.0,0,1.3035072088241577,59,1.0,2 +33059,2,1.0,0,1.4815049171447754,60,1.0,2 +33060,2,1.0,0,1.2185074090957642,61,1.0,2 +33061,2,1.0,0,1.50150465965271,62,1.0,2 +33062,2,1.0,0,1.2025073766708374,63,1.0,2 +33063,2,0.0,0,1.314507007598877,64,0.0,2 +33064,2,1.0,0,1.424505591392517,65,1.0,2 +33065,2,1.0,0,1.28750741481781,66,1.0,2 +33066,2,1.0,0,1.2595075368881226,67,0.0,2 +33067,2,1.0,0,1.31050705909729,68,1.0,2 +33068,2,1.0,0,1.2445074319839478,69,1.0,2 +33069,2,1.0,0,1.2475074529647827,70,1.0,2 +33070,2,1.0,0,1.3465065956115723,71,1.0,2 +33071,2,1.0,0,1.313507080078125,72,1.0,2 +33072,2,1.0,0,1.5655038356781006,73,1.0,2 +33073,2,1.0,0,1.2995072603225708,74,1.0,2 +33074,2,1.0,0,1.8465001583099365,75,1.0,2 +33075,2,1.0,0,1.2945072650909424,76,1.0,2 +33076,2,1.0,0,1.1695072650909424,77,1.0,2 +33077,2,1.0,0,1.384506106376648,78,1.0,2 +33078,2,1.0,0,1.866499900817871,79,1.0,2 +33079,2,1.0,0,1.4135057926177979,80,1.0,2 +33080,2,1.0,0,1.5745036602020264,81,1.0,2 +33081,2,1.0,0,1.4255056381225586,82,1.0,2 +33082,2,1.0,0,1.9764986038208008,83,1.0,2 +33083,2,1.0,0,1.479504942893982,84,1.0,2 +33084,2,1.0,0,1.6755024194717407,85,0.0,2 +33085,2,0.0,0,1.133507251739502,86,0.0,2 +33086,2,0.0,0,1.5075045824050903,87,0.0,2 +33087,2,0.0,0,1.4385054111480713,88,0.0,2 +33088,2,1.0,0,1.6655025482177734,89,1.0,2 +33089,2,1.0,0,1.309507131576538,90,1.0,2 +33090,2,1.0,0,1.7045021057128906,91,1.0,2 +33091,2,0.0,0,1.292507290840149,92,0.0,2 +33092,2,1.0,0,1.4085057973861694,93,1.0,2 +33093,2,1.0,0,1.3305068016052246,94,1.0,2 +33094,2,1.0,0,1.3245068788528442,95,1.0,2 +33095,2,1.0,0,1.450505256652832,96,1.0,2 +33096,2,1.0,0,1.2735075950622559,97,1.0,2 +33097,2,1.0,0,1.191507339477539,98,1.0,2 +33098,2,1.0,0,1.6435028314590454,99,1.0,2 +33099,2,0.0,0,1.659502625465393,100,0.0,2 +33100,2,1.0,0,1.5745036602020264,101,1.0,2 +33101,2,1.0,0,1.5115045309066772,102,1.0,2 +33102,2,1.0,0,1.1845073699951172,103,1.0,2 +33103,2,1.0,0,1.1615073680877686,104,1.0,2 +33104,2,1.0,0,1.2445074319839478,105,1.0,2 +33105,2,1.0,0,1.5535039901733398,106,1.0,2 +33106,2,1.0,0,1.4885047674179077,107,1.0,2 +33107,2,1.0,0,1.8784997463226318,108,1.0,2 +33108,2,1.0,0,1.5215044021606445,109,1.0,2 +33109,2,1.0,0,1.2905073165893555,110,1.0,2 +33110,2,1.0,0,1.4145057201385498,111,1.0,2 +33111,2,1.0,0,1.4115058183670044,112,1.0,2 +33112,2,1.0,0,1.5765037536621094,113,1.0,2 +33113,2,1.0,0,1.7245018482208252,114,1.0,2 +33114,2,1.0,0,1.284507393836975,115,1.0,2 +33115,2,1.0,0,1.61150324344635,116,0.0,2 +33116,2,0.0,0,1.3455066680908203,117,0.0,2 +33117,2,1.0,0,1.5175044536590576,118,1.0,2 +33118,2,1.0,0,1.734501600265503,119,1.0,2 +33119,2,1.0,0,1.424505591392517,120,1.0,2 +33120,2,1.0,0,1.523504376411438,121,1.0,2 +33121,2,1.0,0,1.4855048656463623,122,0.0,2 +33122,2,1.0,0,1.7005021572113037,123,0.0,2 +33123,2,0.0,0,1.494504690170288,124,1.0,2 +33124,2,0.0,0,1.2255074977874756,125,0.0,2 +33125,2,0.0,0,1.2715075016021729,126,0.0,2 +33126,2,1.0,0,1.847500205039978,127,1.0,2 +33127,2,1.0,0,2.0274980068206787,128,1.0,2 +33128,2,1.0,0,1.28750741481781,129,1.0,2 +33129,2,1.0,0,1.231507420539856,130,1.0,2 +33130,2,1.0,0,2.303510904312134,131,1.0,2 +33131,2,1.0,0,1.265507459640503,132,1.0,2 +33132,2,1.0,0,1.6215031147003174,133,1.0,2 +33133,2,1.0,0,1.5615038871765137,134,1.0,2 +33134,2,1.0,0,1.5125044584274292,135,0.0,2 +33135,2,0.0,0,1.4295055866241455,136,0.0,2 +33136,2,0.0,0,1.4845048189163208,137,0.0,2 +33137,2,1.0,0,1.6555026769638062,138,1.0,2 +33138,2,1.0,0,1.4895048141479492,139,1.0,2 +33139,2,1.0,0,1.777501106262207,140,1.0,2 +33140,2,1.0,0,1.586503505706787,141,1.0,2 +33141,2,1.0,0,1.2815074920654297,142,0.0,2 +33142,2,0.0,0,1.5105044841766357,143,0.0,2 +33143,2,0.0,0,1.6995021104812622,144,0.0,2 +33144,2,1.0,0,1.291507363319397,145,0.0,2 +33145,2,1.0,0,1.6075032949447632,146,1.0,2 +33146,2,1.0,0,1.4735050201416016,147,1.0,2 +33147,2,1.0,0,1.2775075435638428,148,1.0,2 +33148,2,1.0,0,1.3465065956115723,149,1.0,2 +33149,2,1.0,0,1.3375067710876465,150,0.0,2 +33150,2,0.0,0,1.6215031147003174,151,1.0,2 +33151,2,0.0,0,1.7105019092559814,152,0.0,2 +33152,2,0.0,0,2.118502140045166,153,1.0,2 +33153,2,0.0,0,1.261507511138916,154,0.0,2 +33154,2,0.0,0,1.1555073261260986,155,0.0,2 +33155,2,0.0,0,1.7025020122528076,156,0.0,2 +33156,2,1.0,0,1.7675012350082397,157,0.0,2 +33157,2,1.0,0,1.5325043201446533,158,1.0,2 +33158,2,1.0,0,1.497504711151123,159,1.0,2 +33159,2,1.0,0,1.597503423690796,160,1.0,2 +33160,2,1.0,0,1.969498634338379,161,1.0,2 +33161,2,1.0,0,1.3685063123703003,162,1.0,2 +33162,2,1.0,0,1.6605026721954346,163,1.0,2 +33163,2,1.0,0,1.270507574081421,164,1.0,2 +33164,2,1.0,0,1.1845073699951172,165,1.0,2 +33165,2,0.0,0,1.103507161140442,166,0.0,2 +33166,2,1.0,0,1.8674999475479126,167,1.0,2 +33167,2,1.0,0,1.3685063123703003,168,1.0,2 +33168,2,1.0,0,1.1685073375701904,169,1.0,2 +33169,2,1.0,0,1.7255017757415771,170,0.0,2 +33170,2,1.0,0,1.4085057973861694,171,1.0,2 +33171,2,0.0,0,1.31050705909729,172,0.0,2 +33172,2,1.0,0,1.188507318496704,173,1.0,2 +33173,2,1.0,0,2.1635043621063232,174,1.0,2 +33174,2,1.0,0,1.2935073375701904,175,1.0,2 +33175,2,1.0,0,1.2505074739456177,176,1.0,2 +33176,2,1.0,0,1.3565064668655396,177,1.0,2 +33177,2,1.0,0,1.3235069513320923,178,1.0,2 +33178,2,1.0,0,1.4405053853988647,179,1.0,2 +33179,2,1.0,0,1.1695072650909424,180,1.0,2 +33180,2,1.0,0,1.4825048446655273,181,1.0,2 +33181,2,1.0,0,1.401505947113037,182,1.0,2 +33182,2,1.0,0,1.2745075225830078,183,1.0,2 +33183,2,1.0,0,1.234507441520691,184,0.0,2 +33184,2,1.0,0,1.8624999523162842,185,1.0,2 +33185,2,1.0,0,1.5215044021606445,186,0.0,2 +33186,2,0.0,0,2.409515857696533,187,0.0,2 +33187,2,0.0,0,1.5885035991668701,188,0.0,2 +33188,2,1.0,0,1.5815036296844482,189,1.0,2 +33189,2,0.0,0,1.567503809928894,190,0.0,2 +33190,2,1.0,0,1.1655073165893555,191,1.0,2 +33191,2,1.0,0,1.776501178741455,192,1.0,2 +33192,2,1.0,0,1.3475066423416138,193,1.0,2 +33193,2,1.0,0,1.3665063381195068,194,1.0,2 +33194,2,1.0,0,1.3495066165924072,195,1.0,2 +33195,2,1.0,0,1.6995021104812622,196,1.0,2 +33196,2,1.0,0,1.8964996337890625,197,0.0,2 +33197,2,1.0,0,1.9724986553192139,198,0.0,2 +33198,2,0.0,0,1.6665024757385254,199,0.0,2 +33199,2,0.0,0,2.2435081005096436,200,0.0,2 +33200,2,0.0,0,2.138503074645996,201,1.0,2 +33201,2,0.0,0,1.3655064105987549,202,0.0,2 +33202,2,0.0,0,1.2855074405670166,203,0.0,2 +33203,2,1.0,0,1.3255069255828857,204,0.0,2 +33204,2,0.0,0,2.1655044555664062,205,1.0,2 +33205,2,0.0,0,1.2455074787139893,206,0.0,2 +33206,2,0.0,0,1.1855072975158691,207,0.0,2 +33207,2,0.0,0,1.5045045614242554,208,0.0,2 +33208,2,1.0,0,1.6205031871795654,209,1.0,2 +33209,2,1.0,0,1.3375067710876465,210,1.0,2 +33210,2,1.0,0,1.2995072603225708,211,1.0,2 +33211,2,1.0,0,1.1785073280334473,212,1.0,2 +33212,2,1.0,0,1.2125073671340942,213,1.0,2 +33213,2,1.0,0,1.3705062866210938,214,1.0,2 +33214,2,1.0,0,1.2665075063705444,215,1.0,2 +33215,2,1.0,0,2.0284981727600098,216,1.0,2 +33216,2,1.0,0,1.431505560874939,217,1.0,2 +33217,2,1.0,0,1.5685038566589355,218,0.0,2 +33218,2,1.0,0,1.9034994840621948,219,1.0,2 +33219,2,1.0,0,1.2955073118209839,220,1.0,2 +33220,2,1.0,0,1.5625038146972656,221,0.0,2 +33221,2,0.0,0,1.4625051021575928,222,0.0,2 +33222,2,1.0,0,1.2735075950622559,223,1.0,2 +33223,2,1.0,0,1.2145074605941772,224,1.0,2 +33224,2,1.0,0,1.5815036296844482,225,1.0,2 +33225,2,0.0,0,1.5095045566558838,226,1.0,2 +33226,2,0.0,0,1.1765073537826538,227,0.0,2 +33227,2,1.0,0,1.5625038146972656,228,1.0,2 +33228,2,1.0,0,1.3215069770812988,229,1.0,2 +33229,2,1.0,0,1.9484989643096924,230,1.0,2 +33230,2,0.0,0,1.2485074996948242,231,1.0,2 +33231,2,1.0,0,1.63450288772583,232,1.0,2 +33232,2,1.0,0,2.032498359680176,233,1.0,2 +33233,2,0.0,0,1.6205031871795654,234,0.0,2 +33234,2,1.0,0,1.8205006122589111,235,1.0,2 +33235,2,0.0,0,1.644502878189087,236,0.0,2 +33236,2,1.0,0,2.019497871398926,237,1.0,2 +33237,2,1.0,0,1.2415075302124023,238,1.0,2 +33238,2,1.0,0,1.3935060501098633,239,0.0,2 +33239,2,0.0,0,1.4365054368972778,240,0.0,2 +33240,2,0.0,0,1.9404990673065186,241,0.0,2 +33241,2,0.0,0,1.47250497341156,242,0.0,2 +33242,2,0.0,0,1.3345067501068115,243,0.0,2 +33243,2,0.0,0,1.592503547668457,244,0.0,2 +33244,2,0.0,0,1.592503547668457,245,0.0,2 +33245,2,1.0,0,1.4385054111480713,246,1.0,2 +33246,2,1.0,0,1.5825035572052002,247,0.0,2 +33247,2,1.0,0,1.8894996643066406,248,1.0,2 +33248,2,1.0,0,1.2055073976516724,249,0.0,2 +33249,2,1.0,0,1.3415067195892334,250,1.0,2 +33250,2,1.0,0,2.2175068855285645,251,1.0,2 +33251,2,1.0,0,1.2625075578689575,252,1.0,2 +33252,2,1.0,0,1.6875022649765015,253,1.0,2 +33253,2,0.0,0,1.7665011882781982,254,0.0,2 +33254,2,1.0,0,1.4745049476623535,255,0.0,2 +33255,2,1.0,0,1.5405042171478271,256,0.0,2 +33256,2,0.0,0,2.32751202583313,257,0.0,2 +33257,2,1.0,0,1.3445066213607788,258,1.0,2 +33258,2,1.0,0,1.1875073909759521,259,1.0,2 +33259,2,1.0,0,1.2295074462890625,260,1.0,2 +33260,2,1.0,0,1.597503423690796,261,1.0,2 +33261,2,1.0,0,1.357506513595581,262,1.0,2 +33262,2,1.0,0,1.5215044021606445,263,1.0,2 +33263,2,1.0,0,1.1825073957443237,264,1.0,2 +33264,2,1.0,0,1.7535014152526855,265,1.0,2 +33265,2,1.0,0,1.2405074834823608,266,1.0,2 +33266,2,1.0,0,1.61150324344635,267,0.0,2 +33267,2,1.0,0,1.4135057926177979,268,1.0,2 +33268,2,1.0,0,1.5765037536621094,269,1.0,2 +33269,2,1.0,0,1.1875073909759521,270,1.0,2 +33270,2,1.0,0,1.2355074882507324,271,1.0,2 +33271,2,1.0,0,1.190507411956787,272,1.0,2 +33272,2,1.0,0,1.379506230354309,273,1.0,2 +33273,2,1.0,0,1.6805024147033691,274,1.0,2 +33274,2,1.0,0,1.4775049686431885,275,1.0,2 +33275,2,0.0,0,1.729501724243164,276,0.0,2 +33276,2,1.0,0,1.3465065956115723,277,1.0,2 +33277,2,1.0,0,1.3605064153671265,278,1.0,2 +33278,2,1.0,0,1.2175073623657227,279,1.0,2 +33279,2,1.0,0,1.590503454208374,280,1.0,2 +33280,2,1.0,0,1.31050705909729,281,1.0,2 +33281,2,1.0,0,1.4435054063796997,282,1.0,2 +33282,2,1.0,0,1.2965072393417358,283,1.0,2 +33283,2,1.0,0,1.5805037021636963,284,1.0,2 +33284,2,1.0,0,1.3675063848495483,285,1.0,2 +33285,2,1.0,0,1.872499942779541,286,1.0,2 +33286,2,1.0,0,1.5265042781829834,287,1.0,2 +33287,2,1.0,0,1.685502290725708,288,1.0,2 +33288,2,1.0,0,1.6625025272369385,289,1.0,2 +33289,2,1.0,0,1.336506724357605,290,1.0,2 +33290,2,1.0,0,1.203507423400879,291,1.0,2 +33291,2,1.0,0,1.264507532119751,292,1.0,2 +33292,2,1.0,0,1.737501621246338,293,1.0,2 +33293,2,1.0,0,1.3245068788528442,294,1.0,2 +33294,2,1.0,0,1.586503505706787,295,1.0,2 +33295,2,1.0,0,1.4695050716400146,296,1.0,2 +33296,2,1.0,0,1.6215031147003174,297,1.0,2 +33297,2,1.0,0,1.3085070848464966,298,1.0,2 +33298,2,1.0,0,1.3215069770812988,299,1.0,2 +33299,2,1.0,0,1.5955034494400024,300,1.0,2 +33300,2,1.0,0,1.2055073976516724,301,0.0,2 +33301,2,1.0,0,1.5175044536590576,302,1.0,2 +33302,2,1.0,0,1.5475040674209595,303,1.0,2 +33303,2,1.0,0,1.471505045890808,304,1.0,2 +33304,2,1.0,0,1.5615038871765137,305,1.0,2 +33305,2,1.0,0,1.7145018577575684,306,1.0,2 +33306,2,1.0,0,1.52450430393219,307,1.0,2 +33307,2,1.0,0,1.335506796836853,308,1.0,2 +33308,2,1.0,0,1.3925060033798218,309,1.0,2 +33309,2,0.0,0,1.3765062093734741,310,0.0,2 +33310,2,1.0,0,1.4525052309036255,311,1.0,2 +33311,2,1.0,0,1.5555039644241333,312,1.0,2 +33312,2,1.0,0,1.5325043201446533,313,0.0,2 +33313,2,1.0,0,1.2985072135925293,314,1.0,2 +33314,2,1.0,0,1.1695072650909424,315,1.0,2 +33315,2,1.0,0,1.586503505706787,316,0.0,2 +33316,2,1.0,0,1.6085033416748047,317,1.0,2 +33317,2,1.0,0,1.4885047674179077,318,1.0,2 +33318,2,1.0,0,1.5545039176940918,319,1.0,2 +33319,2,1.0,0,1.2505074739456177,320,1.0,2 +33320,2,1.0,0,1.1325072050094604,321,1.0,2 +33321,2,1.0,0,1.874499797821045,322,1.0,2 +33322,2,1.0,0,1.2355074882507324,323,1.0,2 +33323,2,1.0,0,1.1325072050094604,324,1.0,2 +33324,2,1.0,0,1.4855048656463623,325,1.0,2 +33325,2,1.0,0,1.6975021362304688,326,0.0,2 +33326,2,0.0,0,1.9074994325637817,327,0.0,2 +33327,2,0.0,0,1.2165074348449707,328,0.0,2 +33328,2,1.0,0,1.5435041189193726,329,0.0,2 +33329,2,1.0,0,1.3505065441131592,330,1.0,2 +33330,2,1.0,0,1.7905008792877197,331,0.0,2 +33331,2,1.0,0,1.6515027284622192,332,1.0,2 +33332,2,1.0,0,1.1625072956085205,333,1.0,2 +33333,2,1.0,0,2.095501184463501,334,1.0,2 +33334,2,1.0,0,1.6785023212432861,335,1.0,2 +33335,2,1.0,0,1.2715075016021729,336,1.0,2 +33336,2,1.0,0,1.2815074920654297,337,1.0,2 +33337,2,1.0,0,1.3265068531036377,338,1.0,2 +33338,2,1.0,0,1.2495074272155762,339,1.0,2 +33339,2,1.0,0,1.4235056638717651,340,1.0,2 +33340,2,1.0,0,1.4365054368972778,341,1.0,2 +33341,2,1.0,0,1.428505539894104,342,1.0,2 +33342,2,1.0,0,1.231507420539856,343,1.0,2 +33343,2,1.0,0,1.1925073862075806,344,1.0,2 +33344,2,1.0,0,1.2955073118209839,345,1.0,2 +33345,2,1.0,0,1.2535074949264526,346,1.0,2 +33346,2,1.0,0,1.3755062818527222,347,1.0,2 +33347,2,1.0,0,1.6025032997131348,348,1.0,2 +33348,2,1.0,0,1.379506230354309,349,1.0,2 +33349,2,1.0,0,1.590503454208374,350,1.0,2 +33350,2,1.0,0,1.130507230758667,351,1.0,2 +33351,2,1.0,0,1.2865073680877686,352,1.0,2 +33352,2,1.0,0,1.3375067710876465,353,1.0,2 +33353,2,1.0,0,1.6785023212432861,354,1.0,2 +33354,2,1.0,0,1.3345067501068115,355,1.0,2 +33355,2,1.0,0,1.1965073347091675,356,1.0,2 +33356,2,1.0,0,1.33950674533844,357,1.0,2 +33357,2,1.0,0,1.3955060243606567,358,1.0,2 +33358,2,1.0,0,1.4775049686431885,359,1.0,2 +33359,2,1.0,0,1.9334990978240967,360,0.0,2 +33360,2,1.0,0,2.2375078201293945,361,1.0,2 +33361,2,1.0,0,1.3665063381195068,362,1.0,2 +33362,2,1.0,0,1.335506796836853,363,1.0,2 +33363,2,1.0,0,1.3465065956115723,364,0.0,2 +33364,2,1.0,0,1.9094994068145752,365,1.0,2 +33365,2,1.0,0,1.4085057973861694,366,1.0,2 +33366,2,1.0,0,1.2255074977874756,367,1.0,2 +33367,2,1.0,0,1.3275068998336792,368,1.0,2 +33368,2,1.0,0,1.52450430393219,369,1.0,2 +33369,2,1.0,0,1.2605074644088745,370,1.0,2 +33370,2,1.0,0,1.479504942893982,371,1.0,2 +33371,2,1.0,0,1.3565064668655396,372,1.0,2 +33372,2,1.0,0,1.313507080078125,373,1.0,2 +33373,2,1.0,0,1.1965073347091675,374,1.0,2 +33374,2,1.0,0,1.471505045890808,375,1.0,2 +33375,2,1.0,0,1.3975059986114502,376,1.0,2 +33376,2,1.0,0,1.7425014972686768,377,1.0,2 +33377,2,1.0,0,1.6455028057098389,378,1.0,2 +33378,2,1.0,0,1.358506441116333,379,1.0,2 +33379,2,1.0,0,2.014497995376587,380,1.0,2 +33380,2,1.0,0,1.6225030422210693,381,1.0,2 +33381,2,1.0,0,1.3315068483352661,382,1.0,2 +33382,2,0.0,0,1.4255056381225586,383,0.0,2 +33383,2,1.0,0,1.336506724357605,384,1.0,2 +33384,2,1.0,0,1.2545075416564941,385,1.0,2 +33385,2,1.0,0,1.3985059261322021,386,0.0,2 +33386,2,0.0,0,1.5845036506652832,387,0.0,2 +33387,2,1.0,0,1.454505205154419,388,1.0,2 +33388,2,1.0,0,1.2505074739456177,389,1.0,2 +33389,2,1.0,0,1.66350257396698,390,1.0,2 +33390,2,1.0,0,1.7125020027160645,391,1.0,2 +33391,2,1.0,0,1.3725062608718872,392,1.0,2 +33392,2,1.0,0,1.3675063848495483,393,1.0,2 +33393,2,1.0,0,1.3315068483352661,394,1.0,2 +33394,2,1.0,0,1.4405053853988647,395,1.0,2 +33395,2,1.0,0,1.7185018062591553,396,1.0,2 +33396,2,1.0,0,1.1805073022842407,397,1.0,2 +33397,2,0.0,0,1.2455074787139893,398,0.0,2 +33398,2,1.0,0,1.8485002517700195,399,1.0,2 +33399,2,1.0,0,1.6305029392242432,400,1.0,2 +33400,2,1.0,0,1.361506462097168,401,1.0,2 +33401,2,1.0,0,1.3155070543289185,402,1.0,2 +33402,2,1.0,0,1.1825073957443237,403,1.0,2 +33403,2,1.0,0,1.231507420539856,404,1.0,2 +33404,2,0.0,0,1.4875048398971558,405,0.0,2 +33405,2,1.0,0,1.4045058488845825,406,0.0,2 +33406,2,1.0,0,1.5595039129257202,407,1.0,2 +33407,2,0.0,0,1.6945021152496338,408,0.0,2 +33408,2,1.0,0,1.4825048446655273,409,1.0,2 +33409,2,1.0,0,1.5705037117004395,410,1.0,2 +33410,2,1.0,0,1.5575039386749268,411,1.0,2 +33411,2,1.0,0,1.3565064668655396,412,0.0,2 +33412,2,1.0,0,1.5395041704177856,413,1.0,2 +33413,2,1.0,0,1.3425066471099854,414,1.0,2 +33414,2,1.0,0,1.3385066986083984,415,1.0,2 +33415,2,1.0,0,1.5685038566589355,416,1.0,2 +33416,2,1.0,0,1.2425074577331543,417,1.0,2 +33417,2,1.0,0,1.589503526687622,418,1.0,2 +33418,2,1.0,0,1.5625038146972656,419,1.0,2 +33419,2,1.0,0,1.5475040674209595,420,1.0,2 +33420,2,1.0,0,1.1965073347091675,421,1.0,2 +33421,2,1.0,0,1.6705024242401123,422,1.0,2 +33422,2,1.0,0,1.2385075092315674,423,1.0,2 +33423,2,1.0,0,1.548504114151001,424,0.0,2 +33424,2,1.0,0,1.3775062561035156,425,0.0,2 +33425,2,1.0,0,1.5635038614273071,426,1.0,2 +33426,2,1.0,0,1.7035020589828491,427,1.0,2 +33427,2,1.0,0,1.4595052003860474,428,1.0,2 +33428,2,1.0,0,1.2855074405670166,429,0.0,2 +33429,2,1.0,0,1.5535039901733398,430,1.0,2 +33430,2,1.0,0,1.5305042266845703,431,1.0,2 +33431,2,1.0,0,1.2425074577331543,432,1.0,2 +33432,2,1.0,0,1.1615073680877686,433,1.0,2 +33433,2,1.0,0,1.7225017547607422,434,1.0,2 +33434,2,1.0,0,1.261507511138916,435,1.0,2 +33435,2,1.0,0,1.4155057668685913,436,1.0,2 +33436,2,1.0,0,1.541504144668579,437,1.0,2 +33437,2,1.0,0,1.4345054626464844,438,1.0,2 +33438,2,1.0,0,1.4565051794052124,439,1.0,2 +33439,2,1.0,0,1.3955060243606567,440,1.0,2 +33440,2,1.0,0,1.3985059261322021,441,1.0,2 +33441,2,1.0,0,1.8395003080368042,442,1.0,2 +33442,2,1.0,0,1.2355074882507324,443,1.0,2 +33443,2,1.0,0,1.3755062818527222,444,1.0,2 +33444,2,1.0,0,1.520504355430603,445,1.0,2 +33445,2,1.0,0,1.4735050201416016,446,1.0,2 +33446,2,1.0,0,1.6025032997131348,447,1.0,2 +33447,2,1.0,0,1.592503547668457,448,1.0,2 +33448,2,1.0,0,1.7495014667510986,449,1.0,2 +33449,2,0.0,0,1.4465053081512451,450,0.0,2 +33450,2,1.0,0,1.164507269859314,451,1.0,2 +33451,2,1.0,0,1.258507490158081,452,1.0,2 +33452,2,1.0,0,1.457505226135254,453,1.0,2 +33453,2,1.0,0,2.2565088272094727,454,1.0,2 +33454,2,1.0,0,1.453505277633667,455,1.0,2 +33455,2,0.0,0,1.2605074644088745,456,0.0,2 +33456,2,1.0,0,1.4525052309036255,457,1.0,2 +33457,2,1.0,0,1.4255056381225586,458,1.0,2 +33458,2,1.0,0,1.3955060243606567,459,1.0,2 +33459,2,1.0,0,1.402505874633789,460,0.0,2 +33460,2,0.0,0,2.602524757385254,461,1.0,2 +33461,2,1.0,0,2.4955198764801025,462,1.0,2 +33462,2,0.0,0,1.2775075435638428,463,0.0,2 +33463,2,1.0,0,1.5055046081542969,464,1.0,2 +33464,2,1.0,0,1.9294991493225098,465,1.0,2 +33465,2,1.0,0,1.1285072565078735,466,1.0,2 +33466,2,1.0,0,1.2795075178146362,467,1.0,2 +33467,2,1.0,0,1.383506178855896,468,1.0,2 +33468,2,1.0,0,1.3495066165924072,469,1.0,2 +33469,2,1.0,0,1.157507300376892,470,1.0,2 +33470,2,1.0,0,1.4625051021575928,471,1.0,2 +33471,2,1.0,0,1.3255069255828857,472,1.0,2 +33472,2,1.0,0,1.228507399559021,473,1.0,2 +33473,2,0.0,0,1.1715073585510254,474,0.0,2 +33474,2,1.0,0,1.3555065393447876,475,1.0,2 +33475,2,1.0,0,1.5435041189193726,476,1.0,2 +33476,2,1.0,0,1.2945072650909424,477,1.0,2 +33477,2,1.0,0,1.527504324913025,478,1.0,2 +33478,2,1.0,0,1.2935073375701904,479,1.0,2 +33479,2,1.0,0,1.28750741481781,480,1.0,2 +33480,2,1.0,0,1.870499849319458,481,1.0,2 +33481,2,1.0,0,2.012498140335083,482,0.0,2 +33482,2,1.0,0,1.3605064153671265,483,1.0,2 +33483,2,1.0,0,1.4645050764083862,484,1.0,2 +33484,2,1.0,0,1.5295042991638184,485,1.0,2 +33485,2,1.0,0,1.3995059728622437,486,0.0,2 +33486,2,0.0,0,1.7185018062591553,487,0.0,2 +33487,2,0.0,0,1.3165069818496704,488,0.0,2 +33488,2,0.0,0,2.076500415802002,489,0.0,2 +33489,2,0.0,0,1.6305029392242432,490,1.0,2 +33490,2,1.0,0,1.3185069561004639,491,1.0,2 +33491,2,0.0,0,1.4585051536560059,492,0.0,2 +33492,2,1.0,0,1.3005071878433228,493,1.0,2 +33493,2,1.0,0,1.3445066213607788,494,0.0,2 +33494,2,0.0,0,1.4405053853988647,495,0.0,2 +33495,2,0.0,0,1.8095006942749023,496,0.0,2 +33496,2,0.0,0,1.733501672744751,497,0.0,2 +33497,2,0.0,0,1.4915047883987427,498,0.0,2 +33498,2,1.0,0,1.667502522468567,499,0.0,2 +33499,2,0.0,0,1.1185072660446167,500,0.0,2 +33500,2,1.0,1,1.3235069513320923,1,0.0,2 +33501,2,0.0,1,1.6325030326843262,2,1.0,2 +33502,2,0.0,1,1.8425002098083496,3,1.0,2 +33503,2,0.0,1,1.3485065698623657,4,1.0,2 +33504,2,0.0,1,1.8125007152557373,5,0.0,2 +33505,2,0.0,1,1.1925073862075806,6,1.0,2 +33506,2,0.0,1,1.4135057926177979,7,0.0,2 +33507,2,0.0,1,1.9044995307922363,8,0.0,2 +33508,2,0.0,1,1.5605039596557617,9,1.0,2 +33509,2,0.0,1,1.4145057201385498,10,0.0,2 +33510,2,1.0,1,2.151503801345825,11,1.0,2 +33511,2,1.0,1,1.4005059003829956,12,0.0,2 +33512,2,1.0,1,1.3775062561035156,13,0.0,2 +33513,2,0.0,1,1.453505277633667,14,0.0,2 +33514,2,1.0,1,1.592503547668457,15,0.0,2 +33515,2,0.0,1,1.6105031967163086,16,1.0,2 +33516,2,0.0,1,1.851500153541565,17,0.0,2 +33517,2,0.0,1,1.9494988918304443,18,1.0,2 +33518,2,0.0,1,1.5185043811798096,19,1.0,2 +33519,2,0.0,1,1.1695072650909424,20,0.0,2 +33520,2,1.0,1,1.4045058488845825,21,1.0,2 +33521,2,1.0,1,2.4465174674987793,22,1.0,2 +33522,2,1.0,1,1.2465075254440308,23,1.0,2 +33523,2,1.0,1,1.6355029344558716,24,1.0,2 +33524,2,0.0,1,1.6995021104812622,25,0.0,2 +33525,2,1.0,1,1.5835036039352417,26,0.0,2 +33526,2,1.0,1,1.4225056171417236,27,1.0,2 +33527,2,1.0,1,1.876499891281128,28,1.0,2 +33528,2,1.0,1,1.2895073890686035,29,1.0,2 +33529,2,1.0,1,1.8165006637573242,30,1.0,2 +33530,2,0.0,1,1.3075071573257446,31,0.0,2 +33531,2,1.0,1,1.2805074453353882,32,1.0,2 +33532,2,1.0,1,1.2775075435638428,33,0.0,2 +33533,2,0.0,1,1.8525002002716064,34,0.0,2 +33534,2,1.0,1,1.6905021667480469,35,1.0,2 +33535,2,1.0,1,1.2485074996948242,36,1.0,2 +33536,2,1.0,1,1.6725025177001953,37,0.0,2 +33537,2,0.0,1,1.2335073947906494,38,0.0,2 +33538,2,1.0,1,1.5165044069290161,39,1.0,2 +33539,2,1.0,1,1.870499849319458,40,1.0,2 +33540,2,1.0,1,1.3525065183639526,41,0.0,2 +33541,2,1.0,1,1.707502007484436,42,1.0,2 +33542,2,1.0,1,1.3675063848495483,43,1.0,2 +33543,2,1.0,1,1.5115045309066772,44,1.0,2 +33544,2,1.0,1,1.224507451057434,45,0.0,2 +33545,2,1.0,1,1.5325043201446533,46,1.0,2 +33546,2,1.0,1,1.4195057153701782,47,1.0,2 +33547,2,1.0,1,1.1965073347091675,48,1.0,2 +33548,2,1.0,1,1.5155044794082642,49,1.0,2 +33549,2,1.0,1,1.191507339477539,50,0.0,2 +33550,2,1.0,1,1.6875022649765015,51,1.0,2 +33551,2,1.0,1,1.5875035524368286,52,1.0,2 +33552,2,1.0,1,1.3015072345733643,53,1.0,2 +33553,2,1.0,1,1.3165069818496704,54,0.0,2 +33554,2,1.0,1,1.6565027236938477,55,0.0,2 +33555,2,0.0,1,1.6315029859542847,56,0.0,2 +33556,2,0.0,1,1.471505045890808,57,0.0,2 +33557,2,1.0,1,1.6475027799606323,58,1.0,2 +33558,2,1.0,1,1.7175018787384033,59,1.0,2 +33559,2,1.0,1,1.3695063591003418,60,1.0,2 +33560,2,1.0,1,1.2475074529647827,61,1.0,2 +33561,2,1.0,1,1.197507381439209,62,1.0,2 +33562,2,1.0,1,1.8824996948242188,63,0.0,2 +33563,2,1.0,1,2.5115206241607666,64,1.0,2 +33564,2,1.0,1,1.4305055141448975,65,1.0,2 +33565,2,1.0,1,1.5115045309066772,66,1.0,2 +33566,2,1.0,1,1.2375074625015259,67,0.0,2 +33567,2,1.0,1,1.4255056381225586,68,1.0,2 +33568,2,1.0,1,1.4905047416687012,69,1.0,2 +33569,2,1.0,1,1.200507402420044,70,1.0,2 +33570,2,0.0,1,1.3035072088241577,71,0.0,2 +33571,2,1.0,1,1.270507574081421,72,1.0,2 +33572,2,1.0,1,1.4615051746368408,73,1.0,2 +33573,2,1.0,1,1.5775036811828613,74,1.0,2 +33574,2,1.0,1,1.6515027284622192,75,1.0,2 +33575,2,1.0,1,1.33950674533844,76,1.0,2 +33576,2,1.0,1,1.3475066423416138,77,0.0,2 +33577,2,0.0,1,1.405505895614624,78,0.0,2 +33578,2,1.0,1,1.681502342224121,79,0.0,2 +33579,2,1.0,1,1.5755037069320679,80,1.0,2 +33580,2,0.0,1,1.5995033979415894,81,1.0,2 +33581,2,1.0,1,1.8445003032684326,82,0.0,2 +33582,2,0.0,1,1.592503547668457,83,0.0,2 +33583,2,0.0,1,1.498504638671875,84,0.0,2 +33584,2,1.0,1,1.231507420539856,85,1.0,2 +33585,2,1.0,1,1.3685063123703003,86,1.0,2 +33586,2,1.0,1,1.3495066165924072,87,1.0,2 +33587,2,1.0,1,1.3555065393447876,88,1.0,2 +33588,2,1.0,1,1.2205073833465576,89,0.0,2 +33589,2,0.0,1,1.8814997673034668,90,0.0,2 +33590,2,0.0,1,1.6685025691986084,91,1.0,2 +33591,2,0.0,1,1.3755062818527222,92,1.0,2 +33592,2,0.0,1,1.3425066471099854,93,0.0,2 +33593,2,0.0,1,1.8505001068115234,94,1.0,2 +33594,2,0.0,1,1.4125057458877563,95,0.0,2 +33595,2,0.0,1,1.5755037069320679,96,0.0,2 +33596,2,0.0,1,1.5745036602020264,97,1.0,2 +33597,2,1.0,1,1.432505488395691,98,1.0,2 +33598,2,1.0,1,1.3415067195892334,99,0.0,2 +33599,2,0.0,1,2.1815052032470703,100,0.0,2 +33600,2,0.0,1,1.431505560874939,101,0.0,2 +33601,2,1.0,1,2.2665090560913086,102,1.0,2 +33602,2,1.0,1,1.2605074644088745,103,1.0,2 +33603,2,1.0,1,1.615503191947937,104,0.0,2 +33604,2,0.0,1,1.2835074663162231,105,1.0,2 +33605,2,0.0,1,1.3915060758590698,106,1.0,2 +33606,2,0.0,1,1.164507269859314,107,0.0,2 +33607,2,0.0,1,1.1795073747634888,108,0.0,2 +33608,2,0.0,1,1.7505013942718506,109,0.0,2 +33609,2,1.0,1,1.7415015697479248,110,1.0,2 +33610,2,1.0,1,1.3005071878433228,111,1.0,2 +33611,2,1.0,1,1.3505065441131592,112,1.0,2 +33612,2,1.0,1,1.4365054368972778,113,1.0,2 +33613,2,1.0,1,1.4205056428909302,114,1.0,2 +33614,2,0.0,1,1.4035059213638306,115,0.0,2 +33615,2,1.0,1,1.733501672744751,116,0.0,2 +33616,2,1.0,1,1.255507469177246,117,1.0,2 +33617,2,1.0,1,1.497504711151123,118,1.0,2 +33618,2,1.0,1,1.3755062818527222,119,0.0,2 +33619,2,1.0,1,1.8345003128051758,120,1.0,2 +33620,2,1.0,1,1.4155057668685913,121,0.0,2 +33621,2,0.0,1,2.5335216522216797,122,0.0,2 +33622,2,1.0,1,2.610525131225586,123,1.0,2 +33623,2,1.0,1,1.3725062608718872,124,0.0,2 +33624,2,1.0,1,1.3855061531066895,125,1.0,2 +33625,2,0.0,1,1.2175073623657227,126,0.0,2 +33626,2,1.0,1,1.3385066986083984,127,1.0,2 +33627,2,1.0,1,1.4515053033828735,128,1.0,2 +33628,2,1.0,1,1.3425066471099854,129,1.0,2 +33629,2,1.0,1,1.2775075435638428,130,1.0,2 +33630,2,1.0,1,1.2825074195861816,131,1.0,2 +33631,2,1.0,1,1.428505539894104,132,0.0,2 +33632,2,1.0,1,1.3385066986083984,133,1.0,2 +33633,2,1.0,1,1.5955034494400024,134,1.0,2 +33634,2,1.0,1,1.4235056638717651,135,1.0,2 +33635,2,1.0,1,1.4775049686431885,136,1.0,2 +33636,2,1.0,1,1.450505256652832,137,1.0,2 +33637,2,1.0,1,1.2605074644088745,138,1.0,2 +33638,2,1.0,1,1.5145044326782227,139,1.0,2 +33639,2,1.0,1,1.3345067501068115,140,0.0,2 +33640,2,1.0,1,2.0294981002807617,141,0.0,2 +33641,2,0.0,1,1.5825035572052002,142,1.0,2 +33642,2,0.0,1,1.7385015487670898,143,0.0,2 +33643,2,1.0,1,1.2775075435638428,144,0.0,2 +33644,2,0.0,1,2.5355217456817627,145,0.0,2 +33645,2,0.0,1,1.3555065393447876,146,0.0,2 +33646,2,1.0,1,1.7155019044876099,147,1.0,2 +33647,2,1.0,1,1.4485052824020386,148,1.0,2 +33648,2,1.0,1,1.267507553100586,149,1.0,2 +33649,2,1.0,1,1.2545075416564941,150,1.0,2 +33650,2,1.0,1,1.2535074949264526,151,0.0,2 +33651,2,1.0,1,1.4515053033828735,152,1.0,2 +33652,2,0.0,1,1.6925022602081299,153,0.0,2 +33653,2,1.0,1,1.4525052309036255,154,0.0,2 +33654,2,1.0,1,1.4475053548812866,155,0.0,2 +33655,2,1.0,1,2.368514060974121,156,1.0,2 +33656,2,1.0,1,1.361506462097168,157,1.0,2 +33657,2,1.0,1,1.265507459640503,158,0.0,2 +33658,2,1.0,1,1.776501178741455,159,1.0,2 +33659,2,1.0,1,1.7545013427734375,160,0.0,2 +33660,2,1.0,1,1.4585051536560059,161,1.0,2 +33661,2,1.0,1,1.2635074853897095,162,1.0,2 +33662,2,1.0,1,1.2945072650909424,163,1.0,2 +33663,2,1.0,1,1.7005021572113037,164,0.0,2 +33664,2,1.0,1,1.6315029859542847,165,1.0,2 +33665,2,1.0,1,1.5755037069320679,166,1.0,2 +33666,2,1.0,1,1.7195018529891968,167,1.0,2 +33667,2,1.0,1,1.4405053853988647,168,0.0,2 +33668,2,0.0,1,1.2485074996948242,169,1.0,2 +33669,2,0.0,1,1.4785048961639404,170,0.0,2 +33670,2,0.0,1,1.7925009727478027,171,0.0,2 +33671,2,1.0,1,1.4135057926177979,172,1.0,2 +33672,2,1.0,1,1.5985033512115479,173,0.0,2 +33673,2,1.0,1,1.2955073118209839,174,0.0,2 +33674,2,0.0,1,1.476504921913147,175,0.0,2 +33675,2,0.0,1,1.3665063381195068,176,1.0,2 +33676,2,0.0,1,1.427505612373352,177,0.0,2 +33677,2,0.0,1,1.1895073652267456,178,0.0,2 +33678,2,0.0,1,1.8095006942749023,179,0.0,2 +33679,2,1.0,1,1.3255069255828857,180,1.0,2 +33680,2,0.0,1,1.427505612373352,181,0.0,2 +33681,2,1.0,1,1.4445053339004517,182,1.0,2 +33682,2,1.0,1,1.1895073652267456,183,1.0,2 +33683,2,0.0,1,1.5085045099258423,184,1.0,2 +33684,2,1.0,1,1.3955060243606567,185,1.0,2 +33685,2,0.0,1,1.5995033979415894,186,0.0,2 +33686,2,1.0,1,1.2955073118209839,187,0.0,2 +33687,2,1.0,1,1.431505560874939,188,0.0,2 +33688,2,0.0,1,1.336506724357605,189,0.0,2 +33689,2,0.0,1,1.36250638961792,190,0.0,2 +33690,2,1.0,1,1.8575000762939453,191,1.0,2 +33691,2,1.0,1,1.729501724243164,192,0.0,2 +33692,2,1.0,1,1.3005071878433228,193,0.0,2 +33693,2,0.0,1,1.3035072088241577,194,1.0,2 +33694,2,1.0,1,1.544504165649414,195,1.0,2 +33695,2,0.0,1,1.777501106262207,196,1.0,2 +33696,2,0.0,1,1.63450288772583,197,0.0,2 +33697,2,0.0,1,2.7675325870513916,198,0.0,2 +33698,2,1.0,1,1.4185056686401367,199,1.0,2 +33699,2,1.0,1,1.230507493019104,200,1.0,2 +33700,2,1.0,1,1.7165019512176514,201,1.0,2 +33701,2,1.0,1,1.2235074043273926,202,1.0,2 +33702,2,1.0,1,1.3975059986114502,203,0.0,2 +33703,2,1.0,1,1.5395041704177856,204,0.0,2 +33704,2,1.0,1,1.4375054836273193,205,1.0,2 +33705,2,1.0,1,1.6645026206970215,206,1.0,2 +33706,2,1.0,1,1.4415054321289062,207,0.0,2 +33707,2,0.0,1,1.224507451057434,208,1.0,2 +33708,2,0.0,1,1.4845048189163208,209,0.0,2 +33709,2,1.0,1,1.8385002613067627,210,1.0,2 +33710,2,1.0,1,2.2355077266693115,211,1.0,2 +33711,2,1.0,1,1.4305055141448975,212,1.0,2 +33712,2,1.0,1,1.317507028579712,213,1.0,2 +33713,2,1.0,1,1.596503496170044,214,1.0,2 +33714,2,1.0,1,1.6285030841827393,215,0.0,2 +33715,2,0.0,1,1.5685038566589355,216,0.0,2 +33716,2,1.0,1,1.6065032482147217,217,1.0,2 +33717,2,1.0,1,1.4335055351257324,218,0.0,2 +33718,2,1.0,1,1.3925060033798218,219,1.0,2 +33719,2,1.0,1,1.6255030632019043,220,1.0,2 +33720,2,1.0,1,1.227507472038269,221,1.0,2 +33721,2,1.0,1,1.2805074453353882,222,1.0,2 +33722,2,1.0,1,1.2565075159072876,223,1.0,2 +33723,2,1.0,1,1.961498737335205,224,1.0,2 +33724,2,0.0,1,1.6715024709701538,225,1.0,2 +33725,2,1.0,1,1.3695063591003418,226,0.0,2 +33726,2,0.0,1,1.2185074090957642,227,0.0,2 +33727,2,1.0,1,1.9864983558654785,228,1.0,2 +33728,2,1.0,1,1.8185005187988281,229,1.0,2 +33729,2,1.0,1,1.2895073890686035,230,1.0,2 +33730,2,1.0,1,1.6455028057098389,231,1.0,2 +33731,2,1.0,1,1.5565040111541748,232,1.0,2 +33732,2,1.0,1,1.3285068273544312,233,0.0,2 +33733,2,1.0,1,1.6805024147033691,234,1.0,2 +33734,2,1.0,1,1.497504711151123,235,1.0,2 +33735,2,1.0,1,1.5315042734146118,236,0.0,2 +33736,2,1.0,1,1.6665024757385254,237,1.0,2 +33737,2,1.0,1,1.4425053596496582,238,1.0,2 +33738,2,1.0,1,1.28750741481781,239,1.0,2 +33739,2,1.0,1,1.2735075950622559,240,1.0,2 +33740,2,1.0,1,1.2745075225830078,241,1.0,2 +33741,2,1.0,1,1.4705049991607666,242,0.0,2 +33742,2,1.0,1,1.8325004577636719,243,1.0,2 +33743,2,1.0,1,1.454505205154419,244,1.0,2 +33744,2,1.0,1,1.2815074920654297,245,0.0,2 +33745,2,0.0,1,2.055499315261841,246,0.0,2 +33746,2,1.0,1,1.7355016469955444,247,1.0,2 +33747,2,1.0,1,1.9474989175796509,248,1.0,2 +33748,2,1.0,1,1.4695050716400146,249,1.0,2 +33749,2,1.0,1,1.2185074090957642,250,0.0,2 +33750,2,0.0,1,1.8894996643066406,251,0.0,2 +33751,2,0.0,1,2.341512680053711,252,1.0,2 +33752,2,0.0,1,1.7155019044876099,253,0.0,2 +33753,2,0.0,1,2.402515411376953,254,0.0,2 +33754,2,0.0,1,1.6015033721923828,255,0.0,2 +33755,2,0.0,1,1.1615073680877686,256,0.0,2 +33756,2,0.0,1,1.7315016984939575,257,0.0,2 +33757,2,1.0,1,2.04849910736084,258,0.0,2 +33758,2,0.0,1,1.2865073680877686,259,0.0,2 +33759,2,0.0,1,2.336512565612793,260,1.0,2 +33760,2,0.0,1,1.188507318496704,261,0.0,2 +33761,2,0.0,1,1.2495074272155762,262,0.0,2 +33762,2,1.0,1,1.667502522468567,263,0.0,2 +33763,2,1.0,1,1.7565014362335205,264,1.0,2 +33764,2,1.0,1,1.3305068016052246,265,1.0,2 +33765,2,1.0,1,1.597503423690796,266,1.0,2 +33766,2,1.0,1,1.2935073375701904,267,1.0,2 +33767,2,1.0,1,2.1485037803649902,268,1.0,2 +33768,2,1.0,1,1.9934983253479004,269,0.0,2 +33769,2,1.0,1,1.4425053596496582,270,1.0,2 +33770,2,1.0,1,1.6225030422210693,271,0.0,2 +33771,2,1.0,1,1.5155044794082642,272,0.0,2 +33772,2,1.0,1,1.4305055141448975,273,0.0,2 +33773,2,0.0,1,2.1755049228668213,274,0.0,2 +33774,2,1.0,1,1.2865073680877686,275,0.0,2 +33775,2,1.0,1,1.9534988403320312,276,1.0,2 +33776,2,1.0,1,1.5505039691925049,277,1.0,2 +33777,2,1.0,1,1.681502342224121,278,1.0,2 +33778,2,1.0,1,1.4435054063796997,279,1.0,2 +33779,2,1.0,1,1.2225074768066406,280,0.0,2 +33780,2,1.0,1,1.8585000038146973,281,0.0,2 +33781,2,0.0,1,1.3285068273544312,282,1.0,2 +33782,2,0.0,1,1.7945008277893066,283,0.0,2 +33783,2,1.0,1,1.965498685836792,284,1.0,2 +33784,2,1.0,1,2.1775050163269043,285,1.0,2 +33785,2,1.0,1,1.157507300376892,286,1.0,2 +33786,2,1.0,1,1.3595064878463745,287,0.0,2 +33787,2,1.0,1,1.4565051794052124,288,1.0,2 +33788,2,1.0,1,1.6995021104812622,289,0.0,2 +33789,2,1.0,1,2.01649808883667,290,1.0,2 +33790,2,1.0,1,1.7165019512176514,291,1.0,2 +33791,2,0.0,1,1.476504921913147,292,0.0,2 +33792,2,1.0,1,1.336506724357605,293,1.0,2 +33793,2,1.0,1,1.8595000505447388,294,0.0,2 +33794,2,1.0,1,1.2155073881149292,295,0.0,2 +33795,2,1.0,1,1.8045008182525635,296,0.0,2 +33796,2,0.0,1,1.8495001792907715,297,0.0,2 +33797,2,0.0,1,1.6165032386779785,298,0.0,2 +33798,2,1.0,1,1.5155044794082642,299,1.0,2 +33799,2,1.0,1,1.3045071363449097,300,0.0,2 +33800,2,1.0,1,2.2695093154907227,301,0.0,2 +33801,2,0.0,1,1.5055046081542969,302,0.0,2 +33802,2,0.0,1,1.4835048913955688,303,1.0,2 +33803,2,0.0,1,1.4615051746368408,304,0.0,2 +33804,2,0.0,1,1.7615013122558594,305,0.0,2 +33805,2,0.0,1,1.7155019044876099,306,0.0,2 +33806,2,1.0,1,1.6395028829574585,307,0.0,2 +33807,2,0.0,1,2.1605043411254883,308,1.0,2 +33808,2,0.0,1,1.409505844116211,309,0.0,2 +33809,2,1.0,1,1.9994982481002808,310,0.0,2 +33810,2,0.0,1,2.049499034881592,311,0.0,2 +33811,2,0.0,1,1.7965009212493896,312,0.0,2 +33812,2,0.0,1,1.5265042781829834,313,0.0,2 +33813,2,1.0,1,1.6775023937225342,314,1.0,2 +33814,2,1.0,1,1.778501033782959,315,1.0,2 +33815,2,1.0,1,1.4175057411193848,316,1.0,2 +33816,2,1.0,1,1.5695037841796875,317,1.0,2 +33817,2,1.0,1,1.1655073165893555,318,1.0,2 +33818,2,0.0,1,1.1995073556900024,319,1.0,2 +33819,2,1.0,1,1.7215018272399902,320,1.0,2 +33820,2,1.0,1,1.5255043506622314,321,1.0,2 +33821,2,0.0,1,1.5605039596557617,322,0.0,2 +33822,2,0.0,1,1.2855074405670166,323,0.0,2 +33823,2,1.0,1,1.309507131576538,324,1.0,2 +33824,2,1.0,1,1.5185043811798096,325,0.0,2 +33825,2,1.0,1,1.6435028314590454,326,1.0,2 +33826,2,1.0,1,2.2625088691711426,327,1.0,2 +33827,2,1.0,1,1.502504587173462,328,1.0,2 +33828,2,1.0,1,1.1185072660446167,329,0.0,2 +33829,2,1.0,1,1.5165044069290161,330,0.0,2 +33830,2,0.0,1,1.7635012865066528,331,0.0,2 +33831,2,0.0,1,2.2515084743499756,332,0.0,2 +33832,2,1.0,1,1.314507007598877,333,1.0,2 +33833,2,1.0,1,1.267507553100586,334,0.0,2 +33834,2,1.0,1,1.681502342224121,335,1.0,2 +33835,2,1.0,1,1.2625075578689575,336,0.0,2 +33836,2,1.0,1,1.6085033416748047,337,1.0,2 +33837,2,1.0,1,1.1505073308944702,338,0.0,2 +33838,2,1.0,1,1.428505539894104,339,1.0,2 +33839,2,1.0,1,1.6435028314590454,340,1.0,2 +33840,2,1.0,1,1.3715063333511353,341,1.0,2 +33841,2,1.0,1,1.6875022649765015,342,1.0,2 +33842,2,1.0,1,1.7535014152526855,343,1.0,2 +33843,2,1.0,1,1.2725075483322144,344,1.0,2 +33844,2,1.0,1,1.3225069046020508,345,1.0,2 +33845,2,1.0,1,1.4875048398971558,346,1.0,2 +33846,2,1.0,1,1.2635074853897095,347,1.0,2 +33847,2,1.0,1,1.3295068740844727,348,0.0,2 +33848,2,1.0,1,1.3505065441131592,349,1.0,2 +33849,2,1.0,1,1.5915035009384155,350,1.0,2 +33850,2,1.0,1,1.3605064153671265,351,0.0,2 +33851,2,1.0,1,2.5275213718414307,352,0.0,2 +33852,2,0.0,1,2.7265305519104004,353,1.0,2 +33853,2,0.0,1,1.523504376411438,354,0.0,2 +33854,2,0.0,1,1.228507399559021,355,0.0,2 +33855,2,0.0,1,1.3065071105957031,356,1.0,2 +33856,2,0.0,1,1.641502857208252,357,1.0,2 +33857,2,0.0,1,2.067499876022339,358,1.0,2 +33858,2,0.0,1,1.340506672859192,359,0.0,2 +33859,2,0.0,1,1.542504072189331,360,0.0,2 +33860,2,0.0,1,1.3715063333511353,361,0.0,2 +33861,2,1.0,1,2.2135066986083984,362,1.0,2 +33862,2,1.0,1,1.7235018014907837,363,1.0,2 +33863,2,1.0,1,1.384506106376648,364,1.0,2 +33864,2,1.0,1,1.3915060758590698,365,1.0,2 +33865,2,1.0,1,1.1965073347091675,366,1.0,2 +33866,2,1.0,1,1.313507080078125,367,1.0,2 +33867,2,1.0,1,1.2535074949264526,368,0.0,2 +33868,2,0.0,1,2.2905101776123047,369,1.0,2 +33869,2,0.0,1,1.7585012912750244,370,0.0,2 +33870,2,1.0,1,1.361506462097168,371,1.0,2 +33871,2,1.0,1,1.596503496170044,372,1.0,2 +33872,2,1.0,1,1.2955073118209839,373,1.0,2 +33873,2,0.0,1,1.2405074834823608,374,1.0,2 +33874,2,1.0,1,1.197507381439209,375,1.0,2 +33875,2,0.0,1,1.6645026206970215,376,0.0,2 +33876,2,1.0,1,1.44950532913208,377,1.0,2 +33877,2,1.0,1,1.479504942893982,378,0.0,2 +33878,2,0.0,1,1.5125044584274292,379,0.0,2 +33879,2,1.0,1,1.387506127357483,380,1.0,2 +33880,2,1.0,1,1.167507290840149,381,0.0,2 +33881,2,1.0,1,1.6055033206939697,382,1.0,2 +33882,2,1.0,1,1.2105073928833008,383,0.0,2 +33883,2,1.0,1,1.4405053853988647,384,1.0,2 +33884,2,1.0,1,1.4995046854019165,385,0.0,2 +33885,2,1.0,1,1.4745049476623535,386,0.0,2 +33886,2,0.0,1,1.9104993343353271,387,0.0,2 +33887,2,0.0,1,1.497504711151123,388,1.0,2 +33888,2,0.0,1,1.197507381439209,389,0.0,2 +33889,2,1.0,1,1.8085007667541504,390,1.0,2 +33890,2,1.0,1,1.2795075178146362,391,1.0,2 +33891,2,1.0,1,1.4845048189163208,392,1.0,2 +33892,2,1.0,1,1.6335029602050781,393,0.0,2 +33893,2,0.0,1,1.4045058488845825,394,0.0,2 +33894,2,1.0,1,1.4255056381225586,395,1.0,2 +33895,2,1.0,1,1.258507490158081,396,0.0,2 +33896,2,1.0,1,1.737501621246338,397,0.0,2 +33897,2,0.0,1,1.983498454093933,398,0.0,2 +33898,2,0.0,1,1.3045071363449097,399,0.0,2 +33899,2,1.0,1,2.6895289421081543,400,0.0,2 +33900,2,0.0,1,1.2085074186325073,401,0.0,2 +33901,2,0.0,1,1.4855048656463623,402,0.0,2 +33902,2,1.0,1,1.402505874633789,403,0.0,2 +33903,2,0.0,1,1.3505065441131592,404,0.0,2 +33904,2,1.0,1,1.2765074968338013,405,1.0,2 +33905,2,1.0,1,1.6135032176971436,406,0.0,2 +33906,2,0.0,1,1.6085033416748047,407,0.0,2 +33907,2,0.0,1,2.047498941421509,408,0.0,2 +33908,2,0.0,1,1.2145074605941772,409,0.0,2 +33909,2,0.0,1,1.4255056381225586,410,0.0,2 +33910,2,1.0,1,1.2815074920654297,411,1.0,2 +33911,2,1.0,1,1.4875048398971558,412,1.0,2 +33912,2,1.0,1,1.3515065908432007,413,0.0,2 +33913,2,1.0,1,1.5475040674209595,414,0.0,2 +33914,2,1.0,1,1.7885010242462158,415,0.0,2 +33915,2,1.0,1,1.354506492614746,416,0.0,2 +33916,2,0.0,1,2.0294981002807617,417,0.0,2 +33917,2,0.0,1,1.255507469177246,418,1.0,2 +33918,2,0.0,1,1.257507562637329,419,0.0,2 +33919,2,0.0,1,1.8485002517700195,420,0.0,2 +33920,2,1.0,1,1.1655073165893555,421,1.0,2 +33921,2,1.0,1,1.5625038146972656,422,1.0,2 +33922,2,1.0,1,1.5305042266845703,423,0.0,2 +33923,2,1.0,1,2.2485084533691406,424,1.0,2 +33924,2,1.0,1,1.3335068225860596,425,1.0,2 +33925,2,1.0,1,1.3025071620941162,426,0.0,2 +33926,2,0.0,1,1.336506724357605,427,0.0,2 +33927,2,0.0,1,1.4405053853988647,428,0.0,2 +33928,2,1.0,1,1.5045045614242554,429,1.0,2 +33929,2,1.0,1,1.129507303237915,430,1.0,2 +33930,2,1.0,1,2.1525039672851562,431,1.0,2 +33931,2,1.0,1,1.5285043716430664,432,0.0,2 +33932,2,1.0,1,2.1735048294067383,433,0.0,2 +33933,2,1.0,1,1.3085070848464966,434,1.0,2 +33934,2,1.0,1,1.7545013427734375,435,1.0,2 +33935,2,1.0,1,1.2215074300765991,436,0.0,2 +33936,2,0.0,1,2.2345075607299805,437,1.0,2 +33937,2,0.0,1,1.7085020542144775,438,0.0,2 +33938,2,1.0,1,1.7655012607574463,439,0.0,2 +33939,2,1.0,1,2.5395219326019287,440,1.0,2 +33940,2,1.0,1,1.6655025482177734,441,1.0,2 +33941,2,1.0,1,1.5825035572052002,442,1.0,2 +33942,2,1.0,1,1.6015033721923828,443,0.0,2 +33943,2,1.0,1,2.078500270843506,444,1.0,2 +33944,2,1.0,1,1.2485074996948242,445,0.0,2 +33945,2,0.0,1,1.6475027799606323,446,1.0,2 +33946,2,0.0,1,1.2325074672698975,447,0.0,2 +33947,2,0.0,1,1.7865009307861328,448,1.0,2 +33948,2,0.0,1,1.3745062351226807,449,0.0,2 +33949,2,0.0,1,1.5605039596557617,450,0.0,2 +33950,2,1.0,1,2.2005062103271484,451,0.0,2 +33951,2,1.0,1,1.734501600265503,452,1.0,2 +33952,2,1.0,1,1.3165069818496704,453,0.0,2 +33953,2,0.0,1,1.5165044069290161,454,0.0,2 +33954,2,1.0,1,1.1815073490142822,455,1.0,2 +33955,2,1.0,1,1.9534988403320312,456,0.0,2 +33956,2,1.0,1,2.2235071659088135,457,1.0,2 +33957,2,1.0,1,1.3655064105987549,458,0.0,2 +33958,2,1.0,1,1.8844997882843018,459,0.0,2 +33959,2,1.0,1,1.4655051231384277,460,1.0,2 +33960,2,1.0,1,1.2835074663162231,461,0.0,2 +33961,2,1.0,1,1.4865047931671143,462,1.0,2 +33962,2,1.0,1,1.5555039644241333,463,1.0,2 +33963,2,1.0,1,1.68650221824646,464,1.0,2 +33964,2,1.0,1,1.228507399559021,465,0.0,2 +33965,2,1.0,1,1.4345054626464844,466,1.0,2 +33966,2,1.0,1,1.5565040111541748,467,0.0,2 +33967,2,1.0,1,2.0434987545013428,468,1.0,2 +33968,2,1.0,1,1.188507318496704,469,1.0,2 +33969,2,1.0,1,1.6145031452178955,470,1.0,2 +33970,2,1.0,1,1.454505205154419,471,1.0,2 +33971,2,1.0,1,1.2805074453353882,472,1.0,2 +33972,2,1.0,1,1.194507360458374,473,0.0,2 +33973,2,1.0,1,1.9034994840621948,474,0.0,2 +33974,2,0.0,1,1.5315042734146118,475,1.0,2 +33975,2,0.0,1,1.9674986600875854,476,0.0,2 +33976,2,1.0,1,1.44950532913208,477,1.0,2 +33977,2,1.0,1,1.5075045824050903,478,0.0,2 +33978,2,1.0,1,1.8535001277923584,479,1.0,2 +33979,2,1.0,1,1.2665075063705444,480,0.0,2 +33980,2,0.0,1,1.1105072498321533,481,0.0,2 +33981,2,0.0,1,1.7955008745193481,482,0.0,2 +33982,2,0.0,1,1.357506513595581,483,1.0,2 +33983,2,0.0,1,1.284507393836975,484,0.0,2 +33984,2,0.0,1,1.6945021152496338,485,0.0,2 +33985,2,0.0,1,1.4555052518844604,486,0.0,2 +33986,2,0.0,1,1.4415054321289062,487,0.0,2 +33987,2,0.0,1,1.5515040159225464,488,0.0,2 +33988,2,1.0,1,1.9784984588623047,489,0.0,2 +33989,2,1.0,1,1.2365074157714844,490,1.0,2 +33990,2,1.0,1,1.8904995918273926,491,1.0,2 +33991,2,1.0,1,1.545504093170166,492,1.0,2 +33992,2,1.0,1,1.234507441520691,493,1.0,2 +33993,2,1.0,1,1.4565051794052124,494,1.0,2 +33994,2,1.0,1,1.571503758430481,495,0.0,2 +33995,2,0.0,1,1.431505560874939,496,0.0,2 +33996,2,1.0,1,1.28750741481781,497,1.0,2 +33997,2,1.0,1,1.4635051488876343,498,1.0,2 +33998,2,1.0,1,1.3235069513320923,499,1.0,2 +33999,2,1.0,1,1.383506178855896,500,1.0,2 +34000,2,0.0,2,1.6565027236938477,1,1.0,2 +34001,2,0.0,2,1.5995033979415894,2,0.0,2 +34002,2,1.0,2,1.3825061321258545,3,1.0,2 +34003,2,1.0,2,1.9494988918304443,4,0.0,2 +34004,2,0.0,2,1.7005021572113037,5,1.0,2 +34005,2,0.0,2,1.406505823135376,6,0.0,2 +34006,2,0.0,2,1.3065071105957031,7,0.0,2 +34007,2,0.0,2,2.2855100631713867,8,1.0,2 +34008,2,0.0,2,1.6915022134780884,9,1.0,2 +34009,2,0.0,2,1.1735073328018188,10,1.0,2 +34010,2,0.0,2,1.6655025482177734,11,0.0,2 +34011,2,1.0,2,2.127502679824829,12,1.0,2 +34012,2,1.0,2,1.2905073165893555,13,0.0,2 +34013,2,0.0,2,2.36751389503479,14,0.0,2 +34014,2,1.0,2,1.6405029296875,15,1.0,2 +34015,2,1.0,2,1.5555039644241333,16,1.0,2 +34016,2,1.0,2,1.1985074281692505,17,0.0,2 +34017,2,0.0,2,1.4385054111480713,18,1.0,2 +34018,2,0.0,2,1.3645063638687134,19,0.0,2 +34019,2,0.0,2,2.4305167198181152,20,0.0,2 +34020,2,0.0,2,1.2995072603225708,21,0.0,2 +34021,2,1.0,2,1.9714986085891724,22,0.0,2 +34022,2,1.0,2,1.8575000762939453,23,1.0,2 +34023,2,1.0,2,1.4555052518844604,24,1.0,2 +34024,2,1.0,2,1.6605026721954346,25,0.0,2 +34025,2,0.0,2,1.6715024709701538,26,0.0,2 +34026,2,0.0,2,1.2435075044631958,27,1.0,2 +34027,2,0.0,2,1.6475027799606323,28,1.0,2 +34028,2,0.0,2,1.2425074577331543,29,0.0,2 +34029,2,0.0,2,1.6455028057098389,30,0.0,2 +34030,2,1.0,2,1.332506775856018,31,0.0,2 +34031,2,1.0,2,1.3165069818496704,32,1.0,2 +34032,2,1.0,2,1.5775036811828613,33,0.0,2 +34033,2,0.0,2,1.498504638671875,34,1.0,2 +34034,2,0.0,2,1.3465065956115723,35,0.0,2 +34035,2,1.0,2,1.1625072956085205,36,1.0,2 +34036,2,1.0,2,1.3005071878433228,37,0.0,2 +34037,2,1.0,2,1.7685012817382812,38,0.0,2 +34038,2,0.0,2,1.1505073308944702,39,1.0,2 +34039,2,0.0,2,1.4085057973861694,40,0.0,2 +34040,2,1.0,2,1.3205069303512573,41,0.0,2 +34041,2,1.0,2,1.6805024147033691,42,1.0,2 +34042,2,1.0,2,1.2595075368881226,43,1.0,2 +34043,2,1.0,2,1.203507423400879,44,0.0,2 +34044,2,1.0,2,2.2205071449279785,45,1.0,2 +34045,2,1.0,2,1.2085074186325073,46,1.0,2 +34046,2,1.0,2,1.4215056896209717,47,1.0,2 +34047,2,1.0,2,1.7015020847320557,48,0.0,2 +34048,2,0.0,2,1.728501796722412,49,0.0,2 +34049,2,1.0,2,1.4445053339004517,50,1.0,2 +34050,2,1.0,2,1.8784997463226318,51,1.0,2 +34051,2,1.0,2,1.5125044584274292,52,0.0,2 +34052,2,1.0,2,1.2935073375701904,53,0.0,2 +34053,2,1.0,2,1.759501338005066,54,1.0,2 +34054,2,1.0,2,1.5385041236877441,55,1.0,2 +34055,2,1.0,2,1.3445066213607788,56,0.0,2 +34056,2,1.0,2,1.188507318496704,57,0.0,2 +34057,2,0.0,2,2.346512794494629,58,1.0,2 +34058,2,0.0,2,1.5005046129226685,59,0.0,2 +34059,2,1.0,2,1.9324991703033447,60,1.0,2 +34060,2,1.0,2,1.4415054321289062,61,1.0,2 +34061,2,1.0,2,1.780501127243042,62,1.0,2 +34062,2,1.0,2,1.2145074605941772,63,1.0,2 +34063,2,1.0,2,1.5995033979415894,64,1.0,2 +34064,2,1.0,2,1.5035046339035034,65,0.0,2 +34065,2,1.0,2,1.498504638671875,66,1.0,2 +34066,2,0.0,2,1.7915009260177612,67,0.0,2 +34067,2,1.0,2,1.597503423690796,68,1.0,2 +34068,2,0.0,2,1.3005071878433228,69,0.0,2 +34069,2,1.0,2,1.4565051794052124,70,0.0,2 +34070,2,0.0,2,1.873499870300293,71,1.0,2 +34071,2,0.0,2,1.3705062866210938,72,1.0,2 +34072,2,0.0,2,1.7715011835098267,73,0.0,2 +34073,2,0.0,2,2.4945197105407715,74,1.0,2 +34074,2,0.0,2,2.136503219604492,75,0.0,2 +34075,2,0.0,2,1.3045071363449097,76,0.0,2 +34076,2,0.0,2,1.2055073976516724,77,0.0,2 +34077,2,0.0,2,1.870499849319458,78,0.0,2 +34078,2,1.0,2,1.476504921913147,79,0.0,2 +34079,2,1.0,2,1.2145074605941772,80,0.0,2 +34080,2,0.0,2,2.12150239944458,81,0.0,2 +34081,2,0.0,2,1.357506513595581,82,0.0,2 +34082,2,0.0,2,2.105501651763916,83,1.0,2 +34083,2,1.0,2,1.5055046081542969,84,0.0,2 +34084,2,0.0,2,1.2765074968338013,85,0.0,2 +34085,2,0.0,2,1.567503809928894,86,1.0,2 +34086,2,0.0,2,1.5155044794082642,87,0.0,2 +34087,2,1.0,2,1.8545000553131104,88,0.0,2 +34088,2,0.0,2,1.5845036506652832,89,1.0,2 +34089,2,0.0,2,1.6755024194717407,90,0.0,2 +34090,2,0.0,2,1.6615025997161865,91,0.0,2 +34091,2,1.0,2,1.2565075159072876,92,1.0,2 +34092,2,1.0,2,1.450505256652832,93,0.0,2 +34093,2,1.0,2,1.4465053081512451,94,0.0,2 +34094,2,0.0,2,1.5835036039352417,95,0.0,2 +34095,2,1.0,2,2.147503614425659,96,1.0,2 +34096,2,1.0,2,1.8345003128051758,97,0.0,2 +34097,2,0.0,2,1.7985007762908936,98,1.0,2 +34098,2,0.0,2,1.3425066471099854,99,0.0,2 +34099,2,0.0,2,1.167507290840149,100,0.0,2 +34100,2,0.0,2,1.4645050764083862,101,1.0,2 +34101,2,0.0,2,1.401505947113037,102,0.0,2 +34102,2,0.0,2,2.067499876022339,103,0.0,2 +34103,2,1.0,2,1.264507532119751,104,1.0,2 +34104,2,1.0,2,1.3485065698623657,105,1.0,2 +34105,2,1.0,2,1.8565001487731934,106,0.0,2 +34106,2,1.0,2,2.007498264312744,107,0.0,2 +34107,2,1.0,2,1.2335073947906494,108,1.0,2 +34108,2,1.0,2,1.8385002613067627,109,1.0,2 +34109,2,1.0,2,1.7045021057128906,110,1.0,2 +34110,2,0.0,2,1.3985059261322021,111,0.0,2 +34111,2,1.0,2,1.9824984073638916,112,0.0,2 +34112,2,1.0,2,1.6905021667480469,113,1.0,2 +34113,2,0.0,2,1.4585051536560059,114,0.0,2 +34114,2,1.0,2,1.5135045051574707,115,1.0,2 +34115,2,1.0,2,1.124507188796997,116,1.0,2 +34116,2,1.0,2,1.379506230354309,117,1.0,2 +34117,2,1.0,2,1.4625051021575928,118,0.0,2 +34118,2,0.0,2,2.1995060443878174,119,0.0,2 +34119,2,0.0,2,1.8065006732940674,120,0.0,2 +34120,2,0.0,2,1.2665075063705444,121,1.0,2 +34121,2,0.0,2,1.2545075416564941,122,0.0,2 +34122,2,1.0,2,1.728501796722412,123,0.0,2 +34123,2,1.0,2,1.5605039596557617,124,1.0,2 +34124,2,1.0,2,1.4075058698654175,125,1.0,2 +34125,2,1.0,2,1.689502239227295,126,1.0,2 +34126,2,1.0,2,1.5365042686462402,127,1.0,2 +34127,2,1.0,2,1.3825061321258545,128,0.0,2 +34128,2,1.0,2,1.497504711151123,129,0.0,2 +34129,2,0.0,2,1.3665063381195068,130,1.0,2 +34130,2,0.0,2,1.6565027236938477,131,0.0,2 +34131,2,0.0,2,1.2085074186325073,132,0.0,2 +34132,2,1.0,2,1.7005021572113037,133,0.0,2 +34133,2,1.0,2,1.3305068016052246,134,1.0,2 +34134,2,1.0,2,1.7045021057128906,135,0.0,2 +34135,2,1.0,2,1.8774998188018799,136,1.0,2 +34136,2,1.0,2,1.3215069770812988,137,0.0,2 +34137,2,0.0,2,1.3385066986083984,138,0.0,2 +34138,2,0.0,2,1.5815036296844482,139,0.0,2 +34139,2,1.0,2,1.3505065441131592,140,0.0,2 +34140,2,0.0,2,1.4645050764083862,141,0.0,2 +34141,2,0.0,2,1.3115071058273315,142,1.0,2 +34142,2,0.0,2,1.0775071382522583,143,1.0,2 +34143,2,0.0,2,1.1725072860717773,144,0.0,2 +34144,2,1.0,2,1.5405042171478271,145,0.0,2 +34145,2,0.0,2,1.2855074405670166,146,0.0,2 +34146,2,0.0,2,1.3205069303512573,147,0.0,2 +34147,2,0.0,2,1.4085057973861694,148,0.0,2 +34148,2,1.0,2,2.0284981727600098,149,1.0,2 +34149,2,1.0,2,1.3465065956115723,150,1.0,2 +34150,2,1.0,2,1.6905021667480469,151,1.0,2 +34151,2,1.0,2,1.4555052518844604,152,1.0,2 +34152,2,1.0,2,1.3225069046020508,153,1.0,2 +34153,2,1.0,2,1.4355055093765259,154,1.0,2 +34154,2,1.0,2,1.589503526687622,155,0.0,2 +34155,2,0.0,2,1.5685038566589355,156,1.0,2 +34156,2,0.0,2,1.4375054836273193,157,1.0,2 +34157,2,0.0,2,1.1325072050094604,158,0.0,2 +34158,2,1.0,2,1.4405053853988647,159,1.0,2 +34159,2,1.0,2,1.2725075483322144,160,1.0,2 +34160,2,1.0,2,1.5815036296844482,161,1.0,2 +34161,2,1.0,2,1.3695063591003418,162,0.0,2 +34162,2,0.0,2,1.3025071620941162,163,0.0,2 +34163,2,0.0,2,1.5735037326812744,164,0.0,2 +34164,2,0.0,2,1.7225017547607422,165,1.0,2 +34165,2,0.0,2,1.2715075016021729,166,0.0,2 +34166,2,1.0,2,1.405505895614624,167,1.0,2 +34167,2,1.0,2,1.7135019302368164,168,0.0,2 +34168,2,0.0,2,1.7545013427734375,169,1.0,2 +34169,2,0.0,2,1.1095072031021118,170,0.0,2 +34170,2,1.0,2,2.1995060443878174,171,1.0,2 +34171,2,1.0,2,1.8535001277923584,172,1.0,2 +34172,2,1.0,2,1.4875048398971558,173,0.0,2 +34173,2,0.0,2,1.3025071620941162,174,1.0,2 +34174,2,0.0,2,1.1495072841644287,175,1.0,2 +34175,2,1.0,2,2.008498191833496,176,0.0,2 +34176,2,0.0,2,1.3695063591003418,177,0.0,2 +34177,2,1.0,2,1.5045045614242554,178,1.0,2 +34178,2,1.0,2,1.3415067195892334,179,0.0,2 +34179,2,1.0,2,1.7665011882781982,180,1.0,2 +34180,2,1.0,2,1.3935060501098633,181,0.0,2 +34181,2,1.0,2,1.874499797821045,182,0.0,2 +34182,2,0.0,2,1.5855035781860352,183,0.0,2 +34183,2,0.0,2,1.2085074186325073,184,0.0,2 +34184,2,0.0,2,1.1435072422027588,185,0.0,2 +34185,2,0.0,2,1.4645050764083862,186,0.0,2 +34186,2,0.0,2,1.8804998397827148,187,1.0,2 +34187,2,0.0,2,1.4835048913955688,188,0.0,2 +34188,2,1.0,2,1.8455002307891846,189,0.0,2 +34189,2,1.0,2,1.9484989643096924,190,1.0,2 +34190,2,1.0,2,1.5065045356750488,191,1.0,2 +34191,2,1.0,2,1.2665075063705444,192,1.0,2 +34192,2,1.0,2,1.3235069513320923,193,1.0,2 +34193,2,1.0,2,1.4445053339004517,194,1.0,2 +34194,2,1.0,2,1.544504165649414,195,0.0,2 +34195,2,0.0,2,1.2425074577331543,196,0.0,2 +34196,2,0.0,2,1.7895009517669678,197,0.0,2 +34197,2,0.0,2,1.3715063333511353,198,0.0,2 +34198,2,1.0,2,2.10850191116333,199,0.0,2 +34199,2,1.0,2,1.1925073862075806,200,1.0,2 +34200,2,1.0,2,1.4345054626464844,201,0.0,2 +34201,2,0.0,2,2.2075064182281494,202,1.0,2 +34202,2,0.0,2,1.2105073928833008,203,1.0,2 +34203,2,0.0,2,1.194507360458374,204,0.0,2 +34204,2,1.0,2,1.7505013942718506,205,1.0,2 +34205,2,1.0,2,1.1745073795318604,206,0.0,2 +34206,2,1.0,2,1.6945021152496338,207,1.0,2 +34207,2,1.0,2,1.2735075950622559,208,1.0,2 +34208,2,1.0,2,1.3185069561004639,209,0.0,2 +34209,2,1.0,2,1.4435054063796997,210,1.0,2 +34210,2,1.0,2,1.1925073862075806,211,1.0,2 +34211,2,1.0,2,1.5665037631988525,212,0.0,2 +34212,2,1.0,2,1.284507393836975,213,1.0,2 +34213,2,1.0,2,1.5515040159225464,214,1.0,2 +34214,2,1.0,2,1.201507329940796,215,1.0,2 +34215,2,1.0,2,1.2805074453353882,216,0.0,2 +34216,2,1.0,2,1.292507290840149,217,0.0,2 +34217,2,0.0,2,1.8025007247924805,218,1.0,2 +34218,2,0.0,2,1.2445074319839478,219,1.0,2 +34219,2,0.0,2,1.2455074787139893,220,0.0,2 +34220,2,0.0,2,2.391515016555786,221,1.0,2 +34221,2,0.0,2,1.7015020847320557,222,1.0,2 +34222,2,0.0,2,1.1325072050094604,223,0.0,2 +34223,2,1.0,2,1.9424989223480225,224,1.0,2 +34224,2,1.0,2,1.5395041704177856,225,1.0,2 +34225,2,1.0,2,1.4925047159194946,226,0.0,2 +34226,2,0.0,2,2.018497943878174,227,1.0,2 +34227,2,1.0,2,1.586503505706787,228,0.0,2 +34228,2,0.0,2,1.2445074319839478,229,1.0,2 +34229,2,0.0,2,1.1985074281692505,230,0.0,2 +34230,2,1.0,2,1.682502269744873,231,0.0,2 +34231,2,1.0,2,2.106501579284668,232,1.0,2 +34232,2,1.0,2,2.333512306213379,233,1.0,2 +34233,2,1.0,2,1.476504921913147,234,0.0,2 +34234,2,1.0,2,1.4915047883987427,235,1.0,2 +34235,2,1.0,2,1.5585038661956787,236,0.0,2 +34236,2,0.0,2,1.5555039644241333,237,1.0,2 +34237,2,0.0,2,1.3765062093734741,238,1.0,2 +34238,2,0.0,2,1.2405074834823608,239,1.0,2 +34239,2,0.0,2,1.354506492614746,240,0.0,2 +34240,2,1.0,2,1.4935047626495361,241,1.0,2 +34241,2,1.0,2,1.428505539894104,242,0.0,2 +34242,2,0.0,2,1.4555052518844604,243,0.0,2 +34243,2,1.0,2,1.6915022134780884,244,1.0,2 +34244,2,1.0,2,1.2745075225830078,245,1.0,2 +34245,2,1.0,2,1.4235056638717651,246,1.0,2 +34246,2,1.0,2,1.2745075225830078,247,0.0,2 +34247,2,1.0,2,1.4345054626464844,248,1.0,2 +34248,2,1.0,2,1.6645026206970215,249,1.0,2 +34249,2,1.0,2,1.4185056686401367,250,1.0,2 +34250,2,1.0,2,1.166507363319397,251,1.0,2 +34251,2,1.0,2,1.8355003595352173,252,1.0,2 +34252,2,1.0,2,1.2865073680877686,253,0.0,2 +34253,2,1.0,2,2.015498161315918,254,1.0,2 +34254,2,1.0,2,1.4835048913955688,255,1.0,2 +34255,2,1.0,2,1.4565051794052124,256,1.0,2 +34256,2,1.0,2,1.6565027236938477,257,0.0,2 +34257,2,1.0,2,1.545504093170166,258,1.0,2 +34258,2,0.0,2,1.4295055866241455,259,0.0,2 +34259,2,1.0,2,1.6525027751922607,260,1.0,2 +34260,2,1.0,2,1.7185018062591553,261,1.0,2 +34261,2,1.0,2,1.1865073442459106,262,0.0,2 +34262,2,1.0,2,1.4075058698654175,263,1.0,2 +34263,2,1.0,2,1.8275004625320435,264,1.0,2 +34264,2,1.0,2,1.498504638671875,265,1.0,2 +34265,2,1.0,2,1.2045073509216309,266,1.0,2 +34266,2,0.0,2,1.659502625465393,267,0.0,2 +34267,2,1.0,2,1.494504690170288,268,1.0,2 +34268,2,1.0,2,1.314507007598877,269,0.0,2 +34269,2,1.0,2,2.5355217456817627,270,1.0,2 +34270,2,0.0,2,1.453505277633667,271,0.0,2 +34271,2,1.0,2,1.4685050249099731,272,0.0,2 +34272,2,1.0,2,1.8315004110336304,273,0.0,2 +34273,2,1.0,2,2.0344982147216797,274,1.0,2 +34274,2,1.0,2,1.5175044536590576,275,0.0,2 +34275,2,1.0,2,1.3125070333480835,276,0.0,2 +34276,2,1.0,2,1.5055046081542969,277,0.0,2 +34277,2,1.0,2,1.6235030889511108,278,0.0,2 +34278,2,1.0,2,2.386514663696289,279,1.0,2 +34279,2,1.0,2,1.2905073165893555,280,1.0,2 +34280,2,0.0,2,1.5125044584274292,281,0.0,2 +34281,2,1.0,2,1.3975059986114502,282,1.0,2 +34282,2,1.0,2,1.3765062093734741,283,1.0,2 +34283,2,1.0,2,1.317507028579712,284,0.0,2 +34284,2,1.0,2,1.9194992780685425,285,1.0,2 +34285,2,1.0,2,1.2905073165893555,286,0.0,2 +34286,2,1.0,2,1.471505045890808,287,1.0,2 +34287,2,0.0,2,1.1965073347091675,288,0.0,2 +34288,2,1.0,2,2.070499897003174,289,0.0,2 +34289,2,0.0,2,1.1515072584152222,290,0.0,2 +34290,2,1.0,2,1.592503547668457,291,1.0,2 +34291,2,1.0,2,1.5915035009384155,292,1.0,2 +34292,2,1.0,2,1.7635012865066528,293,0.0,2 +34293,2,0.0,2,1.3765062093734741,294,0.0,2 +34294,2,0.0,2,1.7015020847320557,295,0.0,2 +34295,2,1.0,2,1.549504041671753,296,0.0,2 +34296,2,0.0,2,1.5105044841766357,297,0.0,2 +34297,2,1.0,2,1.6405029296875,298,0.0,2 +34298,2,1.0,2,2.323511838912964,299,0.0,2 +34299,2,1.0,2,1.3915060758590698,300,0.0,2 +34300,2,0.0,2,1.2355074882507324,301,1.0,2 +34301,2,0.0,2,1.4435054063796997,302,0.0,2 +34302,2,0.0,2,1.4645050764083862,303,0.0,2 +34303,2,0.0,2,1.497504711151123,304,1.0,2 +34304,2,0.0,2,1.5755037069320679,305,0.0,2 +34305,2,0.0,2,2.018497943878174,306,1.0,2 +34306,2,0.0,2,1.4235056638717651,307,0.0,2 +34307,2,1.0,2,1.3555065393447876,308,0.0,2 +34308,2,1.0,2,1.7175018787384033,309,1.0,2 +34309,2,1.0,2,1.3865060806274414,310,1.0,2 +34310,2,1.0,2,1.3165069818496704,311,0.0,2 +34311,2,1.0,2,1.5655038356781006,312,1.0,2 +34312,2,1.0,2,1.4665050506591797,313,1.0,2 +34313,2,1.0,2,1.9494988918304443,314,0.0,2 +34314,2,0.0,2,1.2045073509216309,315,1.0,2 +34315,2,0.0,2,1.4605051279067993,316,0.0,2 +34316,2,0.0,2,1.3645063638687134,317,0.0,2 +34317,2,1.0,2,1.3165069818496704,318,0.0,2 +34318,2,1.0,2,1.6785023212432861,319,0.0,2 +34319,2,0.0,2,1.203507423400879,320,0.0,2 +34320,2,0.0,2,1.2165074348449707,321,1.0,2 +34321,2,0.0,2,1.3505065441131592,322,0.0,2 +34322,2,0.0,2,1.8784997463226318,323,0.0,2 +34323,2,1.0,2,1.6725025177001953,324,1.0,2 +34324,2,0.0,2,1.6205031871795654,325,0.0,2 +34325,2,1.0,2,1.63450288772583,326,1.0,2 +34326,2,1.0,2,1.288507342338562,327,0.0,2 +34327,2,1.0,2,1.5695037841796875,328,1.0,2 +34328,2,1.0,2,1.2815074920654297,329,1.0,2 +34329,2,1.0,2,1.3935060501098633,330,1.0,2 +34330,2,0.0,2,1.2235074043273926,331,1.0,2 +34331,2,0.0,2,1.6265029907226562,332,1.0,2 +34332,2,0.0,2,1.737501621246338,333,0.0,2 +34333,2,1.0,2,1.6565027236938477,334,1.0,2 +34334,2,1.0,2,1.6205031871795654,335,1.0,2 +34335,2,1.0,2,1.450505256652832,336,1.0,2 +34336,2,1.0,2,1.6325030326843262,337,1.0,2 +34337,2,1.0,2,1.2485074996948242,338,1.0,2 +34338,2,1.0,2,1.6975021362304688,339,1.0,2 +34339,2,1.0,2,1.3695063591003418,340,0.0,2 +34340,2,1.0,2,1.5555039644241333,341,0.0,2 +34341,2,0.0,2,1.7475014925003052,342,0.0,2 +34342,2,0.0,2,2.002498149871826,343,1.0,2 +34343,2,0.0,2,2.122502326965332,344,0.0,2 +34344,2,1.0,2,1.7275017499923706,345,1.0,2 +34345,2,1.0,2,1.3045071363449097,346,1.0,2 +34346,2,1.0,2,1.6175031661987305,347,1.0,2 +34347,2,1.0,2,1.4775049686431885,348,1.0,2 +34348,2,1.0,2,1.6465027332305908,349,0.0,2 +34349,2,0.0,2,1.5135045051574707,350,1.0,2 +34350,2,0.0,2,1.1895073652267456,351,0.0,2 +34351,2,1.0,2,2.093501091003418,352,1.0,2 +34352,2,1.0,2,1.257507562637329,353,0.0,2 +34353,2,0.0,2,2.005498170852661,354,1.0,2 +34354,2,0.0,2,1.3045071363449097,355,0.0,2 +34355,2,0.0,2,1.5325043201446533,356,0.0,2 +34356,2,1.0,2,1.4595052003860474,357,1.0,2 +34357,2,0.0,2,2.629526138305664,358,0.0,2 +34358,2,1.0,2,1.5335042476654053,359,1.0,2 +34359,2,1.0,2,1.6995021104812622,360,0.0,2 +34360,2,1.0,2,1.9934983253479004,361,0.0,2 +34361,2,0.0,2,2.124502658843994,362,0.0,2 +34362,2,1.0,2,1.6465027332305908,363,0.0,2 +34363,2,1.0,2,1.5845036506652832,364,0.0,2 +34364,2,0.0,2,1.8924996852874756,365,0.0,2 +34365,2,0.0,2,1.2985072135925293,366,1.0,2 +34366,2,0.0,2,1.6745023727416992,367,0.0,2 +34367,2,1.0,2,1.33950674533844,368,1.0,2 +34368,2,1.0,2,1.730501651763916,369,1.0,2 +34369,2,1.0,2,1.5955034494400024,370,0.0,2 +34370,2,0.0,2,1.2935073375701904,371,0.0,2 +34371,2,0.0,2,1.5615038871765137,372,1.0,2 +34372,2,0.0,2,1.2795075178146362,373,0.0,2 +34373,2,0.0,2,2.130502700805664,374,0.0,2 +34374,2,0.0,2,1.3045071363449097,375,1.0,2 +34375,2,0.0,2,2.005498170852661,376,0.0,2 +34376,2,1.0,2,2.083500623703003,377,1.0,2 +34377,2,0.0,2,1.8435002565383911,378,0.0,2 +34378,2,1.0,2,1.6905021667480469,379,1.0,2 +34379,2,1.0,2,1.471505045890808,380,0.0,2 +34380,2,1.0,2,2.2375078201293945,381,0.0,2 +34381,2,0.0,2,2.2985105514526367,382,0.0,2 +34382,2,1.0,2,2.2815098762512207,383,0.0,2 +34383,2,1.0,2,1.401505947113037,384,1.0,2 +34384,2,1.0,2,1.428505539894104,385,0.0,2 +34385,2,0.0,2,1.2545075416564941,386,0.0,2 +34386,2,1.0,2,1.8924996852874756,387,0.0,2 +34387,2,1.0,2,1.5545039176940918,388,0.0,2 +34388,2,1.0,2,1.5145044326782227,389,1.0,2 +34389,2,0.0,2,1.2165074348449707,390,0.0,2 +34390,2,1.0,2,1.4865047931671143,391,1.0,2 +34391,2,1.0,2,1.6105031967163086,392,1.0,2 +34392,2,1.0,2,1.2495074272155762,393,0.0,2 +34393,2,1.0,2,1.380506157875061,394,1.0,2 +34394,2,1.0,2,1.431505560874939,395,1.0,2 +34395,2,1.0,2,1.6755024194717407,396,1.0,2 +34396,2,1.0,2,1.6785023212432861,397,0.0,2 +34397,2,1.0,2,1.6555026769638062,398,1.0,2 +34398,2,1.0,2,1.6955021619796753,399,1.0,2 +34399,2,1.0,2,2.1975059509277344,400,0.0,2 +34400,2,1.0,2,2.4345169067382812,401,1.0,2 +34401,2,1.0,2,1.1585073471069336,402,1.0,2 +34402,2,1.0,2,1.450505256652832,403,1.0,2 +34403,2,1.0,2,1.5505039691925049,404,0.0,2 +34404,2,0.0,2,1.194507360458374,405,1.0,2 +34405,2,0.0,2,1.284507393836975,406,1.0,2 +34406,2,1.0,2,1.5555039644241333,407,0.0,2 +34407,2,0.0,2,1.5005046129226685,408,1.0,2 +34408,2,0.0,2,1.1795073747634888,409,1.0,2 +34409,2,0.0,2,1.163507342338562,410,0.0,2 +34410,2,0.0,2,1.3655064105987549,411,0.0,2 +34411,2,1.0,2,2.2255072593688965,412,1.0,2 +34412,2,1.0,2,1.3965059518814087,413,1.0,2 +34413,2,1.0,2,1.6735024452209473,414,1.0,2 +34414,2,1.0,2,1.3735063076019287,415,1.0,2 +34415,2,1.0,2,1.1785073280334473,416,1.0,2 +34416,2,0.0,2,1.409505844116211,417,0.0,2 +34417,2,1.0,2,1.7655012607574463,418,0.0,2 +34418,2,1.0,2,1.7255017757415771,419,0.0,2 +34419,2,0.0,2,1.6555026769638062,420,1.0,2 +34420,2,0.0,2,1.4885047674179077,421,0.0,2 +34421,2,1.0,2,1.8095006942749023,422,0.0,2 +34422,2,0.0,2,1.6355029344558716,423,1.0,2 +34423,2,0.0,2,1.1325072050094604,424,0.0,2 +34424,2,1.0,2,1.6235030889511108,425,0.0,2 +34425,2,1.0,2,1.544504165649414,426,0.0,2 +34426,2,0.0,2,1.3305068016052246,427,1.0,2 +34427,2,0.0,2,1.5695037841796875,428,1.0,2 +34428,2,0.0,2,1.3485065698623657,429,0.0,2 +34429,2,0.0,2,1.2955073118209839,430,0.0,2 +34430,2,1.0,2,2.1965060234069824,431,1.0,2 +34431,2,0.0,2,1.224507451057434,432,1.0,2 +34432,2,0.0,2,1.8535001277923584,433,0.0,2 +34433,2,1.0,2,1.5545039176940918,434,0.0,2 +34434,2,0.0,2,1.7935009002685547,435,0.0,2 +34435,2,1.0,2,1.6315029859542847,436,1.0,2 +34436,2,1.0,2,1.3685063123703003,437,0.0,2 +34437,2,1.0,2,1.2455074787139893,438,1.0,2 +34438,2,1.0,2,1.2385075092315674,439,1.0,2 +34439,2,1.0,2,1.4225056171417236,440,0.0,2 +34440,2,1.0,2,1.7055020332336426,441,1.0,2 +34441,2,1.0,2,1.6965022087097168,442,1.0,2 +34442,2,0.0,2,1.255507469177246,443,0.0,2 +34443,2,1.0,2,1.7045021057128906,444,0.0,2 +34444,2,0.0,2,1.7895009517669678,445,1.0,2 +34445,2,0.0,2,1.1695072650909424,446,0.0,2 +34446,2,1.0,2,1.3495066165924072,447,1.0,2 +34447,2,1.0,2,1.2235074043273926,448,1.0,2 +34448,2,1.0,2,1.4375054836273193,449,0.0,2 +34449,2,1.0,2,2.4405174255371094,450,1.0,2 +34450,2,1.0,2,1.7985007762908936,451,1.0,2 +34451,2,1.0,2,1.5175044536590576,452,1.0,2 +34452,2,1.0,2,1.3115071058273315,453,1.0,2 +34453,2,1.0,2,1.2755075693130493,454,0.0,2 +34454,2,1.0,2,1.8055007457733154,455,1.0,2 +34455,2,0.0,2,1.6745023727416992,456,1.0,2 +34456,2,0.0,2,1.711501955986023,457,0.0,2 +34457,2,1.0,2,1.5655038356781006,458,0.0,2 +34458,2,0.0,2,1.4255056381225586,459,0.0,2 +34459,2,0.0,2,1.166507363319397,460,1.0,2 +34460,2,0.0,2,1.255507469177246,461,1.0,2 +34461,2,0.0,2,1.542504072189331,462,1.0,2 +34462,2,0.0,2,1.1235072612762451,463,0.0,2 +34463,2,0.0,2,1.9314991235733032,464,0.0,2 +34464,2,0.0,2,1.3495066165924072,465,1.0,2 +34465,2,0.0,2,1.383506178855896,466,0.0,2 +34466,2,1.0,2,1.494504690170288,467,0.0,2 +34467,2,0.0,2,1.3435066938400269,468,0.0,2 +34468,2,0.0,2,1.2175073623657227,469,0.0,2 +34469,2,1.0,2,1.52450430393219,470,1.0,2 +34470,2,1.0,2,1.3865060806274414,471,1.0,2 +34471,2,1.0,2,1.3535065650939941,472,0.0,2 +34472,2,1.0,2,2.107501745223999,473,1.0,2 +34473,2,1.0,2,1.5595039129257202,474,0.0,2 +34474,2,1.0,2,1.7455015182495117,475,1.0,2 +34475,2,1.0,2,1.737501621246338,476,0.0,2 +34476,2,1.0,2,1.4475053548812866,477,1.0,2 +34477,2,1.0,2,1.309507131576538,478,0.0,2 +34478,2,1.0,2,1.8095006942749023,479,1.0,2 +34479,2,1.0,2,1.1595072746276855,480,0.0,2 +34480,2,1.0,2,1.4145057201385498,481,1.0,2 +34481,2,1.0,2,1.3375067710876465,482,1.0,2 +34482,2,1.0,2,1.424505591392517,483,0.0,2 +34483,2,1.0,2,1.826500415802002,484,0.0,2 +34484,2,0.0,2,1.4335055351257324,485,1.0,2 +34485,2,0.0,2,1.5265042781829834,486,0.0,2 +34486,2,0.0,2,1.1805073022842407,487,1.0,2 +34487,2,0.0,2,1.7495014667510986,488,0.0,2 +34488,2,0.0,2,1.3635064363479614,489,0.0,2 +34489,2,0.0,2,1.264507532119751,490,1.0,2 +34490,2,0.0,2,1.1465072631835938,491,0.0,2 +34491,2,0.0,2,1.2165074348449707,492,1.0,2 +34492,2,0.0,2,1.5545039176940918,493,0.0,2 +34493,2,1.0,2,1.8974995613098145,494,0.0,2 +34494,2,0.0,2,1.8055007457733154,495,1.0,2 +34495,2,0.0,2,1.2545075416564941,496,0.0,2 +34496,2,0.0,2,2.1655044555664062,497,1.0,2 +34497,2,0.0,2,1.354506492614746,498,0.0,2 +34498,2,0.0,2,1.479504942893982,499,0.0,2 +34499,2,1.0,2,1.2265074253082275,500,1.0,2 +34500,3,0.0,0,1.5416289567947388,1,0.0,2 +34501,3,1.0,0,1.419630527496338,2,1.0,2 +34502,3,1.0,0,1.5066293478012085,3,1.0,2 +34503,3,1.0,0,2.231632709503174,4,1.0,2 +34504,3,1.0,0,1.320631742477417,5,1.0,2 +34505,3,1.0,0,1.1986322402954102,6,0.0,2 +34506,3,0.0,0,1.4046306610107422,7,0.0,2 +34507,3,0.0,0,2.240633010864258,8,0.0,2 +34508,3,0.0,0,1.2516324520111084,9,0.0,2 +34509,3,1.0,0,1.29363214969635,10,0.0,2 +34510,3,1.0,0,1.600628137588501,11,1.0,2 +34511,3,1.0,0,1.3976308107376099,12,1.0,2 +34512,3,1.0,0,1.2346323728561401,13,1.0,2 +34513,3,1.0,0,1.7676260471343994,14,1.0,2 +34514,3,1.0,0,1.4286303520202637,15,1.0,2 +34515,3,1.0,0,1.6286277770996094,16,1.0,2 +34516,3,1.0,0,1.555628776550293,17,0.0,2 +34517,3,0.0,0,1.3566312789916992,18,0.0,2 +34518,3,1.0,0,1.7716259956359863,19,1.0,2 +34519,3,1.0,0,1.2586324214935303,20,1.0,2 +34520,3,1.0,0,1.2876322269439697,21,1.0,2 +34521,3,1.0,0,1.170632243156433,22,1.0,2 +34522,3,1.0,0,1.2596323490142822,23,1.0,2 +34523,3,1.0,0,1.3076319694519043,24,0.0,2 +34524,3,0.0,0,1.923624038696289,25,0.0,2 +34525,3,0.0,0,1.8376251459121704,26,0.0,2 +34526,3,1.0,0,1.9416238069534302,27,1.0,2 +34527,3,1.0,0,1.5706286430358887,28,1.0,2 +34528,3,1.0,0,1.2036323547363281,29,1.0,2 +34529,3,1.0,0,1.598628282546997,30,1.0,2 +34530,3,1.0,0,1.8076255321502686,31,1.0,2 +34531,3,1.0,0,1.349631428718567,32,0.0,2 +34532,3,1.0,0,1.931623935699463,33,1.0,2 +34533,3,1.0,0,1.5466289520263672,34,1.0,2 +34534,3,1.0,0,1.7126266956329346,35,1.0,2 +34535,3,1.0,0,1.4036307334899902,36,1.0,2 +34536,3,1.0,0,1.5186291933059692,37,0.0,2 +34537,3,1.0,0,1.4766297340393066,38,1.0,2 +34538,3,1.0,0,1.5106292963027954,39,1.0,2 +34539,3,1.0,0,1.4846296310424805,40,1.0,2 +34540,3,1.0,0,1.2556324005126953,41,1.0,2 +34541,3,1.0,0,1.4136306047439575,42,0.0,2 +34542,3,1.0,0,1.9346239566802979,43,1.0,2 +34543,3,1.0,0,1.6556274890899658,44,1.0,2 +34544,3,1.0,0,1.5666286945343018,45,0.0,2 +34545,3,0.0,0,2.3876399993896484,46,0.0,2 +34546,3,0.0,0,1.8466250896453857,47,1.0,2 +34547,3,0.0,0,1.1006320714950562,48,0.0,2 +34548,3,1.0,0,1.66962730884552,49,1.0,2 +34549,3,1.0,0,1.241632342338562,50,0.0,2 +34550,3,1.0,0,1.665627360343933,51,0.0,2 +34551,3,0.0,0,1.8126254081726074,52,0.0,2 +34552,3,0.0,0,1.238632321357727,53,0.0,2 +34553,3,1.0,0,1.5176292657852173,54,1.0,2 +34554,3,1.0,0,1.279632329940796,55,0.0,2 +34555,3,0.0,0,1.3976308107376099,56,0.0,2 +34556,3,0.0,0,1.5186291933059692,57,0.0,2 +34557,3,0.0,0,1.791625738143921,58,1.0,2 +34558,3,0.0,0,1.2126322984695435,59,0.0,2 +34559,3,0.0,0,1.1856322288513184,60,1.0,2 +34560,3,0.0,0,1.2746323347091675,61,1.0,2 +34561,3,0.0,0,1.4536300897598267,62,1.0,2 +34562,3,0.0,0,1.1756322383880615,63,0.0,2 +34563,3,0.0,0,1.853624939918518,64,0.0,2 +34564,3,0.0,0,2.4286417961120605,65,0.0,2 +34565,3,0.0,0,1.8876245021820068,66,1.0,2 +34566,3,0.0,0,1.2626323699951172,67,0.0,2 +34567,3,1.0,0,1.5916283130645752,68,0.0,2 +34568,3,1.0,0,1.968623399734497,69,1.0,2 +34569,3,1.0,0,1.3566312789916992,70,1.0,2 +34570,3,1.0,0,1.3116319179534912,71,1.0,2 +34571,3,1.0,0,1.3156318664550781,72,1.0,2 +34572,3,1.0,0,1.8626248836517334,73,1.0,2 +34573,3,1.0,0,1.5856283903121948,74,0.0,2 +34574,3,1.0,0,1.6576274633407593,75,1.0,2 +34575,3,1.0,0,1.6416276693344116,76,1.0,2 +34576,3,1.0,0,1.2256323099136353,77,1.0,2 +34577,3,1.0,0,1.2026323080062866,78,1.0,2 +34578,3,1.0,0,1.1756322383880615,79,1.0,2 +34579,3,1.0,0,1.349631428718567,80,1.0,2 +34580,3,1.0,0,1.3536313772201538,81,1.0,2 +34581,3,1.0,0,1.4516301155090332,82,1.0,2 +34582,3,1.0,0,1.4776297807693481,83,1.0,2 +34583,3,1.0,0,1.2296323776245117,84,1.0,2 +34584,3,1.0,0,1.319631814956665,85,1.0,2 +34585,3,1.0,0,1.4756298065185547,86,1.0,2 +34586,3,1.0,0,1.2496323585510254,87,1.0,2 +34587,3,1.0,0,1.3886308670043945,88,1.0,2 +34588,3,1.0,0,1.276632308959961,89,1.0,2 +34589,3,1.0,0,1.3436315059661865,90,1.0,2 +34590,3,1.0,0,2.5826492309570312,91,1.0,2 +34591,3,1.0,0,1.4176305532455444,92,1.0,2 +34592,3,1.0,0,1.8936244249343872,93,1.0,2 +34593,3,1.0,0,1.3046319484710693,94,1.0,2 +34594,3,1.0,0,1.3986307382583618,95,1.0,2 +34595,3,1.0,0,1.5976282358169556,96,0.0,2 +34596,3,0.0,0,1.5396289825439453,97,0.0,2 +34597,3,0.0,0,1.9476237297058105,98,0.0,2 +34598,3,1.0,0,1.367631196975708,99,1.0,2 +34599,3,1.0,0,1.4306303262710571,100,1.0,2 +34600,3,1.0,0,1.1926323175430298,101,1.0,2 +34601,3,1.0,0,1.2396323680877686,102,1.0,2 +34602,3,1.0,0,1.3176318407058716,103,1.0,2 +34603,3,1.0,0,1.31663179397583,104,1.0,2 +34604,3,1.0,0,1.7256265878677368,105,1.0,2 +34605,3,1.0,0,1.7566261291503906,106,1.0,2 +34606,3,1.0,0,1.2356324195861816,107,1.0,2 +34607,3,1.0,0,1.2776323556900024,108,1.0,2 +34608,3,1.0,0,1.2026323080062866,109,1.0,2 +34609,3,0.0,0,1.4436302185058594,110,0.0,2 +34610,3,1.0,0,1.3986307382583618,111,1.0,2 +34611,3,1.0,0,1.34563148021698,112,1.0,2 +34612,3,1.0,0,1.4206304550170898,113,1.0,2 +34613,3,1.0,0,1.3346315622329712,114,1.0,2 +34614,3,1.0,0,1.511629343032837,115,1.0,2 +34615,3,1.0,0,1.8846244812011719,116,1.0,2 +34616,3,0.0,0,1.3326315879821777,117,0.0,2 +34617,3,1.0,0,1.5496288537979126,118,1.0,2 +34618,3,1.0,0,1.3076319694519043,119,1.0,2 +34619,3,1.0,0,1.5756285190582275,120,1.0,2 +34620,3,1.0,0,1.3176318407058716,121,1.0,2 +34621,3,1.0,0,1.5326290130615234,122,1.0,2 +34622,3,1.0,0,2.043623924255371,123,1.0,2 +34623,3,1.0,0,1.2576323747634888,124,0.0,2 +34624,3,0.0,0,1.2856322526931763,125,0.0,2 +34625,3,0.0,0,1.3306316137313843,126,0.0,2 +34626,3,0.0,0,2.019622802734375,127,0.0,2 +34627,3,1.0,0,1.482629656791687,128,1.0,2 +34628,3,1.0,0,1.139632225036621,129,1.0,2 +34629,3,1.0,0,1.2196323871612549,130,1.0,2 +34630,3,1.0,0,1.4616299867630005,131,0.0,2 +34631,3,0.0,0,1.9326238632202148,132,1.0,2 +34632,3,0.0,0,1.1856322288513184,133,0.0,2 +34633,3,0.0,0,1.5316290855407715,134,1.0,2 +34634,3,0.0,0,1.463629961013794,135,0.0,2 +34635,3,1.0,0,1.5376290082931519,136,0.0,2 +34636,3,0.0,0,1.5436289310455322,137,0.0,2 +34637,3,1.0,0,1.3706310987472534,138,1.0,2 +34638,3,1.0,0,1.765626072883606,139,1.0,2 +34639,3,1.0,0,1.4656299352645874,140,1.0,2 +34640,3,1.0,0,1.861624836921692,141,1.0,2 +34641,3,1.0,0,1.3976308107376099,142,1.0,2 +34642,3,1.0,0,1.3576313257217407,143,1.0,2 +34643,3,1.0,0,1.2876322269439697,144,1.0,2 +34644,3,1.0,0,1.4796297550201416,145,1.0,2 +34645,3,1.0,0,1.552628755569458,146,1.0,2 +34646,3,1.0,0,1.3116319179534912,147,1.0,2 +34647,3,1.0,0,1.1846323013305664,148,1.0,2 +34648,3,1.0,0,1.1596322059631348,149,1.0,2 +34649,3,1.0,0,1.581628441810608,150,1.0,2 +34650,3,1.0,0,1.4016307592391968,151,0.0,2 +34651,3,0.0,0,1.8526248931884766,152,0.0,2 +34652,3,1.0,0,1.606628179550171,153,1.0,2 +34653,3,1.0,0,1.3586312532424927,154,1.0,2 +34654,3,1.0,0,1.4356303215026855,155,1.0,2 +34655,3,1.0,0,1.6586275100708008,156,1.0,2 +34656,3,1.0,0,1.4266303777694702,157,0.0,2 +34657,3,0.0,0,1.5386290550231934,158,0.0,2 +34658,3,1.0,0,1.5186291933059692,159,1.0,2 +34659,3,1.0,0,1.7106268405914307,160,1.0,2 +34660,3,1.0,0,1.3796310424804688,161,1.0,2 +34661,3,1.0,0,1.1816322803497314,162,1.0,2 +34662,3,1.0,0,1.3406314849853516,163,1.0,2 +34663,3,1.0,0,1.3956308364868164,164,1.0,2 +34664,3,1.0,0,1.176632285118103,165,1.0,2 +34665,3,1.0,0,1.2626323699951172,166,0.0,2 +34666,3,0.0,0,2.1326279640197754,167,0.0,2 +34667,3,1.0,0,1.271632432937622,168,1.0,2 +34668,3,1.0,0,1.3976308107376099,169,1.0,2 +34669,3,1.0,0,1.3886308670043945,170,1.0,2 +34670,3,1.0,0,1.4026306867599487,171,1.0,2 +34671,3,1.0,0,1.363631248474121,172,1.0,2 +34672,3,1.0,0,2.250633716583252,173,1.0,2 +34673,3,1.0,0,1.2776323556900024,174,0.0,2 +34674,3,1.0,0,2.4256417751312256,175,1.0,2 +34675,3,1.0,0,1.2026323080062866,176,1.0,2 +34676,3,1.0,0,1.1366322040557861,177,1.0,2 +34677,3,1.0,0,1.4036307334899902,178,1.0,2 +34678,3,1.0,0,1.7026269435882568,179,1.0,2 +34679,3,1.0,0,1.460629940032959,180,1.0,2 +34680,3,1.0,0,1.394630789756775,181,1.0,2 +34681,3,1.0,0,1.6716272830963135,182,1.0,2 +34682,3,1.0,0,1.346631407737732,183,1.0,2 +34683,3,1.0,0,1.294632077217102,184,1.0,2 +34684,3,1.0,0,1.3616312742233276,185,0.0,2 +34685,3,1.0,0,1.555628776550293,186,0.0,2 +34686,3,1.0,0,1.5976282358169556,187,0.0,2 +34687,3,0.0,0,1.50762939453125,188,0.0,2 +34688,3,0.0,0,1.1876323223114014,189,0.0,2 +34689,3,1.0,0,2.258634090423584,190,0.0,2 +34690,3,0.0,0,1.930624008178711,191,0.0,2 +34691,3,0.0,0,1.4526300430297852,192,0.0,2 +34692,3,0.0,0,1.3356316089630127,193,0.0,2 +34693,3,0.0,0,1.2006323337554932,194,0.0,2 +34694,3,1.0,0,1.4046306610107422,195,1.0,2 +34695,3,1.0,0,1.6366276741027832,196,1.0,2 +34696,3,1.0,0,1.5576287508010864,197,1.0,2 +34697,3,1.0,0,1.1726322174072266,198,1.0,2 +34698,3,1.0,0,1.4206304550170898,199,1.0,2 +34699,3,1.0,0,1.3366315364837646,200,1.0,2 +34700,3,1.0,0,1.441630244255066,201,1.0,2 +34701,3,1.0,0,1.4526300430297852,202,1.0,2 +34702,3,1.0,0,2.032623291015625,203,1.0,2 +34703,3,1.0,0,1.2676324844360352,204,1.0,2 +34704,3,1.0,0,1.2196323871612549,205,0.0,2 +34705,3,0.0,0,1.4556300640106201,206,0.0,2 +34706,3,1.0,0,1.606628179550171,207,1.0,2 +34707,3,1.0,0,1.6556274890899658,208,0.0,2 +34708,3,1.0,0,2.1566290855407715,209,1.0,2 +34709,3,1.0,0,1.1876323223114014,210,1.0,2 +34710,3,1.0,0,2.1346282958984375,211,1.0,2 +34711,3,1.0,0,1.5016294717788696,212,1.0,2 +34712,3,1.0,0,1.464629888534546,213,1.0,2 +34713,3,1.0,0,1.4836297035217285,214,1.0,2 +34714,3,1.0,0,1.301632046699524,215,1.0,2 +34715,3,1.0,0,1.1236321926116943,216,0.0,2 +34716,3,1.0,0,2.0046229362487793,217,0.0,2 +34717,3,0.0,0,1.4986294507980347,218,0.0,2 +34718,3,0.0,0,1.8846244812011719,219,0.0,2 +34719,3,0.0,0,1.9176241159439087,220,1.0,2 +34720,3,0.0,0,1.3846309185028076,221,0.0,2 +34721,3,1.0,0,2.26263427734375,222,1.0,2 +34722,3,1.0,0,1.5316290855407715,223,0.0,2 +34723,3,0.0,0,1.3066319227218628,224,0.0,2 +34724,3,1.0,0,2.482644557952881,225,1.0,2 +34725,3,1.0,0,1.2496323585510254,226,1.0,2 +34726,3,1.0,0,1.1956322193145752,227,1.0,2 +34727,3,1.0,0,1.625627875328064,228,1.0,2 +34728,3,1.0,0,1.301632046699524,229,1.0,2 +34729,3,1.0,0,2.312636375427246,230,0.0,2 +34730,3,0.0,0,1.2196323871612549,231,0.0,2 +34731,3,1.0,0,1.4616299867630005,232,1.0,2 +34732,3,1.0,0,1.4046306610107422,233,1.0,2 +34733,3,1.0,0,1.4726297855377197,234,1.0,2 +34734,3,1.0,0,1.2926321029663086,235,1.0,2 +34735,3,1.0,0,1.2866321802139282,236,0.0,2 +34736,3,1.0,0,1.5146292448043823,237,1.0,2 +34737,3,1.0,0,1.244632363319397,238,0.0,2 +34738,3,0.0,0,1.6306278705596924,239,0.0,2 +34739,3,1.0,0,1.8946244716644287,240,1.0,2 +34740,3,1.0,0,1.2656323909759521,241,0.0,2 +34741,3,1.0,0,1.9156241416931152,242,1.0,2 +34742,3,0.0,0,1.5806283950805664,243,0.0,2 +34743,3,1.0,0,1.2296323776245117,244,1.0,2 +34744,3,1.0,0,1.8966243267059326,245,1.0,2 +34745,3,1.0,0,1.4486300945281982,246,1.0,2 +34746,3,1.0,0,1.7296265363693237,247,0.0,2 +34747,3,1.0,0,1.346631407737732,248,1.0,2 +34748,3,1.0,0,1.835625171661377,249,1.0,2 +34749,3,1.0,0,1.4486300945281982,250,0.0,2 +34750,3,1.0,0,1.6116280555725098,251,0.0,2 +34751,3,1.0,0,1.8076255321502686,252,1.0,2 +34752,3,1.0,0,1.3696311712265015,253,0.0,2 +34753,3,1.0,0,2.2086315155029297,254,1.0,2 +34754,3,1.0,0,1.5656286478042603,255,1.0,2 +34755,3,1.0,0,1.558628797531128,256,1.0,2 +34756,3,1.0,0,1.3856309652328491,257,1.0,2 +34757,3,1.0,0,1.2356324195861816,258,0.0,2 +34758,3,1.0,0,1.408630609512329,259,1.0,2 +34759,3,1.0,0,1.7116267681121826,260,1.0,2 +34760,3,1.0,0,1.1886322498321533,261,1.0,2 +34761,3,1.0,0,1.4246304035186768,262,1.0,2 +34762,3,1.0,0,1.4146305322647095,263,1.0,2 +34763,3,1.0,0,1.5726284980773926,264,1.0,2 +34764,3,1.0,0,1.5596287250518799,265,1.0,2 +34765,3,1.0,0,1.3116319179534912,266,1.0,2 +34766,3,1.0,0,1.434630274772644,267,1.0,2 +34767,3,1.0,0,1.177632212638855,268,1.0,2 +34768,3,1.0,0,1.6556274890899658,269,1.0,2 +34769,3,1.0,0,1.2266323566436768,270,1.0,2 +34770,3,1.0,0,1.324631690979004,271,0.0,2 +34771,3,1.0,0,2.269634485244751,272,1.0,2 +34772,3,1.0,0,1.2866321802139282,273,1.0,2 +34773,3,1.0,0,1.247632384300232,274,1.0,2 +34774,3,1.0,0,1.363631248474121,275,1.0,2 +34775,3,1.0,0,1.1486321687698364,276,1.0,2 +34776,3,1.0,0,1.2566324472427368,277,1.0,2 +34777,3,1.0,0,1.740626335144043,278,1.0,2 +34778,3,0.0,0,1.2236323356628418,279,1.0,2 +34779,3,0.0,0,1.2786322832107544,280,0.0,2 +34780,3,1.0,0,1.7056268453598022,281,1.0,2 +34781,3,1.0,0,1.9516236782073975,282,0.0,2 +34782,3,1.0,0,1.3006319999694824,283,1.0,2 +34783,3,1.0,0,1.4956295490264893,284,1.0,2 +34784,3,1.0,0,1.3056319952011108,285,1.0,2 +34785,3,1.0,0,1.6186280250549316,286,1.0,2 +34786,3,1.0,0,1.5636286735534668,287,1.0,2 +34787,3,1.0,0,1.3076319694519043,288,1.0,2 +34788,3,1.0,0,1.2196323871612549,289,1.0,2 +34789,3,1.0,0,1.2366323471069336,290,1.0,2 +34790,3,1.0,0,1.2566324472427368,291,0.0,2 +34791,3,1.0,0,1.783625841140747,292,1.0,2 +34792,3,1.0,0,1.36863112449646,293,1.0,2 +34793,3,1.0,0,1.2256323099136353,294,1.0,2 +34794,3,1.0,0,1.5456289052963257,295,1.0,2 +34795,3,1.0,0,1.367631196975708,296,1.0,2 +34796,3,1.0,0,1.7666261196136475,297,1.0,2 +34797,3,1.0,0,1.411630630493164,298,1.0,2 +34798,3,1.0,0,1.6316277980804443,299,0.0,2 +34799,3,0.0,0,1.953623652458191,300,0.0,2 +34800,3,0.0,0,1.6306278705596924,301,0.0,2 +34801,3,0.0,0,1.4576300382614136,302,0.0,2 +34802,3,1.0,0,1.8086254596710205,303,1.0,2 +34803,3,0.0,0,1.5256291627883911,304,0.0,2 +34804,3,1.0,0,1.3576313257217407,305,1.0,2 +34805,3,1.0,0,1.556628704071045,306,0.0,2 +34806,3,1.0,0,1.6706273555755615,307,1.0,2 +34807,3,1.0,0,1.6366276741027832,308,1.0,2 +34808,3,1.0,0,1.3076319694519043,309,1.0,2 +34809,3,1.0,0,1.1656322479248047,310,1.0,2 +34810,3,1.0,0,1.342631459236145,311,1.0,2 +34811,3,1.0,0,1.2966320514678955,312,1.0,2 +34812,3,0.0,0,1.743626356124878,313,0.0,2 +34813,3,1.0,0,1.8376251459121704,314,1.0,2 +34814,3,1.0,0,1.1536321640014648,315,1.0,2 +34815,3,1.0,0,1.3216317892074585,316,1.0,2 +34816,3,1.0,0,1.4136306047439575,317,1.0,2 +34817,3,1.0,0,1.463629961013794,318,1.0,2 +34818,3,1.0,0,1.5396289825439453,319,1.0,2 +34819,3,1.0,0,1.2426323890686035,320,1.0,2 +34820,3,1.0,0,1.394630789756775,321,0.0,2 +34821,3,0.0,0,1.9146242141723633,322,0.0,2 +34822,3,1.0,0,1.6756272315979004,323,0.0,2 +34823,3,0.0,0,1.6866271495819092,324,0.0,2 +34824,3,0.0,0,1.2876322269439697,325,0.0,2 +34825,3,0.0,0,1.7716259956359863,326,0.0,2 +34826,3,1.0,0,1.5746285915374756,327,1.0,2 +34827,3,1.0,0,1.1566321849822998,328,1.0,2 +34828,3,1.0,0,1.3656312227249146,329,1.0,2 +34829,3,1.0,0,1.4706298112869263,330,0.0,2 +34830,3,1.0,0,1.3346315622329712,331,0.0,2 +34831,3,0.0,0,1.5906283855438232,332,1.0,2 +34832,3,0.0,0,1.1276321411132812,333,0.0,2 +34833,3,0.0,0,1.2916321754455566,334,0.0,2 +34834,3,0.0,0,1.2336323261260986,335,0.0,2 +34835,3,1.0,0,1.7236266136169434,336,1.0,2 +34836,3,1.0,0,1.170632243156433,337,1.0,2 +34837,3,1.0,0,1.1646322011947632,338,1.0,2 +34838,3,1.0,0,1.1546322107315063,339,0.0,2 +34839,3,1.0,0,1.72162663936615,340,1.0,2 +34840,3,1.0,0,1.1996322870254517,341,1.0,2 +34841,3,1.0,0,1.482629656791687,342,1.0,2 +34842,3,1.0,0,1.4006307125091553,343,1.0,2 +34843,3,1.0,0,1.3726310729980469,344,0.0,2 +34844,3,0.0,0,1.7126266956329346,345,0.0,2 +34845,3,1.0,0,1.2846322059631348,346,1.0,2 +34846,3,1.0,0,1.8556249141693115,347,1.0,2 +34847,3,1.0,0,1.241632342338562,348,1.0,2 +34848,3,1.0,0,1.2256323099136353,349,1.0,2 +34849,3,0.0,0,1.341631531715393,350,0.0,2 +34850,3,1.0,0,1.7796258926391602,351,1.0,2 +34851,3,1.0,0,1.3216317892074585,352,1.0,2 +34852,3,1.0,0,1.735626459121704,353,1.0,2 +34853,3,1.0,0,1.1866322755813599,354,1.0,2 +34854,3,1.0,0,1.4796297550201416,355,1.0,2 +34855,3,1.0,0,1.3036320209503174,356,1.0,2 +34856,3,1.0,0,1.529629111289978,357,1.0,2 +34857,3,0.0,0,1.3106318712234497,358,0.0,2 +34858,3,1.0,0,1.7526261806488037,359,1.0,2 +34859,3,1.0,0,1.5126292705535889,360,0.0,2 +34860,3,0.0,0,1.5366289615631104,361,0.0,2 +34861,3,0.0,0,1.1886322498321533,362,0.0,2 +34862,3,0.0,0,1.2216323614120483,363,0.0,2 +34863,3,0.0,0,1.7496262788772583,364,0.0,2 +34864,3,1.0,0,1.3986307382583618,365,1.0,2 +34865,3,1.0,0,1.2196323871612549,366,1.0,2 +34866,3,1.0,0,1.3096319437026978,367,1.0,2 +34867,3,1.0,0,1.411630630493164,368,1.0,2 +34868,3,1.0,0,1.5596287250518799,369,1.0,2 +34869,3,1.0,0,1.2846322059631348,370,1.0,2 +34870,3,1.0,0,1.319631814956665,371,0.0,2 +34871,3,1.0,0,1.830625295639038,372,1.0,2 +34872,3,1.0,0,1.2426323890686035,373,1.0,2 +34873,3,1.0,0,1.5056294202804565,374,1.0,2 +34874,3,1.0,0,1.389630913734436,375,0.0,2 +34875,3,1.0,0,1.4256304502487183,376,0.0,2 +34876,3,1.0,0,1.5706286430358887,377,1.0,2 +34877,3,1.0,0,1.2636324167251587,378,1.0,2 +34878,3,1.0,0,1.6016281843185425,379,0.0,2 +34879,3,1.0,0,1.3806309700012207,380,1.0,2 +34880,3,1.0,0,1.371631145477295,381,0.0,2 +34881,3,0.0,0,1.2966320514678955,382,0.0,2 +34882,3,0.0,0,1.7086267471313477,383,0.0,2 +34883,3,0.0,0,1.5286290645599365,384,0.0,2 +34884,3,0.0,0,1.244632363319397,385,0.0,2 +34885,3,0.0,0,1.3156318664550781,386,1.0,2 +34886,3,0.0,0,1.2786322832107544,387,0.0,2 +34887,3,1.0,0,1.691627025604248,388,1.0,2 +34888,3,1.0,0,1.4096306562423706,389,0.0,2 +34889,3,0.0,0,1.4936295747756958,390,0.0,2 +34890,3,0.0,0,1.2886321544647217,391,0.0,2 +34891,3,0.0,0,1.2646324634552002,392,1.0,2 +34892,3,0.0,0,1.1946322917938232,393,0.0,2 +34893,3,0.0,0,1.3476314544677734,394,0.0,2 +34894,3,1.0,0,1.3796310424804688,395,1.0,2 +34895,3,1.0,0,1.1876323223114014,396,1.0,2 +34896,3,1.0,0,1.7756259441375732,397,1.0,2 +34897,3,1.0,0,1.3486313819885254,398,1.0,2 +34898,3,1.0,0,1.320631742477417,399,0.0,2 +34899,3,0.0,0,1.2016322612762451,400,0.0,2 +34900,3,1.0,0,2.1996312141418457,401,1.0,2 +34901,3,1.0,0,1.3856309652328491,402,1.0,2 +34902,3,1.0,0,1.2066322565078735,403,1.0,2 +34903,3,1.0,0,1.4286303520202637,404,0.0,2 +34904,3,1.0,0,1.349631428718567,405,1.0,2 +34905,3,1.0,0,2.4146413803100586,406,1.0,2 +34906,3,1.0,0,1.146632194519043,407,1.0,2 +34907,3,1.0,0,1.7346265316009521,408,1.0,2 +34908,3,1.0,0,1.4236304759979248,409,0.0,2 +34909,3,1.0,0,1.3826309442520142,410,1.0,2 +34910,3,1.0,0,1.4996294975280762,411,0.0,2 +34911,3,0.0,0,1.554628849029541,412,0.0,2 +34912,3,1.0,0,2.6076502799987793,413,1.0,2 +34913,3,1.0,0,1.237632393836975,414,1.0,2 +34914,3,1.0,0,1.550628900527954,415,1.0,2 +34915,3,1.0,0,1.5726284980773926,416,1.0,2 +34916,3,1.0,0,1.324631690979004,417,1.0,2 +34917,3,1.0,0,1.2006323337554932,418,1.0,2 +34918,3,1.0,0,1.237632393836975,419,0.0,2 +34919,3,1.0,0,1.6706273555755615,420,1.0,2 +34920,3,1.0,0,1.3186317682266235,421,0.0,2 +34921,3,1.0,0,1.4506300687789917,422,1.0,2 +34922,3,1.0,0,1.3156318664550781,423,1.0,2 +34923,3,0.0,0,1.875624656677246,424,1.0,2 +34924,3,1.0,0,1.7116267681121826,425,1.0,2 +34925,3,1.0,0,2.4346423149108887,426,1.0,2 +34926,3,0.0,0,1.6386277675628662,427,0.0,2 +34927,3,1.0,0,1.550628900527954,428,1.0,2 +34928,3,1.0,0,1.3286316394805908,429,1.0,2 +34929,3,1.0,0,1.393630862236023,430,1.0,2 +34930,3,1.0,0,1.3836309909820557,431,1.0,2 +34931,3,1.0,0,1.3066319227218628,432,1.0,2 +34932,3,1.0,0,1.3796310424804688,433,1.0,2 +34933,3,1.0,0,1.7006268501281738,434,0.0,2 +34934,3,1.0,0,1.394630789756775,435,1.0,2 +34935,3,1.0,0,1.244632363319397,436,1.0,2 +34936,3,1.0,0,1.1626322269439697,437,1.0,2 +34937,3,1.0,0,1.1456321477890015,438,1.0,2 +34938,3,1.0,0,1.2846322059631348,439,1.0,2 +34939,3,1.0,0,1.2596323490142822,440,1.0,2 +34940,3,1.0,0,1.4746297597885132,441,1.0,2 +34941,3,1.0,0,1.2966320514678955,442,0.0,2 +34942,3,1.0,0,1.8926243782043457,443,1.0,2 +34943,3,1.0,0,1.4756298065185547,444,1.0,2 +34944,3,1.0,0,1.247632384300232,445,1.0,2 +34945,3,1.0,0,1.4486300945281982,446,1.0,2 +34946,3,1.0,0,1.5396289825439453,447,1.0,2 +34947,3,1.0,0,1.5256291627883911,448,1.0,2 +34948,3,1.0,0,1.4476301670074463,449,1.0,2 +34949,3,1.0,0,1.250632405281067,450,1.0,2 +34950,3,1.0,0,1.272632360458374,451,1.0,2 +34951,3,1.0,0,1.4716298580169678,452,1.0,2 +34952,3,1.0,0,1.2196323871612549,453,0.0,2 +34953,3,0.0,0,2.0076229572296143,454,1.0,2 +34954,3,0.0,0,1.1896322965621948,455,0.0,2 +34955,3,1.0,0,1.2896322011947632,456,1.0,2 +34956,3,1.0,0,1.2656323909759521,457,1.0,2 +34957,3,1.0,0,1.5906283855438232,458,1.0,2 +34958,3,0.0,0,1.4446301460266113,459,0.0,2 +34959,3,1.0,0,1.3886308670043945,460,0.0,2 +34960,3,1.0,0,2.0856258869171143,461,1.0,2 +34961,3,1.0,0,1.3336316347122192,462,1.0,2 +34962,3,1.0,0,1.2596323490142822,463,1.0,2 +34963,3,1.0,0,1.3556313514709473,464,1.0,2 +34964,3,1.0,0,1.2606323957443237,465,1.0,2 +34965,3,1.0,0,1.3556313514709473,466,0.0,2 +34966,3,1.0,0,1.2346323728561401,467,1.0,2 +34967,3,1.0,0,1.2876322269439697,468,1.0,2 +34968,3,1.0,0,1.6356277465820312,469,1.0,2 +34969,3,1.0,0,1.2676324844360352,470,1.0,2 +34970,3,1.0,0,1.4556300640106201,471,0.0,2 +34971,3,0.0,0,2.3786396980285645,472,0.0,2 +34972,3,0.0,0,1.4396302700042725,473,1.0,2 +34973,3,0.0,0,1.301632046699524,474,0.0,2 +34974,3,0.0,0,2.3726391792297363,475,0.0,2 +34975,3,0.0,0,1.3106318712234497,476,0.0,2 +34976,3,1.0,0,1.5616286993026733,477,1.0,2 +34977,3,1.0,0,1.2426323890686035,478,1.0,2 +34978,3,1.0,0,1.7596261501312256,479,1.0,2 +34979,3,1.0,0,1.3536313772201538,480,1.0,2 +34980,3,1.0,0,1.511629343032837,481,1.0,2 +34981,3,1.0,0,1.276632308959961,482,1.0,2 +34982,3,1.0,0,1.2606323957443237,483,1.0,2 +34983,3,1.0,0,1.4446301460266113,484,1.0,2 +34984,3,1.0,0,1.50762939453125,485,1.0,2 +34985,3,1.0,0,1.2856322526931763,486,1.0,2 +34986,3,1.0,0,1.5196292400360107,487,1.0,2 +34987,3,1.0,0,1.1846323013305664,488,1.0,2 +34988,3,1.0,0,1.5186291933059692,489,1.0,2 +34989,3,1.0,0,1.1546322107315063,490,0.0,2 +34990,3,0.0,0,1.9506237506866455,491,0.0,2 +34991,3,0.0,0,1.4746297597885132,492,1.0,2 +34992,3,0.0,0,1.2816323041915894,493,0.0,2 +34993,3,0.0,0,1.3046319484710693,494,0.0,2 +34994,3,0.0,0,1.3326315879821777,495,1.0,2 +34995,3,0.0,0,1.4206304550170898,496,1.0,2 +34996,3,0.0,0,1.1856322288513184,497,0.0,2 +34997,3,0.0,0,1.508629322052002,498,1.0,2 +34998,3,0.0,0,1.3836309909820557,499,0.0,2 +34999,3,0.0,0,1.411630630493164,500,0.0,2 +35000,3,0.0,1,1.5206291675567627,1,0.0,2 +35001,3,1.0,1,2.0876259803771973,2,1.0,2 +35002,3,1.0,1,1.29363214969635,3,1.0,2 +35003,3,1.0,1,1.3156318664550781,4,1.0,2 +35004,3,1.0,1,1.3356316089630127,5,0.0,2 +35005,3,0.0,1,1.603628158569336,6,0.0,2 +35006,3,0.0,1,1.342631459236145,7,0.0,2 +35007,3,1.0,1,1.9116241931915283,8,1.0,2 +35008,3,1.0,1,1.1876323223114014,9,0.0,2 +35009,3,0.0,1,2.1056268215179443,10,1.0,2 +35010,3,0.0,1,1.3576313257217407,11,0.0,2 +35011,3,1.0,1,1.4226304292678833,12,1.0,2 +35012,3,1.0,1,1.2916321754455566,13,1.0,2 +35013,3,1.0,1,1.5266292095184326,14,1.0,2 +35014,3,1.0,1,1.596628189086914,15,1.0,2 +35015,3,1.0,1,1.5906283855438232,16,1.0,2 +35016,3,1.0,1,1.2586324214935303,17,1.0,2 +35017,3,1.0,1,2.3656389713287354,18,1.0,2 +35018,3,1.0,1,1.6086280345916748,19,0.0,2 +35019,3,1.0,1,1.5476288795471191,20,0.0,2 +35020,3,1.0,1,1.394630789756775,21,1.0,2 +35021,3,1.0,1,1.7606260776519775,22,1.0,2 +35022,3,1.0,1,1.4906295537948608,23,1.0,2 +35023,3,1.0,1,1.7586262226104736,24,1.0,2 +35024,3,1.0,1,2.3336374759674072,25,0.0,2 +35025,3,1.0,1,1.9136241674423218,26,1.0,2 +35026,3,1.0,1,1.717626690864563,27,1.0,2 +35027,3,1.0,1,1.4726297855377197,28,1.0,2 +35028,3,1.0,1,1.2846322059631348,29,1.0,2 +35029,3,1.0,1,1.3606312274932861,30,1.0,2 +35030,3,1.0,1,1.1966322660446167,31,0.0,2 +35031,3,1.0,1,1.4186304807662964,32,0.0,2 +35032,3,0.0,1,1.1996322870254517,33,1.0,2 +35033,3,0.0,1,1.1906322240829468,34,0.0,2 +35034,3,0.0,1,1.4036307334899902,35,0.0,2 +35035,3,0.0,1,1.7266266345977783,36,1.0,2 +35036,3,0.0,1,1.5306291580200195,37,0.0,2 +35037,3,1.0,1,2.060624599456787,38,1.0,2 +35038,3,1.0,1,1.4766297340393066,39,1.0,2 +35039,3,1.0,1,1.3336316347122192,40,1.0,2 +35040,3,1.0,1,1.459630012512207,41,0.0,2 +35041,3,1.0,1,1.3996307849884033,42,0.0,2 +35042,3,1.0,1,1.6346278190612793,43,1.0,2 +35043,3,1.0,1,1.2516324520111084,44,1.0,2 +35044,3,1.0,1,1.621627926826477,45,1.0,2 +35045,3,1.0,1,1.8176254034042358,46,1.0,2 +35046,3,1.0,1,1.4066306352615356,47,1.0,2 +35047,3,1.0,1,1.7526261806488037,48,1.0,2 +35048,3,1.0,1,1.4496301412582397,49,1.0,2 +35049,3,1.0,1,1.2396323680877686,50,1.0,2 +35050,3,1.0,1,1.371631145477295,51,1.0,2 +35051,3,1.0,1,1.389630913734436,52,0.0,2 +35052,3,1.0,1,1.7456263303756714,53,1.0,2 +35053,3,1.0,1,1.2696324586868286,54,0.0,2 +35054,3,0.0,1,2.059624671936035,55,0.0,2 +35055,3,0.0,1,1.7996256351470947,56,0.0,2 +35056,3,1.0,1,1.4576300382614136,57,0.0,2 +35057,3,1.0,1,1.8176254034042358,58,1.0,2 +35058,3,1.0,1,1.5446288585662842,59,1.0,2 +35059,3,1.0,1,1.279632329940796,60,0.0,2 +35060,3,0.0,1,1.1686322689056396,61,0.0,2 +35061,3,1.0,1,1.7816258668899536,62,0.0,2 +35062,3,0.0,1,1.7116267681121826,63,0.0,2 +35063,3,1.0,1,1.9646234512329102,64,1.0,2 +35064,3,1.0,1,1.371631145477295,65,1.0,2 +35065,3,1.0,1,1.4946295022964478,66,1.0,2 +35066,3,1.0,1,1.5026293992996216,67,1.0,2 +35067,3,1.0,1,1.2496323585510254,68,0.0,2 +35068,3,1.0,1,1.5836284160614014,69,1.0,2 +35069,3,1.0,1,1.4986294507980347,70,0.0,2 +35070,3,1.0,1,1.4056307077407837,71,1.0,2 +35071,3,1.0,1,1.4296303987503052,72,0.0,2 +35072,3,1.0,1,1.4466301202774048,73,1.0,2 +35073,3,1.0,1,1.371631145477295,74,0.0,2 +35074,3,0.0,1,1.2566324472427368,75,0.0,2 +35075,3,1.0,1,1.5496288537979126,76,1.0,2 +35076,3,1.0,1,1.2526323795318604,77,1.0,2 +35077,3,1.0,1,1.555628776550293,78,1.0,2 +35078,3,1.0,1,1.412630558013916,79,1.0,2 +35079,3,1.0,1,1.31663179397583,80,1.0,2 +35080,3,1.0,1,1.5496288537979126,81,1.0,2 +35081,3,1.0,1,1.3696311712265015,82,1.0,2 +35082,3,1.0,1,1.2846322059631348,83,1.0,2 +35083,3,1.0,1,1.3226317167282104,84,0.0,2 +35084,3,0.0,1,2.279634952545166,85,0.0,2 +35085,3,1.0,1,1.346631407737732,86,1.0,2 +35086,3,1.0,1,1.1926323175430298,87,1.0,2 +35087,3,1.0,1,1.4286303520202637,88,1.0,2 +35088,3,1.0,1,1.3296316862106323,89,1.0,2 +35089,3,1.0,1,1.2596323490142822,90,0.0,2 +35090,3,1.0,1,2.307636260986328,91,0.0,2 +35091,3,0.0,1,1.17463219165802,92,0.0,2 +35092,3,0.0,1,2.041623830795288,93,1.0,2 +35093,3,0.0,1,1.3066319227218628,94,1.0,2 +35094,3,0.0,1,1.1606322526931763,95,0.0,2 +35095,3,1.0,1,1.7946257591247559,96,1.0,2 +35096,3,1.0,1,1.4766297340393066,97,1.0,2 +35097,3,1.0,1,1.3836309909820557,98,1.0,2 +35098,3,1.0,1,1.143632173538208,99,1.0,2 +35099,3,1.0,1,1.5886282920837402,100,0.0,2 +35100,3,0.0,1,1.5386290550231934,101,0.0,2 +35101,3,0.0,1,1.2286323308944702,102,1.0,2 +35102,3,0.0,1,1.1036320924758911,103,1.0,2 +35103,3,0.0,1,1.4406301975250244,104,1.0,2 +35104,3,0.0,1,1.5666286945343018,105,0.0,2 +35105,3,0.0,1,1.0906320810317993,106,0.0,2 +35106,3,1.0,1,1.4716298580169678,107,0.0,2 +35107,3,0.0,1,1.8526248931884766,108,0.0,2 +35108,3,1.0,1,1.838625192642212,109,0.0,2 +35109,3,1.0,1,1.5276291370391846,110,1.0,2 +35110,3,1.0,1,1.4786297082901,111,0.0,2 +35111,3,0.0,1,1.2366323471069336,112,0.0,2 +35112,3,1.0,1,1.6626274585723877,113,1.0,2 +35113,3,1.0,1,1.2326323986053467,114,1.0,2 +35114,3,1.0,1,1.5166292190551758,115,0.0,2 +35115,3,1.0,1,1.6596274375915527,116,1.0,2 +35116,3,1.0,1,1.2486324310302734,117,1.0,2 +35117,3,1.0,1,1.2286323308944702,118,1.0,2 +35118,3,1.0,1,1.4676299095153809,119,1.0,2 +35119,3,1.0,1,1.2886321544647217,120,1.0,2 +35120,3,1.0,1,1.3036320209503174,121,1.0,2 +35121,3,1.0,1,1.1866322755813599,122,0.0,2 +35122,3,0.0,1,1.3406314849853516,123,1.0,2 +35123,3,0.0,1,1.2876322269439697,124,1.0,2 +35124,3,1.0,1,1.1816322803497314,125,1.0,2 +35125,3,0.0,1,1.389630913734436,126,1.0,2 +35126,3,1.0,1,1.5406289100646973,127,1.0,2 +35127,3,1.0,1,2.226632595062256,128,1.0,2 +35128,3,0.0,1,1.6276278495788574,129,0.0,2 +35129,3,1.0,1,1.276632308959961,130,0.0,2 +35130,3,1.0,1,1.6186280250549316,131,1.0,2 +35131,3,1.0,1,1.533629059791565,132,1.0,2 +35132,3,1.0,1,1.1846323013305664,133,0.0,2 +35133,3,1.0,1,1.9546236991882324,134,1.0,2 +35134,3,1.0,1,1.247632384300232,135,1.0,2 +35135,3,1.0,1,1.3056319952011108,136,0.0,2 +35136,3,1.0,1,2.545647382736206,137,0.0,2 +35137,3,0.0,1,1.3266316652297974,138,0.0,2 +35138,3,0.0,1,1.2326323986053467,139,1.0,2 +35139,3,1.0,1,2.6846537590026855,140,1.0,2 +35140,3,1.0,1,1.2746323347091675,141,1.0,2 +35141,3,0.0,1,1.5646286010742188,142,0.0,2 +35142,3,1.0,1,1.4206304550170898,143,1.0,2 +35143,3,1.0,1,1.389630913734436,144,0.0,2 +35144,3,0.0,1,1.2206323146820068,145,0.0,2 +35145,3,1.0,1,1.9346239566802979,146,1.0,2 +35146,3,1.0,1,1.3176318407058716,147,1.0,2 +35147,3,1.0,1,1.4036307334899902,148,0.0,2 +35148,3,1.0,1,1.271632432937622,149,0.0,2 +35149,3,0.0,1,2.035623550415039,150,0.0,2 +35150,3,0.0,1,1.1356321573257446,151,0.0,2 +35151,3,1.0,1,1.3116319179534912,152,1.0,2 +35152,3,1.0,1,1.3776310682296753,153,1.0,2 +35153,3,1.0,1,1.2556324005126953,154,1.0,2 +35154,3,1.0,1,1.4926295280456543,155,1.0,2 +35155,3,1.0,1,1.5386290550231934,156,0.0,2 +35156,3,0.0,1,1.4396302700042725,157,0.0,2 +35157,3,0.0,1,1.6406276226043701,158,1.0,2 +35158,3,0.0,1,1.4696298837661743,159,0.0,2 +35159,3,0.0,1,1.2596323490142822,160,1.0,2 +35160,3,0.0,1,1.2236323356628418,161,0.0,2 +35161,3,1.0,1,1.486629605293274,162,1.0,2 +35162,3,1.0,1,1.3046319484710693,163,1.0,2 +35163,3,1.0,1,1.3296316862106323,164,0.0,2 +35164,3,1.0,1,1.9116241931915283,165,1.0,2 +35165,3,1.0,1,1.5066293478012085,166,1.0,2 +35166,3,1.0,1,1.4576300382614136,167,0.0,2 +35167,3,0.0,1,1.6336277723312378,168,0.0,2 +35168,3,0.0,1,1.926624059677124,169,0.0,2 +35169,3,0.0,1,1.4476301670074463,170,0.0,2 +35170,3,1.0,1,1.2526323795318604,171,1.0,2 +35171,3,1.0,1,1.438630223274231,172,0.0,2 +35172,3,1.0,1,1.6226279735565186,173,1.0,2 +35173,3,1.0,1,1.276632308959961,174,1.0,2 +35174,3,0.0,1,1.3986307382583618,175,0.0,2 +35175,3,1.0,1,1.2096322774887085,176,0.0,2 +35176,3,0.0,1,1.1606322526931763,177,0.0,2 +35177,3,1.0,1,1.529629111289978,178,0.0,2 +35178,3,1.0,1,1.3706310987472534,179,1.0,2 +35179,3,1.0,1,1.2656323909759521,180,1.0,2 +35180,3,1.0,1,1.419630527496338,181,1.0,2 +35181,3,1.0,1,1.3476314544677734,182,0.0,2 +35182,3,1.0,1,1.3006319999694824,183,1.0,2 +35183,3,1.0,1,1.276632308959961,184,0.0,2 +35184,3,0.0,1,1.5256291627883911,185,0.0,2 +35185,3,0.0,1,2.233632802963257,186,0.0,2 +35186,3,1.0,1,1.9566235542297363,187,1.0,2 +35187,3,1.0,1,1.341631531715393,188,1.0,2 +35188,3,1.0,1,1.2626323699951172,189,0.0,2 +35189,3,1.0,1,1.7636260986328125,190,0.0,2 +35190,3,1.0,1,1.9126241207122803,191,1.0,2 +35191,3,1.0,1,1.4676299095153809,192,1.0,2 +35192,3,1.0,1,1.3536313772201538,193,1.0,2 +35193,3,1.0,1,1.5796284675598145,194,1.0,2 +35194,3,1.0,1,1.4476301670074463,195,1.0,2 +35195,3,1.0,1,1.24063241481781,196,1.0,2 +35196,3,1.0,1,1.6896270513534546,197,0.0,2 +35197,3,0.0,1,1.1916322708129883,198,0.0,2 +35198,3,0.0,1,2.073625326156616,199,0.0,2 +35199,3,1.0,1,1.3656312227249146,200,1.0,2 +35200,3,1.0,1,1.2846322059631348,201,0.0,2 +35201,3,1.0,1,1.3366315364837646,202,1.0,2 +35202,3,1.0,1,1.456629991531372,203,0.0,2 +35203,3,1.0,1,1.7896257638931274,204,0.0,2 +35204,3,0.0,1,1.6756272315979004,205,1.0,2 +35205,3,0.0,1,1.2546323537826538,206,1.0,2 +35206,3,0.0,1,1.389630913734436,207,0.0,2 +35207,3,1.0,1,2.1346282958984375,208,0.0,2 +35208,3,1.0,1,1.6136280298233032,209,1.0,2 +35209,3,1.0,1,1.508629322052002,210,1.0,2 +35210,3,1.0,1,1.4396302700042725,211,0.0,2 +35211,3,1.0,1,1.6396276950836182,212,1.0,2 +35212,3,1.0,1,1.2436323165893555,213,1.0,2 +35213,3,1.0,1,1.2216323614120483,214,1.0,2 +35214,3,1.0,1,1.4406301975250244,215,1.0,2 +35215,3,1.0,1,1.644627571105957,216,1.0,2 +35216,3,1.0,1,1.6816271543502808,217,0.0,2 +35217,3,1.0,1,1.4316303730010986,218,0.0,2 +35218,3,0.0,1,1.786625862121582,219,0.0,2 +35219,3,1.0,1,1.5276291370391846,220,1.0,2 +35220,3,1.0,1,1.2306323051452637,221,1.0,2 +35221,3,1.0,1,1.786625862121582,222,1.0,2 +35222,3,1.0,1,1.2156323194503784,223,1.0,2 +35223,3,1.0,1,1.4176305532455444,224,0.0,2 +35224,3,0.0,1,1.4426301717758179,225,0.0,2 +35225,3,1.0,1,1.648627519607544,226,1.0,2 +35226,3,1.0,1,1.6726272106170654,227,1.0,2 +35227,3,1.0,1,1.3596312999725342,228,1.0,2 +35228,3,1.0,1,1.3096319437026978,229,1.0,2 +35229,3,1.0,1,1.2336323261260986,230,0.0,2 +35230,3,0.0,1,1.2336323261260986,231,0.0,2 +35231,3,0.0,1,1.2846322059631348,232,0.0,2 +35232,3,0.0,1,1.4096306562423706,233,0.0,2 +35233,3,1.0,1,1.2956321239471436,234,1.0,2 +35234,3,1.0,1,1.9876232147216797,235,1.0,2 +35235,3,1.0,1,1.4236304759979248,236,1.0,2 +35236,3,1.0,1,1.7666261196136475,237,1.0,2 +35237,3,1.0,1,1.6016281843185425,238,1.0,2 +35238,3,1.0,1,1.6076281070709229,239,1.0,2 +35239,3,1.0,1,1.838625192642212,240,1.0,2 +35240,3,1.0,1,1.7496262788772583,241,1.0,2 +35241,3,1.0,1,1.3786309957504272,242,1.0,2 +35242,3,1.0,1,1.5016294717788696,243,1.0,2 +35243,3,1.0,1,1.4466301202774048,244,1.0,2 +35244,3,1.0,1,1.5316290855407715,245,0.0,2 +35245,3,1.0,1,2.250633716583252,246,1.0,2 +35246,3,1.0,1,1.7626261711120605,247,1.0,2 +35247,3,1.0,1,1.4006307125091553,248,1.0,2 +35248,3,1.0,1,1.298632025718689,249,0.0,2 +35249,3,0.0,1,1.4326303005218506,250,0.0,2 +35250,3,0.0,1,1.5016294717788696,251,0.0,2 +35251,3,0.0,1,1.250632405281067,252,0.0,2 +35252,3,1.0,1,1.7966256141662598,253,0.0,2 +35253,3,1.0,1,1.5946283340454102,254,1.0,2 +35254,3,1.0,1,1.8606247901916504,255,1.0,2 +35255,3,1.0,1,1.6846270561218262,256,1.0,2 +35256,3,1.0,1,1.419630527496338,257,1.0,2 +35257,3,1.0,1,1.7796258926391602,258,1.0,2 +35258,3,1.0,1,1.3046319484710693,259,1.0,2 +35259,3,1.0,1,1.346631407737732,260,1.0,2 +35260,3,1.0,1,1.183632254600525,261,1.0,2 +35261,3,1.0,1,1.2896322011947632,262,0.0,2 +35262,3,0.0,1,1.625627875328064,263,1.0,2 +35263,3,0.0,1,1.5246291160583496,264,0.0,2 +35264,3,0.0,1,1.075632095336914,265,0.0,2 +35265,3,0.0,1,2.539647102355957,266,0.0,2 +35266,3,0.0,1,1.5576287508010864,267,1.0,2 +35267,3,0.0,1,1.1026320457458496,268,1.0,2 +35268,3,0.0,1,1.4396302700042725,269,1.0,2 +35269,3,0.0,1,1.1086320877075195,270,1.0,2 +35270,3,0.0,1,1.3606312274932861,271,0.0,2 +35271,3,1.0,1,1.746626377105713,272,1.0,2 +35272,3,1.0,1,1.2066322565078735,273,1.0,2 +35273,3,1.0,1,1.9906232357025146,274,1.0,2 +35274,3,1.0,1,1.2516324520111084,275,1.0,2 +35275,3,1.0,1,1.3176318407058716,276,1.0,2 +35276,3,1.0,1,1.2566324472427368,277,0.0,2 +35277,3,0.0,1,2.318636894226074,278,0.0,2 +35278,3,0.0,1,1.8716247081756592,279,1.0,2 +35279,3,0.0,1,1.3356316089630127,280,0.0,2 +35280,3,1.0,1,1.3506313562393188,281,1.0,2 +35281,3,1.0,1,1.324631690979004,282,1.0,2 +35282,3,1.0,1,1.2466323375701904,283,0.0,2 +35283,3,1.0,1,1.529629111289978,284,0.0,2 +35284,3,0.0,1,1.5756285190582275,285,1.0,2 +35285,3,0.0,1,1.2286323308944702,286,0.0,2 +35286,3,1.0,1,1.809625506401062,287,1.0,2 +35287,3,1.0,1,1.4456301927566528,288,0.0,2 +35288,3,0.0,1,1.2826322317123413,289,0.0,2 +35289,3,0.0,1,1.8426251411437988,290,0.0,2 +35290,3,1.0,1,1.3656312227249146,291,0.0,2 +35291,3,1.0,1,1.6076281070709229,292,1.0,2 +35292,3,1.0,1,1.6416276693344116,293,1.0,2 +35293,3,1.0,1,1.320631742477417,294,1.0,2 +35294,3,1.0,1,1.3816310167312622,295,1.0,2 +35295,3,1.0,1,1.389630913734436,296,1.0,2 +35296,3,1.0,1,1.437630295753479,297,1.0,2 +35297,3,1.0,1,1.1626322269439697,298,1.0,2 +35298,3,1.0,1,1.3566312789916992,299,1.0,2 +35299,3,1.0,1,1.319631814956665,300,1.0,2 +35300,3,1.0,1,1.36863112449646,301,1.0,2 +35301,3,1.0,1,1.2866321802139282,302,0.0,2 +35302,3,1.0,1,1.416630506515503,303,0.0,2 +35303,3,0.0,1,1.8636248111724854,304,0.0,2 +35304,3,0.0,1,1.7236266136169434,305,0.0,2 +35305,3,1.0,1,2.232632637023926,306,1.0,2 +35306,3,1.0,1,1.1726322174072266,307,1.0,2 +35307,3,1.0,1,1.4706298112869263,308,1.0,2 +35308,3,1.0,1,2.1876306533813477,309,1.0,2 +35309,3,1.0,1,1.3806309700012207,310,1.0,2 +35310,3,1.0,1,1.5146292448043823,311,0.0,2 +35311,3,1.0,1,1.5646286010742188,312,1.0,2 +35312,3,1.0,1,1.6286277770996094,313,1.0,2 +35313,3,1.0,1,1.244632363319397,314,1.0,2 +35314,3,1.0,1,1.3176318407058716,315,1.0,2 +35315,3,1.0,1,1.1566321849822998,316,0.0,2 +35316,3,0.0,1,1.9966230392456055,317,1.0,2 +35317,3,0.0,1,1.0746320486068726,318,0.0,2 +35318,3,0.0,1,1.2556324005126953,319,0.0,2 +35319,3,0.0,1,1.9106242656707764,320,1.0,2 +35320,3,0.0,1,1.1916322708129883,321,0.0,2 +35321,3,0.0,1,1.3616312742233276,322,0.0,2 +35322,3,1.0,1,1.7226266860961914,323,1.0,2 +35323,3,1.0,1,1.5496288537979126,324,0.0,2 +35324,3,1.0,1,1.31663179397583,325,0.0,2 +35325,3,1.0,1,1.412630558013916,326,1.0,2 +35326,3,1.0,1,1.6386277675628662,327,1.0,2 +35327,3,1.0,1,1.363631248474121,328,1.0,2 +35328,3,1.0,1,1.1946322917938232,329,0.0,2 +35329,3,1.0,1,1.9486236572265625,330,1.0,2 +35330,3,1.0,1,1.3406314849853516,331,0.0,2 +35331,3,0.0,1,1.4266303777694702,332,0.0,2 +35332,3,1.0,1,1.2546323537826538,333,0.0,2 +35333,3,1.0,1,1.6386277675628662,334,1.0,2 +35334,3,1.0,1,1.146632194519043,335,0.0,2 +35335,3,1.0,1,2.061624765396118,336,1.0,2 +35336,3,1.0,1,1.7266266345977783,337,0.0,2 +35337,3,0.0,1,1.4056307077407837,338,0.0,2 +35338,3,0.0,1,1.17463219165802,339,1.0,2 +35339,3,0.0,1,1.2956321239471436,340,0.0,2 +35340,3,1.0,1,1.9656234979629517,341,0.0,2 +35341,3,0.0,1,1.2966320514678955,342,0.0,2 +35342,3,1.0,1,1.9346239566802979,343,0.0,2 +35343,3,0.0,1,2.034623622894287,344,1.0,2 +35344,3,0.0,1,1.3146318197250366,345,1.0,2 +35345,3,0.0,1,1.2816323041915894,346,0.0,2 +35346,3,0.0,1,2.017622947692871,347,0.0,2 +35347,3,0.0,1,1.4036307334899902,348,0.0,2 +35348,3,0.0,1,1.5346291065216064,349,0.0,2 +35349,3,0.0,1,2.580648899078369,350,0.0,2 +35350,3,1.0,1,1.9606235027313232,351,0.0,2 +35351,3,1.0,1,2.032623291015625,352,0.0,2 +35352,3,1.0,1,1.4656299352645874,353,1.0,2 +35353,3,1.0,1,1.389630913734436,354,1.0,2 +35354,3,1.0,1,1.4486300945281982,355,1.0,2 +35355,3,1.0,1,1.3226317167282104,356,0.0,2 +35356,3,0.0,1,1.945623755455017,357,0.0,2 +35357,3,0.0,1,1.573628544807434,358,0.0,2 +35358,3,1.0,1,1.7896257638931274,359,1.0,2 +35359,3,1.0,1,1.3596312999725342,360,0.0,2 +35360,3,1.0,1,2.040623664855957,361,1.0,2 +35361,3,1.0,1,1.1536321640014648,362,1.0,2 +35362,3,1.0,1,1.2606323957443237,363,0.0,2 +35363,3,1.0,1,1.4936295747756958,364,1.0,2 +35364,3,1.0,1,1.4366302490234375,365,1.0,2 +35365,3,1.0,1,1.2216323614120483,366,1.0,2 +35366,3,1.0,1,1.1906322240829468,367,0.0,2 +35367,3,0.0,1,1.5796284675598145,368,0.0,2 +35368,3,0.0,1,1.8976243734359741,369,1.0,2 +35369,3,0.0,1,1.2846322059631348,370,0.0,2 +35370,3,1.0,1,1.2966320514678955,371,1.0,2 +35371,3,1.0,1,1.2186323404312134,372,1.0,2 +35372,3,1.0,1,1.2886321544647217,373,1.0,2 +35373,3,1.0,1,1.6366276741027832,374,1.0,2 +35374,3,1.0,1,1.6586275100708008,375,1.0,2 +35375,3,1.0,1,1.2396323680877686,376,0.0,2 +35376,3,1.0,1,1.665627360343933,377,1.0,2 +35377,3,1.0,1,1.3486313819885254,378,1.0,2 +35378,3,1.0,1,1.50762939453125,379,1.0,2 +35379,3,1.0,1,1.3336316347122192,380,1.0,2 +35380,3,1.0,1,1.3996307849884033,381,1.0,2 +35381,3,0.0,1,1.2246323823928833,382,0.0,2 +35382,3,1.0,1,1.529629111289978,383,1.0,2 +35383,3,1.0,1,1.4356303215026855,384,1.0,2 +35384,3,0.0,1,1.1696321964263916,385,0.0,2 +35385,3,1.0,1,1.17463219165802,386,0.0,2 +35386,3,0.0,1,1.9916231632232666,387,0.0,2 +35387,3,1.0,1,1.4186304807662964,388,0.0,2 +35388,3,0.0,1,1.1516321897506714,389,0.0,2 +35389,3,0.0,1,1.7966256141662598,390,0.0,2 +35390,3,1.0,1,1.3536313772201538,391,1.0,2 +35391,3,1.0,1,1.2926321029663086,392,0.0,2 +35392,3,0.0,1,1.4186304807662964,393,0.0,2 +35393,3,1.0,1,1.6636273860931396,394,1.0,2 +35394,3,1.0,1,1.2656323909759521,395,1.0,2 +35395,3,1.0,1,1.3966307640075684,396,0.0,2 +35396,3,0.0,1,1.4176305532455444,397,0.0,2 +35397,3,1.0,1,1.9546236991882324,398,1.0,2 +35398,3,1.0,1,1.2836322784423828,399,0.0,2 +35399,3,0.0,1,1.2216323614120483,400,0.0,2 +35400,3,0.0,1,1.2296323776245117,401,1.0,2 +35401,3,0.0,1,1.349631428718567,402,0.0,2 +35402,3,1.0,1,1.6406276226043701,403,1.0,2 +35403,3,1.0,1,1.717626690864563,404,1.0,2 +35404,3,1.0,1,1.3626312017440796,405,1.0,2 +35405,3,1.0,1,1.346631407737732,406,1.0,2 +35406,3,1.0,1,1.603628158569336,407,1.0,2 +35407,3,1.0,1,1.3346315622329712,408,0.0,2 +35408,3,0.0,1,1.2216323614120483,409,1.0,2 +35409,3,0.0,1,1.3096319437026978,410,0.0,2 +35410,3,0.0,1,1.8426251411437988,411,0.0,2 +35411,3,1.0,1,1.3656312227249146,412,1.0,2 +35412,3,1.0,1,1.3056319952011108,413,1.0,2 +35413,3,1.0,1,1.1556322574615479,414,1.0,2 +35414,3,1.0,1,1.3626312017440796,415,1.0,2 +35415,3,1.0,1,1.743626356124878,416,0.0,2 +35416,3,0.0,1,1.1716322898864746,417,0.0,2 +35417,3,1.0,1,2.060624599456787,418,1.0,2 +35418,3,1.0,1,1.8526248931884766,419,1.0,2 +35419,3,1.0,1,1.9326238632202148,420,1.0,2 +35420,3,1.0,1,1.5756285190582275,421,1.0,2 +35421,3,1.0,1,1.3226317167282104,422,1.0,2 +35422,3,1.0,1,1.2616324424743652,423,1.0,2 +35423,3,1.0,1,1.650627613067627,424,1.0,2 +35424,3,1.0,1,1.323631763458252,425,1.0,2 +35425,3,1.0,1,1.2736324071884155,426,1.0,2 +35426,3,1.0,1,1.5576287508010864,427,1.0,2 +35427,3,1.0,1,1.4806296825408936,428,0.0,2 +35428,3,0.0,1,1.441630244255066,429,0.0,2 +35429,3,1.0,1,1.173632264137268,430,1.0,2 +35430,3,1.0,1,1.2346323728561401,431,1.0,2 +35431,3,0.0,1,1.1916322708129883,432,0.0,2 +35432,3,1.0,1,1.1956322193145752,433,1.0,2 +35433,3,1.0,1,1.6666274070739746,434,1.0,2 +35434,3,1.0,1,1.338631510734558,435,0.0,2 +35435,3,1.0,1,1.6866271495819092,436,1.0,2 +35436,3,1.0,1,1.2316323518753052,437,0.0,2 +35437,3,1.0,1,1.1996322870254517,438,1.0,2 +35438,3,1.0,1,1.17463219165802,439,0.0,2 +35439,3,1.0,1,1.433630347251892,440,1.0,2 +35440,3,1.0,1,1.7486262321472168,441,1.0,2 +35441,3,1.0,1,1.2966320514678955,442,0.0,2 +35442,3,0.0,1,1.9146242141723633,443,0.0,2 +35443,3,1.0,1,1.2576323747634888,444,0.0,2 +35444,3,0.0,1,1.7966256141662598,445,0.0,2 +35445,3,1.0,1,1.7966256141662598,446,0.0,2 +35446,3,0.0,1,1.8816245794296265,447,1.0,2 +35447,3,0.0,1,1.244632363319397,448,1.0,2 +35448,3,0.0,1,1.301632046699524,449,1.0,2 +35449,3,0.0,1,1.2956321239471436,450,1.0,2 +35450,3,0.0,1,1.2336323261260986,451,1.0,2 +35451,3,0.0,1,1.0986320972442627,452,1.0,2 +35452,3,0.0,1,1.3116319179534912,453,0.0,2 +35453,3,0.0,1,1.1866322755813599,454,1.0,2 +35454,3,0.0,1,1.6306278705596924,455,0.0,2 +35455,3,0.0,1,1.5096293687820435,456,0.0,2 +35456,3,0.0,1,1.4766297340393066,457,0.0,2 +35457,3,1.0,1,1.813625454902649,458,1.0,2 +35458,3,1.0,1,1.503629446029663,459,1.0,2 +35459,3,1.0,1,1.3816310167312622,460,0.0,2 +35460,3,0.0,1,1.2396323680877686,461,0.0,2 +35461,3,0.0,1,1.5236291885375977,462,1.0,2 +35462,3,0.0,1,1.2866321802139282,463,0.0,2 +35463,3,0.0,1,1.953623652458191,464,0.0,2 +35464,3,1.0,1,1.3596312999725342,465,1.0,2 +35465,3,1.0,1,1.5276291370391846,466,1.0,2 +35466,3,1.0,1,2.3856399059295654,467,1.0,2 +35467,3,1.0,1,1.3926308155059814,468,0.0,2 +35468,3,0.0,1,1.3986307382583618,469,0.0,2 +35469,3,0.0,1,1.5396289825439453,470,0.0,2 +35470,3,0.0,1,1.268632411956787,471,0.0,2 +35471,3,1.0,1,1.3216317892074585,472,0.0,2 +35472,3,1.0,1,1.50762939453125,473,0.0,2 +35473,3,1.0,1,1.4586299657821655,474,1.0,2 +35474,3,1.0,1,1.783625841140747,475,1.0,2 +35475,3,1.0,1,1.9406237602233887,476,0.0,2 +35476,3,0.0,1,1.3846309185028076,477,0.0,2 +35477,3,1.0,1,1.4886295795440674,478,0.0,2 +35478,3,0.0,1,1.3126318454742432,479,1.0,2 +35479,3,0.0,1,1.2956321239471436,480,0.0,2 +35480,3,0.0,1,1.2226322889328003,481,0.0,2 +35481,3,1.0,1,1.1586321592330933,482,0.0,2 +35482,3,0.0,1,1.2656323909759521,483,0.0,2 +35483,3,0.0,1,1.2486324310302734,484,0.0,2 +35484,3,0.0,1,2.1816303730010986,485,0.0,2 +35485,3,1.0,1,1.3656312227249146,486,1.0,2 +35486,3,1.0,1,1.1966322660446167,487,1.0,2 +35487,3,1.0,1,1.6876270771026611,488,1.0,2 +35488,3,1.0,1,1.1596322059631348,489,1.0,2 +35489,3,0.0,1,1.6116280555725098,490,1.0,2 +35490,3,1.0,1,1.2636324167251587,491,0.0,2 +35491,3,0.0,1,1.2886321544647217,492,1.0,2 +35492,3,0.0,1,1.2526323795318604,493,0.0,2 +35493,3,1.0,1,1.604628086090088,494,0.0,2 +35494,3,1.0,1,1.4366302490234375,495,0.0,2 +35495,3,1.0,1,1.6306278705596924,496,1.0,2 +35496,3,1.0,1,1.2866321802139282,497,1.0,2 +35497,3,1.0,1,1.511629343032837,498,0.0,2 +35498,3,0.0,1,1.1456321477890015,499,0.0,2 +35499,3,0.0,1,1.2226322889328003,500,1.0,2 +35500,3,0.0,2,1.9506237506866455,1,0.0,2 +35501,3,0.0,2,1.8606247901916504,2,0.0,2 +35502,3,1.0,2,1.3256317377090454,3,0.0,2 +35503,3,0.0,2,1.2876322269439697,4,1.0,2 +35504,3,0.0,2,1.5016294717788696,5,1.0,2 +35505,3,0.0,2,1.3396315574645996,6,1.0,2 +35506,3,0.0,2,1.21063232421875,7,1.0,2 +35507,3,0.0,2,1.1906322240829468,8,1.0,2 +35508,3,0.0,2,1.2456324100494385,9,0.0,2 +35509,3,0.0,2,1.7096267938613892,10,0.0,2 +35510,3,0.0,2,1.8246252536773682,11,1.0,2 +35511,3,0.0,2,1.3336316347122192,12,0.0,2 +35512,3,0.0,2,2.042623996734619,13,0.0,2 +35513,3,0.0,2,1.8466250896453857,14,1.0,2 +35514,3,0.0,2,1.2666324377059937,15,0.0,2 +35515,3,0.0,2,1.415630578994751,16,1.0,2 +35516,3,0.0,2,1.3526313304901123,17,0.0,2 +35517,3,0.0,2,2.2166318893432617,18,1.0,2 +35518,3,0.0,2,1.294632077217102,19,1.0,2 +35519,3,0.0,2,1.8176254034042358,20,1.0,2 +35520,3,0.0,2,1.2566324472427368,21,0.0,2 +35521,3,0.0,2,1.8736246824264526,22,1.0,2 +35522,3,0.0,2,1.1216320991516113,23,1.0,2 +35523,3,0.0,2,1.3446314334869385,24,1.0,2 +35524,3,0.0,2,1.2126322984695435,25,1.0,2 +35525,3,0.0,2,1.2346323728561401,26,0.0,2 +35526,3,0.0,2,2.027623176574707,27,0.0,2 +35527,3,0.0,2,1.4476301670074463,28,0.0,2 +35528,3,0.0,2,1.5716285705566406,29,0.0,2 +35529,3,0.0,2,1.1036320924758911,30,0.0,2 +35530,3,1.0,2,1.390630841255188,31,1.0,2 +35531,3,1.0,2,1.5226292610168457,32,0.0,2 +35532,3,1.0,2,2.065624952316284,33,1.0,2 +35533,3,1.0,2,2.1236276626586914,34,0.0,2 +35534,3,0.0,2,1.237632393836975,35,1.0,2 +35535,3,0.0,2,1.882624626159668,36,0.0,2 +35536,3,1.0,2,1.743626356124878,37,0.0,2 +35537,3,1.0,2,1.7016268968582153,38,0.0,2 +35538,3,0.0,2,1.3096319437026978,39,1.0,2 +35539,3,0.0,2,1.4236304759979248,40,0.0,2 +35540,3,1.0,2,1.3966307640075684,41,0.0,2 +35541,3,0.0,2,1.6536275148391724,42,0.0,2 +35542,3,0.0,2,1.34563148021698,43,1.0,2 +35543,3,0.0,2,1.5426290035247803,44,1.0,2 +35544,3,0.0,2,1.3836309909820557,45,1.0,2 +35545,3,0.0,2,1.1586321592330933,46,0.0,2 +35546,3,1.0,2,1.1996322870254517,47,0.0,2 +35547,3,1.0,2,1.7346265316009521,48,1.0,2 +35548,3,1.0,2,1.4936295747756958,49,1.0,2 +35549,3,1.0,2,1.1786322593688965,50,1.0,2 +35550,3,1.0,2,1.371631145477295,51,0.0,2 +35551,3,1.0,2,1.4216305017471313,52,0.0,2 +35552,3,0.0,2,1.9616235494613647,53,1.0,2 +35553,3,0.0,2,1.139632225036621,54,1.0,2 +35554,3,1.0,2,1.4576300382614136,55,1.0,2 +35555,3,0.0,2,1.6096280813217163,56,1.0,2 +35556,3,0.0,2,1.8586249351501465,57,1.0,2 +35557,3,1.0,2,1.5696285963058472,58,1.0,2 +35558,3,1.0,2,2.061624765396118,59,0.0,2 +35559,3,0.0,2,1.1086320877075195,60,0.0,2 +35560,3,1.0,2,1.7226266860961914,61,1.0,2 +35561,3,1.0,2,1.1716322898864746,62,0.0,2 +35562,3,1.0,2,2.4346423149108887,63,1.0,2 +35563,3,1.0,2,1.5426290035247803,64,1.0,2 +35564,3,1.0,2,1.4666298627853394,65,0.0,2 +35565,3,1.0,2,1.7826259136199951,66,1.0,2 +35566,3,1.0,2,1.1056320667266846,67,1.0,2 +35567,3,1.0,2,1.437630295753479,68,1.0,2 +35568,3,1.0,2,1.137632131576538,69,0.0,2 +35569,3,0.0,2,1.5286290645599365,70,0.0,2 +35570,3,0.0,2,1.5536288022994995,71,0.0,2 +35571,3,1.0,2,1.3046319484710693,72,0.0,2 +35572,3,0.0,2,1.8236253261566162,73,0.0,2 +35573,3,0.0,2,1.367631196975708,74,0.0,2 +35574,3,0.0,2,1.2576323747634888,75,1.0,2 +35575,3,0.0,2,1.5366289615631104,76,0.0,2 +35576,3,0.0,2,1.2286323308944702,77,1.0,2 +35577,3,0.0,2,1.2226322889328003,78,0.0,2 +35578,3,1.0,2,2.2096316814422607,79,0.0,2 +35579,3,0.0,2,1.079632043838501,80,1.0,2 +35580,3,0.0,2,1.7046267986297607,81,1.0,2 +35581,3,0.0,2,1.3096319437026978,82,1.0,2 +35582,3,0.0,2,1.6106281280517578,83,0.0,2 +35583,3,0.0,2,1.2676324844360352,84,0.0,2 +35584,3,0.0,2,1.2856322526931763,85,1.0,2 +35585,3,0.0,2,1.112632155418396,86,1.0,2 +35586,3,0.0,2,1.110632061958313,87,1.0,2 +35587,3,0.0,2,1.31663179397583,88,1.0,2 +35588,3,0.0,2,1.460629940032959,89,0.0,2 +35589,3,1.0,2,1.5836284160614014,90,1.0,2 +35590,3,1.0,2,1.6346278190612793,91,1.0,2 +35591,3,1.0,2,1.3366315364837646,92,1.0,2 +35592,3,1.0,2,1.5626287460327148,93,1.0,2 +35593,3,1.0,2,1.3066319227218628,94,0.0,2 +35594,3,1.0,2,1.6236279010772705,95,0.0,2 +35595,3,1.0,2,1.2916321754455566,96,1.0,2 +35596,3,0.0,2,1.2286323308944702,97,0.0,2 +35597,3,1.0,2,1.511629343032837,98,1.0,2 +35598,3,1.0,2,1.2256323099136353,99,1.0,2 +35599,3,1.0,2,1.4846296310424805,100,0.0,2 +35600,3,1.0,2,1.740626335144043,101,0.0,2 +35601,3,0.0,2,1.3996307849884033,102,1.0,2 +35602,3,0.0,2,1.1056320667266846,103,0.0,2 +35603,3,1.0,2,1.3556313514709473,104,0.0,2 +35604,3,0.0,2,1.3326315879821777,105,1.0,2 +35605,3,0.0,2,1.1866322755813599,106,1.0,2 +35606,3,0.0,2,1.213632345199585,107,1.0,2 +35607,3,0.0,2,1.3796310424804688,108,1.0,2 +35608,3,0.0,2,1.1856322288513184,109,0.0,2 +35609,3,0.0,2,2.080625534057617,110,0.0,2 +35610,3,1.0,2,1.8546249866485596,111,0.0,2 +35611,3,1.0,2,1.9666235446929932,112,1.0,2 +35612,3,1.0,2,1.625627875328064,113,0.0,2 +35613,3,0.0,2,1.6816271543502808,114,0.0,2 +35614,3,0.0,2,2.3696391582489014,115,0.0,2 +35615,3,1.0,2,1.5206291675567627,116,1.0,2 +35616,3,1.0,2,1.3796310424804688,117,0.0,2 +35617,3,0.0,2,1.555628776550293,118,0.0,2 +35618,3,1.0,2,1.974623441696167,119,0.0,2 +35619,3,1.0,2,2.272634506225586,120,1.0,2 +35620,3,1.0,2,1.2066322565078735,121,1.0,2 +35621,3,1.0,2,1.279632329940796,122,1.0,2 +35622,3,1.0,2,1.508629322052002,123,1.0,2 +35623,3,1.0,2,1.5386290550231934,124,1.0,2 +35624,3,1.0,2,1.1786322593688965,125,1.0,2 +35625,3,1.0,2,1.4256304502487183,126,1.0,2 +35626,3,1.0,2,1.2326323986053467,127,1.0,2 +35627,3,1.0,2,1.83162522315979,128,1.0,2 +35628,3,1.0,2,1.2646324634552002,129,0.0,2 +35629,3,0.0,2,1.4586299657821655,130,0.0,2 +35630,3,1.0,2,2.011622905731201,131,1.0,2 +35631,3,1.0,2,1.2286323308944702,132,0.0,2 +35632,3,1.0,2,1.6776272058486938,133,1.0,2 +35633,3,1.0,2,2.0066230297088623,134,1.0,2 +35634,3,1.0,2,1.1606322526931763,135,1.0,2 +35635,3,0.0,2,1.416630506515503,136,1.0,2 +35636,3,0.0,2,1.4926295280456543,137,0.0,2 +35637,3,1.0,2,1.4666298627853394,138,1.0,2 +35638,3,1.0,2,1.503629446029663,139,1.0,2 +35639,3,1.0,2,1.2676324844360352,140,0.0,2 +35640,3,1.0,2,2.0916261672973633,141,1.0,2 +35641,3,1.0,2,1.8426251411437988,142,1.0,2 +35642,3,1.0,2,1.598628282546997,143,1.0,2 +35643,3,1.0,2,1.5206291675567627,144,1.0,2 +35644,3,1.0,2,2.062624931335449,145,1.0,2 +35645,3,1.0,2,1.3956308364868164,146,0.0,2 +35646,3,1.0,2,1.5896283388137817,147,1.0,2 +35647,3,1.0,2,1.2156323194503784,148,1.0,2 +35648,3,1.0,2,1.4936295747756958,149,0.0,2 +35649,3,0.0,2,1.8856245279312134,150,1.0,2 +35650,3,0.0,2,1.1546322107315063,151,0.0,2 +35651,3,1.0,2,1.5976282358169556,152,0.0,2 +35652,3,1.0,2,1.740626335144043,153,0.0,2 +35653,3,1.0,2,1.9166240692138672,154,1.0,2 +35654,3,1.0,2,1.3976308107376099,155,0.0,2 +35655,3,1.0,2,1.606628179550171,156,0.0,2 +35656,3,1.0,2,1.7026269435882568,157,1.0,2 +35657,3,1.0,2,1.6196279525756836,158,0.0,2 +35658,3,0.0,2,1.113632082939148,159,0.0,2 +35659,3,1.0,2,1.8686246871948242,160,1.0,2 +35660,3,1.0,2,1.7966256141662598,161,0.0,2 +35661,3,1.0,2,1.4746297597885132,162,0.0,2 +35662,3,1.0,2,2.1816303730010986,163,1.0,2 +35663,3,1.0,2,1.4176305532455444,164,0.0,2 +35664,3,1.0,2,2.040623664855957,165,1.0,2 +35665,3,1.0,2,1.3876309394836426,166,0.0,2 +35666,3,0.0,2,1.36863112449646,167,0.0,2 +35667,3,0.0,2,1.3036320209503174,168,0.0,2 +35668,3,1.0,2,1.1956322193145752,169,1.0,2 +35669,3,1.0,2,1.1876323223114014,170,1.0,2 +35670,3,1.0,2,1.5286290645599365,171,0.0,2 +35671,3,0.0,2,1.9826233386993408,172,1.0,2 +35672,3,0.0,2,1.4886295795440674,173,1.0,2 +35673,3,1.0,2,2.344637870788574,174,1.0,2 +35674,3,1.0,2,1.5386290550231934,175,1.0,2 +35675,3,1.0,2,2.3766393661499023,176,0.0,2 +35676,3,0.0,2,1.1316320896148682,177,1.0,2 +35677,3,0.0,2,1.2556324005126953,178,1.0,2 +35678,3,0.0,2,1.6596274375915527,179,0.0,2 +35679,3,0.0,2,1.4996294975280762,180,1.0,2 +35680,3,0.0,2,1.9156241416931152,181,0.0,2 +35681,3,1.0,2,1.6996269226074219,182,1.0,2 +35682,3,1.0,2,1.4676299095153809,183,0.0,2 +35683,3,0.0,2,2.223632335662842,184,1.0,2 +35684,3,0.0,2,1.083631992340088,185,1.0,2 +35685,3,0.0,2,1.415630578994751,186,0.0,2 +35686,3,1.0,2,1.2086323499679565,187,0.0,2 +35687,3,0.0,2,2.031623363494873,188,0.0,2 +35688,3,0.0,2,1.6236279010772705,189,0.0,2 +35689,3,1.0,2,1.8066256046295166,190,0.0,2 +35690,3,1.0,2,1.9346239566802979,191,0.0,2 +35691,3,1.0,2,1.2786322832107544,192,0.0,2 +35692,3,0.0,2,1.3316316604614258,193,1.0,2 +35693,3,0.0,2,1.4616299867630005,194,0.0,2 +35694,3,0.0,2,1.183632254600525,195,0.0,2 +35695,3,0.0,2,1.152632236480713,196,1.0,2 +35696,3,0.0,2,1.075632095336914,197,1.0,2 +35697,3,0.0,2,1.3836309909820557,198,1.0,2 +35698,3,0.0,2,1.1486321687698364,199,1.0,2 +35699,3,1.0,2,2.24263334274292,200,1.0,2 +35700,3,0.0,2,1.5366289615631104,201,1.0,2 +35701,3,1.0,2,2.1706299781799316,202,0.0,2 +35702,3,0.0,2,1.341631531715393,203,0.0,2 +35703,3,1.0,2,2.592649459838867,204,0.0,2 +35704,3,1.0,2,1.2996320724487305,205,1.0,2 +35705,3,1.0,2,1.997623085975647,206,0.0,2 +35706,3,1.0,2,1.4846296310424805,207,1.0,2 +35707,3,1.0,2,1.3286316394805908,208,1.0,2 +35708,3,1.0,2,1.6336277723312378,209,1.0,2 +35709,3,1.0,2,1.4656299352645874,210,0.0,2 +35710,3,0.0,2,1.1556322574615479,211,1.0,2 +35711,3,0.0,2,1.1996322870254517,212,1.0,2 +35712,3,0.0,2,1.4966294765472412,213,0.0,2 +35713,3,1.0,2,1.2736324071884155,214,1.0,2 +35714,3,1.0,2,1.2926321029663086,215,0.0,2 +35715,3,0.0,2,1.349631428718567,216,0.0,2 +35716,3,1.0,2,1.8986244201660156,217,0.0,2 +35717,3,0.0,2,1.7326264381408691,218,1.0,2 +35718,3,0.0,2,1.1916322708129883,219,0.0,2 +35719,3,0.0,2,2.3356375694274902,220,0.0,2 +35720,3,1.0,2,1.5536288022994995,221,1.0,2 +35721,3,1.0,2,1.3326315879821777,222,1.0,2 +35722,3,0.0,2,1.4676299095153809,223,0.0,2 +35723,3,1.0,2,1.9116241931915283,224,1.0,2 +35724,3,1.0,2,1.3596312999725342,225,1.0,2 +35725,3,1.0,2,1.581628441810608,226,0.0,2 +35726,3,0.0,2,1.2636324167251587,227,0.0,2 +35727,3,0.0,2,1.486629605293274,228,0.0,2 +35728,3,0.0,2,1.2546323537826538,229,0.0,2 +35729,3,0.0,2,2.0746254920959473,230,0.0,2 +35730,3,0.0,2,2.1956310272216797,231,1.0,2 +35731,3,0.0,2,1.4056307077407837,232,0.0,2 +35732,3,0.0,2,1.3576313257217407,233,0.0,2 +35733,3,1.0,2,2.011622905731201,234,1.0,2 +35734,3,1.0,2,1.504629373550415,235,1.0,2 +35735,3,1.0,2,1.6726272106170654,236,1.0,2 +35736,3,1.0,2,1.3256317377090454,237,0.0,2 +35737,3,0.0,2,1.301632046699524,238,0.0,2 +35738,3,0.0,2,1.275632381439209,239,1.0,2 +35739,3,0.0,2,1.2356324195861816,240,1.0,2 +35740,3,0.0,2,1.6326277256011963,241,1.0,2 +35741,3,0.0,2,1.2706323862075806,242,1.0,2 +35742,3,0.0,2,1.1016321182250977,243,1.0,2 +35743,3,0.0,2,1.3266316652297974,244,0.0,2 +35744,3,0.0,2,1.8496249914169312,245,0.0,2 +35745,3,0.0,2,1.2396323680877686,246,0.0,2 +35746,3,0.0,2,2.2096316814422607,247,0.0,2 +35747,3,1.0,2,2.293635606765747,248,0.0,2 +35748,3,0.0,2,2.028623104095459,249,0.0,2 +35749,3,1.0,2,1.5876283645629883,250,1.0,2 +35750,3,1.0,2,1.3446314334869385,251,0.0,2 +35751,3,1.0,2,1.9426238536834717,252,0.0,2 +35752,3,0.0,2,1.2556324005126953,253,0.0,2 +35753,3,0.0,2,1.2096322774887085,254,1.0,2 +35754,3,1.0,2,1.4936295747756958,255,1.0,2 +35755,3,0.0,2,2.017622947692871,256,1.0,2 +35756,3,0.0,2,1.36863112449646,257,0.0,2 +35757,3,1.0,2,1.2676324844360352,258,0.0,2 +35758,3,0.0,2,1.4246304035186768,259,0.0,2 +35759,3,0.0,2,1.3216317892074585,260,1.0,2 +35760,3,0.0,2,1.31663179397583,261,0.0,2 +35761,3,0.0,2,1.673627257347107,262,1.0,2 +35762,3,0.0,2,1.20463228225708,263,0.0,2 +35763,3,0.0,2,1.7986257076263428,264,0.0,2 +35764,3,0.0,2,1.6396276950836182,265,0.0,2 +35765,3,0.0,2,1.2486324310302734,266,0.0,2 +35766,3,0.0,2,1.4806296825408936,267,1.0,2 +35767,3,0.0,2,1.2776323556900024,268,0.0,2 +35768,3,0.0,2,1.606628179550171,269,0.0,2 +35769,3,0.0,2,1.3766310214996338,270,0.0,2 +35770,3,1.0,2,1.7336264848709106,271,1.0,2 +35771,3,1.0,2,1.3346315622329712,272,1.0,2 +35772,3,1.0,2,1.625627875328064,273,0.0,2 +35773,3,1.0,2,1.7096267938613892,274,1.0,2 +35774,3,1.0,2,1.8496249914169312,275,1.0,2 +35775,3,1.0,2,1.4046306610107422,276,0.0,2 +35776,3,0.0,2,1.1666321754455566,277,0.0,2 +35777,3,0.0,2,1.3096319437026978,278,1.0,2 +35778,3,0.0,2,1.5766284465789795,279,1.0,2 +35779,3,0.0,2,1.5226292610168457,280,1.0,2 +35780,3,0.0,2,1.363631248474121,281,0.0,2 +35781,3,0.0,2,2.4326419830322266,282,1.0,2 +35782,3,0.0,2,1.3436315059661865,283,0.0,2 +35783,3,1.0,2,1.931623935699463,284,0.0,2 +35784,3,0.0,2,1.8856245279312134,285,0.0,2 +35785,3,0.0,2,1.6236279010772705,286,0.0,2 +35786,3,0.0,2,1.2876322269439697,287,1.0,2 +35787,3,0.0,2,1.2956321239471436,288,1.0,2 +35788,3,0.0,2,1.3126318454742432,289,1.0,2 +35789,3,0.0,2,1.2456324100494385,290,1.0,2 +35790,3,0.0,2,1.6806271076202393,291,1.0,2 +35791,3,0.0,2,1.2646324634552002,292,1.0,2 +35792,3,0.0,2,1.173632264137268,293,0.0,2 +35793,3,0.0,2,1.7546262741088867,294,0.0,2 +35794,3,1.0,2,1.5836284160614014,295,1.0,2 +35795,3,1.0,2,1.7276265621185303,296,1.0,2 +35796,3,1.0,2,1.4436302185058594,297,1.0,2 +35797,3,1.0,2,1.1156320571899414,298,0.0,2 +35798,3,1.0,2,1.4476301670074463,299,1.0,2 +35799,3,1.0,2,1.34563148021698,300,0.0,2 +35800,3,0.0,2,1.2296323776245117,301,0.0,2 +35801,3,0.0,2,1.2636324167251587,302,0.0,2 +35802,3,0.0,2,1.1046321392059326,303,0.0,2 +35803,3,0.0,2,1.5156292915344238,304,0.0,2 +35804,3,0.0,2,1.2616324424743652,305,1.0,2 +35805,3,0.0,2,1.5576287508010864,306,0.0,2 +35806,3,0.0,2,1.7346265316009521,307,1.0,2 +35807,3,0.0,2,1.1846323013305664,308,1.0,2 +35808,3,0.0,2,1.0986320972442627,309,0.0,2 +35809,3,1.0,2,1.5756285190582275,310,1.0,2 +35810,3,1.0,2,1.5456289052963257,311,0.0,2 +35811,3,1.0,2,1.6176279783248901,312,1.0,2 +35812,3,1.0,2,1.2876322269439697,313,1.0,2 +35813,3,1.0,2,1.4356303215026855,314,1.0,2 +35814,3,1.0,2,1.5886282920837402,315,1.0,2 +35815,3,1.0,2,1.2026323080062866,316,1.0,2 +35816,3,1.0,2,1.3346315622329712,317,0.0,2 +35817,3,0.0,2,1.7446262836456299,318,0.0,2 +35818,3,0.0,2,1.6776272058486938,319,0.0,2 +35819,3,1.0,2,2.1136271953582764,320,1.0,2 +35820,3,1.0,2,1.780625820159912,321,1.0,2 +35821,3,1.0,2,1.4266303777694702,322,0.0,2 +35822,3,0.0,2,1.4106305837631226,323,0.0,2 +35823,3,0.0,2,1.4546300172805786,324,1.0,2 +35824,3,0.0,2,1.4406301975250244,325,1.0,2 +35825,3,0.0,2,1.456629991531372,326,0.0,2 +35826,3,1.0,2,1.5316290855407715,327,1.0,2 +35827,3,0.0,2,1.1646322011947632,328,0.0,2 +35828,3,1.0,2,1.9196240901947021,329,1.0,2 +35829,3,1.0,2,1.1116321086883545,330,0.0,2 +35830,3,0.0,2,1.4016307592391968,331,0.0,2 +35831,3,0.0,2,1.5266292095184326,332,1.0,2 +35832,3,0.0,2,1.1346321105957031,333,0.0,2 +35833,3,1.0,2,1.6246278285980225,334,1.0,2 +35834,3,1.0,2,1.5876283645629883,335,1.0,2 +35835,3,1.0,2,1.4986294507980347,336,0.0,2 +35836,3,0.0,2,1.930624008178711,337,0.0,2 +35837,3,0.0,2,1.533629059791565,338,0.0,2 +35838,3,1.0,2,1.783625841140747,339,0.0,2 +35839,3,1.0,2,1.3056319952011108,340,1.0,2 +35840,3,1.0,2,1.3376315832138062,341,1.0,2 +35841,3,1.0,2,1.2526323795318604,342,0.0,2 +35842,3,1.0,2,1.828625202178955,343,0.0,2 +35843,3,0.0,2,1.8246252536773682,344,1.0,2 +35844,3,0.0,2,1.2226322889328003,345,1.0,2 +35845,3,0.0,2,1.4526300430297852,346,0.0,2 +35846,3,1.0,2,1.5416289567947388,347,0.0,2 +35847,3,0.0,2,1.1616321802139282,348,1.0,2 +35848,3,0.0,2,1.272632360458374,349,0.0,2 +35849,3,1.0,2,1.2456324100494385,350,1.0,2 +35850,3,1.0,2,1.1246321201324463,351,1.0,2 +35851,3,1.0,2,1.3296316862106323,352,1.0,2 +35852,3,1.0,2,1.3526313304901123,353,1.0,2 +35853,3,1.0,2,1.1906322240829468,354,0.0,2 +35854,3,1.0,2,1.5246291160583496,355,0.0,2 +35855,3,0.0,2,1.4586299657821655,356,1.0,2 +35856,3,0.0,2,1.1426321268081665,357,1.0,2 +35857,3,0.0,2,1.0876320600509644,358,0.0,2 +35858,3,0.0,2,2.1216275691986084,359,1.0,2 +35859,3,0.0,2,1.554628849029541,360,0.0,2 +35860,3,0.0,2,1.1796321868896484,361,0.0,2 +35861,3,1.0,2,1.4846296310424805,362,0.0,2 +35862,3,1.0,2,1.341631531715393,363,0.0,2 +35863,3,1.0,2,1.5676286220550537,364,1.0,2 +35864,3,1.0,2,1.1196321249008179,365,1.0,2 +35865,3,1.0,2,1.1816322803497314,366,0.0,2 +35866,3,0.0,2,1.5466289520263672,367,0.0,2 +35867,3,0.0,2,1.5186291933059692,368,0.0,2 +35868,3,0.0,2,1.4616299867630005,369,0.0,2 +35869,3,0.0,2,1.7826259136199951,370,1.0,2 +35870,3,0.0,2,1.1286321878433228,371,0.0,2 +35871,3,1.0,2,1.72162663936615,372,1.0,2 +35872,3,1.0,2,1.7016268968582153,373,0.0,2 +35873,3,1.0,2,1.6336277723312378,374,0.0,2 +35874,3,1.0,2,1.8726246356964111,375,1.0,2 +35875,3,1.0,2,1.2916321754455566,376,1.0,2 +35876,3,1.0,2,1.4756298065185547,377,0.0,2 +35877,3,1.0,2,1.3446314334869385,378,1.0,2 +35878,3,1.0,2,1.2776323556900024,379,1.0,2 +35879,3,1.0,2,1.4426301717758179,380,0.0,2 +35880,3,0.0,2,1.433630347251892,381,0.0,2 +35881,3,0.0,2,1.5666286945343018,382,0.0,2 +35882,3,0.0,2,2.2176320552825928,383,0.0,2 +35883,3,1.0,2,1.3536313772201538,384,0.0,2 +35884,3,1.0,2,1.809625506401062,385,1.0,2 +35885,3,1.0,2,1.5416289567947388,386,0.0,2 +35886,3,0.0,2,2.232632637023926,387,0.0,2 +35887,3,0.0,2,1.7166266441345215,388,1.0,2 +35888,3,0.0,2,1.3956308364868164,389,0.0,2 +35889,3,1.0,2,2.239633083343506,390,1.0,2 +35890,3,1.0,2,1.3436315059661865,391,1.0,2 +35891,3,1.0,2,1.2596323490142822,392,0.0,2 +35892,3,0.0,2,1.6646273136138916,393,0.0,2 +35893,3,0.0,2,1.244632363319397,394,1.0,2 +35894,3,0.0,2,1.853624939918518,395,1.0,2 +35895,3,0.0,2,1.2536324262619019,396,0.0,2 +35896,3,0.0,2,1.481629729270935,397,1.0,2 +35897,3,0.0,2,1.3436315059661865,398,0.0,2 +35898,3,0.0,2,1.482629656791687,399,0.0,2 +35899,3,1.0,2,1.363631248474121,400,0.0,2 +35900,3,1.0,2,1.5926282405853271,401,1.0,2 +35901,3,1.0,2,1.21063232421875,402,0.0,2 +35902,3,0.0,2,1.2676324844360352,403,0.0,2 +35903,3,1.0,2,1.2026323080062866,404,1.0,2 +35904,3,1.0,2,1.1976323127746582,405,0.0,2 +35905,3,1.0,2,2.068624973297119,406,1.0,2 +35906,3,1.0,2,1.1886322498321533,407,1.0,2 +35907,3,1.0,2,1.4576300382614136,408,1.0,2 +35908,3,1.0,2,1.6276278495788574,409,0.0,2 +35909,3,0.0,2,1.6616274118423462,410,1.0,2 +35910,3,0.0,2,1.31663179397583,411,0.0,2 +35911,3,0.0,2,1.116632103919983,412,1.0,2 +35912,3,0.0,2,1.1656322479248047,413,0.0,2 +35913,3,0.0,2,1.3886308670043945,414,0.0,2 +35914,3,0.0,2,1.7246265411376953,415,0.0,2 +35915,3,1.0,2,2.270634651184082,416,1.0,2 +35916,3,1.0,2,1.2786322832107544,417,1.0,2 +35917,3,1.0,2,1.975623369216919,418,0.0,2 +35918,3,1.0,2,1.9066243171691895,419,1.0,2 +35919,3,1.0,2,1.4226304292678833,420,1.0,2 +35920,3,1.0,2,1.301632046699524,421,1.0,2 +35921,3,1.0,2,1.533629059791565,422,1.0,2 +35922,3,1.0,2,1.1296321153640747,423,0.0,2 +35923,3,1.0,2,1.8266253471374512,424,0.0,2 +35924,3,1.0,2,2.3476381301879883,425,1.0,2 +35925,3,1.0,2,1.324631690979004,426,1.0,2 +35926,3,1.0,2,1.4076306819915771,427,1.0,2 +35927,3,1.0,2,1.8246252536773682,428,1.0,2 +35928,3,1.0,2,1.3956308364868164,429,0.0,2 +35929,3,0.0,2,1.4136306047439575,430,0.0,2 +35930,3,1.0,2,1.8746247291564941,431,1.0,2 +35931,3,1.0,2,1.3306316137313843,432,0.0,2 +35932,3,1.0,2,1.6666274070739746,433,0.0,2 +35933,3,0.0,2,1.9436237812042236,434,1.0,2 +35934,3,0.0,2,1.4366302490234375,435,1.0,2 +35935,3,0.0,2,1.389630913734436,436,0.0,2 +35936,3,1.0,2,1.621627926826477,437,0.0,2 +35937,3,0.0,2,1.9386239051818848,438,0.0,2 +35938,3,0.0,2,2.4116411209106445,439,0.0,2 +35939,3,1.0,2,1.2626323699951172,440,1.0,2 +35940,3,1.0,2,1.3226317167282104,441,1.0,2 +35941,3,1.0,2,1.5656286478042603,442,0.0,2 +35942,3,1.0,2,1.4096306562423706,443,0.0,2 +35943,3,1.0,2,2.0706253051757812,444,0.0,2 +35944,3,0.0,2,1.3796310424804688,445,0.0,2 +35945,3,1.0,2,2.033623456954956,446,1.0,2 +35946,3,1.0,2,1.5416289567947388,447,0.0,2 +35947,3,0.0,2,2.057624578475952,448,0.0,2 +35948,3,1.0,2,1.211632251739502,449,1.0,2 +35949,3,0.0,2,1.7076268196105957,450,1.0,2 +35950,3,0.0,2,2.0096230506896973,451,0.0,2 +35951,3,1.0,2,1.3226317167282104,452,0.0,2 +35952,3,0.0,2,1.5186291933059692,453,1.0,2 +35953,3,0.0,2,1.341631531715393,454,0.0,2 +35954,3,0.0,2,2.0076229572296143,455,0.0,2 +35955,3,1.0,2,1.4896296262741089,456,1.0,2 +35956,3,1.0,2,1.3556313514709473,457,0.0,2 +35957,3,1.0,2,1.7706260681152344,458,1.0,2 +35958,3,1.0,2,1.2666324377059937,459,1.0,2 +35959,3,1.0,2,1.4066306352615356,460,1.0,2 +35960,3,1.0,2,1.4436302185058594,461,0.0,2 +35961,3,1.0,2,2.040623664855957,462,1.0,2 +35962,3,1.0,2,1.2206323146820068,463,0.0,2 +35963,3,1.0,2,1.4256304502487183,464,1.0,2 +35964,3,1.0,2,1.1516321897506714,465,0.0,2 +35965,3,0.0,2,1.9996230602264404,466,0.0,2 +35966,3,1.0,2,2.2096316814422607,467,1.0,2 +35967,3,1.0,2,1.3706310987472534,468,0.0,2 +35968,3,0.0,2,2.272634506225586,469,1.0,2 +35969,3,0.0,2,1.1366322040557861,470,0.0,2 +35970,3,0.0,2,1.8666248321533203,471,1.0,2 +35971,3,0.0,2,1.2156323194503784,472,1.0,2 +35972,3,0.0,2,1.2496323585510254,473,1.0,2 +35973,3,0.0,2,1.2426323890686035,474,1.0,2 +35974,3,0.0,2,1.3806309700012207,475,0.0,2 +35975,3,1.0,2,1.7266266345977783,476,0.0,2 +35976,3,1.0,2,1.5006294250488281,477,1.0,2 +35977,3,1.0,2,1.3356316089630127,478,1.0,2 +35978,3,1.0,2,1.2596323490142822,479,1.0,2 +35979,3,1.0,2,1.4916296005249023,480,0.0,2 +35980,3,1.0,2,1.4576300382614136,481,0.0,2 +35981,3,0.0,2,1.6266279220581055,482,0.0,2 +35982,3,1.0,2,1.342631459236145,483,1.0,2 +35983,3,1.0,2,1.2396323680877686,484,0.0,2 +35984,3,1.0,2,1.8426251411437988,485,1.0,2 +35985,3,1.0,2,1.5696285963058472,486,1.0,2 +35986,3,1.0,2,1.3316316604614258,487,1.0,2 +35987,3,1.0,2,1.173632264137268,488,0.0,2 +35988,3,1.0,2,1.9466238021850586,489,1.0,2 +35989,3,1.0,2,1.573628544807434,490,0.0,2 +35990,3,1.0,2,1.6386277675628662,491,1.0,2 +35991,3,1.0,2,1.486629605293274,492,0.0,2 +35992,3,0.0,2,1.2206323146820068,493,0.0,2 +35993,3,0.0,2,1.4736298322677612,494,0.0,2 +35994,3,0.0,2,1.581628441810608,495,0.0,2 +35995,3,1.0,2,2.3756394386291504,496,1.0,2 +35996,3,1.0,2,1.1916322708129883,497,1.0,2 +35997,3,1.0,2,1.5466289520263672,498,1.0,2 +35998,3,1.0,2,1.367631196975708,499,0.0,2 +35999,3,1.0,2,1.2916321754455566,500,0.0,2 +36000,4,0.0,0,2.0936496257781982,1,0.0,2 +36001,4,1.0,0,1.2606581449508667,2,1.0,2 +36002,4,1.0,0,1.853651523590088,3,1.0,2 +36003,4,1.0,0,1.356657862663269,4,1.0,2 +36004,4,1.0,0,1.6326543092727661,5,1.0,2 +36005,4,1.0,0,1.2186580896377563,6,1.0,2 +36006,4,1.0,0,1.7786524295806885,7,1.0,2 +36007,4,1.0,0,1.50165593624115,8,1.0,2 +36008,4,1.0,0,1.6276543140411377,9,1.0,2 +36009,4,1.0,0,1.9016509056091309,10,1.0,2 +36010,4,1.0,0,1.3736575841903687,11,1.0,2 +36011,4,1.0,0,1.4336568117141724,12,1.0,2 +36012,4,0.0,0,1.989649772644043,13,0.0,2 +36013,4,1.0,0,1.5796549320220947,14,1.0,2 +36014,4,1.0,0,1.1876579523086548,15,1.0,2 +36015,4,1.0,0,1.3186582326889038,16,1.0,2 +36016,4,1.0,0,1.657654047012329,17,1.0,2 +36017,4,1.0,0,1.275658130645752,18,1.0,2 +36018,4,1.0,0,1.7236530780792236,19,1.0,2 +36019,4,1.0,0,1.3526579141616821,20,1.0,2 +36020,4,1.0,0,1.3596577644348145,21,1.0,2 +36021,4,1.0,0,1.3256582021713257,22,1.0,2 +36022,4,1.0,0,1.299658179283142,23,1.0,2 +36023,4,1.0,0,1.772652506828308,24,1.0,2 +36024,4,1.0,0,1.6386542320251465,25,1.0,2 +36025,4,0.0,0,1.4826562404632568,26,0.0,2 +36026,4,1.0,0,1.5566552877426147,27,1.0,2 +36027,4,1.0,0,1.5816550254821777,28,1.0,2 +36028,4,1.0,0,1.3736575841903687,29,1.0,2 +36029,4,1.0,0,1.3666577339172363,30,1.0,2 +36030,4,1.0,0,1.5466554164886475,31,1.0,2 +36031,4,1.0,0,1.2976582050323486,32,0.0,2 +36032,4,0.0,0,1.4926561117172241,33,0.0,2 +36033,4,0.0,0,1.2936582565307617,34,0.0,2 +36034,4,1.0,0,1.44965660572052,35,1.0,2 +36035,4,1.0,0,1.2566580772399902,36,1.0,2 +36036,4,1.0,0,1.3406580686569214,37,1.0,2 +36037,4,1.0,0,1.383657455444336,38,1.0,2 +36038,4,1.0,0,1.9346504211425781,39,1.0,2 +36039,4,1.0,0,1.496656060218811,40,1.0,2 +36040,4,1.0,0,1.3646577596664429,41,1.0,2 +36041,4,1.0,0,1.2176580429077148,42,1.0,2 +36042,4,1.0,0,1.1686580181121826,43,1.0,2 +36043,4,1.0,0,1.5586552619934082,44,1.0,2 +36044,4,0.0,0,1.703653335571289,45,1.0,2 +36045,4,0.0,0,1.7716524600982666,46,1.0,2 +36046,4,0.0,0,1.9916496276855469,47,1.0,2 +36047,4,1.0,0,1.5806549787521362,48,1.0,2 +36048,4,1.0,0,1.7596526145935059,49,1.0,2 +36049,4,0.0,0,1.8326517343521118,50,0.0,2 +36050,4,1.0,0,1.7796523571014404,51,1.0,2 +36051,4,1.0,0,1.7226531505584717,52,1.0,2 +36052,4,1.0,0,1.3486579656600952,53,1.0,2 +36053,4,0.0,0,1.2876582145690918,54,0.0,2 +36054,4,1.0,0,2.4496662616729736,55,1.0,2 +36055,4,1.0,0,1.3896573781967163,56,1.0,2 +36056,4,1.0,0,1.7636525630950928,57,1.0,2 +36057,4,1.0,0,1.353657841682434,58,1.0,2 +36058,4,1.0,0,1.357657790184021,59,1.0,2 +36059,4,1.0,0,1.2906582355499268,60,0.0,2 +36060,4,0.0,0,1.146657943725586,61,0.0,2 +36061,4,1.0,0,1.5826549530029297,62,1.0,2 +36062,4,1.0,0,1.2426581382751465,63,0.0,2 +36063,4,0.0,0,1.58865487575531,64,0.0,2 +36064,4,1.0,0,1.7886523008346558,65,1.0,2 +36065,4,1.0,0,1.5496553182601929,66,1.0,2 +36066,4,1.0,0,1.4856561422348022,67,1.0,2 +36067,4,1.0,0,1.8766511678695679,68,1.0,2 +36068,4,1.0,0,1.3006582260131836,69,1.0,2 +36069,4,1.0,0,1.361657738685608,70,1.0,2 +36070,4,1.0,0,1.4726563692092896,71,0.0,2 +36071,4,1.0,0,2.077648878097534,72,1.0,2 +36072,4,1.0,0,1.5866549015045166,73,1.0,2 +36073,4,1.0,0,1.7256531715393066,74,1.0,2 +36074,4,1.0,0,1.3426580429077148,75,1.0,2 +36075,4,1.0,0,1.3236582279205322,76,1.0,2 +36076,4,1.0,0,1.360657811164856,77,1.0,2 +36077,4,1.0,0,1.4846562147140503,78,1.0,2 +36078,4,1.0,0,1.3156582117080688,79,1.0,2 +36079,4,1.0,0,1.2306580543518066,80,1.0,2 +36080,4,1.0,0,1.6526540517807007,81,1.0,2 +36081,4,1.0,0,1.2156580686569214,82,1.0,2 +36082,4,1.0,0,1.431656837463379,83,1.0,2 +36083,4,1.0,0,1.7446528673171997,84,1.0,2 +36084,4,1.0,0,1.4346568584442139,85,1.0,2 +36085,4,1.0,0,1.6966534852981567,86,1.0,2 +36086,4,1.0,0,1.3256582021713257,87,1.0,2 +36087,4,1.0,0,1.3946573734283447,88,1.0,2 +36088,4,1.0,0,1.3886574506759644,89,0.0,2 +36089,4,0.0,0,1.5996546745300293,90,0.0,2 +36090,4,0.0,0,1.1636579036712646,91,0.0,2 +36091,4,0.0,0,1.570655107498169,92,1.0,2 +36092,4,0.0,0,1.6436541080474854,93,0.0,2 +36093,4,0.0,0,1.4476566314697266,94,0.0,2 +36094,4,1.0,0,2.1476521492004395,95,1.0,2 +36095,4,1.0,0,1.945650339126587,96,1.0,2 +36096,4,0.0,0,1.4956560134887695,97,0.0,2 +36097,4,1.0,0,1.2556581497192383,98,0.0,2 +36098,4,1.0,0,1.9006508588790894,99,0.0,2 +36099,4,1.0,0,1.9706499576568604,100,1.0,2 +36100,4,1.0,0,1.6736538410186768,101,0.0,2 +36101,4,0.0,0,1.526655673980713,102,0.0,2 +36102,4,0.0,0,1.1996580362319946,103,0.0,2 +36103,4,1.0,0,1.4186570644378662,104,1.0,2 +36104,4,1.0,0,1.3716576099395752,105,1.0,2 +36105,4,1.0,0,1.4396567344665527,106,1.0,2 +36106,4,1.0,0,1.2736581563949585,107,1.0,2 +36107,4,1.0,0,1.795652151107788,108,1.0,2 +36108,4,1.0,0,1.3986573219299316,109,1.0,2 +36109,4,1.0,0,1.404657244682312,110,1.0,2 +36110,4,1.0,0,1.2886581420898438,111,1.0,2 +36111,4,1.0,0,1.3046581745147705,112,1.0,2 +36112,4,1.0,0,1.4856561422348022,113,1.0,2 +36113,4,1.0,0,1.7426528930664062,114,1.0,2 +36114,4,1.0,0,1.3736575841903687,115,0.0,2 +36115,4,0.0,0,1.5756549835205078,116,0.0,2 +36116,4,0.0,0,1.3896573781967163,117,0.0,2 +36117,4,1.0,0,1.5856549739837646,118,1.0,2 +36118,4,1.0,0,1.61765456199646,119,1.0,2 +36119,4,1.0,0,1.3596577644348145,120,1.0,2 +36120,4,1.0,0,1.4556565284729004,121,1.0,2 +36121,4,1.0,0,1.1976580619812012,122,1.0,2 +36122,4,1.0,0,1.2336580753326416,123,1.0,2 +36123,4,1.0,0,1.3266582489013672,124,1.0,2 +36124,4,1.0,0,1.302658200263977,125,1.0,2 +36125,4,1.0,0,1.3506579399108887,126,1.0,2 +36126,4,1.0,0,1.636654257774353,127,1.0,2 +36127,4,1.0,0,1.4876561164855957,128,0.0,2 +36128,4,1.0,0,1.2006580829620361,129,1.0,2 +36129,4,1.0,0,1.563655138015747,130,1.0,2 +36130,4,1.0,0,1.2986582517623901,131,1.0,2 +36131,4,1.0,0,1.5806549787521362,132,1.0,2 +36132,4,0.0,0,1.4986560344696045,133,0.0,2 +36133,4,1.0,0,1.4296568632125854,134,1.0,2 +36134,4,1.0,0,1.5966547727584839,135,1.0,2 +36135,4,1.0,0,1.5036559104919434,136,1.0,2 +36136,4,1.0,0,1.4096571207046509,137,1.0,2 +36137,4,1.0,0,1.4666564464569092,138,0.0,2 +36138,4,1.0,0,2.3916635513305664,139,1.0,2 +36139,4,1.0,0,1.210658073425293,140,1.0,2 +36140,4,1.0,0,1.382657527923584,141,1.0,2 +36141,4,1.0,0,1.3156582117080688,142,1.0,2 +36142,4,1.0,0,1.2976582050323486,143,0.0,2 +36143,4,0.0,0,1.7496528625488281,144,1.0,2 +36144,4,0.0,0,1.1886579990386963,145,0.0,2 +36145,4,1.0,0,1.7756524085998535,146,1.0,2 +36146,4,1.0,0,1.4346568584442139,147,1.0,2 +36147,4,1.0,0,1.515655755996704,148,0.0,2 +36148,4,0.0,0,2.0546488761901855,149,0.0,2 +36149,4,1.0,0,1.7746524810791016,150,1.0,2 +36150,4,1.0,0,1.6776537895202637,151,1.0,2 +36151,4,1.0,0,1.3846575021743774,152,1.0,2 +36152,4,1.0,0,1.6216545104980469,153,0.0,2 +36153,4,0.0,0,1.453656554222107,154,0.0,2 +36154,4,1.0,0,1.6336543560028076,155,1.0,2 +36155,4,1.0,0,1.7156531810760498,156,1.0,2 +36156,4,1.0,0,1.216658115386963,157,1.0,2 +36157,4,1.0,0,1.4196569919586182,158,1.0,2 +36158,4,1.0,0,1.3636577129364014,159,1.0,2 +36159,4,1.0,0,1.3186582326889038,160,0.0,2 +36160,4,0.0,0,1.8356516361236572,161,0.0,2 +36161,4,0.0,0,1.8926509618759155,162,1.0,2 +36162,4,0.0,0,1.382657527923584,163,1.0,2 +36163,4,0.0,0,1.4146571159362793,164,0.0,2 +36164,4,0.0,0,1.2956582307815552,165,0.0,2 +36165,4,0.0,0,1.8786511421203613,166,0.0,2 +36166,4,1.0,0,1.3166582584381104,167,1.0,2 +36167,4,1.0,0,1.3666577339172363,168,0.0,2 +36168,4,0.0,0,1.5536552667617798,169,0.0,2 +36169,4,1.0,0,1.7346529960632324,170,1.0,2 +36170,4,1.0,0,1.6436541080474854,171,1.0,2 +36171,4,1.0,0,1.4156570434570312,172,1.0,2 +36172,4,1.0,0,1.6966534852981567,173,1.0,2 +36173,4,1.0,0,1.4726563692092896,174,1.0,2 +36174,4,1.0,0,1.5046559572219849,175,1.0,2 +36175,4,1.0,0,1.799652099609375,176,0.0,2 +36176,4,1.0,0,1.2286580801010132,177,1.0,2 +36177,4,1.0,0,1.4416567087173462,178,1.0,2 +36178,4,0.0,0,1.8256518840789795,179,0.0,2 +36179,4,1.0,0,1.7126532793045044,180,0.0,2 +36180,4,0.0,0,1.945650339126587,181,0.0,2 +36181,4,0.0,0,1.6336543560028076,182,1.0,2 +36182,4,0.0,0,1.2276580333709717,183,0.0,2 +36183,4,1.0,0,1.6466541290283203,184,1.0,2 +36184,4,1.0,0,1.4766563177108765,185,1.0,2 +36185,4,1.0,0,1.3436579704284668,186,1.0,2 +36186,4,1.0,0,1.6986534595489502,187,1.0,2 +36187,4,0.0,0,1.7426528930664062,188,0.0,2 +36188,4,1.0,0,2.038649082183838,189,1.0,2 +36189,4,1.0,0,1.4216569662094116,190,1.0,2 +36190,4,1.0,0,1.4836561679840088,191,1.0,2 +36191,4,1.0,0,1.7756524085998535,192,1.0,2 +36192,4,1.0,0,1.423656940460205,193,1.0,2 +36193,4,1.0,0,1.5136557817459106,194,1.0,2 +36194,4,1.0,0,1.4026572704315186,195,1.0,2 +36195,4,1.0,0,1.8076519966125488,196,0.0,2 +36196,4,0.0,0,2.1866540908813477,197,0.0,2 +36197,4,1.0,0,1.6956534385681152,198,1.0,2 +36198,4,1.0,0,1.4026572704315186,199,1.0,2 +36199,4,1.0,0,1.2366580963134766,200,1.0,2 +36200,4,1.0,0,1.4696563482284546,201,1.0,2 +36201,4,1.0,0,1.4796562194824219,202,0.0,2 +36202,4,1.0,0,1.613654613494873,203,1.0,2 +36203,4,1.0,0,1.3036582469940186,204,0.0,2 +36204,4,0.0,0,1.271658182144165,205,0.0,2 +36205,4,0.0,0,1.2866581678390503,206,0.0,2 +36206,4,0.0,0,1.7046533823013306,207,1.0,2 +36207,4,0.0,0,1.360657811164856,208,0.0,2 +36208,4,1.0,0,1.6826536655426025,209,0.0,2 +36209,4,0.0,0,2.4176647663116455,210,0.0,2 +36210,4,0.0,0,2.512669086456299,211,0.0,2 +36211,4,1.0,0,1.4586565494537354,212,1.0,2 +36212,4,1.0,0,1.4836561679840088,213,1.0,2 +36213,4,1.0,0,1.4036571979522705,214,1.0,2 +36214,4,1.0,0,1.3006582260131836,215,1.0,2 +36215,4,0.0,0,1.6046546697616577,216,1.0,2 +36216,4,1.0,0,1.3106582164764404,217,0.0,2 +36217,4,0.0,0,1.2856582403182983,218,0.0,2 +36218,4,0.0,0,1.4326568841934204,219,0.0,2 +36219,4,0.0,0,1.360657811164856,220,0.0,2 +36220,4,0.0,0,1.2976582050323486,221,0.0,2 +36221,4,0.0,0,1.7406529188156128,222,0.0,2 +36222,4,0.0,0,1.9746499061584473,223,1.0,2 +36223,4,0.0,0,1.382657527923584,224,0.0,2 +36224,4,1.0,0,1.4546566009521484,225,1.0,2 +36225,4,1.0,0,1.5386555194854736,226,1.0,2 +36226,4,1.0,0,1.2516580820083618,227,1.0,2 +36227,4,1.0,0,1.2766581773757935,228,1.0,2 +36228,4,1.0,0,1.331658124923706,229,1.0,2 +36229,4,1.0,0,1.5386555194854736,230,1.0,2 +36230,4,1.0,0,1.2956582307815552,231,1.0,2 +36231,4,1.0,0,1.3176583051681519,232,1.0,2 +36232,4,1.0,0,1.6126545667648315,233,1.0,2 +36233,4,1.0,0,1.430656909942627,234,1.0,2 +36234,4,1.0,0,1.2896581888198853,235,1.0,2 +36235,4,1.0,0,1.5106558799743652,236,1.0,2 +36236,4,1.0,0,1.7446528673171997,237,1.0,2 +36237,4,1.0,0,1.7446528673171997,238,1.0,2 +36238,4,1.0,0,1.3456579446792603,239,1.0,2 +36239,4,1.0,0,1.5056558847427368,240,1.0,2 +36240,4,1.0,0,1.5896549224853516,241,0.0,2 +36241,4,1.0,0,1.7476527690887451,242,1.0,2 +36242,4,1.0,0,1.3166582584381104,243,1.0,2 +36243,4,1.0,0,1.5516552925109863,244,1.0,2 +36244,4,1.0,0,1.6066546440124512,245,1.0,2 +36245,4,1.0,0,1.8606513738632202,246,1.0,2 +36246,4,1.0,0,1.4926561117172241,247,1.0,2 +36247,4,1.0,0,1.658653974533081,248,1.0,2 +36248,4,1.0,0,1.9566501379013062,249,1.0,2 +36249,4,1.0,0,1.541655421257019,250,1.0,2 +36250,4,1.0,0,1.7386529445648193,251,1.0,2 +36251,4,1.0,0,2.3006591796875,252,1.0,2 +36252,4,1.0,0,1.6306543350219727,253,1.0,2 +36253,4,1.0,0,1.4856561422348022,254,1.0,2 +36254,4,0.0,0,1.8136520385742188,255,1.0,2 +36255,4,1.0,0,1.566655158996582,256,0.0,2 +36256,4,0.0,0,1.2456581592559814,257,0.0,2 +36257,4,0.0,0,1.4376567602157593,258,0.0,2 +36258,4,1.0,0,1.3966573476791382,259,1.0,2 +36259,4,1.0,0,1.497655987739563,260,1.0,2 +36260,4,1.0,0,1.2956582307815552,261,1.0,2 +36261,4,1.0,0,1.751652717590332,262,1.0,2 +36262,4,1.0,0,1.8296518325805664,263,1.0,2 +36263,4,1.0,0,1.3166582584381104,264,1.0,2 +36264,4,1.0,0,1.3846575021743774,265,0.0,2 +36265,4,1.0,0,1.361657738685608,266,1.0,2 +36266,4,1.0,0,1.613654613494873,267,1.0,2 +36267,4,1.0,0,1.5096558332443237,268,1.0,2 +36268,4,1.0,0,1.5126558542251587,269,1.0,2 +36269,4,1.0,0,1.2496581077575684,270,1.0,2 +36270,4,1.0,0,1.6426541805267334,271,1.0,2 +36271,4,1.0,0,1.5246556997299194,272,1.0,2 +36272,4,1.0,0,1.180657982826233,273,1.0,2 +36273,4,1.0,0,1.592654824256897,274,1.0,2 +36274,4,1.0,0,1.713653326034546,275,1.0,2 +36275,4,1.0,0,1.7406529188156128,276,1.0,2 +36276,4,1.0,0,1.3236582279205322,277,1.0,2 +36277,4,1.0,0,1.3546578884124756,278,1.0,2 +36278,4,1.0,0,1.3886574506759644,279,1.0,2 +36279,4,1.0,0,1.7226531505584717,280,1.0,2 +36280,4,1.0,0,1.6036546230316162,281,1.0,2 +36281,4,1.0,0,1.44965660572052,282,1.0,2 +36282,4,1.0,0,1.7246531248092651,283,1.0,2 +36283,4,0.0,0,1.1986579895019531,284,1.0,2 +36284,4,0.0,0,1.4446567296981812,285,0.0,2 +36285,4,1.0,0,1.5136557817459106,286,1.0,2 +36286,4,1.0,0,1.2616581916809082,287,1.0,2 +36287,4,1.0,0,1.523655652999878,288,1.0,2 +36288,4,1.0,0,1.493656039237976,289,1.0,2 +36289,4,1.0,0,1.7616527080535889,290,1.0,2 +36290,4,1.0,0,1.3296581506729126,291,1.0,2 +36291,4,1.0,0,1.170657992362976,292,1.0,2 +36292,4,1.0,0,1.842651605606079,293,1.0,2 +36293,4,0.0,0,2.1146507263183594,294,1.0,2 +36294,4,1.0,0,1.522655725479126,295,1.0,2 +36295,4,0.0,0,1.2316581010818481,296,0.0,2 +36296,4,1.0,0,1.655653953552246,297,1.0,2 +36297,4,1.0,0,2.3936636447906494,298,1.0,2 +36298,4,1.0,0,1.4896560907363892,299,1.0,2 +36299,4,1.0,0,1.986649751663208,300,1.0,2 +36300,4,0.0,0,1.3336580991744995,301,0.0,2 +36301,4,1.0,0,1.2896581888198853,302,1.0,2 +36302,4,1.0,0,1.3676576614379883,303,1.0,2 +36303,4,1.0,0,1.5126558542251587,304,1.0,2 +36304,4,1.0,0,1.2816581726074219,305,1.0,2 +36305,4,1.0,0,1.8796510696411133,306,0.0,2 +36306,4,0.0,0,1.4926561117172241,307,1.0,2 +36307,4,0.0,0,1.7016534805297852,308,0.0,2 +36308,4,1.0,0,1.3476579189300537,309,0.0,2 +36309,4,0.0,0,1.4546566009521484,310,0.0,2 +36310,4,0.0,0,1.7336530685424805,311,1.0,2 +36311,4,0.0,0,1.408657193183899,312,1.0,2 +36312,4,0.0,0,1.3596577644348145,313,0.0,2 +36313,4,1.0,0,1.98764967918396,314,1.0,2 +36314,4,0.0,0,1.5626552104949951,315,0.0,2 +36315,4,1.0,0,1.4696563482284546,316,1.0,2 +36316,4,0.0,0,1.401657223701477,317,0.0,2 +36317,4,1.0,0,1.755652666091919,318,1.0,2 +36318,4,0.0,0,1.4506566524505615,319,1.0,2 +36319,4,1.0,0,1.5356554985046387,320,0.0,2 +36320,4,0.0,0,1.4286569356918335,321,1.0,2 +36321,4,0.0,0,1.408657193183899,322,0.0,2 +36322,4,0.0,0,1.920650601387024,323,0.0,2 +36323,4,1.0,0,1.636654257774353,324,0.0,2 +36324,4,0.0,0,1.6286543607711792,325,0.0,2 +36325,4,0.0,0,1.5916547775268555,326,0.0,2 +36326,4,0.0,0,1.3966573476791382,327,0.0,2 +36327,4,1.0,0,2.253657102584839,328,1.0,2 +36328,4,1.0,0,1.338658094406128,329,1.0,2 +36329,4,1.0,0,1.9736499786376953,330,1.0,2 +36330,4,1.0,0,1.28065824508667,331,1.0,2 +36331,4,0.0,0,1.5616551637649536,332,0.0,2 +36332,4,1.0,0,1.541655421257019,333,1.0,2 +36333,4,1.0,0,1.3186582326889038,334,0.0,2 +36334,4,0.0,0,1.9316504001617432,335,0.0,2 +36335,4,1.0,0,1.3646577596664429,336,1.0,2 +36336,4,1.0,0,1.445656657218933,337,1.0,2 +36337,4,1.0,0,1.305658221244812,338,1.0,2 +36338,4,1.0,0,1.4066572189331055,339,1.0,2 +36339,4,1.0,0,1.567655086517334,340,0.0,2 +36340,4,1.0,0,1.1646579504013062,341,0.0,2 +36341,4,0.0,0,1.6046546697616577,342,0.0,2 +36342,4,0.0,0,1.2676581144332886,343,0.0,2 +36343,4,1.0,0,1.5696550607681274,344,1.0,2 +36344,4,1.0,0,1.1986579895019531,345,1.0,2 +36345,4,1.0,0,1.3226583003997803,346,1.0,2 +36346,4,1.0,0,1.6926535367965698,347,1.0,2 +36347,4,1.0,0,1.427656888961792,348,1.0,2 +36348,4,1.0,0,1.7176532745361328,349,1.0,2 +36349,4,1.0,0,1.5606552362442017,350,1.0,2 +36350,4,1.0,0,1.2896581888198853,351,1.0,2 +36351,4,1.0,0,1.278658151626587,352,1.0,2 +36352,4,1.0,0,1.2606581449508667,353,1.0,2 +36353,4,1.0,0,1.360657811164856,354,1.0,2 +36354,4,1.0,0,1.2826582193374634,355,1.0,2 +36355,4,1.0,0,1.4326568841934204,356,1.0,2 +36356,4,1.0,0,1.64065420627594,357,1.0,2 +36357,4,1.0,0,1.4516565799713135,358,1.0,2 +36358,4,1.0,0,1.662653923034668,359,1.0,2 +36359,4,1.0,0,1.4766563177108765,360,0.0,2 +36360,4,0.0,0,1.1836580038070679,361,0.0,2 +36361,4,0.0,0,2.040648937225342,362,0.0,2 +36362,4,0.0,0,1.6196544170379639,363,0.0,2 +36363,4,0.0,0,1.1536579132080078,364,0.0,2 +36364,4,1.0,0,1.5826549530029297,365,1.0,2 +36365,4,1.0,0,1.5546553134918213,366,1.0,2 +36366,4,1.0,0,1.1976580619812012,367,0.0,2 +36367,4,1.0,0,1.6066546440124512,368,1.0,2 +36368,4,1.0,0,1.5746550559997559,369,0.0,2 +36369,4,0.0,0,1.6936535835266113,370,0.0,2 +36370,4,1.0,0,1.6226544380187988,371,1.0,2 +36371,4,1.0,0,1.4066572189331055,372,1.0,2 +36372,4,1.0,0,1.4196569919586182,373,1.0,2 +36373,4,1.0,0,1.6666538715362549,374,1.0,2 +36374,4,1.0,0,1.2736581563949585,375,1.0,2 +36375,4,0.0,0,1.2266581058502197,376,1.0,2 +36376,4,0.0,0,1.3286582231521606,377,0.0,2 +36377,4,1.0,0,1.4246569871902466,378,1.0,2 +36378,4,1.0,0,1.4586565494537354,379,1.0,2 +36379,4,1.0,0,1.850651502609253,380,1.0,2 +36380,4,1.0,0,1.3426580429077148,381,1.0,2 +36381,4,1.0,0,1.688653588294983,382,1.0,2 +36382,4,1.0,0,1.544655442237854,383,1.0,2 +36383,4,1.0,0,1.8406516313552856,384,1.0,2 +36384,4,1.0,0,1.2456581592559814,385,1.0,2 +36385,4,1.0,0,1.3956573009490967,386,1.0,2 +36386,4,1.0,0,1.4206570386886597,387,1.0,2 +36387,4,1.0,0,1.518655776977539,388,1.0,2 +36388,4,1.0,0,1.271658182144165,389,1.0,2 +36389,4,1.0,0,1.93565034866333,390,1.0,2 +36390,4,1.0,0,1.5106558799743652,391,1.0,2 +36391,4,1.0,0,1.4136570692062378,392,1.0,2 +36392,4,1.0,0,1.3586578369140625,393,1.0,2 +36393,4,1.0,0,1.2296581268310547,394,1.0,2 +36394,4,1.0,0,1.4926561117172241,395,1.0,2 +36395,4,1.0,0,1.2766581773757935,396,1.0,2 +36396,4,1.0,0,1.493656039237976,397,1.0,2 +36397,4,1.0,0,1.3886574506759644,398,1.0,2 +36398,4,1.0,0,1.4636564254760742,399,1.0,2 +36399,4,1.0,0,1.3906574249267578,400,1.0,2 +36400,4,1.0,0,1.2836581468582153,401,1.0,2 +36401,4,1.0,0,1.271658182144165,402,0.0,2 +36402,4,1.0,0,2.251657009124756,403,0.0,2 +36403,4,0.0,0,1.2976582050323486,404,0.0,2 +36404,4,0.0,0,1.1826579570770264,405,0.0,2 +36405,4,0.0,0,1.518655776977539,406,0.0,2 +36406,4,1.0,0,1.8786511421203613,407,1.0,2 +36407,4,1.0,0,1.386657476425171,408,0.0,2 +36408,4,1.0,0,2.315659999847412,409,1.0,2 +36409,4,1.0,0,1.7936522960662842,410,1.0,2 +36410,4,1.0,0,1.3516578674316406,411,1.0,2 +36411,4,1.0,0,1.2056580781936646,412,1.0,2 +36412,4,1.0,0,1.6036546230316162,413,1.0,2 +36413,4,1.0,0,1.496656060218811,414,1.0,2 +36414,4,1.0,0,1.6436541080474854,415,1.0,2 +36415,4,1.0,0,1.6686538457870483,416,1.0,2 +36416,4,1.0,0,1.4766563177108765,417,1.0,2 +36417,4,1.0,0,1.8126519918441772,418,1.0,2 +36418,4,1.0,0,1.5046559572219849,419,1.0,2 +36419,4,1.0,0,1.2616581916809082,420,1.0,2 +36420,4,1.0,0,1.4336568117141724,421,1.0,2 +36421,4,1.0,0,1.4126571416854858,422,1.0,2 +36422,4,1.0,0,1.519655704498291,423,1.0,2 +36423,4,1.0,0,1.3426580429077148,424,1.0,2 +36424,4,1.0,0,1.5466554164886475,425,1.0,2 +36425,4,1.0,0,2.3596620559692383,426,0.0,2 +36426,4,1.0,0,1.6076545715332031,427,0.0,2 +36427,4,1.0,0,1.5176557302474976,428,0.0,2 +36428,4,1.0,0,2.1666531562805176,429,1.0,2 +36429,4,1.0,0,1.7646526098251343,430,1.0,2 +36430,4,1.0,0,1.5126558542251587,431,1.0,2 +36431,4,1.0,0,1.4616564512252808,432,0.0,2 +36432,4,0.0,0,1.3456579446792603,433,0.0,2 +36433,4,1.0,0,1.5766550302505493,434,1.0,2 +36434,4,1.0,0,1.5376554727554321,435,1.0,2 +36435,4,1.0,0,1.423656940460205,436,1.0,2 +36436,4,1.0,0,1.990649700164795,437,1.0,2 +36437,4,1.0,0,1.6276543140411377,438,1.0,2 +36438,4,1.0,0,1.5866549015045166,439,1.0,2 +36439,4,1.0,0,1.1916580200195312,440,1.0,2 +36440,4,1.0,0,1.408657193183899,441,1.0,2 +36441,4,1.0,0,1.5986547470092773,442,1.0,2 +36442,4,1.0,0,1.375657558441162,443,1.0,2 +36443,4,1.0,0,1.6236543655395508,444,0.0,2 +36444,4,0.0,0,1.4796562194824219,445,0.0,2 +36445,4,0.0,0,1.3436579704284668,446,0.0,2 +36446,4,1.0,0,1.474656343460083,447,0.0,2 +36447,4,1.0,0,2.262657642364502,448,1.0,2 +36448,4,1.0,0,1.3956573009490967,449,1.0,2 +36449,4,1.0,0,1.9726499319076538,450,1.0,2 +36450,4,1.0,0,1.659653902053833,451,1.0,2 +36451,4,1.0,0,1.8616514205932617,452,1.0,2 +36452,4,1.0,0,1.8406516313552856,453,1.0,2 +36453,4,1.0,0,1.3656576871871948,454,1.0,2 +36454,4,1.0,0,1.4676563739776611,455,0.0,2 +36455,4,1.0,0,1.2326581478118896,456,1.0,2 +36456,4,1.0,0,1.3126583099365234,457,1.0,2 +36457,4,1.0,0,1.1836580038070679,458,1.0,2 +36458,4,1.0,0,1.6896536350250244,459,0.0,2 +36459,4,1.0,0,1.3596577644348145,460,1.0,2 +36460,4,1.0,0,1.3376580476760864,461,1.0,2 +36461,4,1.0,0,1.3196582794189453,462,1.0,2 +36462,4,1.0,0,1.4216569662094116,463,1.0,2 +36463,4,1.0,0,1.3226583003997803,464,1.0,2 +36464,4,1.0,0,1.5256556272506714,465,1.0,2 +36465,4,1.0,0,1.801652193069458,466,1.0,2 +36466,4,1.0,0,1.47865629196167,467,1.0,2 +36467,4,1.0,0,1.2886581420898438,468,1.0,2 +36468,4,1.0,0,1.1866580247879028,469,1.0,2 +36469,4,1.0,0,1.301658272743225,470,1.0,2 +36470,4,1.0,0,1.3706576824188232,471,1.0,2 +36471,4,1.0,0,1.6756536960601807,472,1.0,2 +36472,4,1.0,0,1.5586552619934082,473,1.0,2 +36473,4,1.0,0,1.278658151626587,474,1.0,2 +36474,4,1.0,0,1.3176583051681519,475,1.0,2 +36475,4,1.0,0,1.5476553440093994,476,1.0,2 +36476,4,0.0,0,1.6516540050506592,477,0.0,2 +36477,4,1.0,0,1.4596564769744873,478,1.0,2 +36478,4,1.0,0,1.400657296180725,479,1.0,2 +36479,4,1.0,0,1.383657455444336,480,1.0,2 +36480,4,1.0,0,1.5556552410125732,481,1.0,2 +36481,4,1.0,0,1.4556565284729004,482,1.0,2 +36482,4,1.0,0,1.5806549787521362,483,1.0,2 +36483,4,1.0,0,1.427656888961792,484,1.0,2 +36484,4,1.0,0,1.8576514720916748,485,1.0,2 +36485,4,1.0,0,1.4776562452316284,486,1.0,2 +36486,4,1.0,0,1.891650915145874,487,1.0,2 +36487,4,1.0,0,1.28065824508667,488,1.0,2 +36488,4,1.0,0,1.3046581745147705,489,1.0,2 +36489,4,0.0,0,1.3126583099365234,490,0.0,2 +36490,4,1.0,0,1.5856549739837646,491,1.0,2 +36491,4,1.0,0,1.423656940460205,492,1.0,2 +36492,4,1.0,0,1.2696582078933716,493,1.0,2 +36493,4,1.0,0,1.3436579704284668,494,1.0,2 +36494,4,1.0,0,1.4546566009521484,495,1.0,2 +36495,4,1.0,0,1.4656563997268677,496,1.0,2 +36496,4,1.0,0,1.5946547985076904,497,1.0,2 +36497,4,1.0,0,1.4696563482284546,498,1.0,2 +36498,4,1.0,0,1.3736575841903687,499,1.0,2 +36499,4,1.0,0,1.3856574296951294,500,1.0,2 +36500,4,0.0,1,1.9026508331298828,1,0.0,2 +36501,4,1.0,1,1.7386529445648193,2,0.0,2 +36502,4,1.0,1,2.244656562805176,3,0.0,2 +36503,4,1.0,1,1.7046533823013306,4,1.0,2 +36504,4,1.0,1,1.8896510601043701,5,0.0,2 +36505,4,1.0,1,1.5766550302505493,6,0.0,2 +36506,4,1.0,1,2.26065731048584,7,1.0,2 +36507,4,1.0,1,1.4666564464569092,8,0.0,2 +36508,4,1.0,1,1.5776550769805908,9,0.0,2 +36509,4,0.0,1,1.849651575088501,10,1.0,2 +36510,4,0.0,1,1.3906574249267578,11,0.0,2 +36511,4,0.0,1,1.3666577339172363,12,1.0,2 +36512,4,0.0,1,1.1396578550338745,13,0.0,2 +36513,4,0.0,1,1.5856549739837646,14,1.0,2 +36514,4,0.0,1,1.4956560134887695,15,1.0,2 +36515,4,0.0,1,1.2196580171585083,16,0.0,2 +36516,4,0.0,1,1.211658000946045,17,1.0,2 +36517,4,0.0,1,1.4576565027236938,18,1.0,2 +36518,4,0.0,1,1.2636581659317017,19,0.0,2 +36519,4,0.0,1,1.3766576051712036,20,0.0,2 +36520,4,0.0,1,1.2546581029891968,21,0.0,2 +36521,4,1.0,1,1.9486502408981323,22,1.0,2 +36522,4,1.0,1,1.3476579189300537,23,1.0,2 +36523,4,1.0,1,1.2736581563949585,24,1.0,2 +36524,4,1.0,1,1.4136570692062378,25,1.0,2 +36525,4,1.0,1,1.2696582078933716,26,0.0,2 +36526,4,0.0,1,1.386657476425171,27,0.0,2 +36527,4,1.0,1,1.2196580171585083,28,1.0,2 +36528,4,1.0,1,1.311658263206482,29,0.0,2 +36529,4,1.0,1,1.544655442237854,30,1.0,2 +36530,4,1.0,1,1.803652048110962,31,1.0,2 +36531,4,1.0,1,1.3596577644348145,32,1.0,2 +36532,4,1.0,1,1.3636577129364014,33,1.0,2 +36533,4,1.0,1,1.2606581449508667,34,1.0,2 +36534,4,1.0,1,1.4766563177108765,35,0.0,2 +36535,4,0.0,1,1.4676563739776611,36,1.0,2 +36536,4,0.0,1,1.360657811164856,37,0.0,2 +36537,4,0.0,1,1.3746576309204102,38,0.0,2 +36538,4,1.0,1,1.6126545667648315,39,1.0,2 +36539,4,1.0,1,1.5856549739837646,40,1.0,2 +36540,4,1.0,1,1.2466580867767334,41,1.0,2 +36541,4,1.0,1,1.3696576356887817,42,0.0,2 +36542,4,0.0,1,1.3846575021743774,43,0.0,2 +36543,4,0.0,1,1.846651554107666,44,1.0,2 +36544,4,0.0,1,1.523655652999878,45,0.0,2 +36545,4,1.0,1,1.758652687072754,46,1.0,2 +36546,4,1.0,1,1.4036571979522705,47,1.0,2 +36547,4,1.0,1,1.2336580753326416,48,1.0,2 +36548,4,1.0,1,1.1966580152511597,49,0.0,2 +36549,4,0.0,1,1.8006521463394165,50,0.0,2 +36550,4,1.0,1,1.515655755996704,51,1.0,2 +36551,4,1.0,1,1.4556565284729004,52,1.0,2 +36552,4,1.0,1,1.5356554985046387,53,1.0,2 +36553,4,1.0,1,1.4396567344665527,54,1.0,2 +36554,4,1.0,1,1.272658109664917,55,1.0,2 +36555,4,1.0,1,1.4036571979522705,56,0.0,2 +36556,4,1.0,1,1.8776512145996094,57,1.0,2 +36557,4,1.0,1,1.4346568584442139,58,0.0,2 +36558,4,1.0,1,1.4796562194824219,59,1.0,2 +36559,4,1.0,1,1.353657841682434,60,1.0,2 +36560,4,1.0,1,1.2616581916809082,61,0.0,2 +36561,4,0.0,1,1.3256582021713257,62,0.0,2 +36562,4,1.0,1,1.9306504726409912,63,1.0,2 +36563,4,1.0,1,1.3556578159332275,64,1.0,2 +36564,4,1.0,1,1.5556552410125732,65,0.0,2 +36565,4,0.0,1,1.4286569356918335,66,0.0,2 +36566,4,1.0,1,1.5436553955078125,67,1.0,2 +36567,4,1.0,1,1.6046546697616577,68,1.0,2 +36568,4,0.0,1,1.7416529655456543,69,0.0,2 +36569,4,1.0,1,1.795652151107788,70,1.0,2 +36570,4,1.0,1,1.4636564254760742,71,1.0,2 +36571,4,1.0,1,1.4426567554473877,72,0.0,2 +36572,4,1.0,1,1.5076558589935303,73,1.0,2 +36573,4,1.0,1,1.5586552619934082,74,1.0,2 +36574,4,1.0,1,1.272658109664917,75,0.0,2 +36575,4,0.0,1,1.9216506481170654,76,0.0,2 +36576,4,0.0,1,1.4126571416854858,77,0.0,2 +36577,4,1.0,1,1.9096508026123047,78,1.0,2 +36578,4,1.0,1,1.3076581954956055,79,1.0,2 +36579,4,1.0,1,2.1396517753601074,80,1.0,2 +36580,4,1.0,1,1.3216582536697388,81,1.0,2 +36581,4,1.0,1,1.8516514301300049,82,1.0,2 +36582,4,1.0,1,1.4796562194824219,83,0.0,2 +36583,4,1.0,1,2.0596487522125244,84,1.0,2 +36584,4,1.0,1,1.2696582078933716,85,1.0,2 +36585,4,1.0,1,1.5696550607681274,86,1.0,2 +36586,4,1.0,1,1.3226583003997803,87,1.0,2 +36587,4,1.0,1,1.4066572189331055,88,1.0,2 +36588,4,0.0,1,1.772652506828308,89,0.0,2 +36589,4,1.0,1,1.3946573734283447,90,1.0,2 +36590,4,1.0,1,1.3096582889556885,91,1.0,2 +36591,4,1.0,1,1.4896560907363892,92,1.0,2 +36592,4,1.0,1,1.3436579704284668,93,1.0,2 +36593,4,1.0,1,1.335658073425293,94,0.0,2 +36594,4,1.0,1,1.943650245666504,95,1.0,2 +36595,4,1.0,1,1.5816550254821777,96,1.0,2 +36596,4,1.0,1,1.1786580085754395,97,1.0,2 +36597,4,1.0,1,1.3006582260131836,98,0.0,2 +36598,4,1.0,1,2.1816537380218506,99,1.0,2 +36599,4,1.0,1,1.9816498756408691,100,1.0,2 +36600,4,0.0,1,1.9116506576538086,101,0.0,2 +36601,4,1.0,1,1.4636564254760742,102,1.0,2 +36602,4,1.0,1,1.3376580476760864,103,0.0,2 +36603,4,1.0,1,1.7696526050567627,104,1.0,2 +36604,4,1.0,1,1.5366555452346802,105,0.0,2 +36605,4,0.0,1,1.9656500816345215,106,0.0,2 +36606,4,1.0,1,2.1676530838012695,107,1.0,2 +36607,4,1.0,1,1.3096582889556885,108,1.0,2 +36608,4,1.0,1,1.207658052444458,109,1.0,2 +36609,4,1.0,1,1.5556552410125732,110,1.0,2 +36610,4,1.0,1,1.5836548805236816,111,1.0,2 +36611,4,1.0,1,1.314658284187317,112,1.0,2 +36612,4,1.0,1,1.3766576051712036,113,0.0,2 +36613,4,1.0,1,1.3176583051681519,114,1.0,2 +36614,4,1.0,1,1.5356554985046387,115,0.0,2 +36615,4,0.0,1,1.3936573266983032,116,0.0,2 +36616,4,1.0,1,1.5996546745300293,117,1.0,2 +36617,4,1.0,1,1.7636525630950928,118,1.0,2 +36618,4,1.0,1,1.573655128479004,119,0.0,2 +36619,4,0.0,1,1.180657982826233,120,0.0,2 +36620,4,0.0,1,1.4646564722061157,121,1.0,2 +36621,4,0.0,1,1.4426567554473877,122,1.0,2 +36622,4,0.0,1,1.3106582164764404,123,1.0,2 +36623,4,0.0,1,1.2766581773757935,124,0.0,2 +36624,4,0.0,1,1.5556552410125732,125,1.0,2 +36625,4,0.0,1,1.6516540050506592,126,1.0,2 +36626,4,0.0,1,1.1986579895019531,127,0.0,2 +36627,4,0.0,1,2.034649133682251,128,0.0,2 +36628,4,1.0,1,1.4656563997268677,129,1.0,2 +36629,4,1.0,1,1.375657558441162,130,0.0,2 +36630,4,1.0,1,2.0936496257781982,131,1.0,2 +36631,4,1.0,1,1.8226518630981445,132,1.0,2 +36632,4,1.0,1,1.5516552925109863,133,1.0,2 +36633,4,1.0,1,1.2636581659317017,134,0.0,2 +36634,4,1.0,1,1.8176519870758057,135,1.0,2 +36635,4,1.0,1,1.3656576871871948,136,0.0,2 +36636,4,1.0,1,1.7636525630950928,137,0.0,2 +36637,4,0.0,1,1.475656270980835,138,0.0,2 +36638,4,1.0,1,1.9196505546569824,139,1.0,2 +36639,4,1.0,1,1.2976582050323486,140,1.0,2 +36640,4,1.0,1,1.5246556997299194,141,1.0,2 +36641,4,1.0,1,1.937650442123413,142,0.0,2 +36642,4,1.0,1,1.9976496696472168,143,1.0,2 +36643,4,1.0,1,1.2956582307815552,144,0.0,2 +36644,4,1.0,1,2.222655773162842,145,0.0,2 +36645,4,0.0,1,1.2056580781936646,146,0.0,2 +36646,4,0.0,1,1.5376554727554321,147,0.0,2 +36647,4,0.0,1,1.6726537942886353,148,0.0,2 +36648,4,1.0,1,1.6746537685394287,149,1.0,2 +36649,4,1.0,1,1.357657790184021,150,1.0,2 +36650,4,0.0,1,1.211658000946045,151,0.0,2 +36651,4,1.0,1,1.5856549739837646,152,1.0,2 +36652,4,1.0,1,1.2546581029891968,153,1.0,2 +36653,4,1.0,1,1.4926561117172241,154,1.0,2 +36654,4,1.0,1,1.4436566829681396,155,1.0,2 +36655,4,1.0,1,1.6286543607711792,156,1.0,2 +36656,4,1.0,1,1.8106520175933838,157,0.0,2 +36657,4,1.0,1,1.4986560344696045,158,1.0,2 +36658,4,1.0,1,1.3736575841903687,159,1.0,2 +36659,4,1.0,1,1.3336580991744995,160,0.0,2 +36660,4,0.0,1,1.7606526613235474,161,0.0,2 +36661,4,0.0,1,2.3616621494293213,162,1.0,2 +36662,4,0.0,1,1.9196505546569824,163,0.0,2 +36663,4,1.0,1,1.6686538457870483,164,0.0,2 +36664,4,0.0,1,1.3926573991775513,165,0.0,2 +36665,4,1.0,1,1.942650318145752,166,1.0,2 +36666,4,1.0,1,2.3706626892089844,167,1.0,2 +36667,4,1.0,1,1.6436541080474854,168,1.0,2 +36668,4,1.0,1,1.274658203125,169,1.0,2 +36669,4,1.0,1,1.44965660572052,170,1.0,2 +36670,4,1.0,1,1.5386555194854736,171,1.0,2 +36671,4,1.0,1,1.3126583099365234,172,1.0,2 +36672,4,1.0,1,1.2886581420898438,173,1.0,2 +36673,4,1.0,1,1.275658130645752,174,1.0,2 +36674,4,1.0,1,1.3656576871871948,175,1.0,2 +36675,4,1.0,1,1.751652717590332,176,1.0,2 +36676,4,1.0,1,2.28065824508667,177,1.0,2 +36677,4,1.0,1,1.3336580991744995,178,1.0,2 +36678,4,1.0,1,1.3546578884124756,179,1.0,2 +36679,4,1.0,1,1.4906561374664307,180,1.0,2 +36680,4,1.0,1,1.2846581935882568,181,1.0,2 +36681,4,1.0,1,1.3676576614379883,182,0.0,2 +36682,4,1.0,1,2.0096495151519775,183,1.0,2 +36683,4,1.0,1,1.6946535110473633,184,1.0,2 +36684,4,1.0,1,1.207658052444458,185,0.0,2 +36685,4,1.0,1,1.493656039237976,186,1.0,2 +36686,4,1.0,1,1.470656394958496,187,1.0,2 +36687,4,1.0,1,1.4686564207077026,188,1.0,2 +36688,4,1.0,1,1.3176583051681519,189,0.0,2 +36689,4,1.0,1,1.799652099609375,190,1.0,2 +36690,4,1.0,1,1.4166570901870728,191,1.0,2 +36691,4,1.0,1,1.2666581869125366,192,1.0,2 +36692,4,1.0,1,1.7796523571014404,193,1.0,2 +36693,4,1.0,1,1.8486515283584595,194,1.0,2 +36694,4,1.0,1,1.3776575326919556,195,1.0,2 +36695,4,1.0,1,1.302658200263977,196,1.0,2 +36696,4,1.0,1,1.5906548500061035,197,1.0,2 +36697,4,1.0,1,1.4366568326950073,198,1.0,2 +36698,4,1.0,1,1.9286504983901978,199,1.0,2 +36699,4,1.0,1,1.566655158996582,200,1.0,2 +36700,4,1.0,1,1.544655442237854,201,1.0,2 +36701,4,1.0,1,1.610654592514038,202,1.0,2 +36702,4,1.0,1,1.3266582489013672,203,1.0,2 +36703,4,1.0,1,1.278658151626587,204,1.0,2 +36704,4,1.0,1,1.6346542835235596,205,0.0,2 +36705,4,0.0,1,1.5366555452346802,206,1.0,2 +36706,4,0.0,1,1.272658109664917,207,0.0,2 +36707,4,0.0,1,1.140657901763916,208,0.0,2 +36708,4,0.0,1,1.6126545667648315,209,0.0,2 +36709,4,1.0,1,1.9266505241394043,210,1.0,2 +36710,4,1.0,1,1.42665696144104,211,0.0,2 +36711,4,1.0,1,2.262657642364502,212,0.0,2 +36712,4,1.0,1,1.5746550559997559,213,1.0,2 +36713,4,1.0,1,1.757652759552002,214,1.0,2 +36714,4,1.0,1,1.3846575021743774,215,1.0,2 +36715,4,1.0,1,1.4806562662124634,216,1.0,2 +36716,4,1.0,1,1.4476566314697266,217,1.0,2 +36717,4,1.0,1,1.3696576356887817,218,0.0,2 +36718,4,0.0,1,1.3336580991744995,219,0.0,2 +36719,4,1.0,1,2.032649040222168,220,0.0,2 +36720,4,1.0,1,2.6396751403808594,221,1.0,2 +36721,4,1.0,1,1.4436566829681396,222,1.0,2 +36722,4,1.0,1,2.2196555137634277,223,1.0,2 +36723,4,1.0,1,1.2436580657958984,224,1.0,2 +36724,4,1.0,1,1.4426567554473877,225,1.0,2 +36725,4,1.0,1,1.3986573219299316,226,1.0,2 +36726,4,1.0,1,1.330658197402954,227,1.0,2 +36727,4,1.0,1,1.173658013343811,228,1.0,2 +36728,4,1.0,1,1.4696563482284546,229,1.0,2 +36729,4,1.0,1,1.7086533308029175,230,1.0,2 +36730,4,0.0,1,1.4066572189331055,231,1.0,2 +36731,4,0.0,1,1.7296531200408936,232,0.0,2 +36732,4,1.0,1,1.3476579189300537,233,1.0,2 +36733,4,1.0,1,1.2556581497192383,234,0.0,2 +36734,4,0.0,1,1.5846549272537231,235,1.0,2 +36735,4,0.0,1,1.2206580638885498,236,0.0,2 +36736,4,0.0,1,1.6006547212600708,237,0.0,2 +36737,4,0.0,1,2.4566664695739746,238,0.0,2 +36738,4,0.0,1,1.2856582403182983,239,1.0,2 +36739,4,0.0,1,1.2006580829620361,240,0.0,2 +36740,4,0.0,1,1.3956573009490967,241,0.0,2 +36741,4,1.0,1,1.6086546182632446,242,0.0,2 +36742,4,0.0,1,1.445656657218933,243,0.0,2 +36743,4,0.0,1,1.96465003490448,244,0.0,2 +36744,4,1.0,1,1.8786511421203613,245,1.0,2 +36745,4,0.0,1,1.2256580591201782,246,0.0,2 +36746,4,1.0,1,1.6676537990570068,247,0.0,2 +36747,4,1.0,1,1.4476566314697266,248,1.0,2 +36748,4,1.0,1,1.4946560859680176,249,1.0,2 +36749,4,1.0,1,1.9696500301361084,250,0.0,2 +36750,4,0.0,1,1.4176570177078247,251,0.0,2 +36751,4,1.0,1,1.9986495971679688,252,0.0,2 +36752,4,0.0,1,1.6096546649932861,253,0.0,2 +36753,4,0.0,1,1.8306517601013184,254,1.0,2 +36754,4,0.0,1,1.149657964706421,255,1.0,2 +36755,4,0.0,1,1.4416567087173462,256,0.0,2 +36756,4,1.0,1,1.3236582279205322,257,1.0,2 +36757,4,1.0,1,1.5756549835205078,258,1.0,2 +36758,4,1.0,1,1.4816561937332153,259,1.0,2 +36759,4,0.0,1,1.4866561889648438,260,0.0,2 +36760,4,1.0,1,1.3236582279205322,261,1.0,2 +36761,4,1.0,1,1.615654468536377,262,1.0,2 +36762,4,1.0,1,1.64065420627594,263,1.0,2 +36763,4,1.0,1,1.4346568584442139,264,1.0,2 +36764,4,1.0,1,1.3676576614379883,265,1.0,2 +36765,4,1.0,1,1.3426580429077148,266,1.0,2 +36766,4,1.0,1,1.2146580219268799,267,0.0,2 +36767,4,1.0,1,1.9706499576568604,268,1.0,2 +36768,4,1.0,1,1.5466554164886475,269,0.0,2 +36769,4,1.0,1,1.8586513996124268,270,0.0,2 +36770,4,0.0,1,1.2916581630706787,271,0.0,2 +36771,4,0.0,1,1.3596577644348145,272,0.0,2 +36772,4,1.0,1,1.6706538200378418,273,1.0,2 +36773,4,1.0,1,1.6916534900665283,274,0.0,2 +36774,4,1.0,1,1.3966573476791382,275,0.0,2 +36775,4,1.0,1,1.3446580171585083,276,1.0,2 +36776,4,0.0,1,1.4516565799713135,277,0.0,2 +36777,4,1.0,1,1.2216581106185913,278,1.0,2 +36778,4,1.0,1,1.2846581935882568,279,1.0,2 +36779,4,1.0,1,1.2926582098007202,280,0.0,2 +36780,4,0.0,1,1.6676537990570068,281,1.0,2 +36781,4,0.0,1,1.8816511631011963,282,0.0,2 +36782,4,1.0,1,1.5056558847427368,283,1.0,2 +36783,4,1.0,1,1.5816550254821777,284,1.0,2 +36784,4,1.0,1,1.2766581773757935,285,1.0,2 +36785,4,0.0,1,1.3556578159332275,286,1.0,2 +36786,4,0.0,1,1.6426541805267334,287,1.0,2 +36787,4,1.0,1,1.5976548194885254,288,1.0,2 +36788,4,1.0,1,1.4576565027236938,289,0.0,2 +36789,4,0.0,1,1.338658094406128,290,1.0,2 +36790,4,0.0,1,1.3746576309204102,291,0.0,2 +36791,4,1.0,1,1.680653691291809,292,1.0,2 +36792,4,1.0,1,1.6706538200378418,293,0.0,2 +36793,4,1.0,1,1.5286556482315063,294,1.0,2 +36794,4,1.0,1,1.2846581935882568,295,0.0,2 +36795,4,1.0,1,1.868651270866394,296,0.0,2 +36796,4,0.0,1,1.7226531505584717,297,0.0,2 +36797,4,1.0,1,1.8106520175933838,298,0.0,2 +36798,4,0.0,1,1.2186580896377563,299,0.0,2 +36799,4,1.0,1,1.5786550045013428,300,1.0,2 +36800,4,1.0,1,1.4596564769744873,301,1.0,2 +36801,4,1.0,1,1.6446541547775269,302,0.0,2 +36802,4,0.0,1,1.6446541547775269,303,0.0,2 +36803,4,0.0,1,1.9096508026123047,304,0.0,2 +36804,4,1.0,1,1.8886510133743286,305,1.0,2 +36805,4,1.0,1,1.4516565799713135,306,1.0,2 +36806,4,1.0,1,1.4846562147140503,307,1.0,2 +36807,4,1.0,1,1.3946573734283447,308,0.0,2 +36808,4,1.0,1,1.9696500301361084,309,1.0,2 +36809,4,1.0,1,1.3426580429077148,310,1.0,2 +36810,4,1.0,1,1.405657172203064,311,1.0,2 +36811,4,1.0,1,1.5026559829711914,312,1.0,2 +36812,4,1.0,1,1.3846575021743774,313,0.0,2 +36813,4,0.0,1,1.7396528720855713,314,0.0,2 +36814,4,1.0,1,1.5856549739837646,315,0.0,2 +36815,4,0.0,1,1.6436541080474854,316,1.0,2 +36816,4,0.0,1,1.3436579704284668,317,0.0,2 +36817,4,1.0,1,1.7156531810760498,318,0.0,2 +36818,4,0.0,1,1.379657506942749,319,1.0,2 +36819,4,0.0,1,1.1786580085754395,320,0.0,2 +36820,4,0.0,1,1.4076571464538574,321,1.0,2 +36821,4,0.0,1,1.2676581144332886,322,0.0,2 +36822,4,1.0,1,1.4226570129394531,323,1.0,2 +36823,4,1.0,1,1.5576552152633667,324,1.0,2 +36824,4,1.0,1,1.408657193183899,325,1.0,2 +36825,4,1.0,1,1.850651502609253,326,1.0,2 +36826,4,1.0,1,1.2616581916809082,327,1.0,2 +36827,4,1.0,1,1.3496578931808472,328,1.0,2 +36828,4,1.0,1,1.314658284187317,329,1.0,2 +36829,4,1.0,1,1.8816511631011963,330,1.0,2 +36830,4,1.0,1,1.4206570386886597,331,1.0,2 +36831,4,1.0,1,1.234658122062683,332,0.0,2 +36832,4,1.0,1,1.3936573266983032,333,0.0,2 +36833,4,0.0,1,1.7776525020599365,334,1.0,2 +36834,4,0.0,1,1.6816537380218506,335,1.0,2 +36835,4,0.0,1,1.2556581497192383,336,0.0,2 +36836,4,0.0,1,1.2456581592559814,337,0.0,2 +36837,4,0.0,1,1.3936573266983032,338,1.0,2 +36838,4,0.0,1,1.2676581144332886,339,1.0,2 +36839,4,0.0,1,1.5996546745300293,340,0.0,2 +36840,4,1.0,1,1.8626513481140137,341,1.0,2 +36841,4,1.0,1,1.3416579961776733,342,0.0,2 +36842,4,1.0,1,1.3596577644348145,343,1.0,2 +36843,4,1.0,1,1.3666577339172363,344,1.0,2 +36844,4,1.0,1,1.6356542110443115,345,1.0,2 +36845,4,1.0,1,1.445656657218933,346,0.0,2 +36846,4,1.0,1,1.6976535320281982,347,1.0,2 +36847,4,1.0,1,1.5506553649902344,348,1.0,2 +36848,4,1.0,1,1.4646564722061157,349,1.0,2 +36849,4,1.0,1,1.2696582078933716,350,1.0,2 +36850,4,1.0,1,1.3256582021713257,351,1.0,2 +36851,4,1.0,1,1.5506553649902344,352,1.0,2 +36852,4,1.0,1,1.570655107498169,353,1.0,2 +36853,4,1.0,1,1.9306504726409912,354,1.0,2 +36854,4,1.0,1,1.241658091545105,355,1.0,2 +36855,4,1.0,1,1.2706581354141235,356,0.0,2 +36856,4,1.0,1,1.4216569662094116,357,0.0,2 +36857,4,1.0,1,1.5466554164886475,358,1.0,2 +36858,4,1.0,1,1.6216545104980469,359,1.0,2 +36859,4,1.0,1,1.3036582469940186,360,1.0,2 +36860,4,1.0,1,1.4416567087173462,361,1.0,2 +36861,4,1.0,1,1.4736562967300415,362,1.0,2 +36862,4,1.0,1,1.353657841682434,363,1.0,2 +36863,4,0.0,1,1.171657919883728,364,1.0,2 +36864,4,1.0,1,1.662653923034668,365,1.0,2 +36865,4,0.0,1,1.5126558542251587,366,0.0,2 +36866,4,1.0,1,1.2206580638885498,367,1.0,2 +36867,4,1.0,1,1.4296568632125854,368,1.0,2 +36868,4,1.0,1,1.2486581802368164,369,1.0,2 +36869,4,1.0,1,1.173658013343811,370,0.0,2 +36870,4,0.0,1,2.4086642265319824,371,0.0,2 +36871,4,1.0,1,1.3426580429077148,372,1.0,2 +36872,4,1.0,1,1.2696582078933716,373,1.0,2 +36873,4,1.0,1,1.8166519403457642,374,1.0,2 +36874,4,1.0,1,1.7456529140472412,375,1.0,2 +36875,4,1.0,1,1.4286569356918335,376,1.0,2 +36876,4,1.0,1,1.6356542110443115,377,0.0,2 +36877,4,0.0,1,1.548655390739441,378,1.0,2 +36878,4,0.0,1,1.4696563482284546,379,0.0,2 +36879,4,1.0,1,1.7896523475646973,380,1.0,2 +36880,4,1.0,1,1.4816561937332153,381,1.0,2 +36881,4,0.0,1,1.5296555757522583,382,0.0,2 +36882,4,1.0,1,1.4826562404632568,383,0.0,2 +36883,4,0.0,1,1.9146506786346436,384,0.0,2 +36884,4,0.0,1,1.496656060218811,385,0.0,2 +36885,4,0.0,1,1.5876548290252686,386,0.0,2 +36886,4,1.0,1,1.4476566314697266,387,1.0,2 +36887,4,1.0,1,1.216658115386963,388,1.0,2 +36888,4,1.0,1,2.237656354904175,389,1.0,2 +36889,4,1.0,1,1.573655128479004,390,1.0,2 +36890,4,1.0,1,1.2536581754684448,391,1.0,2 +36891,4,1.0,1,1.356657862663269,392,1.0,2 +36892,4,1.0,1,1.5376554727554321,393,1.0,2 +36893,4,1.0,1,1.3676576614379883,394,1.0,2 +36894,4,1.0,1,1.5536552667617798,395,0.0,2 +36895,4,0.0,1,1.3916573524475098,396,1.0,2 +36896,4,0.0,1,1.2326581478118896,397,1.0,2 +36897,4,0.0,1,1.522655725479126,398,0.0,2 +36898,4,0.0,1,2.074648857116699,399,0.0,2 +36899,4,1.0,1,1.945650339126587,400,0.0,2 +36900,4,1.0,1,1.9236505031585693,401,1.0,2 +36901,4,1.0,1,1.4026572704315186,402,0.0,2 +36902,4,0.0,1,1.3326581716537476,403,0.0,2 +36903,4,0.0,1,1.201658010482788,404,0.0,2 +36904,4,0.0,1,1.180657982826233,405,1.0,2 +36905,4,0.0,1,1.334658145904541,406,1.0,2 +36906,4,0.0,1,1.3326581716537476,407,0.0,2 +36907,4,0.0,1,1.379657506942749,408,1.0,2 +36908,4,0.0,1,1.408657193183899,409,0.0,2 +36909,4,0.0,1,1.5066559314727783,410,0.0,2 +36910,4,1.0,1,1.3906574249267578,411,0.0,2 +36911,4,0.0,1,1.6346542835235596,412,0.0,2 +36912,4,1.0,1,1.6876535415649414,413,0.0,2 +36913,4,1.0,1,1.9506502151489258,414,0.0,2 +36914,4,1.0,1,1.24465811252594,415,1.0,2 +36915,4,1.0,1,1.6436541080474854,416,0.0,2 +36916,4,0.0,1,1.401657223701477,417,0.0,2 +36917,4,0.0,1,1.6166545152664185,418,0.0,2 +36918,4,1.0,1,1.3516578674316406,419,0.0,2 +36919,4,0.0,1,1.5966547727584839,420,1.0,2 +36920,4,1.0,1,1.7466528415679932,421,0.0,2 +36921,4,0.0,1,1.5056558847427368,422,0.0,2 +36922,4,1.0,1,1.4396567344665527,423,1.0,2 +36923,4,1.0,1,1.518655776977539,424,1.0,2 +36924,4,1.0,1,1.375657558441162,425,1.0,2 +36925,4,1.0,1,1.4796562194824219,426,1.0,2 +36926,4,1.0,1,1.3936573266983032,427,1.0,2 +36927,4,1.0,1,1.4466567039489746,428,1.0,2 +36928,4,1.0,1,1.2406580448150635,429,1.0,2 +36929,4,1.0,1,1.3876574039459229,430,0.0,2 +36930,4,0.0,1,1.311658263206482,431,1.0,2 +36931,4,0.0,1,1.496656060218811,432,1.0,2 +36932,4,0.0,1,1.1886579990386963,433,1.0,2 +36933,4,0.0,1,1.2306580543518066,434,1.0,2 +36934,4,0.0,1,1.1556578874588013,435,1.0,2 +36935,4,0.0,1,1.2156580686569214,436,0.0,2 +36936,4,0.0,1,1.2816581726074219,437,0.0,2 +36937,4,0.0,1,1.241658091545105,438,1.0,2 +36938,4,0.0,1,1.709653377532959,439,0.0,2 +36939,4,0.0,1,1.8636512756347656,440,0.0,2 +36940,4,0.0,1,1.9596500396728516,441,0.0,2 +36941,4,1.0,1,1.379657506942749,442,1.0,2 +36942,4,1.0,1,1.3716576099395752,443,1.0,2 +36943,4,1.0,1,1.4066572189331055,444,1.0,2 +36944,4,1.0,1,1.3046581745147705,445,1.0,2 +36945,4,1.0,1,1.6486541032791138,446,1.0,2 +36946,4,0.0,1,1.1686580181121826,447,1.0,2 +36947,4,1.0,1,2.23465633392334,448,1.0,2 +36948,4,1.0,1,1.711653232574463,449,1.0,2 +36949,4,0.0,1,1.8336517810821533,450,1.0,2 +36950,4,0.0,1,1.58865487575531,451,0.0,2 +36951,4,1.0,1,1.4036571979522705,452,0.0,2 +36952,4,0.0,1,1.2126580476760864,453,0.0,2 +36953,4,0.0,1,1.7566527128219604,454,0.0,2 +36954,4,0.0,1,1.5306556224822998,455,0.0,2 +36955,4,1.0,1,1.9076507091522217,456,0.0,2 +36956,4,1.0,1,1.5986547470092773,457,0.0,2 +36957,4,1.0,1,1.702653408050537,458,0.0,2 +36958,4,1.0,1,1.8356516361236572,459,0.0,2 +36959,4,0.0,1,1.6286543607711792,460,0.0,2 +36960,4,0.0,1,1.5246556997299194,461,0.0,2 +36961,4,1.0,1,1.423656940460205,462,1.0,2 +36962,4,1.0,1,1.567655086517334,463,1.0,2 +36963,4,1.0,1,1.5906548500061035,464,0.0,2 +36964,4,1.0,1,1.8856511116027832,465,0.0,2 +36965,4,1.0,1,1.308658242225647,466,1.0,2 +36966,4,0.0,1,1.353657841682434,467,1.0,2 +36967,4,1.0,1,2.4336655139923096,468,1.0,2 +36968,4,0.0,1,2.3796629905700684,469,0.0,2 +36969,4,1.0,1,1.636654257774353,470,1.0,2 +36970,4,1.0,1,1.4846562147140503,471,1.0,2 +36971,4,1.0,1,1.2216581106185913,472,0.0,2 +36972,4,0.0,1,1.9726499319076538,473,0.0,2 +36973,4,0.0,1,1.6736538410186768,474,1.0,2 +36974,4,0.0,1,1.2226580381393433,475,0.0,2 +36975,4,0.0,1,1.28065824508667,476,1.0,2 +36976,4,0.0,1,1.6056547164916992,477,1.0,2 +36977,4,0.0,1,1.4886561632156372,478,0.0,2 +36978,4,0.0,1,1.9566501379013062,479,1.0,2 +36979,4,0.0,1,1.278658151626587,480,0.0,2 +36980,4,0.0,1,2.1746535301208496,481,1.0,2 +36981,4,0.0,1,1.2396581172943115,482,1.0,2 +36982,4,0.0,1,2.1426520347595215,483,1.0,2 +36983,4,0.0,1,1.404657244682312,484,0.0,2 +36984,4,1.0,1,1.7296531200408936,485,1.0,2 +36985,4,1.0,1,2.4676671028137207,486,1.0,2 +36986,4,1.0,1,1.5216556787490845,487,1.0,2 +36987,4,1.0,1,1.3716576099395752,488,1.0,2 +36988,4,1.0,1,1.4126571416854858,489,1.0,2 +36989,4,1.0,1,1.3896573781967163,490,1.0,2 +36990,4,1.0,1,1.2186580896377563,491,1.0,2 +36991,4,1.0,1,1.7676525115966797,492,0.0,2 +36992,4,1.0,1,2.572671890258789,493,0.0,2 +36993,4,1.0,1,1.8386516571044922,494,0.0,2 +36994,4,0.0,1,1.2506581544876099,495,1.0,2 +36995,4,0.0,1,1.4296568632125854,496,0.0,2 +36996,4,1.0,1,1.9216506481170654,497,0.0,2 +36997,4,0.0,1,1.5826549530029297,498,0.0,2 +36998,4,0.0,1,1.7876522541046143,499,0.0,2 +36999,4,0.0,1,1.4406567811965942,500,0.0,2 +37000,4,0.0,2,1.1826579570770264,1,1.0,2 +37001,4,0.0,2,1.5386555194854736,2,1.0,2 +37002,4,0.0,2,1.4666564464569092,3,0.0,2 +37003,4,1.0,2,1.655653953552246,4,0.0,2 +37004,4,1.0,2,2.1546525955200195,5,0.0,2 +37005,4,0.0,2,1.7936522960662842,6,1.0,2 +37006,4,0.0,2,1.5146558284759521,7,0.0,2 +37007,4,0.0,2,1.4196569919586182,8,0.0,2 +37008,4,0.0,2,1.7606526613235474,9,0.0,2 +37009,4,1.0,2,2.1626529693603516,10,1.0,2 +37010,4,1.0,2,1.3666577339172363,11,1.0,2 +37011,4,1.0,2,1.1656579971313477,12,1.0,2 +37012,4,1.0,2,1.44965660572052,13,0.0,2 +37013,4,1.0,2,1.6696538925170898,14,0.0,2 +37014,4,0.0,2,1.445656657218933,15,0.0,2 +37015,4,0.0,2,1.3806575536727905,16,0.0,2 +37016,4,0.0,2,1.9346504211425781,17,1.0,2 +37017,4,0.0,2,1.702653408050537,18,1.0,2 +37018,4,0.0,2,1.5176557302474976,19,0.0,2 +37019,4,0.0,2,2.1756534576416016,20,0.0,2 +37020,4,0.0,2,1.4286569356918335,21,0.0,2 +37021,4,0.0,2,1.2466580867767334,22,1.0,2 +37022,4,0.0,2,1.5476553440093994,23,1.0,2 +37023,4,0.0,2,1.3466579914093018,24,1.0,2 +37024,4,0.0,2,1.3076581954956055,25,1.0,2 +37025,4,0.0,2,1.4846562147140503,26,0.0,2 +37026,4,0.0,2,1.5306556224822998,27,0.0,2 +37027,4,0.0,2,1.8846510648727417,28,0.0,2 +37028,4,0.0,2,1.4126571416854858,29,1.0,2 +37029,4,0.0,2,1.5396554470062256,30,1.0,2 +37030,4,0.0,2,1.210658073425293,31,1.0,2 +37031,4,0.0,2,1.4416567087173462,32,0.0,2 +37032,4,0.0,2,1.4896560907363892,33,1.0,2 +37033,4,0.0,2,1.5306556224822998,34,1.0,2 +37034,4,0.0,2,1.1826579570770264,35,1.0,2 +37035,4,0.0,2,1.703653335571289,36,1.0,2 +37036,4,0.0,2,1.2236580848693848,37,0.0,2 +37037,4,0.0,2,1.4226570129394531,38,0.0,2 +37038,4,0.0,2,1.7206531763076782,39,1.0,2 +37039,4,0.0,2,1.1766579151153564,40,1.0,2 +37040,4,0.0,2,1.6046546697616577,41,0.0,2 +37041,4,0.0,2,1.5146558284759521,42,0.0,2 +37042,4,1.0,2,1.4386568069458008,43,1.0,2 +37043,4,1.0,2,1.3916573524475098,44,0.0,2 +37044,4,0.0,2,1.6516540050506592,45,1.0,2 +37045,4,0.0,2,1.3336580991744995,46,1.0,2 +37046,4,0.0,2,1.4796562194824219,47,0.0,2 +37047,4,1.0,2,1.7816524505615234,48,1.0,2 +37048,4,1.0,2,1.4076571464538574,49,1.0,2 +37049,4,1.0,2,1.8796510696411133,50,1.0,2 +37050,4,1.0,2,1.6526540517807007,51,1.0,2 +37051,4,1.0,2,1.5526553392410278,52,1.0,2 +37052,4,0.0,2,1.6326543092727661,53,1.0,2 +37053,4,0.0,2,1.5296555757522583,54,1.0,2 +37054,4,0.0,2,1.6426541805267334,55,0.0,2 +37055,4,0.0,2,1.174657940864563,56,1.0,2 +37056,4,0.0,2,1.898650884628296,57,0.0,2 +37057,4,1.0,2,1.2646582126617432,58,0.0,2 +37058,4,0.0,2,1.5626552104949951,59,0.0,2 +37059,4,0.0,2,1.271658182144165,60,0.0,2 +37060,4,0.0,2,1.2956582307815552,61,1.0,2 +37061,4,0.0,2,1.3236582279205322,62,1.0,2 +37062,4,0.0,2,1.180657982826233,63,1.0,2 +37063,4,0.0,2,1.3206582069396973,64,0.0,2 +37064,4,0.0,2,1.2516580820083618,65,0.0,2 +37065,4,0.0,2,1.1896580457687378,66,1.0,2 +37066,4,0.0,2,1.170657992362976,67,0.0,2 +37067,4,0.0,2,2.296658992767334,68,0.0,2 +37068,4,0.0,2,1.5596551895141602,69,1.0,2 +37069,4,0.0,2,1.3416579961776733,70,0.0,2 +37070,4,1.0,2,1.2936582565307617,71,1.0,2 +37071,4,0.0,2,1.1856579780578613,72,1.0,2 +37072,4,0.0,2,1.728653073310852,73,0.0,2 +37073,4,1.0,2,1.4226570129394531,74,1.0,2 +37074,4,1.0,2,1.423656940460205,75,0.0,2 +37075,4,1.0,2,1.5326555967330933,76,0.0,2 +37076,4,0.0,2,1.938650369644165,77,1.0,2 +37077,4,0.0,2,1.4216569662094116,78,1.0,2 +37078,4,0.0,2,1.2876582145690918,79,1.0,2 +37079,4,0.0,2,1.42665696144104,80,1.0,2 +37080,4,0.0,2,1.1576579809188843,81,1.0,2 +37081,4,0.0,2,1.4906561374664307,82,0.0,2 +37082,4,0.0,2,1.7596526145935059,83,0.0,2 +37083,4,1.0,2,1.8166519403457642,84,0.0,2 +37084,4,0.0,2,1.2216581106185913,85,1.0,2 +37085,4,0.0,2,1.3656576871871948,86,0.0,2 +37086,4,0.0,2,1.9196505546569824,87,0.0,2 +37087,4,1.0,2,1.9036507606506348,88,1.0,2 +37088,4,1.0,2,1.9256505966186523,89,1.0,2 +37089,4,1.0,2,1.3596577644348145,90,1.0,2 +37090,4,1.0,2,1.2816581726074219,91,0.0,2 +37091,4,1.0,2,1.5606552362442017,92,1.0,2 +37092,4,1.0,2,1.4036571979522705,93,0.0,2 +37093,4,0.0,2,1.8776512145996094,94,0.0,2 +37094,4,1.0,2,2.3726625442504883,95,0.0,2 +37095,4,1.0,2,2.323660373687744,96,0.0,2 +37096,4,0.0,2,1.2146580219268799,97,0.0,2 +37097,4,0.0,2,1.3076581954956055,98,1.0,2 +37098,4,0.0,2,1.4696563482284546,99,0.0,2 +37099,4,0.0,2,1.5026559829711914,100,0.0,2 +37100,4,0.0,2,1.4576565027236938,101,1.0,2 +37101,4,0.0,2,1.379657506942749,102,1.0,2 +37102,4,0.0,2,1.1756579875946045,103,1.0,2 +37103,4,0.0,2,1.1996580362319946,104,1.0,2 +37104,4,0.0,2,1.20865797996521,105,1.0,2 +37105,4,0.0,2,1.4416567087173462,106,1.0,2 +37106,4,0.0,2,1.2096580266952515,107,0.0,2 +37107,4,0.0,2,1.4766563177108765,108,1.0,2 +37108,4,0.0,2,1.423656940460205,109,1.0,2 +37109,4,0.0,2,1.5556552410125732,110,0.0,2 +37110,4,0.0,2,1.3196582794189453,111,0.0,2 +37111,4,1.0,2,1.2646582126617432,112,0.0,2 +37112,4,1.0,2,1.9086507558822632,113,1.0,2 +37113,4,1.0,2,2.0516488552093506,114,0.0,2 +37114,4,1.0,2,2.1286511421203613,115,1.0,2 +37115,4,1.0,2,1.5976548194885254,116,0.0,2 +37116,4,1.0,2,1.6526540517807007,117,1.0,2 +37117,4,1.0,2,1.6606539487838745,118,0.0,2 +37118,4,0.0,2,1.6306543350219727,119,0.0,2 +37119,4,0.0,2,1.9236505031585693,120,0.0,2 +37120,4,0.0,2,1.5726550817489624,121,1.0,2 +37121,4,0.0,2,1.1796579360961914,122,1.0,2 +37122,4,0.0,2,1.3226583003997803,123,0.0,2 +37123,4,1.0,2,1.9026508331298828,124,1.0,2 +37124,4,1.0,2,1.61765456199646,125,0.0,2 +37125,4,0.0,2,1.4256569147109985,126,0.0,2 +37126,4,0.0,2,2.478667736053467,127,1.0,2 +37127,4,1.0,2,1.3966573476791382,128,1.0,2 +37128,4,1.0,2,1.6376543045043945,129,1.0,2 +37129,4,0.0,2,1.7776525020599365,130,0.0,2 +37130,4,1.0,2,1.8576514720916748,131,1.0,2 +37131,4,1.0,2,1.4846562147140503,132,0.0,2 +37132,4,1.0,2,2.0036494731903076,133,1.0,2 +37133,4,1.0,2,1.5856549739837646,134,1.0,2 +37134,4,1.0,2,1.2366580963134766,135,1.0,2 +37135,4,1.0,2,1.847651481628418,136,1.0,2 +37136,4,1.0,2,1.3816574811935425,137,0.0,2 +37137,4,1.0,2,1.448656678199768,138,1.0,2 +37138,4,1.0,2,1.6236543655395508,139,0.0,2 +37139,4,0.0,2,1.6896536350250244,140,0.0,2 +37140,4,1.0,2,1.5756549835205078,141,1.0,2 +37141,4,1.0,2,1.61765456199646,142,0.0,2 +37142,4,1.0,2,1.4256569147109985,143,1.0,2 +37143,4,1.0,2,1.445656657218933,144,1.0,2 +37144,4,1.0,2,1.544655442237854,145,1.0,2 +37145,4,1.0,2,1.331658124923706,146,1.0,2 +37146,4,1.0,2,1.655653953552246,147,1.0,2 +37147,4,1.0,2,1.6056547164916992,148,0.0,2 +37148,4,0.0,2,1.2876582145690918,149,0.0,2 +37149,4,1.0,2,1.4196569919586182,150,1.0,2 +37150,4,1.0,2,1.3766576051712036,151,0.0,2 +37151,4,1.0,2,1.5046559572219849,152,0.0,2 +37152,4,1.0,2,1.5026559829711914,153,1.0,2 +37153,4,1.0,2,1.4576565027236938,154,0.0,2 +37154,4,1.0,2,2.4816677570343018,155,1.0,2 +37155,4,1.0,2,1.4176570177078247,156,1.0,2 +37156,4,1.0,2,1.4596564769744873,157,0.0,2 +37157,4,1.0,2,1.7916522026062012,158,0.0,2 +37158,4,1.0,2,2.1446518898010254,159,0.0,2 +37159,4,1.0,2,1.5616551637649536,160,1.0,2 +37160,4,1.0,2,1.6776537895202637,161,1.0,2 +37161,4,1.0,2,1.2836581468582153,162,1.0,2 +37162,4,1.0,2,1.401657223701477,163,0.0,2 +37163,4,1.0,2,1.6276543140411377,164,1.0,2 +37164,4,1.0,2,1.6276543140411377,165,1.0,2 +37165,4,1.0,2,1.6096546649932861,166,1.0,2 +37166,4,1.0,2,1.7936522960662842,167,1.0,2 +37167,4,1.0,2,1.277658224105835,168,1.0,2 +37168,4,1.0,2,1.61765456199646,169,1.0,2 +37169,4,1.0,2,1.3416579961776733,170,1.0,2 +37170,4,1.0,2,1.2596580982208252,171,0.0,2 +37171,4,0.0,2,1.6446541547775269,172,1.0,2 +37172,4,0.0,2,1.613654613494873,173,0.0,2 +37173,4,1.0,2,1.3966573476791382,174,0.0,2 +37174,4,0.0,2,1.5286556482315063,175,1.0,2 +37175,4,0.0,2,1.211658000946045,176,0.0,2 +37176,4,0.0,2,1.795652151107788,177,1.0,2 +37177,4,0.0,2,1.3446580171585083,178,0.0,2 +37178,4,1.0,2,1.4886561632156372,179,0.0,2 +37179,4,0.0,2,1.44965660572052,180,1.0,2 +37180,4,0.0,2,1.4296568632125854,181,0.0,2 +37181,4,0.0,2,1.3096582889556885,182,1.0,2 +37182,4,0.0,2,1.382657527923584,183,0.0,2 +37183,4,1.0,2,1.5566552877426147,184,0.0,2 +37184,4,0.0,2,1.573655128479004,185,0.0,2 +37185,4,0.0,2,1.301658272743225,186,0.0,2 +37186,4,1.0,2,1.405657172203064,187,0.0,2 +37187,4,0.0,2,1.2306580543518066,188,0.0,2 +37188,4,1.0,2,1.5686551332473755,189,1.0,2 +37189,4,1.0,2,1.493656039237976,190,1.0,2 +37190,4,1.0,2,1.3646577596664429,191,1.0,2 +37191,4,1.0,2,1.42665696144104,192,1.0,2 +37192,4,1.0,2,2.2046546936035156,193,1.0,2 +37193,4,1.0,2,1.405657172203064,194,1.0,2 +37194,4,1.0,2,1.408657193183899,195,0.0,2 +37195,4,1.0,2,2.036649227142334,196,0.0,2 +37196,4,0.0,2,1.8336517810821533,197,1.0,2 +37197,4,0.0,2,1.2956582307815552,198,0.0,2 +37198,4,1.0,2,1.5086559057235718,199,1.0,2 +37199,4,1.0,2,1.3236582279205322,200,1.0,2 +37200,4,1.0,2,1.98764967918396,201,0.0,2 +37201,4,0.0,2,1.6836535930633545,202,0.0,2 +37202,4,1.0,2,1.5286556482315063,203,1.0,2 +37203,4,1.0,2,1.6336543560028076,204,0.0,2 +37204,4,0.0,2,1.9096508026123047,205,0.0,2 +37205,4,1.0,2,2.0826492309570312,206,0.0,2 +37206,4,1.0,2,1.610654592514038,207,0.0,2 +37207,4,0.0,2,1.9036507606506348,208,1.0,2 +37208,4,0.0,2,1.5116558074951172,209,0.0,2 +37209,4,0.0,2,1.3176583051681519,210,1.0,2 +37210,4,0.0,2,1.7526527643203735,211,0.0,2 +37211,4,0.0,2,1.3276581764221191,212,0.0,2 +37212,4,0.0,2,2.1556525230407715,213,1.0,2 +37213,4,0.0,2,1.3716576099395752,214,0.0,2 +37214,4,0.0,2,1.9956495761871338,215,1.0,2 +37215,4,0.0,2,1.5576552152633667,216,1.0,2 +37216,4,0.0,2,1.842651605606079,217,0.0,2 +37217,4,0.0,2,2.4496662616729736,218,0.0,2 +37218,4,1.0,2,1.2906582355499268,219,1.0,2 +37219,4,1.0,2,1.474656343460083,220,1.0,2 +37220,4,1.0,2,1.6446541547775269,221,1.0,2 +37221,4,1.0,2,1.665653944015503,222,0.0,2 +37222,4,0.0,2,1.2486581802368164,223,0.0,2 +37223,4,1.0,2,2.317660093307495,224,0.0,2 +37224,4,0.0,2,1.853651523590088,225,1.0,2 +37225,4,0.0,2,1.1936579942703247,226,0.0,2 +37226,4,0.0,2,1.6486541032791138,227,1.0,2 +37227,4,0.0,2,1.302658200263977,228,1.0,2 +37228,4,0.0,2,1.3986573219299316,229,0.0,2 +37229,4,1.0,2,2.0976498126983643,230,0.0,2 +37230,4,1.0,2,1.3706576824188232,231,0.0,2 +37231,4,0.0,2,1.7356529235839844,232,0.0,2 +37232,4,1.0,2,2.1066503524780273,233,0.0,2 +37233,4,0.0,2,1.4426567554473877,234,0.0,2 +37234,4,1.0,2,1.4476566314697266,235,0.0,2 +37235,4,0.0,2,1.6246544122695923,236,1.0,2 +37236,4,0.0,2,1.2406580448150635,237,0.0,2 +37237,4,0.0,2,1.8306517601013184,238,0.0,2 +37238,4,0.0,2,1.4656563997268677,239,1.0,2 +37239,4,1.0,2,2.1056501865386963,240,1.0,2 +37240,4,1.0,2,1.7356529235839844,241,0.0,2 +37241,4,0.0,2,1.3326581716537476,242,1.0,2 +37242,4,0.0,2,1.3506579399108887,243,0.0,2 +37243,4,0.0,2,1.2536581754684448,244,0.0,2 +37244,4,0.0,2,1.9306504726409912,245,0.0,2 +37245,4,1.0,2,1.780652403831482,246,1.0,2 +37246,4,1.0,2,1.5726550817489624,247,1.0,2 +37247,4,1.0,2,1.563655138015747,248,0.0,2 +37248,4,1.0,2,2.253657102584839,249,1.0,2 +37249,4,1.0,2,1.357657790184021,250,1.0,2 +37250,4,1.0,2,1.3706576824188232,251,1.0,2 +37251,4,1.0,2,1.2676581144332886,252,1.0,2 +37252,4,1.0,2,1.4386568069458008,253,1.0,2 +37253,4,1.0,2,1.4336568117141724,254,0.0,2 +37254,4,0.0,2,1.523655652999878,255,1.0,2 +37255,4,0.0,2,1.3236582279205322,256,0.0,2 +37256,4,0.0,2,1.540655493736267,257,0.0,2 +37257,4,1.0,2,1.6716537475585938,258,1.0,2 +37258,4,1.0,2,1.703653335571289,259,1.0,2 +37259,4,1.0,2,1.4816561937332153,260,0.0,2 +37260,4,0.0,2,1.4066572189331055,261,0.0,2 +37261,4,1.0,2,1.6296544075012207,262,1.0,2 +37262,4,1.0,2,1.2666581869125366,263,1.0,2 +37263,4,1.0,2,1.2496581077575684,264,0.0,2 +37264,4,1.0,2,2.0126495361328125,265,0.0,2 +37265,4,0.0,2,1.7746524810791016,266,1.0,2 +37266,4,0.0,2,1.1896580457687378,267,0.0,2 +37267,4,1.0,2,1.657654047012329,268,1.0,2 +37268,4,0.0,2,1.846651554107666,269,1.0,2 +37269,4,0.0,2,1.9656500816345215,270,1.0,2 +37270,4,1.0,2,2.3796629905700684,271,0.0,2 +37271,4,0.0,2,1.3956573009490967,272,1.0,2 +37272,4,0.0,2,1.4106571674346924,273,1.0,2 +37273,4,0.0,2,1.453656554222107,274,0.0,2 +37274,4,0.0,2,1.6526540517807007,275,1.0,2 +37275,4,0.0,2,1.2876582145690918,276,0.0,2 +37276,4,0.0,2,1.2836581468582153,277,1.0,2 +37277,4,0.0,2,1.4616564512252808,278,1.0,2 +37278,4,0.0,2,1.6396541595458984,279,0.0,2 +37279,4,0.0,2,1.6646538972854614,280,1.0,2 +37280,4,0.0,2,1.6966534852981567,281,1.0,2 +37281,4,0.0,2,1.3936573266983032,282,0.0,2 +37282,4,0.0,2,1.2936582565307617,283,0.0,2 +37283,4,1.0,2,1.8276517391204834,284,0.0,2 +37284,4,0.0,2,1.6006547212600708,285,0.0,2 +37285,4,0.0,2,1.7926522493362427,286,1.0,2 +37286,4,0.0,2,1.8216519355773926,287,1.0,2 +37287,4,0.0,2,1.3986573219299316,288,0.0,2 +37288,4,0.0,2,1.5376554727554321,289,1.0,2 +37289,4,0.0,2,1.2206580638885498,290,0.0,2 +37290,4,0.0,2,1.5466554164886475,291,1.0,2 +37291,4,0.0,2,1.4036571979522705,292,1.0,2 +37292,4,0.0,2,1.2556581497192383,293,0.0,2 +37293,4,0.0,2,2.322660446166992,294,1.0,2 +37294,4,0.0,2,1.1916580200195312,295,1.0,2 +37295,4,0.0,2,1.3646577596664429,296,1.0,2 +37296,4,0.0,2,1.2406580448150635,297,0.0,2 +37297,4,0.0,2,1.659653902053833,298,1.0,2 +37298,4,0.0,2,1.275658130645752,299,1.0,2 +37299,4,0.0,2,1.3906574249267578,300,1.0,2 +37300,4,0.0,2,1.4916560649871826,301,0.0,2 +37301,4,0.0,2,1.3666577339172363,302,1.0,2 +37302,4,0.0,2,1.2596580982208252,303,0.0,2 +37303,4,1.0,2,1.4096571207046509,304,1.0,2 +37304,4,1.0,2,1.4296568632125854,305,1.0,2 +37305,4,1.0,2,1.8766511678695679,306,0.0,2 +37306,4,1.0,2,2.1286511421203613,307,1.0,2 +37307,4,1.0,2,1.2296581268310547,308,1.0,2 +37308,4,1.0,2,1.5286556482315063,309,0.0,2 +37309,4,0.0,2,1.96465003490448,310,0.0,2 +37310,4,0.0,2,1.2436580657958984,311,0.0,2 +37311,4,1.0,2,2.7146787643432617,312,1.0,2 +37312,4,1.0,2,1.5356554985046387,313,0.0,2 +37313,4,1.0,2,1.9136507511138916,314,1.0,2 +37314,4,1.0,2,1.592654824256897,315,1.0,2 +37315,4,0.0,2,1.1856579780578613,316,0.0,2 +37316,4,1.0,2,1.655653953552246,317,0.0,2 +37317,4,1.0,2,1.5656551122665405,318,0.0,2 +37318,4,0.0,2,1.2966582775115967,319,1.0,2 +37319,4,0.0,2,1.3256582021713257,320,0.0,2 +37320,4,1.0,2,1.4616564512252808,321,1.0,2 +37321,4,1.0,2,1.5906548500061035,322,1.0,2 +37322,4,1.0,2,1.4146571159362793,323,0.0,2 +37323,4,1.0,2,1.8606513738632202,324,0.0,2 +37324,4,0.0,2,1.3806575536727905,325,0.0,2 +37325,4,0.0,2,1.4816561937332153,326,1.0,2 +37326,4,0.0,2,1.1866580247879028,327,0.0,2 +37327,4,1.0,2,2.0066494941711426,328,1.0,2 +37328,4,1.0,2,1.247658133506775,329,1.0,2 +37329,4,1.0,2,1.4096571207046509,330,1.0,2 +37330,4,0.0,2,1.3176583051681519,331,1.0,2 +37331,4,0.0,2,1.401657223701477,332,0.0,2 +37332,4,1.0,2,1.853651523590088,333,1.0,2 +37333,4,1.0,2,1.2626581192016602,334,1.0,2 +37334,4,1.0,2,1.3256582021713257,335,0.0,2 +37335,4,0.0,2,1.887650966644287,336,0.0,2 +37336,4,1.0,2,1.4256569147109985,337,1.0,2 +37337,4,1.0,2,1.6936535835266113,338,1.0,2 +37338,4,1.0,2,1.5796549320220947,339,0.0,2 +37339,4,1.0,2,2.4796676635742188,340,0.0,2 +37340,4,1.0,2,2.252656936645508,341,1.0,2 +37341,4,1.0,2,1.2936582565307617,342,1.0,2 +37342,4,1.0,2,1.3876574039459229,343,1.0,2 +37343,4,1.0,2,1.3076581954956055,344,1.0,2 +37344,4,1.0,2,1.50165593624115,345,0.0,2 +37345,4,0.0,2,1.5786550045013428,346,0.0,2 +37346,4,0.0,2,2.0196492671966553,347,1.0,2 +37347,4,0.0,2,1.5556552410125732,348,0.0,2 +37348,4,1.0,2,1.943650245666504,349,1.0,2 +37349,4,1.0,2,1.9326504468917847,350,0.0,2 +37350,4,1.0,2,2.1046500205993652,351,1.0,2 +37351,4,1.0,2,1.5476553440093994,352,0.0,2 +37352,4,0.0,2,1.6376543045043945,353,0.0,2 +37353,4,0.0,2,1.688653588294983,354,1.0,2 +37354,4,0.0,2,1.334658145904541,355,0.0,2 +37355,4,0.0,2,1.705653429031372,356,0.0,2 +37356,4,0.0,2,1.1616579294204712,357,1.0,2 +37357,4,0.0,2,1.4336568117141724,358,0.0,2 +37358,4,0.0,2,1.3466579914093018,359,1.0,2 +37359,4,0.0,2,1.301658272743225,360,0.0,2 +37360,4,0.0,2,2.0526490211486816,361,1.0,2 +37361,4,0.0,2,1.311658263206482,362,0.0,2 +37362,4,0.0,2,1.7466528415679932,363,1.0,2 +37363,4,0.0,2,1.2216581106185913,364,0.0,2 +37364,4,1.0,2,1.7926522493362427,365,0.0,2 +37365,4,1.0,2,1.5126558542251587,366,1.0,2 +37366,4,1.0,2,1.8306517601013184,367,0.0,2 +37367,4,1.0,2,1.7596526145935059,368,1.0,2 +37368,4,1.0,2,1.299658179283142,369,1.0,2 +37369,4,1.0,2,1.211658000946045,370,1.0,2 +37370,4,1.0,2,1.47865629196167,371,0.0,2 +37371,4,1.0,2,1.3916573524475098,372,0.0,2 +37372,4,0.0,2,1.2916581630706787,373,0.0,2 +37373,4,0.0,2,1.7666525840759277,374,0.0,2 +37374,4,1.0,2,2.0676486492156982,375,1.0,2 +37375,4,1.0,2,2.1206507682800293,376,1.0,2 +37376,4,1.0,2,1.5506553649902344,377,1.0,2 +37377,4,1.0,2,1.383657455444336,378,1.0,2 +37378,4,1.0,2,1.4466567039489746,379,0.0,2 +37379,4,1.0,2,1.8566514253616333,380,0.0,2 +37380,4,0.0,2,2.343661308288574,381,0.0,2 +37381,4,1.0,2,1.6246544122695923,382,0.0,2 +37382,4,1.0,2,1.6346542835235596,383,1.0,2 +37383,4,0.0,2,1.4206570386886597,384,1.0,2 +37384,4,0.0,2,1.2896581888198853,385,0.0,2 +37385,4,1.0,2,1.2696582078933716,386,1.0,2 +37386,4,1.0,2,1.4636564254760742,387,1.0,2 +37387,4,1.0,2,1.6466541290283203,388,1.0,2 +37388,4,1.0,2,1.7946522235870361,389,1.0,2 +37389,4,1.0,2,1.5026559829711914,390,1.0,2 +37390,4,1.0,2,1.8806511163711548,391,1.0,2 +37391,4,1.0,2,1.3656576871871948,392,0.0,2 +37392,4,0.0,2,1.5506553649902344,393,1.0,2 +37393,4,0.0,2,1.5616551637649536,394,0.0,2 +37394,4,0.0,2,1.4206570386886597,395,0.0,2 +37395,4,1.0,2,2.1446518898010254,396,1.0,2 +37396,4,1.0,2,1.6036546230316162,397,1.0,2 +37397,4,1.0,2,1.515655755996704,398,1.0,2 +37398,4,1.0,2,1.3956573009490967,399,1.0,2 +37399,4,1.0,2,1.3646577596664429,400,1.0,2 +37400,4,1.0,2,1.7566527128219604,401,1.0,2 +37401,4,1.0,2,1.6216545104980469,402,1.0,2 +37402,4,1.0,2,1.3266582489013672,403,1.0,2 +37403,4,1.0,2,1.330658197402954,404,1.0,2 +37404,4,1.0,2,1.2576581239700317,405,0.0,2 +37405,4,0.0,2,1.6716537475585938,406,0.0,2 +37406,4,1.0,2,1.9536502361297607,407,1.0,2 +37407,4,1.0,2,1.361657738685608,408,1.0,2 +37408,4,1.0,2,1.2666581869125366,409,0.0,2 +37409,4,0.0,2,1.8046520948410034,410,0.0,2 +37410,4,0.0,2,1.7606526613235474,411,0.0,2 +37411,4,0.0,2,1.299658179283142,412,0.0,2 +37412,4,1.0,2,1.6716537475585938,413,0.0,2 +37413,4,1.0,2,1.5326555967330933,414,1.0,2 +37414,4,1.0,2,1.3806575536727905,415,1.0,2 +37415,4,1.0,2,1.4876561164855957,416,1.0,2 +37416,4,1.0,2,1.2206580638885498,417,1.0,2 +37417,4,1.0,2,1.2926582098007202,418,1.0,2 +37418,4,1.0,2,1.3856574296951294,419,0.0,2 +37419,4,1.0,2,1.330658197402954,420,1.0,2 +37420,4,1.0,2,1.5696550607681274,421,1.0,2 +37421,4,0.0,2,1.4896560907363892,422,1.0,2 +37422,4,0.0,2,1.2436580657958984,423,1.0,2 +37423,4,0.0,2,1.5796549320220947,424,1.0,2 +37424,4,0.0,2,1.2266581058502197,425,0.0,2 +37425,4,1.0,2,1.2216581106185913,426,0.0,2 +37426,4,0.0,2,2.0136494636535645,427,1.0,2 +37427,4,0.0,2,1.7846523523330688,428,1.0,2 +37428,4,0.0,2,1.9446502923965454,429,0.0,2 +37429,4,0.0,2,1.758652687072754,430,1.0,2 +37430,4,0.0,2,1.177657961845398,431,1.0,2 +37431,4,0.0,2,1.2656581401824951,432,1.0,2 +37432,4,0.0,2,1.4406567811965942,433,0.0,2 +37433,4,1.0,2,2.0006494522094727,434,1.0,2 +37434,4,1.0,2,1.5206557512283325,435,0.0,2 +37435,4,0.0,2,2.3346610069274902,436,0.0,2 +37436,4,0.0,2,1.383657455444336,437,0.0,2 +37437,4,1.0,2,2.31466007232666,438,1.0,2 +37438,4,1.0,2,1.5436553955078125,439,0.0,2 +37439,4,1.0,2,1.5086559057235718,440,0.0,2 +37440,4,0.0,2,1.7656526565551758,441,0.0,2 +37441,4,1.0,2,1.5216556787490845,442,1.0,2 +37442,4,1.0,2,1.7776525020599365,443,1.0,2 +37443,4,1.0,2,1.7906522750854492,444,0.0,2 +37444,4,0.0,2,2.0036494731903076,445,1.0,2 +37445,4,0.0,2,1.2906582355499268,446,1.0,2 +37446,4,0.0,2,1.1856579780578613,447,0.0,2 +37447,4,0.0,2,1.703653335571289,448,1.0,2 +37448,4,0.0,2,1.3176583051681519,449,1.0,2 +37449,4,0.0,2,1.26865816116333,450,1.0,2 +37450,4,0.0,2,1.361657738685608,451,0.0,2 +37451,4,0.0,2,1.1886579990386963,452,1.0,2 +37452,4,0.0,2,1.5916547775268555,453,0.0,2 +37453,4,1.0,2,1.6196544170379639,454,0.0,2 +37454,4,1.0,2,1.7946522235870361,455,1.0,2 +37455,4,1.0,2,1.5346555709838867,456,1.0,2 +37456,4,1.0,2,1.2876582145690918,457,1.0,2 +37457,4,1.0,2,1.5476553440093994,458,0.0,2 +37458,4,0.0,2,1.9706499576568604,459,0.0,2 +37459,4,0.0,2,2.2216556072235107,460,1.0,2 +37460,4,0.0,2,1.6726537942886353,461,1.0,2 +37461,4,0.0,2,1.241658091545105,462,1.0,2 +37462,4,0.0,2,1.563655138015747,463,0.0,2 +37463,4,0.0,2,1.7786524295806885,464,1.0,2 +37464,4,0.0,2,1.1616579294204712,465,1.0,2 +37465,4,0.0,2,1.6086546182632446,466,0.0,2 +37466,4,0.0,2,1.26865816116333,467,0.0,2 +37467,4,1.0,2,1.8606513738632202,468,1.0,2 +37468,4,1.0,2,1.3686577081680298,469,1.0,2 +37469,4,1.0,2,1.456656575202942,470,1.0,2 +37470,4,1.0,2,1.338658094406128,471,1.0,2 +37471,4,1.0,2,1.3996572494506836,472,1.0,2 +37472,4,1.0,2,1.4816561937332153,473,0.0,2 +37473,4,1.0,2,2.1906542778015137,474,0.0,2 +37474,4,0.0,2,1.2606581449508667,475,1.0,2 +37475,4,0.0,2,1.4466567039489746,476,0.0,2 +37476,4,0.0,2,1.2796581983566284,477,0.0,2 +37477,4,1.0,2,1.5096558332443237,478,1.0,2 +37478,4,1.0,2,1.2126580476760864,479,1.0,2 +37479,4,1.0,2,1.3186582326889038,480,1.0,2 +37480,4,1.0,2,1.3666577339172363,481,0.0,2 +37481,4,1.0,2,1.680653691291809,482,1.0,2 +37482,4,1.0,2,1.6746537685394287,483,1.0,2 +37483,4,1.0,2,1.7526527643203735,484,1.0,2 +37484,4,1.0,2,1.2456581592559814,485,1.0,2 +37485,4,1.0,2,1.3896573781967163,486,1.0,2 +37486,4,1.0,2,1.3896573781967163,487,0.0,2 +37487,4,1.0,2,1.751652717590332,488,1.0,2 +37488,4,1.0,2,1.237658143043518,489,1.0,2 +37489,4,1.0,2,1.751652717590332,490,0.0,2 +37490,4,0.0,2,1.3646577596664429,491,0.0,2 +37491,4,0.0,2,1.8336517810821533,492,1.0,2 +37492,4,0.0,2,1.3496578931808472,493,1.0,2 +37493,4,0.0,2,1.3896573781967163,494,0.0,2 +37494,4,1.0,2,1.2646582126617432,495,0.0,2 +37495,4,0.0,2,1.2916581630706787,496,1.0,2 +37496,4,0.0,2,1.357657790184021,497,0.0,2 +37497,4,0.0,2,1.2156580686569214,498,1.0,2 +37498,4,0.0,2,1.3216582536697388,499,0.0,2 +37499,4,1.0,2,2.4126644134521484,500,0.0,2 +37500,5,0.0,0,1.6236664056777954,1,0.0,2 +37501,5,1.0,0,2.339672803878784,2,1.0,2 +37502,5,0.0,0,1.4176690578460693,3,0.0,2 +37503,5,1.0,0,1.4646683931350708,4,1.0,2 +37504,5,1.0,0,1.6506659984588623,5,1.0,2 +37505,5,1.0,0,2.329672336578369,6,1.0,2 +37506,5,1.0,0,1.4656684398651123,7,0.0,2 +37507,5,0.0,0,1.64366614818573,8,1.0,2 +37508,5,0.0,0,1.503667950630188,9,0.0,2 +37509,5,0.0,0,1.9976615905761719,10,0.0,2 +37510,5,1.0,0,1.521667718887329,11,0.0,2 +37511,5,0.0,0,1.5116678476333618,12,0.0,2 +37512,5,0.0,0,2.1226625442504883,13,0.0,2 +37513,5,1.0,0,2.1676647663116455,14,1.0,2 +37514,5,0.0,0,1.3846694231033325,15,0.0,2 +37515,5,1.0,0,1.5916668176651,16,0.0,2 +37516,5,0.0,0,1.6416661739349365,17,0.0,2 +37517,5,0.0,0,1.919662594795227,18,0.0,2 +37518,5,0.0,0,1.7886643409729004,19,0.0,2 +37519,5,0.0,0,1.7636646032333374,20,0.0,2 +37520,5,0.0,0,1.6746656894683838,21,0.0,2 +37521,5,0.0,0,2.4006757736206055,22,0.0,2 +37522,5,0.0,0,1.274670124053955,23,0.0,2 +37523,5,0.0,0,1.2016699314117432,24,0.0,2 +37524,5,1.0,0,1.5246676206588745,25,1.0,2 +37525,5,1.0,0,1.622666358947754,26,1.0,2 +37526,5,0.0,0,1.4626684188842773,27,1.0,2 +37527,5,0.0,0,1.5896668434143066,28,0.0,2 +37528,5,1.0,0,1.8306636810302734,29,0.0,2 +37529,5,1.0,0,2.540682315826416,30,1.0,2 +37530,5,1.0,0,1.2766700983047485,31,1.0,2 +37531,5,1.0,0,1.3846694231033325,32,0.0,2 +37532,5,0.0,0,1.764664649963379,33,0.0,2 +37533,5,1.0,0,1.6256663799285889,34,1.0,2 +37534,5,1.0,0,1.3446699380874634,35,1.0,2 +37535,5,1.0,0,1.4946680068969727,36,1.0,2 +37536,5,0.0,0,1.809664011001587,37,0.0,2 +37537,5,1.0,0,1.525667667388916,38,1.0,2 +37538,5,1.0,0,1.6786656379699707,39,1.0,2 +37539,5,1.0,0,1.6906654834747314,40,1.0,2 +37540,5,1.0,0,1.710665225982666,41,1.0,2 +37541,5,1.0,0,1.1856698989868164,42,1.0,2 +37542,5,1.0,0,1.7766644954681396,43,1.0,2 +37543,5,1.0,0,1.4626684188842773,44,1.0,2 +37544,5,0.0,0,1.595666766166687,45,0.0,2 +37545,5,0.0,0,1.7076653242111206,46,1.0,2 +37546,5,1.0,0,1.7286651134490967,47,0.0,2 +37547,5,0.0,0,2.1106619834899902,48,0.0,2 +37548,5,0.0,0,1.4016692638397217,49,0.0,2 +37549,5,0.0,0,1.5246676206588745,50,0.0,2 +37550,5,0.0,0,1.8226637840270996,51,0.0,2 +37551,5,0.0,0,1.8586633205413818,52,0.0,2 +37552,5,1.0,0,1.7976641654968262,53,0.0,2 +37553,5,1.0,0,1.521667718887329,54,1.0,2 +37554,5,1.0,0,1.5176677703857422,55,1.0,2 +37555,5,1.0,0,1.269670009613037,56,1.0,2 +37556,5,1.0,0,1.8376636505126953,57,1.0,2 +37557,5,0.0,0,1.338670015335083,58,0.0,2 +37558,5,1.0,0,1.5156677961349487,59,1.0,2 +37559,5,1.0,0,1.3136701583862305,60,0.0,2 +37560,5,1.0,0,1.8606634140014648,61,1.0,2 +37561,5,1.0,0,1.5836669206619263,62,1.0,2 +37562,5,1.0,0,1.4036692380905151,63,1.0,2 +37563,5,1.0,0,1.6976654529571533,64,1.0,2 +37564,5,1.0,0,1.4766682386398315,65,1.0,2 +37565,5,0.0,0,1.2556700706481934,66,0.0,2 +37566,5,0.0,0,1.4366687536239624,67,0.0,2 +37567,5,0.0,0,1.5336675643920898,68,0.0,2 +37568,5,1.0,0,1.5156677961349487,69,1.0,2 +37569,5,1.0,0,1.7326650619506836,70,1.0,2 +37570,5,1.0,0,1.382669448852539,71,0.0,2 +37571,5,1.0,0,1.7076653242111206,72,1.0,2 +37572,5,1.0,0,1.6836656332015991,73,0.0,2 +37573,5,1.0,0,1.6486661434173584,74,1.0,2 +37574,5,1.0,0,1.4756683111190796,75,1.0,2 +37575,5,1.0,0,1.4856681823730469,76,1.0,2 +37576,5,1.0,0,1.4106690883636475,77,1.0,2 +37577,5,1.0,0,1.9996615648269653,78,1.0,2 +37578,5,0.0,0,1.2266700267791748,79,1.0,2 +37579,5,0.0,0,1.411669135093689,80,0.0,2 +37580,5,1.0,0,1.8366637229919434,81,1.0,2 +37581,5,1.0,0,1.2266700267791748,82,1.0,2 +37582,5,1.0,0,1.4536685943603516,83,1.0,2 +37583,5,0.0,0,1.4476686716079712,84,0.0,2 +37584,5,1.0,0,1.6106665134429932,85,1.0,2 +37585,5,1.0,0,1.669665813446045,86,1.0,2 +37586,5,1.0,0,1.3546698093414307,87,1.0,2 +37587,5,1.0,0,1.897662878036499,88,1.0,2 +37588,5,1.0,0,1.8216638565063477,89,1.0,2 +37589,5,1.0,0,2.0846610069274902,90,1.0,2 +37590,5,1.0,0,2.1416635513305664,91,1.0,2 +37591,5,1.0,0,1.24167001247406,92,1.0,2 +37592,5,0.0,0,1.570667028427124,93,0.0,2 +37593,5,1.0,0,1.311670184135437,94,1.0,2 +37594,5,1.0,0,1.3666696548461914,95,1.0,2 +37595,5,1.0,0,1.341670036315918,96,1.0,2 +37596,5,1.0,0,1.7496647834777832,97,1.0,2 +37597,5,1.0,0,1.4146690368652344,98,1.0,2 +37598,5,1.0,0,1.8286638259887695,99,1.0,2 +37599,5,0.0,0,1.850663423538208,100,0.0,2 +37600,5,1.0,0,1.411669135093689,101,1.0,2 +37601,5,0.0,0,1.5066678524017334,102,0.0,2 +37602,5,1.0,0,1.618666410446167,103,0.0,2 +37603,5,0.0,0,1.5496673583984375,104,0.0,2 +37604,5,1.0,0,1.5596672296524048,105,1.0,2 +37605,5,1.0,0,1.3516699075698853,106,1.0,2 +37606,5,1.0,0,1.3256702423095703,107,1.0,2 +37607,5,1.0,0,2.307671308517456,108,1.0,2 +37608,5,1.0,0,1.4486685991287231,109,1.0,2 +37609,5,1.0,0,1.5926668643951416,110,1.0,2 +37610,5,1.0,0,2.1776652336120605,111,1.0,2 +37611,5,1.0,0,1.7266650199890137,112,0.0,2 +37612,5,1.0,0,2.2186670303344727,113,1.0,2 +37613,5,1.0,0,1.3796695470809937,114,1.0,2 +37614,5,1.0,0,1.5726670026779175,115,1.0,2 +37615,5,1.0,0,1.2976701259613037,116,1.0,2 +37616,5,1.0,0,1.4146690368652344,117,1.0,2 +37617,5,1.0,0,1.624666452407837,118,1.0,2 +37618,5,1.0,0,1.4106690883636475,119,1.0,2 +37619,5,1.0,0,1.761664628982544,120,0.0,2 +37620,5,0.0,0,2.1116621494293213,121,0.0,2 +37621,5,0.0,0,2.341672897338867,122,0.0,2 +37622,5,0.0,0,1.760664701461792,123,0.0,2 +37623,5,0.0,0,1.4066691398620605,124,0.0,2 +37624,5,0.0,0,1.4426686763763428,125,0.0,2 +37625,5,0.0,0,1.3616697788238525,126,0.0,2 +37626,5,0.0,0,1.7786643505096436,127,0.0,2 +37627,5,0.0,0,1.4906680583953857,128,0.0,2 +37628,5,0.0,0,2.4536781311035156,129,0.0,2 +37629,5,0.0,0,2.501680374145508,130,0.0,2 +37630,5,1.0,0,1.4266688823699951,131,1.0,2 +37631,5,1.0,0,1.8306636810302734,132,1.0,2 +37632,5,1.0,0,1.5606671571731567,133,1.0,2 +37633,5,1.0,0,1.7756644487380981,134,1.0,2 +37634,5,1.0,0,1.5366674661636353,135,1.0,2 +37635,5,1.0,0,1.624666452407837,136,1.0,2 +37636,5,1.0,0,1.5946667194366455,137,1.0,2 +37637,5,1.0,0,1.4226689338684082,138,1.0,2 +37638,5,1.0,0,1.5536673069000244,139,1.0,2 +37639,5,1.0,0,1.7706644535064697,140,1.0,2 +37640,5,1.0,0,1.3296701908111572,141,1.0,2 +37641,5,1.0,0,1.9366624355316162,142,1.0,2 +37642,5,1.0,0,1.3996692895889282,143,1.0,2 +37643,5,1.0,0,2.078660488128662,144,1.0,2 +37644,5,0.0,0,1.6836656332015991,145,0.0,2 +37645,5,1.0,0,2.575683832168579,146,1.0,2 +37646,5,1.0,0,1.42966890335083,147,1.0,2 +37647,5,1.0,0,1.3796695470809937,148,1.0,2 +37648,5,1.0,0,1.8576633930206299,149,1.0,2 +37649,5,1.0,0,1.269670009613037,150,1.0,2 +37650,5,1.0,0,2.0726606845855713,151,1.0,2 +37651,5,0.0,0,2.1376633644104004,152,0.0,2 +37652,5,1.0,0,1.7696645259857178,153,0.0,2 +37653,5,1.0,0,1.6936655044555664,154,1.0,2 +37654,5,1.0,0,1.5016679763793945,155,1.0,2 +37655,5,1.0,0,1.4456686973571777,156,1.0,2 +37656,5,1.0,0,1.42966890335083,157,1.0,2 +37657,5,1.0,0,1.5786669254302979,158,1.0,2 +37658,5,1.0,0,1.4286688566207886,159,1.0,2 +37659,5,1.0,0,1.3886693716049194,160,1.0,2 +37660,5,1.0,0,1.7596646547317505,161,1.0,2 +37661,5,1.0,0,1.5876668691635132,162,0.0,2 +37662,5,0.0,0,1.3356701135635376,163,0.0,2 +37663,5,0.0,0,2.239668130874634,164,1.0,2 +37664,5,0.0,0,1.250670075416565,165,0.0,2 +37665,5,0.0,0,1.5856668949127197,166,0.0,2 +37666,5,0.0,0,1.4316688776016235,167,0.0,2 +37667,5,0.0,0,1.2336699962615967,168,0.0,2 +37668,5,0.0,0,1.3996692895889282,169,0.0,2 +37669,5,1.0,0,1.7996641397476196,170,1.0,2 +37670,5,1.0,0,1.3206701278686523,171,0.0,2 +37671,5,0.0,0,1.5336675643920898,172,0.0,2 +37672,5,0.0,0,1.5156677961349487,173,0.0,2 +37673,5,0.0,0,1.904662847518921,174,0.0,2 +37674,5,0.0,0,1.3236701488494873,175,0.0,2 +37675,5,1.0,0,1.4836682081222534,176,0.0,2 +37676,5,0.0,0,1.7696645259857178,177,0.0,2 +37677,5,0.0,0,1.573667049407959,178,0.0,2 +37678,5,0.0,0,1.712665319442749,179,0.0,2 +37679,5,0.0,0,1.4946680068969727,180,0.0,2 +37680,5,0.0,0,1.4986679553985596,181,0.0,2 +37681,5,1.0,0,1.2266700267791748,182,1.0,2 +37682,5,0.0,0,1.2546700239181519,183,0.0,2 +37683,5,1.0,0,1.3046700954437256,184,0.0,2 +37684,5,1.0,0,1.7526648044586182,185,1.0,2 +37685,5,1.0,0,1.4166690111160278,186,1.0,2 +37686,5,0.0,0,1.3316701650619507,187,0.0,2 +37687,5,1.0,0,1.574666976928711,188,1.0,2 +37688,5,1.0,0,1.669665813446045,189,1.0,2 +37689,5,1.0,0,1.6776657104492188,190,1.0,2 +37690,5,1.0,0,1.9256625175476074,191,1.0,2 +37691,5,1.0,0,1.7736644744873047,192,1.0,2 +37692,5,1.0,0,1.9346623420715332,193,1.0,2 +37693,5,1.0,0,1.6946654319763184,194,0.0,2 +37694,5,1.0,0,2.0926613807678223,195,1.0,2 +37695,5,1.0,0,1.850663423538208,196,1.0,2 +37696,5,1.0,0,1.6826655864715576,197,1.0,2 +37697,5,1.0,0,1.284670114517212,198,1.0,2 +37698,5,1.0,0,1.4476686716079712,199,1.0,2 +37699,5,1.0,0,1.4276689291000366,200,1.0,2 +37700,5,1.0,0,1.34266996383667,201,1.0,2 +37701,5,1.0,0,1.5946667194366455,202,1.0,2 +37702,5,1.0,0,1.5886669158935547,203,1.0,2 +37703,5,1.0,0,1.551667332649231,204,1.0,2 +37704,5,1.0,0,1.6716657876968384,205,1.0,2 +37705,5,1.0,0,1.4506685733795166,206,1.0,2 +37706,5,1.0,0,2.248668670654297,207,1.0,2 +37707,5,1.0,0,1.5356675386428833,208,1.0,2 +37708,5,1.0,0,1.8926630020141602,209,1.0,2 +37709,5,0.0,0,1.3236701488494873,210,0.0,2 +37710,5,1.0,0,1.7826642990112305,211,1.0,2 +37711,5,1.0,0,1.7306649684906006,212,0.0,2 +37712,5,0.0,0,1.8786630630493164,213,0.0,2 +37713,5,1.0,0,1.8636633157730103,214,1.0,2 +37714,5,1.0,0,1.9136626720428467,215,1.0,2 +37715,5,1.0,0,1.7496647834777832,216,1.0,2 +37716,5,1.0,0,1.5916668176651,217,1.0,2 +37717,5,1.0,0,1.5056679248809814,218,1.0,2 +37718,5,1.0,0,1.2956701517105103,219,1.0,2 +37719,5,0.0,0,2.0476608276367188,220,0.0,2 +37720,5,1.0,0,1.9266624450683594,221,1.0,2 +37721,5,0.0,0,1.9216625690460205,222,0.0,2 +37722,5,1.0,0,1.9256625175476074,223,1.0,2 +37723,5,1.0,0,1.456668496131897,224,1.0,2 +37724,5,1.0,0,1.2566699981689453,225,1.0,2 +37725,5,1.0,0,1.3196702003479004,226,0.0,2 +37726,5,1.0,0,1.7466647624969482,227,1.0,2 +37727,5,1.0,0,1.4506685733795166,228,1.0,2 +37728,5,1.0,0,1.9706618785858154,229,1.0,2 +37729,5,1.0,0,1.4476686716079712,230,1.0,2 +37730,5,1.0,0,2.2226672172546387,231,1.0,2 +37731,5,1.0,0,1.4016692638397217,232,1.0,2 +37732,5,1.0,0,1.4226689338684082,233,0.0,2 +37733,5,1.0,0,2.0956614017486572,234,1.0,2 +37734,5,1.0,0,1.455668568611145,235,0.0,2 +37735,5,1.0,0,1.5436674356460571,236,1.0,2 +37736,5,1.0,0,1.4906680583953857,237,1.0,2 +37737,5,1.0,0,1.4606684446334839,238,1.0,2 +37738,5,1.0,0,1.949662208557129,239,1.0,2 +37739,5,1.0,0,1.5286675691604614,240,0.0,2 +37740,5,0.0,0,1.412669062614441,241,1.0,2 +37741,5,0.0,0,1.1726698875427246,242,0.0,2 +37742,5,1.0,0,1.6756657361984253,243,1.0,2 +37743,5,1.0,0,1.9656620025634766,244,1.0,2 +37744,5,1.0,0,1.211669921875,245,1.0,2 +37745,5,0.0,0,1.5616672039031982,246,0.0,2 +37746,5,1.0,0,1.2946701049804688,247,1.0,2 +37747,5,1.0,0,1.6356662511825562,248,1.0,2 +37748,5,1.0,0,1.4436687231063843,249,1.0,2 +37749,5,1.0,0,1.7416648864746094,250,1.0,2 +37750,5,1.0,0,1.5146677494049072,251,1.0,2 +37751,5,1.0,0,1.1976699829101562,252,0.0,2 +37752,5,1.0,0,2.1996662616729736,253,1.0,2 +37753,5,1.0,0,1.4166690111160278,254,1.0,2 +37754,5,1.0,0,1.8366637229919434,255,1.0,2 +37755,5,1.0,0,1.2716701030731201,256,1.0,2 +37756,5,1.0,0,1.7726645469665527,257,0.0,2 +37757,5,0.0,0,1.305670142173767,258,1.0,2 +37758,5,0.0,0,1.758664608001709,259,0.0,2 +37759,5,0.0,0,1.3306701183319092,260,0.0,2 +37760,5,0.0,0,1.6586658954620361,261,0.0,2 +37761,5,1.0,0,2.09066104888916,262,1.0,2 +37762,5,1.0,0,1.8176639080047607,263,1.0,2 +37763,5,0.0,0,1.548667311668396,264,0.0,2 +37764,5,1.0,0,1.2616701126098633,265,1.0,2 +37765,5,1.0,0,1.311670184135437,266,1.0,2 +37766,5,1.0,0,1.4036692380905151,267,1.0,2 +37767,5,0.0,0,1.2306699752807617,268,0.0,2 +37768,5,1.0,0,1.8266637325286865,269,1.0,2 +37769,5,0.0,0,1.3946692943572998,270,0.0,2 +37770,5,1.0,0,1.7896642684936523,271,1.0,2 +37771,5,1.0,0,1.3136701583862305,272,1.0,2 +37772,5,1.0,0,1.7046654224395752,273,1.0,2 +37773,5,1.0,0,1.3306701183319092,274,1.0,2 +37774,5,1.0,0,1.8776631355285645,275,1.0,2 +37775,5,1.0,0,1.3666696548461914,276,1.0,2 +37776,5,1.0,0,1.8356636762619019,277,1.0,2 +37777,5,1.0,0,1.459668517112732,278,1.0,2 +37778,5,1.0,0,1.7236651182174683,279,1.0,2 +37779,5,1.0,0,1.5326675176620483,280,1.0,2 +37780,5,1.0,0,1.5966668128967285,281,1.0,2 +37781,5,1.0,0,1.503667950630188,282,1.0,2 +37782,5,1.0,0,1.385669469833374,283,1.0,2 +37783,5,1.0,0,1.4326688051223755,284,1.0,2 +37784,5,1.0,0,1.1766698360443115,285,1.0,2 +37785,5,1.0,0,1.4496686458587646,286,0.0,2 +37786,5,0.0,0,2.4646787643432617,287,0.0,2 +37787,5,0.0,0,1.5596672296524048,288,0.0,2 +37788,5,1.0,0,2.1606645584106445,289,1.0,2 +37789,5,1.0,0,1.988661766052246,290,1.0,2 +37790,5,1.0,0,1.4886680841445923,291,1.0,2 +37791,5,1.0,0,1.434668779373169,292,1.0,2 +37792,5,1.0,0,1.3306701183319092,293,1.0,2 +37793,5,1.0,0,1.3526698350906372,294,1.0,2 +37794,5,1.0,0,1.2426700592041016,295,1.0,2 +37795,5,1.0,0,1.5066678524017334,296,1.0,2 +37796,5,1.0,0,1.2976701259613037,297,1.0,2 +37797,5,1.0,0,1.4586684703826904,298,1.0,2 +37798,5,0.0,0,1.4266688823699951,299,0.0,2 +37799,5,0.0,0,1.434668779373169,300,0.0,2 +37800,5,1.0,0,1.526667594909668,301,1.0,2 +37801,5,1.0,0,1.2876701354980469,302,1.0,2 +37802,5,1.0,0,1.3026701211929321,303,1.0,2 +37803,5,1.0,0,1.5636671781539917,304,0.0,2 +37804,5,1.0,0,1.8556634187698364,305,0.0,2 +37805,5,0.0,0,1.3746695518493652,306,1.0,2 +37806,5,0.0,0,1.4926680326461792,307,0.0,2 +37807,5,0.0,0,1.8116639852523804,308,1.0,2 +37808,5,0.0,0,1.7306649684906006,309,0.0,2 +37809,5,0.0,0,1.3216701745986938,310,0.0,2 +37810,5,0.0,0,1.5166677236557007,311,0.0,2 +37811,5,0.0,0,1.2156699895858765,312,0.0,2 +37812,5,0.0,0,1.2336699962615967,313,0.0,2 +37813,5,0.0,0,2.0976614952087402,314,0.0,2 +37814,5,0.0,0,2.1666646003723145,315,0.0,2 +37815,5,1.0,0,1.66666579246521,316,1.0,2 +37816,5,1.0,0,1.4936680793762207,317,1.0,2 +37817,5,1.0,0,1.4536685943603516,318,1.0,2 +37818,5,0.0,0,1.4056692123413086,319,1.0,2 +37819,5,0.0,0,1.2806700468063354,320,0.0,2 +37820,5,1.0,0,1.9296624660491943,321,1.0,2 +37821,5,1.0,0,1.6856656074523926,322,1.0,2 +37822,5,0.0,0,2.4266767501831055,323,0.0,2 +37823,5,1.0,0,1.3536698818206787,324,1.0,2 +37824,5,1.0,0,2.2036664485931396,325,1.0,2 +37825,5,1.0,0,1.1946699619293213,326,1.0,2 +37826,5,1.0,0,1.739664912223816,327,1.0,2 +37827,5,1.0,0,1.96766197681427,328,1.0,2 +37828,5,1.0,0,1.3836694955825806,329,1.0,2 +37829,5,1.0,0,1.4006692171096802,330,0.0,2 +37830,5,0.0,0,1.7776644229888916,331,0.0,2 +37831,5,1.0,0,1.5856668949127197,332,1.0,2 +37832,5,1.0,0,1.3506698608398438,333,0.0,2 +37833,5,0.0,0,1.3476699590682983,334,0.0,2 +37834,5,0.0,0,1.6786656379699707,335,1.0,2 +37835,5,0.0,0,1.4726682901382446,336,0.0,2 +37836,5,0.0,0,1.3526698350906372,337,0.0,2 +37837,5,1.0,0,1.3926693201065063,338,1.0,2 +37838,5,1.0,0,1.5966668128967285,339,1.0,2 +37839,5,1.0,0,1.5436674356460571,340,1.0,2 +37840,5,1.0,0,1.5946667194366455,341,0.0,2 +37841,5,0.0,0,1.2856700420379639,342,1.0,2 +37842,5,0.0,0,1.521667718887329,343,0.0,2 +37843,5,0.0,0,1.2256699800491333,344,0.0,2 +37844,5,0.0,0,1.8696632385253906,345,0.0,2 +37845,5,0.0,0,1.6776657104492188,346,1.0,2 +37846,5,0.0,0,1.4106690883636475,347,0.0,2 +37847,5,1.0,0,1.5636671781539917,348,1.0,2 +37848,5,1.0,0,1.6516660451889038,349,1.0,2 +37849,5,1.0,0,1.3276702165603638,350,1.0,2 +37850,5,1.0,0,2.0956614017486572,351,1.0,2 +37851,5,1.0,0,1.503667950630188,352,1.0,2 +37852,5,1.0,0,1.5586671829223633,353,1.0,2 +37853,5,1.0,0,1.3786695003509521,354,1.0,2 +37854,5,0.0,0,1.9606621265411377,355,0.0,2 +37855,5,1.0,0,1.315670132637024,356,1.0,2 +37856,5,1.0,0,1.4696683883666992,357,1.0,2 +37857,5,1.0,0,2.0626606941223145,358,1.0,2 +37858,5,0.0,0,2.2306675910949707,359,0.0,2 +37859,5,1.0,0,1.478668212890625,360,1.0,2 +37860,5,1.0,0,1.7696645259857178,361,0.0,2 +37861,5,1.0,0,2.1776652336120605,362,1.0,2 +37862,5,1.0,0,1.6536660194396973,363,1.0,2 +37863,5,1.0,0,1.434668779373169,364,1.0,2 +37864,5,1.0,0,1.389669418334961,365,1.0,2 +37865,5,1.0,0,1.7186651229858398,366,1.0,2 +37866,5,1.0,0,1.6276663541793823,367,1.0,2 +37867,5,0.0,0,1.4386687278747559,368,1.0,2 +37868,5,0.0,0,2.6126856803894043,369,0.0,2 +37869,5,1.0,0,2.0066614151000977,370,1.0,2 +37870,5,1.0,0,1.7386648654937744,371,1.0,2 +37871,5,1.0,0,1.3986692428588867,372,1.0,2 +37872,5,1.0,0,1.3766695261001587,373,0.0,2 +37873,5,1.0,0,2.271669626235962,374,0.0,2 +37874,5,0.0,0,1.6346662044525146,375,0.0,2 +37875,5,0.0,0,2.044661045074463,376,0.0,2 +37876,5,0.0,0,1.4466686248779297,377,0.0,2 +37877,5,0.0,0,1.3176701068878174,378,0.0,2 +37878,5,0.0,0,1.2236700057983398,379,0.0,2 +37879,5,1.0,0,2.1556642055511475,380,1.0,2 +37880,5,1.0,0,1.337670087814331,381,0.0,2 +37881,5,0.0,0,1.503667950630188,382,0.0,2 +37882,5,0.0,0,1.6606659889221191,383,0.0,2 +37883,5,1.0,0,1.7326650619506836,384,0.0,2 +37884,5,1.0,0,1.7296650409698486,385,1.0,2 +37885,5,1.0,0,1.2456700801849365,386,1.0,2 +37886,5,1.0,0,2.0156612396240234,387,1.0,2 +37887,5,1.0,0,1.6636658906936646,388,1.0,2 +37888,5,0.0,0,1.1876698732376099,389,1.0,2 +37889,5,1.0,0,2.0646607875823975,390,1.0,2 +37890,5,1.0,0,1.8436635732650757,391,1.0,2 +37891,5,0.0,0,1.3786695003509521,392,0.0,2 +37892,5,1.0,0,1.2996701002120972,393,1.0,2 +37893,5,1.0,0,1.6706657409667969,394,1.0,2 +37894,5,1.0,0,1.6966655254364014,395,1.0,2 +37895,5,1.0,0,1.437668800354004,396,0.0,2 +37896,5,0.0,0,1.7076653242111206,397,0.0,2 +37897,5,1.0,0,1.6506659984588623,398,1.0,2 +37898,5,1.0,0,1.7076653242111206,399,1.0,2 +37899,5,1.0,0,1.5556672811508179,400,1.0,2 +37900,5,1.0,0,1.6806657314300537,401,1.0,2 +37901,5,1.0,0,1.3076701164245605,402,0.0,2 +37902,5,1.0,0,1.6126666069030762,403,1.0,2 +37903,5,1.0,0,1.7506647109985352,404,0.0,2 +37904,5,0.0,0,1.3496699333190918,405,0.0,2 +37905,5,0.0,0,1.5416674613952637,406,0.0,2 +37906,5,0.0,0,1.2876701354980469,407,1.0,2 +37907,5,0.0,0,1.1886699199676514,408,0.0,2 +37908,5,1.0,0,1.8266637325286865,409,1.0,2 +37909,5,1.0,0,1.570667028427124,410,1.0,2 +37910,5,1.0,0,1.4016692638397217,411,1.0,2 +37911,5,1.0,0,1.7386648654937744,412,1.0,2 +37912,5,1.0,0,2.07766056060791,413,1.0,2 +37913,5,1.0,0,1.3886693716049194,414,1.0,2 +37914,5,1.0,0,1.712665319442749,415,1.0,2 +37915,5,1.0,0,1.3996692895889282,416,1.0,2 +37916,5,1.0,0,1.7216651439666748,417,1.0,2 +37917,5,0.0,0,1.389669418334961,418,0.0,2 +37918,5,1.0,0,2.3406729698181152,419,1.0,2 +37919,5,1.0,0,2.333672523498535,420,0.0,2 +37920,5,0.0,0,1.5796669721603394,421,0.0,2 +37921,5,1.0,0,1.6386661529541016,422,1.0,2 +37922,5,1.0,0,1.367669701576233,423,1.0,2 +37923,5,1.0,0,1.2406699657440186,424,1.0,2 +37924,5,1.0,0,1.5846669673919678,425,1.0,2 +37925,5,1.0,0,2.1336631774902344,426,1.0,2 +37926,5,1.0,0,1.5406674146652222,427,1.0,2 +37927,5,1.0,0,2.1016616821289062,428,1.0,2 +37928,5,1.0,0,1.6256663799285889,429,1.0,2 +37929,5,1.0,0,2.0566608905792236,430,0.0,2 +37930,5,0.0,0,1.4386687278747559,431,0.0,2 +37931,5,1.0,0,1.5926668643951416,432,1.0,2 +37932,5,1.0,0,1.6896655559539795,433,1.0,2 +37933,5,1.0,0,1.4946680068969727,434,1.0,2 +37934,5,1.0,0,1.6556659936904907,435,1.0,2 +37935,5,1.0,0,1.2896701097488403,436,1.0,2 +37936,5,1.0,0,1.9996615648269653,437,1.0,2 +37937,5,1.0,0,1.3656697273254395,438,1.0,2 +37938,5,1.0,0,1.4586684703826904,439,1.0,2 +37939,5,0.0,0,2.2136669158935547,440,0.0,2 +37940,5,0.0,0,1.3286701440811157,441,0.0,2 +37941,5,1.0,0,1.846663475036621,442,1.0,2 +37942,5,1.0,0,1.434668779373169,443,1.0,2 +37943,5,1.0,0,2.0716605186462402,444,1.0,2 +37944,5,1.0,0,2.102661609649658,445,1.0,2 +37945,5,1.0,0,1.272670030593872,446,1.0,2 +37946,5,1.0,0,1.5056679248809814,447,1.0,2 +37947,5,1.0,0,1.3296701908111572,448,1.0,2 +37948,5,1.0,0,1.3366700410842896,449,1.0,2 +37949,5,0.0,0,1.4316688776016235,450,0.0,2 +37950,5,1.0,0,1.758664608001709,451,1.0,2 +37951,5,1.0,0,1.566667079925537,452,1.0,2 +37952,5,1.0,0,1.809664011001587,453,1.0,2 +37953,5,1.0,0,1.3256702423095703,454,1.0,2 +37954,5,1.0,0,1.4646683931350708,455,1.0,2 +37955,5,1.0,0,1.6026666164398193,456,1.0,2 +37956,5,1.0,0,2.0056614875793457,457,1.0,2 +37957,5,1.0,0,1.2096699476242065,458,1.0,2 +37958,5,1.0,0,1.5566672086715698,459,1.0,2 +37959,5,1.0,0,1.3446699380874634,460,1.0,2 +37960,5,1.0,0,1.1946699619293213,461,1.0,2 +37961,5,0.0,0,1.4206689596176147,462,0.0,2 +37962,5,1.0,0,1.8766632080078125,463,1.0,2 +37963,5,1.0,0,1.6736657619476318,464,1.0,2 +37964,5,0.0,0,1.50466787815094,465,0.0,2 +37965,5,1.0,0,1.4926680326461792,466,1.0,2 +37966,5,0.0,0,2.269669532775879,467,0.0,2 +37967,5,1.0,0,1.7886643409729004,468,0.0,2 +37968,5,0.0,0,1.9186625480651855,469,0.0,2 +37969,5,0.0,0,1.3706696033477783,470,0.0,2 +37970,5,1.0,0,1.5116678476333618,471,1.0,2 +37971,5,1.0,0,1.6676658391952515,472,1.0,2 +37972,5,1.0,0,1.5106678009033203,473,0.0,2 +37973,5,1.0,0,1.8226637840270996,474,1.0,2 +37974,5,0.0,0,1.3486698865890503,475,0.0,2 +37975,5,1.0,0,1.948662281036377,476,1.0,2 +37976,5,1.0,0,1.896662950515747,477,0.0,2 +37977,5,1.0,0,1.7666645050048828,478,1.0,2 +37978,5,1.0,0,1.3356701135635376,479,1.0,2 +37979,5,1.0,0,1.4416687488555908,480,1.0,2 +37980,5,1.0,0,1.4036692380905151,481,1.0,2 +37981,5,1.0,0,1.3766695261001587,482,1.0,2 +37982,5,1.0,0,1.7956641912460327,483,0.0,2 +37983,5,1.0,0,2.326672077178955,484,1.0,2 +37984,5,1.0,0,1.3356701135635376,485,0.0,2 +37985,5,0.0,0,1.4806681871414185,486,0.0,2 +37986,5,0.0,0,1.8126640319824219,487,0.0,2 +37987,5,0.0,0,1.7446649074554443,488,0.0,2 +37988,5,1.0,0,2.28367018699646,489,1.0,2 +37989,5,0.0,0,1.2626700401306152,490,0.0,2 +37990,5,1.0,0,1.9396623373031616,491,1.0,2 +37991,5,1.0,0,2.0666606426239014,492,1.0,2 +37992,5,1.0,0,1.662665843963623,493,1.0,2 +37993,5,0.0,0,1.381669521331787,494,0.0,2 +37994,5,1.0,0,1.5886669158935547,495,1.0,2 +37995,5,1.0,0,2.036661148071289,496,1.0,2 +37996,5,1.0,0,1.6636658906936646,497,0.0,2 +37997,5,1.0,0,1.7476648092269897,498,1.0,2 +37998,5,0.0,0,1.3626697063446045,499,0.0,2 +37999,5,1.0,0,1.3686696290969849,500,1.0,2 +38000,5,1.0,1,1.708665370941162,1,1.0,2 +38001,5,1.0,1,1.7656645774841309,2,1.0,2 +38002,5,0.0,1,1.5196677446365356,3,0.0,2 +38003,5,1.0,1,1.7386648654937744,4,0.0,2 +38004,5,0.0,1,1.3436700105667114,5,0.0,2 +38005,5,1.0,1,1.5376675128936768,6,1.0,2 +38006,5,1.0,1,1.2206699848175049,7,0.0,2 +38007,5,0.0,1,1.2286700010299683,8,0.0,2 +38008,5,1.0,1,1.6016666889190674,9,1.0,2 +38009,5,1.0,1,1.5616672039031982,10,1.0,2 +38010,5,1.0,1,1.3556698560714722,11,1.0,2 +38011,5,1.0,1,1.3396700620651245,12,0.0,2 +38012,5,0.0,1,1.2036699056625366,13,1.0,2 +38013,5,0.0,1,1.5496673583984375,14,0.0,2 +38014,5,0.0,1,1.4316688776016235,15,0.0,2 +38015,5,0.0,1,2.3866748809814453,16,0.0,2 +38016,5,0.0,1,2.603685140609741,17,0.0,2 +38017,5,0.0,1,1.1966699361801147,18,0.0,2 +38018,5,1.0,1,1.9876617193222046,19,1.0,2 +38019,5,1.0,1,1.3836694955825806,20,1.0,2 +38020,5,1.0,1,2.078660488128662,21,0.0,2 +38021,5,1.0,1,1.5316675901412964,22,1.0,2 +38022,5,1.0,1,1.5886669158935547,23,0.0,2 +38023,5,1.0,1,1.8426635265350342,24,1.0,2 +38024,5,0.0,1,1.3756695985794067,25,0.0,2 +38025,5,1.0,1,1.3106701374053955,26,1.0,2 +38026,5,1.0,1,1.8336637020111084,27,0.0,2 +38027,5,0.0,1,1.3966692686080933,28,0.0,2 +38028,5,1.0,1,1.6866655349731445,29,0.0,2 +38029,5,0.0,1,1.507667899131775,30,0.0,2 +38030,5,0.0,1,2.1776652336120605,31,0.0,2 +38031,5,1.0,1,1.8386635780334473,32,0.0,2 +38032,5,1.0,1,1.710665225982666,33,1.0,2 +38033,5,1.0,1,1.6566660404205322,34,1.0,2 +38034,5,1.0,1,1.2636700868606567,35,1.0,2 +38035,5,1.0,1,2.003661632537842,36,0.0,2 +38036,5,1.0,1,1.5276676416397095,37,1.0,2 +38037,5,1.0,1,1.6766657829284668,38,1.0,2 +38038,5,1.0,1,1.278670072555542,39,1.0,2 +38039,5,1.0,1,1.6446661949157715,40,0.0,2 +38040,5,0.0,1,1.3016700744628906,41,0.0,2 +38041,5,1.0,1,1.7856643199920654,42,0.0,2 +38042,5,1.0,1,2.3876750469207764,43,1.0,2 +38043,5,1.0,1,1.7916642427444458,44,0.0,2 +38044,5,0.0,1,1.8556634187698364,45,0.0,2 +38045,5,0.0,1,1.5876668691635132,46,0.0,2 +38046,5,1.0,1,1.764664649963379,47,1.0,2 +38047,5,1.0,1,1.4836682081222534,48,1.0,2 +38048,5,1.0,1,1.551667332649231,49,0.0,2 +38049,5,1.0,1,1.3836694955825806,50,1.0,2 +38050,5,1.0,1,2.334672451019287,51,1.0,2 +38051,5,1.0,1,1.3786695003509521,52,1.0,2 +38052,5,1.0,1,1.8056640625,53,1.0,2 +38053,5,1.0,1,1.3766695261001587,54,1.0,2 +38054,5,1.0,1,1.8436635732650757,55,1.0,2 +38055,5,1.0,1,1.9156626462936401,56,1.0,2 +38056,5,1.0,1,1.661665916442871,57,0.0,2 +38057,5,1.0,1,2.0706605911254883,58,0.0,2 +38058,5,1.0,1,2.1896657943725586,59,0.0,2 +38059,5,1.0,1,1.5626671314239502,60,1.0,2 +38060,5,1.0,1,1.6266663074493408,61,0.0,2 +38061,5,0.0,1,1.9166626930236816,62,1.0,2 +38062,5,0.0,1,1.2126699686050415,63,0.0,2 +38063,5,0.0,1,1.3786695003509521,64,0.0,2 +38064,5,0.0,1,1.3886693716049194,65,0.0,2 +38065,5,0.0,1,2.094661235809326,66,1.0,2 +38066,5,0.0,1,1.6156665086746216,67,0.0,2 +38067,5,1.0,1,1.945662260055542,68,1.0,2 +38068,5,1.0,1,1.6316663026809692,69,0.0,2 +38069,5,0.0,1,1.5176677703857422,70,1.0,2 +38070,5,0.0,1,1.5366674661636353,71,1.0,2 +38071,5,0.0,1,1.548667311668396,72,0.0,2 +38072,5,0.0,1,1.8136639595031738,73,0.0,2 +38073,5,1.0,1,1.9616620540618896,74,0.0,2 +38074,5,0.0,1,1.3516699075698853,75,0.0,2 +38075,5,0.0,1,2.033661127090454,76,0.0,2 +38076,5,0.0,1,1.6316663026809692,77,0.0,2 +38077,5,1.0,1,1.7156652212142944,78,1.0,2 +38078,5,1.0,1,1.3096702098846436,79,1.0,2 +38079,5,1.0,1,1.669665813446045,80,0.0,2 +38080,5,1.0,1,2.296670913696289,81,0.0,2 +38081,5,0.0,1,1.315670132637024,82,0.0,2 +38082,5,1.0,1,1.6826655864715576,83,0.0,2 +38083,5,0.0,1,1.8956629037857056,84,0.0,2 +38084,5,0.0,1,1.278670072555542,85,0.0,2 +38085,5,1.0,1,1.4436687231063843,86,0.0,2 +38086,5,0.0,1,2.6616878509521484,87,0.0,2 +38087,5,0.0,1,1.2526700496673584,88,1.0,2 +38088,5,0.0,1,1.2856700420379639,89,1.0,2 +38089,5,0.0,1,1.7916642427444458,90,0.0,2 +38090,5,0.0,1,1.386669397354126,91,1.0,2 +38091,5,0.0,1,1.2976701259613037,92,1.0,2 +38092,5,0.0,1,1.4276689291000366,93,1.0,2 +38093,5,0.0,1,1.5346674919128418,94,0.0,2 +38094,5,0.0,1,1.3236701488494873,95,0.0,2 +38095,5,1.0,1,1.455668568611145,96,1.0,2 +38096,5,1.0,1,1.2636700868606567,97,1.0,2 +38097,5,1.0,1,1.9326624870300293,98,0.0,2 +38098,5,0.0,1,1.9106626510620117,99,0.0,2 +38099,5,0.0,1,2.029661178588867,100,0.0,2 +38100,5,1.0,1,1.5636671781539917,101,1.0,2 +38101,5,1.0,1,1.3136701583862305,102,1.0,2 +38102,5,1.0,1,1.7476648092269897,103,1.0,2 +38103,5,0.0,1,2.4516780376434326,104,0.0,2 +38104,5,1.0,1,1.3026701211929321,105,1.0,2 +38105,5,0.0,1,1.385669469833374,106,0.0,2 +38106,5,0.0,1,1.3556698560714722,107,1.0,2 +38107,5,1.0,1,1.3946692943572998,108,1.0,2 +38108,5,1.0,1,1.525667667388916,109,1.0,2 +38109,5,0.0,1,1.244670033454895,110,1.0,2 +38110,5,1.0,1,2.044661045074463,111,1.0,2 +38111,5,1.0,1,1.6036666631698608,112,1.0,2 +38112,5,1.0,1,1.272670030593872,113,1.0,2 +38113,5,1.0,1,1.2796701192855835,114,0.0,2 +38114,5,0.0,1,2.1236627101898193,115,0.0,2 +38115,5,1.0,1,1.4666683673858643,116,1.0,2 +38116,5,1.0,1,2.085660934448242,117,0.0,2 +38117,5,0.0,1,1.411669135093689,118,0.0,2 +38118,5,1.0,1,1.989661693572998,119,0.0,2 +38119,5,0.0,1,1.2796701192855835,120,0.0,2 +38120,5,1.0,1,1.5646671056747437,121,1.0,2 +38121,5,1.0,1,1.716665267944336,122,0.0,2 +38122,5,1.0,1,2.1316630840301514,123,1.0,2 +38123,5,1.0,1,1.5406674146652222,124,1.0,2 +38124,5,1.0,1,1.3536698818206787,125,1.0,2 +38125,5,1.0,1,1.992661714553833,126,1.0,2 +38126,5,1.0,1,1.4986679553985596,127,1.0,2 +38127,5,0.0,1,1.389669418334961,128,0.0,2 +38128,5,0.0,1,2.086660861968994,129,0.0,2 +38129,5,1.0,1,1.3256702423095703,130,0.0,2 +38130,5,0.0,1,1.5206676721572876,131,0.0,2 +38131,5,1.0,1,1.574666976928711,132,1.0,2 +38132,5,1.0,1,1.6296663284301758,133,1.0,2 +38133,5,1.0,1,1.459668517112732,134,1.0,2 +38134,5,1.0,1,1.8356636762619019,135,1.0,2 +38135,5,1.0,1,1.5556672811508179,136,1.0,2 +38136,5,1.0,1,1.7336649894714355,137,0.0,2 +38137,5,0.0,1,1.6676658391952515,138,0.0,2 +38138,5,1.0,1,1.9826617240905762,139,1.0,2 +38139,5,1.0,1,1.2466700077056885,140,0.0,2 +38140,5,1.0,1,1.50466787815094,141,1.0,2 +38141,5,1.0,1,1.6956654787063599,142,1.0,2 +38142,5,1.0,1,1.4356688261032104,143,0.0,2 +38143,5,0.0,1,1.3396700620651245,144,0.0,2 +38144,5,1.0,1,1.4576685428619385,145,1.0,2 +38145,5,1.0,1,1.3046700954437256,146,1.0,2 +38146,5,1.0,1,1.6796656847000122,147,1.0,2 +38147,5,1.0,1,2.3996756076812744,148,1.0,2 +38148,5,1.0,1,2.4836795330047607,149,1.0,2 +38149,5,1.0,1,1.3256702423095703,150,1.0,2 +38150,5,1.0,1,1.3396700620651245,151,1.0,2 +38151,5,1.0,1,1.6516660451889038,152,1.0,2 +38152,5,1.0,1,1.4856681823730469,153,1.0,2 +38153,5,1.0,1,1.3436700105667114,154,1.0,2 +38154,5,1.0,1,1.4856681823730469,155,1.0,2 +38155,5,1.0,1,1.8116639852523804,156,1.0,2 +38156,5,1.0,1,1.875663161277771,157,1.0,2 +38157,5,1.0,1,1.6926655769348145,158,1.0,2 +38158,5,1.0,1,1.5246676206588745,159,1.0,2 +38159,5,1.0,1,1.3036701679229736,160,1.0,2 +38160,5,1.0,1,1.2096699476242065,161,1.0,2 +38161,5,1.0,1,1.4226689338684082,162,1.0,2 +38162,5,1.0,1,1.5566672086715698,163,1.0,2 +38163,5,1.0,1,1.359669804573059,164,1.0,2 +38164,5,1.0,1,1.6276663541793823,165,0.0,2 +38165,5,1.0,1,1.801664113998413,166,1.0,2 +38166,5,1.0,1,1.3436700105667114,167,1.0,2 +38167,5,1.0,1,1.8356636762619019,168,0.0,2 +38168,5,0.0,1,1.3616697788238525,169,0.0,2 +38169,5,1.0,1,1.9856617450714111,170,0.0,2 +38170,5,0.0,1,1.4496686458587646,171,0.0,2 +38171,5,1.0,1,2.000661611557007,172,1.0,2 +38172,5,1.0,1,1.6586658954620361,173,1.0,2 +38173,5,1.0,1,1.4186689853668213,174,0.0,2 +38174,5,0.0,1,1.9616620540618896,175,0.0,2 +38175,5,1.0,1,1.3256702423095703,176,1.0,2 +38176,5,1.0,1,2.078660488128662,177,1.0,2 +38177,5,1.0,1,1.5826668739318848,178,0.0,2 +38178,5,1.0,1,1.389669418334961,179,0.0,2 +38179,5,0.0,1,1.2226699590682983,180,0.0,2 +38180,5,0.0,1,1.7426648139953613,181,0.0,2 +38181,5,1.0,1,1.507667899131775,182,1.0,2 +38182,5,0.0,1,1.2896701097488403,183,0.0,2 +38183,5,1.0,1,1.547667384147644,184,1.0,2 +38184,5,1.0,1,1.3546698093414307,185,1.0,2 +38185,5,1.0,1,2.0166614055633545,186,0.0,2 +38186,5,1.0,1,1.6026666164398193,187,1.0,2 +38187,5,1.0,1,2.1036617755889893,188,0.0,2 +38188,5,1.0,1,1.665665864944458,189,1.0,2 +38189,5,1.0,1,1.7556647062301636,190,1.0,2 +38190,5,1.0,1,1.544667363166809,191,0.0,2 +38191,5,1.0,1,2.1856656074523926,192,1.0,2 +38192,5,0.0,1,1.2436699867248535,193,0.0,2 +38193,5,1.0,1,1.5066678524017334,194,1.0,2 +38194,5,1.0,1,1.521667718887329,195,0.0,2 +38195,5,0.0,1,1.8556634187698364,196,0.0,2 +38196,5,0.0,1,1.4716683626174927,197,1.0,2 +38197,5,0.0,1,1.272670030593872,198,0.0,2 +38198,5,1.0,1,1.5206676721572876,199,1.0,2 +38199,5,1.0,1,1.8006641864776611,200,0.0,2 +38200,5,1.0,1,1.5176677703857422,201,1.0,2 +38201,5,1.0,1,1.3516699075698853,202,0.0,2 +38202,5,0.0,1,1.99066162109375,203,0.0,2 +38203,5,0.0,1,2.276669979095459,204,0.0,2 +38204,5,0.0,1,1.8786630630493164,205,0.0,2 +38205,5,0.0,1,1.6496660709381104,206,0.0,2 +38206,5,1.0,1,2.248668670654297,207,1.0,2 +38207,5,0.0,1,2.4696788787841797,208,0.0,2 +38208,5,1.0,1,1.8116639852523804,209,0.0,2 +38209,5,1.0,1,1.9736618995666504,210,0.0,2 +38210,5,0.0,1,1.3046700954437256,211,1.0,2 +38211,5,0.0,1,1.386669397354126,212,1.0,2 +38212,5,0.0,1,2.4286770820617676,213,0.0,2 +38213,5,0.0,1,1.2586700916290283,214,0.0,2 +38214,5,0.0,1,1.312670111656189,215,1.0,2 +38215,5,0.0,1,1.3286701440811157,216,0.0,2 +38216,5,0.0,1,1.5546672344207764,217,0.0,2 +38217,5,0.0,1,1.4506685733795166,218,1.0,2 +38218,5,0.0,1,1.5596672296524048,219,0.0,2 +38219,5,0.0,1,1.385669469833374,220,0.0,2 +38220,5,1.0,1,1.2426700592041016,221,1.0,2 +38221,5,1.0,1,1.2296700477600098,222,0.0,2 +38222,5,1.0,1,1.664665937423706,223,1.0,2 +38223,5,1.0,1,1.2586700916290283,224,0.0,2 +38224,5,1.0,1,1.5976667404174805,225,1.0,2 +38225,5,1.0,1,2.0956614017486572,226,1.0,2 +38226,5,1.0,1,1.2706700563430786,227,1.0,2 +38227,5,0.0,1,1.6976654529571533,228,0.0,2 +38228,5,1.0,1,1.5586671829223633,229,1.0,2 +38229,5,1.0,1,1.478668212890625,230,1.0,2 +38230,5,1.0,1,1.341670036315918,231,0.0,2 +38231,5,1.0,1,1.8436635732650757,232,1.0,2 +38232,5,1.0,1,1.4326688051223755,233,0.0,2 +38233,5,1.0,1,2.1286630630493164,234,1.0,2 +38234,5,1.0,1,1.3756695985794067,235,1.0,2 +38235,5,1.0,1,1.6006667613983154,236,1.0,2 +38236,5,1.0,1,1.8866629600524902,237,1.0,2 +38237,5,1.0,1,1.5786669254302979,238,1.0,2 +38238,5,0.0,1,1.7976641654968262,239,0.0,2 +38239,5,1.0,1,1.503667950630188,240,1.0,2 +38240,5,1.0,1,1.2436699867248535,241,1.0,2 +38241,5,1.0,1,2.261669158935547,242,1.0,2 +38242,5,1.0,1,1.802664041519165,243,1.0,2 +38243,5,1.0,1,1.5086678266525269,244,1.0,2 +38244,5,1.0,1,1.9366624355316162,245,0.0,2 +38245,5,1.0,1,1.500667929649353,246,0.0,2 +38246,5,1.0,1,1.6236664056777954,247,1.0,2 +38247,5,1.0,1,1.647666096687317,248,1.0,2 +38248,5,1.0,1,1.42966890335083,249,1.0,2 +38249,5,1.0,1,1.754664659500122,250,0.0,2 +38250,5,1.0,1,1.8916629552841187,251,1.0,2 +38251,5,0.0,1,1.389669418334961,252,0.0,2 +38252,5,1.0,1,1.9296624660491943,253,1.0,2 +38253,5,1.0,1,1.5716670751571655,254,1.0,2 +38254,5,1.0,1,1.5806670188903809,255,1.0,2 +38255,5,1.0,1,1.7556647062301636,256,1.0,2 +38256,5,1.0,1,1.5836669206619263,257,1.0,2 +38257,5,1.0,1,2.1366634368896484,258,1.0,2 +38258,5,1.0,1,1.4616684913635254,259,1.0,2 +38259,5,1.0,1,2.1336631774902344,260,1.0,2 +38260,5,1.0,1,1.4426686763763428,261,1.0,2 +38261,5,1.0,1,2.249668598175049,262,1.0,2 +38262,5,1.0,1,1.3576698303222656,263,1.0,2 +38263,5,1.0,1,1.437668800354004,264,1.0,2 +38264,5,1.0,1,1.2806700468063354,265,1.0,2 +38265,5,1.0,1,1.207669973373413,266,1.0,2 +38266,5,1.0,1,1.5416674613952637,267,1.0,2 +38267,5,1.0,1,1.48166823387146,268,1.0,2 +38268,5,1.0,1,1.946662187576294,269,1.0,2 +38269,5,1.0,1,1.4806681871414185,270,1.0,2 +38270,5,1.0,1,1.8356636762619019,271,0.0,2 +38271,5,0.0,1,1.5986666679382324,272,0.0,2 +38272,5,0.0,1,2.771692991256714,273,1.0,2 +38273,5,0.0,1,1.434668779373169,274,0.0,2 +38274,5,1.0,1,1.2856700420379639,275,1.0,2 +38275,5,1.0,1,1.8386635780334473,276,1.0,2 +38276,5,1.0,1,1.7866642475128174,277,1.0,2 +38277,5,1.0,1,1.3696696758270264,278,1.0,2 +38278,5,1.0,1,1.621666431427002,279,1.0,2 +38279,5,1.0,1,1.9056627750396729,280,1.0,2 +38280,5,0.0,1,1.284670114517212,281,0.0,2 +38281,5,1.0,1,1.5356675386428833,282,1.0,2 +38282,5,1.0,1,2.041661024093628,283,0.0,2 +38283,5,0.0,1,2.565683364868164,284,0.0,2 +38284,5,1.0,1,1.4196690320968628,285,1.0,2 +38285,5,1.0,1,1.4176690578460693,286,1.0,2 +38286,5,1.0,1,1.764664649963379,287,1.0,2 +38287,5,1.0,1,1.9526622295379639,288,0.0,2 +38288,5,0.0,1,1.3976693153381348,289,0.0,2 +38289,5,1.0,1,1.8186638355255127,290,1.0,2 +38290,5,1.0,1,1.6296663284301758,291,1.0,2 +38291,5,1.0,1,1.7876642942428589,292,1.0,2 +38292,5,1.0,1,1.4626684188842773,293,1.0,2 +38293,5,1.0,1,1.522667646408081,294,1.0,2 +38294,5,1.0,1,1.5396674871444702,295,1.0,2 +38295,5,1.0,1,2.2156670093536377,296,1.0,2 +38296,5,1.0,1,1.4096691608428955,297,1.0,2 +38297,5,1.0,1,1.946662187576294,298,0.0,2 +38298,5,1.0,1,1.61466646194458,299,1.0,2 +38299,5,1.0,1,1.4796682596206665,300,1.0,2 +38300,5,1.0,1,1.8726632595062256,301,1.0,2 +38301,5,1.0,1,1.3266701698303223,302,0.0,2 +38302,5,1.0,1,1.7436648607254028,303,1.0,2 +38303,5,1.0,1,1.760664701461792,304,1.0,2 +38304,5,1.0,1,1.3736696243286133,305,1.0,2 +38305,5,1.0,1,1.5056679248809814,306,1.0,2 +38306,5,0.0,1,1.7276650667190552,307,0.0,2 +38307,5,1.0,1,1.4896681308746338,308,0.0,2 +38308,5,0.0,1,1.624666452407837,309,0.0,2 +38309,5,1.0,1,1.3916693925857544,310,1.0,2 +38310,5,1.0,1,2.561683177947998,311,1.0,2 +38311,5,1.0,1,1.647666096687317,312,1.0,2 +38312,5,1.0,1,1.4396687746047974,313,1.0,2 +38313,5,1.0,1,1.8366637229919434,314,1.0,2 +38314,5,1.0,1,1.5366674661636353,315,0.0,2 +38315,5,0.0,1,2.035661220550537,316,0.0,2 +38316,5,1.0,1,1.5286675691604614,317,0.0,2 +38317,5,0.0,1,1.8516634702682495,318,0.0,2 +38318,5,1.0,1,1.4696683883666992,319,1.0,2 +38319,5,1.0,1,1.708665370941162,320,0.0,2 +38320,5,0.0,1,1.7406649589538574,321,0.0,2 +38321,5,0.0,1,1.4766682386398315,322,0.0,2 +38322,5,1.0,1,1.4266688823699951,323,1.0,2 +38323,5,0.0,1,1.8636633157730103,324,0.0,2 +38324,5,1.0,1,1.5536673069000244,325,0.0,2 +38325,5,0.0,1,2.078660488128662,326,0.0,2 +38326,5,1.0,1,1.9326624870300293,327,1.0,2 +38327,5,1.0,1,1.478668212890625,328,1.0,2 +38328,5,1.0,1,1.4196690320968628,329,1.0,2 +38329,5,1.0,1,2.074660539627075,330,0.0,2 +38330,5,0.0,1,2.1546640396118164,331,1.0,2 +38331,5,1.0,1,1.3846694231033325,332,1.0,2 +38332,5,0.0,1,1.4406687021255493,333,0.0,2 +38333,5,1.0,1,1.5716670751571655,334,0.0,2 +38334,5,1.0,1,1.6326663494110107,335,1.0,2 +38335,5,0.0,1,1.879663109779358,336,0.0,2 +38336,5,0.0,1,1.5716670751571655,337,0.0,2 +38337,5,1.0,1,1.5716670751571655,338,1.0,2 +38338,5,1.0,1,1.3326700925827026,339,0.0,2 +38339,5,1.0,1,1.4606684446334839,340,1.0,2 +38340,5,1.0,1,1.500667929649353,341,1.0,2 +38341,5,1.0,1,1.5686670541763306,342,1.0,2 +38342,5,1.0,1,1.7856643199920654,343,1.0,2 +38343,5,1.0,1,1.34266996383667,344,0.0,2 +38344,5,1.0,1,1.901662826538086,345,1.0,2 +38345,5,1.0,1,1.5366674661636353,346,1.0,2 +38346,5,1.0,1,1.6416661739349365,347,0.0,2 +38347,5,1.0,1,1.9266624450683594,348,0.0,2 +38348,5,1.0,1,1.7236651182174683,349,1.0,2 +38349,5,1.0,1,2.0656607151031494,350,0.0,2 +38350,5,0.0,1,1.281670093536377,351,0.0,2 +38351,5,0.0,1,2.362673759460449,352,1.0,2 +38352,5,0.0,1,1.9176626205444336,353,1.0,2 +38353,5,0.0,1,1.7456648349761963,354,0.0,2 +38354,5,0.0,1,1.1876698732376099,355,0.0,2 +38355,5,1.0,1,1.9386622905731201,356,1.0,2 +38356,5,1.0,1,1.4686683416366577,357,1.0,2 +38357,5,1.0,1,1.4646683931350708,358,1.0,2 +38358,5,1.0,1,1.4166690111160278,359,0.0,2 +38359,5,1.0,1,1.8186638355255127,360,1.0,2 +38360,5,0.0,1,1.946662187576294,361,0.0,2 +38361,5,1.0,1,2.3846750259399414,362,1.0,2 +38362,5,1.0,1,1.3916693925857544,363,1.0,2 +38363,5,1.0,1,2.1206626892089844,364,1.0,2 +38364,5,1.0,1,1.404669165611267,365,0.0,2 +38365,5,0.0,1,1.4576685428619385,366,0.0,2 +38366,5,0.0,1,2.0286612510681152,367,1.0,2 +38367,5,1.0,1,1.5606671571731567,368,1.0,2 +38368,5,0.0,1,1.4446686506271362,369,1.0,2 +38369,5,0.0,1,1.5336675643920898,370,0.0,2 +38370,5,0.0,1,1.662665843963623,371,0.0,2 +38371,5,1.0,1,1.2366700172424316,372,1.0,2 +38372,5,0.0,1,1.6096665859222412,373,0.0,2 +38373,5,1.0,1,1.7636646032333374,374,1.0,2 +38374,5,1.0,1,2.1266627311706543,375,1.0,2 +38375,5,1.0,1,1.4026691913604736,376,0.0,2 +38376,5,1.0,1,1.3516699075698853,377,0.0,2 +38377,5,0.0,1,1.4956680536270142,378,0.0,2 +38378,5,1.0,1,1.6486661434173584,379,1.0,2 +38379,5,1.0,1,1.4456686973571777,380,1.0,2 +38380,5,1.0,1,1.3256702423095703,381,0.0,2 +38381,5,0.0,1,1.875663161277771,382,1.0,2 +38382,5,0.0,1,1.898662805557251,383,1.0,2 +38383,5,0.0,1,1.3786695003509521,384,0.0,2 +38384,5,1.0,1,2.281670093536377,385,0.0,2 +38385,5,1.0,1,1.6966655254364014,386,1.0,2 +38386,5,1.0,1,2.1146621704101562,387,1.0,2 +38387,5,1.0,1,1.3356701135635376,388,1.0,2 +38388,5,1.0,1,1.6386661529541016,389,1.0,2 +38389,5,1.0,1,1.6016666889190674,390,1.0,2 +38390,5,1.0,1,1.4896681308746338,391,1.0,2 +38391,5,1.0,1,1.6046667098999023,392,0.0,2 +38392,5,1.0,1,2.003661632537842,393,1.0,2 +38393,5,1.0,1,2.1946659088134766,394,0.0,2 +38394,5,0.0,1,1.5206676721572876,395,0.0,2 +38395,5,0.0,1,1.5936667919158936,396,0.0,2 +38396,5,0.0,1,1.305670142173767,397,0.0,2 +38397,5,0.0,1,1.4976680278778076,398,0.0,2 +38398,5,0.0,1,1.430668830871582,399,0.0,2 +38399,5,0.0,1,1.2286700010299683,400,0.0,2 +38400,5,0.0,1,1.3766695261001587,401,0.0,2 +38401,5,1.0,1,1.668665885925293,402,1.0,2 +38402,5,1.0,1,1.6546659469604492,403,1.0,2 +38403,5,1.0,1,1.3556698560714722,404,0.0,2 +38404,5,0.0,1,1.4386687278747559,405,1.0,2 +38405,5,0.0,1,1.2396700382232666,406,0.0,2 +38406,5,1.0,1,1.4706683158874512,407,1.0,2 +38407,5,1.0,1,1.5756670236587524,408,1.0,2 +38408,5,1.0,1,2.0686607360839844,409,1.0,2 +38409,5,1.0,1,1.7906641960144043,410,0.0,2 +38410,5,0.0,1,1.4466686248779297,411,0.0,2 +38411,5,0.0,1,1.9316624402999878,412,0.0,2 +38412,5,1.0,1,2.3776745796203613,413,0.0,2 +38413,5,0.0,1,2.6876890659332275,414,0.0,2 +38414,5,1.0,1,1.4686683416366577,415,1.0,2 +38415,5,1.0,1,2.1046619415283203,416,1.0,2 +38416,5,1.0,1,1.6416661739349365,417,1.0,2 +38417,5,0.0,1,1.7186651229858398,418,0.0,2 +38418,5,1.0,1,1.709665298461914,419,1.0,2 +38419,5,1.0,1,1.5236676931381226,420,1.0,2 +38420,5,1.0,1,1.3246701955795288,421,1.0,2 +38421,5,1.0,1,1.269670009613037,422,1.0,2 +38422,5,1.0,1,1.7666645050048828,423,1.0,2 +38423,5,1.0,1,1.7296650409698486,424,0.0,2 +38424,5,0.0,1,1.210669994354248,425,0.0,2 +38425,5,0.0,1,1.942662239074707,426,0.0,2 +38426,5,1.0,1,1.4626684188842773,427,1.0,2 +38427,5,1.0,1,1.5456674098968506,428,1.0,2 +38428,5,1.0,1,1.8076640367507935,429,0.0,2 +38429,5,0.0,1,1.5566672086715698,430,1.0,2 +38430,5,0.0,1,1.407669186592102,431,0.0,2 +38431,5,1.0,1,1.9796618223190308,432,1.0,2 +38432,5,1.0,1,1.4256689548492432,433,1.0,2 +38433,5,1.0,1,1.477668285369873,434,1.0,2 +38434,5,1.0,1,2.1386632919311523,435,1.0,2 +38435,5,1.0,1,1.3366700410842896,436,1.0,2 +38436,5,1.0,1,1.6966655254364014,437,0.0,2 +38437,5,0.0,1,1.238669991493225,438,0.0,2 +38438,5,0.0,1,1.6956654787063599,439,0.0,2 +38439,5,0.0,1,1.2636700868606567,440,0.0,2 +38440,5,1.0,1,1.8116639852523804,441,1.0,2 +38441,5,1.0,1,1.5866668224334717,442,1.0,2 +38442,5,1.0,1,2.0236611366271973,443,0.0,2 +38443,5,0.0,1,1.8056640625,444,0.0,2 +38444,5,1.0,1,1.8446636199951172,445,1.0,2 +38445,5,1.0,1,1.1756699085235596,446,1.0,2 +38446,5,1.0,1,1.8216638565063477,447,0.0,2 +38447,5,0.0,1,1.7446649074554443,448,0.0,2 +38448,5,0.0,1,1.3796695470809937,449,0.0,2 +38449,5,1.0,1,1.5946667194366455,450,1.0,2 +38450,5,1.0,1,1.3726695775985718,451,1.0,2 +38451,5,1.0,1,1.6076666116714478,452,0.0,2 +38452,5,1.0,1,1.5366674661636353,453,1.0,2 +38453,5,1.0,1,1.4496686458587646,454,1.0,2 +38454,5,1.0,1,1.5306675434112549,455,1.0,2 +38455,5,1.0,1,2.094661235809326,456,0.0,2 +38456,5,0.0,1,1.4836682081222534,457,0.0,2 +38457,5,1.0,1,1.8296637535095215,458,1.0,2 +38458,5,1.0,1,1.7206652164459229,459,1.0,2 +38459,5,1.0,1,1.2496700286865234,460,1.0,2 +38460,5,1.0,1,1.3836694955825806,461,1.0,2 +38461,5,0.0,1,1.4496686458587646,462,0.0,2 +38462,5,1.0,1,1.390669345855713,463,1.0,2 +38463,5,1.0,1,1.8216638565063477,464,1.0,2 +38464,5,0.0,1,1.4216690063476562,465,0.0,2 +38465,5,1.0,1,1.455668568611145,466,0.0,2 +38466,5,0.0,1,1.3566697835922241,467,1.0,2 +38467,5,0.0,1,1.3296701908111572,468,1.0,2 +38468,5,0.0,1,1.4936680793762207,469,0.0,2 +38469,5,0.0,1,1.3396700620651245,470,0.0,2 +38470,5,0.0,1,1.3536698818206787,471,0.0,2 +38471,5,0.0,1,1.8736631870269775,472,0.0,2 +38472,5,0.0,1,2.0206613540649414,473,0.0,2 +38473,5,1.0,1,1.853663444519043,474,1.0,2 +38474,5,0.0,1,1.4486685991287231,475,0.0,2 +38475,5,0.0,1,1.900662899017334,476,0.0,2 +38476,5,1.0,1,1.853663444519043,477,0.0,2 +38477,5,0.0,1,1.5636671781539917,478,0.0,2 +38478,5,1.0,1,1.8036640882492065,479,1.0,2 +38479,5,1.0,1,1.6096665859222412,480,1.0,2 +38480,5,1.0,1,1.2526700496673584,481,0.0,2 +38481,5,1.0,1,1.573667049407959,482,1.0,2 +38482,5,1.0,1,1.500667929649353,483,1.0,2 +38483,5,1.0,1,1.8516634702682495,484,0.0,2 +38484,5,0.0,1,1.5856668949127197,485,0.0,2 +38485,5,0.0,1,1.7116652727127075,486,0.0,2 +38486,5,0.0,1,2.1416635513305664,487,0.0,2 +38487,5,0.0,1,1.4796682596206665,488,0.0,2 +38488,5,1.0,1,1.6726658344268799,489,1.0,2 +38489,5,1.0,1,1.3966692686080933,490,0.0,2 +38490,5,0.0,1,1.5496673583984375,491,1.0,2 +38491,5,0.0,1,1.3776695728302002,492,0.0,2 +38492,5,0.0,1,1.9256625175476074,493,0.0,2 +38493,5,1.0,1,2.1786651611328125,494,1.0,2 +38494,5,1.0,1,1.1986699104309082,495,1.0,2 +38495,5,1.0,1,1.617666482925415,496,1.0,2 +38496,5,1.0,1,1.4706683158874512,497,1.0,2 +38497,5,1.0,1,1.599666714668274,498,0.0,2 +38498,5,1.0,1,2.1626644134521484,499,0.0,2 +38499,5,0.0,1,1.4256689548492432,500,1.0,2 +38500,5,1.0,2,2.1546640396118164,1,1.0,2 +38501,5,1.0,2,1.4036692380905151,2,1.0,2 +38502,5,1.0,2,1.6716657876968384,3,0.0,2 +38503,5,1.0,2,2.1606645584106445,4,1.0,2 +38504,5,1.0,2,1.624666452407837,5,1.0,2 +38505,5,1.0,2,1.989661693572998,6,0.0,2 +38506,5,0.0,2,1.4966679811477661,7,0.0,2 +38507,5,1.0,2,1.9476622343063354,8,1.0,2 +38508,5,0.0,2,1.9296624660491943,9,1.0,2 +38509,5,0.0,2,1.4446686506271362,10,1.0,2 +38510,5,1.0,2,1.6316663026809692,11,0.0,2 +38511,5,0.0,2,1.6466660499572754,12,1.0,2 +38512,5,0.0,2,1.1926698684692383,13,1.0,2 +38513,5,0.0,2,1.7506647109985352,14,0.0,2 +38514,5,1.0,2,1.5806670188903809,15,0.0,2 +38515,5,0.0,2,2.2176671028137207,16,1.0,2 +38516,5,0.0,2,1.312670111656189,17,0.0,2 +38517,5,1.0,2,1.5826668739318848,18,1.0,2 +38518,5,0.0,2,1.6556659936904907,19,1.0,2 +38519,5,1.0,2,2.3446731567382812,20,0.0,2 +38520,5,0.0,2,1.948662281036377,21,1.0,2 +38521,5,0.0,2,1.3586697578430176,22,1.0,2 +38522,5,0.0,2,1.305670142173767,23,0.0,2 +38523,5,0.0,2,1.312670111656189,24,0.0,2 +38524,5,0.0,2,1.6546659469604492,25,0.0,2 +38525,5,1.0,2,1.5846669673919678,26,0.0,2 +38526,5,1.0,2,1.459668517112732,27,1.0,2 +38527,5,1.0,2,1.507667899131775,28,0.0,2 +38528,5,1.0,2,1.8776631355285645,29,0.0,2 +38529,5,1.0,2,1.6046667098999023,30,1.0,2 +38530,5,1.0,2,1.6556659936904907,31,1.0,2 +38531,5,1.0,2,1.622666358947754,32,0.0,2 +38532,5,1.0,2,2.2166671752929688,33,1.0,2 +38533,5,1.0,2,1.621666431427002,34,1.0,2 +38534,5,0.0,2,1.6506659984588623,35,0.0,2 +38535,5,1.0,2,1.7216651439666748,36,0.0,2 +38536,5,0.0,2,1.804664134979248,37,0.0,2 +38537,5,1.0,2,1.3486698865890503,38,1.0,2 +38538,5,1.0,2,1.8296637535095215,39,0.0,2 +38539,5,1.0,2,1.3686696290969849,40,1.0,2 +38540,5,1.0,2,1.2976701259613037,41,0.0,2 +38541,5,0.0,2,1.3096702098846436,42,1.0,2 +38542,5,0.0,2,1.3406699895858765,43,1.0,2 +38543,5,0.0,2,1.1636698246002197,44,0.0,2 +38544,5,1.0,2,1.595666766166687,45,1.0,2 +38545,5,1.0,2,1.274670124053955,46,0.0,2 +38546,5,0.0,2,1.6786656379699707,47,0.0,2 +38547,5,0.0,2,1.754664659500122,48,1.0,2 +38548,5,0.0,2,1.662665843963623,49,0.0,2 +38549,5,0.0,2,1.360669732093811,50,0.0,2 +38550,5,1.0,2,2.1566643714904785,51,0.0,2 +38551,5,0.0,2,1.6026666164398193,52,1.0,2 +38552,5,0.0,2,2.276669979095459,53,0.0,2 +38553,5,1.0,2,1.359669804573059,54,1.0,2 +38554,5,1.0,2,1.4236689805984497,55,0.0,2 +38555,5,1.0,2,1.4506685733795166,56,0.0,2 +38556,5,1.0,2,2.1096620559692383,57,1.0,2 +38557,5,1.0,2,2.3916752338409424,58,0.0,2 +38558,5,1.0,2,2.1926660537719727,59,0.0,2 +38559,5,0.0,2,1.2536699771881104,60,1.0,2 +38560,5,0.0,2,1.20566987991333,61,0.0,2 +38561,5,1.0,2,2.286670207977295,62,0.0,2 +38562,5,0.0,2,1.2616701126098633,63,1.0,2 +38563,5,0.0,2,1.6926655769348145,64,1.0,2 +38564,5,0.0,2,1.451668620109558,65,0.0,2 +38565,5,1.0,2,1.2806700468063354,66,0.0,2 +38566,5,0.0,2,1.989661693572998,67,1.0,2 +38567,5,0.0,2,1.334670066833496,68,0.0,2 +38568,5,1.0,2,1.9186625480651855,69,1.0,2 +38569,5,1.0,2,1.548667311668396,70,0.0,2 +38570,5,1.0,2,2.484679698944092,71,0.0,2 +38571,5,0.0,2,1.6506659984588623,72,1.0,2 +38572,5,0.0,2,1.272670030593872,73,1.0,2 +38573,5,0.0,2,1.3626697063446045,74,1.0,2 +38574,5,0.0,2,1.4706683158874512,75,0.0,2 +38575,5,0.0,2,1.5086678266525269,76,0.0,2 +38576,5,1.0,2,1.3666696548461914,77,1.0,2 +38577,5,1.0,2,1.2166699171066284,78,1.0,2 +38578,5,1.0,2,1.6996654272079468,79,0.0,2 +38579,5,1.0,2,1.7426648139953613,80,1.0,2 +38580,5,1.0,2,1.433668851852417,81,0.0,2 +38581,5,1.0,2,1.9326624870300293,82,1.0,2 +38582,5,1.0,2,1.2326699495315552,83,1.0,2 +38583,5,1.0,2,2.0846610069274902,84,1.0,2 +38584,5,1.0,2,1.434668779373169,85,0.0,2 +38585,5,0.0,2,1.5596672296524048,86,0.0,2 +38586,5,0.0,2,1.5986666679382324,87,0.0,2 +38587,5,0.0,2,1.7016654014587402,88,0.0,2 +38588,5,0.0,2,1.6156665086746216,89,0.0,2 +38589,5,0.0,2,1.6986653804779053,90,0.0,2 +38590,5,1.0,2,1.6386661529541016,91,1.0,2 +38591,5,1.0,2,2.029661178588867,92,0.0,2 +38592,5,1.0,2,1.4096691608428955,93,0.0,2 +38593,5,1.0,2,1.7756644487380981,94,1.0,2 +38594,5,0.0,2,2.6366868019104004,95,0.0,2 +38595,5,1.0,2,1.919662594795227,96,1.0,2 +38596,5,1.0,2,1.66666579246521,97,1.0,2 +38597,5,1.0,2,1.5126677751541138,98,1.0,2 +38598,5,1.0,2,1.547667384147644,99,1.0,2 +38599,5,1.0,2,2.034661054611206,100,0.0,2 +38600,5,1.0,2,2.588684558868408,101,0.0,2 +38601,5,1.0,2,1.8896629810333252,102,0.0,2 +38602,5,1.0,2,1.7006654739379883,103,0.0,2 +38603,5,1.0,2,1.2626700401306152,104,1.0,2 +38604,5,1.0,2,1.8056640625,105,0.0,2 +38605,5,0.0,2,1.27767014503479,106,1.0,2 +38606,5,0.0,2,1.2366700172424316,107,0.0,2 +38607,5,1.0,2,2.2296676635742188,108,0.0,2 +38608,5,0.0,2,1.6746656894683838,109,0.0,2 +38609,5,1.0,2,2.1846656799316406,110,0.0,2 +38610,5,0.0,2,1.5106678009033203,111,1.0,2 +38611,5,0.0,2,1.8786630630493164,112,0.0,2 +38612,5,1.0,2,1.3726695775985718,113,0.0,2 +38613,5,1.0,2,2.0726606845855713,114,1.0,2 +38614,5,1.0,2,1.6016666889190674,115,0.0,2 +38615,5,1.0,2,2.300671100616455,116,0.0,2 +38616,5,0.0,2,1.7416648864746094,117,1.0,2 +38617,5,1.0,2,2.098661422729492,118,0.0,2 +38618,5,0.0,2,1.2936701774597168,119,1.0,2 +38619,5,0.0,2,1.2306699752807617,120,1.0,2 +38620,5,0.0,2,1.2276699542999268,121,0.0,2 +38621,5,1.0,2,1.5616672039031982,122,1.0,2 +38622,5,1.0,2,1.3316701650619507,123,0.0,2 +38623,5,0.0,2,1.3746695518493652,124,0.0,2 +38624,5,1.0,2,2.267669439315796,125,1.0,2 +38625,5,1.0,2,1.4016692638397217,126,0.0,2 +38626,5,1.0,2,1.2456700801849365,127,1.0,2 +38627,5,0.0,2,1.7726645469665527,128,1.0,2 +38628,5,1.0,2,1.2496700286865234,129,0.0,2 +38629,5,0.0,2,1.3706696033477783,130,0.0,2 +38630,5,0.0,2,1.708665370941162,131,0.0,2 +38631,5,0.0,2,1.5126677751541138,132,0.0,2 +38632,5,1.0,2,1.5156677961349487,133,0.0,2 +38633,5,0.0,2,1.9696619510650635,134,0.0,2 +38634,5,1.0,2,1.8726632595062256,135,0.0,2 +38635,5,1.0,2,1.7406649589538574,136,1.0,2 +38636,5,1.0,2,1.7806644439697266,137,1.0,2 +38637,5,1.0,2,1.7716645002365112,138,1.0,2 +38638,5,1.0,2,1.5906667709350586,139,1.0,2 +38639,5,1.0,2,1.4096691608428955,140,1.0,2 +38640,5,1.0,2,1.4196690320968628,141,1.0,2 +38641,5,1.0,2,1.3616697788238525,142,1.0,2 +38642,5,1.0,2,1.5546672344207764,143,0.0,2 +38643,5,0.0,2,1.451668620109558,144,1.0,2 +38644,5,0.0,2,1.3936693668365479,145,0.0,2 +38645,5,1.0,2,1.7756644487380981,146,0.0,2 +38646,5,1.0,2,1.8556634187698364,147,0.0,2 +38647,5,1.0,2,1.4026691913604736,148,0.0,2 +38648,5,1.0,2,1.4036692380905151,149,0.0,2 +38649,5,1.0,2,1.363669753074646,150,1.0,2 +38650,5,1.0,2,1.8586633205413818,151,1.0,2 +38651,5,0.0,2,1.946662187576294,152,0.0,2 +38652,5,0.0,2,1.668665885925293,153,1.0,2 +38653,5,1.0,2,1.6886656284332275,154,0.0,2 +38654,5,1.0,2,1.6526660919189453,155,1.0,2 +38655,5,0.0,2,2.1056618690490723,156,1.0,2 +38656,5,1.0,2,1.2936701774597168,157,0.0,2 +38657,5,0.0,2,1.5626671314239502,158,0.0,2 +38658,5,0.0,2,2.087661027908325,159,1.0,2 +38659,5,0.0,2,1.2536699771881104,160,0.0,2 +38660,5,0.0,2,1.735664963722229,161,0.0,2 +38661,5,1.0,2,1.8646633625030518,162,1.0,2 +38662,5,1.0,2,1.548667311668396,163,1.0,2 +38663,5,1.0,2,1.3756695985794067,164,1.0,2 +38664,5,1.0,2,1.7226650714874268,165,0.0,2 +38665,5,0.0,2,2.0176613330841064,166,1.0,2 +38666,5,0.0,2,1.4916681051254272,167,1.0,2 +38667,5,0.0,2,1.3106701374053955,168,0.0,2 +38668,5,0.0,2,1.761664628982544,169,0.0,2 +38669,5,0.0,2,1.7386648654937744,170,1.0,2 +38670,5,0.0,2,1.284670114517212,171,0.0,2 +38671,5,1.0,2,1.5566672086715698,172,1.0,2 +38672,5,1.0,2,1.714665174484253,173,1.0,2 +38673,5,1.0,2,1.9586620330810547,174,1.0,2 +38674,5,1.0,2,1.9066627025604248,175,0.0,2 +38675,5,0.0,2,2.1746649742126465,176,0.0,2 +38676,5,1.0,2,1.6016666889190674,177,1.0,2 +38677,5,1.0,2,1.96766197681427,178,1.0,2 +38678,5,1.0,2,1.6556659936904907,179,0.0,2 +38679,5,1.0,2,1.6106665134429932,180,1.0,2 +38680,5,1.0,2,1.5596672296524048,181,0.0,2 +38681,5,1.0,2,1.3756695985794067,182,0.0,2 +38682,5,1.0,2,1.7916642427444458,183,1.0,2 +38683,5,1.0,2,1.9756618738174438,184,0.0,2 +38684,5,0.0,2,1.5116678476333618,185,1.0,2 +38685,5,0.0,2,1.7526648044586182,186,0.0,2 +38686,5,1.0,2,1.2956701517105103,187,0.0,2 +38687,5,0.0,2,1.4226689338684082,188,0.0,2 +38688,5,1.0,2,1.6996654272079468,189,0.0,2 +38689,5,0.0,2,1.639666199684143,190,0.0,2 +38690,5,1.0,2,1.4206689596176147,191,1.0,2 +38691,5,1.0,2,1.455668568611145,192,0.0,2 +38692,5,0.0,2,2.1766653060913086,193,1.0,2 +38693,5,0.0,2,1.5066678524017334,194,0.0,2 +38694,5,0.0,2,2.0276613235473633,195,1.0,2 +38695,5,0.0,2,1.577666997909546,196,0.0,2 +38696,5,1.0,2,1.5286675691604614,197,1.0,2 +38697,5,1.0,2,1.739664912223816,198,1.0,2 +38698,5,1.0,2,1.6536660194396973,199,0.0,2 +38699,5,1.0,2,1.9566621780395508,200,1.0,2 +38700,5,1.0,2,1.9286625385284424,201,0.0,2 +38701,5,1.0,2,1.3786695003509521,202,0.0,2 +38702,5,1.0,2,1.5786669254302979,203,0.0,2 +38703,5,0.0,2,1.5436674356460571,204,1.0,2 +38704,5,0.0,2,1.4986679553985596,205,1.0,2 +38705,5,0.0,2,1.5636671781539917,206,1.0,2 +38706,5,0.0,2,1.2576700448989868,207,1.0,2 +38707,5,0.0,2,1.6776657104492188,208,1.0,2 +38708,5,0.0,2,1.2856700420379639,209,0.0,2 +38709,5,0.0,2,1.6456661224365234,210,0.0,2 +38710,5,0.0,2,2.106661796569824,211,0.0,2 +38711,5,0.0,2,1.544667363166809,212,1.0,2 +38712,5,0.0,2,1.7686645984649658,213,0.0,2 +38713,5,0.0,2,1.2946701049804688,214,0.0,2 +38714,5,0.0,2,1.691665530204773,215,0.0,2 +38715,5,0.0,2,1.7426648139953613,216,0.0,2 +38716,5,1.0,2,1.6346662044525146,217,0.0,2 +38717,5,0.0,2,2.1376633644104004,218,0.0,2 +38718,5,0.0,2,1.9996615648269653,219,1.0,2 +38719,5,0.0,2,1.2426700592041016,220,0.0,2 +38720,5,0.0,2,1.3456699848175049,221,0.0,2 +38721,5,1.0,2,2.248668670654297,222,0.0,2 +38722,5,0.0,2,1.3936693668365479,223,0.0,2 +38723,5,0.0,2,2.0116615295410156,224,0.0,2 +38724,5,0.0,2,1.2376699447631836,225,0.0,2 +38725,5,0.0,2,1.5056679248809814,226,1.0,2 +38726,5,0.0,2,1.4006692171096802,227,1.0,2 +38727,5,0.0,2,1.1636698246002197,228,0.0,2 +38728,5,0.0,2,1.2926701307296753,229,0.0,2 +38729,5,1.0,2,1.6536660194396973,230,0.0,2 +38730,5,1.0,2,2.0886611938476562,231,0.0,2 +38731,5,0.0,2,1.7666645050048828,232,0.0,2 +38732,5,0.0,2,1.7766644954681396,233,0.0,2 +38733,5,0.0,2,1.2706700563430786,234,0.0,2 +38734,5,0.0,2,1.4616684913635254,235,0.0,2 +38735,5,1.0,2,1.6716657876968384,236,0.0,2 +38736,5,0.0,2,2.519681215286255,237,0.0,2 +38737,5,0.0,2,1.9166626930236816,238,1.0,2 +38738,5,0.0,2,1.5536673069000244,239,1.0,2 +38739,5,0.0,2,1.4246689081192017,240,0.0,2 +38740,5,0.0,2,1.1566698551177979,241,1.0,2 +38741,5,0.0,2,1.3436700105667114,242,1.0,2 +38742,5,0.0,2,1.3476699590682983,243,1.0,2 +38743,5,0.0,2,1.544667363166809,244,0.0,2 +38744,5,1.0,2,1.5326675176620483,245,1.0,2 +38745,5,1.0,2,1.7866642475128174,246,1.0,2 +38746,5,1.0,2,1.8626632690429688,247,1.0,2 +38747,5,1.0,2,1.3506698608398438,248,1.0,2 +38748,5,1.0,2,1.5406674146652222,249,1.0,2 +38749,5,1.0,2,1.305670142173767,250,1.0,2 +38750,5,1.0,2,1.4466686248779297,251,1.0,2 +38751,5,1.0,2,1.8306636810302734,252,1.0,2 +38752,5,1.0,2,1.7726645469665527,253,1.0,2 +38753,5,1.0,2,1.6026666164398193,254,1.0,2 +38754,5,1.0,2,1.8696632385253906,255,1.0,2 +38755,5,1.0,2,1.7046654224395752,256,1.0,2 +38756,5,1.0,2,1.7906641960144043,257,0.0,2 +38757,5,1.0,2,1.5636671781539917,258,1.0,2 +38758,5,1.0,2,1.7226650714874268,259,1.0,2 +38759,5,1.0,2,1.3196702003479004,260,0.0,2 +38760,5,1.0,2,1.5606671571731567,261,0.0,2 +38761,5,1.0,2,1.7846643924713135,262,1.0,2 +38762,5,1.0,2,1.3956693410873413,263,0.0,2 +38763,5,1.0,2,1.7786643505096436,264,1.0,2 +38764,5,1.0,2,1.639666199684143,265,0.0,2 +38765,5,0.0,2,2.1856656074523926,266,0.0,2 +38766,5,0.0,2,1.45266854763031,267,0.0,2 +38767,5,0.0,2,1.6036666631698608,268,0.0,2 +38768,5,1.0,2,2.1606645584106445,269,0.0,2 +38769,5,1.0,2,1.5176677703857422,270,1.0,2 +38770,5,1.0,2,1.7346649169921875,271,0.0,2 +38771,5,1.0,2,1.574666976928711,272,1.0,2 +38772,5,1.0,2,1.7766644954681396,273,1.0,2 +38773,5,1.0,2,1.6046667098999023,274,1.0,2 +38774,5,1.0,2,1.3546698093414307,275,1.0,2 +38775,5,1.0,2,1.3016700744628906,276,1.0,2 +38776,5,1.0,2,1.8836630582809448,277,0.0,2 +38777,5,1.0,2,1.4456686973571777,278,0.0,2 +38778,5,1.0,2,1.5986666679382324,279,1.0,2 +38779,5,1.0,2,1.3616697788238525,280,1.0,2 +38780,5,1.0,2,1.3526698350906372,281,0.0,2 +38781,5,0.0,2,1.5276676416397095,282,0.0,2 +38782,5,1.0,2,1.783664345741272,283,1.0,2 +38783,5,1.0,2,1.9766619205474854,284,0.0,2 +38784,5,0.0,2,1.8916629552841187,285,0.0,2 +38785,5,0.0,2,1.8456635475158691,286,0.0,2 +38786,5,0.0,2,2.0026614665985107,287,1.0,2 +38787,5,0.0,2,1.827663779258728,288,0.0,2 +38788,5,0.0,2,1.5716670751571655,289,0.0,2 +38789,5,0.0,2,1.3356701135635376,290,1.0,2 +38790,5,0.0,2,1.3196702003479004,291,1.0,2 +38791,5,0.0,2,1.8216638565063477,292,1.0,2 +38792,5,0.0,2,1.6856656074523926,293,0.0,2 +38793,5,1.0,2,1.521667718887329,294,1.0,2 +38794,5,1.0,2,1.2156699895858765,295,0.0,2 +38795,5,0.0,2,2.1126623153686523,296,1.0,2 +38796,5,0.0,2,1.2976701259613037,297,0.0,2 +38797,5,0.0,2,1.853663444519043,298,1.0,2 +38798,5,0.0,2,1.4576685428619385,299,0.0,2 +38799,5,1.0,2,1.5576672554016113,300,1.0,2 +38800,5,1.0,2,1.4156690835952759,301,0.0,2 +38801,5,0.0,2,2.253668785095215,302,0.0,2 +38802,5,1.0,2,1.7916642427444458,303,0.0,2 +38803,5,1.0,2,1.5806670188903809,304,1.0,2 +38804,5,1.0,2,2.300671100616455,305,1.0,2 +38805,5,1.0,2,1.456668496131897,306,0.0,2 +38806,5,0.0,2,1.5576672554016113,307,0.0,2 +38807,5,1.0,2,2.0096614360809326,308,1.0,2 +38808,5,1.0,2,1.4286688566207886,309,1.0,2 +38809,5,1.0,2,1.3486698865890503,310,1.0,2 +38810,5,1.0,2,1.6706657409667969,311,1.0,2 +38811,5,1.0,2,1.5056679248809814,312,1.0,2 +38812,5,1.0,2,1.3486698865890503,313,0.0,2 +38813,5,0.0,2,1.7956641912460327,314,0.0,2 +38814,5,0.0,2,2.0066614151000977,315,0.0,2 +38815,5,1.0,2,2.3926753997802734,316,0.0,2 +38816,5,0.0,2,2.1686649322509766,317,1.0,2 +38817,5,0.0,2,1.3276702165603638,318,0.0,2 +38818,5,0.0,2,1.551667332649231,319,1.0,2 +38819,5,0.0,2,1.184669852256775,320,1.0,2 +38820,5,0.0,2,1.1606698036193848,321,1.0,2 +38821,5,0.0,2,1.8606634140014648,322,0.0,2 +38822,5,1.0,2,1.617666482925415,323,1.0,2 +38823,5,0.0,2,2.342672824859619,324,0.0,2 +38824,5,1.0,2,1.5576672554016113,325,1.0,2 +38825,5,1.0,2,1.338670015335083,326,0.0,2 +38826,5,0.0,2,1.4696683883666992,327,0.0,2 +38827,5,0.0,2,1.7336649894714355,328,0.0,2 +38828,5,0.0,2,1.8856630325317383,329,0.0,2 +38829,5,0.0,2,1.9726619720458984,330,0.0,2 +38830,5,0.0,2,1.2966700792312622,331,0.0,2 +38831,5,1.0,2,1.7746644020080566,332,0.0,2 +38832,5,0.0,2,1.8446636199951172,333,0.0,2 +38833,5,0.0,2,1.5026679039001465,334,0.0,2 +38834,5,0.0,2,1.9396623373031616,335,0.0,2 +38835,5,0.0,2,1.211669921875,336,0.0,2 +38836,5,1.0,2,1.7276650667190552,337,0.0,2 +38837,5,0.0,2,1.3726695775985718,338,1.0,2 +38838,5,0.0,2,1.238669991493225,339,0.0,2 +38839,5,0.0,2,1.624666452407837,340,1.0,2 +38840,5,0.0,2,1.4106690883636475,341,1.0,2 +38841,5,0.0,2,1.507667899131775,342,0.0,2 +38842,5,0.0,2,1.3556698560714722,343,0.0,2 +38843,5,1.0,2,1.99666166305542,344,1.0,2 +38844,5,1.0,2,1.5836669206619263,345,1.0,2 +38845,5,1.0,2,1.9996615648269653,346,1.0,2 +38846,5,0.0,2,1.1916699409484863,347,1.0,2 +38847,5,0.0,2,1.4166690111160278,348,0.0,2 +38848,5,1.0,2,1.4666683673858643,349,0.0,2 +38849,5,0.0,2,1.4736683368682861,350,0.0,2 +38850,5,1.0,2,1.4506685733795166,351,1.0,2 +38851,5,1.0,2,1.9326624870300293,352,1.0,2 +38852,5,1.0,2,1.5826668739318848,353,0.0,2 +38853,5,0.0,2,1.716665267944336,354,0.0,2 +38854,5,1.0,2,1.1856698989868164,355,1.0,2 +38855,5,1.0,2,1.6906654834747314,356,1.0,2 +38856,5,1.0,2,1.7876642942428589,357,1.0,2 +38857,5,1.0,2,1.3756695985794067,358,0.0,2 +38858,5,1.0,2,1.6586658954620361,359,0.0,2 +38859,5,0.0,2,1.4616684913635254,360,0.0,2 +38860,5,0.0,2,1.2456700801849365,361,0.0,2 +38861,5,0.0,2,1.9616620540618896,362,0.0,2 +38862,5,0.0,2,1.4966679811477661,363,1.0,2 +38863,5,0.0,2,1.2836700677871704,364,1.0,2 +38864,5,0.0,2,1.2276699542999268,365,1.0,2 +38865,5,0.0,2,1.3106701374053955,366,1.0,2 +38866,5,0.0,2,1.3526698350906372,367,0.0,2 +38867,5,0.0,2,1.6006667613983154,368,1.0,2 +38868,5,0.0,2,1.4026691913604736,369,0.0,2 +38869,5,1.0,2,1.9286625385284424,370,0.0,2 +38870,5,1.0,2,1.7826642990112305,371,1.0,2 +38871,5,1.0,2,1.8896629810333252,372,0.0,2 +38872,5,1.0,2,1.2186700105667114,373,0.0,2 +38873,5,1.0,2,1.9746618270874023,374,1.0,2 +38874,5,1.0,2,2.228667736053467,375,0.0,2 +38875,5,1.0,2,2.000661611557007,376,1.0,2 +38876,5,1.0,2,1.7336649894714355,377,1.0,2 +38877,5,1.0,2,1.2316700220108032,378,1.0,2 +38878,5,1.0,2,1.6056666374206543,379,1.0,2 +38879,5,1.0,2,1.4716683626174927,380,1.0,2 +38880,5,1.0,2,1.500667929649353,381,1.0,2 +38881,5,0.0,2,1.9816617965698242,382,0.0,2 +38882,5,1.0,2,1.24167001247406,383,0.0,2 +38883,5,0.0,2,1.6866655349731445,384,1.0,2 +38884,5,0.0,2,1.7516647577285767,385,1.0,2 +38885,5,0.0,2,1.3926693201065063,386,0.0,2 +38886,5,1.0,2,1.3216701745986938,387,0.0,2 +38887,5,1.0,2,1.4486685991287231,388,0.0,2 +38888,5,1.0,2,1.5946667194366455,389,0.0,2 +38889,5,1.0,2,1.64366614818573,390,0.0,2 +38890,5,0.0,2,1.5246676206588745,391,0.0,2 +38891,5,1.0,2,1.5946667194366455,392,1.0,2 +38892,5,1.0,2,2.6636879444122314,393,0.0,2 +38893,5,0.0,2,1.9336624145507812,394,1.0,2 +38894,5,0.0,2,1.2806700468063354,395,0.0,2 +38895,5,1.0,2,1.7726645469665527,396,0.0,2 +38896,5,0.0,2,1.548667311668396,397,0.0,2 +38897,5,1.0,2,1.5166677236557007,398,0.0,2 +38898,5,0.0,2,1.854663372039795,399,1.0,2 +38899,5,0.0,2,2.317671775817871,400,1.0,2 +38900,5,0.0,2,1.8576633930206299,401,1.0,2 +38901,5,0.0,2,1.7846643924713135,402,0.0,2 +38902,5,0.0,2,2.1946659088134766,403,1.0,2 +38903,5,0.0,2,1.3616697788238525,404,0.0,2 +38904,5,0.0,2,1.3936693668365479,405,1.0,2 +38905,5,0.0,2,1.45266854763031,406,1.0,2 +38906,5,0.0,2,1.3456699848175049,407,1.0,2 +38907,5,0.0,2,1.2466700077056885,408,1.0,2 +38908,5,0.0,2,1.2216699123382568,409,1.0,2 +38909,5,0.0,2,1.451668620109558,410,1.0,2 +38910,5,0.0,2,1.8676632642745972,411,1.0,2 +38911,5,0.0,2,1.251670002937317,412,0.0,2 +38912,5,0.0,2,1.3976693153381348,413,0.0,2 +38913,5,1.0,2,1.570667028427124,414,1.0,2 +38914,5,1.0,2,1.5336675643920898,415,1.0,2 +38915,5,1.0,2,1.4626684188842773,416,0.0,2 +38916,5,0.0,2,1.6316663026809692,417,1.0,2 +38917,5,0.0,2,1.4766682386398315,418,0.0,2 +38918,5,1.0,2,2.091661214828491,419,0.0,2 +38919,5,1.0,2,2.2466683387756348,420,0.0,2 +38920,5,1.0,2,1.2976701259613037,421,1.0,2 +38921,5,1.0,2,1.8146638870239258,422,0.0,2 +38922,5,0.0,2,1.390669345855713,423,1.0,2 +38923,5,0.0,2,1.6236664056777954,424,0.0,2 +38924,5,1.0,2,1.2796701192855835,425,0.0,2 +38925,5,0.0,2,1.5546672344207764,426,1.0,2 +38926,5,0.0,2,1.574666976928711,427,0.0,2 +38927,5,0.0,2,1.566667079925537,428,0.0,2 +38928,5,0.0,2,1.8776631355285645,429,1.0,2 +38929,5,0.0,2,1.3236701488494873,430,0.0,2 +38930,5,0.0,2,1.407669186592102,431,1.0,2 +38931,5,0.0,2,1.3846694231033325,432,0.0,2 +38932,5,0.0,2,1.2836700677871704,433,0.0,2 +38933,5,1.0,2,1.8326637744903564,434,0.0,2 +38934,5,1.0,2,1.7346649169921875,435,1.0,2 +38935,5,1.0,2,1.477668285369873,436,1.0,2 +38936,5,1.0,2,1.3696696758270264,437,1.0,2 +38937,5,1.0,2,1.8586633205413818,438,0.0,2 +38938,5,1.0,2,2.232667922973633,439,1.0,2 +38939,5,1.0,2,1.854663372039795,440,0.0,2 +38940,5,0.0,2,1.6456661224365234,441,0.0,2 +38941,5,0.0,2,1.2676700353622437,442,1.0,2 +38942,5,0.0,2,1.4006692171096802,443,1.0,2 +38943,5,0.0,2,1.360669732093811,444,0.0,2 +38944,5,0.0,2,1.2956701517105103,445,0.0,2 +38945,5,1.0,2,1.5936667919158936,446,1.0,2 +38946,5,1.0,2,2.098661422729492,447,0.0,2 +38947,5,0.0,2,1.4756683111190796,448,1.0,2 +38948,5,0.0,2,1.66666579246521,449,0.0,2 +38949,5,1.0,2,1.4636684656143188,450,0.0,2 +38950,5,1.0,2,1.7196651697158813,451,1.0,2 +38951,5,1.0,2,1.4646683931350708,452,0.0,2 +38952,5,1.0,2,1.4326688051223755,453,1.0,2 +38953,5,1.0,2,1.3686696290969849,454,1.0,2 +38954,5,1.0,2,2.332672595977783,455,0.0,2 +38955,5,0.0,2,1.4666683673858643,456,0.0,2 +38956,5,0.0,2,1.4356688261032104,457,0.0,2 +38957,5,0.0,2,1.7696645259857178,458,1.0,2 +38958,5,0.0,2,1.4216690063476562,459,1.0,2 +38959,5,0.0,2,1.3576698303222656,460,0.0,2 +38960,5,0.0,2,1.900662899017334,461,1.0,2 +38961,5,0.0,2,1.1526697874069214,462,0.0,2 +38962,5,0.0,2,1.6266663074493408,463,1.0,2 +38963,5,0.0,2,2.0756607055664062,464,1.0,2 +38964,5,0.0,2,1.757664680480957,465,1.0,2 +38965,5,1.0,2,1.8126640319824219,466,0.0,2 +38966,5,1.0,2,1.6156665086746216,467,1.0,2 +38967,5,0.0,2,2.4176764488220215,468,0.0,2 +38968,5,1.0,2,1.8036640882492065,469,1.0,2 +38969,5,1.0,2,1.8356636762619019,470,0.0,2 +38970,5,1.0,2,1.3836694955825806,471,1.0,2 +38971,5,1.0,2,2.2126669883728027,472,0.0,2 +38972,5,0.0,2,1.7516647577285767,473,1.0,2 +38973,5,0.0,2,1.3486698865890503,474,0.0,2 +38974,5,1.0,2,1.8866629600524902,475,1.0,2 +38975,5,0.0,2,1.5866668224334717,476,1.0,2 +38976,5,0.0,2,1.3316701650619507,477,1.0,2 +38977,5,0.0,2,1.2986701726913452,478,0.0,2 +38978,5,1.0,2,1.779664397239685,479,0.0,2 +38979,5,0.0,2,2.3736743927001953,480,0.0,2 +38980,5,0.0,2,1.2586700916290283,481,0.0,2 +38981,5,1.0,2,1.848663568496704,482,0.0,2 +38982,5,1.0,2,2.0516610145568848,483,1.0,2 +38983,5,1.0,2,1.6726658344268799,484,0.0,2 +38984,5,0.0,2,1.3506698608398438,485,0.0,2 +38985,5,0.0,2,1.5466673374176025,486,1.0,2 +38986,5,0.0,2,1.4416687488555908,487,1.0,2 +38987,5,0.0,2,1.5066678524017334,488,1.0,2 +38988,5,0.0,2,1.3456699848175049,489,0.0,2 +38989,5,0.0,2,2.1946659088134766,490,0.0,2 +38990,5,1.0,2,1.9316624402999878,491,1.0,2 +38991,5,1.0,2,1.3046700954437256,492,1.0,2 +38992,5,1.0,2,2.1336631774902344,493,1.0,2 +38993,5,1.0,2,1.9626619815826416,494,1.0,2 +38994,5,1.0,2,1.5426673889160156,495,1.0,2 +38995,5,1.0,2,1.8366637229919434,496,1.0,2 +38996,5,1.0,2,1.664665937423706,497,1.0,2 +38997,5,0.0,2,1.503667950630188,498,0.0,2 +38998,5,0.0,2,1.8406636714935303,499,1.0,2 +38999,5,1.0,2,2.4416775703430176,500,0.0,2 +39000,6,1.0,0,1.2944056987762451,1,1.0,2 +39001,6,1.0,0,1.2854057550430298,2,1.0,2 +39002,6,1.0,0,1.7933993339538574,3,1.0,2 +39003,6,0.0,0,1.3764046430587769,4,0.0,2 +39004,6,1.0,0,1.7264001369476318,5,1.0,2 +39005,6,1.0,0,1.4984030723571777,6,1.0,2 +39006,6,1.0,0,1.4934030771255493,7,1.0,2 +39007,6,1.0,0,1.4034042358398438,8,1.0,2 +39008,6,1.0,0,1.2854057550430298,9,0.0,2 +39009,6,1.0,0,1.3004056215286255,10,1.0,2 +39010,6,1.0,0,1.5064029693603516,11,1.0,2 +39011,6,1.0,0,1.4984030723571777,12,1.0,2 +39012,6,1.0,0,1.3004056215286255,13,1.0,2 +39013,6,1.0,0,1.6144015789031982,14,1.0,2 +39014,6,1.0,0,1.3534048795700073,15,0.0,2 +39015,6,0.0,0,1.652401089668274,16,0.0,2 +39016,6,0.0,0,1.7583997249603271,17,0.0,2 +39017,6,1.0,0,1.8293988704681396,18,1.0,2 +39018,6,1.0,0,1.465403437614441,19,0.0,2 +39019,6,1.0,0,1.8333988189697266,20,1.0,2 +39020,6,1.0,0,1.2564059495925903,21,0.0,2 +39021,6,1.0,0,1.2524058818817139,22,1.0,2 +39022,6,0.0,0,1.3824045658111572,23,0.0,2 +39023,6,1.0,0,1.3104054927825928,24,0.0,2 +39024,6,1.0,0,1.276405930519104,25,1.0,2 +39025,6,1.0,0,1.7353999614715576,26,0.0,2 +39026,6,0.0,0,1.9003978967666626,27,0.0,2 +39027,6,0.0,0,1.3574048280715942,28,0.0,2 +39028,6,1.0,0,1.6584010124206543,29,1.0,2 +39029,6,1.0,0,1.3334051370620728,30,1.0,2 +39030,6,1.0,0,1.7583997249603271,31,1.0,2 +39031,6,1.0,0,1.2744059562683105,32,1.0,2 +39032,6,0.0,0,1.2404059171676636,33,0.0,2 +39033,6,1.0,0,1.3334051370620728,34,1.0,2 +39034,6,1.0,0,1.579401969909668,35,1.0,2 +39035,6,1.0,0,1.7244001626968384,36,1.0,2 +39036,6,1.0,0,1.4444037675857544,37,1.0,2 +39037,6,1.0,0,1.2634059190750122,38,1.0,2 +39038,6,1.0,0,1.7234001159667969,39,1.0,2 +39039,6,1.0,0,2.221405506134033,40,1.0,2 +39040,6,1.0,0,1.5284026861190796,41,1.0,2 +39041,6,1.0,0,1.4544036388397217,42,1.0,2 +39042,6,1.0,0,1.6684008836746216,43,1.0,2 +39043,6,1.0,0,1.5974018573760986,44,1.0,2 +39044,6,1.0,0,1.2214058637619019,45,0.0,2 +39045,6,0.0,0,1.1394057273864746,46,1.0,2 +39046,6,0.0,0,1.3444050550460815,47,0.0,2 +39047,6,1.0,0,1.412404179573059,48,0.0,2 +39048,6,0.0,0,2.162402868270874,49,0.0,2 +39049,6,0.0,0,2.2404065132141113,50,0.0,2 +39050,6,0.0,0,1.4694033861160278,51,0.0,2 +39051,6,1.0,0,1.2314058542251587,52,1.0,2 +39052,6,1.0,0,1.3364051580429077,53,1.0,2 +39053,6,1.0,0,2.135401725769043,54,1.0,2 +39054,6,1.0,0,1.2404059171676636,55,1.0,2 +39055,6,1.0,0,1.5164028406143188,56,1.0,2 +39056,6,1.0,0,1.630401372909546,57,0.0,2 +39057,6,1.0,0,2.5824224948883057,58,1.0,2 +39058,6,1.0,0,1.4364038705825806,59,1.0,2 +39059,6,1.0,0,1.7334001064300537,60,1.0,2 +39060,6,1.0,0,1.508402943611145,61,1.0,2 +39061,6,1.0,0,1.2624058723449707,62,1.0,2 +39062,6,1.0,0,1.0924055576324463,63,0.0,2 +39063,6,0.0,0,1.8303987979888916,64,0.0,2 +39064,6,0.0,0,1.4954030513763428,65,0.0,2 +39065,6,1.0,0,1.7014005184173584,66,0.0,2 +39066,6,0.0,0,1.249405860900879,67,0.0,2 +39067,6,0.0,0,1.3824045658111572,68,0.0,2 +39068,6,0.0,0,1.8373987674713135,69,0.0,2 +39069,6,1.0,0,1.6644009351730347,70,1.0,2 +39070,6,1.0,0,1.4634034633636475,71,1.0,2 +39071,6,1.0,0,1.4084042310714722,72,1.0,2 +39072,6,1.0,0,1.439403772354126,73,1.0,2 +39073,6,1.0,0,1.2544059753417969,74,1.0,2 +39074,6,1.0,0,1.7254002094268799,75,1.0,2 +39075,6,1.0,0,1.3784046173095703,76,0.0,2 +39076,6,1.0,0,1.3344051837921143,77,1.0,2 +39077,6,1.0,0,1.3924044370651245,78,1.0,2 +39078,6,1.0,0,1.4484037160873413,79,1.0,2 +39079,6,1.0,0,1.4944031238555908,80,1.0,2 +39080,6,1.0,0,1.1994057893753052,81,0.0,2 +39081,6,1.0,0,1.560402274131775,82,1.0,2 +39082,6,1.0,0,1.3934043645858765,83,1.0,2 +39083,6,1.0,0,1.9343974590301514,84,1.0,2 +39084,6,1.0,0,1.3974043130874634,85,0.0,2 +39085,6,0.0,0,1.8783981800079346,86,0.0,2 +39086,6,0.0,0,2.5734219551086426,87,0.0,2 +39087,6,0.0,0,1.6544010639190674,88,0.0,2 +39088,6,0.0,0,1.4804033041000366,89,0.0,2 +39089,6,0.0,0,1.2304058074951172,90,0.0,2 +39090,6,0.0,0,1.1314057111740112,91,0.0,2 +39091,6,1.0,0,1.817399024963379,92,1.0,2 +39092,6,1.0,0,1.350404977798462,93,1.0,2 +39093,6,1.0,0,1.4504036903381348,94,0.0,2 +39094,6,1.0,0,1.530402660369873,95,1.0,2 +39095,6,1.0,0,1.6544010639190674,96,0.0,2 +39096,6,0.0,0,1.2064058780670166,97,0.0,2 +39097,6,0.0,0,1.368404746055603,98,0.0,2 +39098,6,1.0,0,1.5254027843475342,99,1.0,2 +39099,6,1.0,0,1.9703969955444336,100,1.0,2 +39100,6,1.0,0,1.368404746055603,101,1.0,2 +39101,6,1.0,0,1.535402536392212,102,1.0,2 +39102,6,1.0,0,1.7863993644714355,103,1.0,2 +39103,6,1.0,0,2.0453972816467285,104,1.0,2 +39104,6,1.0,0,1.439403772354126,105,1.0,2 +39105,6,1.0,0,1.3884044885635376,106,1.0,2 +39106,6,1.0,0,1.3194053173065186,107,1.0,2 +39107,6,1.0,0,1.205405831336975,108,1.0,2 +39108,6,1.0,0,1.6404012441635132,109,1.0,2 +39109,6,1.0,0,2.0463974475860596,110,0.0,2 +39110,6,0.0,0,1.4534035921096802,111,0.0,2 +39111,6,0.0,0,1.8773982524871826,112,1.0,2 +39112,6,0.0,0,1.6474010944366455,113,0.0,2 +39113,6,1.0,0,1.535402536392212,114,0.0,2 +39114,6,0.0,0,1.4414037466049194,115,0.0,2 +39115,6,1.0,0,2.3004093170166016,116,1.0,2 +39116,6,1.0,0,1.3884044885635376,117,1.0,2 +39117,6,1.0,0,1.4024043083190918,118,1.0,2 +39118,6,1.0,0,1.2234058380126953,119,1.0,2 +39119,6,1.0,0,1.7074003219604492,120,1.0,2 +39120,6,1.0,0,1.740399956703186,121,1.0,2 +39121,6,1.0,0,1.3264052867889404,122,1.0,2 +39122,6,1.0,0,1.34340500831604,123,1.0,2 +39123,6,1.0,0,1.5614023208618164,124,1.0,2 +39124,6,1.0,0,1.6454012393951416,125,1.0,2 +39125,6,1.0,0,1.2264058589935303,126,1.0,2 +39126,6,1.0,0,1.530402660369873,127,0.0,2 +39127,6,1.0,0,1.9903967380523682,128,0.0,2 +39128,6,0.0,0,1.3084055185317993,129,0.0,2 +39129,6,0.0,0,1.465403437614441,130,0.0,2 +39130,6,1.0,0,2.0463974475860596,131,1.0,2 +39131,6,1.0,0,1.905397891998291,132,1.0,2 +39132,6,1.0,0,1.5384025573730469,133,0.0,2 +39133,6,0.0,0,1.8653984069824219,134,0.0,2 +39134,6,0.0,0,1.3804045915603638,135,1.0,2 +39135,6,0.0,0,1.3264052867889404,136,0.0,2 +39136,6,0.0,0,1.3484050035476685,137,0.0,2 +39137,6,1.0,0,1.8963979482650757,138,1.0,2 +39138,6,1.0,0,1.8263988494873047,139,0.0,2 +39139,6,1.0,0,1.2844058275222778,140,0.0,2 +39140,6,0.0,0,1.3274052143096924,141,0.0,2 +39141,6,1.0,0,1.2504059076309204,142,1.0,2 +39142,6,1.0,0,1.5954017639160156,143,1.0,2 +39143,6,1.0,0,1.6494011878967285,144,1.0,2 +39144,6,1.0,0,1.8933980464935303,145,1.0,2 +39145,6,1.0,0,1.37240469455719,146,1.0,2 +39146,6,1.0,0,1.5504024028778076,147,1.0,2 +39147,6,1.0,0,1.6454012393951416,148,1.0,2 +39148,6,1.0,0,1.3834044933319092,149,1.0,2 +39149,6,1.0,0,1.2834057807922363,150,1.0,2 +39150,6,1.0,0,1.2414058446884155,151,1.0,2 +39151,6,1.0,0,1.4754033088684082,152,1.0,2 +39152,6,1.0,0,1.7563997507095337,153,1.0,2 +39153,6,1.0,0,1.3784046173095703,154,1.0,2 +39154,6,1.0,0,1.303405523300171,155,1.0,2 +39155,6,1.0,0,1.2134058475494385,156,1.0,2 +39156,6,1.0,0,1.3144054412841797,157,1.0,2 +39157,6,1.0,0,1.2874057292938232,158,1.0,2 +39158,6,1.0,0,1.9743969440460205,159,1.0,2 +39159,6,1.0,0,1.5484024286270142,160,1.0,2 +39160,6,1.0,0,1.2614059448242188,161,1.0,2 +39161,6,1.0,0,1.3314051628112793,162,1.0,2 +39162,6,1.0,0,1.6544010639190674,163,1.0,2 +39163,6,1.0,0,1.3454049825668335,164,1.0,2 +39164,6,1.0,0,1.6794006824493408,165,1.0,2 +39165,6,1.0,0,1.4044042825698853,166,1.0,2 +39166,6,1.0,0,1.37240469455719,167,1.0,2 +39167,6,1.0,0,2.0523977279663086,168,0.0,2 +39168,6,0.0,0,1.7393999099731445,169,0.0,2 +39169,6,0.0,0,1.6624009609222412,170,0.0,2 +39170,6,0.0,0,2.176403522491455,171,0.0,2 +39171,6,0.0,0,1.346405029296875,172,0.0,2 +39172,6,0.0,0,1.2964056730270386,173,0.0,2 +39173,6,1.0,0,1.346405029296875,174,1.0,2 +39174,6,1.0,0,1.3484050035476685,175,1.0,2 +39175,6,1.0,0,1.5154027938842773,176,1.0,2 +39176,6,1.0,0,1.7274000644683838,177,1.0,2 +39177,6,1.0,0,1.3374050855636597,178,1.0,2 +39178,6,1.0,0,1.9643970727920532,179,1.0,2 +39179,6,0.0,0,1.5464024543762207,180,0.0,2 +39180,6,1.0,0,1.3074054718017578,181,1.0,2 +39181,6,1.0,0,1.581402063369751,182,1.0,2 +39182,6,1.0,0,1.2704060077667236,183,1.0,2 +39183,6,1.0,0,1.2284058332443237,184,0.0,2 +39184,6,0.0,0,1.2694059610366821,185,0.0,2 +39185,6,1.0,0,1.442403793334961,186,1.0,2 +39186,6,0.0,0,1.8743982315063477,187,0.0,2 +39187,6,1.0,0,1.3794045448303223,188,1.0,2 +39188,6,1.0,0,1.7873992919921875,189,1.0,2 +39189,6,1.0,0,1.6894006729125977,190,1.0,2 +39190,6,1.0,0,1.3534048795700073,191,1.0,2 +39191,6,1.0,0,1.298405647277832,192,1.0,2 +39192,6,1.0,0,1.5544023513793945,193,1.0,2 +39193,6,1.0,0,1.4954030513763428,194,1.0,2 +39194,6,1.0,0,1.4964030981063843,195,1.0,2 +39195,6,1.0,0,1.7274000644683838,196,1.0,2 +39196,6,1.0,0,1.5134028196334839,197,1.0,2 +39197,6,1.0,0,1.7314000129699707,198,0.0,2 +39198,6,0.0,0,1.714400291442871,199,0.0,2 +39199,6,0.0,0,1.277405858039856,200,0.0,2 +39200,6,1.0,0,1.299405574798584,201,1.0,2 +39201,6,1.0,0,1.211405873298645,202,0.0,2 +39202,6,1.0,0,1.342405080795288,203,1.0,2 +39203,6,1.0,0,1.5894019603729248,204,1.0,2 +39204,6,1.0,0,1.744399905204773,205,0.0,2 +39205,6,0.0,0,1.5264027118682861,206,0.0,2 +39206,6,1.0,0,1.5954017639160156,207,0.0,2 +39207,6,0.0,0,1.4994029998779297,208,1.0,2 +39208,6,0.0,0,1.1864057779312134,209,0.0,2 +39209,6,0.0,0,1.280405879020691,210,0.0,2 +39210,6,0.0,0,1.8383986949920654,211,0.0,2 +39211,6,1.0,0,1.6034016609191895,212,1.0,2 +39212,6,1.0,0,1.387404441833496,213,1.0,2 +39213,6,1.0,0,1.5614023208618164,214,1.0,2 +39214,6,1.0,0,1.1974058151245117,215,1.0,2 +39215,6,1.0,0,1.3564049005508423,216,1.0,2 +39216,6,1.0,0,1.365404725074768,217,1.0,2 +39217,6,1.0,0,1.346405029296875,218,0.0,2 +39218,6,0.0,0,1.4674034118652344,219,0.0,2 +39219,6,0.0,0,1.4924031496047974,220,1.0,2 +39220,6,0.0,0,1.5934019088745117,221,0.0,2 +39221,6,1.0,0,1.2144057750701904,222,0.0,2 +39222,6,0.0,0,1.9883967638015747,223,0.0,2 +39223,6,1.0,0,2.384413242340088,224,1.0,2 +39224,6,1.0,0,1.3794045448303223,225,1.0,2 +39225,6,1.0,0,1.7423999309539795,226,1.0,2 +39226,6,1.0,0,1.4764033555984497,227,0.0,2 +39227,6,1.0,0,1.998396635055542,228,1.0,2 +39228,6,0.0,0,1.20840585231781,229,0.0,2 +39229,6,1.0,0,1.3324052095413208,230,1.0,2 +39230,6,1.0,0,1.6114015579223633,231,1.0,2 +39231,6,1.0,0,1.4744033813476562,232,0.0,2 +39232,6,1.0,0,1.9753968715667725,233,1.0,2 +39233,6,1.0,0,1.1954058408737183,234,1.0,2 +39234,6,1.0,0,1.8373987674713135,235,1.0,2 +39235,6,1.0,0,1.4284039735794067,236,1.0,2 +39236,6,1.0,0,1.6124016046524048,237,1.0,2 +39237,6,1.0,0,1.8563984632492065,238,1.0,2 +39238,6,1.0,0,1.4564036130905151,239,0.0,2 +39239,6,0.0,0,1.3634047508239746,240,0.0,2 +39240,6,0.0,0,1.2264058589935303,241,1.0,2 +39241,6,0.0,0,1.4224040508270264,242,1.0,2 +39242,6,0.0,0,1.600401759147644,243,0.0,2 +39243,6,0.0,0,1.7344000339508057,244,0.0,2 +39244,6,0.0,0,1.7294001579284668,245,0.0,2 +39245,6,1.0,0,1.670400857925415,246,1.0,2 +39246,6,1.0,0,1.7833993434906006,247,1.0,2 +39247,6,1.0,0,1.4444037675857544,248,1.0,2 +39248,6,1.0,0,1.2864058017730713,249,1.0,2 +39249,6,1.0,0,1.4684034585952759,250,1.0,2 +39250,6,1.0,0,1.4244040250778198,251,0.0,2 +39251,6,0.0,0,1.5994017124176025,252,0.0,2 +39252,6,0.0,0,1.5034029483795166,253,1.0,2 +39253,6,0.0,0,1.1544057130813599,254,0.0,2 +39254,6,1.0,0,1.6184015274047852,255,1.0,2 +39255,6,1.0,0,1.9773969650268555,256,1.0,2 +39256,6,1.0,0,1.6834006309509277,257,0.0,2 +39257,6,0.0,0,1.9863967895507812,258,0.0,2 +39258,6,0.0,0,1.1434056758880615,259,0.0,2 +39259,6,1.0,0,2.2484068870544434,260,1.0,2 +39260,6,1.0,0,1.4984030723571777,261,1.0,2 +39261,6,1.0,0,1.585402011871338,262,1.0,2 +39262,6,1.0,0,1.8203989267349243,263,1.0,2 +39263,6,0.0,0,1.32040536403656,264,0.0,2 +39264,6,1.0,0,1.4594035148620605,265,1.0,2 +39265,6,1.0,0,1.832398772239685,266,1.0,2 +39266,6,1.0,0,1.1944057941436768,267,1.0,2 +39267,6,1.0,0,1.1834057569503784,268,1.0,2 +39268,6,1.0,0,2.0533976554870605,269,1.0,2 +39269,6,1.0,0,1.2354059219360352,270,1.0,2 +39270,6,1.0,0,1.4794032573699951,271,1.0,2 +39271,6,1.0,0,2.0293965339660645,272,0.0,2 +39272,6,1.0,0,1.950397253036499,273,1.0,2 +39273,6,1.0,0,1.321405291557312,274,1.0,2 +39274,6,1.0,0,1.4294039011001587,275,1.0,2 +39275,6,1.0,0,1.9083977937698364,276,1.0,2 +39276,6,1.0,0,1.4214040040969849,277,0.0,2 +39277,6,0.0,0,1.5284026861190796,278,0.0,2 +39278,6,1.0,0,1.6434011459350586,279,1.0,2 +39279,6,1.0,0,1.3104054927825928,280,1.0,2 +39280,6,1.0,0,1.464403510093689,281,1.0,2 +39281,6,0.0,0,1.2964056730270386,282,0.0,2 +39282,6,1.0,0,1.2434059381484985,283,1.0,2 +39283,6,1.0,0,1.5664021968841553,284,0.0,2 +39284,6,1.0,0,2.0573978424072266,285,1.0,2 +39285,6,1.0,0,1.5434024333953857,286,1.0,2 +39286,6,1.0,0,1.4994029998779297,287,1.0,2 +39287,6,0.0,0,1.2544059753417969,288,0.0,2 +39288,6,1.0,0,1.9783968925476074,289,1.0,2 +39289,6,1.0,0,1.4794032573699951,290,1.0,2 +39290,6,1.0,0,1.8643983602523804,291,1.0,2 +39291,6,0.0,0,1.2374058961868286,292,0.0,2 +39292,6,1.0,0,1.2304058074951172,293,1.0,2 +39293,6,1.0,0,2.3074097633361816,294,1.0,2 +39294,6,1.0,0,1.483403205871582,295,1.0,2 +39295,6,1.0,0,1.3774045705795288,296,1.0,2 +39296,6,1.0,0,1.39540433883667,297,1.0,2 +39297,6,1.0,0,1.3584048748016357,298,1.0,2 +39298,6,1.0,0,1.3454049825668335,299,0.0,2 +39299,6,0.0,0,1.7823994159698486,300,0.0,2 +39300,6,0.0,0,1.7993991374969482,301,1.0,2 +39301,6,0.0,0,1.412404179573059,302,0.0,2 +39302,6,0.0,0,1.3004056215286255,303,0.0,2 +39303,6,0.0,0,1.439403772354126,304,0.0,2 +39304,6,1.0,0,1.9673969745635986,305,1.0,2 +39305,6,1.0,0,1.2874057292938232,306,1.0,2 +39306,6,0.0,0,2.225405693054199,307,0.0,2 +39307,6,1.0,0,1.4764033555984497,308,1.0,2 +39308,6,1.0,0,1.2374058961868286,309,1.0,2 +39309,6,1.0,0,1.4484037160873413,310,1.0,2 +39310,6,1.0,0,1.8743982315063477,311,1.0,2 +39311,6,1.0,0,1.652401089668274,312,1.0,2 +39312,6,1.0,0,1.3064055442810059,313,1.0,2 +39313,6,1.0,0,1.248405933380127,314,1.0,2 +39314,6,1.0,0,1.6984004974365234,315,1.0,2 +39315,6,1.0,0,1.3754045963287354,316,1.0,2 +39316,6,1.0,0,1.531402587890625,317,0.0,2 +39317,6,0.0,0,2.0393972396850586,318,0.0,2 +39318,6,0.0,0,2.0233964920043945,319,0.0,2 +39319,6,1.0,0,1.2694059610366821,320,1.0,2 +39320,6,1.0,0,1.2384059429168701,321,1.0,2 +39321,6,1.0,0,1.5654022693634033,322,1.0,2 +39322,6,1.0,0,1.212405800819397,323,1.0,2 +39323,6,1.0,0,1.6814007759094238,324,1.0,2 +39324,6,1.0,0,1.8203989267349243,325,1.0,2 +39325,6,1.0,0,1.5404025316238403,326,1.0,2 +39326,6,1.0,0,1.1974058151245117,327,1.0,2 +39327,6,1.0,0,1.3534048795700073,328,1.0,2 +39328,6,1.0,0,1.9873967170715332,329,0.0,2 +39329,6,1.0,0,1.2854057550430298,330,1.0,2 +39330,6,1.0,0,1.5164028406143188,331,1.0,2 +39331,6,1.0,0,1.5174027681350708,332,1.0,2 +39332,6,1.0,0,1.7873992919921875,333,1.0,2 +39333,6,1.0,0,1.2874057292938232,334,1.0,2 +39334,6,1.0,0,1.3324052095413208,335,1.0,2 +39335,6,0.0,0,2.5244197845458984,336,0.0,2 +39336,6,1.0,0,1.2944056987762451,337,1.0,2 +39337,6,1.0,0,1.273405909538269,338,1.0,2 +39338,6,1.0,0,1.6564010381698608,339,1.0,2 +39339,6,1.0,0,1.8083990812301636,340,1.0,2 +39340,6,1.0,0,1.4274039268493652,341,1.0,2 +39341,6,1.0,0,1.3794045448303223,342,1.0,2 +39342,6,1.0,0,1.9823968410491943,343,1.0,2 +39343,6,1.0,0,1.4524036645889282,344,0.0,2 +39344,6,0.0,0,1.4924031496047974,345,0.0,2 +39345,6,0.0,0,1.3614047765731812,346,0.0,2 +39346,6,1.0,0,2.0363969802856445,347,1.0,2 +39347,6,1.0,0,1.303405523300171,348,1.0,2 +39348,6,1.0,0,1.7014005184173584,349,1.0,2 +39349,6,1.0,0,1.6884006261825562,350,1.0,2 +39350,6,1.0,0,1.3984043598175049,351,0.0,2 +39351,6,0.0,0,1.6914005279541016,352,1.0,2 +39352,6,0.0,0,1.3604048490524292,353,1.0,2 +39353,6,0.0,0,1.4304039478302002,354,0.0,2 +39354,6,1.0,0,1.3444050550460815,355,1.0,2 +39355,6,1.0,0,1.3774045705795288,356,1.0,2 +39356,6,1.0,0,1.317405343055725,357,1.0,2 +39357,6,1.0,0,1.5534024238586426,358,1.0,2 +39358,6,1.0,0,1.4414037466049194,359,1.0,2 +39359,6,1.0,0,1.3454049825668335,360,0.0,2 +39360,6,1.0,0,1.670400857925415,361,1.0,2 +39361,6,1.0,0,1.50540292263031,362,1.0,2 +39362,6,1.0,0,1.5214027166366577,363,1.0,2 +39363,6,1.0,0,1.6644009351730347,364,1.0,2 +39364,6,0.0,0,1.369404673576355,365,0.0,2 +39365,6,1.0,0,1.2814058065414429,366,1.0,2 +39366,6,0.0,0,1.8563984632492065,367,1.0,2 +39367,6,1.0,0,1.4034042358398438,368,1.0,2 +39368,6,0.0,0,2.172403335571289,369,1.0,2 +39369,6,1.0,0,1.7364000082015991,370,1.0,2 +39370,6,0.0,0,1.3704047203063965,371,0.0,2 +39371,6,1.0,0,1.8643983602523804,372,1.0,2 +39372,6,1.0,0,1.218405842781067,373,1.0,2 +39373,6,1.0,0,1.438403844833374,374,0.0,2 +39374,6,0.0,0,1.321405291557312,375,0.0,2 +39375,6,1.0,0,1.6314013004302979,376,1.0,2 +39376,6,1.0,0,1.251405954360962,377,1.0,2 +39377,6,1.0,0,1.3294051885604858,378,0.0,2 +39378,6,0.0,0,1.321405291557312,379,0.0,2 +39379,6,0.0,0,1.4004043340682983,380,0.0,2 +39380,6,0.0,0,1.9713969230651855,381,1.0,2 +39381,6,0.0,0,1.212405800819397,382,0.0,2 +39382,6,0.0,0,1.2834057807922363,383,1.0,2 +39383,6,0.0,0,1.324405312538147,384,0.0,2 +39384,6,0.0,0,1.4994029998779297,385,0.0,2 +39385,6,1.0,0,1.2344058752059937,386,1.0,2 +39386,6,1.0,0,1.9963966608047485,387,0.0,2 +39387,6,1.0,0,1.8813982009887695,388,0.0,2 +39388,6,1.0,0,1.7374000549316406,389,1.0,2 +39389,6,1.0,0,1.3084055185317993,390,0.0,2 +39390,6,1.0,0,1.2564059495925903,391,1.0,2 +39391,6,1.0,0,1.3794045448303223,392,1.0,2 +39392,6,1.0,0,1.4494036436080933,393,1.0,2 +39393,6,1.0,0,1.5504024028778076,394,1.0,2 +39394,6,1.0,0,1.552402377128601,395,1.0,2 +39395,6,1.0,0,1.8013992309570312,396,1.0,2 +39396,6,1.0,0,1.5284026861190796,397,0.0,2 +39397,6,0.0,0,2.199404716491699,398,0.0,2 +39398,6,0.0,0,1.218405842781067,399,1.0,2 +39399,6,0.0,0,1.2694059610366821,400,1.0,2 +39400,6,0.0,0,1.2714059352874756,401,0.0,2 +39401,6,0.0,0,1.3084055185317993,402,0.0,2 +39402,6,1.0,0,1.2934056520462036,403,1.0,2 +39403,6,1.0,0,1.5144028663635254,404,1.0,2 +39404,6,1.0,0,1.2274059057235718,405,1.0,2 +39405,6,1.0,0,1.4114041328430176,406,0.0,2 +39406,6,0.0,0,2.0213963985443115,407,0.0,2 +39407,6,1.0,0,1.4144041538238525,408,1.0,2 +39408,6,1.0,0,1.3194053173065186,409,1.0,2 +39409,6,1.0,0,1.1894057989120483,410,0.0,2 +39410,6,1.0,0,1.2884057760238647,411,0.0,2 +39411,6,0.0,0,2.0533976554870605,412,0.0,2 +39412,6,1.0,0,2.0393972396850586,413,1.0,2 +39413,6,1.0,0,1.4884032011032104,414,1.0,2 +39414,6,1.0,0,1.5934019088745117,415,1.0,2 +39415,6,1.0,0,1.5434024333953857,416,1.0,2 +39416,6,1.0,0,1.483403205871582,417,1.0,2 +39417,6,1.0,0,1.3394050598144531,418,1.0,2 +39418,6,1.0,0,1.249405860900879,419,1.0,2 +39419,6,1.0,0,1.2074058055877686,420,1.0,2 +39420,6,1.0,0,1.324405312538147,421,0.0,2 +39421,6,0.0,0,1.2864058017730713,422,0.0,2 +39422,6,0.0,0,1.717400312423706,423,0.0,2 +39423,6,1.0,0,1.8053991794586182,424,1.0,2 +39424,6,1.0,0,1.6454012393951416,425,1.0,2 +39425,6,1.0,0,1.4184041023254395,426,1.0,2 +39426,6,1.0,0,1.4274039268493652,427,0.0,2 +39427,6,0.0,0,1.3164054155349731,428,0.0,2 +39428,6,1.0,0,1.3354051113128662,429,1.0,2 +39429,6,0.0,0,1.5394024848937988,430,0.0,2 +39430,6,1.0,0,1.325405240058899,431,1.0,2 +39431,6,1.0,0,1.3784046173095703,432,1.0,2 +39432,6,1.0,0,1.34340500831604,433,1.0,2 +39433,6,1.0,0,1.552402377128601,434,1.0,2 +39434,6,1.0,0,1.3264052867889404,435,1.0,2 +39435,6,1.0,0,1.2244058847427368,436,1.0,2 +39436,6,1.0,0,1.2384059429168701,437,1.0,2 +39437,6,1.0,0,1.7314000129699707,438,1.0,2 +39438,6,1.0,0,2.117400646209717,439,1.0,2 +39439,6,1.0,0,1.677400827407837,440,1.0,2 +39440,6,1.0,0,1.4474036693572998,441,1.0,2 +39441,6,1.0,0,1.3824045658111572,442,1.0,2 +39442,6,1.0,0,1.2004058361053467,443,1.0,2 +39443,6,1.0,0,1.3384051322937012,444,0.0,2 +39444,6,0.0,0,1.438403844833374,445,0.0,2 +39445,6,0.0,0,1.6564010381698608,446,0.0,2 +39446,6,0.0,0,1.4264039993286133,447,0.0,2 +39447,6,1.0,0,2.0113964080810547,448,1.0,2 +39448,6,1.0,0,1.625401496887207,449,0.0,2 +39449,6,0.0,0,1.6184015274047852,450,0.0,2 +39450,6,0.0,0,1.3454049825668335,451,0.0,2 +39451,6,1.0,0,2.0703985691070557,452,1.0,2 +39452,6,1.0,0,1.3514049053192139,453,1.0,2 +39453,6,1.0,0,1.907397747039795,454,0.0,2 +39454,6,1.0,0,1.1924058198928833,455,0.0,2 +39455,6,1.0,0,1.7523998022079468,456,0.0,2 +39456,6,1.0,0,1.3284052610397339,457,0.0,2 +39457,6,1.0,0,1.5974018573760986,458,1.0,2 +39458,6,1.0,0,1.4084042310714722,459,0.0,2 +39459,6,0.0,0,1.5534024238586426,460,0.0,2 +39460,6,0.0,0,1.1734057664871216,461,0.0,2 +39461,6,0.0,0,1.4214040040969849,462,0.0,2 +39462,6,1.0,0,1.5034029483795166,463,1.0,2 +39463,6,1.0,0,1.7753994464874268,464,1.0,2 +39464,6,1.0,0,1.412404179573059,465,1.0,2 +39465,6,1.0,0,1.3264052867889404,466,0.0,2 +39466,6,1.0,0,1.5924018621444702,467,1.0,2 +39467,6,1.0,0,1.280405879020691,468,1.0,2 +39468,6,1.0,0,1.2554059028625488,469,1.0,2 +39469,6,1.0,0,1.6544010639190674,470,1.0,2 +39470,6,1.0,0,1.8383986949920654,471,1.0,2 +39471,6,1.0,0,1.574402093887329,472,1.0,2 +39472,6,1.0,0,1.2904057502746582,473,1.0,2 +39473,6,1.0,0,1.9753968715667725,474,1.0,2 +39474,6,1.0,0,1.623401403427124,475,1.0,2 +39475,6,1.0,0,1.2824058532714844,476,0.0,2 +39476,6,1.0,0,1.5174027681350708,477,1.0,2 +39477,6,0.0,0,1.8373987674713135,478,0.0,2 +39478,6,1.0,0,1.8013992309570312,479,1.0,2 +39479,6,1.0,0,1.3004056215286255,480,1.0,2 +39480,6,1.0,0,1.245405912399292,481,0.0,2 +39481,6,0.0,0,1.5554022789001465,482,0.0,2 +39482,6,0.0,0,2.199404716491699,483,0.0,2 +39483,6,0.0,0,1.714400291442871,484,1.0,2 +39484,6,0.0,0,1.298405647277832,485,1.0,2 +39485,6,0.0,0,2.0353970527648926,486,0.0,2 +39486,6,0.0,0,1.483403205871582,487,0.0,2 +39487,6,0.0,0,1.276405930519104,488,0.0,2 +39488,6,0.0,0,2.174403429031372,489,0.0,2 +39489,6,0.0,0,1.9633970260620117,490,0.0,2 +39490,6,0.0,0,1.3414050340652466,491,0.0,2 +39491,6,1.0,0,1.460403561592102,492,1.0,2 +39492,6,1.0,0,1.4704034328460693,493,1.0,2 +39493,6,1.0,0,1.2944056987762451,494,0.0,2 +39494,6,1.0,0,1.5844019651412964,495,1.0,2 +39495,6,1.0,0,1.1864057779312134,496,1.0,2 +39496,6,0.0,0,1.1774057149887085,497,0.0,2 +39497,6,1.0,0,1.4334038496017456,498,1.0,2 +39498,6,1.0,0,1.465403437614441,499,1.0,2 +39499,6,1.0,0,1.3374050855636597,500,1.0,2 +39500,6,1.0,1,1.9633970260620117,1,1.0,2 +39501,6,1.0,1,2.0903995037078857,2,1.0,2 +39502,6,1.0,1,1.7823994159698486,3,1.0,2 +39503,6,1.0,1,1.321405291557312,4,0.0,2 +39504,6,0.0,1,1.347404956817627,5,0.0,2 +39505,6,1.0,1,2.161402702331543,6,1.0,2 +39506,6,1.0,1,1.5994017124176025,7,0.0,2 +39507,6,0.0,1,1.434403896331787,8,0.0,2 +39508,6,1.0,1,1.4984030723571777,9,1.0,2 +39509,6,1.0,1,1.412404179573059,10,1.0,2 +39510,6,1.0,1,1.299405574798584,11,1.0,2 +39511,6,1.0,1,1.5144028663635254,12,1.0,2 +39512,6,1.0,1,1.37240469455719,13,1.0,2 +39513,6,1.0,1,1.5804020166397095,14,0.0,2 +39514,6,1.0,1,1.5464024543762207,15,1.0,2 +39515,6,1.0,1,1.2864058017730713,16,1.0,2 +39516,6,0.0,1,1.277405858039856,17,1.0,2 +39517,6,1.0,1,1.4244040250778198,18,1.0,2 +39518,6,0.0,1,1.1664056777954102,19,0.0,2 +39519,6,1.0,1,1.7314000129699707,20,1.0,2 +39520,6,1.0,1,1.4044042825698853,21,1.0,2 +39521,6,1.0,1,1.4884032011032104,22,0.0,2 +39522,6,0.0,1,1.3664047718048096,23,0.0,2 +39523,6,1.0,1,1.4714033603668213,24,1.0,2 +39524,6,1.0,1,1.3074054718017578,25,1.0,2 +39525,6,0.0,1,2.2774081230163574,26,0.0,2 +39526,6,1.0,1,1.1504056453704834,27,1.0,2 +39527,6,1.0,1,1.6574010848999023,28,0.0,2 +39528,6,1.0,1,1.7044004201889038,29,1.0,2 +39529,6,1.0,1,1.442403793334961,30,0.0,2 +39530,6,1.0,1,1.487403154373169,31,1.0,2 +39531,6,1.0,1,1.3454049825668335,32,0.0,2 +39532,6,1.0,1,1.2864058017730713,33,1.0,2 +39533,6,1.0,1,1.464403510093689,34,1.0,2 +39534,6,0.0,1,1.2754058837890625,35,1.0,2 +39535,6,1.0,1,1.5734021663665771,36,1.0,2 +39536,6,0.0,1,1.508402943611145,37,0.0,2 +39537,6,1.0,1,1.8973979949951172,38,1.0,2 +39538,6,1.0,1,1.7094004154205322,39,1.0,2 +39539,6,1.0,1,1.8913979530334473,40,0.0,2 +39540,6,1.0,1,1.3184053897857666,41,1.0,2 +39541,6,1.0,1,1.4064042568206787,42,1.0,2 +39542,6,1.0,1,1.2414058446884155,43,1.0,2 +39543,6,1.0,1,1.3554048538208008,44,0.0,2 +39544,6,0.0,1,2.2904088497161865,45,0.0,2 +39545,6,1.0,1,1.5434024333953857,46,1.0,2 +39546,6,1.0,1,1.1914057731628418,47,0.0,2 +39547,6,1.0,1,1.5714020729064941,48,1.0,2 +39548,6,1.0,1,1.2284058332443237,49,1.0,2 +39549,6,1.0,1,1.5254027843475342,50,1.0,2 +39550,6,1.0,1,1.3884044885635376,51,1.0,2 +39551,6,1.0,1,1.6214015483856201,52,1.0,2 +39552,6,1.0,1,1.9273974895477295,53,1.0,2 +39553,6,1.0,1,1.4894031286239624,54,1.0,2 +39554,6,1.0,1,1.5834019184112549,55,0.0,2 +39555,6,0.0,1,1.2354059219360352,56,0.0,2 +39556,6,1.0,1,1.4364038705825806,57,0.0,2 +39557,6,1.0,1,1.5594022274017334,58,1.0,2 +39558,6,1.0,1,1.759399652481079,59,1.0,2 +39559,6,1.0,1,1.3224053382873535,60,1.0,2 +39560,6,1.0,1,1.9623970985412598,61,0.0,2 +39561,6,1.0,1,2.2534070014953613,62,0.0,2 +39562,6,1.0,1,1.2564059495925903,63,0.0,2 +39563,6,1.0,1,1.4544036388397217,64,1.0,2 +39564,6,0.0,1,1.242405891418457,65,1.0,2 +39565,6,1.0,1,2.469417095184326,66,0.0,2 +39566,6,0.0,1,1.5014029741287231,67,0.0,2 +39567,6,0.0,1,1.3004056215286255,68,1.0,2 +39568,6,0.0,1,1.8583984375,69,0.0,2 +39569,6,0.0,1,1.1874058246612549,70,0.0,2 +39570,6,0.0,1,2.0563979148864746,71,1.0,2 +39571,6,0.0,1,1.7054004669189453,72,1.0,2 +39572,6,0.0,1,1.3044055700302124,73,0.0,2 +39573,6,1.0,1,1.3224053382873535,74,1.0,2 +39574,6,1.0,1,1.5444024801254272,75,1.0,2 +39575,6,1.0,1,1.3924044370651245,76,1.0,2 +39576,6,1.0,1,1.5254027843475342,77,1.0,2 +39577,6,1.0,1,1.4154040813446045,78,1.0,2 +39578,6,1.0,1,1.6614010334014893,79,1.0,2 +39579,6,1.0,1,1.765399694442749,80,0.0,2 +39580,6,0.0,1,1.3414050340652466,81,0.0,2 +39581,6,0.0,1,1.999396562576294,82,0.0,2 +39582,6,0.0,1,1.3704047203063965,83,0.0,2 +39583,6,0.0,1,1.174405813217163,84,0.0,2 +39584,6,1.0,1,1.4584035873413086,85,0.0,2 +39585,6,1.0,1,2.178403615951538,86,1.0,2 +39586,6,1.0,1,1.4214040040969849,87,1.0,2 +39587,6,1.0,1,1.504402995109558,88,1.0,2 +39588,6,1.0,1,1.2334058284759521,89,1.0,2 +39589,6,1.0,1,1.2684059143066406,90,1.0,2 +39590,6,1.0,1,1.4374037981033325,91,0.0,2 +39591,6,0.0,1,1.3894044160842896,92,1.0,2 +39592,6,0.0,1,1.4954030513763428,93,0.0,2 +39593,6,0.0,1,1.9833967685699463,94,1.0,2 +39594,6,0.0,1,1.1324056386947632,95,1.0,2 +39595,6,0.0,1,1.2964056730270386,96,0.0,2 +39596,6,0.0,1,1.439403772354126,97,0.0,2 +39597,6,1.0,1,1.8943979740142822,98,0.0,2 +39598,6,0.0,1,1.1614056825637817,99,0.0,2 +39599,6,0.0,1,1.434403896331787,100,0.0,2 +39600,6,0.0,1,2.0113964080810547,101,1.0,2 +39601,6,0.0,1,1.416404128074646,102,0.0,2 +39602,6,0.0,1,1.486403226852417,103,1.0,2 +39603,6,0.0,1,2.2644076347351074,104,1.0,2 +39604,6,0.0,1,1.2674059867858887,105,0.0,2 +39605,6,0.0,1,1.4694033861160278,106,0.0,2 +39606,6,0.0,1,1.2204058170318604,107,0.0,2 +39607,6,0.0,1,1.4854031801223755,108,0.0,2 +39608,6,0.0,1,1.32040536403656,109,0.0,2 +39609,6,0.0,1,1.6814007759094238,110,1.0,2 +39610,6,0.0,1,1.7713994979858398,111,1.0,2 +39611,6,0.0,1,1.114405632019043,112,1.0,2 +39612,6,0.0,1,1.457403540611267,113,1.0,2 +39613,6,0.0,1,1.2644059658050537,114,1.0,2 +39614,6,0.0,1,1.3844045400619507,115,1.0,2 +39615,6,0.0,1,1.147405743598938,116,0.0,2 +39616,6,0.0,1,2.3254103660583496,117,0.0,2 +39617,6,1.0,1,1.4544036388397217,118,0.0,2 +39618,6,1.0,1,1.5014029741287231,119,0.0,2 +39619,6,1.0,1,1.4534035921096802,120,1.0,2 +39620,6,1.0,1,1.8013992309570312,121,1.0,2 +39621,6,0.0,1,1.7723995447158813,122,1.0,2 +39622,6,1.0,1,1.3334051370620728,123,1.0,2 +39623,6,1.0,1,1.7204002141952515,124,1.0,2 +39624,6,1.0,1,1.9933967590332031,125,1.0,2 +39625,6,0.0,1,1.1804057359695435,126,1.0,2 +39626,6,1.0,1,1.5384025573730469,127,1.0,2 +39627,6,0.0,1,1.5654022693634033,128,0.0,2 +39628,6,1.0,1,1.4944031238555908,129,1.0,2 +39629,6,1.0,1,1.215405821800232,130,1.0,2 +39630,6,1.0,1,1.1614056825637817,131,1.0,2 +39631,6,1.0,1,1.6464011669158936,132,0.0,2 +39632,6,1.0,1,2.136401653289795,133,0.0,2 +39633,6,0.0,1,2.117400646209717,134,0.0,2 +39634,6,0.0,1,1.4214040040969849,135,1.0,2 +39635,6,0.0,1,1.3854044675827026,136,1.0,2 +39636,6,0.0,1,1.6144015789031982,137,0.0,2 +39637,6,1.0,1,1.4254039525985718,138,1.0,2 +39638,6,1.0,1,1.9403973817825317,139,1.0,2 +39639,6,1.0,1,1.4364038705825806,140,1.0,2 +39640,6,1.0,1,1.6794006824493408,141,0.0,2 +39641,6,0.0,1,1.909397840499878,142,1.0,2 +39642,6,0.0,1,1.5254027843475342,143,0.0,2 +39643,6,0.0,1,1.2824058532714844,144,1.0,2 +39644,6,0.0,1,1.3364051580429077,145,1.0,2 +39645,6,0.0,1,1.2014057636260986,146,0.0,2 +39646,6,1.0,1,2.5294198989868164,147,1.0,2 +39647,6,1.0,1,1.4284039735794067,148,0.0,2 +39648,6,1.0,1,1.7823994159698486,149,0.0,2 +39649,6,0.0,1,1.416404128074646,150,0.0,2 +39650,6,0.0,1,1.4554035663604736,151,1.0,2 +39651,6,0.0,1,1.1554057598114014,152,0.0,2 +39652,6,0.0,1,1.8713982105255127,153,1.0,2 +39653,6,0.0,1,1.619401454925537,154,0.0,2 +39654,6,0.0,1,1.2684059143066406,155,1.0,2 +39655,6,0.0,1,1.4274039268493652,156,0.0,2 +39656,6,1.0,1,1.4954030513763428,157,1.0,2 +39657,6,1.0,1,1.2074058055877686,158,1.0,2 +39658,6,1.0,1,1.3124054670333862,159,0.0,2 +39659,6,0.0,1,1.8703982830047607,160,0.0,2 +39660,6,1.0,1,1.8433985710144043,161,1.0,2 +39661,6,1.0,1,1.906397819519043,162,0.0,2 +39662,6,1.0,1,1.5974018573760986,163,1.0,2 +39663,6,1.0,1,1.2654058933258057,164,1.0,2 +39664,6,1.0,1,1.6584010124206543,165,1.0,2 +39665,6,1.0,1,1.718400239944458,166,1.0,2 +39666,6,1.0,1,1.2144057750701904,167,1.0,2 +39667,6,1.0,1,1.37240469455719,168,1.0,2 +39668,6,1.0,1,1.3744046688079834,169,1.0,2 +39669,6,1.0,1,1.324405312538147,170,0.0,2 +39670,6,0.0,1,1.3634047508239746,171,1.0,2 +39671,6,0.0,1,1.9783968925476074,172,1.0,2 +39672,6,0.0,1,1.212405800819397,173,0.0,2 +39673,6,0.0,1,1.443403720855713,174,1.0,2 +39674,6,0.0,1,1.5574023723602295,175,0.0,2 +39675,6,1.0,1,1.490403175354004,176,1.0,2 +39676,6,0.0,1,1.3354051113128662,177,1.0,2 +39677,6,0.0,1,1.2644059658050537,178,0.0,2 +39678,6,1.0,1,1.420404076576233,179,0.0,2 +39679,6,0.0,1,2.2594075202941895,180,1.0,2 +39680,6,0.0,1,1.0974055528640747,181,0.0,2 +39681,6,0.0,1,1.7064003944396973,182,0.0,2 +39682,6,0.0,1,1.3094054460525513,183,0.0,2 +39683,6,1.0,1,1.1794058084487915,184,1.0,2 +39684,6,1.0,1,1.3394050598144531,185,1.0,2 +39685,6,1.0,1,1.6084016561508179,186,1.0,2 +39686,6,1.0,1,1.3414050340652466,187,1.0,2 +39687,6,1.0,1,1.3744046688079834,188,1.0,2 +39688,6,1.0,1,1.3304052352905273,189,1.0,2 +39689,6,1.0,1,1.3344051837921143,190,1.0,2 +39690,6,1.0,1,1.50540292263031,191,1.0,2 +39691,6,1.0,1,1.34340500831604,192,0.0,2 +39692,6,1.0,1,1.3704047203063965,193,1.0,2 +39693,6,1.0,1,1.2964056730270386,194,1.0,2 +39694,6,1.0,1,1.5454025268554688,195,1.0,2 +39695,6,1.0,1,1.5804020166397095,196,1.0,2 +39696,6,1.0,1,1.8453986644744873,197,1.0,2 +39697,6,1.0,1,1.7084003686904907,198,1.0,2 +39698,6,1.0,1,1.20840585231781,199,0.0,2 +39699,6,1.0,1,1.8563984632492065,200,0.0,2 +39700,6,1.0,1,1.4454036951065063,201,1.0,2 +39701,6,0.0,1,1.3484050035476685,202,0.0,2 +39702,6,1.0,1,1.69640052318573,203,1.0,2 +39703,6,1.0,1,1.5874018669128418,204,1.0,2 +39704,6,1.0,1,1.8533985614776611,205,0.0,2 +39705,6,0.0,1,1.2264058589935303,206,0.0,2 +39706,6,0.0,1,1.765399694442749,207,1.0,2 +39707,6,0.0,1,1.630401372909546,208,0.0,2 +39708,6,0.0,1,1.9913966655731201,209,0.0,2 +39709,6,0.0,1,1.574402093887329,210,1.0,2 +39710,6,0.0,1,1.2694059610366821,211,0.0,2 +39711,6,1.0,1,2.0513978004455566,212,1.0,2 +39712,6,1.0,1,1.901397943496704,213,0.0,2 +39713,6,1.0,1,1.368404746055603,214,0.0,2 +39714,6,0.0,1,2.5284199714660645,215,0.0,2 +39715,6,0.0,1,1.3074054718017578,216,0.0,2 +39716,6,1.0,1,1.4454036951065063,217,0.0,2 +39717,6,1.0,1,1.6634008884429932,218,0.0,2 +39718,6,1.0,1,1.6934006214141846,219,1.0,2 +39719,6,1.0,1,1.4414037466049194,220,0.0,2 +39720,6,0.0,1,1.1124056577682495,221,0.0,2 +39721,6,1.0,1,2.2464067935943604,222,1.0,2 +39722,6,1.0,1,1.4514036178588867,223,1.0,2 +39723,6,1.0,1,1.714400291442871,224,1.0,2 +39724,6,1.0,1,1.3974043130874634,225,1.0,2 +39725,6,1.0,1,1.2914056777954102,226,1.0,2 +39726,6,1.0,1,1.4694033861160278,227,0.0,2 +39727,6,1.0,1,2.421414852142334,228,0.0,2 +39728,6,1.0,1,2.1094002723693848,229,1.0,2 +39729,6,1.0,1,1.464403510093689,230,0.0,2 +39730,6,0.0,1,1.2704060077667236,231,1.0,2 +39731,6,0.0,1,1.3224053382873535,232,0.0,2 +39732,6,0.0,1,1.215405821800232,233,0.0,2 +39733,6,1.0,1,1.813399076461792,234,1.0,2 +39734,6,1.0,1,1.347404956817627,235,1.0,2 +39735,6,1.0,1,1.7733995914459229,236,1.0,2 +39736,6,1.0,1,1.8523985147476196,237,1.0,2 +39737,6,1.0,1,1.2614059448242188,238,1.0,2 +39738,6,1.0,1,1.4254039525985718,239,1.0,2 +39739,6,1.0,1,1.3104054927825928,240,0.0,2 +39740,6,0.0,1,1.1994057893753052,241,1.0,2 +39741,6,0.0,1,1.6474010944366455,242,1.0,2 +39742,6,0.0,1,1.138405680656433,243,0.0,2 +39743,6,1.0,1,1.8823981285095215,244,1.0,2 +39744,6,1.0,1,1.2754058837890625,245,1.0,2 +39745,6,1.0,1,1.14840567111969,246,1.0,2 +39746,6,1.0,1,1.3084055185317993,247,1.0,2 +39747,6,0.0,1,1.8213989734649658,248,0.0,2 +39748,6,1.0,1,1.677400827407837,249,1.0,2 +39749,6,1.0,1,1.299405574798584,250,0.0,2 +39750,6,0.0,1,1.9383974075317383,251,0.0,2 +39751,6,0.0,1,1.8293988704681396,252,0.0,2 +39752,6,0.0,1,1.4044042825698853,253,0.0,2 +39753,6,1.0,1,1.8273987770080566,254,1.0,2 +39754,6,1.0,1,1.6404012441635132,255,0.0,2 +39755,6,0.0,1,1.2164058685302734,256,0.0,2 +39756,6,0.0,1,2.0683984756469727,257,0.0,2 +39757,6,1.0,1,1.767399549484253,258,1.0,2 +39758,6,1.0,1,1.5254027843475342,259,1.0,2 +39759,6,1.0,1,1.6114015579223633,260,0.0,2 +39760,6,1.0,1,1.6874005794525146,261,1.0,2 +39761,6,1.0,1,1.4494036436080933,262,0.0,2 +39762,6,1.0,1,1.7553997039794922,263,1.0,2 +39763,6,0.0,1,2.0423972606658936,264,0.0,2 +39764,6,1.0,1,1.6314013004302979,265,1.0,2 +39765,6,1.0,1,1.2534059286117554,266,1.0,2 +39766,6,1.0,1,1.5164028406143188,267,0.0,2 +39767,6,1.0,1,2.2524070739746094,268,1.0,2 +39768,6,1.0,1,1.4494036436080933,269,1.0,2 +39769,6,1.0,1,1.2504059076309204,270,0.0,2 +39770,6,0.0,1,1.2814058065414429,271,0.0,2 +39771,6,0.0,1,2.0323967933654785,272,1.0,2 +39772,6,0.0,1,1.3164054155349731,273,0.0,2 +39773,6,1.0,1,1.8763982057571411,274,1.0,2 +39774,6,1.0,1,1.3794045448303223,275,1.0,2 +39775,6,1.0,1,1.5134028196334839,276,1.0,2 +39776,6,1.0,1,1.5244027376174927,277,1.0,2 +39777,6,1.0,1,1.3064055442810059,278,1.0,2 +39778,6,1.0,1,1.2174057960510254,279,1.0,2 +39779,6,1.0,1,1.4774032831192017,280,1.0,2 +39780,6,1.0,1,1.8663983345031738,281,0.0,2 +39781,6,0.0,1,2.0843992233276367,282,0.0,2 +39782,6,1.0,1,1.3834044933319092,283,1.0,2 +39783,6,1.0,1,1.18440580368042,284,1.0,2 +39784,6,1.0,1,1.4944031238555908,285,1.0,2 +39785,6,1.0,1,2.0283966064453125,286,1.0,2 +39786,6,1.0,1,1.2624058723449707,287,1.0,2 +39787,6,1.0,1,1.302405595779419,288,1.0,2 +39788,6,1.0,1,1.3274052143096924,289,1.0,2 +39789,6,1.0,1,1.7753994464874268,290,1.0,2 +39790,6,1.0,1,1.8063991069793701,291,0.0,2 +39791,6,1.0,1,2.0563979148864746,292,1.0,2 +39792,6,1.0,1,1.2344058752059937,293,1.0,2 +39793,6,1.0,1,1.5064029693603516,294,1.0,2 +39794,6,1.0,1,1.2504059076309204,295,1.0,2 +39795,6,1.0,1,1.9883967638015747,296,1.0,2 +39796,6,1.0,1,1.3314051628112793,297,1.0,2 +39797,6,1.0,1,2.2244057655334473,298,1.0,2 +39798,6,0.0,1,1.6854007244110107,299,1.0,2 +39799,6,1.0,1,1.342405080795288,300,1.0,2 +39800,6,1.0,1,1.34340500831604,301,1.0,2 +39801,6,1.0,1,1.6114015579223633,302,0.0,2 +39802,6,0.0,1,1.2214058637619019,303,1.0,2 +39803,6,0.0,1,1.859398365020752,304,1.0,2 +39804,6,0.0,1,1.4594035148620605,305,0.0,2 +39805,6,0.0,1,1.6804007291793823,306,0.0,2 +39806,6,0.0,1,1.1394057273864746,307,0.0,2 +39807,6,0.0,1,1.5194027423858643,308,1.0,2 +39808,6,0.0,1,2.127401351928711,309,0.0,2 +39809,6,1.0,1,1.9423973560333252,310,0.0,2 +39810,6,1.0,1,1.9643970727920532,311,1.0,2 +39811,6,1.0,1,1.6414012908935547,312,1.0,2 +39812,6,1.0,1,1.578402042388916,313,1.0,2 +39813,6,1.0,1,1.4264039993286133,314,0.0,2 +39814,6,0.0,1,1.6914005279541016,315,0.0,2 +39815,6,0.0,1,1.2844058275222778,316,0.0,2 +39816,6,0.0,1,1.39540433883667,317,0.0,2 +39817,6,1.0,1,1.5704021453857422,318,0.0,2 +39818,6,1.0,1,1.4714033603668213,319,0.0,2 +39819,6,1.0,1,1.5284026861190796,320,0.0,2 +39820,6,1.0,1,2.0783989429473877,321,0.0,2 +39821,6,1.0,1,1.6114015579223633,322,0.0,2 +39822,6,0.0,1,1.512402892112732,323,0.0,2 +39823,6,1.0,1,2.0523977279663086,324,0.0,2 +39824,6,1.0,1,1.317405343055725,325,1.0,2 +39825,6,1.0,1,1.317405343055725,326,0.0,2 +39826,6,0.0,1,1.2674059867858887,327,0.0,2 +39827,6,1.0,1,1.5684021711349487,328,1.0,2 +39828,6,1.0,1,1.5554022789001465,329,0.0,2 +39829,6,1.0,1,1.4704034328460693,330,1.0,2 +39830,6,1.0,1,1.4304039478302002,331,1.0,2 +39831,6,1.0,1,1.2574058771133423,332,1.0,2 +39832,6,1.0,1,1.3294051885604858,333,0.0,2 +39833,6,0.0,1,1.9653971195220947,334,1.0,2 +39834,6,0.0,1,1.416404128074646,335,0.0,2 +39835,6,0.0,1,2.2674078941345215,336,0.0,2 +39836,6,0.0,1,1.6104016304016113,337,1.0,2 +39837,6,0.0,1,2.009396553039551,338,0.0,2 +39838,6,1.0,1,2.000396728515625,339,1.0,2 +39839,6,1.0,1,1.2634059190750122,340,1.0,2 +39840,6,1.0,1,1.2104058265686035,341,1.0,2 +39841,6,1.0,1,1.6144015789031982,342,1.0,2 +39842,6,1.0,1,1.3534048795700073,343,0.0,2 +39843,6,0.0,1,2.175403594970703,344,0.0,2 +39844,6,1.0,1,1.5224027633666992,345,0.0,2 +39845,6,1.0,1,1.9703969955444336,346,1.0,2 +39846,6,1.0,1,1.3114054203033447,347,0.0,2 +39847,6,1.0,1,1.5664021968841553,348,1.0,2 +39848,6,1.0,1,1.5874018669128418,349,1.0,2 +39849,6,1.0,1,1.5734021663665771,350,1.0,2 +39850,6,1.0,1,1.2594059705734253,351,0.0,2 +39851,6,0.0,1,1.7044004201889038,352,0.0,2 +39852,6,0.0,1,1.7124003171920776,353,1.0,2 +39853,6,0.0,1,1.3234052658081055,354,0.0,2 +39854,6,0.0,1,2.614423990249634,355,1.0,2 +39855,6,0.0,1,1.504402995109558,356,0.0,2 +39856,6,0.0,1,1.4884032011032104,357,0.0,2 +39857,6,0.0,1,1.5634021759033203,358,0.0,2 +39858,6,1.0,1,2.0583980083465576,359,0.0,2 +39859,6,0.0,1,1.3274052143096924,360,1.0,2 +39860,6,0.0,1,1.714400291442871,361,0.0,2 +39861,6,0.0,1,1.6174015998840332,362,0.0,2 +39862,6,0.0,1,1.5264027118682861,363,0.0,2 +39863,6,1.0,1,2.0283966064453125,364,1.0,2 +39864,6,1.0,1,1.2444058656692505,365,1.0,2 +39865,6,1.0,1,1.1634057760238647,366,1.0,2 +39866,6,0.0,1,1.954397201538086,367,0.0,2 +39867,6,1.0,1,1.2204058170318604,368,0.0,2 +39868,6,0.0,1,1.6084016561508179,369,0.0,2 +39869,6,0.0,1,1.3774045705795288,370,1.0,2 +39870,6,0.0,1,1.1894057989120483,371,0.0,2 +39871,6,1.0,1,1.5244027376174927,372,0.0,2 +39872,6,0.0,1,1.8253989219665527,373,0.0,2 +39873,6,0.0,1,1.6124016046524048,374,0.0,2 +39874,6,1.0,1,1.5974018573760986,375,1.0,2 +39875,6,1.0,1,1.39540433883667,376,1.0,2 +39876,6,1.0,1,1.273405909538269,377,1.0,2 +39877,6,1.0,1,1.245405912399292,378,1.0,2 +39878,6,1.0,1,1.2304058074951172,379,1.0,2 +39879,6,1.0,1,1.8673982620239258,380,1.0,2 +39880,6,1.0,1,1.2174057960510254,381,0.0,2 +39881,6,0.0,1,1.5384025573730469,382,0.0,2 +39882,6,1.0,1,2.087399482727051,383,0.0,2 +39883,6,0.0,1,1.4594035148620605,384,1.0,2 +39884,6,0.0,1,1.4314038753509521,385,0.0,2 +39885,6,1.0,1,2.0403971672058105,386,1.0,2 +39886,6,1.0,1,1.4444037675857544,387,1.0,2 +39887,6,1.0,1,1.3304052352905273,388,0.0,2 +39888,6,0.0,1,1.6724008321762085,389,0.0,2 +39889,6,0.0,1,2.2544071674346924,390,1.0,2 +39890,6,0.0,1,1.4804033041000366,391,0.0,2 +39891,6,0.0,1,1.902397871017456,392,0.0,2 +39892,6,0.0,1,1.7074003219604492,393,1.0,2 +39893,6,0.0,1,1.529402732849121,394,0.0,2 +39894,6,0.0,1,1.3384051322937012,395,0.0,2 +39895,6,0.0,1,1.295405626296997,396,1.0,2 +39896,6,0.0,1,1.4894031286239624,397,0.0,2 +39897,6,1.0,1,1.209405779838562,398,1.0,2 +39898,6,0.0,1,1.3934043645858765,399,0.0,2 +39899,6,1.0,1,1.3584048748016357,400,1.0,2 +39900,6,1.0,1,1.1804057359695435,401,1.0,2 +39901,6,1.0,1,1.3594048023223877,402,1.0,2 +39902,6,1.0,1,1.1884057521820068,403,0.0,2 +39903,6,1.0,1,2.0423972606658936,404,1.0,2 +39904,6,1.0,1,1.5664021968841553,405,1.0,2 +39905,6,0.0,1,1.6474010944366455,406,1.0,2 +39906,6,0.0,1,1.6554009914398193,407,0.0,2 +39907,6,1.0,1,1.4224040508270264,408,0.0,2 +39908,6,0.0,1,1.6934006214141846,409,0.0,2 +39909,6,0.0,1,1.280405879020691,410,1.0,2 +39910,6,0.0,1,1.9793968200683594,411,1.0,2 +39911,6,0.0,1,1.3634047508239746,412,1.0,2 +39912,6,0.0,1,1.6624009609222412,413,0.0,2 +39913,6,0.0,1,2.3014092445373535,414,0.0,2 +39914,6,1.0,1,2.0283966064453125,415,0.0,2 +39915,6,0.0,1,1.4004043340682983,416,0.0,2 +39916,6,1.0,1,1.8633983135223389,417,1.0,2 +39917,6,1.0,1,1.3704047203063965,418,0.0,2 +39918,6,0.0,1,1.2684059143066406,419,1.0,2 +39919,6,0.0,1,1.3964043855667114,420,1.0,2 +39920,6,0.0,1,1.2584059238433838,421,0.0,2 +39921,6,0.0,1,1.5574023723602295,422,1.0,2 +39922,6,0.0,1,1.556402325630188,423,1.0,2 +39923,6,0.0,1,1.5394024848937988,424,0.0,2 +39924,6,1.0,1,1.8513984680175781,425,1.0,2 +39925,6,0.0,1,1.2034058570861816,426,0.0,2 +39926,6,1.0,1,1.4544036388397217,427,1.0,2 +39927,6,1.0,1,1.4984030723571777,428,0.0,2 +39928,6,1.0,1,2.003396511077881,429,0.0,2 +39929,6,0.0,1,1.325405240058899,430,1.0,2 +39930,6,0.0,1,1.8873980045318604,431,1.0,2 +39931,6,0.0,1,1.1604057550430298,432,0.0,2 +39932,6,1.0,1,2.0193963050842285,433,1.0,2 +39933,6,1.0,1,1.7364000082015991,434,1.0,2 +39934,6,1.0,1,1.7334001064300537,435,0.0,2 +39935,6,0.0,1,1.2574058771133423,436,1.0,2 +39936,6,0.0,1,2.112400531768799,437,1.0,2 +39937,6,0.0,1,1.1964057683944702,438,0.0,2 +39938,6,1.0,1,1.7483998537063599,439,0.0,2 +39939,6,0.0,1,1.581402063369751,440,0.0,2 +39940,6,1.0,1,1.3544049263000488,441,1.0,2 +39941,6,1.0,1,1.302405595779419,442,0.0,2 +39942,6,0.0,1,1.3984043598175049,443,0.0,2 +39943,6,0.0,1,1.1694056987762451,444,0.0,2 +39944,6,0.0,1,1.4764033555984497,445,0.0,2 +39945,6,0.0,1,1.3454049825668335,446,0.0,2 +39946,6,0.0,1,2.2114052772521973,447,0.0,2 +39947,6,0.0,1,1.413404107093811,448,1.0,2 +39948,6,0.0,1,1.3114054203033447,449,1.0,2 +39949,6,0.0,1,1.2854057550430298,450,0.0,2 +39950,6,0.0,1,1.9873967170715332,451,0.0,2 +39951,6,1.0,1,1.4194040298461914,452,1.0,2 +39952,6,1.0,1,1.18440580368042,453,1.0,2 +39953,6,1.0,1,1.3884044885635376,454,0.0,2 +39954,6,1.0,1,1.3604048490524292,455,1.0,2 +39955,6,1.0,1,1.884398102760315,456,1.0,2 +39956,6,1.0,1,1.6444011926651,457,1.0,2 +39957,6,1.0,1,1.578402042388916,458,1.0,2 +39958,6,1.0,1,1.4494036436080933,459,1.0,2 +39959,6,1.0,1,1.8483985662460327,460,1.0,2 +39960,6,1.0,1,1.6354012489318848,461,0.0,2 +39961,6,0.0,1,1.5074028968811035,462,0.0,2 +39962,6,1.0,1,1.4594035148620605,463,1.0,2 +39963,6,1.0,1,1.671400785446167,464,1.0,2 +39964,6,1.0,1,1.2534059286117554,465,1.0,2 +39965,6,1.0,1,1.2074058055877686,466,1.0,2 +39966,6,0.0,1,1.108405590057373,467,0.0,2 +39967,6,1.0,1,1.4734033346176147,468,1.0,2 +39968,6,1.0,1,1.3844045400619507,469,1.0,2 +39969,6,1.0,1,1.4324039220809937,470,0.0,2 +39970,6,1.0,1,1.3444050550460815,471,0.0,2 +39971,6,0.0,1,1.346405029296875,472,0.0,2 +39972,6,1.0,1,1.6124016046524048,473,1.0,2 +39973,6,0.0,1,1.3084055185317993,474,1.0,2 +39974,6,0.0,1,1.2714059352874756,475,0.0,2 +39975,6,1.0,1,1.5704021453857422,476,0.0,2 +39976,6,1.0,1,1.3344051837921143,477,0.0,2 +39977,6,0.0,1,1.1834057569503784,478,0.0,2 +39978,6,1.0,1,1.6404012441635132,479,0.0,2 +39979,6,0.0,1,2.0383970737457275,480,0.0,2 +39980,6,0.0,1,2.3294105529785156,481,0.0,2 +39981,6,1.0,1,1.7433998584747314,482,1.0,2 +39982,6,1.0,1,1.2794058322906494,483,1.0,2 +39983,6,1.0,1,1.7833993434906006,484,1.0,2 +39984,6,1.0,1,1.1884057521820068,485,1.0,2 +39985,6,1.0,1,1.6654009819030762,486,0.0,2 +39986,6,0.0,1,1.5884019136428833,487,0.0,2 +39987,6,0.0,1,1.4514036178588867,488,0.0,2 +39988,6,1.0,1,1.438403844833374,489,0.0,2 +39989,6,0.0,1,1.6204015016555786,490,0.0,2 +39990,6,0.0,1,1.4094041585922241,491,1.0,2 +39991,6,0.0,1,1.976396918296814,492,0.0,2 +39992,6,1.0,1,1.438403844833374,493,1.0,2 +39993,6,1.0,1,1.2704060077667236,494,1.0,2 +39994,6,1.0,1,1.1994057893753052,495,1.0,2 +39995,6,1.0,1,1.2864058017730713,496,1.0,2 +39996,6,1.0,1,1.4634034633636475,497,0.0,2 +39997,6,1.0,1,1.4694033861160278,498,0.0,2 +39998,6,0.0,1,1.4284039735794067,499,0.0,2 +39999,6,1.0,1,1.4224040508270264,500,0.0,2 +40000,6,0.0,2,1.3604048490524292,1,1.0,2 +40001,6,0.0,2,1.6014018058776855,2,1.0,2 +40002,6,0.0,2,1.7304000854492188,3,0.0,2 +40003,6,1.0,2,1.2894057035446167,4,0.0,2 +40004,6,1.0,2,1.9263975620269775,5,0.0,2 +40005,6,0.0,2,1.4334038496017456,6,1.0,2 +40006,6,0.0,2,1.2904057502746582,7,0.0,2 +40007,6,0.0,2,1.8263988494873047,8,1.0,2 +40008,6,0.0,2,1.1914057731628418,9,1.0,2 +40009,6,0.0,2,1.5704021453857422,10,0.0,2 +40010,6,0.0,2,1.6064016819000244,11,0.0,2 +40011,6,1.0,2,2.008396625518799,12,0.0,2 +40012,6,1.0,2,1.9813969135284424,13,0.0,2 +40013,6,1.0,2,2.3024094104766846,14,1.0,2 +40014,6,1.0,2,1.5284026861190796,15,1.0,2 +40015,6,1.0,2,1.4004043340682983,16,1.0,2 +40016,6,1.0,2,1.4234039783477783,17,1.0,2 +40017,6,1.0,2,1.4284039735794067,18,0.0,2 +40018,6,0.0,2,1.6074016094207764,19,1.0,2 +40019,6,0.0,2,1.1574057340621948,20,1.0,2 +40020,6,0.0,2,1.5024030208587646,21,0.0,2 +40021,6,0.0,2,2.0103964805603027,22,1.0,2 +40022,6,0.0,2,1.585402011871338,23,1.0,2 +40023,6,0.0,2,1.248405933380127,24,0.0,2 +40024,6,0.0,2,1.5984017848968506,25,0.0,2 +40025,6,1.0,2,1.714400291442871,26,0.0,2 +40026,6,1.0,2,1.9603971242904663,27,1.0,2 +40027,6,1.0,2,1.2624058723449707,28,1.0,2 +40028,6,1.0,2,1.2884057760238647,29,0.0,2 +40029,6,0.0,2,1.2344058752059937,30,0.0,2 +40030,6,0.0,2,1.5224027633666992,31,0.0,2 +40031,6,1.0,2,1.6544010639190674,32,0.0,2 +40032,6,1.0,2,1.239405870437622,33,1.0,2 +40033,6,1.0,2,1.211405873298645,34,1.0,2 +40034,6,1.0,2,1.3274052143096924,35,1.0,2 +40035,6,1.0,2,1.3774045705795288,36,1.0,2 +40036,6,1.0,2,1.626401424407959,37,0.0,2 +40037,6,1.0,2,1.369404673576355,38,0.0,2 +40038,6,0.0,2,1.3524049520492554,39,0.0,2 +40039,6,1.0,2,2.2554073333740234,40,0.0,2 +40040,6,1.0,2,2.1054000854492188,41,0.0,2 +40041,6,0.0,2,1.9583971500396729,42,1.0,2 +40042,6,0.0,2,2.3494114875793457,43,0.0,2 +40043,6,1.0,2,1.3354051113128662,44,1.0,2 +40044,6,0.0,2,1.3764046430587769,45,0.0,2 +40045,6,1.0,2,1.3364051580429077,46,1.0,2 +40046,6,1.0,2,1.5864019393920898,47,0.0,2 +40047,6,0.0,2,1.4104042053222656,48,0.0,2 +40048,6,0.0,2,1.6384012699127197,49,0.0,2 +40049,6,0.0,2,1.577402114868164,50,1.0,2 +40050,6,0.0,2,1.3074054718017578,51,0.0,2 +40051,6,1.0,2,1.7793993949890137,52,1.0,2 +40052,6,1.0,2,1.1704057455062866,53,0.0,2 +40053,6,0.0,2,1.1674057245254517,54,1.0,2 +40054,6,0.0,2,1.2814058065414429,55,0.0,2 +40055,6,0.0,2,1.5864019393920898,56,0.0,2 +40056,6,1.0,2,1.4674034118652344,57,0.0,2 +40057,6,0.0,2,1.5004030466079712,58,1.0,2 +40058,6,0.0,2,1.3534048795700073,59,0.0,2 +40059,6,1.0,2,1.9143977165222168,60,0.0,2 +40060,6,0.0,2,1.2864058017730713,61,1.0,2 +40061,6,0.0,2,1.2304058074951172,62,0.0,2 +40062,6,1.0,2,1.4314038753509521,63,1.0,2 +40063,6,0.0,2,1.3084055185317993,64,1.0,2 +40064,6,0.0,2,1.151405692100525,65,0.0,2 +40065,6,1.0,2,1.8023991584777832,66,1.0,2 +40066,6,1.0,2,2.147402286529541,67,0.0,2 +40067,6,1.0,2,1.2294058799743652,68,1.0,2 +40068,6,1.0,2,1.5324026346206665,69,0.0,2 +40069,6,0.0,2,1.5194027423858643,70,0.0,2 +40070,6,0.0,2,1.6634008884429932,71,1.0,2 +40071,6,0.0,2,1.2574058771133423,72,0.0,2 +40072,6,1.0,2,2.0153963565826416,73,1.0,2 +40073,6,1.0,2,1.420404076576233,74,0.0,2 +40074,6,0.0,2,1.4534035921096802,75,1.0,2 +40075,6,0.0,2,1.4534035921096802,76,0.0,2 +40076,6,0.0,2,2.4874181747436523,77,0.0,2 +40077,6,0.0,2,2.104400157928467,78,1.0,2 +40078,6,0.0,2,1.2894057035446167,79,0.0,2 +40079,6,0.0,2,1.5414025783538818,80,0.0,2 +40080,6,1.0,2,1.3704047203063965,81,0.0,2 +40081,6,0.0,2,1.2474058866500854,82,0.0,2 +40082,6,1.0,2,1.815398931503296,83,1.0,2 +40083,6,1.0,2,1.2754058837890625,84,1.0,2 +40084,6,1.0,2,1.6854007244110107,85,0.0,2 +40085,6,1.0,2,2.38541316986084,86,1.0,2 +40086,6,1.0,2,1.3284052610397339,87,1.0,2 +40087,6,1.0,2,1.1944057941436768,88,0.0,2 +40088,6,0.0,2,1.4044042825698853,89,1.0,2 +40089,6,0.0,2,1.622401475906372,90,1.0,2 +40090,6,0.0,2,1.2784059047698975,91,1.0,2 +40091,6,0.0,2,1.2384059429168701,92,0.0,2 +40092,6,0.0,2,1.3114054203033447,93,0.0,2 +40093,6,1.0,2,1.4734033346176147,94,1.0,2 +40094,6,1.0,2,1.6864006519317627,95,1.0,2 +40095,6,1.0,2,1.1914057731628418,96,1.0,2 +40096,6,1.0,2,1.4734033346176147,97,0.0,2 +40097,6,0.0,2,1.4474036693572998,98,0.0,2 +40098,6,1.0,2,1.4664034843444824,99,1.0,2 +40099,6,1.0,2,1.7014005184173584,100,1.0,2 +40100,6,1.0,2,1.4294039011001587,101,1.0,2 +40101,6,1.0,2,1.4514036178588867,102,0.0,2 +40102,6,0.0,2,1.7234001159667969,103,1.0,2 +40103,6,0.0,2,1.2874057292938232,104,0.0,2 +40104,6,0.0,2,1.556402325630188,105,0.0,2 +40105,6,1.0,2,1.465403437614441,106,1.0,2 +40106,6,1.0,2,1.3064055442810059,107,0.0,2 +40107,6,1.0,2,1.854398488998413,108,1.0,2 +40108,6,1.0,2,1.3794045448303223,109,0.0,2 +40109,6,1.0,2,1.902397871017456,110,0.0,2 +40110,6,1.0,2,1.246405839920044,111,0.0,2 +40111,6,0.0,2,1.0944056510925293,112,0.0,2 +40112,6,0.0,2,1.2524058818817139,113,0.0,2 +40113,6,0.0,2,2.0673985481262207,114,0.0,2 +40114,6,0.0,2,1.5024030208587646,115,1.0,2 +40115,6,0.0,2,1.218405842781067,116,0.0,2 +40116,6,1.0,2,1.7433998584747314,117,0.0,2 +40117,6,0.0,2,1.6344013214111328,118,0.0,2 +40118,6,0.0,2,1.3114054203033447,119,1.0,2 +40119,6,0.0,2,2.0423972606658936,120,0.0,2 +40120,6,0.0,2,1.3854044675827026,121,1.0,2 +40121,6,1.0,2,1.4894031286239624,122,1.0,2 +40122,6,0.0,2,2.0573978424072266,123,0.0,2 +40123,6,1.0,2,1.2934056520462036,124,0.0,2 +40124,6,0.0,2,2.159402847290039,125,1.0,2 +40125,6,0.0,2,1.1504056453704834,126,0.0,2 +40126,6,0.0,2,1.7943992614746094,127,0.0,2 +40127,6,1.0,2,1.9603971242904663,128,0.0,2 +40128,6,1.0,2,1.5614023208618164,129,0.0,2 +40129,6,1.0,2,1.8353986740112305,130,0.0,2 +40130,6,0.0,2,1.5034029483795166,131,0.0,2 +40131,6,0.0,2,1.1954058408737183,132,0.0,2 +40132,6,0.0,2,1.504402995109558,133,1.0,2 +40133,6,0.0,2,1.1364057064056396,134,0.0,2 +40134,6,1.0,2,2.0313968658447266,135,1.0,2 +40135,6,1.0,2,1.2814058065414429,136,1.0,2 +40136,6,1.0,2,1.5904018878936768,137,0.0,2 +40137,6,0.0,2,1.4094041585922241,138,1.0,2 +40138,6,0.0,2,1.3194053173065186,139,0.0,2 +40139,6,1.0,2,1.8683983087539673,140,0.0,2 +40140,6,0.0,2,1.9883967638015747,141,0.0,2 +40141,6,1.0,2,1.2214058637619019,142,1.0,2 +40142,6,1.0,2,1.508402943611145,143,0.0,2 +40143,6,1.0,2,1.3824045658111572,144,1.0,2 +40144,6,1.0,2,1.1774057149887085,145,0.0,2 +40145,6,1.0,2,1.5264027118682861,146,1.0,2 +40146,6,1.0,2,1.4884032011032104,147,1.0,2 +40147,6,1.0,2,1.14840567111969,148,1.0,2 +40148,6,1.0,2,1.2064058780670166,149,1.0,2 +40149,6,1.0,2,1.2064058780670166,150,0.0,2 +40150,6,0.0,2,1.373404622077942,151,0.0,2 +40151,6,0.0,2,1.8863980770111084,152,1.0,2 +40152,6,0.0,2,1.420404076576233,153,0.0,2 +40153,6,0.0,2,1.4764033555984497,154,1.0,2 +40154,6,0.0,2,1.5324026346206665,155,0.0,2 +40155,6,0.0,2,1.4754033088684082,156,1.0,2 +40156,6,0.0,2,1.4724034070968628,157,0.0,2 +40157,6,0.0,2,1.2254058122634888,158,0.0,2 +40158,6,1.0,2,1.9623970985412598,159,0.0,2 +40159,6,0.0,2,2.2224056720733643,160,0.0,2 +40160,6,1.0,2,1.5074028968811035,161,1.0,2 +40161,6,0.0,2,1.3084055185317993,162,1.0,2 +40162,6,0.0,2,1.7034003734588623,163,1.0,2 +40163,6,0.0,2,1.174405813217163,164,1.0,2 +40164,6,0.0,2,1.110405683517456,165,0.0,2 +40165,6,1.0,2,1.8503985404968262,166,0.0,2 +40166,6,0.0,2,1.487403154373169,167,1.0,2 +40167,6,0.0,2,1.295405626296997,168,1.0,2 +40168,6,0.0,2,1.2274059057235718,169,0.0,2 +40169,6,0.0,2,1.4254039525985718,170,1.0,2 +40170,6,0.0,2,1.368404746055603,171,1.0,2 +40171,6,0.0,2,1.3084055185317993,172,1.0,2 +40172,6,0.0,2,1.2304058074951172,173,1.0,2 +40173,6,0.0,2,1.4294039011001587,174,0.0,2 +40174,6,0.0,2,1.3564049005508423,175,1.0,2 +40175,6,0.0,2,1.560402274131775,176,1.0,2 +40176,6,0.0,2,1.3804045915603638,177,0.0,2 +40177,6,1.0,2,1.4374037981033325,178,1.0,2 +40178,6,1.0,2,1.3824045658111572,179,0.0,2 +40179,6,1.0,2,1.6014018058776855,180,0.0,2 +40180,6,0.0,2,1.8083990812301636,181,0.0,2 +40181,6,0.0,2,2.167403221130371,182,1.0,2 +40182,6,0.0,2,1.9113976955413818,183,0.0,2 +40183,6,1.0,2,1.9923967123031616,184,1.0,2 +40184,6,1.0,2,1.3624048233032227,185,0.0,2 +40185,6,1.0,2,1.3664047718048096,186,0.0,2 +40186,6,0.0,2,1.2194058895111084,187,0.0,2 +40187,6,1.0,2,1.2624058723449707,188,1.0,2 +40188,6,1.0,2,1.3934043645858765,189,0.0,2 +40189,6,0.0,2,1.1834057569503784,190,0.0,2 +40190,6,1.0,2,1.670400857925415,191,0.0,2 +40191,6,0.0,2,1.4074041843414307,192,1.0,2 +40192,6,0.0,2,1.3834044933319092,193,0.0,2 +40193,6,0.0,2,1.4274039268493652,194,0.0,2 +40194,6,0.0,2,1.39540433883667,195,1.0,2 +40195,6,0.0,2,1.3774045705795288,196,1.0,2 +40196,6,0.0,2,1.272405982017517,197,1.0,2 +40197,6,0.0,2,1.4944031238555908,198,0.0,2 +40198,6,0.0,2,2.0613980293273926,199,1.0,2 +40199,6,0.0,2,1.4564036130905151,200,1.0,2 +40200,6,0.0,2,1.1524057388305664,201,0.0,2 +40201,6,0.0,2,1.2714059352874756,202,1.0,2 +40202,6,0.0,2,1.5204027891159058,203,1.0,2 +40203,6,0.0,2,1.3564049005508423,204,0.0,2 +40204,6,0.0,2,1.8423986434936523,205,0.0,2 +40205,6,0.0,2,1.2914056777954102,206,0.0,2 +40206,6,0.0,2,1.2344058752059937,207,1.0,2 +40207,6,0.0,2,1.211405873298645,208,1.0,2 +40208,6,0.0,2,1.1154056787490845,209,1.0,2 +40209,6,0.0,2,1.0724055767059326,210,0.0,2 +40210,6,0.0,2,1.242405891418457,211,0.0,2 +40211,6,0.0,2,2.4724173545837402,212,0.0,2 +40212,6,1.0,2,1.298405647277832,213,1.0,2 +40213,6,1.0,2,1.4294039011001587,214,0.0,2 +40214,6,0.0,2,1.671400785446167,215,0.0,2 +40215,6,1.0,2,1.8683983087539673,216,0.0,2 +40216,6,1.0,2,1.4024043083190918,217,1.0,2 +40217,6,1.0,2,1.4104042053222656,218,0.0,2 +40218,6,0.0,2,1.950397253036499,219,1.0,2 +40219,6,0.0,2,1.3624048233032227,220,0.0,2 +40220,6,0.0,2,1.5104029178619385,221,1.0,2 +40221,6,0.0,2,1.1944057941436768,222,0.0,2 +40222,6,0.0,2,1.9733970165252686,223,0.0,2 +40223,6,0.0,2,1.4094041585922241,224,0.0,2 +40224,6,1.0,2,1.8893980979919434,225,1.0,2 +40225,6,1.0,2,1.4744033813476562,226,1.0,2 +40226,6,1.0,2,1.1944057941436768,227,1.0,2 +40227,6,1.0,2,2.0443973541259766,228,0.0,2 +40228,6,0.0,2,1.7773995399475098,229,1.0,2 +40229,6,0.0,2,1.5074028968811035,230,0.0,2 +40230,6,0.0,2,1.8943979740142822,231,1.0,2 +40231,6,0.0,2,1.3884044885635376,232,1.0,2 +40232,6,0.0,2,1.420404076576233,233,0.0,2 +40233,6,0.0,2,1.245405912399292,234,0.0,2 +40234,6,1.0,2,1.5714020729064941,235,0.0,2 +40235,6,0.0,2,1.9233975410461426,236,1.0,2 +40236,6,0.0,2,1.4114041328430176,237,1.0,2 +40237,6,0.0,2,1.1344056129455566,238,0.0,2 +40238,6,0.0,2,1.3324052095413208,239,1.0,2 +40239,6,0.0,2,1.4734033346176147,240,1.0,2 +40240,6,0.0,2,1.4754033088684082,241,0.0,2 +40241,6,0.0,2,2.3014092445373535,242,1.0,2 +40242,6,0.0,2,1.3544049263000488,243,1.0,2 +40243,6,0.0,2,1.1584057807922363,244,0.0,2 +40244,6,1.0,2,1.832398772239685,245,1.0,2 +40245,6,1.0,2,1.7164002656936646,246,1.0,2 +40246,6,1.0,2,2.0433974266052246,247,1.0,2 +40247,6,1.0,2,1.5004030466079712,248,1.0,2 +40248,6,1.0,2,2.001396656036377,249,0.0,2 +40249,6,1.0,2,1.9483972787857056,250,1.0,2 +40250,6,1.0,2,1.3664047718048096,251,1.0,2 +40251,6,1.0,2,1.3044055700302124,252,1.0,2 +40252,6,1.0,2,1.413404107093811,253,1.0,2 +40253,6,1.0,2,1.766399621963501,254,0.0,2 +40254,6,0.0,2,1.9273974895477295,255,1.0,2 +40255,6,0.0,2,1.4724034070968628,256,0.0,2 +40256,6,1.0,2,1.1924058198928833,257,0.0,2 +40257,6,1.0,2,1.6944005489349365,258,0.0,2 +40258,6,0.0,2,1.2204058170318604,259,0.0,2 +40259,6,0.0,2,1.3884044885635376,260,1.0,2 +40260,6,0.0,2,1.759399652481079,261,0.0,2 +40261,6,0.0,2,1.5034029483795166,262,1.0,2 +40262,6,0.0,2,1.365404725074768,263,1.0,2 +40263,6,1.0,2,1.2104058265686035,264,1.0,2 +40264,6,1.0,2,1.2064058780670166,265,1.0,2 +40265,6,0.0,2,1.3074054718017578,266,0.0,2 +40266,6,1.0,2,1.2534059286117554,267,1.0,2 +40267,6,1.0,2,1.4504036903381348,268,1.0,2 +40268,6,1.0,2,1.6644009351730347,269,0.0,2 +40269,6,0.0,2,1.1884057521820068,270,0.0,2 +40270,6,1.0,2,1.295405626296997,271,1.0,2 +40271,6,0.0,2,1.6144015789031982,272,1.0,2 +40272,6,0.0,2,1.7993991374969482,273,0.0,2 +40273,6,1.0,2,2.150402307510376,274,0.0,2 +40274,6,0.0,2,1.205405831336975,275,0.0,2 +40275,6,1.0,2,1.3004056215286255,276,1.0,2 +40276,6,0.0,2,1.5594022274017334,277,1.0,2 +40277,6,0.0,2,2.0843992233276367,278,0.0,2 +40278,6,1.0,2,1.4934030771255493,279,0.0,2 +40279,6,1.0,2,1.4294039011001587,280,1.0,2 +40280,6,1.0,2,1.6404012441635132,281,1.0,2 +40281,6,1.0,2,1.527402639389038,282,1.0,2 +40282,6,1.0,2,1.3714046478271484,283,1.0,2 +40283,6,1.0,2,1.535402536392212,284,0.0,2 +40284,6,0.0,2,1.7733995914459229,285,0.0,2 +40285,6,0.0,2,1.8413987159729004,286,0.0,2 +40286,6,0.0,2,1.145405650138855,287,0.0,2 +40287,6,0.0,2,1.2244058847427368,288,0.0,2 +40288,6,0.0,2,1.6354012489318848,289,1.0,2 +40289,6,0.0,2,1.5484024286270142,290,1.0,2 +40290,6,0.0,2,1.2224059104919434,291,0.0,2 +40291,6,1.0,2,1.2564059495925903,292,1.0,2 +40292,6,1.0,2,1.3614047765731812,293,1.0,2 +40293,6,1.0,2,1.3494049310684204,294,1.0,2 +40294,6,1.0,2,1.2714059352874756,295,1.0,2 +40295,6,1.0,2,1.4854031801223755,296,1.0,2 +40296,6,1.0,2,1.1874058246612549,297,1.0,2 +40297,6,0.0,2,2.005396604537964,298,1.0,2 +40298,6,1.0,2,1.4244040250778198,299,0.0,2 +40299,6,0.0,2,1.373404622077942,300,0.0,2 +40300,6,1.0,2,1.8583984375,301,0.0,2 +40301,6,1.0,2,2.5804224014282227,302,1.0,2 +40302,6,1.0,2,1.4184041023254395,303,1.0,2 +40303,6,1.0,2,1.6594009399414062,304,0.0,2 +40304,6,0.0,2,2.104400157928467,305,0.0,2 +40305,6,1.0,2,1.7304000854492188,306,1.0,2 +40306,6,1.0,2,1.4294039011001587,307,0.0,2 +40307,6,0.0,2,2.176403522491455,308,0.0,2 +40308,6,1.0,2,1.630401372909546,309,1.0,2 +40309,6,1.0,2,1.3304052352905273,310,1.0,2 +40310,6,1.0,2,1.246405839920044,311,1.0,2 +40311,6,1.0,2,1.817399024963379,312,1.0,2 +40312,6,0.0,2,1.457403540611267,313,0.0,2 +40313,6,1.0,2,1.814399003982544,314,0.0,2 +40314,6,0.0,2,1.6634008884429932,315,0.0,2 +40315,6,0.0,2,1.2074058055877686,316,1.0,2 +40316,6,0.0,2,1.2384059429168701,317,0.0,2 +40317,6,0.0,2,1.7304000854492188,318,1.0,2 +40318,6,0.0,2,1.246405839920044,319,1.0,2 +40319,6,0.0,2,1.5434024333953857,320,0.0,2 +40320,6,0.0,2,1.8383986949920654,321,0.0,2 +40321,6,1.0,2,1.7414000034332275,322,0.0,2 +40322,6,1.0,2,1.6794006824493408,323,0.0,2 +40323,6,0.0,2,1.5584022998809814,324,1.0,2 +40324,6,0.0,2,1.8453986644744873,325,0.0,2 +40325,6,0.0,2,1.3404051065444946,326,1.0,2 +40326,6,0.0,2,1.487403154373169,327,0.0,2 +40327,6,0.0,2,1.9653971195220947,328,0.0,2 +40328,6,0.0,2,1.5874018669128418,329,1.0,2 +40329,6,0.0,2,1.3184053897857666,330,0.0,2 +40330,6,0.0,2,1.792399287223816,331,0.0,2 +40331,6,0.0,2,1.4784033298492432,332,0.0,2 +40332,6,0.0,2,1.2574058771133423,333,1.0,2 +40333,6,0.0,2,1.3484050035476685,334,1.0,2 +40334,6,0.0,2,1.7364000082015991,335,1.0,2 +40335,6,0.0,2,1.5034029483795166,336,1.0,2 +40336,6,0.0,2,2.3994140625,337,0.0,2 +40337,6,1.0,2,2.2934088706970215,338,1.0,2 +40338,6,1.0,2,1.1894057989120483,339,1.0,2 +40339,6,1.0,2,1.236405849456787,340,1.0,2 +40340,6,1.0,2,1.6634008884429932,341,0.0,2 +40341,6,1.0,2,1.675400733947754,342,1.0,2 +40342,6,1.0,2,1.533402681350708,343,1.0,2 +40343,6,1.0,2,1.4854031801223755,344,0.0,2 +40344,6,1.0,2,1.4674034118652344,345,1.0,2 +40345,6,1.0,2,1.2354059219360352,346,1.0,2 +40346,6,1.0,2,1.4094041585922241,347,0.0,2 +40347,6,0.0,2,1.5984017848968506,348,0.0,2 +40348,6,0.0,2,1.7074003219604492,349,0.0,2 +40349,6,1.0,2,2.0683984756469727,350,0.0,2 +40350,6,0.0,2,1.2794058322906494,351,1.0,2 +40351,6,0.0,2,1.5454025268554688,352,0.0,2 +40352,6,0.0,2,1.6144015789031982,353,1.0,2 +40353,6,0.0,2,1.1294056177139282,354,1.0,2 +40354,6,0.0,2,1.4514036178588867,355,1.0,2 +40355,6,0.0,2,1.1234056949615479,356,1.0,2 +40356,6,0.0,2,1.2864058017730713,357,1.0,2 +40357,6,0.0,2,1.3804045915603638,358,1.0,2 +40358,6,0.0,2,1.1124056577682495,359,0.0,2 +40359,6,0.0,2,1.2884057760238647,360,1.0,2 +40360,6,0.0,2,1.7324000597000122,361,0.0,2 +40361,6,0.0,2,1.387404441833496,362,0.0,2 +40362,6,1.0,2,2.0303966999053955,363,0.0,2 +40363,6,1.0,2,1.9163976907730103,364,1.0,2 +40364,6,1.0,2,1.251405954360962,365,1.0,2 +40365,6,1.0,2,1.439403772354126,366,1.0,2 +40366,6,1.0,2,1.276405930519104,367,1.0,2 +40367,6,1.0,2,1.2594059705734253,368,1.0,2 +40368,6,1.0,2,1.3624048233032227,369,1.0,2 +40369,6,1.0,2,1.4064042568206787,370,0.0,2 +40370,6,0.0,2,1.2874057292938232,371,0.0,2 +40371,6,0.0,2,1.7114002704620361,372,0.0,2 +40372,6,1.0,2,1.5014029741287231,373,1.0,2 +40373,6,1.0,2,1.6474010944366455,374,1.0,2 +40374,6,1.0,2,1.669400930404663,375,1.0,2 +40375,6,1.0,2,1.3964043855667114,376,0.0,2 +40376,6,1.0,2,2.381412982940674,377,0.0,2 +40377,6,0.0,2,1.2414058446884155,378,1.0,2 +40378,6,0.0,2,1.2284058332443237,379,0.0,2 +40379,6,0.0,2,1.1924058198928833,380,0.0,2 +40380,6,1.0,2,2.0343968868255615,381,1.0,2 +40381,6,1.0,2,1.438403844833374,382,1.0,2 +40382,6,1.0,2,1.7903993129730225,383,0.0,2 +40383,6,0.0,2,2.159402847290039,384,1.0,2 +40384,6,0.0,2,1.083405613899231,385,1.0,2 +40385,6,0.0,2,1.3334051370620728,386,1.0,2 +40386,6,0.0,2,1.4224040508270264,387,0.0,2 +40387,6,0.0,2,1.2044057846069336,388,0.0,2 +40388,6,1.0,2,1.276405930519104,389,0.0,2 +40389,6,0.0,2,1.5494024753570557,390,1.0,2 +40390,6,0.0,2,1.3704047203063965,391,0.0,2 +40391,6,1.0,2,1.4024043083190918,392,0.0,2 +40392,6,0.0,2,1.2264058589935303,393,0.0,2 +40393,6,1.0,2,1.4714033603668213,394,1.0,2 +40394,6,1.0,2,1.9443973302841187,395,0.0,2 +40395,6,1.0,2,1.5384025573730469,396,0.0,2 +40396,6,1.0,2,1.6024017333984375,397,1.0,2 +40397,6,1.0,2,1.2314058542251587,398,1.0,2 +40398,6,1.0,2,1.1634057760238647,399,0.0,2 +40399,6,1.0,2,2.110400438308716,400,0.0,2 +40400,6,0.0,2,1.8433985710144043,401,1.0,2 +40401,6,0.0,2,1.2714059352874756,402,0.0,2 +40402,6,0.0,2,2.2564072608947754,403,1.0,2 +40403,6,0.0,2,1.4444037675857544,404,1.0,2 +40404,6,0.0,2,1.811398983001709,405,0.0,2 +40405,6,0.0,2,1.1984057426452637,406,0.0,2 +40406,6,0.0,2,1.907397747039795,407,0.0,2 +40407,6,0.0,2,1.4144041538238525,408,0.0,2 +40408,6,1.0,2,1.4524036645889282,409,1.0,2 +40409,6,1.0,2,1.37240469455719,410,1.0,2 +40410,6,1.0,2,1.5164028406143188,411,1.0,2 +40411,6,1.0,2,1.3894044160842896,412,0.0,2 +40412,6,0.0,2,1.625401496887207,413,0.0,2 +40413,6,1.0,2,1.7513997554779053,414,1.0,2 +40414,6,1.0,2,1.3934043645858765,415,0.0,2 +40415,6,1.0,2,1.6664009094238281,416,1.0,2 +40416,6,1.0,2,1.368404746055603,417,1.0,2 +40417,6,1.0,2,1.417404055595398,418,1.0,2 +40418,6,1.0,2,1.508402943611145,419,1.0,2 +40419,6,1.0,2,1.4034042358398438,420,1.0,2 +40420,6,1.0,2,1.9393973350524902,421,1.0,2 +40421,6,1.0,2,1.3984043598175049,422,1.0,2 +40422,6,1.0,2,1.6614010334014893,423,1.0,2 +40423,6,1.0,2,1.8463985919952393,424,0.0,2 +40424,6,1.0,2,1.2314058542251587,425,1.0,2 +40425,6,0.0,2,1.6054017543792725,426,1.0,2 +40426,6,0.0,2,1.1234056949615479,427,0.0,2 +40427,6,1.0,2,1.373404622077942,428,1.0,2 +40428,6,1.0,2,1.7234001159667969,429,1.0,2 +40429,6,1.0,2,1.4714033603668213,430,1.0,2 +40430,6,1.0,2,1.4454036951065063,431,1.0,2 +40431,6,1.0,2,1.5574023723602295,432,0.0,2 +40432,6,0.0,2,1.34340500831604,433,0.0,2 +40433,6,0.0,2,1.3814045190811157,434,1.0,2 +40434,6,0.0,2,1.3014055490493774,435,1.0,2 +40435,6,0.0,2,1.2834057807922363,436,0.0,2 +40436,6,0.0,2,1.5394024848937988,437,1.0,2 +40437,6,0.0,2,1.2644059658050537,438,0.0,2 +40438,6,0.0,2,1.350404977798462,439,0.0,2 +40439,6,1.0,2,2.3394112586975098,440,1.0,2 +40440,6,1.0,2,1.2594059705734253,441,1.0,2 +40441,6,1.0,2,1.7813994884490967,442,1.0,2 +40442,6,1.0,2,1.4244040250778198,443,0.0,2 +40443,6,0.0,2,1.303405523300171,444,1.0,2 +40444,6,0.0,2,1.2334058284759521,445,1.0,2 +40445,6,0.0,2,1.3484050035476685,446,1.0,2 +40446,6,0.0,2,1.6664009094238281,447,0.0,2 +40447,6,0.0,2,1.5024030208587646,448,1.0,2 +40448,6,0.0,2,1.5024030208587646,449,1.0,2 +40449,6,0.0,2,1.9263975620269775,450,0.0,2 +40450,6,1.0,2,1.5484024286270142,451,1.0,2 +40451,6,1.0,2,1.17840576171875,452,1.0,2 +40452,6,1.0,2,1.2174057960510254,453,1.0,2 +40453,6,1.0,2,1.2204058170318604,454,0.0,2 +40454,6,0.0,2,1.8373987674713135,455,0.0,2 +40455,6,0.0,2,1.4544036388397217,456,0.0,2 +40456,6,0.0,2,1.6624009609222412,457,0.0,2 +40457,6,0.0,2,1.7254002094268799,458,0.0,2 +40458,6,1.0,2,1.276405930519104,459,0.0,2 +40459,6,0.0,2,1.2174057960510254,460,1.0,2 +40460,6,0.0,2,1.2574058771133423,461,0.0,2 +40461,6,1.0,2,1.4584035873413086,462,1.0,2 +40462,6,1.0,2,1.6614010334014893,463,1.0,2 +40463,6,1.0,2,1.4444037675857544,464,0.0,2 +40464,6,0.0,2,1.3164054155349731,465,0.0,2 +40465,6,0.0,2,1.2324059009552002,466,1.0,2 +40466,6,0.0,2,1.2374058961868286,467,0.0,2 +40467,6,0.0,2,1.2754058837890625,468,0.0,2 +40468,6,1.0,2,1.37240469455719,469,0.0,2 +40469,6,0.0,2,1.5364025831222534,470,1.0,2 +40470,6,0.0,2,1.1574057340621948,471,0.0,2 +40471,6,0.0,2,1.508402943611145,472,0.0,2 +40472,6,0.0,2,1.242405891418457,473,1.0,2 +40473,6,0.0,2,1.4984030723571777,474,1.0,2 +40474,6,0.0,2,1.3864045143127441,475,1.0,2 +40475,6,0.0,2,1.3184053897857666,476,0.0,2 +40476,6,1.0,2,1.387404441833496,477,1.0,2 +40477,6,1.0,2,1.4694033861160278,478,1.0,2 +40478,6,1.0,2,1.3794045448303223,479,0.0,2 +40479,6,0.0,2,1.3994042873382568,480,0.0,2 +40480,6,1.0,2,1.7463998794555664,481,1.0,2 +40481,6,1.0,2,1.4244040250778198,482,0.0,2 +40482,6,0.0,2,1.4584035873413086,483,1.0,2 +40483,6,0.0,2,1.7074003219604492,484,0.0,2 +40484,6,0.0,2,1.99739670753479,485,0.0,2 +40485,6,1.0,2,2.0293965339660645,486,1.0,2 +40486,6,1.0,2,1.2614059448242188,487,0.0,2 +40487,6,0.0,2,1.582401990890503,488,0.0,2 +40488,6,1.0,2,1.5364025831222534,489,0.0,2 +40489,6,0.0,2,1.2824058532714844,490,1.0,2 +40490,6,1.0,2,1.8423986434936523,491,1.0,2 +40491,6,1.0,2,1.5414025783538818,492,1.0,2 +40492,6,1.0,2,1.373404622077942,493,0.0,2 +40493,6,0.0,2,1.3154053688049316,494,1.0,2 +40494,6,0.0,2,1.4914031028747559,495,1.0,2 +40495,6,0.0,2,1.1364057064056396,496,0.0,2 +40496,6,0.0,2,1.39540433883667,497,1.0,2 +40497,6,0.0,2,1.2824058532714844,498,0.0,2 +40498,6,0.0,2,1.5984017848968506,499,1.0,2 +40499,6,0.0,2,1.509402871131897,500,1.0,2 +40500,7,0.0,0,1.6850543022155762,1,0.0,2 +40501,7,1.0,0,2.0500495433807373,2,1.0,2 +40502,7,1.0,0,1.4530571699142456,3,1.0,2 +40503,7,1.0,0,1.1560587882995605,4,1.0,2 +40504,7,1.0,0,1.3500585556030273,5,1.0,2 +40505,7,1.0,0,1.2820590734481812,6,1.0,2 +40506,7,1.0,0,1.6070551872253418,7,0.0,2 +40507,7,0.0,0,1.4270575046539307,8,0.0,2 +40508,7,0.0,0,1.258059024810791,9,0.0,2 +40509,7,0.0,0,1.6190550327301025,10,0.0,2 +40510,7,0.0,0,1.6540546417236328,11,0.0,2 +40511,7,0.0,0,1.926051139831543,12,0.0,2 +40512,7,1.0,0,1.624055027961731,13,1.0,2 +40513,7,1.0,0,1.3340587615966797,14,1.0,2 +40514,7,1.0,0,1.4220576286315918,15,1.0,2 +40515,7,1.0,0,1.3840581178665161,16,1.0,2 +40516,7,1.0,0,1.410057783126831,17,1.0,2 +40517,7,1.0,0,1.2220590114593506,18,1.0,2 +40518,7,1.0,0,1.5380561351776123,19,1.0,2 +40519,7,1.0,0,1.3950579166412354,20,1.0,2 +40520,7,1.0,0,1.2690590620040894,21,1.0,2 +40521,7,1.0,0,1.260059118270874,22,1.0,2 +40522,7,1.0,0,1.741053581237793,23,0.0,2 +40523,7,1.0,0,1.9880503416061401,24,1.0,2 +40524,7,1.0,0,1.2560590505599976,25,0.0,2 +40525,7,0.0,0,2.0830509662628174,26,0.0,2 +40526,7,0.0,0,1.55405592918396,27,0.0,2 +40527,7,1.0,0,1.2510590553283691,28,1.0,2 +40528,7,1.0,0,1.919051170349121,29,1.0,2 +40529,7,1.0,0,1.5180563926696777,30,1.0,2 +40530,7,1.0,0,1.4690569639205933,31,1.0,2 +40531,7,0.0,0,1.555055856704712,32,0.0,2 +40532,7,1.0,0,1.4420573711395264,33,1.0,2 +40533,7,1.0,0,1.7490534782409668,34,0.0,2 +40534,7,0.0,0,1.459057092666626,35,0.0,2 +40535,7,0.0,0,1.455057144165039,36,0.0,2 +40536,7,0.0,0,2.1080522537231445,37,0.0,2 +40537,7,1.0,0,1.4880567789077759,38,1.0,2 +40538,7,1.0,0,1.4270575046539307,39,1.0,2 +40539,7,1.0,0,1.3300588130950928,40,1.0,2 +40540,7,1.0,0,1.50205659866333,41,0.0,2 +40541,7,1.0,0,1.2810591459274292,42,1.0,2 +40542,7,1.0,0,1.3320587873458862,43,1.0,2 +40543,7,1.0,0,1.4040578603744507,44,1.0,2 +40544,7,1.0,0,1.9720505475997925,45,1.0,2 +40545,7,1.0,0,1.3770581483840942,46,1.0,2 +40546,7,1.0,0,1.5660557746887207,47,1.0,2 +40547,7,1.0,0,1.7770531177520752,48,1.0,2 +40548,7,1.0,0,1.1670588254928589,49,0.0,2 +40549,7,0.0,0,2.1240530014038086,50,0.0,2 +40550,7,1.0,0,1.7700531482696533,51,1.0,2 +40551,7,1.0,0,1.6480547189712524,52,1.0,2 +40552,7,1.0,0,1.4970566034317017,53,1.0,2 +40553,7,1.0,0,1.3550584316253662,54,1.0,2 +40554,7,1.0,0,1.252058982849121,55,0.0,2 +40555,7,1.0,0,2.216057300567627,56,0.0,2 +40556,7,0.0,0,1.4870567321777344,57,0.0,2 +40557,7,0.0,0,1.5040565729141235,58,0.0,2 +40558,7,1.0,0,1.4560571908950806,59,1.0,2 +40559,7,1.0,0,1.7310535907745361,60,1.0,2 +40560,7,1.0,0,1.3070590496063232,61,1.0,2 +40561,7,1.0,0,1.580055594444275,62,0.0,2 +40562,7,1.0,0,1.341058611869812,63,1.0,2 +40563,7,1.0,0,1.5420560836791992,64,1.0,2 +40564,7,1.0,0,1.532056212425232,65,0.0,2 +40565,7,0.0,0,1.6730544567108154,66,0.0,2 +40566,7,1.0,0,1.6070551872253418,67,1.0,2 +40567,7,1.0,0,1.6800543069839478,68,1.0,2 +40568,7,1.0,0,1.2460590600967407,69,0.0,2 +40569,7,0.0,0,1.2720590829849243,70,0.0,2 +40570,7,0.0,0,1.437057375907898,71,0.0,2 +40571,7,1.0,0,1.8650519847869873,72,1.0,2 +40572,7,1.0,0,1.2680590152740479,73,1.0,2 +40573,7,1.0,0,1.2700591087341309,74,1.0,2 +40574,7,1.0,0,1.5580558776855469,75,1.0,2 +40575,7,1.0,0,1.4380574226379395,76,1.0,2 +40576,7,1.0,0,1.3960579633712769,77,1.0,2 +40577,7,1.0,0,1.8180525302886963,78,0.0,2 +40578,7,1.0,0,1.2630590200424194,79,1.0,2 +40579,7,1.0,0,1.5730557441711426,80,1.0,2 +40580,7,1.0,0,1.4830567836761475,81,1.0,2 +40581,7,1.0,0,1.4080578088760376,82,1.0,2 +40582,7,1.0,0,1.3540585041046143,83,0.0,2 +40583,7,1.0,0,2.545072555541992,84,1.0,2 +40584,7,1.0,0,1.4000579118728638,85,0.0,2 +40585,7,0.0,0,1.462057113647461,86,0.0,2 +40586,7,0.0,0,1.3090590238571167,87,0.0,2 +40587,7,1.0,0,1.2740590572357178,88,1.0,2 +40588,7,1.0,0,1.695054054260254,89,1.0,2 +40589,7,0.0,0,1.4430572986602783,90,0.0,2 +40590,7,1.0,0,2.0970516204833984,91,1.0,2 +40591,7,1.0,0,1.2800590991973877,92,1.0,2 +40592,7,1.0,0,1.480056881904602,93,1.0,2 +40593,7,1.0,0,1.432057499885559,94,1.0,2 +40594,7,1.0,0,1.2530590295791626,95,0.0,2 +40595,7,0.0,0,1.2990591526031494,96,0.0,2 +40596,7,1.0,0,1.874051809310913,97,1.0,2 +40597,7,1.0,0,1.2820590734481812,98,0.0,2 +40598,7,0.0,0,1.2650591135025024,99,0.0,2 +40599,7,0.0,0,1.5580558776855469,100,0.0,2 +40600,7,0.0,0,1.4660570621490479,101,0.0,2 +40601,7,0.0,0,1.2430590391159058,102,1.0,2 +40602,7,1.0,0,1.1680588722229004,103,1.0,2 +40603,7,0.0,0,1.2320590019226074,104,0.0,2 +40604,7,1.0,0,1.2990591526031494,105,1.0,2 +40605,7,1.0,0,1.5210562944412231,106,0.0,2 +40606,7,0.0,0,1.36305832862854,107,0.0,2 +40607,7,0.0,0,1.410057783126831,108,1.0,2 +40608,7,0.0,0,1.2220590114593506,109,1.0,2 +40609,7,0.0,0,1.2100589275360107,110,0.0,2 +40610,7,1.0,0,1.5170563459396362,111,1.0,2 +40611,7,1.0,0,1.5010565519332886,112,1.0,2 +40612,7,1.0,0,1.370058298110962,113,1.0,2 +40613,7,1.0,0,1.3730581998825073,114,1.0,2 +40614,7,1.0,0,1.7750530242919922,115,0.0,2 +40615,7,1.0,0,1.2650591135025024,116,1.0,2 +40616,7,1.0,0,1.2140589952468872,117,1.0,2 +40617,7,1.0,0,1.790052890777588,118,1.0,2 +40618,7,1.0,0,1.154058814048767,119,1.0,2 +40619,7,1.0,0,1.6820542812347412,120,1.0,2 +40620,7,1.0,0,1.829052448272705,121,1.0,2 +40621,7,1.0,0,1.8760517835617065,122,1.0,2 +40622,7,1.0,0,1.5660557746887207,123,1.0,2 +40623,7,1.0,0,1.598055362701416,124,0.0,2 +40624,7,0.0,0,1.315058946609497,125,0.0,2 +40625,7,1.0,0,1.9060513973236084,126,1.0,2 +40626,7,1.0,0,1.3950579166412354,127,1.0,2 +40627,7,0.0,0,1.650054693222046,128,1.0,2 +40628,7,1.0,0,2.198056221008301,129,0.0,2 +40629,7,0.0,0,1.2180589437484741,130,0.0,2 +40630,7,0.0,0,2.270059585571289,131,0.0,2 +40631,7,1.0,0,2.1120524406433105,132,1.0,2 +40632,7,1.0,0,1.4220576286315918,133,1.0,2 +40633,7,1.0,0,1.2790590524673462,134,1.0,2 +40634,7,1.0,0,1.2420589923858643,135,1.0,2 +40635,7,1.0,0,1.3040591478347778,136,1.0,2 +40636,7,1.0,0,1.8900516033172607,137,1.0,2 +40637,7,1.0,0,1.594055414199829,138,1.0,2 +40638,7,0.0,0,1.1640589237213135,139,0.0,2 +40639,7,1.0,0,1.808052659034729,140,1.0,2 +40640,7,1.0,0,1.3060591220855713,141,1.0,2 +40641,7,1.0,0,1.366058349609375,142,1.0,2 +40642,7,1.0,0,1.572055697441101,143,1.0,2 +40643,7,0.0,0,1.5810556411743164,144,0.0,2 +40644,7,1.0,0,1.41505765914917,145,1.0,2 +40645,7,1.0,0,1.4500572681427002,146,1.0,2 +40646,7,1.0,0,1.4700570106506348,147,1.0,2 +40647,7,1.0,0,1.1790589094161987,148,1.0,2 +40648,7,1.0,0,1.463057041168213,149,1.0,2 +40649,7,1.0,0,1.52505624294281,150,1.0,2 +40650,7,1.0,0,1.4270575046539307,151,1.0,2 +40651,7,1.0,0,1.5860555171966553,152,1.0,2 +40652,7,1.0,0,1.50205659866333,153,1.0,2 +40653,7,1.0,0,1.3310587406158447,154,1.0,2 +40654,7,1.0,0,1.8030526638031006,155,1.0,2 +40655,7,1.0,0,1.187058925628662,156,1.0,2 +40656,7,1.0,0,1.5560559034347534,157,0.0,2 +40657,7,0.0,0,1.193058967590332,158,0.0,2 +40658,7,1.0,0,1.3350586891174316,159,0.0,2 +40659,7,0.0,0,1.3610583543777466,160,1.0,2 +40660,7,0.0,0,1.4700570106506348,161,0.0,2 +40661,7,1.0,0,1.5920554399490356,162,1.0,2 +40662,7,1.0,0,1.3510584831237793,163,1.0,2 +40663,7,0.0,0,1.7000540494918823,164,0.0,2 +40664,7,1.0,0,1.5520559549331665,165,1.0,2 +40665,7,1.0,0,2.197056293487549,166,1.0,2 +40666,7,0.0,0,1.5440560579299927,167,0.0,2 +40667,7,1.0,0,1.2410590648651123,168,1.0,2 +40668,7,1.0,0,1.4600571393966675,169,0.0,2 +40669,7,0.0,0,1.9240511655807495,170,0.0,2 +40670,7,0.0,0,1.4760569334030151,171,0.0,2 +40671,7,1.0,0,1.9400509595870972,172,0.0,2 +40672,7,1.0,0,1.2740590572357178,173,1.0,2 +40673,7,1.0,0,1.5120564699172974,174,1.0,2 +40674,7,1.0,0,1.1840589046478271,175,1.0,2 +40675,7,1.0,0,1.8850517272949219,176,1.0,2 +40676,7,1.0,0,1.432057499885559,177,1.0,2 +40677,7,1.0,0,1.5450559854507446,178,1.0,2 +40678,7,1.0,0,1.8240524530410767,179,1.0,2 +40679,7,1.0,0,1.2120590209960938,180,1.0,2 +40680,7,1.0,0,1.2090590000152588,181,1.0,2 +40681,7,1.0,0,1.5460560321807861,182,1.0,2 +40682,7,1.0,0,1.7330536842346191,183,1.0,2 +40683,7,1.0,0,1.6160551309585571,184,1.0,2 +40684,7,1.0,0,1.7130539417266846,185,1.0,2 +40685,7,1.0,0,1.5700557231903076,186,1.0,2 +40686,7,1.0,0,1.5050565004348755,187,1.0,2 +40687,7,1.0,0,1.8690519332885742,188,1.0,2 +40688,7,1.0,0,1.260059118270874,189,1.0,2 +40689,7,1.0,0,1.2190589904785156,190,1.0,2 +40690,7,1.0,0,1.4040578603744507,191,1.0,2 +40691,7,1.0,0,1.6920541524887085,192,1.0,2 +40692,7,1.0,0,1.4530571699142456,193,1.0,2 +40693,7,1.0,0,1.6140551567077637,194,1.0,2 +40694,7,1.0,0,1.5680557489395142,195,1.0,2 +40695,7,0.0,0,1.642054796218872,196,0.0,2 +40696,7,1.0,0,1.2810591459274292,197,0.0,2 +40697,7,1.0,0,1.7670531272888184,198,1.0,2 +40698,7,1.0,0,1.298059105873108,199,1.0,2 +40699,7,1.0,0,1.2810591459274292,200,1.0,2 +40700,7,1.0,0,1.1760588884353638,201,0.0,2 +40701,7,0.0,0,1.922051191329956,202,0.0,2 +40702,7,1.0,0,1.3000590801239014,203,1.0,2 +40703,7,1.0,0,1.3520585298538208,204,1.0,2 +40704,7,1.0,0,1.4410573244094849,205,1.0,2 +40705,7,0.0,0,1.2890591621398926,206,1.0,2 +40706,7,1.0,0,1.3030591011047363,207,0.0,2 +40707,7,0.0,0,1.2620590925216675,208,0.0,2 +40708,7,1.0,0,1.5650558471679688,209,1.0,2 +40709,7,1.0,0,1.3810580968856812,210,1.0,2 +40710,7,1.0,0,1.742053508758545,211,1.0,2 +40711,7,1.0,0,1.39205801486969,212,1.0,2 +40712,7,1.0,0,1.7170538902282715,213,1.0,2 +40713,7,1.0,0,1.3390586376190186,214,1.0,2 +40714,7,1.0,0,1.2740590572357178,215,0.0,2 +40715,7,0.0,0,1.7050540447235107,216,0.0,2 +40716,7,1.0,0,1.3340587615966797,217,1.0,2 +40717,7,1.0,0,1.3960579633712769,218,1.0,2 +40718,7,1.0,0,1.5560559034347534,219,1.0,2 +40719,7,1.0,0,1.3740582466125488,220,1.0,2 +40720,7,1.0,0,1.68705415725708,221,1.0,2 +40721,7,1.0,0,1.4460573196411133,222,1.0,2 +40722,7,1.0,0,1.4130576848983765,223,0.0,2 +40723,7,1.0,0,1.3250588178634644,224,1.0,2 +40724,7,1.0,0,1.7400535345077515,225,1.0,2 +40725,7,1.0,0,1.3170589208602905,226,1.0,2 +40726,7,1.0,0,1.4500572681427002,227,1.0,2 +40727,7,1.0,0,1.261059045791626,228,1.0,2 +40728,7,1.0,0,1.433057427406311,229,1.0,2 +40729,7,1.0,0,1.1770589351654053,230,1.0,2 +40730,7,1.0,0,1.5400561094284058,231,1.0,2 +40731,7,1.0,0,1.3790581226348877,232,1.0,2 +40732,7,1.0,0,1.3770581483840942,233,1.0,2 +40733,7,1.0,0,1.345058560371399,234,1.0,2 +40734,7,1.0,0,1.6080552339553833,235,1.0,2 +40735,7,1.0,0,1.5920554399490356,236,1.0,2 +40736,7,1.0,0,1.3590583801269531,237,1.0,2 +40737,7,1.0,0,1.4270575046539307,238,1.0,2 +40738,7,1.0,0,2.1350533962249756,239,1.0,2 +40739,7,1.0,0,1.5890555381774902,240,1.0,2 +40740,7,1.0,0,1.5910553932189941,241,1.0,2 +40741,7,1.0,0,2.235058069229126,242,1.0,2 +40742,7,1.0,0,1.4730569124221802,243,1.0,2 +40743,7,1.0,0,1.6660544872283936,244,1.0,2 +40744,7,1.0,0,1.2750591039657593,245,1.0,2 +40745,7,1.0,0,1.5130563974380493,246,1.0,2 +40746,7,1.0,0,1.4160577058792114,247,1.0,2 +40747,7,1.0,0,1.4090577363967896,248,1.0,2 +40748,7,1.0,0,1.741053581237793,249,0.0,2 +40749,7,0.0,0,1.437057375907898,250,0.0,2 +40750,7,0.0,0,1.3280588388442993,251,0.0,2 +40751,7,1.0,0,1.3060591220855713,252,1.0,2 +40752,7,1.0,0,1.4420573711395264,253,1.0,2 +40753,7,1.0,0,1.4920567274093628,254,1.0,2 +40754,7,1.0,0,1.2770590782165527,255,1.0,2 +40755,7,1.0,0,1.3160589933395386,256,0.0,2 +40756,7,1.0,0,1.4680570363998413,257,1.0,2 +40757,7,1.0,0,1.367058277130127,258,1.0,2 +40758,7,1.0,0,1.6860542297363281,259,1.0,2 +40759,7,1.0,0,1.524056315422058,260,1.0,2 +40760,7,1.0,0,1.261059045791626,261,1.0,2 +40761,7,1.0,0,1.2190589904785156,262,1.0,2 +40762,7,1.0,0,1.3580584526062012,263,1.0,2 +40763,7,1.0,0,1.2740590572357178,264,1.0,2 +40764,7,1.0,0,1.2030589580535889,265,1.0,2 +40765,7,1.0,0,1.5590558052062988,266,1.0,2 +40766,7,1.0,0,1.323058843612671,267,1.0,2 +40767,7,1.0,0,1.2290589809417725,268,1.0,2 +40768,7,1.0,0,1.5200563669204712,269,1.0,2 +40769,7,1.0,0,1.3540585041046143,270,1.0,2 +40770,7,1.0,0,1.8110525608062744,271,1.0,2 +40771,7,1.0,0,1.3210588693618774,272,0.0,2 +40772,7,0.0,0,1.8280524015426636,273,1.0,2 +40773,7,0.0,0,1.230059027671814,274,0.0,2 +40774,7,1.0,0,2.025049924850464,275,0.0,2 +40775,7,0.0,0,2.0600500106811523,276,1.0,2 +40776,7,0.0,0,2.0380496978759766,277,0.0,2 +40777,7,0.0,0,1.2990591526031494,278,0.0,2 +40778,7,0.0,0,1.9800504446029663,279,0.0,2 +40779,7,0.0,0,1.1490588188171387,280,0.0,2 +40780,7,0.0,0,1.3030591011047363,281,0.0,2 +40781,7,0.0,0,1.3290587663650513,282,0.0,2 +40782,7,0.0,0,1.2460590600967407,283,0.0,2 +40783,7,0.0,0,1.3810580968856812,284,0.0,2 +40784,7,0.0,0,1.462057113647461,285,0.0,2 +40785,7,0.0,0,1.1950589418411255,286,0.0,2 +40786,7,0.0,0,1.6750543117523193,287,0.0,2 +40787,7,1.0,0,1.8030526638031006,288,1.0,2 +40788,7,1.0,0,1.366058349609375,289,1.0,2 +40789,7,1.0,0,1.3080590963363647,290,1.0,2 +40790,7,1.0,0,1.3490585088729858,291,1.0,2 +40791,7,1.0,0,1.734053611755371,292,0.0,2 +40792,7,0.0,0,1.1820589303970337,293,1.0,2 +40793,7,0.0,0,1.3840581178665161,294,0.0,2 +40794,7,1.0,0,1.5960553884506226,295,1.0,2 +40795,7,1.0,0,1.5670557022094727,296,1.0,2 +40796,7,1.0,0,1.367058277130127,297,1.0,2 +40797,7,1.0,0,1.437057375907898,298,1.0,2 +40798,7,0.0,0,1.481056809425354,299,1.0,2 +40799,7,0.0,0,1.2030589580535889,300,0.0,2 +40800,7,1.0,0,1.3080590963363647,301,1.0,2 +40801,7,1.0,0,1.4260575771331787,302,1.0,2 +40802,7,1.0,0,1.6300549507141113,303,0.0,2 +40803,7,1.0,0,1.6350548267364502,304,0.0,2 +40804,7,1.0,0,1.2870590686798096,305,0.0,2 +40805,7,1.0,0,1.7940528392791748,306,1.0,2 +40806,7,1.0,0,1.6280549764633179,307,1.0,2 +40807,7,1.0,0,1.4280575513839722,308,1.0,2 +40808,7,1.0,0,1.4940567016601562,309,1.0,2 +40809,7,1.0,0,1.547055959701538,310,1.0,2 +40810,7,1.0,0,1.2530590295791626,311,1.0,2 +40811,7,1.0,0,1.3090590238571167,312,1.0,2 +40812,7,0.0,0,1.4180576801300049,313,0.0,2 +40813,7,1.0,0,1.4240576028823853,314,1.0,2 +40814,7,1.0,0,1.6090552806854248,315,1.0,2 +40815,7,1.0,0,1.458057165145874,316,1.0,2 +40816,7,1.0,0,1.6280549764633179,317,1.0,2 +40817,7,1.0,0,1.6340548992156982,318,0.0,2 +40818,7,1.0,0,1.2990591526031494,319,1.0,2 +40819,7,0.0,0,1.8320523500442505,320,0.0,2 +40820,7,1.0,0,1.5620558261871338,321,1.0,2 +40821,7,1.0,0,1.3560584783554077,322,1.0,2 +40822,7,1.0,0,1.3730581998825073,323,1.0,2 +40823,7,1.0,0,1.9830503463745117,324,1.0,2 +40824,7,1.0,0,1.4910566806793213,325,1.0,2 +40825,7,1.0,0,1.2110589742660522,326,1.0,2 +40826,7,1.0,0,1.4950566291809082,327,1.0,2 +40827,7,1.0,0,1.4060578346252441,328,0.0,2 +40828,7,1.0,0,1.294059157371521,329,1.0,2 +40829,7,1.0,0,1.779052972793579,330,1.0,2 +40830,7,1.0,0,1.3840581178665161,331,1.0,2 +40831,7,1.0,0,1.5770556926727295,332,0.0,2 +40832,7,0.0,0,1.7250537872314453,333,0.0,2 +40833,7,1.0,0,1.2370589971542358,334,1.0,2 +40834,7,1.0,0,1.6640545129776,335,1.0,2 +40835,7,1.0,0,1.7780530452728271,336,0.0,2 +40836,7,1.0,0,1.8190524578094482,337,1.0,2 +40837,7,1.0,0,2.007050037384033,338,1.0,2 +40838,7,1.0,0,1.4600571393966675,339,1.0,2 +40839,7,1.0,0,1.4310574531555176,340,1.0,2 +40840,7,1.0,0,1.9980502128601074,341,1.0,2 +40841,7,1.0,0,1.2320590019226074,342,1.0,2 +40842,7,1.0,0,1.3160589933395386,343,1.0,2 +40843,7,1.0,0,1.5880554914474487,344,1.0,2 +40844,7,1.0,0,1.3480585813522339,345,1.0,2 +40845,7,1.0,0,1.3900580406188965,346,1.0,2 +40846,7,1.0,0,1.2200589179992676,347,1.0,2 +40847,7,1.0,0,1.257059097290039,348,1.0,2 +40848,7,1.0,0,1.1720588207244873,349,1.0,2 +40849,7,1.0,0,1.221058964729309,350,1.0,2 +40850,7,1.0,0,1.7630531787872314,351,0.0,2 +40851,7,0.0,0,1.8470520973205566,352,1.0,2 +40852,7,0.0,0,1.255059003829956,353,0.0,2 +40853,7,1.0,0,1.3140590190887451,354,1.0,2 +40854,7,0.0,0,1.2920591831207275,355,0.0,2 +40855,7,1.0,0,1.1890588998794556,356,1.0,2 +40856,7,0.0,0,1.3950579166412354,357,0.0,2 +40857,7,1.0,0,1.5810556411743164,358,1.0,2 +40858,7,1.0,0,1.6170551776885986,359,1.0,2 +40859,7,1.0,0,1.6090552806854248,360,1.0,2 +40860,7,1.0,0,1.318058967590332,361,1.0,2 +40861,7,1.0,0,1.3680583238601685,362,1.0,2 +40862,7,1.0,0,1.7130539417266846,363,1.0,2 +40863,7,1.0,0,1.6340548992156982,364,1.0,2 +40864,7,1.0,0,1.3950579166412354,365,1.0,2 +40865,7,1.0,0,1.2190589904785156,366,1.0,2 +40866,7,1.0,0,1.4890567064285278,367,1.0,2 +40867,7,1.0,0,1.2650591135025024,368,1.0,2 +40868,7,1.0,0,1.1470588445663452,369,1.0,2 +40869,7,1.0,0,1.8970515727996826,370,1.0,2 +40870,7,1.0,0,1.34005868434906,371,1.0,2 +40871,7,1.0,0,1.4990565776824951,372,1.0,2 +40872,7,1.0,0,1.8700518608093262,373,1.0,2 +40873,7,1.0,0,1.4300575256347656,374,1.0,2 +40874,7,1.0,0,1.3480585813522339,375,1.0,2 +40875,7,0.0,0,1.370058298110962,376,0.0,2 +40876,7,1.0,0,1.2770590782165527,377,1.0,2 +40877,7,1.0,0,1.5350561141967773,378,0.0,2 +40878,7,1.0,0,1.8400522470474243,379,1.0,2 +40879,7,1.0,0,1.4710569381713867,380,0.0,2 +40880,7,1.0,0,2.3570637702941895,381,1.0,2 +40881,7,1.0,0,2.2920608520507812,382,0.0,2 +40882,7,0.0,0,1.3910579681396484,383,0.0,2 +40883,7,0.0,0,1.1800589561462402,384,0.0,2 +40884,7,1.0,0,1.8580520153045654,385,1.0,2 +40885,7,1.0,0,1.6700544357299805,386,1.0,2 +40886,7,1.0,0,1.3430585861206055,387,1.0,2 +40887,7,1.0,0,1.3770581483840942,388,0.0,2 +40888,7,1.0,0,1.8420522212982178,389,1.0,2 +40889,7,1.0,0,1.5180563926696777,390,1.0,2 +40890,7,1.0,0,1.1250587701797485,391,1.0,2 +40891,7,1.0,0,1.5440560579299927,392,1.0,2 +40892,7,1.0,0,1.3600584268569946,393,1.0,2 +40893,7,1.0,0,1.2960591316223145,394,1.0,2 +40894,7,1.0,0,1.3970578908920288,395,1.0,2 +40895,7,1.0,0,1.3430585861206055,396,1.0,2 +40896,7,1.0,0,1.7440534830093384,397,1.0,2 +40897,7,1.0,0,1.7460534572601318,398,1.0,2 +40898,7,1.0,0,1.319058895111084,399,1.0,2 +40899,7,1.0,0,1.808052659034729,400,1.0,2 +40900,7,1.0,0,1.9570508003234863,401,1.0,2 +40901,7,1.0,0,1.3810580968856812,402,1.0,2 +40902,7,1.0,0,1.2840590476989746,403,1.0,2 +40903,7,1.0,0,1.7650532722473145,404,1.0,2 +40904,7,1.0,0,1.4610570669174194,405,1.0,2 +40905,7,1.0,0,1.2750591039657593,406,0.0,2 +40906,7,0.0,0,1.3940579891204834,407,0.0,2 +40907,7,0.0,0,1.410057783126831,408,0.0,2 +40908,7,0.0,0,1.7230536937713623,409,0.0,2 +40909,7,0.0,0,1.553056001663208,410,1.0,2 +40910,7,0.0,0,1.2690590620040894,411,0.0,2 +40911,7,1.0,0,1.163058876991272,412,0.0,2 +40912,7,1.0,0,1.5370560884475708,413,1.0,2 +40913,7,1.0,0,1.3160589933395386,414,1.0,2 +40914,7,1.0,0,1.3580584526062012,415,1.0,2 +40915,7,1.0,0,1.2750591039657593,416,0.0,2 +40916,7,0.0,0,1.8730518817901611,417,0.0,2 +40917,7,1.0,0,1.827052354812622,418,1.0,2 +40918,7,1.0,0,1.3380587100982666,419,1.0,2 +40919,7,1.0,0,1.337058663368225,420,1.0,2 +40920,7,1.0,0,1.3060591220855713,421,1.0,2 +40921,7,1.0,0,1.410057783126831,422,1.0,2 +40922,7,1.0,0,1.649054765701294,423,1.0,2 +40923,7,1.0,0,1.4250575304031372,424,1.0,2 +40924,7,1.0,0,1.3790581226348877,425,1.0,2 +40925,7,1.0,0,1.3100590705871582,426,1.0,2 +40926,7,1.0,0,1.3420586585998535,427,1.0,2 +40927,7,1.0,0,1.7400535345077515,428,1.0,2 +40928,7,1.0,0,1.454057216644287,429,1.0,2 +40929,7,1.0,0,1.254059076309204,430,1.0,2 +40930,7,1.0,0,1.4790568351745605,431,1.0,2 +40931,7,1.0,0,1.6350548267364502,432,1.0,2 +40932,7,1.0,0,1.9510507583618164,433,1.0,2 +40933,7,1.0,0,1.3610583543777466,434,1.0,2 +40934,7,1.0,0,1.4420573711395264,435,1.0,2 +40935,7,1.0,0,1.410057783126831,436,1.0,2 +40936,7,1.0,0,1.3680583238601685,437,1.0,2 +40937,7,1.0,0,1.4670569896697998,438,0.0,2 +40938,7,1.0,0,1.3070590496063232,439,0.0,2 +40939,7,0.0,0,1.1980589628219604,440,0.0,2 +40940,7,0.0,0,1.881051778793335,441,0.0,2 +40941,7,0.0,0,1.6760543584823608,442,0.0,2 +40942,7,0.0,0,1.9170513153076172,443,0.0,2 +40943,7,0.0,0,1.8010528087615967,444,1.0,2 +40944,7,0.0,0,1.258059024810791,445,0.0,2 +40945,7,1.0,0,1.827052354812622,446,0.0,2 +40946,7,1.0,0,1.8360522985458374,447,0.0,2 +40947,7,0.0,0,1.3130589723587036,448,0.0,2 +40948,7,0.0,0,1.5450559854507446,449,0.0,2 +40949,7,1.0,0,1.3070590496063232,450,1.0,2 +40950,7,1.0,0,1.2660590410232544,451,1.0,2 +40951,7,1.0,0,1.2850590944290161,452,1.0,2 +40952,7,1.0,0,1.2250590324401855,453,1.0,2 +40953,7,1.0,0,1.4030578136444092,454,1.0,2 +40954,7,1.0,0,1.2750591039657593,455,0.0,2 +40955,7,1.0,0,2.0050501823425293,456,0.0,2 +40956,7,1.0,0,1.7170538902282715,457,1.0,2 +40957,7,1.0,0,1.36305832862854,458,1.0,2 +40958,7,1.0,0,2.258059024810791,459,1.0,2 +40959,7,1.0,0,1.7690532207489014,460,1.0,2 +40960,7,1.0,0,1.4410573244094849,461,1.0,2 +40961,7,1.0,0,1.3380587100982666,462,1.0,2 +40962,7,1.0,0,1.4830567836761475,463,1.0,2 +40963,7,1.0,0,2.0390496253967285,464,1.0,2 +40964,7,1.0,0,1.4350574016571045,465,0.0,2 +40965,7,1.0,0,1.5140564441680908,466,0.0,2 +40966,7,0.0,0,1.2620590925216675,467,0.0,2 +40967,7,0.0,0,1.9890503883361816,468,0.0,2 +40968,7,1.0,0,1.3530584573745728,469,1.0,2 +40969,7,1.0,0,1.367058277130127,470,1.0,2 +40970,7,1.0,0,2.024049758911133,471,1.0,2 +40971,7,1.0,0,1.2080589532852173,472,1.0,2 +40972,7,1.0,0,1.3870580196380615,473,1.0,2 +40973,7,1.0,0,1.3860580921173096,474,1.0,2 +40974,7,1.0,0,1.4470572471618652,475,1.0,2 +40975,7,1.0,0,1.4480572938919067,476,1.0,2 +40976,7,1.0,0,1.3610583543777466,477,1.0,2 +40977,7,1.0,0,1.4670569896697998,478,1.0,2 +40978,7,1.0,0,1.5460560321807861,479,1.0,2 +40979,7,1.0,0,1.254059076309204,480,1.0,2 +40980,7,1.0,0,1.3010591268539429,481,1.0,2 +40981,7,1.0,0,1.6850543022155762,482,1.0,2 +40982,7,1.0,0,1.6440547704696655,483,1.0,2 +40983,7,1.0,0,1.3800581693649292,484,0.0,2 +40984,7,0.0,0,1.877051830291748,485,0.0,2 +40985,7,1.0,0,2.1070520877838135,486,1.0,2 +40986,7,1.0,0,1.5620558261871338,487,1.0,2 +40987,7,1.0,0,1.2730591297149658,488,1.0,2 +40988,7,1.0,0,1.264059066772461,489,1.0,2 +40989,7,1.0,0,1.8410522937774658,490,1.0,2 +40990,7,1.0,0,1.2130589485168457,491,1.0,2 +40991,7,1.0,0,1.2870590686798096,492,0.0,2 +40992,7,0.0,0,1.6700544357299805,493,0.0,2 +40993,7,0.0,0,1.2410590648651123,494,0.0,2 +40994,7,1.0,0,1.971050500869751,495,1.0,2 +40995,7,1.0,0,1.4970566034317017,496,1.0,2 +40996,7,1.0,0,1.3860580921173096,497,1.0,2 +40997,7,1.0,0,1.39205801486969,498,1.0,2 +40998,7,1.0,0,1.2360589504241943,499,1.0,2 +40999,7,1.0,0,2.0510494709014893,500,1.0,2 +41000,7,0.0,1,2.1730551719665527,1,0.0,2 +41001,7,0.0,1,1.7920528650283813,2,1.0,2 +41002,7,0.0,1,1.2340589761734009,3,0.0,2 +41003,7,1.0,1,2.0940513610839844,4,1.0,2 +41004,7,1.0,1,1.5740556716918945,5,0.0,2 +41005,7,0.0,1,2.216057300567627,6,1.0,2 +41006,7,0.0,1,1.2500590085983276,7,1.0,2 +41007,7,0.0,1,2.0940513610839844,8,0.0,2 +41008,7,0.0,1,1.3290587663650513,9,1.0,2 +41009,7,0.0,1,2.0360498428344727,10,1.0,2 +41010,7,0.0,1,1.4860568046569824,11,1.0,2 +41011,7,0.0,1,1.2530590295791626,12,0.0,2 +41012,7,0.0,1,1.2420589923858643,13,0.0,2 +41013,7,1.0,1,1.4170576333999634,14,1.0,2 +41014,7,1.0,1,1.319058895111084,15,1.0,2 +41015,7,1.0,1,1.812052607536316,16,0.0,2 +41016,7,1.0,1,1.6110551357269287,17,0.0,2 +41017,7,0.0,1,1.4530571699142456,18,0.0,2 +41018,7,1.0,1,2.1230528354644775,19,1.0,2 +41019,7,1.0,1,1.1750588417053223,20,0.0,2 +41020,7,0.0,1,1.3730581998825073,21,0.0,2 +41021,7,0.0,1,1.8130526542663574,22,0.0,2 +41022,7,1.0,1,1.8100526332855225,23,0.0,2 +41023,7,0.0,1,1.9500508308410645,24,1.0,2 +41024,7,0.0,1,1.2400590181350708,25,1.0,2 +41025,7,0.0,1,1.2740590572357178,26,0.0,2 +41026,7,0.0,1,1.5160564184188843,27,0.0,2 +41027,7,1.0,1,1.9460508823394775,28,0.0,2 +41028,7,1.0,1,1.8400522470474243,29,1.0,2 +41029,7,1.0,1,1.6640545129776,30,1.0,2 +41030,7,0.0,1,1.2470589876174927,31,0.0,2 +41031,7,0.0,1,1.2430590391159058,32,1.0,2 +41032,7,0.0,1,1.5430560111999512,33,1.0,2 +41033,7,1.0,1,1.6400548219680786,34,1.0,2 +41034,7,0.0,1,1.5590558052062988,35,0.0,2 +41035,7,1.0,1,1.6480547189712524,36,0.0,2 +41036,7,0.0,1,1.323058843612671,37,0.0,2 +41037,7,1.0,1,1.295059084892273,38,1.0,2 +41038,7,1.0,1,1.598055362701416,39,0.0,2 +41039,7,0.0,1,1.2410590648651123,40,1.0,2 +41040,7,0.0,1,1.9830503463745117,41,1.0,2 +41041,7,0.0,1,1.2190589904785156,42,0.0,2 +41042,7,1.0,1,1.2220590114593506,43,1.0,2 +41043,7,1.0,1,1.7930529117584229,44,1.0,2 +41044,7,1.0,1,1.291059136390686,45,0.0,2 +41045,7,0.0,1,1.6210551261901855,46,1.0,2 +41046,7,0.0,1,1.6530547142028809,47,0.0,2 +41047,7,0.0,1,1.3300588130950928,48,0.0,2 +41048,7,1.0,1,2.3260622024536133,49,0.0,2 +41049,7,1.0,1,1.5890555381774902,50,1.0,2 +41050,7,1.0,1,1.3130589723587036,51,1.0,2 +41051,7,1.0,1,1.233059048652649,52,1.0,2 +41052,7,1.0,1,1.407057762145996,53,0.0,2 +41053,7,0.0,1,1.3730581998825073,54,1.0,2 +41054,7,0.0,1,1.129058837890625,55,1.0,2 +41055,7,0.0,1,1.4090577363967896,56,0.0,2 +41056,7,1.0,1,1.5560559034347534,57,1.0,2 +41057,7,1.0,1,1.5350561141967773,58,0.0,2 +41058,7,0.0,1,2.3320627212524414,59,0.0,2 +41059,7,0.0,1,1.6580545902252197,60,0.0,2 +41060,7,1.0,1,1.4820568561553955,61,0.0,2 +41061,7,1.0,1,1.6040552854537964,62,1.0,2 +41062,7,1.0,1,1.5930554866790771,63,0.0,2 +41063,7,0.0,1,1.5610558986663818,64,0.0,2 +41064,7,0.0,1,1.3200589418411255,65,1.0,2 +41065,7,0.0,1,2.252058982849121,66,0.0,2 +41066,7,1.0,1,1.8600519895553589,67,0.0,2 +41067,7,0.0,1,1.4200576543807983,68,0.0,2 +41068,7,1.0,1,2.0550496578216553,69,1.0,2 +41069,7,1.0,1,1.528056263923645,70,1.0,2 +41070,7,1.0,1,1.5350561141967773,71,0.0,2 +41071,7,1.0,1,1.2090590000152588,72,1.0,2 +41072,7,1.0,1,1.5890555381774902,73,0.0,2 +41073,7,0.0,1,1.6620545387268066,74,1.0,2 +41074,7,0.0,1,1.458057165145874,75,0.0,2 +41075,7,1.0,1,1.8850517272949219,76,1.0,2 +41076,7,1.0,1,1.9380509853363037,77,1.0,2 +41077,7,1.0,1,1.4990565776824951,78,1.0,2 +41078,7,1.0,1,1.41505765914917,79,1.0,2 +41079,7,1.0,1,1.3430585861206055,80,1.0,2 +41080,7,1.0,1,1.3140590190887451,81,1.0,2 +41081,7,1.0,1,1.5380561351776123,82,1.0,2 +41082,7,1.0,1,1.4310574531555176,83,0.0,2 +41083,7,1.0,1,1.528056263923645,84,0.0,2 +41084,7,0.0,1,1.8780517578125,85,0.0,2 +41085,7,0.0,1,1.4830567836761475,86,1.0,2 +41086,7,0.0,1,1.484056830406189,87,1.0,2 +41087,7,0.0,1,1.4720569849014282,88,0.0,2 +41088,7,0.0,1,1.344058632850647,89,0.0,2 +41089,7,0.0,1,1.5770556926727295,90,0.0,2 +41090,7,0.0,1,1.261059045791626,91,0.0,2 +41091,7,0.0,1,1.691054105758667,92,1.0,2 +41092,7,0.0,1,1.7270536422729492,93,0.0,2 +41093,7,0.0,1,1.1760588884353638,94,0.0,2 +41094,7,0.0,1,1.2420589923858643,95,0.0,2 +41095,7,1.0,1,1.68705415725708,96,0.0,2 +41096,7,0.0,1,1.553056001663208,97,0.0,2 +41097,7,0.0,1,2.0050501823425293,98,0.0,2 +41098,7,1.0,1,1.8850517272949219,99,0.0,2 +41099,7,0.0,1,2.224057674407959,100,0.0,2 +41100,7,1.0,1,1.8190524578094482,101,1.0,2 +41101,7,1.0,1,1.5890555381774902,102,1.0,2 +41102,7,1.0,1,1.9010515213012695,103,1.0,2 +41103,7,1.0,1,2.0720505714416504,104,0.0,2 +41104,7,1.0,1,1.2110589742660522,105,1.0,2 +41105,7,1.0,1,1.433057427406311,106,1.0,2 +41106,7,1.0,1,1.227059006690979,107,0.0,2 +41107,7,0.0,1,1.781053066253662,108,1.0,2 +41108,7,0.0,1,1.385058045387268,109,0.0,2 +41109,7,1.0,1,1.5960553884506226,110,0.0,2 +41110,7,0.0,1,1.2220590114593506,111,1.0,2 +41111,7,0.0,1,1.5160564184188843,112,1.0,2 +41112,7,0.0,1,1.2960591316223145,113,1.0,2 +41113,7,0.0,1,1.133058786392212,114,0.0,2 +41114,7,0.0,1,1.7020540237426758,115,0.0,2 +41115,7,1.0,1,1.7000540494918823,116,0.0,2 +41116,7,1.0,1,1.974050521850586,117,0.0,2 +41117,7,0.0,1,1.605055332183838,118,0.0,2 +41118,7,0.0,1,1.6340548992156982,119,0.0,2 +41119,7,1.0,1,2.5890746116638184,120,1.0,2 +41120,7,1.0,1,1.4750568866729736,121,1.0,2 +41121,7,1.0,1,1.3500585556030273,122,1.0,2 +41122,7,1.0,1,1.3490585088729858,123,1.0,2 +41123,7,1.0,1,1.3010591268539429,124,1.0,2 +41124,7,1.0,1,1.2800590991973877,125,0.0,2 +41125,7,1.0,1,1.3050590753555298,126,1.0,2 +41126,7,1.0,1,1.6080552339553833,127,0.0,2 +41127,7,0.0,1,2.249058723449707,128,0.0,2 +41128,7,0.0,1,1.5380561351776123,129,1.0,2 +41129,7,0.0,1,1.8910515308380127,130,1.0,2 +41130,7,0.0,1,1.6260550022125244,131,0.0,2 +41131,7,0.0,1,1.133058786392212,132,1.0,2 +41132,7,0.0,1,1.4090577363967896,133,1.0,2 +41133,7,0.0,1,1.7730531692504883,134,0.0,2 +41134,7,0.0,1,1.7100539207458496,135,1.0,2 +41135,7,0.0,1,1.255059003829956,136,0.0,2 +41136,7,1.0,1,1.9050514698028564,137,1.0,2 +41137,7,0.0,1,2.3520636558532715,138,0.0,2 +41138,7,1.0,1,1.4980566501617432,139,0.0,2 +41139,7,1.0,1,1.7840529680252075,140,1.0,2 +41140,7,1.0,1,1.3600584268569946,141,0.0,2 +41141,7,1.0,1,1.8130526542663574,142,1.0,2 +41142,7,1.0,1,1.3320587873458862,143,1.0,2 +41143,7,1.0,1,1.5930554866790771,144,1.0,2 +41144,7,1.0,1,1.6790542602539062,145,1.0,2 +41145,7,1.0,1,1.4780569076538086,146,1.0,2 +41146,7,0.0,1,1.4390573501586914,147,0.0,2 +41147,7,1.0,1,1.6840542554855347,148,1.0,2 +41148,7,1.0,1,1.2180589437484741,149,1.0,2 +41149,7,1.0,1,1.7290537357330322,150,0.0,2 +41150,7,0.0,1,2.204056739807129,151,1.0,2 +41151,7,0.0,1,1.432057499885559,152,0.0,2 +41152,7,0.0,1,1.166058897972107,153,1.0,2 +41153,7,0.0,1,1.8990514278411865,154,0.0,2 +41154,7,1.0,1,1.6810543537139893,155,1.0,2 +41155,7,1.0,1,1.4970566034317017,156,0.0,2 +41156,7,0.0,1,1.5660557746887207,157,1.0,2 +41157,7,0.0,1,1.5370560884475708,158,0.0,2 +41158,7,0.0,1,1.2660590410232544,159,0.0,2 +41159,7,0.0,1,1.8380522727966309,160,1.0,2 +41160,7,0.0,1,1.5400561094284058,161,0.0,2 +41161,7,0.0,1,1.4080578088760376,162,1.0,2 +41162,7,0.0,1,1.4010578393936157,163,0.0,2 +41163,7,0.0,1,1.2140589952468872,164,1.0,2 +41164,7,0.0,1,1.315058946609497,165,0.0,2 +41165,7,0.0,1,2.3400630950927734,166,0.0,2 +41166,7,0.0,1,1.2870590686798096,167,0.0,2 +41167,7,1.0,1,1.6670544147491455,168,1.0,2 +41168,7,1.0,1,1.463057041168213,169,1.0,2 +41169,7,1.0,1,1.3310587406158447,170,1.0,2 +41170,7,1.0,1,1.6000553369522095,171,0.0,2 +41171,7,0.0,1,1.3640583753585815,172,0.0,2 +41172,7,1.0,1,1.695054054260254,173,1.0,2 +41173,7,1.0,1,1.7730531692504883,174,1.0,2 +41174,7,1.0,1,1.224058985710144,175,1.0,2 +41175,7,1.0,1,1.2860591411590576,176,0.0,2 +41176,7,0.0,1,1.4510571956634521,177,1.0,2 +41177,7,0.0,1,1.1790589094161987,178,1.0,2 +41178,7,0.0,1,1.3030591011047363,179,0.0,2 +41179,7,0.0,1,1.3720582723617554,180,0.0,2 +41180,7,1.0,1,1.8880516290664673,181,0.0,2 +41181,7,0.0,1,2.1320533752441406,182,0.0,2 +41182,7,0.0,1,1.694054126739502,183,0.0,2 +41183,7,1.0,1,1.6560546159744263,184,1.0,2 +41184,7,1.0,1,1.2480590343475342,185,1.0,2 +41185,7,1.0,1,1.3610583543777466,186,1.0,2 +41186,7,1.0,1,2.3090615272521973,187,1.0,2 +41187,7,1.0,1,1.1500588655471802,188,1.0,2 +41188,7,1.0,1,1.337058663368225,189,1.0,2 +41189,7,1.0,1,1.5220563411712646,190,1.0,2 +41190,7,1.0,1,1.2480590343475342,191,0.0,2 +41191,7,1.0,1,1.6190550327301025,192,1.0,2 +41192,7,1.0,1,1.34005868434906,193,0.0,2 +41193,7,1.0,1,2.1220526695251465,194,1.0,2 +41194,7,1.0,1,2.245058536529541,195,0.0,2 +41195,7,0.0,1,1.3870580196380615,196,1.0,2 +41196,7,0.0,1,1.1740589141845703,197,1.0,2 +41197,7,0.0,1,1.481056809425354,198,1.0,2 +41198,7,0.0,1,1.455057144165039,199,1.0,2 +41199,7,0.0,1,1.2400590181350708,200,1.0,2 +41200,7,0.0,1,1.258059024810791,201,0.0,2 +41201,7,1.0,1,1.6600545644760132,202,1.0,2 +41202,7,1.0,1,1.2760591506958008,203,0.0,2 +41203,7,0.0,1,1.260059118270874,204,0.0,2 +41204,7,0.0,1,2.0610499382019043,205,0.0,2 +41205,7,1.0,1,1.5420560836791992,206,1.0,2 +41206,7,1.0,1,1.294059157371521,207,1.0,2 +41207,7,1.0,1,1.8410522937774658,208,0.0,2 +41208,7,1.0,1,1.7950527667999268,209,1.0,2 +41209,7,0.0,1,1.2500590085983276,210,0.0,2 +41210,7,1.0,1,1.4300575256347656,211,1.0,2 +41211,7,1.0,1,1.3550584316253662,212,1.0,2 +41212,7,1.0,1,1.5380561351776123,213,1.0,2 +41213,7,1.0,1,1.6960541009902954,214,1.0,2 +41214,7,1.0,1,1.3140590190887451,215,0.0,2 +41215,7,1.0,1,1.2140589952468872,216,1.0,2 +41216,7,1.0,1,1.3600584268569946,217,1.0,2 +41217,7,1.0,1,1.5050565004348755,218,0.0,2 +41218,7,1.0,1,1.9940502643585205,219,0.0,2 +41219,7,0.0,1,2.1900558471679688,220,0.0,2 +41220,7,0.0,1,1.9880503416061401,221,0.0,2 +41221,7,1.0,1,1.6040552854537964,222,1.0,2 +41222,7,1.0,1,1.3490585088729858,223,1.0,2 +41223,7,1.0,1,1.3610583543777466,224,0.0,2 +41224,7,0.0,1,2.212057113647461,225,1.0,2 +41225,7,0.0,1,1.322058916091919,226,0.0,2 +41226,7,1.0,1,1.4290574789047241,227,0.0,2 +41227,7,0.0,1,2.3090615272521973,228,0.0,2 +41228,7,1.0,1,2.1560544967651367,229,0.0,2 +41229,7,1.0,1,1.3480585813522339,230,0.0,2 +41230,7,0.0,1,1.2080589532852173,231,0.0,2 +41231,7,0.0,1,1.9620506763458252,232,0.0,2 +41232,7,1.0,1,1.804052710533142,233,1.0,2 +41233,7,1.0,1,1.4940567016601562,234,1.0,2 +41234,7,1.0,1,1.385058045387268,235,1.0,2 +41235,7,1.0,1,1.6880542039871216,236,1.0,2 +41236,7,1.0,1,1.3170589208602905,237,1.0,2 +41237,7,1.0,1,1.6250550746917725,238,0.0,2 +41238,7,1.0,1,2.0500495433807373,239,1.0,2 +41239,7,1.0,1,1.2560590505599976,240,1.0,2 +41240,7,1.0,1,1.3350586891174316,241,0.0,2 +41241,7,1.0,1,1.8010528087615967,242,1.0,2 +41242,7,1.0,1,1.9560507535934448,243,1.0,2 +41243,7,1.0,1,1.8480521440505981,244,0.0,2 +41244,7,0.0,1,1.503056526184082,245,0.0,2 +41245,7,1.0,1,1.6440547704696655,246,0.0,2 +41246,7,0.0,1,1.3900580406188965,247,1.0,2 +41247,7,0.0,1,1.4650570154190063,248,1.0,2 +41248,7,0.0,1,1.1490588188171387,249,0.0,2 +41249,7,0.0,1,1.124058723449707,250,0.0,2 +41250,7,1.0,1,2.0270497798919678,251,0.0,2 +41251,7,1.0,1,1.4160577058792114,252,1.0,2 +41252,7,1.0,1,1.362058401107788,253,1.0,2 +41253,7,1.0,1,1.5700557231903076,254,1.0,2 +41254,7,1.0,1,1.39205801486969,255,1.0,2 +41255,7,1.0,1,1.9880503416061401,256,0.0,2 +41256,7,0.0,1,1.9600507020950317,257,0.0,2 +41257,7,1.0,1,2.245058536529541,258,0.0,2 +41258,7,0.0,1,1.4510571956634521,259,1.0,2 +41259,7,0.0,1,1.4990565776824951,260,0.0,2 +41260,7,0.0,1,1.5810556411743164,261,0.0,2 +41261,7,1.0,1,1.5410560369491577,262,1.0,2 +41262,7,1.0,1,1.3570584058761597,263,1.0,2 +41263,7,1.0,1,1.3490585088729858,264,1.0,2 +41264,7,1.0,1,1.6400548219680786,265,1.0,2 +41265,7,1.0,1,1.2190589904785156,266,1.0,2 +41266,7,1.0,1,1.5610558986663818,267,1.0,2 +41267,7,1.0,1,1.5200563669204712,268,1.0,2 +41268,7,1.0,1,1.510056495666504,269,1.0,2 +41269,7,1.0,1,1.4870567321777344,270,0.0,2 +41270,7,1.0,1,1.668054461479187,271,1.0,2 +41271,7,1.0,1,1.4930566549301147,272,0.0,2 +41272,7,0.0,1,1.5190563201904297,273,0.0,2 +41273,7,0.0,1,1.5870554447174072,274,0.0,2 +41274,7,1.0,1,1.9050514698028564,275,1.0,2 +41275,7,1.0,1,1.4280575513839722,276,1.0,2 +41276,7,1.0,1,1.8230524063110352,277,0.0,2 +41277,7,0.0,1,1.5780556201934814,278,1.0,2 +41278,7,0.0,1,1.221058964729309,279,0.0,2 +41279,7,1.0,1,1.5630557537078857,280,1.0,2 +41280,7,1.0,1,1.3020591735839844,281,1.0,2 +41281,7,1.0,1,1.388058066368103,282,1.0,2 +41282,7,0.0,1,1.1860588788986206,283,0.0,2 +41283,7,1.0,1,1.4020578861236572,284,0.0,2 +41284,7,1.0,1,2.1730551719665527,285,1.0,2 +41285,7,1.0,1,1.1820589303970337,286,1.0,2 +41286,7,1.0,1,1.477056860923767,287,1.0,2 +41287,7,1.0,1,1.5380561351776123,288,0.0,2 +41288,7,0.0,1,1.7610533237457275,289,0.0,2 +41289,7,0.0,1,1.8670518398284912,290,0.0,2 +41290,7,1.0,1,1.3420586585998535,291,1.0,2 +41291,7,1.0,1,1.3380587100982666,292,1.0,2 +41292,7,1.0,1,1.510056495666504,293,1.0,2 +41293,7,1.0,1,1.2930591106414795,294,0.0,2 +41294,7,0.0,1,1.1510587930679321,295,0.0,2 +41295,7,1.0,1,1.7740530967712402,296,1.0,2 +41296,7,1.0,1,1.5590558052062988,297,0.0,2 +41297,7,1.0,1,2.1670548915863037,298,1.0,2 +41298,7,1.0,1,2.026049852371216,299,1.0,2 +41299,7,1.0,1,1.5340561866760254,300,1.0,2 +41300,7,1.0,1,1.2040588855743408,301,1.0,2 +41301,7,1.0,1,1.7470533847808838,302,1.0,2 +41302,7,1.0,1,1.4080578088760376,303,1.0,2 +41303,7,1.0,1,1.52505624294281,304,1.0,2 +41304,7,1.0,1,1.318058967590332,305,1.0,2 +41305,7,1.0,1,1.5230562686920166,306,1.0,2 +41306,7,1.0,1,1.197058916091919,307,1.0,2 +41307,7,1.0,1,1.5850555896759033,308,1.0,2 +41308,7,1.0,1,1.646054744720459,309,1.0,2 +41309,7,1.0,1,1.3430585861206055,310,0.0,2 +41310,7,0.0,1,1.4130576848983765,311,0.0,2 +41311,7,1.0,1,1.5360561609268188,312,0.0,2 +41312,7,1.0,1,1.4680570363998413,313,1.0,2 +41313,7,1.0,1,1.3870580196380615,314,1.0,2 +41314,7,1.0,1,1.6830542087554932,315,1.0,2 +41315,7,1.0,1,1.785053014755249,316,1.0,2 +41316,7,1.0,1,2.3500633239746094,317,1.0,2 +41317,7,1.0,1,1.2400590181350708,318,0.0,2 +41318,7,0.0,1,2.0900511741638184,319,0.0,2 +41319,7,0.0,1,1.6990540027618408,320,0.0,2 +41320,7,1.0,1,1.9030513763427734,321,1.0,2 +41321,7,1.0,1,1.5050565004348755,322,1.0,2 +41322,7,1.0,1,1.2750591039657593,323,1.0,2 +41323,7,1.0,1,1.4410573244094849,324,1.0,2 +41324,7,1.0,1,1.4870567321777344,325,1.0,2 +41325,7,1.0,1,1.407057762145996,326,0.0,2 +41326,7,0.0,1,1.3580584526062012,327,0.0,2 +41327,7,1.0,1,1.8280524015426636,328,1.0,2 +41328,7,1.0,1,1.5340561866760254,329,1.0,2 +41329,7,1.0,1,1.2770590782165527,330,1.0,2 +41330,7,1.0,1,1.4740569591522217,331,1.0,2 +41331,7,1.0,1,2.1130523681640625,332,0.0,2 +41332,7,0.0,1,1.4600571393966675,333,0.0,2 +41333,7,1.0,1,1.3840581178665161,334,0.0,2 +41334,7,0.0,1,1.258059024810791,335,1.0,2 +41335,7,0.0,1,1.2030589580535889,336,1.0,2 +41336,7,0.0,1,1.267059087753296,337,1.0,2 +41337,7,0.0,1,1.7490534782409668,338,0.0,2 +41338,7,0.0,1,1.3900580406188965,339,0.0,2 +41339,7,1.0,1,1.764053225517273,340,0.0,2 +41340,7,1.0,1,1.4680570363998413,341,1.0,2 +41341,7,1.0,1,1.3950579166412354,342,0.0,2 +41342,7,0.0,1,1.2630590200424194,343,0.0,2 +41343,7,0.0,1,1.2470589876174927,344,1.0,2 +41344,7,0.0,1,1.1440588235855103,345,0.0,2 +41345,7,1.0,1,2.248058795928955,346,1.0,2 +41346,7,1.0,1,1.288059115409851,347,0.0,2 +41347,7,0.0,1,1.8020527362823486,348,1.0,2 +41348,7,0.0,1,1.1740589141845703,349,1.0,2 +41349,7,1.0,1,1.6530547142028809,350,1.0,2 +41350,7,0.0,1,1.2620590925216675,351,0.0,2 +41351,7,1.0,1,1.4900567531585693,352,1.0,2 +41352,7,1.0,1,1.2010589838027954,353,1.0,2 +41353,7,1.0,1,1.2010589838027954,354,0.0,2 +41354,7,0.0,1,1.7490534782409668,355,0.0,2 +41355,7,0.0,1,2.0270497798919678,356,0.0,2 +41356,7,0.0,1,1.264059066772461,357,0.0,2 +41357,7,0.0,1,2.3430631160736084,358,0.0,2 +41358,7,0.0,1,1.4980566501617432,359,1.0,2 +41359,7,0.0,1,1.2620590925216675,360,0.0,2 +41360,7,0.0,1,1.388058066368103,361,0.0,2 +41361,7,1.0,1,1.5710556507110596,362,1.0,2 +41362,7,1.0,1,1.6000553369522095,363,1.0,2 +41363,7,1.0,1,1.3800581693649292,364,1.0,2 +41364,7,0.0,1,1.5960553884506226,365,1.0,2 +41365,7,1.0,1,1.8420522212982178,366,1.0,2 +41366,7,1.0,1,1.2200589179992676,367,0.0,2 +41367,7,1.0,1,1.6560546159744263,368,1.0,2 +41368,7,0.0,1,1.9310510158538818,369,0.0,2 +41369,7,1.0,1,1.5750555992126465,370,1.0,2 +41370,7,1.0,1,1.5640558004379272,371,1.0,2 +41371,7,1.0,1,1.6210551261901855,372,1.0,2 +41372,7,1.0,1,1.4390573501586914,373,1.0,2 +41373,7,1.0,1,1.3530584573745728,374,1.0,2 +41374,7,1.0,1,1.7330536842346191,375,1.0,2 +41375,7,1.0,1,1.5490559339523315,376,1.0,2 +41376,7,1.0,1,1.389057993888855,377,1.0,2 +41377,7,1.0,1,1.6170551776885986,378,1.0,2 +41378,7,1.0,1,1.4190576076507568,379,0.0,2 +41379,7,1.0,1,1.720053791999817,380,0.0,2 +41380,7,0.0,1,1.255059003829956,381,0.0,2 +41381,7,0.0,1,1.5430560111999512,382,1.0,2 +41382,7,0.0,1,1.4200576543807983,383,0.0,2 +41383,7,0.0,1,1.318058967590332,384,1.0,2 +41384,7,0.0,1,1.2190589904785156,385,0.0,2 +41385,7,1.0,1,1.6700544357299805,386,0.0,2 +41386,7,0.0,1,1.3560584783554077,387,0.0,2 +41387,7,1.0,1,1.6300549507141113,388,1.0,2 +41388,7,1.0,1,1.6560546159744263,389,0.0,2 +41389,7,0.0,1,1.695054054260254,390,0.0,2 +41390,7,1.0,1,1.8210525512695312,391,1.0,2 +41391,7,1.0,1,1.3260588645935059,392,1.0,2 +41392,7,1.0,1,1.193058967590332,393,1.0,2 +41393,7,1.0,1,1.344058632850647,394,1.0,2 +41394,7,1.0,1,1.3240588903427124,395,1.0,2 +41395,7,0.0,1,1.2730591297149658,396,0.0,2 +41396,7,1.0,1,1.5190563201904297,397,1.0,2 +41397,7,1.0,1,1.1800589561462402,398,1.0,2 +41398,7,1.0,1,1.160058856010437,399,1.0,2 +41399,7,1.0,1,1.1770589351654053,400,1.0,2 +41400,7,1.0,1,1.433057427406311,401,1.0,2 +41401,7,1.0,1,1.2810591459274292,402,1.0,2 +41402,7,1.0,1,1.4460573196411133,403,1.0,2 +41403,7,1.0,1,1.2510590553283691,404,1.0,2 +41404,7,1.0,1,1.5920554399490356,405,1.0,2 +41405,7,1.0,1,1.4020578861236572,406,1.0,2 +41406,7,1.0,1,1.8970515727996826,407,1.0,2 +41407,7,1.0,1,1.4120577573776245,408,0.0,2 +41408,7,1.0,1,1.4380574226379395,409,1.0,2 +41409,7,0.0,1,1.4890567064285278,410,0.0,2 +41410,7,1.0,1,1.6310548782348633,411,1.0,2 +41411,7,1.0,1,1.3590583801269531,412,0.0,2 +41412,7,1.0,1,1.459057092666626,413,0.0,2 +41413,7,0.0,1,1.5520559549331665,414,0.0,2 +41414,7,1.0,1,1.3480585813522339,415,1.0,2 +41415,7,1.0,1,1.3560584783554077,416,1.0,2 +41416,7,1.0,1,1.190058946609497,417,1.0,2 +41417,7,1.0,1,1.362058401107788,418,0.0,2 +41418,7,1.0,1,1.7440534830093384,419,1.0,2 +41419,7,1.0,1,1.5050565004348755,420,1.0,2 +41420,7,1.0,1,1.2710590362548828,421,1.0,2 +41421,7,0.0,1,1.689054250717163,422,0.0,2 +41422,7,1.0,1,1.6740543842315674,423,1.0,2 +41423,7,1.0,1,1.7100539207458496,424,1.0,2 +41424,7,1.0,1,1.2890591621398926,425,0.0,2 +41425,7,0.0,1,1.507056474685669,426,1.0,2 +41426,7,0.0,1,1.3820581436157227,427,1.0,2 +41427,7,0.0,1,1.1710588932037354,428,0.0,2 +41428,7,0.0,1,1.4430572986602783,429,0.0,2 +41429,7,0.0,1,1.4920567274093628,430,1.0,2 +41430,7,0.0,1,1.2890591621398926,431,1.0,2 +41431,7,0.0,1,1.2840590476989746,432,0.0,2 +41432,7,0.0,1,2.1820554733276367,433,0.0,2 +41433,7,1.0,1,2.265059471130371,434,1.0,2 +41434,7,1.0,1,1.827052354812622,435,0.0,2 +41435,7,0.0,1,1.1740589141845703,436,1.0,2 +41436,7,0.0,1,1.8480521440505981,437,0.0,2 +41437,7,1.0,1,1.55405592918396,438,0.0,2 +41438,7,0.0,1,1.9780504703521729,439,0.0,2 +41439,7,1.0,1,2.293060779571533,440,1.0,2 +41440,7,1.0,1,1.3130589723587036,441,1.0,2 +41441,7,1.0,1,1.8100526332855225,442,0.0,2 +41442,7,0.0,1,2.284060478210449,443,0.0,2 +41443,7,0.0,1,1.3480585813522339,444,0.0,2 +41444,7,0.0,1,1.8960515260696411,445,1.0,2 +41445,7,0.0,1,1.157058835029602,446,0.0,2 +41446,7,1.0,1,2.471069097518921,447,0.0,2 +41447,7,0.0,1,1.3360587358474731,448,0.0,2 +41448,7,0.0,1,1.2230589389801025,449,0.0,2 +41449,7,0.0,1,1.6250550746917725,450,0.0,2 +41450,7,0.0,1,2.0980515480041504,451,1.0,2 +41451,7,0.0,1,1.7320536375045776,452,0.0,2 +41452,7,0.0,1,1.5630557537078857,453,0.0,2 +41453,7,1.0,1,1.8640519380569458,454,1.0,2 +41454,7,1.0,1,1.5750555992126465,455,0.0,2 +41455,7,1.0,1,1.8630518913269043,456,1.0,2 +41456,7,1.0,1,1.4700570106506348,457,1.0,2 +41457,7,1.0,1,1.6230549812316895,458,1.0,2 +41458,7,1.0,1,1.455057144165039,459,1.0,2 +41459,7,1.0,1,1.1810588836669922,460,1.0,2 +41460,7,1.0,1,1.4600571393966675,461,0.0,2 +41461,7,0.0,1,1.5580558776855469,462,1.0,2 +41462,7,0.0,1,1.576055645942688,463,1.0,2 +41463,7,0.0,1,1.5600558519363403,464,0.0,2 +41464,7,0.0,1,1.7910528182983398,465,1.0,2 +41465,7,0.0,1,1.252058982849121,466,1.0,2 +41466,7,0.0,1,1.2350590229034424,467,0.0,2 +41467,7,1.0,1,1.829052448272705,468,0.0,2 +41468,7,1.0,1,1.3250588178634644,469,1.0,2 +41469,7,1.0,1,1.2460590600967407,470,0.0,2 +41470,7,0.0,1,1.3780581951141357,471,1.0,2 +41471,7,0.0,1,1.264059066772461,472,0.0,2 +41472,7,1.0,1,2.452068328857422,473,1.0,2 +41473,7,1.0,1,1.323058843612671,474,1.0,2 +41474,7,1.0,1,1.3950579166412354,475,1.0,2 +41475,7,1.0,1,1.9140512943267822,476,1.0,2 +41476,7,1.0,1,1.5110564231872559,477,1.0,2 +41477,7,1.0,1,1.3830580711364746,478,0.0,2 +41478,7,1.0,1,1.4970566034317017,479,1.0,2 +41479,7,1.0,1,1.4120577573776245,480,0.0,2 +41480,7,1.0,1,2.0570497512817383,481,1.0,2 +41481,7,1.0,1,1.3510584831237793,482,1.0,2 +41482,7,1.0,1,1.6060552597045898,483,0.0,2 +41483,7,1.0,1,1.7760530710220337,484,1.0,2 +41484,7,1.0,1,1.6310548782348633,485,1.0,2 +41485,7,1.0,1,1.2630590200424194,486,1.0,2 +41486,7,1.0,1,1.6560546159744263,487,0.0,2 +41487,7,1.0,1,2.5980749130249023,488,1.0,2 +41488,7,1.0,1,1.393057942390442,489,1.0,2 +41489,7,1.0,1,1.6860542297363281,490,0.0,2 +41490,7,1.0,1,1.1990588903427124,491,1.0,2 +41491,7,1.0,1,1.6440547704696655,492,1.0,2 +41492,7,1.0,1,1.3550584316253662,493,1.0,2 +41493,7,1.0,1,1.2260589599609375,494,1.0,2 +41494,7,1.0,1,1.3870580196380615,495,1.0,2 +41495,7,1.0,1,1.4500572681427002,496,1.0,2 +41496,7,1.0,1,1.8880516290664673,497,1.0,2 +41497,7,1.0,1,1.3330587148666382,498,0.0,2 +41498,7,0.0,1,1.3200589418411255,499,0.0,2 +41499,7,0.0,1,1.2170590162277222,500,1.0,2 +41500,7,0.0,2,1.8240524530410767,1,0.0,2 +41501,7,1.0,2,1.8510520458221436,2,0.0,2 +41502,7,0.0,2,1.4040578603744507,3,1.0,2 +41503,7,0.0,2,1.5840555429458618,4,1.0,2 +41504,7,0.0,2,1.1580588817596436,5,0.0,2 +41505,7,1.0,2,1.2700591087341309,6,1.0,2 +41506,7,1.0,2,1.411057710647583,7,1.0,2 +41507,7,1.0,2,1.553056001663208,8,0.0,2 +41508,7,0.0,2,1.4130576848983765,9,0.0,2 +41509,7,0.0,2,1.480056881904602,10,0.0,2 +41510,7,0.0,2,1.5670557022094727,11,0.0,2 +41511,7,1.0,2,1.9140512943267822,12,0.0,2 +41512,7,1.0,2,2.3220620155334473,13,1.0,2 +41513,7,1.0,2,1.7580533027648926,14,0.0,2 +41514,7,1.0,2,2.3830649852752686,15,0.0,2 +41515,7,0.0,2,1.7520533800125122,16,0.0,2 +41516,7,1.0,2,1.9850504398345947,17,1.0,2 +41517,7,1.0,2,1.433057427406311,18,1.0,2 +41518,7,1.0,2,1.1610589027404785,19,0.0,2 +41519,7,0.0,2,1.7080539464950562,20,1.0,2 +41520,7,0.0,2,1.252058982849121,21,0.0,2 +41521,7,0.0,2,1.9550507068634033,22,1.0,2 +41522,7,0.0,2,1.2040588855743408,23,1.0,2 +41523,7,0.0,2,1.6260550022125244,24,0.0,2 +41524,7,0.0,2,2.538072109222412,25,1.0,2 +41525,7,0.0,2,1.2830591201782227,26,0.0,2 +41526,7,0.0,2,1.9140512943267822,27,0.0,2 +41527,7,0.0,2,1.3970578908920288,28,1.0,2 +41528,7,0.0,2,1.2340589761734009,29,1.0,2 +41529,7,0.0,2,1.6000553369522095,30,1.0,2 +41530,7,0.0,2,1.3460586071014404,31,0.0,2 +41531,7,1.0,2,1.5130563974380493,32,0.0,2 +41532,7,0.0,2,2.1390535831451416,33,0.0,2 +41533,7,1.0,2,2.0550496578216553,34,1.0,2 +41534,7,1.0,2,1.264059066772461,35,0.0,2 +41535,7,1.0,2,1.3120590448379517,36,0.0,2 +41536,7,1.0,2,2.1700549125671387,37,1.0,2 +41537,7,1.0,2,1.2690590620040894,38,1.0,2 +41538,7,0.0,2,1.2990591526031494,39,0.0,2 +41539,7,1.0,2,1.5770556926727295,40,1.0,2 +41540,7,1.0,2,1.5440560579299927,41,0.0,2 +41541,7,1.0,2,1.6610546112060547,42,0.0,2 +41542,7,0.0,2,2.0380496978759766,43,1.0,2 +41543,7,0.0,2,1.3710582256317139,44,0.0,2 +41544,7,0.0,2,1.969050645828247,45,1.0,2 +41545,7,0.0,2,2.0880513191223145,46,1.0,2 +41546,7,0.0,2,1.2620590925216675,47,0.0,2 +41547,7,0.0,2,1.7920528650283813,48,1.0,2 +41548,7,0.0,2,1.8050527572631836,49,1.0,2 +41549,7,0.0,2,1.2490590810775757,50,1.0,2 +41550,7,0.0,2,1.5840555429458618,51,0.0,2 +41551,7,1.0,2,1.4080578088760376,52,1.0,2 +41552,7,1.0,2,1.4240576028823853,53,1.0,2 +41553,7,1.0,2,1.4690569639205933,54,0.0,2 +41554,7,1.0,2,1.480056881904602,55,0.0,2 +41555,7,1.0,2,1.4380574226379395,56,0.0,2 +41556,7,0.0,2,1.2750591039657593,57,0.0,2 +41557,7,0.0,2,1.4720569849014282,58,1.0,2 +41558,7,0.0,2,1.944050908088684,59,0.0,2 +41559,7,0.0,2,2.1560544967651367,60,0.0,2 +41560,7,0.0,2,1.1830588579177856,61,1.0,2 +41561,7,0.0,2,1.3860580921173096,62,0.0,2 +41562,7,1.0,2,1.646054744720459,63,0.0,2 +41563,7,0.0,2,1.5900554656982422,64,0.0,2 +41564,7,0.0,2,1.3720582723617554,65,1.0,2 +41565,7,0.0,2,1.789052963256836,66,1.0,2 +41566,7,0.0,2,1.221058964729309,67,1.0,2 +41567,7,0.0,2,2.0390496253967285,68,0.0,2 +41568,7,1.0,2,1.553056001663208,69,0.0,2 +41569,7,0.0,2,1.3640583753585815,70,0.0,2 +41570,7,0.0,2,1.1990588903427124,71,1.0,2 +41571,7,0.0,2,1.6310548782348633,72,0.0,2 +41572,7,0.0,2,1.2120590209960938,73,1.0,2 +41573,7,0.0,2,1.6640545129776,74,0.0,2 +41574,7,0.0,2,2.1160526275634766,75,1.0,2 +41575,7,0.0,2,1.3820581436157227,76,0.0,2 +41576,7,0.0,2,2.287060499191284,77,0.0,2 +41577,7,1.0,2,1.2850590944290161,78,0.0,2 +41578,7,1.0,2,1.191058874130249,79,1.0,2 +41579,7,1.0,2,1.1470588445663452,80,1.0,2 +41580,7,1.0,2,1.258059024810791,81,0.0,2 +41581,7,1.0,2,2.4340672492980957,82,0.0,2 +41582,7,1.0,2,1.5870554447174072,83,1.0,2 +41583,7,1.0,2,1.4130576848983765,84,1.0,2 +41584,7,1.0,2,1.5120564699172974,85,0.0,2 +41585,7,1.0,2,1.5410560369491577,86,1.0,2 +41586,7,1.0,2,1.4890567064285278,87,0.0,2 +41587,7,1.0,2,1.4820568561553955,88,0.0,2 +41588,7,1.0,2,1.8230524063110352,89,0.0,2 +41589,7,1.0,2,1.7000540494918823,90,1.0,2 +41590,7,1.0,2,1.4090577363967896,91,0.0,2 +41591,7,0.0,2,1.503056526184082,92,0.0,2 +41592,7,0.0,2,1.782052993774414,93,0.0,2 +41593,7,0.0,2,1.2480590343475342,94,0.0,2 +41594,7,0.0,2,2.240058422088623,95,0.0,2 +41595,7,1.0,2,1.3240588903427124,96,0.0,2 +41596,7,0.0,2,1.3940579891204834,97,0.0,2 +41597,7,1.0,2,2.022049903869629,98,0.0,2 +41598,7,0.0,2,1.2840590476989746,99,1.0,2 +41599,7,0.0,2,1.233059048652649,100,0.0,2 +41600,7,0.0,2,2.5520730018615723,101,1.0,2 +41601,7,0.0,2,1.5810556411743164,102,0.0,2 +41602,7,0.0,2,2.1190526485443115,103,1.0,2 +41603,7,0.0,2,1.366058349609375,104,0.0,2 +41604,7,1.0,2,1.650054693222046,105,1.0,2 +41605,7,1.0,2,1.764053225517273,106,1.0,2 +41606,7,1.0,2,1.5000566244125366,107,1.0,2 +41607,7,1.0,2,1.7690532207489014,108,0.0,2 +41608,7,1.0,2,1.4090577363967896,109,0.0,2 +41609,7,0.0,2,1.7630531787872314,110,1.0,2 +41610,7,0.0,2,1.2250590324401855,111,1.0,2 +41611,7,0.0,2,1.599055290222168,112,0.0,2 +41612,7,0.0,2,2.3080615997314453,113,0.0,2 +41613,7,0.0,2,1.7930529117584229,114,1.0,2 +41614,7,0.0,2,1.3600584268569946,115,0.0,2 +41615,7,0.0,2,1.510056495666504,116,0.0,2 +41616,7,0.0,2,2.1710550785064697,117,1.0,2 +41617,7,0.0,2,1.389057993888855,118,1.0,2 +41618,7,1.0,2,1.4980566501617432,119,1.0,2 +41619,7,0.0,2,1.8170526027679443,120,0.0,2 +41620,7,1.0,2,1.3320587873458862,121,1.0,2 +41621,7,1.0,2,1.1890588998794556,122,0.0,2 +41622,7,0.0,2,2.3990657329559326,123,1.0,2 +41623,7,0.0,2,1.7620532512664795,124,1.0,2 +41624,7,0.0,2,1.7190537452697754,125,1.0,2 +41625,7,0.0,2,1.503056526184082,126,0.0,2 +41626,7,1.0,2,1.2500590085983276,127,1.0,2 +41627,7,1.0,2,1.4300575256347656,128,0.0,2 +41628,7,1.0,2,2.3750646114349365,129,1.0,2 +41629,7,1.0,2,1.3590583801269531,130,1.0,2 +41630,7,1.0,2,1.3240588903427124,131,1.0,2 +41631,7,1.0,2,1.4750568866729736,132,0.0,2 +41632,7,1.0,2,1.9080513715744019,133,0.0,2 +41633,7,1.0,2,1.827052354812622,134,1.0,2 +41634,7,1.0,2,1.233059048652649,135,0.0,2 +41635,7,1.0,2,2.4220666885375977,136,1.0,2 +41636,7,1.0,2,1.9200512170791626,137,0.0,2 +41637,7,1.0,2,1.3300588130950928,138,0.0,2 +41638,7,1.0,2,1.7180538177490234,139,1.0,2 +41639,7,1.0,2,1.4300575256347656,140,0.0,2 +41640,7,1.0,2,1.1820589303970337,141,1.0,2 +41641,7,1.0,2,1.7220537662506104,142,1.0,2 +41642,7,1.0,2,1.4830567836761475,143,1.0,2 +41643,7,1.0,2,1.3610583543777466,144,0.0,2 +41644,7,1.0,2,1.7540533542633057,145,1.0,2 +41645,7,1.0,2,1.4410573244094849,146,1.0,2 +41646,7,1.0,2,1.5610558986663818,147,1.0,2 +41647,7,1.0,2,1.5870554447174072,148,0.0,2 +41648,7,0.0,2,1.2090590000152588,149,1.0,2 +41649,7,0.0,2,1.2110589742660522,150,0.0,2 +41650,7,0.0,2,1.7650532722473145,151,1.0,2 +41651,7,0.0,2,1.458057165145874,152,0.0,2 +41652,7,0.0,2,1.3380587100982666,153,1.0,2 +41653,7,0.0,2,1.6270549297332764,154,0.0,2 +41654,7,1.0,2,1.414057731628418,155,1.0,2 +41655,7,1.0,2,1.2530590295791626,156,0.0,2 +41656,7,1.0,2,1.3970578908920288,157,1.0,2 +41657,7,1.0,2,1.3460586071014404,158,0.0,2 +41658,7,1.0,2,1.6990540027618408,159,0.0,2 +41659,7,0.0,2,1.6700544357299805,160,1.0,2 +41660,7,0.0,2,1.5650558471679688,161,0.0,2 +41661,7,1.0,2,1.4570571184158325,162,1.0,2 +41662,7,1.0,2,1.4600571393966675,163,1.0,2 +41663,7,1.0,2,2.1340532302856445,164,1.0,2 +41664,7,1.0,2,1.7180538177490234,165,1.0,2 +41665,7,1.0,2,1.3610583543777466,166,1.0,2 +41666,7,1.0,2,2.018049955368042,167,0.0,2 +41667,7,0.0,2,1.8980515003204346,168,1.0,2 +41668,7,0.0,2,1.4210575819015503,169,1.0,2 +41669,7,0.0,2,1.2150589227676392,170,0.0,2 +41670,7,0.0,2,1.3710582256317139,171,0.0,2 +41671,7,0.0,2,1.3710582256317139,172,1.0,2 +41672,7,0.0,2,1.230059027671814,173,1.0,2 +41673,7,0.0,2,1.261059045791626,174,1.0,2 +41674,7,0.0,2,1.3300588130950928,175,1.0,2 +41675,7,0.0,2,1.196058988571167,176,0.0,2 +41676,7,1.0,2,2.286060333251953,177,0.0,2 +41677,7,1.0,2,1.4650570154190063,178,1.0,2 +41678,7,1.0,2,1.528056263923645,179,0.0,2 +41679,7,0.0,2,1.1790589094161987,180,0.0,2 +41680,7,1.0,2,2.019049882888794,181,0.0,2 +41681,7,0.0,2,1.1310588121414185,182,1.0,2 +41682,7,0.0,2,1.3790581226348877,183,1.0,2 +41683,7,0.0,2,1.3270587921142578,184,0.0,2 +41684,7,1.0,2,1.5460560321807861,185,0.0,2 +41685,7,0.0,2,1.5960553884506226,186,0.0,2 +41686,7,0.0,2,1.5390560626983643,187,1.0,2 +41687,7,0.0,2,1.2140589952468872,188,0.0,2 +41688,7,0.0,2,1.2630590200424194,189,1.0,2 +41689,7,0.0,2,1.1990588903427124,190,1.0,2 +41690,7,0.0,2,1.5210562944412231,191,0.0,2 +41691,7,1.0,2,2.3790647983551025,192,1.0,2 +41692,7,1.0,2,1.528056263923645,193,0.0,2 +41693,7,0.0,2,1.3760582208633423,194,0.0,2 +41694,7,0.0,2,1.6060552597045898,195,0.0,2 +41695,7,1.0,2,1.389057993888855,196,0.0,2 +41696,7,0.0,2,1.4900567531585693,197,0.0,2 +41697,7,0.0,2,2.0390496253967285,198,1.0,2 +41698,7,0.0,2,1.2760591506958008,199,0.0,2 +41699,7,1.0,2,1.5640558004379272,200,0.0,2 +41700,7,0.0,2,1.8930516242980957,201,0.0,2 +41701,7,0.0,2,1.580055594444275,202,1.0,2 +41702,7,0.0,2,1.1460587978363037,203,1.0,2 +41703,7,0.0,2,1.7190537452697754,204,1.0,2 +41704,7,0.0,2,1.288059115409851,205,0.0,2 +41705,7,0.0,2,1.5460560321807861,206,0.0,2 +41706,7,1.0,2,1.5850555896759033,207,0.0,2 +41707,7,0.0,2,1.5220563411712646,208,1.0,2 +41708,7,0.0,2,1.6110551357269287,209,0.0,2 +41709,7,1.0,2,1.5370560884475708,210,0.0,2 +41710,7,0.0,2,1.5090564489364624,211,0.0,2 +41711,7,1.0,2,1.7020540237426758,212,1.0,2 +41712,7,1.0,2,1.3990578651428223,213,1.0,2 +41713,7,1.0,2,1.2430590391159058,214,0.0,2 +41714,7,0.0,2,1.2120590209960938,215,0.0,2 +41715,7,0.0,2,1.6880542039871216,216,1.0,2 +41716,7,0.0,2,1.2260589599609375,217,1.0,2 +41717,7,0.0,2,1.3120590448379517,218,0.0,2 +41718,7,1.0,2,1.7470533847808838,219,1.0,2 +41719,7,1.0,2,1.3870580196380615,220,1.0,2 +41720,7,1.0,2,1.3130589723587036,221,1.0,2 +41721,7,1.0,2,1.3290587663650513,222,1.0,2 +41722,7,1.0,2,1.9470508098602295,223,1.0,2 +41723,7,1.0,2,1.3680583238601685,224,0.0,2 +41724,7,0.0,2,1.127058744430542,225,0.0,2 +41725,7,1.0,2,1.7620532512664795,226,0.0,2 +41726,7,1.0,2,1.8850517272949219,227,1.0,2 +41727,7,0.0,2,1.3200589418411255,228,0.0,2 +41728,7,1.0,2,1.3590583801269531,229,1.0,2 +41729,7,1.0,2,1.3590583801269531,230,1.0,2 +41730,7,1.0,2,1.3790581226348877,231,1.0,2 +41731,7,1.0,2,1.3170589208602905,232,0.0,2 +41732,7,1.0,2,1.6530547142028809,233,1.0,2 +41733,7,1.0,2,1.480056881904602,234,1.0,2 +41734,7,1.0,2,1.389057993888855,235,1.0,2 +41735,7,1.0,2,1.2870590686798096,236,1.0,2 +41736,7,1.0,2,1.9360510110855103,237,1.0,2 +41737,7,1.0,2,1.3260588645935059,238,0.0,2 +41738,7,0.0,2,1.4970566034317017,239,0.0,2 +41739,7,0.0,2,2.27105975151062,240,1.0,2 +41740,7,0.0,2,1.9370510578155518,241,0.0,2 +41741,7,1.0,2,1.9450509548187256,242,1.0,2 +41742,7,0.0,2,1.230059027671814,243,1.0,2 +41743,7,1.0,2,1.3040591478347778,244,0.0,2 +41744,7,1.0,2,1.3340587615966797,245,1.0,2 +41745,7,1.0,2,1.298059105873108,246,1.0,2 +41746,7,1.0,2,1.7590532302856445,247,0.0,2 +41747,7,0.0,2,1.7910528182983398,248,1.0,2 +41748,7,1.0,2,1.2720590829849243,249,1.0,2 +41749,7,1.0,2,1.6740543842315674,250,1.0,2 +41750,7,1.0,2,1.3820581436157227,251,0.0,2 +41751,7,0.0,2,1.3010591268539429,252,1.0,2 +41752,7,0.0,2,1.5480560064315796,253,1.0,2 +41753,7,0.0,2,1.3770581483840942,254,1.0,2 +41754,7,0.0,2,1.6030552387237549,255,1.0,2 +41755,7,0.0,2,1.411057710647583,256,1.0,2 +41756,7,0.0,2,1.68705415725708,257,1.0,2 +41757,7,0.0,2,1.5340561866760254,258,1.0,2 +41758,7,0.0,2,1.3420586585998535,259,1.0,2 +41759,7,0.0,2,1.1980589628219604,260,1.0,2 +41760,7,0.0,2,1.4040578603744507,261,0.0,2 +41761,7,0.0,2,1.5670557022094727,262,0.0,2 +41762,7,0.0,2,1.3510584831237793,263,1.0,2 +41763,7,0.0,2,1.7310535907745361,264,0.0,2 +41764,7,1.0,2,1.2830591201782227,265,0.0,2 +41765,7,0.0,2,1.4870567321777344,266,0.0,2 +41766,7,0.0,2,1.6920541524887085,267,1.0,2 +41767,7,0.0,2,1.5150563716888428,268,0.0,2 +41768,7,0.0,2,1.3140590190887451,269,1.0,2 +41769,7,0.0,2,1.3460586071014404,270,0.0,2 +41770,7,1.0,2,1.532056212425232,271,1.0,2 +41771,7,1.0,2,1.3480585813522339,272,1.0,2 +41772,7,1.0,2,1.6410548686981201,273,1.0,2 +41773,7,1.0,2,1.34005868434906,274,0.0,2 +41774,7,1.0,2,1.2630590200424194,275,1.0,2 +41775,7,1.0,2,1.463057041168213,276,1.0,2 +41776,7,1.0,2,1.5680557489395142,277,1.0,2 +41777,7,1.0,2,1.6630544662475586,278,0.0,2 +41778,7,1.0,2,1.948050856590271,279,0.0,2 +41779,7,1.0,2,1.4880567789077759,280,0.0,2 +41780,7,0.0,2,1.294059157371521,281,1.0,2 +41781,7,0.0,2,1.2560590505599976,282,1.0,2 +41782,7,0.0,2,1.188058853149414,283,1.0,2 +41783,7,0.0,2,1.3560584783554077,284,1.0,2 +41784,7,0.0,2,1.6190550327301025,285,0.0,2 +41785,7,0.0,2,1.463057041168213,286,1.0,2 +41786,7,0.0,2,1.258059024810791,287,0.0,2 +41787,7,1.0,2,2.751082181930542,288,0.0,2 +41788,7,0.0,2,1.1310588121414185,289,0.0,2 +41789,7,0.0,2,2.1120524406433105,290,0.0,2 +41790,7,1.0,2,1.288059115409851,291,1.0,2 +41791,7,1.0,2,1.9970502853393555,292,1.0,2 +41792,7,0.0,2,1.6140551567077637,293,0.0,2 +41793,7,1.0,2,1.5810556411743164,294,0.0,2 +41794,7,0.0,2,1.7720531225204468,295,0.0,2 +41795,7,0.0,2,1.4510571956634521,296,1.0,2 +41796,7,0.0,2,1.1590588092803955,297,0.0,2 +41797,7,0.0,2,1.3940579891204834,298,1.0,2 +41798,7,0.0,2,1.188058853149414,299,1.0,2 +41799,7,0.0,2,1.7740530967712402,300,0.0,2 +41800,7,0.0,2,1.129058837890625,301,0.0,2 +41801,7,0.0,2,1.2960591316223145,302,1.0,2 +41802,7,0.0,2,1.318058967590332,303,1.0,2 +41803,7,0.0,2,1.407057762145996,304,1.0,2 +41804,7,0.0,2,1.2080589532852173,305,0.0,2 +41805,7,0.0,2,1.7030539512634277,306,1.0,2 +41806,7,0.0,2,1.3210588693618774,307,0.0,2 +41807,7,1.0,2,1.2620590925216675,308,0.0,2 +41808,7,1.0,2,1.9120513200759888,309,1.0,2 +41809,7,1.0,2,1.393057942390442,310,1.0,2 +41810,7,1.0,2,1.6760543584823608,311,1.0,2 +41811,7,1.0,2,1.7130539417266846,312,1.0,2 +41812,7,1.0,2,1.4670569896697998,313,0.0,2 +41813,7,0.0,2,1.3490585088729858,314,1.0,2 +41814,7,0.0,2,1.1310588121414185,315,1.0,2 +41815,7,0.0,2,1.254059076309204,316,1.0,2 +41816,7,0.0,2,1.5610558986663818,317,0.0,2 +41817,7,0.0,2,1.1530588865280151,318,0.0,2 +41818,7,1.0,2,1.291059136390686,319,1.0,2 +41819,7,0.0,2,1.2170590162277222,320,0.0,2 +41820,7,1.0,2,1.8950514793395996,321,0.0,2 +41821,7,1.0,2,1.8670518398284912,322,1.0,2 +41822,7,1.0,2,1.1820589303970337,323,0.0,2 +41823,7,0.0,2,1.6610546112060547,324,0.0,2 +41824,7,0.0,2,1.9310510158538818,325,1.0,2 +41825,7,0.0,2,1.2700591087341309,326,0.0,2 +41826,7,0.0,2,1.194058895111084,327,0.0,2 +41827,7,0.0,2,1.52505624294281,328,0.0,2 +41828,7,1.0,2,2.3850650787353516,329,0.0,2 +41829,7,0.0,2,2.1380534172058105,330,0.0,2 +41830,7,1.0,2,1.5600558519363403,331,0.0,2 +41831,7,0.0,2,1.741053581237793,332,1.0,2 +41832,7,0.0,2,1.3780581951141357,333,0.0,2 +41833,7,0.0,2,1.2250590324401855,334,0.0,2 +41834,7,1.0,2,1.5890555381774902,335,1.0,2 +41835,7,1.0,2,1.8930516242980957,336,0.0,2 +41836,7,0.0,2,1.4940567016601562,337,0.0,2 +41837,7,0.0,2,1.8700518608093262,338,1.0,2 +41838,7,0.0,2,1.2280590534210205,339,1.0,2 +41839,7,0.0,2,1.3720582723617554,340,0.0,2 +41840,7,0.0,2,1.5790555477142334,341,1.0,2 +41841,7,0.0,2,1.3840581178665161,342,0.0,2 +41842,7,0.0,2,1.5890555381774902,343,0.0,2 +41843,7,1.0,2,1.970050573348999,344,0.0,2 +41844,7,1.0,2,1.6860542297363281,345,0.0,2 +41845,7,0.0,2,1.7220537662506104,346,1.0,2 +41846,7,0.0,2,1.3390586376190186,347,1.0,2 +41847,7,0.0,2,1.1710588932037354,348,0.0,2 +41848,7,0.0,2,1.5560559034347534,349,0.0,2 +41849,7,1.0,2,1.506056547164917,350,1.0,2 +41850,7,1.0,2,1.3980579376220703,351,1.0,2 +41851,7,1.0,2,1.4890567064285278,352,0.0,2 +41852,7,0.0,2,1.5680557489395142,353,1.0,2 +41853,7,0.0,2,1.411057710647583,354,0.0,2 +41854,7,0.0,2,1.230059027671814,355,0.0,2 +41855,7,0.0,2,1.4000579118728638,356,1.0,2 +41856,7,0.0,2,1.2630590200424194,357,0.0,2 +41857,7,0.0,2,2.5560731887817383,358,1.0,2 +41858,7,0.0,2,1.7630531787872314,359,1.0,2 +41859,7,0.0,2,1.1140587329864502,360,0.0,2 +41860,7,1.0,2,1.6850543022155762,361,1.0,2 +41861,7,0.0,2,1.3980579376220703,362,1.0,2 +41862,7,0.0,2,1.370058298110962,363,0.0,2 +41863,7,1.0,2,1.1560587882995605,364,1.0,2 +41864,7,1.0,2,1.3390586376190186,365,1.0,2 +41865,7,1.0,2,1.436057448387146,366,1.0,2 +41866,7,1.0,2,1.4610570669174194,367,1.0,2 +41867,7,1.0,2,1.6750543117523193,368,0.0,2 +41868,7,1.0,2,1.3480585813522339,369,0.0,2 +41869,7,1.0,2,1.7300536632537842,370,0.0,2 +41870,7,0.0,2,1.8660519123077393,371,0.0,2 +41871,7,1.0,2,1.50205659866333,372,1.0,2 +41872,7,1.0,2,1.3350586891174316,373,1.0,2 +41873,7,1.0,2,1.370058298110962,374,1.0,2 +41874,7,1.0,2,1.5380561351776123,375,0.0,2 +41875,7,0.0,2,1.4680570363998413,376,0.0,2 +41876,7,1.0,2,1.8070526123046875,377,1.0,2 +41877,7,1.0,2,1.5210562944412231,378,1.0,2 +41878,7,1.0,2,1.2280590534210205,379,1.0,2 +41879,7,1.0,2,1.6030552387237549,380,1.0,2 +41880,7,1.0,2,1.697054147720337,381,1.0,2 +41881,7,1.0,2,1.6140551567077637,382,0.0,2 +41882,7,1.0,2,1.8660519123077393,383,1.0,2 +41883,7,1.0,2,1.1700588464736938,384,1.0,2 +41884,7,1.0,2,1.231058955192566,385,0.0,2 +41885,7,1.0,2,2.3530635833740234,386,1.0,2 +41886,7,1.0,2,1.8480521440505981,387,0.0,2 +41887,7,1.0,2,1.7680531740188599,388,1.0,2 +41888,7,1.0,2,1.4930566549301147,389,1.0,2 +41889,7,1.0,2,1.2060589790344238,390,1.0,2 +41890,7,1.0,2,1.2930591106414795,391,0.0,2 +41891,7,1.0,2,1.3470585346221924,392,1.0,2 +41892,7,1.0,2,1.7880529165267944,393,0.0,2 +41893,7,1.0,2,1.5560559034347534,394,1.0,2 +41894,7,1.0,2,1.5600558519363403,395,1.0,2 +41895,7,1.0,2,1.2780591249465942,396,1.0,2 +41896,7,1.0,2,1.2370589971542358,397,0.0,2 +41897,7,1.0,2,1.5330561399459839,398,0.0,2 +41898,7,1.0,2,1.6290550231933594,399,0.0,2 +41899,7,0.0,2,1.7090539932250977,400,1.0,2 +41900,7,0.0,2,1.2140589952468872,401,1.0,2 +41901,7,0.0,2,1.3740582466125488,402,1.0,2 +41902,7,0.0,2,1.3690582513809204,403,0.0,2 +41903,7,0.0,2,1.7940528392791748,404,1.0,2 +41904,7,0.0,2,1.3380587100982666,405,1.0,2 +41905,7,0.0,2,1.2680590152740479,406,0.0,2 +41906,7,1.0,2,1.8390522003173828,407,0.0,2 +41907,7,0.0,2,1.2760591506958008,408,0.0,2 +41908,7,0.0,2,1.8320523500442505,409,0.0,2 +41909,7,0.0,2,1.2340589761734009,410,0.0,2 +41910,7,0.0,2,1.2650591135025024,411,0.0,2 +41911,7,1.0,2,1.4660570621490479,412,1.0,2 +41912,7,1.0,2,1.1780588626861572,413,0.0,2 +41913,7,0.0,2,1.5770556926727295,414,0.0,2 +41914,7,0.0,2,1.4020578861236572,415,0.0,2 +41915,7,1.0,2,1.4820568561553955,416,0.0,2 +41916,7,1.0,2,1.7610533237457275,417,0.0,2 +41917,7,0.0,2,1.2100589275360107,418,1.0,2 +41918,7,0.0,2,1.1490588188171387,419,0.0,2 +41919,7,0.0,2,1.4220576286315918,420,1.0,2 +41920,7,0.0,2,1.2750591039657593,421,1.0,2 +41921,7,0.0,2,1.3650583028793335,422,1.0,2 +41922,7,0.0,2,1.2750591039657593,423,0.0,2 +41923,7,1.0,2,1.7770531177520752,424,1.0,2 +41924,7,1.0,2,1.5180563926696777,425,0.0,2 +41925,7,1.0,2,1.484056830406189,426,0.0,2 +41926,7,0.0,2,1.4600571393966675,427,0.0,2 +41927,7,1.0,2,1.5880554914474487,428,1.0,2 +41928,7,1.0,2,1.4570571184158325,429,1.0,2 +41929,7,1.0,2,1.3970578908920288,430,1.0,2 +41930,7,1.0,2,1.1750588417053223,431,1.0,2 +41931,7,1.0,2,1.3540585041046143,432,0.0,2 +41932,7,0.0,2,1.5890555381774902,433,1.0,2 +41933,7,0.0,2,1.3290587663650513,434,1.0,2 +41934,7,0.0,2,1.197058916091919,435,1.0,2 +41935,7,0.0,2,1.4180576801300049,436,0.0,2 +41936,7,0.0,2,1.506056547164917,437,1.0,2 +41937,7,0.0,2,1.7540533542633057,438,1.0,2 +41938,7,0.0,2,1.2510590553283691,439,0.0,2 +41939,7,1.0,2,1.7430534362792969,440,0.0,2 +41940,7,1.0,2,1.4240576028823853,441,1.0,2 +41941,7,1.0,2,1.4440573453903198,442,1.0,2 +41942,7,1.0,2,1.4680570363998413,443,1.0,2 +41943,7,1.0,2,1.5390560626983643,444,1.0,2 +41944,7,1.0,2,1.4760569334030151,445,1.0,2 +41945,7,1.0,2,1.288059115409851,446,0.0,2 +41946,7,1.0,2,1.8830516338348389,447,1.0,2 +41947,7,1.0,2,1.230059027671814,448,0.0,2 +41948,7,1.0,2,1.8160525560379028,449,0.0,2 +41949,7,0.0,2,1.7990527153015137,450,0.0,2 +41950,7,0.0,2,1.3940579891204834,451,1.0,2 +41951,7,0.0,2,1.7230536937713623,452,0.0,2 +41952,7,0.0,2,1.2040588855743408,453,0.0,2 +41953,7,0.0,2,1.7630531787872314,454,0.0,2 +41954,7,1.0,2,1.4430572986602783,455,1.0,2 +41955,7,1.0,2,1.3530584573745728,456,1.0,2 +41956,7,1.0,2,1.921051263809204,457,1.0,2 +41957,7,1.0,2,1.3080590963363647,458,0.0,2 +41958,7,0.0,2,1.9900503158569336,459,1.0,2 +41959,7,0.0,2,1.3470585346221924,460,1.0,2 +41960,7,0.0,2,1.388058066368103,461,0.0,2 +41961,7,0.0,2,1.2680590152740479,462,1.0,2 +41962,7,0.0,2,1.6770544052124023,463,0.0,2 +41963,7,1.0,2,1.8780517578125,464,1.0,2 +41964,7,1.0,2,1.454057216644287,465,0.0,2 +41965,7,1.0,2,1.2290589809417725,466,1.0,2 +41966,7,0.0,2,1.322058916091919,467,0.0,2 +41967,7,1.0,2,1.367058277130127,468,1.0,2 +41968,7,1.0,2,1.4080578088760376,469,1.0,2 +41969,7,1.0,2,1.3020591735839844,470,0.0,2 +41970,7,1.0,2,1.6540546417236328,471,0.0,2 +41971,7,1.0,2,1.4890567064285278,472,0.0,2 +41972,7,0.0,2,1.7190537452697754,473,0.0,2 +41973,7,1.0,2,2.1620545387268066,474,1.0,2 +41974,7,1.0,2,1.4420573711395264,475,1.0,2 +41975,7,1.0,2,1.2850590944290161,476,0.0,2 +41976,7,1.0,2,1.267059087753296,477,1.0,2 +41977,7,1.0,2,1.3120590448379517,478,1.0,2 +41978,7,1.0,2,1.3460586071014404,479,0.0,2 +41979,7,0.0,2,1.319058895111084,480,1.0,2 +41980,7,0.0,2,1.3340587615966797,481,0.0,2 +41981,7,0.0,2,1.8580520153045654,482,0.0,2 +41982,7,0.0,2,1.3290587663650513,483,1.0,2 +41983,7,0.0,2,1.1200587749481201,484,1.0,2 +41984,7,0.0,2,1.4700570106506348,485,0.0,2 +41985,7,0.0,2,1.4750568866729736,486,0.0,2 +41986,7,0.0,2,1.973050594329834,487,0.0,2 +41987,7,0.0,2,1.5390560626983643,488,0.0,2 +41988,7,1.0,2,1.6740543842315674,489,0.0,2 +41989,7,1.0,2,1.7970528602600098,490,0.0,2 +41990,7,1.0,2,1.3950579166412354,491,1.0,2 +41991,7,0.0,2,1.760053277015686,492,1.0,2 +41992,7,1.0,2,1.646054744720459,493,0.0,2 +41993,7,0.0,2,1.5210562944412231,494,0.0,2 +41994,7,1.0,2,1.9450509548187256,495,1.0,2 +41995,7,1.0,2,1.6060552597045898,496,1.0,2 +41996,7,1.0,2,1.5190563201904297,497,1.0,2 +41997,7,1.0,2,2.1400537490844727,498,1.0,2 +41998,7,0.0,2,1.3990578651428223,499,0.0,2 +41999,7,1.0,2,1.5420560836791992,500,0.0,2 +42000,8,1.0,0,1.7617863416671753,1,1.0,2 +42001,8,1.0,0,1.4567902088165283,2,1.0,2 +42002,8,0.0,0,1.9637837409973145,3,0.0,2 +42003,8,1.0,0,1.3997910022735596,4,1.0,2 +42004,8,1.0,0,1.3897911310195923,5,1.0,2 +42005,8,1.0,0,1.2697919607162476,6,0.0,2 +42006,8,0.0,0,1.6927871704101562,7,0.0,2 +42007,8,1.0,0,1.7357866764068604,8,1.0,2 +42008,8,1.0,0,1.618788242340088,9,1.0,2 +42009,8,1.0,0,1.3427916765213013,10,1.0,2 +42010,8,1.0,0,1.6497877836227417,11,1.0,2 +42011,8,1.0,0,1.6137882471084595,12,1.0,2 +42012,8,1.0,0,1.3627914190292358,13,1.0,2 +42013,8,1.0,0,1.2887920141220093,14,1.0,2 +42014,8,1.0,0,1.754786491394043,15,1.0,2 +42015,8,1.0,0,1.3927910327911377,16,1.0,2 +42016,8,1.0,0,1.8127856254577637,17,1.0,2 +42017,8,1.0,0,1.335791826248169,18,0.0,2 +42018,8,0.0,0,1.8377853631973267,19,0.0,2 +42019,8,0.0,0,1.4357905387878418,20,1.0,2 +42020,8,0.0,0,1.5407891273498535,21,0.0,2 +42021,8,1.0,0,2.0037832260131836,22,1.0,2 +42022,8,1.0,0,1.2867920398712158,23,1.0,2 +42023,8,1.0,0,1.2477918863296509,24,1.0,2 +42024,8,1.0,0,1.3667913675308228,25,0.0,2 +42025,8,0.0,0,1.8287854194641113,26,0.0,2 +42026,8,1.0,0,2.1817879676818848,27,1.0,2 +42027,8,1.0,0,1.541789174079895,28,1.0,2 +42028,8,1.0,0,1.2977919578552246,29,1.0,2 +42029,8,1.0,0,1.888784646987915,30,0.0,2 +42030,8,1.0,0,1.8167855739593506,31,1.0,2 +42031,8,0.0,0,1.3957910537719727,32,0.0,2 +42032,8,1.0,0,1.6887872219085693,33,1.0,2 +42033,8,0.0,0,1.7447865009307861,34,0.0,2 +42034,8,1.0,0,1.6177881956100464,35,1.0,2 +42035,8,1.0,0,1.267791986465454,36,1.0,2 +42036,8,1.0,0,1.1857917308807373,37,1.0,2 +42037,8,1.0,0,1.3377918004989624,38,1.0,2 +42038,8,1.0,0,1.8237855434417725,39,1.0,2 +42039,8,1.0,0,1.2417919635772705,40,0.0,2 +42040,8,1.0,0,1.610788345336914,41,1.0,2 +42041,8,1.0,0,1.8377853631973267,42,1.0,2 +42042,8,1.0,0,1.2057918310165405,43,1.0,2 +42043,8,1.0,0,1.4817899465560913,44,1.0,2 +42044,8,1.0,0,1.3127920627593994,45,0.0,2 +42045,8,0.0,0,1.3727912902832031,46,0.0,2 +42046,8,1.0,0,2.025783061981201,47,1.0,2 +42047,8,1.0,0,1.8537851572036743,48,1.0,2 +42048,8,1.0,0,1.1697916984558105,49,1.0,2 +42049,8,1.0,0,1.2957919836044312,50,1.0,2 +42050,8,1.0,0,1.3617914915084839,51,1.0,2 +42051,8,1.0,0,1.335791826248169,52,0.0,2 +42052,8,0.0,0,1.9497839212417603,53,0.0,2 +42053,8,1.0,0,1.8317854404449463,54,1.0,2 +42054,8,1.0,0,1.453790307044983,55,1.0,2 +42055,8,1.0,0,1.7697862386703491,56,1.0,2 +42056,8,1.0,0,2.0147831439971924,57,0.0,2 +42057,8,1.0,0,1.6327879428863525,58,1.0,2 +42058,8,1.0,0,1.3157920837402344,59,1.0,2 +42059,8,1.0,0,1.6747875213623047,60,1.0,2 +42060,8,1.0,0,1.3847911357879639,61,1.0,2 +42061,8,1.0,0,1.4327905178070068,62,1.0,2 +42062,8,1.0,0,1.5027896165847778,63,1.0,2 +42063,8,1.0,0,1.5847885608673096,64,1.0,2 +42064,8,1.0,0,1.8087856769561768,65,1.0,2 +42065,8,1.0,0,1.9747836589813232,66,1.0,2 +42066,8,1.0,0,1.4437904357910156,67,1.0,2 +42067,8,1.0,0,1.9207842350006104,68,1.0,2 +42068,8,1.0,0,1.2417919635772705,69,0.0,2 +42069,8,1.0,0,1.2797919511795044,70,1.0,2 +42070,8,1.0,0,1.401790976524353,71,1.0,2 +42071,8,1.0,0,1.179791808128357,72,1.0,2 +42072,8,1.0,0,1.1897917985916138,73,1.0,2 +42073,8,1.0,0,1.3857911825180054,74,1.0,2 +42074,8,1.0,0,1.2317918539047241,75,1.0,2 +42075,8,1.0,0,1.7197868824005127,76,0.0,2 +42076,8,1.0,0,1.4887897968292236,77,1.0,2 +42077,8,1.0,0,1.450790286064148,78,1.0,2 +42078,8,0.0,0,1.7837860584259033,79,0.0,2 +42079,8,1.0,0,2.1327855587005615,80,1.0,2 +42080,8,1.0,0,1.8107857704162598,81,0.0,2 +42081,8,1.0,0,1.9557838439941406,82,1.0,2 +42082,8,1.0,0,1.6347880363464355,83,1.0,2 +42083,8,1.0,0,1.6247880458831787,84,1.0,2 +42084,8,1.0,0,1.9147844314575195,85,1.0,2 +42085,8,1.0,0,1.3877911567687988,86,1.0,2 +42086,8,0.0,0,1.3417917490005493,87,1.0,2 +42087,8,1.0,0,1.5047895908355713,88,1.0,2 +42088,8,0.0,0,1.8537851572036743,89,0.0,2 +42089,8,1.0,0,1.4097908735275269,90,1.0,2 +42090,8,1.0,0,1.7287867069244385,91,1.0,2 +42091,8,1.0,0,1.663787603378296,92,1.0,2 +42092,8,1.0,0,1.5597889423370361,93,1.0,2 +42093,8,1.0,0,1.3687913417816162,94,1.0,2 +42094,8,1.0,0,1.6247880458831787,95,1.0,2 +42095,8,1.0,0,1.3467916250228882,96,1.0,2 +42096,8,1.0,0,1.3867911100387573,97,1.0,2 +42097,8,1.0,0,1.3197920322418213,98,1.0,2 +42098,8,1.0,0,1.542789101600647,99,1.0,2 +42099,8,1.0,0,1.424790620803833,100,1.0,2 +42100,8,1.0,0,1.5757887363433838,101,1.0,2 +42101,8,1.0,0,1.5697888135910034,102,1.0,2 +42102,8,1.0,0,1.42879056930542,103,1.0,2 +42103,8,1.0,0,2.039782762527466,104,0.0,2 +42104,8,1.0,0,1.4397904872894287,105,1.0,2 +42105,8,1.0,0,1.5877885818481445,106,1.0,2 +42106,8,1.0,0,1.5257893800735474,107,1.0,2 +42107,8,1.0,0,1.3337918519973755,108,1.0,2 +42108,8,0.0,0,1.406790852546692,109,0.0,2 +42109,8,1.0,0,1.3627914190292358,110,1.0,2 +42110,8,1.0,0,1.310792088508606,111,1.0,2 +42111,8,1.0,0,1.5657888650894165,112,1.0,2 +42112,8,1.0,0,1.3627914190292358,113,1.0,2 +42113,8,1.0,0,1.3007919788360596,114,1.0,2 +42114,8,1.0,0,1.3227919340133667,115,1.0,2 +42115,8,1.0,0,1.3827911615371704,116,1.0,2 +42116,8,1.0,0,1.7417865991592407,117,1.0,2 +42117,8,1.0,0,1.7397866249084473,118,1.0,2 +42118,8,1.0,0,1.179791808128357,119,1.0,2 +42119,8,1.0,0,1.2497918605804443,120,1.0,2 +42120,8,1.0,0,1.3817912340164185,121,1.0,2 +42121,8,1.0,0,1.4007909297943115,122,1.0,2 +42122,8,1.0,0,1.350791573524475,123,1.0,2 +42123,8,1.0,0,1.4997897148132324,124,0.0,2 +42124,8,1.0,0,1.179791808128357,125,1.0,2 +42125,8,1.0,0,1.593788504600525,126,1.0,2 +42126,8,1.0,0,1.273792028427124,127,1.0,2 +42127,8,1.0,0,1.4867898225784302,128,1.0,2 +42128,8,1.0,0,1.4037909507751465,129,1.0,2 +42129,8,1.0,0,1.336791753768921,130,1.0,2 +42130,8,1.0,0,1.8517851829528809,131,1.0,2 +42131,8,1.0,0,1.4697901010513306,132,1.0,2 +42132,8,1.0,0,1.402790904045105,133,1.0,2 +42133,8,1.0,0,1.3777912855148315,134,1.0,2 +42134,8,1.0,0,1.6017884016036987,135,1.0,2 +42135,8,1.0,0,1.475790023803711,136,1.0,2 +42136,8,1.0,0,1.72978675365448,137,1.0,2 +42137,8,1.0,0,1.3657914400100708,138,1.0,2 +42138,8,1.0,0,1.2887920141220093,139,1.0,2 +42139,8,1.0,0,1.246791958808899,140,1.0,2 +42140,8,1.0,0,1.3947910070419312,141,1.0,2 +42141,8,1.0,0,1.8327853679656982,142,1.0,2 +42142,8,1.0,0,1.3427916765213013,143,1.0,2 +42143,8,1.0,0,1.3607914447784424,144,1.0,2 +42144,8,1.0,0,1.2567919492721558,145,1.0,2 +42145,8,1.0,0,1.847785234451294,146,1.0,2 +42146,8,1.0,0,1.2757920026779175,147,1.0,2 +42147,8,1.0,0,1.7187869548797607,148,1.0,2 +42148,8,1.0,0,1.4397904872894287,149,1.0,2 +42149,8,1.0,0,1.6317880153656006,150,1.0,2 +42150,8,1.0,0,1.2247918844223022,151,1.0,2 +42151,8,1.0,0,1.3197920322418213,152,1.0,2 +42152,8,1.0,0,1.710787057876587,153,1.0,2 +42153,8,1.0,0,1.3457916975021362,154,1.0,2 +42154,8,1.0,0,1.5507889986038208,155,1.0,2 +42155,8,0.0,0,1.4317905902862549,156,0.0,2 +42156,8,1.0,0,1.6797873973846436,157,1.0,2 +42157,8,1.0,0,1.7697862386703491,158,0.0,2 +42158,8,0.0,0,1.167791724205017,159,0.0,2 +42159,8,1.0,0,1.7807860374450684,160,1.0,2 +42160,8,1.0,0,1.5367891788482666,161,1.0,2 +42161,8,0.0,0,1.3847911357879639,162,1.0,2 +42162,8,1.0,0,1.7537864446640015,163,1.0,2 +42163,8,1.0,0,2.1007840633392334,164,0.0,2 +42164,8,1.0,0,1.8287854194641113,165,1.0,2 +42165,8,0.0,0,2.1067843437194824,166,1.0,2 +42166,8,1.0,0,1.2497918605804443,167,1.0,2 +42167,8,1.0,0,1.446790337562561,168,1.0,2 +42168,8,1.0,0,2.0087831020355225,169,0.0,2 +42169,8,0.0,0,1.2307919263839722,170,0.0,2 +42170,8,1.0,0,1.659787654876709,171,0.0,2 +42171,8,1.0,0,1.5517890453338623,172,1.0,2 +42172,8,1.0,0,1.273792028427124,173,1.0,2 +42173,8,1.0,0,1.523789405822754,174,0.0,2 +42174,8,0.0,0,1.401790976524353,175,0.0,2 +42175,8,1.0,0,1.6957871913909912,176,1.0,2 +42176,8,1.0,0,1.585788607597351,177,1.0,2 +42177,8,1.0,0,1.2157918214797974,178,1.0,2 +42178,8,1.0,0,1.273792028427124,179,0.0,2 +42179,8,1.0,0,1.4517903327941895,180,1.0,2 +42180,8,1.0,0,1.2887920141220093,181,1.0,2 +42181,8,1.0,0,1.7457865476608276,182,1.0,2 +42182,8,1.0,0,1.795785903930664,183,1.0,2 +42183,8,1.0,0,1.748786449432373,184,0.0,2 +42184,8,1.0,0,2.031782865524292,185,0.0,2 +42185,8,0.0,0,1.7637863159179688,186,0.0,2 +42186,8,1.0,0,1.6397879123687744,187,1.0,2 +42187,8,1.0,0,1.4377905130386353,188,1.0,2 +42188,8,1.0,0,1.6007883548736572,189,0.0,2 +42189,8,0.0,0,1.6487877368927002,190,0.0,2 +42190,8,1.0,0,1.8277854919433594,191,1.0,2 +42191,8,1.0,0,1.379791259765625,192,1.0,2 +42192,8,1.0,0,1.3377918004989624,193,0.0,2 +42193,8,1.0,0,1.7807860374450684,194,0.0,2 +42194,8,0.0,0,1.493789792060852,195,0.0,2 +42195,8,0.0,0,1.4147907495498657,196,0.0,2 +42196,8,0.0,0,2.454800605773926,197,0.0,2 +42197,8,1.0,0,2.307793617248535,198,0.0,2 +42198,8,0.0,0,1.6427879333496094,199,0.0,2 +42199,8,0.0,0,1.707787036895752,200,0.0,2 +42200,8,1.0,0,1.7427866458892822,201,1.0,2 +42201,8,1.0,0,1.5267893075942993,202,1.0,2 +42202,8,1.0,0,1.379791259765625,203,1.0,2 +42203,8,1.0,0,1.7877860069274902,204,1.0,2 +42204,8,1.0,0,1.8077857494354248,205,1.0,2 +42205,8,1.0,0,1.5527889728546143,206,0.0,2 +42206,8,0.0,0,1.5087895393371582,207,0.0,2 +42207,8,0.0,0,1.7597863674163818,208,0.0,2 +42208,8,0.0,0,2.502802848815918,209,0.0,2 +42209,8,1.0,0,1.5947885513305664,210,0.0,2 +42210,8,0.0,0,2.0117831230163574,211,0.0,2 +42211,8,1.0,0,1.3037919998168945,212,1.0,2 +42212,8,0.0,0,1.3497916460037231,213,1.0,2 +42213,8,1.0,0,1.7327866554260254,214,1.0,2 +42214,8,0.0,0,1.7767860889434814,215,0.0,2 +42215,8,1.0,0,1.7247867584228516,216,1.0,2 +42216,8,0.0,0,1.5747888088226318,217,0.0,2 +42217,8,0.0,0,1.265791893005371,218,0.0,2 +42218,8,1.0,0,1.2647919654846191,219,1.0,2 +42219,8,1.0,0,1.2837920188903809,220,1.0,2 +42220,8,1.0,0,1.3967909812927246,221,1.0,2 +42221,8,1.0,0,1.4147907495498657,222,1.0,2 +42222,8,1.0,0,1.6227881908416748,223,0.0,2 +42223,8,0.0,0,1.4137908220291138,224,0.0,2 +42224,8,1.0,0,2.240790605545044,225,1.0,2 +42225,8,1.0,0,1.6727874279022217,226,1.0,2 +42226,8,1.0,0,1.2277919054031372,227,1.0,2 +42227,8,1.0,0,1.3487915992736816,228,1.0,2 +42228,8,1.0,0,1.5447890758514404,229,1.0,2 +42229,8,1.0,0,1.4147907495498657,230,1.0,2 +42230,8,1.0,0,1.3517916202545166,231,0.0,2 +42231,8,1.0,0,1.3457916975021362,232,1.0,2 +42232,8,1.0,0,1.4567902088165283,233,0.0,2 +42233,8,0.0,0,1.3927910327911377,234,0.0,2 +42234,8,1.0,0,2.290792942047119,235,1.0,2 +42235,8,0.0,0,1.173791766166687,236,0.0,2 +42236,8,1.0,0,1.6067883968353271,237,1.0,2 +42237,8,1.0,0,1.6727874279022217,238,1.0,2 +42238,8,1.0,0,1.5747888088226318,239,1.0,2 +42239,8,1.0,0,1.3007919788360596,240,1.0,2 +42240,8,1.0,0,1.545789122581482,241,1.0,2 +42241,8,1.0,0,1.3217920064926147,242,1.0,2 +42242,8,1.0,0,1.2897920608520508,243,1.0,2 +42243,8,1.0,0,1.5407891273498535,244,1.0,2 +42244,8,1.0,0,1.612788200378418,245,1.0,2 +42245,8,1.0,0,1.2977919578552246,246,1.0,2 +42246,8,1.0,0,1.2217918634414673,247,1.0,2 +42247,8,1.0,0,1.243791937828064,248,1.0,2 +42248,8,1.0,0,1.2417919635772705,249,1.0,2 +42249,8,1.0,0,1.615788221359253,250,1.0,2 +42250,8,1.0,0,1.5447890758514404,251,0.0,2 +42251,8,0.0,0,1.3957910537719727,252,0.0,2 +42252,8,0.0,0,1.5927884578704834,253,1.0,2 +42253,8,0.0,0,1.2667919397354126,254,0.0,2 +42254,8,0.0,0,1.5127894878387451,255,0.0,2 +42255,8,1.0,0,1.637787938117981,256,1.0,2 +42256,8,1.0,0,2.0547826290130615,257,1.0,2 +42257,8,1.0,0,1.821785569190979,258,1.0,2 +42258,8,1.0,0,1.5397891998291016,259,1.0,2 +42259,8,1.0,0,1.3027920722961426,260,1.0,2 +42260,8,1.0,0,1.2597919702529907,261,1.0,2 +42261,8,1.0,0,1.4197907447814941,262,1.0,2 +42262,8,1.0,0,1.5977884531021118,263,1.0,2 +42263,8,1.0,0,1.270792007446289,264,1.0,2 +42264,8,1.0,0,1.3617914915084839,265,1.0,2 +42265,8,1.0,0,1.5337892770767212,266,1.0,2 +42266,8,1.0,0,1.2557919025421143,267,1.0,2 +42267,8,1.0,0,1.5767886638641357,268,1.0,2 +42268,8,1.0,0,1.6137882471084595,269,1.0,2 +42269,8,0.0,0,1.3257919549942017,270,0.0,2 +42270,8,1.0,0,1.5487890243530273,271,1.0,2 +42271,8,1.0,0,1.3137919902801514,272,1.0,2 +42272,8,1.0,0,1.8337854146957397,273,1.0,2 +42273,8,1.0,0,1.794785976409912,274,1.0,2 +42274,8,1.0,0,1.2527918815612793,275,0.0,2 +42275,8,0.0,0,1.401790976524353,276,1.0,2 +42276,8,0.0,0,1.3677914142608643,277,1.0,2 +42277,8,0.0,0,1.6097882986068726,278,0.0,2 +42278,8,0.0,0,1.2207918167114258,279,0.0,2 +42279,8,1.0,0,1.4737900495529175,280,1.0,2 +42280,8,1.0,0,1.6677875518798828,281,1.0,2 +42281,8,1.0,0,1.3727912902832031,282,1.0,2 +42282,8,1.0,0,1.2897920608520508,283,1.0,2 +42283,8,1.0,0,1.4667900800704956,284,0.0,2 +42284,8,1.0,0,2.556805372238159,285,1.0,2 +42285,8,1.0,0,1.8057857751846313,286,1.0,2 +42286,8,1.0,0,1.6167881488800049,287,1.0,2 +42287,8,0.0,0,1.8727848529815674,288,0.0,2 +42288,8,1.0,0,1.3527915477752686,289,1.0,2 +42289,8,1.0,0,1.4077908992767334,290,1.0,2 +42290,8,1.0,0,2.0717825889587402,291,1.0,2 +42291,8,1.0,0,1.311792016029358,292,0.0,2 +42292,8,0.0,0,1.5077896118164062,293,0.0,2 +42293,8,0.0,0,1.7917859554290771,294,0.0,2 +42294,8,1.0,0,1.751786470413208,295,1.0,2 +42295,8,1.0,0,1.681787371635437,296,1.0,2 +42296,8,1.0,0,1.3727912902832031,297,1.0,2 +42297,8,1.0,0,1.6427879333496094,298,1.0,2 +42298,8,1.0,0,1.6907873153686523,299,1.0,2 +42299,8,1.0,0,1.3407917022705078,300,1.0,2 +42300,8,1.0,0,1.3857911825180054,301,1.0,2 +42301,8,1.0,0,1.4167907238006592,302,1.0,2 +42302,8,1.0,0,1.708786964416504,303,1.0,2 +42303,8,1.0,0,2.467801094055176,304,1.0,2 +42304,8,1.0,0,1.5597889423370361,305,1.0,2 +42305,8,1.0,0,1.708786964416504,306,1.0,2 +42306,8,1.0,0,1.4957897663116455,307,1.0,2 +42307,8,1.0,0,1.825785517692566,308,1.0,2 +42308,8,1.0,0,1.3447916507720947,309,1.0,2 +42309,8,1.0,0,1.53878915309906,310,1.0,2 +42310,8,1.0,0,1.3277919292449951,311,1.0,2 +42311,8,1.0,0,1.2277919054031372,312,1.0,2 +42312,8,1.0,0,1.5287892818450928,313,1.0,2 +42313,8,1.0,0,1.267791986465454,314,0.0,2 +42314,8,1.0,0,2.50380277633667,315,1.0,2 +42315,8,1.0,0,1.271791934967041,316,1.0,2 +42316,8,1.0,0,1.4667900800704956,317,1.0,2 +42317,8,1.0,0,1.265791893005371,318,1.0,2 +42318,8,1.0,0,1.4637901782989502,319,1.0,2 +42319,8,1.0,0,1.4147907495498657,320,1.0,2 +42320,8,1.0,0,1.7977858781814575,321,0.0,2 +42321,8,0.0,0,1.5577889680862427,322,0.0,2 +42322,8,1.0,0,1.5537890195846558,323,1.0,2 +42323,8,1.0,0,1.9927833080291748,324,0.0,2 +42324,8,0.0,0,1.4347904920578003,325,0.0,2 +42325,8,1.0,0,1.6617876291275024,326,1.0,2 +42326,8,1.0,0,1.3247919082641602,327,0.0,2 +42327,8,1.0,0,1.7377866506576538,328,0.0,2 +42328,8,1.0,0,1.4407904148101807,329,0.0,2 +42329,8,0.0,0,1.2357919216156006,330,0.0,2 +42330,8,1.0,0,2.0087831020355225,331,1.0,2 +42331,8,1.0,0,1.2667919397354126,332,1.0,2 +42332,8,1.0,0,1.1947917938232422,333,1.0,2 +42333,8,1.0,0,1.4477903842926025,334,1.0,2 +42334,8,1.0,0,1.568788766860962,335,1.0,2 +42335,8,1.0,0,1.892784595489502,336,1.0,2 +42336,8,1.0,0,1.5307892560958862,337,1.0,2 +42337,8,1.0,0,1.9207842350006104,338,1.0,2 +42338,8,1.0,0,1.2857919931411743,339,1.0,2 +42339,8,1.0,0,1.6317880153656006,340,1.0,2 +42340,8,1.0,0,1.4437904357910156,341,1.0,2 +42341,8,0.0,0,1.7017871141433716,342,0.0,2 +42342,8,1.0,0,1.3267918825149536,343,1.0,2 +42343,8,1.0,0,1.4667900800704956,344,1.0,2 +42344,8,1.0,0,1.3447916507720947,345,1.0,2 +42345,8,1.0,0,1.3907910585403442,346,1.0,2 +42346,8,1.0,0,1.4447903633117676,347,1.0,2 +42347,8,1.0,0,1.608788251876831,348,1.0,2 +42348,8,1.0,0,1.9307842254638672,349,1.0,2 +42349,8,1.0,0,1.5117895603179932,350,1.0,2 +42350,8,1.0,0,1.4087908267974854,351,1.0,2 +42351,8,1.0,0,1.656787633895874,352,1.0,2 +42352,8,1.0,0,1.3267918825149536,353,1.0,2 +42353,8,1.0,0,1.5497890710830688,354,1.0,2 +42354,8,1.0,0,1.8457852602005005,355,1.0,2 +42355,8,1.0,0,1.6277880668640137,356,1.0,2 +42356,8,1.0,0,1.207791805267334,357,1.0,2 +42357,8,1.0,0,1.5317893028259277,358,0.0,2 +42358,8,0.0,0,1.5347892045974731,359,0.0,2 +42359,8,0.0,0,1.7287867069244385,360,0.0,2 +42360,8,0.0,0,1.662787675857544,361,0.0,2 +42361,8,1.0,0,2.1277852058410645,362,1.0,2 +42362,8,1.0,0,1.5227893590927124,363,0.0,2 +42363,8,1.0,0,1.6367878913879395,364,1.0,2 +42364,8,1.0,0,1.3567914962768555,365,1.0,2 +42365,8,1.0,0,1.4897898435592651,366,1.0,2 +42366,8,1.0,0,1.5787887573242188,367,1.0,2 +42367,8,1.0,0,1.560788869857788,368,1.0,2 +42368,8,1.0,0,1.5787887573242188,369,0.0,2 +42369,8,0.0,0,1.3167920112609863,370,0.0,2 +42370,8,1.0,0,1.468790054321289,371,1.0,2 +42371,8,1.0,0,1.589788556098938,372,1.0,2 +42372,8,1.0,0,1.593788504600525,373,1.0,2 +42373,8,1.0,0,1.5517890453338623,374,1.0,2 +42374,8,1.0,0,1.3347917795181274,375,1.0,2 +42375,8,1.0,0,1.710787057876587,376,1.0,2 +42376,8,1.0,0,1.1557917594909668,377,1.0,2 +42377,8,1.0,0,1.4917898178100586,378,1.0,2 +42378,8,1.0,0,1.5147894620895386,379,1.0,2 +42379,8,1.0,0,1.6867873668670654,380,0.0,2 +42380,8,0.0,0,1.3277919292449951,381,0.0,2 +42381,8,1.0,0,1.274791955947876,382,1.0,2 +42382,8,1.0,0,1.4137908220291138,383,0.0,2 +42383,8,0.0,0,1.3847911357879639,384,1.0,2 +42384,8,0.0,0,2.1647870540618896,385,0.0,2 +42385,8,1.0,0,1.8367853164672852,386,1.0,2 +42386,8,0.0,0,1.541789174079895,387,0.0,2 +42387,8,1.0,0,1.817785620689392,388,1.0,2 +42388,8,1.0,0,1.2857919931411743,389,1.0,2 +42389,8,0.0,0,1.1607917547225952,390,0.0,2 +42390,8,1.0,0,1.6927871704101562,391,1.0,2 +42391,8,1.0,0,1.4167907238006592,392,1.0,2 +42392,8,1.0,0,1.5407891273498535,393,1.0,2 +42393,8,1.0,0,1.5877885818481445,394,1.0,2 +42394,8,1.0,0,1.6407878398895264,395,1.0,2 +42395,8,1.0,0,1.7457865476608276,396,1.0,2 +42396,8,1.0,0,1.4407904148101807,397,1.0,2 +42397,8,1.0,0,1.3157920837402344,398,1.0,2 +42398,8,1.0,0,1.5597889423370361,399,1.0,2 +42399,8,1.0,0,1.6407878398895264,400,0.0,2 +42400,8,1.0,0,1.5737887620925903,401,1.0,2 +42401,8,1.0,0,1.2557919025421143,402,1.0,2 +42402,8,1.0,0,1.5537890195846558,403,0.0,2 +42403,8,1.0,0,1.6027884483337402,404,1.0,2 +42404,8,1.0,0,1.5527889728546143,405,1.0,2 +42405,8,0.0,0,1.4097908735275269,406,0.0,2 +42406,8,1.0,0,1.383791208267212,407,1.0,2 +42407,8,1.0,0,1.277791976928711,408,1.0,2 +42408,8,1.0,0,1.6867873668670654,409,1.0,2 +42409,8,1.0,0,1.4527902603149414,410,1.0,2 +42410,8,1.0,0,1.2307919263839722,411,1.0,2 +42411,8,1.0,0,1.3337918519973755,412,0.0,2 +42412,8,1.0,0,1.7197868824005127,413,1.0,2 +42413,8,1.0,0,1.8147857189178467,414,1.0,2 +42414,8,1.0,0,1.273792028427124,415,1.0,2 +42415,8,1.0,0,1.5697888135910034,416,1.0,2 +42416,8,1.0,0,1.8247854709625244,417,1.0,2 +42417,8,1.0,0,1.607788324356079,418,1.0,2 +42418,8,1.0,0,1.5487890243530273,419,0.0,2 +42419,8,0.0,0,1.4517903327941895,420,0.0,2 +42420,8,0.0,0,1.8987846374511719,421,0.0,2 +42421,8,1.0,0,1.310792088508606,422,1.0,2 +42422,8,1.0,0,1.3857911825180054,423,1.0,2 +42423,8,1.0,0,1.304792046546936,424,0.0,2 +42424,8,0.0,0,1.7837860584259033,425,0.0,2 +42425,8,0.0,0,1.5187894105911255,426,0.0,2 +42426,8,0.0,0,2.208789110183716,427,0.0,2 +42427,8,0.0,0,1.4557902812957764,428,0.0,2 +42428,8,1.0,0,1.7787861824035645,429,1.0,2 +42429,8,1.0,0,1.3677914142608643,430,1.0,2 +42430,8,1.0,0,1.4827898740768433,431,1.0,2 +42431,8,1.0,0,1.4547902345657349,432,1.0,2 +42432,8,0.0,0,2.0887835025787354,433,0.0,2 +42433,8,1.0,0,1.331791877746582,434,1.0,2 +42434,8,1.0,0,1.5557889938354492,435,1.0,2 +42435,8,1.0,0,1.3957910537719727,436,1.0,2 +42436,8,1.0,0,1.3727912902832031,437,1.0,2 +42437,8,1.0,0,1.1557917594909668,438,0.0,2 +42438,8,0.0,0,1.9517838954925537,439,0.0,2 +42439,8,0.0,0,1.7907860279083252,440,0.0,2 +42440,8,1.0,0,1.9937833547592163,441,1.0,2 +42441,8,1.0,0,1.2887920141220093,442,1.0,2 +42442,8,1.0,0,1.40579092502594,443,1.0,2 +42443,8,1.0,0,1.2907919883728027,444,0.0,2 +42444,8,1.0,0,2.1757874488830566,445,1.0,2 +42445,8,1.0,0,1.4887897968292236,446,1.0,2 +42446,8,1.0,0,1.498789668083191,447,1.0,2 +42447,8,1.0,0,1.662787675857544,448,1.0,2 +42448,8,1.0,0,1.2837920188903809,449,1.0,2 +42449,8,1.0,0,1.3147920370101929,450,1.0,2 +42450,8,1.0,0,1.7417865991592407,451,1.0,2 +42451,8,1.0,0,1.6437878608703613,452,1.0,2 +42452,8,1.0,0,1.6507878303527832,453,1.0,2 +42453,8,1.0,0,1.5517890453338623,454,1.0,2 +42454,8,1.0,0,1.3857911825180054,455,1.0,2 +42455,8,1.0,0,1.7647862434387207,456,0.0,2 +42456,8,1.0,0,1.9447839260101318,457,1.0,2 +42457,8,1.0,0,2.311793804168701,458,1.0,2 +42458,8,1.0,0,1.4377905130386353,459,1.0,2 +42459,8,1.0,0,1.6657875776290894,460,1.0,2 +42460,8,1.0,0,1.398790955543518,461,1.0,2 +42461,8,1.0,0,1.5977884531021118,462,1.0,2 +42462,8,1.0,0,1.3467916250228882,463,1.0,2 +42463,8,1.0,0,1.7127869129180908,464,1.0,2 +42464,8,1.0,0,1.350791573524475,465,0.0,2 +42465,8,0.0,0,1.2867920398712158,466,0.0,2 +42466,8,1.0,0,2.1607868671417236,467,1.0,2 +42467,8,1.0,0,1.4437904357910156,468,1.0,2 +42468,8,0.0,0,1.5327892303466797,469,0.0,2 +42469,8,1.0,0,1.402790904045105,470,1.0,2 +42470,8,1.0,0,1.398790955543518,471,0.0,2 +42471,8,1.0,0,2.1027841567993164,472,1.0,2 +42472,8,1.0,0,1.5527889728546143,473,1.0,2 +42473,8,1.0,0,2.1677870750427246,474,1.0,2 +42474,8,1.0,0,1.3857911825180054,475,1.0,2 +42475,8,1.0,0,1.4847898483276367,476,1.0,2 +42476,8,0.0,0,1.6007883548736572,477,0.0,2 +42477,8,1.0,0,1.2247918844223022,478,1.0,2 +42478,8,1.0,0,1.6907873153686523,479,1.0,2 +42479,8,1.0,0,1.4557902812957764,480,1.0,2 +42480,8,1.0,0,1.4217907190322876,481,1.0,2 +42481,8,1.0,0,1.7587864398956299,482,1.0,2 +42482,8,0.0,0,1.450790286064148,483,0.0,2 +42483,8,1.0,0,2.20478892326355,484,1.0,2 +42484,8,1.0,0,1.335791826248169,485,1.0,2 +42485,8,1.0,0,1.3197920322418213,486,1.0,2 +42486,8,1.0,0,1.5097895860671997,487,1.0,2 +42487,8,1.0,0,1.5147894620895386,488,1.0,2 +42488,8,1.0,0,1.5137895345687866,489,1.0,2 +42489,8,1.0,0,1.3347917795181274,490,1.0,2 +42490,8,1.0,0,1.3497916460037231,491,1.0,2 +42491,8,1.0,0,1.4697901010513306,492,1.0,2 +42492,8,1.0,0,1.4607901573181152,493,1.0,2 +42493,8,1.0,0,1.3037919998168945,494,1.0,2 +42494,8,0.0,0,1.383791208267212,495,1.0,2 +42495,8,1.0,0,1.5477890968322754,496,1.0,2 +42496,8,1.0,0,1.6797873973846436,497,1.0,2 +42497,8,0.0,0,1.1957918405532837,498,0.0,2 +42498,8,1.0,0,1.3037919998168945,499,1.0,2 +42499,8,1.0,0,1.3487915992736816,500,1.0,2 +42500,8,1.0,1,2.1017842292785645,1,1.0,2 +42501,8,1.0,1,1.7717862129211426,2,1.0,2 +42502,8,1.0,1,1.5907886028289795,3,0.0,2 +42503,8,0.0,1,1.7197868824005127,4,0.0,2 +42504,8,0.0,1,1.2577919960021973,5,0.0,2 +42505,8,1.0,1,1.1937918663024902,6,0.0,2 +42506,8,1.0,1,2.1697874069213867,7,1.0,2 +42507,8,1.0,1,1.328791856765747,8,0.0,2 +42508,8,1.0,1,1.9457839727401733,9,1.0,2 +42509,8,0.0,1,1.7437865734100342,10,0.0,2 +42510,8,1.0,1,1.6407878398895264,11,0.0,2 +42511,8,1.0,1,2.1527864933013916,12,0.0,2 +42512,8,0.0,1,2.1497864723205566,13,1.0,2 +42513,8,0.0,1,1.271791934967041,14,0.0,2 +42514,8,0.0,1,1.825785517692566,15,0.0,2 +42515,8,0.0,1,1.8977845907211304,16,0.0,2 +42516,8,0.0,1,1.794785976409912,17,0.0,2 +42517,8,0.0,1,1.1537916660308838,18,0.0,2 +42518,8,0.0,1,2.3607962131500244,19,0.0,2 +42519,8,1.0,1,2.0597825050354004,20,1.0,2 +42520,8,1.0,1,1.5987884998321533,21,1.0,2 +42521,8,1.0,1,1.7417865991592407,22,1.0,2 +42522,8,1.0,1,1.6347880363464355,23,1.0,2 +42523,8,1.0,1,1.7097870111465454,24,1.0,2 +42524,8,1.0,1,1.3217920064926147,25,0.0,2 +42525,8,0.0,1,1.2827919721603394,26,1.0,2 +42526,8,0.0,1,1.3647913932800293,27,0.0,2 +42527,8,0.0,1,1.6007883548736572,28,0.0,2 +42528,8,0.0,1,2.0037832260131836,29,0.0,2 +42529,8,1.0,1,1.7207868099212646,30,0.0,2 +42530,8,0.0,1,1.4787899255752563,31,0.0,2 +42531,8,0.0,1,1.2987920045852661,32,0.0,2 +42532,8,0.0,1,1.9487838745117188,33,0.0,2 +42533,8,0.0,1,1.5767886638641357,34,0.0,2 +42534,8,0.0,1,1.633787989616394,35,0.0,2 +42535,8,0.0,1,1.5357892513275146,36,0.0,2 +42536,8,0.0,1,1.2577919960021973,37,0.0,2 +42537,8,1.0,1,1.817785620689392,38,0.0,2 +42538,8,1.0,1,1.7807860374450684,39,0.0,2 +42539,8,0.0,1,1.3887910842895508,40,0.0,2 +42540,8,0.0,1,1.2227919101715088,41,1.0,2 +42541,8,0.0,1,1.9667837619781494,42,0.0,2 +42542,8,0.0,1,2.502802848815918,43,0.0,2 +42543,8,1.0,1,1.6227881908416748,44,1.0,2 +42544,8,1.0,1,1.5037896633148193,45,0.0,2 +42545,8,0.0,1,1.5337892770767212,46,0.0,2 +42546,8,0.0,1,1.5087895393371582,47,0.0,2 +42547,8,1.0,1,2.559805393218994,48,1.0,2 +42548,8,1.0,1,1.5057896375656128,49,0.0,2 +42549,8,1.0,1,1.5957884788513184,50,1.0,2 +42550,8,1.0,1,1.8327853679656982,51,0.0,2 +42551,8,1.0,1,1.9737836122512817,52,0.0,2 +42552,8,1.0,1,1.7217868566513062,53,1.0,2 +42553,8,1.0,1,1.6827874183654785,54,1.0,2 +42554,8,1.0,1,1.9097844362258911,55,1.0,2 +42555,8,1.0,1,1.4517903327941895,56,0.0,2 +42556,8,1.0,1,2.3847973346710205,57,1.0,2 +42557,8,1.0,1,1.4747899770736694,58,1.0,2 +42558,8,1.0,1,1.268791913986206,59,1.0,2 +42559,8,1.0,1,1.5117895603179932,60,1.0,2 +42560,8,1.0,1,1.4217907190322876,61,1.0,2 +42561,8,1.0,1,1.2887920141220093,62,0.0,2 +42562,8,0.0,1,1.2147918939590454,63,0.0,2 +42563,8,0.0,1,1.3887910842895508,64,0.0,2 +42564,8,1.0,1,1.708786964416504,65,0.0,2 +42565,8,1.0,1,1.8247854709625244,66,1.0,2 +42566,8,0.0,1,1.9187843799591064,67,0.0,2 +42567,8,1.0,1,1.3267918825149536,68,0.0,2 +42568,8,0.0,1,1.2507919073104858,69,1.0,2 +42569,8,0.0,1,1.1617918014526367,70,0.0,2 +42570,8,1.0,1,2.246790885925293,71,1.0,2 +42571,8,1.0,1,1.5957884788513184,72,0.0,2 +42572,8,0.0,1,2.1807878017425537,73,1.0,2 +42573,8,0.0,1,1.2427918910980225,74,0.0,2 +42574,8,0.0,1,1.1837917566299438,75,1.0,2 +42575,8,0.0,1,1.4857898950576782,76,0.0,2 +42576,8,0.0,1,1.5957884788513184,77,0.0,2 +42577,8,1.0,1,2.0097832679748535,78,1.0,2 +42578,8,1.0,1,1.6917872428894043,79,0.0,2 +42579,8,1.0,1,1.5027896165847778,80,1.0,2 +42580,8,1.0,1,1.35379159450531,81,1.0,2 +42581,8,1.0,1,1.3717913627624512,82,1.0,2 +42582,8,0.0,1,1.244791865348816,83,0.0,2 +42583,8,1.0,1,1.795785903930664,84,1.0,2 +42584,8,1.0,1,1.4997897148132324,85,1.0,2 +42585,8,1.0,1,1.2247918844223022,86,1.0,2 +42586,8,1.0,1,1.1617918014526367,87,1.0,2 +42587,8,1.0,1,1.2627919912338257,88,1.0,2 +42588,8,1.0,1,1.2537919282913208,89,1.0,2 +42589,8,1.0,1,1.4567902088165283,90,1.0,2 +42590,8,1.0,1,1.3217920064926147,91,1.0,2 +42591,8,1.0,1,1.2977919578552246,92,1.0,2 +42592,8,1.0,1,1.40579092502594,93,1.0,2 +42593,8,1.0,1,1.3427916765213013,94,0.0,2 +42594,8,0.0,1,1.3267918825149536,95,1.0,2 +42595,8,0.0,1,1.6797873973846436,96,1.0,2 +42596,8,0.0,1,1.2197918891906738,97,0.0,2 +42597,8,1.0,1,1.7157869338989258,98,1.0,2 +42598,8,1.0,1,2.1287853717803955,99,1.0,2 +42599,8,1.0,1,1.331791877746582,100,0.0,2 +42600,8,0.0,1,1.446790337562561,101,1.0,2 +42601,8,0.0,1,1.5087895393371582,102,0.0,2 +42602,8,0.0,1,1.6347880363464355,103,0.0,2 +42603,8,1.0,1,1.3747912645339966,104,0.0,2 +42604,8,0.0,1,1.2567919492721558,105,0.0,2 +42605,8,0.0,1,1.3467916250228882,106,0.0,2 +42606,8,1.0,1,1.796785831451416,107,1.0,2 +42607,8,1.0,1,1.3427916765213013,108,1.0,2 +42608,8,1.0,1,2.03078293800354,109,0.0,2 +42609,8,1.0,1,1.9557838439941406,110,1.0,2 +42610,8,1.0,1,1.4957897663116455,111,1.0,2 +42611,8,1.0,1,1.3027920722961426,112,0.0,2 +42612,8,0.0,1,1.6577876806259155,113,0.0,2 +42613,8,0.0,1,1.5047895908355713,114,0.0,2 +42614,8,1.0,1,1.3157920837402344,115,1.0,2 +42615,8,1.0,1,1.304792046546936,116,1.0,2 +42616,8,1.0,1,1.825785517692566,117,1.0,2 +42617,8,1.0,1,1.5127894878387451,118,1.0,2 +42618,8,1.0,1,1.3877911567687988,119,0.0,2 +42619,8,1.0,1,1.3967909812927246,120,1.0,2 +42620,8,1.0,1,1.895784616470337,121,0.0,2 +42621,8,0.0,1,1.2477918863296509,122,0.0,2 +42622,8,1.0,1,1.1997917890548706,123,1.0,2 +42623,8,1.0,1,1.449790358543396,124,0.0,2 +42624,8,1.0,1,2.227789878845215,125,0.0,2 +42625,8,0.0,1,1.6327879428863525,126,0.0,2 +42626,8,1.0,1,2.3857975006103516,127,1.0,2 +42627,8,1.0,1,1.3037919998168945,128,1.0,2 +42628,8,1.0,1,2.1007840633392334,129,0.0,2 +42629,8,0.0,1,1.6267881393432617,130,1.0,2 +42630,8,0.0,1,1.1747918128967285,131,0.0,2 +42631,8,0.0,1,1.4187906980514526,132,0.0,2 +42632,8,0.0,1,1.7317867279052734,133,0.0,2 +42633,8,1.0,1,1.468790054321289,134,1.0,2 +42634,8,1.0,1,1.240791916847229,135,1.0,2 +42635,8,1.0,1,1.589788556098938,136,1.0,2 +42636,8,1.0,1,1.4527902603149414,137,1.0,2 +42637,8,1.0,1,1.7137869596481323,138,1.0,2 +42638,8,1.0,1,1.7287867069244385,139,1.0,2 +42639,8,1.0,1,1.656787633895874,140,1.0,2 +42640,8,1.0,1,1.4707900285720825,141,1.0,2 +42641,8,1.0,1,1.3677914142608643,142,0.0,2 +42642,8,1.0,1,1.472790002822876,143,1.0,2 +42643,8,1.0,1,1.5727887153625488,144,1.0,2 +42644,8,1.0,1,2.029782772064209,145,0.0,2 +42645,8,0.0,1,1.5807886123657227,146,0.0,2 +42646,8,0.0,1,1.5657888650894165,147,1.0,2 +42647,8,0.0,1,1.2647919654846191,148,0.0,2 +42648,8,1.0,1,1.685787320137024,149,1.0,2 +42649,8,1.0,1,1.6477878093719482,150,1.0,2 +42650,8,1.0,1,1.357791543006897,151,1.0,2 +42651,8,1.0,1,1.4437904357910156,152,1.0,2 +42652,8,1.0,1,1.3777912855148315,153,1.0,2 +42653,8,1.0,1,1.4787899255752563,154,0.0,2 +42654,8,0.0,1,1.1647917032241821,155,0.0,2 +42655,8,1.0,1,1.8647849559783936,156,1.0,2 +42656,8,1.0,1,2.201788902282715,157,1.0,2 +42657,8,1.0,1,1.751786470413208,158,1.0,2 +42658,8,1.0,1,1.3447916507720947,159,1.0,2 +42659,8,1.0,1,1.2767919301986694,160,1.0,2 +42660,8,1.0,1,1.4587901830673218,161,1.0,2 +42661,8,1.0,1,2.0977840423583984,162,1.0,2 +42662,8,1.0,1,1.476789951324463,163,1.0,2 +42663,8,1.0,1,1.4487903118133545,164,1.0,2 +42664,8,1.0,1,1.5657888650894165,165,0.0,2 +42665,8,1.0,1,1.5247893333435059,166,0.0,2 +42666,8,1.0,1,1.848785161972046,167,0.0,2 +42667,8,0.0,1,1.301792025566101,168,0.0,2 +42668,8,0.0,1,1.3997910022735596,169,1.0,2 +42669,8,0.0,1,1.4107908010482788,170,0.0,2 +42670,8,0.0,1,2.273792266845703,171,0.0,2 +42671,8,0.0,1,2.1377859115600586,172,0.0,2 +42672,8,1.0,1,1.848785161972046,173,1.0,2 +42673,8,1.0,1,1.4657901525497437,174,1.0,2 +42674,8,1.0,1,1.520789384841919,175,1.0,2 +42675,8,1.0,1,1.398790955543518,176,0.0,2 +42676,8,0.0,1,1.570788860321045,177,0.0,2 +42677,8,1.0,1,1.3337918519973755,178,1.0,2 +42678,8,1.0,1,1.4667900800704956,179,1.0,2 +42679,8,1.0,1,1.453790307044983,180,0.0,2 +42680,8,0.0,1,2.541804790496826,181,0.0,2 +42681,8,0.0,1,1.7977858781814575,182,0.0,2 +42682,8,0.0,1,1.1537916660308838,183,1.0,2 +42683,8,0.0,1,1.423790693283081,184,1.0,2 +42684,8,0.0,1,1.268791913986206,185,1.0,2 +42685,8,0.0,1,1.4567902088165283,186,0.0,2 +42686,8,1.0,1,1.5697888135910034,187,1.0,2 +42687,8,1.0,1,1.6067883968353271,188,1.0,2 +42688,8,1.0,1,1.5917885303497314,189,1.0,2 +42689,8,0.0,1,1.331791877746582,190,0.0,2 +42690,8,1.0,1,1.5747888088226318,191,1.0,2 +42691,8,1.0,1,1.383791208267212,192,1.0,2 +42692,8,1.0,1,1.6057883501052856,193,0.0,2 +42693,8,1.0,1,1.4007909297943115,194,1.0,2 +42694,8,1.0,1,2.263791561126709,195,1.0,2 +42695,8,1.0,1,1.6687874794006348,196,1.0,2 +42696,8,1.0,1,1.2647919654846191,197,0.0,2 +42697,8,1.0,1,1.5337892770767212,198,1.0,2 +42698,8,1.0,1,1.6507878303527832,199,1.0,2 +42699,8,1.0,1,1.3777912855148315,200,1.0,2 +42700,8,1.0,1,1.2267918586730957,201,1.0,2 +42701,8,1.0,1,1.2667919397354126,202,0.0,2 +42702,8,1.0,1,1.4097908735275269,203,1.0,2 +42703,8,1.0,1,1.755786418914795,204,1.0,2 +42704,8,1.0,1,1.560788869857788,205,1.0,2 +42705,8,1.0,1,1.4817899465560913,206,1.0,2 +42706,8,1.0,1,1.4147907495498657,207,1.0,2 +42707,8,1.0,1,1.4897898435592651,208,1.0,2 +42708,8,1.0,1,1.453790307044983,209,1.0,2 +42709,8,1.0,1,1.7167868614196777,210,1.0,2 +42710,8,1.0,1,1.4927897453308105,211,1.0,2 +42711,8,1.0,1,1.7117869853973389,212,1.0,2 +42712,8,0.0,1,1.2607918977737427,213,0.0,2 +42713,8,1.0,1,1.331791877746582,214,0.0,2 +42714,8,0.0,1,1.2127918004989624,215,0.0,2 +42715,8,0.0,1,1.8517851829528809,216,0.0,2 +42716,8,0.0,1,1.1627917289733887,217,1.0,2 +42717,8,0.0,1,1.2967920303344727,218,0.0,2 +42718,8,0.0,1,1.420790672302246,219,0.0,2 +42719,8,0.0,1,1.5087895393371582,220,1.0,2 +42720,8,0.0,1,1.5017896890640259,221,0.0,2 +42721,8,1.0,1,1.520789384841919,222,1.0,2 +42722,8,1.0,1,1.5697888135910034,223,1.0,2 +42723,8,1.0,1,1.5367891788482666,224,0.0,2 +42724,8,0.0,1,1.8667850494384766,225,0.0,2 +42725,8,1.0,1,1.7767860889434814,226,1.0,2 +42726,8,1.0,1,1.4177907705307007,227,1.0,2 +42727,8,1.0,1,1.331791877746582,228,0.0,2 +42728,8,0.0,1,1.656787633895874,229,1.0,2 +42729,8,0.0,1,1.2817919254302979,230,0.0,2 +42730,8,1.0,1,1.5017896890640259,231,0.0,2 +42731,8,0.0,1,1.986783504486084,232,0.0,2 +42732,8,0.0,1,1.1977918148040771,233,0.0,2 +42733,8,1.0,1,1.519789457321167,234,1.0,2 +42734,8,1.0,1,1.936784029006958,235,1.0,2 +42735,8,1.0,1,1.51578950881958,236,1.0,2 +42736,8,1.0,1,1.702787160873413,237,1.0,2 +42737,8,1.0,1,1.310792088508606,238,1.0,2 +42738,8,1.0,1,1.210791826248169,239,1.0,2 +42739,8,1.0,1,1.5227893590927124,240,1.0,2 +42740,8,1.0,1,1.7877860069274902,241,1.0,2 +42741,8,1.0,1,1.8307855129241943,242,1.0,2 +42742,8,0.0,1,1.5827887058258057,243,0.0,2 +42743,8,0.0,1,1.237791895866394,244,0.0,2 +42744,8,1.0,1,1.3827911615371704,245,1.0,2 +42745,8,1.0,1,1.3417917490005493,246,0.0,2 +42746,8,0.0,1,1.3437917232513428,247,0.0,2 +42747,8,1.0,1,1.708786964416504,248,1.0,2 +42748,8,1.0,1,1.3947910070419312,249,0.0,2 +42749,8,1.0,1,1.6707875728607178,250,1.0,2 +42750,8,1.0,1,1.3777912855148315,251,1.0,2 +42751,8,1.0,1,1.3787912130355835,252,0.0,2 +42752,8,1.0,1,1.913784384727478,253,0.0,2 +42753,8,0.0,1,1.35379159450531,254,0.0,2 +42754,8,1.0,1,1.3197920322418213,255,0.0,2 +42755,8,1.0,1,1.8307855129241943,256,1.0,2 +42756,8,0.0,1,1.4097908735275269,257,0.0,2 +42757,8,1.0,1,1.1577917337417603,258,1.0,2 +42758,8,1.0,1,1.301792025566101,259,1.0,2 +42759,8,1.0,1,1.3827911615371704,260,0.0,2 +42760,8,1.0,1,1.6097882986068726,261,0.0,2 +42761,8,0.0,1,1.2547919750213623,262,1.0,2 +42762,8,0.0,1,1.331791877746582,263,0.0,2 +42763,8,0.0,1,1.2567919492721558,264,0.0,2 +42764,8,0.0,1,1.6717875003814697,265,0.0,2 +42765,8,0.0,1,1.6327879428863525,266,0.0,2 +42766,8,1.0,1,1.4087908267974854,267,1.0,2 +42767,8,1.0,1,1.446790337562561,268,0.0,2 +42768,8,1.0,1,1.6897872686386108,269,0.0,2 +42769,8,0.0,1,1.3097920417785645,270,0.0,2 +42770,8,0.0,1,1.5837886333465576,271,0.0,2 +42771,8,1.0,1,1.795785903930664,272,0.0,2 +42772,8,0.0,1,1.825785517692566,273,0.0,2 +42773,8,1.0,1,1.493789792060852,274,1.0,2 +42774,8,1.0,1,1.4257906675338745,275,1.0,2 +42775,8,1.0,1,1.209791898727417,276,1.0,2 +42776,8,1.0,1,1.5137895345687866,277,1.0,2 +42777,8,1.0,1,1.424790620803833,278,1.0,2 +42778,8,1.0,1,1.446790337562561,279,0.0,2 +42779,8,1.0,1,2.0087831020355225,280,1.0,2 +42780,8,1.0,1,1.799785852432251,281,1.0,2 +42781,8,1.0,1,1.5957884788513184,282,1.0,2 +42782,8,1.0,1,1.748786449432373,283,0.0,2 +42783,8,0.0,1,2.3407952785491943,284,0.0,2 +42784,8,1.0,1,1.8117856979370117,285,1.0,2 +42785,8,1.0,1,1.842785358428955,286,1.0,2 +42786,8,1.0,1,1.5837886333465576,287,1.0,2 +42787,8,1.0,1,1.3907910585403442,288,1.0,2 +42788,8,1.0,1,1.7157869338989258,289,1.0,2 +42789,8,1.0,1,1.4347904920578003,290,0.0,2 +42790,8,1.0,1,1.6497877836227417,291,0.0,2 +42791,8,1.0,1,1.4437904357910156,292,1.0,2 +42792,8,0.0,1,1.6097882986068726,293,0.0,2 +42793,8,1.0,1,1.6947872638702393,294,1.0,2 +42794,8,1.0,1,1.2117918729782104,295,1.0,2 +42795,8,1.0,1,1.589788556098938,296,1.0,2 +42796,8,1.0,1,1.4887897968292236,297,0.0,2 +42797,8,1.0,1,1.2337918281555176,298,1.0,2 +42798,8,1.0,1,1.965783715248108,299,1.0,2 +42799,8,1.0,1,1.523789405822754,300,0.0,2 +42800,8,1.0,1,2.552805185317993,301,1.0,2 +42801,8,1.0,1,1.494789719581604,302,1.0,2 +42802,8,0.0,1,1.681787371635437,303,0.0,2 +42803,8,1.0,1,1.5497890710830688,304,1.0,2 +42804,8,1.0,1,1.4357905387878418,305,1.0,2 +42805,8,1.0,1,1.5357892513275146,306,1.0,2 +42806,8,1.0,1,1.4747899770736694,307,1.0,2 +42807,8,1.0,1,1.6997871398925781,308,1.0,2 +42808,8,1.0,1,1.4087908267974854,309,1.0,2 +42809,8,1.0,1,1.427790641784668,310,1.0,2 +42810,8,1.0,1,1.3467916250228882,311,1.0,2 +42811,8,1.0,1,1.563788890838623,312,0.0,2 +42812,8,1.0,1,2.3387951850891113,313,0.0,2 +42813,8,1.0,1,1.8387854099273682,314,1.0,2 +42814,8,1.0,1,1.4657901525497437,315,0.0,2 +42815,8,1.0,1,1.9527838230133057,316,1.0,2 +42816,8,1.0,1,1.4597902297973633,317,0.0,2 +42817,8,0.0,1,1.4557902812957764,318,1.0,2 +42818,8,0.0,1,1.5367891788482666,319,1.0,2 +42819,8,0.0,1,1.3657914400100708,320,0.0,2 +42820,8,1.0,1,1.6757874488830566,321,0.0,2 +42821,8,0.0,1,1.6977871656417847,322,0.0,2 +42822,8,1.0,1,1.7837860584259033,323,1.0,2 +42823,8,1.0,1,1.3007919788360596,324,0.0,2 +42824,8,0.0,1,1.3467916250228882,325,0.0,2 +42825,8,1.0,1,1.6287879943847656,326,1.0,2 +42826,8,0.0,1,1.1507917642593384,327,0.0,2 +42827,8,1.0,1,1.519789457321167,328,1.0,2 +42828,8,1.0,1,1.5307892560958862,329,1.0,2 +42829,8,1.0,1,1.3617914915084839,330,0.0,2 +42830,8,1.0,1,1.375791311264038,331,1.0,2 +42831,8,1.0,1,1.6707875728607178,332,1.0,2 +42832,8,1.0,1,1.2247918844223022,333,1.0,2 +42833,8,1.0,1,1.7977858781814575,334,0.0,2 +42834,8,1.0,1,1.9937833547592163,335,1.0,2 +42835,8,1.0,1,1.4777899980545044,336,1.0,2 +42836,8,1.0,1,1.7657862901687622,337,1.0,2 +42837,8,1.0,1,1.350791573524475,338,1.0,2 +42838,8,1.0,1,1.4857898950576782,339,1.0,2 +42839,8,1.0,1,1.4147907495498657,340,1.0,2 +42840,8,1.0,1,1.545789122581482,341,1.0,2 +42841,8,1.0,1,1.3977910280227661,342,0.0,2 +42842,8,0.0,1,1.301792025566101,343,0.0,2 +42843,8,0.0,1,2.1207849979400635,344,1.0,2 +42844,8,0.0,1,1.2367918491363525,345,0.0,2 +42845,8,0.0,1,2.501802921295166,346,0.0,2 +42846,8,1.0,1,1.2857919931411743,347,0.0,2 +42847,8,0.0,1,1.706787109375,348,0.0,2 +42848,8,0.0,1,2.253791332244873,349,1.0,2 +42849,8,0.0,1,2.1607868671417236,350,0.0,2 +42850,8,1.0,1,2.1007840633392334,351,1.0,2 +42851,8,0.0,1,1.2237918376922607,352,0.0,2 +42852,8,1.0,1,1.5537890195846558,353,1.0,2 +42853,8,1.0,1,1.5617889165878296,354,0.0,2 +42854,8,1.0,1,1.2417919635772705,355,1.0,2 +42855,8,1.0,1,1.7567863464355469,356,0.0,2 +42856,8,1.0,1,1.8757848739624023,357,1.0,2 +42857,8,1.0,1,1.3477916717529297,358,0.0,2 +42858,8,0.0,1,1.6387879848480225,359,0.0,2 +42859,8,1.0,1,1.7117869853973389,360,1.0,2 +42860,8,1.0,1,1.2517919540405273,361,1.0,2 +42861,8,1.0,1,1.4807898998260498,362,1.0,2 +42862,8,1.0,1,1.4557902812957764,363,0.0,2 +42863,8,0.0,1,1.2317918539047241,364,0.0,2 +42864,8,0.0,1,1.2327919006347656,365,0.0,2 +42865,8,0.0,1,1.792785882949829,366,0.0,2 +42866,8,0.0,1,1.6177881956100464,367,1.0,2 +42867,8,0.0,1,1.4097908735275269,368,0.0,2 +42868,8,0.0,1,1.7767860889434814,369,0.0,2 +42869,8,0.0,1,1.2517919540405273,370,1.0,2 +42870,8,1.0,1,1.5267893075942993,371,1.0,2 +42871,8,0.0,1,1.3487915992736816,372,0.0,2 +42872,8,1.0,1,1.2457919120788574,373,1.0,2 +42873,8,0.0,1,2.0407826900482178,374,1.0,2 +42874,8,1.0,1,1.3567914962768555,375,1.0,2 +42875,8,0.0,1,1.3907910585403442,376,0.0,2 +42876,8,1.0,1,1.4137908220291138,377,0.0,2 +42877,8,0.0,1,1.9227843284606934,378,0.0,2 +42878,8,1.0,1,1.560788869857788,379,0.0,2 +42879,8,1.0,1,1.4797899723052979,380,0.0,2 +42880,8,0.0,1,1.6167881488800049,381,1.0,2 +42881,8,0.0,1,1.8227856159210205,382,0.0,2 +42882,8,0.0,1,1.8997845649719238,383,0.0,2 +42883,8,0.0,1,1.2817919254302979,384,1.0,2 +42884,8,0.0,1,1.2967920303344727,385,1.0,2 +42885,8,0.0,1,1.277791976928711,386,1.0,2 +42886,8,0.0,1,1.1977918148040771,387,1.0,2 +42887,8,0.0,1,1.310792088508606,388,1.0,2 +42888,8,0.0,1,1.2117918729782104,389,1.0,2 +42889,8,0.0,1,2.042782783508301,390,0.0,2 +42890,8,1.0,1,2.0587825775146484,391,1.0,2 +42891,8,1.0,1,1.3687913417816162,392,1.0,2 +42892,8,1.0,1,1.4357905387878418,393,0.0,2 +42893,8,0.0,1,1.6457878351211548,394,0.0,2 +42894,8,1.0,1,1.5267893075942993,395,1.0,2 +42895,8,1.0,1,1.494789719581604,396,1.0,2 +42896,8,1.0,1,1.6907873153686523,397,0.0,2 +42897,8,1.0,1,2.1817879676818848,398,1.0,2 +42898,8,1.0,1,1.5927884578704834,399,0.0,2 +42899,8,0.0,1,1.3617914915084839,400,1.0,2 +42900,8,0.0,1,1.3657914400100708,401,0.0,2 +42901,8,1.0,1,1.5037896633148193,402,1.0,2 +42902,8,1.0,1,1.8937846422195435,403,0.0,2 +42903,8,1.0,1,1.9277842044830322,404,0.0,2 +42904,8,0.0,1,1.890784740447998,405,0.0,2 +42905,8,0.0,1,1.4797899723052979,406,0.0,2 +42906,8,1.0,1,1.3607914447784424,407,1.0,2 +42907,8,1.0,1,1.7177869081497192,408,1.0,2 +42908,8,1.0,1,1.5827887058258057,409,1.0,2 +42909,8,1.0,1,1.792785882949829,410,0.0,2 +42910,8,1.0,1,1.5177894830703735,411,0.0,2 +42911,8,1.0,1,2.542804718017578,412,0.0,2 +42912,8,0.0,1,2.774815559387207,413,0.0,2 +42913,8,0.0,1,1.5727887153625488,414,0.0,2 +42914,8,0.0,1,1.3027920722961426,415,0.0,2 +42915,8,0.0,1,1.1917917728424072,416,1.0,2 +42916,8,0.0,1,1.380791187286377,417,0.0,2 +42917,8,1.0,1,1.7427866458892822,418,1.0,2 +42918,8,1.0,1,1.9717836380004883,419,0.0,2 +42919,8,0.0,1,1.9107844829559326,420,0.0,2 +42920,8,0.0,1,1.9917833805084229,421,1.0,2 +42921,8,0.0,1,1.4117908477783203,422,0.0,2 +42922,8,1.0,1,1.9607837200164795,423,1.0,2 +42923,8,1.0,1,2.020782947540283,424,0.0,2 +42924,8,1.0,1,2.287792682647705,425,1.0,2 +42925,8,1.0,1,1.825785517692566,426,1.0,2 +42926,8,1.0,1,1.357791543006897,427,1.0,2 +42927,8,1.0,1,1.618788242340088,428,1.0,2 +42928,8,0.0,1,1.8267855644226074,429,0.0,2 +42929,8,1.0,1,1.1977918148040771,430,1.0,2 +42930,8,1.0,1,1.3817912340164185,431,0.0,2 +42931,8,0.0,1,1.5977884531021118,432,1.0,2 +42932,8,0.0,1,1.1837917566299438,433,0.0,2 +42933,8,0.0,1,1.2787920236587524,434,0.0,2 +42934,8,0.0,1,1.2307919263839722,435,0.0,2 +42935,8,0.0,1,1.4077908992767334,436,0.0,2 +42936,8,1.0,1,1.5977884531021118,437,1.0,2 +42937,8,1.0,1,1.497789740562439,438,1.0,2 +42938,8,0.0,1,2.1177849769592285,439,0.0,2 +42939,8,1.0,1,1.3387917280197144,440,1.0,2 +42940,8,1.0,1,1.3737913370132446,441,1.0,2 +42941,8,1.0,1,1.5917885303497314,442,1.0,2 +42942,8,1.0,1,1.2477918863296509,443,1.0,2 +42943,8,1.0,1,1.6847872734069824,444,1.0,2 +42944,8,1.0,1,1.4807898998260498,445,1.0,2 +42945,8,1.0,1,1.3617914915084839,446,1.0,2 +42946,8,1.0,1,1.4657901525497437,447,1.0,2 +42947,8,1.0,1,1.3397917747497559,448,1.0,2 +42948,8,0.0,1,1.5057896375656128,449,0.0,2 +42949,8,1.0,1,1.3887910842895508,450,1.0,2 +42950,8,1.0,1,1.9307842254638672,451,1.0,2 +42951,8,1.0,1,1.4517903327941895,452,1.0,2 +42952,8,1.0,1,1.6837873458862305,453,0.0,2 +42953,8,0.0,1,1.3167920112609863,454,1.0,2 +42954,8,0.0,1,1.4697901010513306,455,0.0,2 +42955,8,0.0,1,1.4377905130386353,456,0.0,2 +42956,8,1.0,1,1.685787320137024,457,1.0,2 +42957,8,1.0,1,1.5907886028289795,458,0.0,2 +42958,8,0.0,1,2.1167848110198975,459,1.0,2 +42959,8,0.0,1,2.3487956523895264,460,0.0,2 +42960,8,1.0,1,1.7617863416671753,461,0.0,2 +42961,8,0.0,1,1.9687836170196533,462,0.0,2 +42962,8,1.0,1,1.8137856721878052,463,1.0,2 +42963,8,1.0,1,1.8547852039337158,464,0.0,2 +42964,8,1.0,1,1.7417865991592407,465,1.0,2 +42965,8,1.0,1,1.585788607597351,466,0.0,2 +42966,8,1.0,1,1.5657888650894165,467,1.0,2 +42967,8,1.0,1,1.9957833290100098,468,1.0,2 +42968,8,1.0,1,1.7697862386703491,469,1.0,2 +42969,8,1.0,1,1.984783411026001,470,1.0,2 +42970,8,1.0,1,1.3437917232513428,471,0.0,2 +42971,8,0.0,1,1.4787899255752563,472,0.0,2 +42972,8,1.0,1,1.2917920351028442,473,1.0,2 +42973,8,1.0,1,2.0637824535369873,474,0.0,2 +42974,8,1.0,1,2.039782762527466,475,1.0,2 +42975,8,1.0,1,1.493789792060852,476,0.0,2 +42976,8,1.0,1,1.6397879123687744,477,1.0,2 +42977,8,1.0,1,1.51578950881958,478,1.0,2 +42978,8,1.0,1,1.7887859344482422,479,1.0,2 +42979,8,1.0,1,1.3927910327911377,480,1.0,2 +42980,8,1.0,1,1.4577902555465698,481,1.0,2 +42981,8,1.0,1,1.375791311264038,482,1.0,2 +42982,8,1.0,1,2.292793035507202,483,1.0,2 +42983,8,1.0,1,1.6517877578735352,484,1.0,2 +42984,8,1.0,1,1.4627901315689087,485,0.0,2 +42985,8,0.0,1,2.1517863273620605,486,0.0,2 +42986,8,0.0,1,1.585788607597351,487,0.0,2 +42987,8,0.0,1,1.53878915309906,488,0.0,2 +42988,8,0.0,1,1.2487919330596924,489,1.0,2 +42989,8,0.0,1,1.336791753768921,490,1.0,2 +42990,8,0.0,1,1.3397917747497559,491,0.0,2 +42991,8,1.0,1,1.6887872219085693,492,1.0,2 +42992,8,1.0,1,2.0887835025787354,493,1.0,2 +42993,8,1.0,1,1.310792088508606,494,1.0,2 +42994,8,0.0,1,1.773786187171936,495,0.0,2 +42995,8,1.0,1,1.792785882949829,496,0.0,2 +42996,8,1.0,1,2.286792755126953,497,1.0,2 +42997,8,1.0,1,1.4267905950546265,498,1.0,2 +42998,8,1.0,1,1.3417917490005493,499,0.0,2 +42999,8,1.0,1,1.4997897148132324,500,1.0,2 +43000,8,1.0,2,2.235790252685547,1,1.0,2 +43001,8,1.0,2,1.5327892303466797,2,0.0,2 +43002,8,0.0,2,1.3487915992736816,3,0.0,2 +43003,8,1.0,2,2.285792827606201,4,0.0,2 +43004,8,1.0,2,1.5917885303497314,5,1.0,2 +43005,8,1.0,2,1.6717875003814697,6,0.0,2 +43006,8,1.0,2,1.3457916975021362,7,1.0,2 +43007,8,1.0,2,1.6917872428894043,8,0.0,2 +43008,8,1.0,2,1.4557902812957764,9,1.0,2 +43009,8,1.0,2,1.5517890453338623,10,0.0,2 +43010,8,1.0,2,1.6497877836227417,11,0.0,2 +43011,8,0.0,2,1.3657914400100708,12,1.0,2 +43012,8,0.0,2,1.541789174079895,13,0.0,2 +43013,8,1.0,2,1.420790672302246,14,0.0,2 +43014,8,1.0,2,1.476789951324463,15,1.0,2 +43015,8,1.0,2,1.615788221359253,16,0.0,2 +43016,8,0.0,2,1.4427903890609741,17,0.0,2 +43017,8,0.0,2,1.4807898998260498,18,0.0,2 +43018,8,0.0,2,2.0847833156585693,19,0.0,2 +43019,8,0.0,2,1.311792016029358,20,0.0,2 +43020,8,1.0,2,1.2857919931411743,21,1.0,2 +43021,8,0.0,2,1.2387919425964355,22,1.0,2 +43022,8,1.0,2,2.0177831649780273,23,1.0,2 +43023,8,0.0,2,2.50380277633667,24,1.0,2 +43024,8,1.0,2,2.257791519165039,25,0.0,2 +43025,8,0.0,2,1.6737874746322632,26,0.0,2 +43026,8,0.0,2,1.2547919750213623,27,0.0,2 +43027,8,0.0,2,1.4867898225784302,28,0.0,2 +43028,8,0.0,2,1.5597889423370361,29,1.0,2 +43029,8,0.0,2,1.3197920322418213,30,1.0,2 +43030,8,0.0,2,1.6657875776290894,31,0.0,2 +43031,8,1.0,2,1.618788242340088,32,1.0,2 +43032,8,1.0,2,1.8587851524353027,33,0.0,2 +43033,8,1.0,2,1.3917911052703857,34,1.0,2 +43034,8,1.0,2,1.564788818359375,35,1.0,2 +43035,8,1.0,2,1.4797899723052979,36,1.0,2 +43036,8,1.0,2,1.5357892513275146,37,0.0,2 +43037,8,1.0,2,1.7307868003845215,38,1.0,2 +43038,8,1.0,2,2.6238083839416504,39,0.0,2 +43039,8,0.0,2,1.8047857284545898,40,1.0,2 +43040,8,0.0,2,1.2577919960021973,41,1.0,2 +43041,8,0.0,2,1.6247880458831787,42,0.0,2 +43042,8,0.0,2,1.5267893075942993,43,0.0,2 +43043,8,1.0,2,1.655787706375122,44,0.0,2 +43044,8,1.0,2,2.03078293800354,45,0.0,2 +43045,8,0.0,2,1.8497852087020874,46,0.0,2 +43046,8,0.0,2,1.3557915687561035,47,1.0,2 +43047,8,0.0,2,1.800785779953003,48,1.0,2 +43048,8,0.0,2,1.2577919960021973,49,0.0,2 +43049,8,0.0,2,1.3167920112609863,50,1.0,2 +43050,8,0.0,2,1.1567916870117188,51,1.0,2 +43051,8,0.0,2,1.570788860321045,52,1.0,2 +43052,8,0.0,2,1.2287918329238892,53,1.0,2 +43053,8,0.0,2,1.6617876291275024,54,1.0,2 +43054,8,0.0,2,1.3557915687561035,55,0.0,2 +43055,8,0.0,2,1.887784719467163,56,1.0,2 +43056,8,0.0,2,1.267791986465454,57,1.0,2 +43057,8,0.0,2,1.4527902603149414,58,1.0,2 +43058,8,0.0,2,1.1297917366027832,59,0.0,2 +43059,8,1.0,2,1.4037909507751465,60,1.0,2 +43060,8,1.0,2,1.4087908267974854,61,0.0,2 +43061,8,1.0,2,1.7307868003845215,62,0.0,2 +43062,8,1.0,2,1.3597915172576904,63,1.0,2 +43063,8,1.0,2,1.8597850799560547,64,0.0,2 +43064,8,0.0,2,1.3447916507720947,65,0.0,2 +43065,8,1.0,2,2.299793243408203,66,0.0,2 +43066,8,0.0,2,2.0547826290130615,67,0.0,2 +43067,8,1.0,2,1.6497877836227417,68,1.0,2 +43068,8,1.0,2,1.940783977508545,69,0.0,2 +43069,8,0.0,2,1.1787917613983154,70,0.0,2 +43070,8,0.0,2,1.6897872686386108,71,0.0,2 +43071,8,1.0,2,1.498789668083191,72,1.0,2 +43072,8,1.0,2,1.4587901830673218,73,1.0,2 +43073,8,1.0,2,1.3347917795181274,74,1.0,2 +43074,8,1.0,2,1.475790023803711,75,0.0,2 +43075,8,0.0,2,1.4077908992767334,76,1.0,2 +43076,8,0.0,2,1.246791958808899,77,1.0,2 +43077,8,0.0,2,1.2817919254302979,78,0.0,2 +43078,8,1.0,2,1.6677875518798828,79,1.0,2 +43079,8,0.0,2,1.5397891998291016,80,0.0,2 +43080,8,1.0,2,1.301792025566101,81,1.0,2 +43081,8,1.0,2,1.608788251876831,82,0.0,2 +43082,8,1.0,2,1.70078706741333,83,0.0,2 +43083,8,1.0,2,1.4517903327941895,84,0.0,2 +43084,8,0.0,2,1.1927918195724487,85,1.0,2 +43085,8,0.0,2,1.3007919788360596,86,1.0,2 +43086,8,0.0,2,1.2147918939590454,87,0.0,2 +43087,8,0.0,2,1.475790023803711,88,1.0,2 +43088,8,1.0,2,1.7667863368988037,89,0.0,2 +43089,8,0.0,2,1.5997884273529053,90,0.0,2 +43090,8,0.0,2,1.4077908992767334,91,1.0,2 +43091,8,0.0,2,1.5227893590927124,92,0.0,2 +43092,8,0.0,2,1.4007909297943115,93,1.0,2 +43093,8,0.0,2,1.4217907190322876,94,0.0,2 +43094,8,0.0,2,1.5407891273498535,95,1.0,2 +43095,8,0.0,2,1.9197843074798584,96,0.0,2 +43096,8,1.0,2,1.5947885513305664,97,0.0,2 +43097,8,1.0,2,1.6197881698608398,98,1.0,2 +43098,8,1.0,2,1.3067920207977295,99,0.0,2 +43099,8,0.0,2,1.308791995048523,100,0.0,2 +43100,8,0.0,2,2.3427953720092773,101,0.0,2 +43101,8,0.0,2,1.3927910327911377,102,1.0,2 +43102,8,0.0,2,1.2167918682098389,103,0.0,2 +43103,8,1.0,2,1.2207918167114258,104,1.0,2 +43104,8,1.0,2,2.230790138244629,105,1.0,2 +43105,8,1.0,2,1.6247880458831787,106,0.0,2 +43106,8,0.0,2,1.3957910537719727,107,1.0,2 +43107,8,0.0,2,1.3217920064926147,108,1.0,2 +43108,8,0.0,2,1.472790002822876,109,0.0,2 +43109,8,1.0,2,1.6957871913909912,110,0.0,2 +43110,8,0.0,2,1.446790337562561,111,0.0,2 +43111,8,0.0,2,1.2697919607162476,112,1.0,2 +43112,8,0.0,2,1.1417917013168335,113,1.0,2 +43113,8,0.0,2,1.2307919263839722,114,1.0,2 +43114,8,0.0,2,1.560788869857788,115,0.0,2 +43115,8,0.0,2,1.3217920064926147,116,0.0,2 +43116,8,0.0,2,1.5137895345687866,117,1.0,2 +43117,8,0.0,2,1.3257919549942017,118,0.0,2 +43118,8,0.0,2,1.5007896423339844,119,1.0,2 +43119,8,0.0,2,1.3777912855148315,120,1.0,2 +43120,8,0.0,2,1.6347880363464355,121,1.0,2 +43121,8,0.0,2,1.2627919912338257,122,0.0,2 +43122,8,1.0,2,2.287792682647705,123,0.0,2 +43123,8,1.0,2,1.3677914142608643,124,1.0,2 +43124,8,1.0,2,1.4157907962799072,125,1.0,2 +43125,8,1.0,2,1.1807917356491089,126,1.0,2 +43126,8,1.0,2,1.243791937828064,127,0.0,2 +43127,8,0.0,2,1.4587901830673218,128,1.0,2 +43128,8,0.0,2,1.6697875261306763,129,0.0,2 +43129,8,0.0,2,1.6787874698638916,130,0.0,2 +43130,8,0.0,2,1.7247867584228516,131,0.0,2 +43131,8,0.0,2,1.4887897968292236,132,1.0,2 +43132,8,0.0,2,1.9277842044830322,133,1.0,2 +43133,8,0.0,2,1.2907919883728027,134,1.0,2 +43134,8,0.0,2,1.336791753768921,135,1.0,2 +43135,8,0.0,2,1.1937918663024902,136,1.0,2 +43136,8,0.0,2,1.9627838134765625,137,0.0,2 +43137,8,0.0,2,1.8867847919464111,138,1.0,2 +43138,8,1.0,2,1.5837886333465576,139,0.0,2 +43139,8,0.0,2,1.4957897663116455,140,0.0,2 +43140,8,0.0,2,1.2257919311523438,141,1.0,2 +43141,8,0.0,2,1.453790307044983,142,0.0,2 +43142,8,0.0,2,1.6217881441116333,143,0.0,2 +43143,8,0.0,2,1.8867847919464111,144,0.0,2 +43144,8,0.0,2,1.3677914142608643,145,0.0,2 +43145,8,1.0,2,2.205789089202881,146,1.0,2 +43146,8,1.0,2,1.545789122581482,147,0.0,2 +43147,8,0.0,2,1.659787654876709,148,0.0,2 +43148,8,0.0,2,1.6927871704101562,149,0.0,2 +43149,8,0.0,2,1.210791826248169,150,1.0,2 +43150,8,0.0,2,1.2267918586730957,151,1.0,2 +43151,8,0.0,2,1.4087908267974854,152,0.0,2 +43152,8,0.0,2,1.848785161972046,153,1.0,2 +43153,8,0.0,2,1.204791784286499,154,0.0,2 +43154,8,1.0,2,1.379791259765625,155,1.0,2 +43155,8,1.0,2,1.3457916975021362,156,1.0,2 +43156,8,1.0,2,1.5947885513305664,157,0.0,2 +43157,8,1.0,2,1.7167868614196777,158,1.0,2 +43158,8,1.0,2,1.5287892818450928,159,1.0,2 +43159,8,1.0,2,1.1907918453216553,160,0.0,2 +43160,8,0.0,2,2.519803524017334,161,0.0,2 +43161,8,1.0,2,1.6737874746322632,162,0.0,2 +43162,8,0.0,2,1.4667900800704956,163,1.0,2 +43163,8,0.0,2,2.3607962131500244,164,0.0,2 +43164,8,0.0,2,1.3207919597625732,165,0.0,2 +43165,8,1.0,2,1.4307905435562134,166,0.0,2 +43166,8,0.0,2,1.2177917957305908,167,1.0,2 +43167,8,0.0,2,1.4627901315689087,168,0.0,2 +43168,8,0.0,2,2.029782772064209,169,0.0,2 +43169,8,0.0,2,1.1917917728424072,170,0.0,2 +43170,8,0.0,2,1.6807873249053955,171,1.0,2 +43171,8,0.0,2,1.2967920303344727,172,1.0,2 +43172,8,0.0,2,1.2537919282913208,173,0.0,2 +43173,8,1.0,2,1.6277880668640137,174,0.0,2 +43174,8,0.0,2,1.2177917957305908,175,1.0,2 +43175,8,0.0,2,1.1647917032241821,176,0.0,2 +43176,8,0.0,2,1.2957919836044312,177,0.0,2 +43177,8,0.0,2,1.3467916250228882,178,1.0,2 +43178,8,0.0,2,1.5927884578704834,179,0.0,2 +43179,8,0.0,2,1.1547917127609253,180,1.0,2 +43180,8,0.0,2,1.9537838697433472,181,0.0,2 +43181,8,1.0,2,1.663787603378296,182,0.0,2 +43182,8,1.0,2,2.1467862129211426,183,0.0,2 +43183,8,0.0,2,2.3457956314086914,184,1.0,2 +43184,8,0.0,2,1.5187894105911255,185,1.0,2 +43185,8,0.0,2,1.445790410041809,186,1.0,2 +43186,8,0.0,2,1.182791829109192,187,1.0,2 +43187,8,0.0,2,1.537789225578308,188,0.0,2 +43188,8,0.0,2,1.6717875003814697,189,0.0,2 +43189,8,1.0,2,1.5717887878417969,190,0.0,2 +43190,8,0.0,2,1.1647917032241821,191,1.0,2 +43191,8,0.0,2,1.2487919330596924,192,0.0,2 +43192,8,1.0,2,1.7577863931655884,193,1.0,2 +43193,8,1.0,2,2.0467827320098877,194,1.0,2 +43194,8,1.0,2,1.2597919702529907,195,0.0,2 +43195,8,0.0,2,1.7457865476608276,196,1.0,2 +43196,8,0.0,2,1.167791724205017,197,1.0,2 +43197,8,0.0,2,1.2797919511795044,198,1.0,2 +43198,8,0.0,2,1.5737887620925903,199,0.0,2 +43199,8,1.0,2,2.0587825775146484,200,1.0,2 +43200,8,1.0,2,1.5187894105911255,201,0.0,2 +43201,8,0.0,2,1.5127894878387451,202,0.0,2 +43202,8,1.0,2,1.6647875308990479,203,1.0,2 +43203,8,1.0,2,1.3557915687561035,204,0.0,2 +43204,8,0.0,2,2.4157986640930176,205,1.0,2 +43205,8,0.0,2,1.3277919292449951,206,1.0,2 +43206,8,0.0,2,1.4147907495498657,207,0.0,2 +43207,8,0.0,2,2.0007832050323486,208,1.0,2 +43208,8,0.0,2,1.3097920417785645,209,0.0,2 +43209,8,1.0,2,1.3427916765213013,210,1.0,2 +43210,8,1.0,2,1.2367918491363525,211,0.0,2 +43211,8,1.0,2,1.8117856979370117,212,1.0,2 +43212,8,1.0,2,1.6427879333496094,213,1.0,2 +43213,8,0.0,2,1.6057883501052856,214,0.0,2 +43214,8,1.0,2,1.2197918891906738,215,1.0,2 +43215,8,1.0,2,2.1737875938415527,216,0.0,2 +43216,8,1.0,2,1.8377853631973267,217,1.0,2 +43217,8,1.0,2,1.4257906675338745,218,0.0,2 +43218,8,1.0,2,1.7627863883972168,219,1.0,2 +43219,8,1.0,2,1.7637863159179688,220,1.0,2 +43220,8,1.0,2,1.6427879333496094,221,1.0,2 +43221,8,1.0,2,1.2247918844223022,222,1.0,2 +43222,8,1.0,2,1.4147907495498657,223,1.0,2 +43223,8,0.0,2,1.8817847967147827,224,0.0,2 +43224,8,1.0,2,1.5557889938354492,225,1.0,2 +43225,8,1.0,2,1.3497916460037231,226,0.0,2 +43226,8,0.0,2,1.1887917518615723,227,1.0,2 +43227,8,0.0,2,1.2917920351028442,228,1.0,2 +43228,8,0.0,2,1.40579092502594,229,0.0,2 +43229,8,1.0,2,1.5257893800735474,230,1.0,2 +43230,8,1.0,2,1.4707900285720825,231,1.0,2 +43231,8,1.0,2,1.685787320137024,232,0.0,2 +43232,8,1.0,2,1.2987920045852661,233,0.0,2 +43233,8,0.0,2,1.7767860889434814,234,1.0,2 +43234,8,0.0,2,1.402790904045105,235,0.0,2 +43235,8,0.0,2,1.7347867488861084,236,0.0,2 +43236,8,1.0,2,1.9857834577560425,237,1.0,2 +43237,8,1.0,2,1.3307918310165405,238,1.0,2 +43238,8,1.0,2,1.3147920370101929,239,1.0,2 +43239,8,1.0,2,1.5697888135910034,240,0.0,2 +43240,8,1.0,2,1.9497839212417603,241,0.0,2 +43241,8,0.0,2,1.7247867584228516,242,0.0,2 +43242,8,1.0,2,2.0997838973999023,243,0.0,2 +43243,8,0.0,2,1.5397891998291016,244,0.0,2 +43244,8,1.0,2,1.5347892045974731,245,0.0,2 +43245,8,1.0,2,2.0947837829589844,246,1.0,2 +43246,8,1.0,2,1.2757920026779175,247,1.0,2 +43247,8,1.0,2,1.4737900495529175,248,0.0,2 +43248,8,1.0,2,1.9007844924926758,249,1.0,2 +43249,8,1.0,2,1.9207842350006104,250,1.0,2 +43250,8,1.0,2,1.213791847229004,251,1.0,2 +43251,8,1.0,2,1.2897920608520508,252,1.0,2 +43252,8,1.0,2,1.2587919235229492,253,0.0,2 +43253,8,0.0,2,1.7147870063781738,254,0.0,2 +43254,8,0.0,2,1.3147920370101929,255,0.0,2 +43255,8,0.0,2,1.4097908735275269,256,0.0,2 +43256,8,1.0,2,1.5947885513305664,257,0.0,2 +43257,8,1.0,2,1.2387919425964355,258,1.0,2 +43258,8,1.0,2,1.5887885093688965,259,1.0,2 +43259,8,1.0,2,1.9987833499908447,260,1.0,2 +43260,8,1.0,2,1.267791986465454,261,0.0,2 +43261,8,1.0,2,1.6657875776290894,262,1.0,2 +43262,8,1.0,2,1.5307892560958862,263,0.0,2 +43263,8,0.0,2,1.304792046546936,264,0.0,2 +43264,8,1.0,2,1.6277880668640137,265,1.0,2 +43265,8,1.0,2,1.2887920141220093,266,0.0,2 +43266,8,1.0,2,1.7687861919403076,267,0.0,2 +43267,8,0.0,2,1.5067895650863647,268,1.0,2 +43268,8,0.0,2,1.3937910795211792,269,0.0,2 +43269,8,0.0,2,1.42879056930542,270,1.0,2 +43270,8,0.0,2,1.1187916994094849,271,1.0,2 +43271,8,0.0,2,1.490789771080017,272,0.0,2 +43272,8,0.0,2,1.89178466796875,273,0.0,2 +43273,8,1.0,2,1.8727848529815674,274,1.0,2 +43274,8,1.0,2,1.3927910327911377,275,1.0,2 +43275,8,1.0,2,1.2977919578552246,276,1.0,2 +43276,8,1.0,2,1.7407865524291992,277,0.0,2 +43277,8,1.0,2,1.401790976524353,278,0.0,2 +43278,8,1.0,2,1.3877911567687988,279,1.0,2 +43279,8,1.0,2,1.7137869596481323,280,1.0,2 +43280,8,1.0,2,1.3917911052703857,281,0.0,2 +43281,8,0.0,2,1.4437904357910156,282,0.0,2 +43282,8,1.0,2,1.5587888956069946,283,1.0,2 +43283,8,1.0,2,2.26479172706604,284,1.0,2 +43284,8,1.0,2,1.4837899208068848,285,1.0,2 +43285,8,1.0,2,1.7767860889434814,286,1.0,2 +43286,8,0.0,2,1.2547919750213623,287,0.0,2 +43287,8,1.0,2,1.6227881908416748,288,1.0,2 +43288,8,1.0,2,1.2847919464111328,289,0.0,2 +43289,8,1.0,2,2.493802547454834,290,1.0,2 +43290,8,1.0,2,1.6387879848480225,291,1.0,2 +43291,8,1.0,2,1.7607862949371338,292,0.0,2 +43292,8,0.0,2,1.5047895908355713,293,1.0,2 +43293,8,0.0,2,1.1567916870117188,294,0.0,2 +43294,8,1.0,2,1.424790620803833,295,1.0,2 +43295,8,1.0,2,1.2607918977737427,296,1.0,2 +43296,8,1.0,2,1.7807860374450684,297,0.0,2 +43297,8,0.0,2,1.3067920207977295,298,0.0,2 +43298,8,1.0,2,2.0687825679779053,299,0.0,2 +43299,8,0.0,2,1.9677836894989014,300,0.0,2 +43300,8,1.0,2,1.3877911567687988,301,1.0,2 +43301,8,1.0,2,1.8097857236862183,302,1.0,2 +43302,8,1.0,2,1.6867873668670654,303,1.0,2 +43303,8,0.0,2,1.5027896165847778,304,1.0,2 +43304,8,0.0,2,2.1047842502593994,305,1.0,2 +43305,8,0.0,2,1.476789951324463,306,1.0,2 +43306,8,1.0,2,1.5277893543243408,307,1.0,2 +43307,8,0.0,2,1.2277919054031372,308,1.0,2 +43308,8,0.0,2,1.3387917280197144,309,0.0,2 +43309,8,1.0,2,1.7277867794036865,310,1.0,2 +43310,8,1.0,2,1.420790672302246,311,1.0,2 +43311,8,1.0,2,1.6937872171401978,312,0.0,2 +43312,8,0.0,2,2.031782865524292,313,0.0,2 +43313,8,1.0,2,1.4227906465530396,314,0.0,2 +43314,8,1.0,2,1.3437917232513428,315,1.0,2 +43315,8,1.0,2,1.3727912902832031,316,0.0,2 +43316,8,1.0,2,1.6347880363464355,317,0.0,2 +43317,8,0.0,2,1.2387919425964355,318,0.0,2 +43318,8,0.0,2,1.2087918519973755,319,0.0,2 +43319,8,1.0,2,1.7897859811782837,320,1.0,2 +43320,8,1.0,2,1.3617914915084839,321,1.0,2 +43321,8,1.0,2,1.7197868824005127,322,0.0,2 +43322,8,0.0,2,1.7637863159179688,323,0.0,2 +43323,8,1.0,2,1.3427916765213013,324,1.0,2 +43324,8,1.0,2,1.5277893543243408,325,1.0,2 +43325,8,1.0,2,1.267791986465454,326,1.0,2 +43326,8,1.0,2,2.0177831649780273,327,1.0,2 +43327,8,1.0,2,1.271791934967041,328,1.0,2 +43328,8,1.0,2,1.8967845439910889,329,1.0,2 +43329,8,1.0,2,1.5437891483306885,330,0.0,2 +43330,8,0.0,2,1.304792046546936,331,0.0,2 +43331,8,1.0,2,2.6138081550598145,332,1.0,2 +43332,8,1.0,2,1.4997897148132324,333,0.0,2 +43333,8,0.0,2,1.2427918910980225,334,1.0,2 +43334,8,0.0,2,1.5097895860671997,335,0.0,2 +43335,8,1.0,2,1.6237881183624268,336,1.0,2 +43336,8,1.0,2,1.6797873973846436,337,1.0,2 +43337,8,1.0,2,1.7247867584228516,338,0.0,2 +43338,8,0.0,2,1.5557889938354492,339,1.0,2 +43339,8,0.0,2,1.840785264968872,340,0.0,2 +43340,8,1.0,2,1.7177869081497192,341,1.0,2 +43341,8,0.0,2,1.4177907705307007,342,0.0,2 +43342,8,1.0,2,1.2457919120788574,343,1.0,2 +43343,8,1.0,2,1.3867911100387573,344,1.0,2 +43344,8,1.0,2,1.5757887363433838,345,1.0,2 +43345,8,1.0,2,1.2857919931411743,346,1.0,2 +43346,8,1.0,2,1.3187919855117798,347,1.0,2 +43347,8,1.0,2,1.3127920627593994,348,1.0,2 +43348,8,0.0,2,1.446790337562561,349,0.0,2 +43349,8,1.0,2,1.493789792060852,350,0.0,2 +43350,8,0.0,2,1.280791997909546,351,1.0,2 +43351,8,0.0,2,1.3857911825180054,352,0.0,2 +43352,8,1.0,2,1.8337854146957397,353,1.0,2 +43353,8,1.0,2,1.8517851829528809,354,1.0,2 +43354,8,1.0,2,1.660787582397461,355,0.0,2 +43355,8,0.0,2,2.1357855796813965,356,1.0,2 +43356,8,0.0,2,1.7247867584228516,357,0.0,2 +43357,8,0.0,2,1.450790286064148,358,0.0,2 +43358,8,0.0,2,1.4227906465530396,359,1.0,2 +43359,8,0.0,2,1.5807886123657227,360,0.0,2 +43360,8,1.0,2,1.6047883033752441,361,0.0,2 +43361,8,1.0,2,1.5627888441085815,362,0.0,2 +43362,8,0.0,2,1.5137895345687866,363,1.0,2 +43363,8,0.0,2,1.4047908782958984,364,0.0,2 +43364,8,1.0,2,1.4857898950576782,365,1.0,2 +43365,8,1.0,2,1.516789436340332,366,1.0,2 +43366,8,1.0,2,1.7857860326766968,367,1.0,2 +43367,8,1.0,2,1.4547902345657349,368,1.0,2 +43368,8,1.0,2,1.566788911819458,369,1.0,2 +43369,8,1.0,2,1.848785161972046,370,0.0,2 +43370,8,0.0,2,2.0497827529907227,371,0.0,2 +43371,8,0.0,2,1.2527918815612793,372,1.0,2 +43372,8,0.0,2,1.420790672302246,373,1.0,2 +43373,8,0.0,2,1.5467890501022339,374,0.0,2 +43374,8,1.0,2,1.932784080505371,375,1.0,2 +43375,8,1.0,2,1.5757887363433838,376,0.0,2 +43376,8,0.0,2,1.932784080505371,377,0.0,2 +43377,8,0.0,2,1.2367918491363525,378,0.0,2 +43378,8,0.0,2,1.1777918338775635,379,1.0,2 +43379,8,0.0,2,1.4117908477783203,380,0.0,2 +43380,8,0.0,2,1.5357892513275146,381,0.0,2 +43381,8,1.0,2,1.4007909297943115,382,1.0,2 +43382,8,0.0,2,1.3977910280227661,383,0.0,2 +43383,8,1.0,2,1.6047883033752441,384,0.0,2 +43384,8,0.0,2,1.5027896165847778,385,1.0,2 +43385,8,0.0,2,1.3467916250228882,386,1.0,2 +43386,8,0.0,2,1.5767886638641357,387,0.0,2 +43387,8,0.0,2,1.8307855129241943,388,1.0,2 +43388,8,1.0,2,1.6247880458831787,389,0.0,2 +43389,8,0.0,2,1.2167918682098389,390,0.0,2 +43390,8,0.0,2,1.3027920722961426,391,1.0,2 +43391,8,0.0,2,1.2797919511795044,392,0.0,2 +43392,8,0.0,2,1.3517916202545166,393,0.0,2 +43393,8,1.0,2,1.4597902297973633,394,0.0,2 +43394,8,0.0,2,1.332791805267334,395,0.0,2 +43395,8,1.0,2,1.6057883501052856,396,0.0,2 +43396,8,0.0,2,1.4417904615402222,397,1.0,2 +43397,8,0.0,2,1.5147894620895386,398,0.0,2 +43398,8,0.0,2,1.1787917613983154,399,0.0,2 +43399,8,1.0,2,1.6027884483337402,400,1.0,2 +43400,8,1.0,2,1.3447916507720947,401,0.0,2 +43401,8,1.0,2,1.3387917280197144,402,1.0,2 +43402,8,1.0,2,1.3277919292449951,403,0.0,2 +43403,8,1.0,2,1.2897920608520508,404,0.0,2 +43404,8,1.0,2,1.7577863931655884,405,1.0,2 +43405,8,1.0,2,1.7407865524291992,406,1.0,2 +43406,8,1.0,2,1.310792088508606,407,1.0,2 +43407,8,0.0,2,1.4997897148132324,408,1.0,2 +43408,8,0.0,2,1.2297918796539307,409,1.0,2 +43409,8,0.0,2,1.4447903633117676,410,1.0,2 +43410,8,1.0,2,1.4417904615402222,411,0.0,2 +43411,8,0.0,2,1.2767919301986694,412,0.0,2 +43412,8,1.0,2,1.2927919626235962,413,1.0,2 +43413,8,1.0,2,2.0907835960388184,414,1.0,2 +43414,8,1.0,2,1.4967896938323975,415,1.0,2 +43415,8,1.0,2,1.3707913160324097,416,1.0,2 +43416,8,1.0,2,2.1367857456207275,417,0.0,2 +43417,8,1.0,2,1.357791543006897,418,1.0,2 +43418,8,1.0,2,1.9547839164733887,419,0.0,2 +43419,8,0.0,2,1.3687913417816162,420,0.0,2 +43420,8,0.0,2,1.983783483505249,421,1.0,2 +43421,8,0.0,2,1.7387866973876953,422,1.0,2 +43422,8,0.0,2,1.304792046546936,423,0.0,2 +43423,8,0.0,2,1.2947920560836792,424,1.0,2 +43424,8,0.0,2,1.633787989616394,425,0.0,2 +43425,8,1.0,2,1.3427916765213013,426,0.0,2 +43426,8,0.0,2,1.5567889213562012,427,1.0,2 +43427,8,0.0,2,1.6357879638671875,428,0.0,2 +43428,8,0.0,2,1.4197907447814941,429,1.0,2 +43429,8,0.0,2,1.6617876291275024,430,1.0,2 +43430,8,0.0,2,1.2177917957305908,431,0.0,2 +43431,8,0.0,2,1.2167918682098389,432,0.0,2 +43432,8,1.0,2,2.0507826805114746,433,0.0,2 +43433,8,0.0,2,1.5057896375656128,434,1.0,2 +43434,8,0.0,2,1.51578950881958,435,1.0,2 +43435,8,0.0,2,1.5987884998321533,436,0.0,2 +43436,8,1.0,2,1.5737887620925903,437,0.0,2 +43437,8,0.0,2,1.8197855949401855,438,0.0,2 +43438,8,1.0,2,1.9707837104797363,439,1.0,2 +43439,8,1.0,2,1.6697875261306763,440,0.0,2 +43440,8,1.0,2,1.4827898740768433,441,1.0,2 +43441,8,1.0,2,2.1487863063812256,442,0.0,2 +43442,8,0.0,2,1.7707862854003906,443,1.0,2 +43443,8,1.0,2,1.6057883501052856,444,0.0,2 +43444,8,0.0,2,1.7587864398956299,445,1.0,2 +43445,8,0.0,2,1.332791805267334,446,1.0,2 +43446,8,0.0,2,1.3247919082641602,447,0.0,2 +43447,8,1.0,2,1.7727861404418945,448,0.0,2 +43448,8,0.0,2,1.6917872428894043,449,1.0,2 +43449,8,0.0,2,1.5987884998321533,450,0.0,2 +43450,8,0.0,2,1.4597902297973633,451,0.0,2 +43451,8,0.0,2,1.618788242340088,452,1.0,2 +43452,8,1.0,2,2.1157846450805664,453,1.0,2 +43453,8,0.0,2,1.4477903842926025,454,0.0,2 +43454,8,1.0,2,2.0117831230163574,455,1.0,2 +43455,8,1.0,2,1.9587838649749756,456,0.0,2 +43456,8,0.0,2,1.8737848997116089,457,0.0,2 +43457,8,0.0,2,1.2947920560836792,458,0.0,2 +43458,8,0.0,2,1.7577863931655884,459,1.0,2 +43459,8,0.0,2,1.146791696548462,460,1.0,2 +43460,8,0.0,2,1.4707900285720825,461,1.0,2 +43461,8,0.0,2,1.423790693283081,462,1.0,2 +43462,8,1.0,2,1.5447890758514404,463,0.0,2 +43463,8,0.0,2,1.5277893543243408,464,0.0,2 +43464,8,0.0,2,1.803785800933838,465,0.0,2 +43465,8,0.0,2,1.6447877883911133,466,0.0,2 +43466,8,0.0,2,1.3457916975021362,467,0.0,2 +43467,8,1.0,2,1.75278639793396,468,1.0,2 +43468,8,1.0,2,1.4997897148132324,469,1.0,2 +43469,8,1.0,2,2.0177831649780273,470,1.0,2 +43470,8,1.0,2,1.3397917747497559,471,1.0,2 +43471,8,1.0,2,1.2667919397354126,472,1.0,2 +43472,8,1.0,2,1.5267893075942993,473,0.0,2 +43473,8,1.0,2,1.5757887363433838,474,1.0,2 +43474,8,0.0,2,1.3007919788360596,475,1.0,2 +43475,8,0.0,2,2.1447861194610596,476,0.0,2 +43476,8,1.0,2,1.468790054321289,477,0.0,2 +43477,8,0.0,2,1.5807886123657227,478,1.0,2 +43478,8,0.0,2,1.8987846374511719,479,0.0,2 +43479,8,0.0,2,1.240791916847229,480,1.0,2 +43480,8,0.0,2,1.3157920837402344,481,1.0,2 +43481,8,0.0,2,1.210791826248169,482,1.0,2 +43482,8,0.0,2,1.7317867279052734,483,1.0,2 +43483,8,0.0,2,1.2927919626235962,484,0.0,2 +43484,8,0.0,2,1.7267868518829346,485,0.0,2 +43485,8,0.0,2,1.2797919511795044,486,0.0,2 +43486,8,1.0,2,1.4867898225784302,487,0.0,2 +43487,8,0.0,2,1.6237881183624268,488,0.0,2 +43488,8,0.0,2,1.2827919721603394,489,0.0,2 +43489,8,0.0,2,1.9377840757369995,490,0.0,2 +43490,8,1.0,2,1.7287867069244385,491,0.0,2 +43491,8,1.0,2,1.566788911819458,492,0.0,2 +43492,8,0.0,2,2.307793617248535,493,0.0,2 +43493,8,0.0,2,2.287792682647705,494,0.0,2 +43494,8,1.0,2,2.0717825889587402,495,1.0,2 +43495,8,1.0,2,1.750786542892456,496,1.0,2 +43496,8,1.0,2,1.733786702156067,497,1.0,2 +43497,8,1.0,2,1.2537919282913208,498,1.0,2 +43498,8,1.0,2,1.6237881183624268,499,0.0,2 +43499,8,0.0,2,1.173791766166687,500,1.0,2 +43500,9,1.0,0,1.6993252038955688,1,1.0,2 +43501,9,1.0,0,1.7883241176605225,2,1.0,2 +43502,9,0.0,0,1.9403221607208252,3,0.0,2 +43503,9,1.0,0,1.8143236637115479,4,1.0,2 +43504,9,1.0,0,1.3753293752670288,5,1.0,2 +43505,9,1.0,0,1.3563295602798462,6,1.0,2 +43506,9,1.0,0,1.2073304653167725,7,0.0,2 +43507,9,0.0,0,1.5103275775909424,8,1.0,2 +43508,9,0.0,0,1.245330572128296,9,0.0,2 +43509,9,1.0,0,1.4043289422988892,10,0.0,2 +43510,9,1.0,0,1.5143275260925293,11,0.0,2 +43511,9,0.0,0,1.264330506324768,12,0.0,2 +43512,9,1.0,0,2.476341724395752,13,0.0,2 +43513,9,0.0,0,1.529327392578125,14,0.0,2 +43514,9,1.0,0,2.0253210067749023,15,1.0,2 +43515,9,1.0,0,1.460328221321106,16,1.0,2 +43516,9,1.0,0,1.2083303928375244,17,1.0,2 +43517,9,1.0,0,1.3953291177749634,18,1.0,2 +43518,9,1.0,0,1.1933304071426392,19,1.0,2 +43519,9,1.0,0,1.2793306112289429,20,1.0,2 +43520,9,1.0,0,1.7263247966766357,21,1.0,2 +43521,9,1.0,0,1.500327706336975,22,1.0,2 +43522,9,1.0,0,1.3093302249908447,23,1.0,2 +43523,9,1.0,0,1.900322675704956,24,1.0,2 +43524,9,1.0,0,1.290330410003662,25,1.0,2 +43525,9,1.0,0,1.1673303842544556,26,1.0,2 +43526,9,1.0,0,1.504327654838562,27,1.0,2 +43527,9,1.0,0,1.4643281698226929,28,1.0,2 +43528,9,1.0,0,1.3223299980163574,29,1.0,2 +43529,9,1.0,0,1.4473284482955933,30,1.0,2 +43530,9,1.0,0,1.1503303050994873,31,1.0,2 +43531,9,1.0,0,1.202330470085144,32,1.0,2 +43532,9,1.0,0,1.4803279638290405,33,1.0,2 +43533,9,1.0,0,1.7313247919082642,34,1.0,2 +43534,9,1.0,0,1.9083225727081299,35,1.0,2 +43535,9,1.0,0,1.603326439857483,36,1.0,2 +43536,9,1.0,0,1.3083301782608032,37,1.0,2 +43537,9,1.0,0,1.323330044746399,38,1.0,2 +43538,9,0.0,0,1.4013290405273438,39,0.0,2 +43539,9,1.0,0,1.7793241739273071,40,1.0,2 +43540,9,1.0,0,1.2883304357528687,41,1.0,2 +43541,9,1.0,0,1.2293305397033691,42,1.0,2 +43542,9,1.0,0,1.3393298387527466,43,1.0,2 +43543,9,1.0,0,1.551327109336853,44,1.0,2 +43544,9,1.0,0,1.2683305740356445,45,1.0,2 +43545,9,1.0,0,1.7263247966766357,46,0.0,2 +43546,9,0.0,0,1.8303234577178955,47,0.0,2 +43547,9,0.0,0,1.463328242301941,48,0.0,2 +43548,9,0.0,0,1.9643218517303467,49,1.0,2 +43549,9,0.0,0,2.1293256282806396,50,1.0,2 +43550,9,0.0,0,1.3093302249908447,51,0.0,2 +43551,9,0.0,0,1.8423233032226562,52,0.0,2 +43552,9,1.0,0,1.4613282680511475,53,1.0,2 +43553,9,1.0,0,1.4263286590576172,54,0.0,2 +43554,9,1.0,0,1.209330439567566,55,1.0,2 +43555,9,1.0,0,1.3063302040100098,56,1.0,2 +43556,9,1.0,0,1.2553305625915527,57,0.0,2 +43557,9,0.0,0,1.2603305578231812,58,0.0,2 +43558,9,0.0,0,1.4523283243179321,59,0.0,2 +43559,9,1.0,0,1.533327341079712,60,1.0,2 +43560,9,1.0,0,1.2323304414749146,61,1.0,2 +43561,9,1.0,0,1.2113304138183594,62,1.0,2 +43562,9,1.0,0,1.5173275470733643,63,1.0,2 +43563,9,1.0,0,1.5023276805877686,64,1.0,2 +43564,9,1.0,0,1.3993290662765503,65,1.0,2 +43565,9,1.0,0,1.34132981300354,66,1.0,2 +43566,9,1.0,0,1.2163304090499878,67,1.0,2 +43567,9,1.0,0,1.4003289937973022,68,1.0,2 +43568,9,1.0,0,1.1853303909301758,69,1.0,2 +43569,9,1.0,0,1.7713242769241333,70,1.0,2 +43570,9,1.0,0,1.3503296375274658,71,1.0,2 +43571,9,1.0,0,1.6823253631591797,72,1.0,2 +43572,9,1.0,0,1.508327603340149,73,1.0,2 +43573,9,1.0,0,1.3563295602798462,74,1.0,2 +43574,9,1.0,0,1.1813304424285889,75,1.0,2 +43575,9,1.0,0,1.478327989578247,76,1.0,2 +43576,9,1.0,0,1.1643303632736206,77,1.0,2 +43577,9,1.0,0,1.4173288345336914,78,1.0,2 +43578,9,1.0,0,1.1523302793502808,79,1.0,2 +43579,9,1.0,0,1.7083251476287842,80,1.0,2 +43580,9,1.0,0,1.2713305950164795,81,1.0,2 +43581,9,1.0,0,1.3973290920257568,82,0.0,2 +43582,9,1.0,0,2.174327850341797,83,1.0,2 +43583,9,1.0,0,1.3273299932479858,84,0.0,2 +43584,9,0.0,0,1.3573296070098877,85,0.0,2 +43585,9,1.0,0,2.273332357406616,86,1.0,2 +43586,9,1.0,0,1.3543295860290527,87,1.0,2 +43587,9,1.0,0,1.2883304357528687,88,1.0,2 +43588,9,1.0,0,1.2963303327560425,89,1.0,2 +43589,9,1.0,0,1.8383233547210693,90,1.0,2 +43590,9,1.0,0,1.3523296117782593,91,1.0,2 +43591,9,1.0,0,1.3403297662734985,92,0.0,2 +43592,9,0.0,0,1.273330569267273,93,0.0,2 +43593,9,0.0,0,1.5893266201019287,94,0.0,2 +43594,9,0.0,0,1.3543295860290527,95,0.0,2 +43595,9,0.0,0,1.7313247919082642,96,0.0,2 +43596,9,0.0,0,2.1553268432617188,97,0.0,2 +43597,9,1.0,0,1.5603270530700684,98,1.0,2 +43598,9,1.0,0,1.3053302764892578,99,0.0,2 +43599,9,0.0,0,1.2833305597305298,100,0.0,2 +43600,9,0.0,0,1.508327603340149,101,0.0,2 +43601,9,1.0,0,1.4973278045654297,102,1.0,2 +43602,9,1.0,0,1.2743306159973145,103,1.0,2 +43603,9,0.0,0,1.3033303022384644,104,0.0,2 +43604,9,1.0,0,1.1463303565979004,105,1.0,2 +43605,9,1.0,0,1.9803216457366943,106,1.0,2 +43606,9,1.0,0,1.4483283758163452,107,1.0,2 +43607,9,1.0,0,1.4203287363052368,108,0.0,2 +43608,9,0.0,0,1.6103262901306152,109,0.0,2 +43609,9,0.0,0,1.2553305625915527,110,0.0,2 +43610,9,0.0,0,1.5833266973495483,111,1.0,2 +43611,9,0.0,0,1.6633256673812866,112,0.0,2 +43612,9,0.0,0,1.7083251476287842,113,0.0,2 +43613,9,0.0,0,1.1883304119110107,114,0.0,2 +43614,9,0.0,0,1.1843303442001343,115,1.0,2 +43615,9,0.0,0,1.293330430984497,116,0.0,2 +43616,9,1.0,0,1.4843279123306274,117,1.0,2 +43617,9,1.0,0,1.345329761505127,118,0.0,2 +43618,9,0.0,0,1.3333299160003662,119,0.0,2 +43619,9,1.0,0,1.6163263320922852,120,1.0,2 +43620,9,1.0,0,1.408328890800476,121,1.0,2 +43621,9,1.0,0,1.367329478263855,122,1.0,2 +43622,9,1.0,0,1.2593305110931396,123,1.0,2 +43623,9,1.0,0,1.2053303718566895,124,1.0,2 +43624,9,1.0,0,1.3143301010131836,125,0.0,2 +43625,9,1.0,0,1.8813228607177734,126,1.0,2 +43626,9,1.0,0,2.2863330841064453,127,1.0,2 +43627,9,0.0,0,1.5123275518417358,128,0.0,2 +43628,9,1.0,0,1.5883266925811768,129,1.0,2 +43629,9,1.0,0,1.1593303680419922,130,1.0,2 +43630,9,1.0,0,1.1983304023742676,131,1.0,2 +43631,9,1.0,0,1.3743293285369873,132,1.0,2 +43632,9,1.0,0,2.0843234062194824,133,1.0,2 +43633,9,1.0,0,1.4833279848098755,134,1.0,2 +43634,9,1.0,0,1.4323285818099976,135,1.0,2 +43635,9,1.0,0,1.5023276805877686,136,1.0,2 +43636,9,1.0,0,1.5943264961242676,137,1.0,2 +43637,9,1.0,0,1.508327603340149,138,1.0,2 +43638,9,1.0,0,1.6623256206512451,139,1.0,2 +43639,9,1.0,0,1.463328242301941,140,1.0,2 +43640,9,1.0,0,1.4663281440734863,141,1.0,2 +43641,9,1.0,0,1.4173288345336914,142,1.0,2 +43642,9,1.0,0,1.3093302249908447,143,1.0,2 +43643,9,1.0,0,1.6383259296417236,144,1.0,2 +43644,9,1.0,0,1.3443297147750854,145,1.0,2 +43645,9,1.0,0,1.525327444076538,146,1.0,2 +43646,9,1.0,0,1.4673281908035278,147,0.0,2 +43647,9,1.0,0,1.9153224229812622,148,1.0,2 +43648,9,1.0,0,1.3573296070098877,149,1.0,2 +43649,9,1.0,0,1.175330400466919,150,1.0,2 +43650,9,1.0,0,1.4963277578353882,151,1.0,2 +43651,9,1.0,0,1.4223287105560303,152,1.0,2 +43652,9,1.0,0,1.4613282680511475,153,1.0,2 +43653,9,1.0,0,1.360329508781433,154,1.0,2 +43654,9,1.0,0,1.7423245906829834,155,1.0,2 +43655,9,1.0,0,1.4443284273147583,156,1.0,2 +43656,9,1.0,0,1.3303298950195312,157,1.0,2 +43657,9,1.0,0,1.2833305597305298,158,0.0,2 +43658,9,1.0,0,1.2653305530548096,159,1.0,2 +43659,9,1.0,0,1.316330075263977,160,1.0,2 +43660,9,1.0,0,1.3733294010162354,161,1.0,2 +43661,9,1.0,0,1.617326259613037,162,1.0,2 +43662,9,1.0,0,1.2223304510116577,163,1.0,2 +43663,9,1.0,0,1.3923290967941284,164,1.0,2 +43664,9,1.0,0,1.3503296375274658,165,1.0,2 +43665,9,1.0,0,1.2203304767608643,166,1.0,2 +43666,9,1.0,0,1.320330023765564,167,0.0,2 +43667,9,1.0,0,1.9893214702606201,168,1.0,2 +43668,9,1.0,0,1.3773293495178223,169,1.0,2 +43669,9,1.0,0,1.6883254051208496,170,0.0,2 +43670,9,0.0,0,2.3353352546691895,171,1.0,2 +43671,9,0.0,0,1.2143304347991943,172,0.0,2 +43672,9,0.0,0,1.2743306159973145,173,1.0,2 +43673,9,0.0,0,1.8013238906860352,174,0.0,2 +43674,9,1.0,0,1.2873305082321167,175,1.0,2 +43675,9,1.0,0,1.6593257188796997,176,0.0,2 +43676,9,1.0,0,1.9413220882415771,177,1.0,2 +43677,9,1.0,0,1.385329246520996,178,1.0,2 +43678,9,1.0,0,1.2053303718566895,179,1.0,2 +43679,9,1.0,0,1.3133301734924316,180,1.0,2 +43680,9,1.0,0,1.8683230876922607,181,1.0,2 +43681,9,1.0,0,1.3613295555114746,182,1.0,2 +43682,9,1.0,0,1.5153275728225708,183,1.0,2 +43683,9,1.0,0,1.529327392578125,184,1.0,2 +43684,9,1.0,0,1.3963290452957153,185,1.0,2 +43685,9,1.0,0,1.346329689025879,186,0.0,2 +43686,9,1.0,0,1.4313286542892456,187,1.0,2 +43687,9,0.0,0,1.2233304977416992,188,0.0,2 +43688,9,1.0,0,1.529327392578125,189,1.0,2 +43689,9,1.0,0,1.2243304252624512,190,1.0,2 +43690,9,1.0,0,1.4033290147781372,191,1.0,2 +43691,9,1.0,0,1.3513296842575073,192,1.0,2 +43692,9,1.0,0,1.6933252811431885,193,1.0,2 +43693,9,1.0,0,1.2383304834365845,194,1.0,2 +43694,9,1.0,0,1.1503303050994873,195,1.0,2 +43695,9,1.0,0,1.2443305253982544,196,1.0,2 +43696,9,1.0,0,1.4623281955718994,197,1.0,2 +43697,9,1.0,0,1.3373298645019531,198,1.0,2 +43698,9,1.0,0,1.5433272123336792,199,0.0,2 +43699,9,1.0,0,1.3983290195465088,200,1.0,2 +43700,9,1.0,0,1.3033303022384644,201,1.0,2 +43701,9,1.0,0,1.2853305339813232,202,1.0,2 +43702,9,1.0,0,1.242330551147461,203,1.0,2 +43703,9,1.0,0,1.2203304767608643,204,1.0,2 +43704,9,1.0,0,1.2743306159973145,205,0.0,2 +43705,9,0.0,0,1.6743254661560059,206,0.0,2 +43706,9,0.0,0,1.4583282470703125,207,0.0,2 +43707,9,1.0,0,1.5283273458480835,208,1.0,2 +43708,9,1.0,0,1.4173288345336914,209,1.0,2 +43709,9,1.0,0,1.570326805114746,210,1.0,2 +43710,9,1.0,0,1.1913304328918457,211,1.0,2 +43711,9,1.0,0,1.459328293800354,212,1.0,2 +43712,9,1.0,0,1.2553305625915527,213,0.0,2 +43713,9,0.0,0,2.1353259086608887,214,0.0,2 +43714,9,0.0,0,2.196328639984131,215,0.0,2 +43715,9,0.0,0,1.5973265171051025,216,0.0,2 +43716,9,0.0,0,1.3783292770385742,217,0.0,2 +43717,9,0.0,0,1.2043304443359375,218,0.0,2 +43718,9,1.0,0,2.0083212852478027,219,1.0,2 +43719,9,1.0,0,1.4993277788162231,220,1.0,2 +43720,9,1.0,0,1.4243286848068237,221,1.0,2 +43721,9,1.0,0,1.5983264446258545,222,1.0,2 +43722,9,1.0,0,1.4773280620574951,223,1.0,2 +43723,9,1.0,0,1.4213287830352783,224,1.0,2 +43724,9,1.0,0,1.669325590133667,225,1.0,2 +43725,9,1.0,0,1.206330418586731,226,0.0,2 +43726,9,0.0,0,1.5153275728225708,227,0.0,2 +43727,9,0.0,0,1.8283236026763916,228,0.0,2 +43728,9,0.0,0,2.1323256492614746,229,0.0,2 +43729,9,0.0,0,1.7843241691589355,230,0.0,2 +43730,9,0.0,0,1.760324478149414,231,0.0,2 +43731,9,1.0,0,1.482327938079834,232,0.0,2 +43732,9,0.0,0,2.0223209857940674,233,0.0,2 +43733,9,0.0,0,1.5393272638320923,234,0.0,2 +43734,9,1.0,0,2.0763230323791504,235,1.0,2 +43735,9,1.0,0,1.4233287572860718,236,1.0,2 +43736,9,1.0,0,1.1903303861618042,237,1.0,2 +43737,9,1.0,0,1.8733229637145996,238,1.0,2 +43738,9,1.0,0,1.1943304538726807,239,1.0,2 +43739,9,1.0,0,1.4953278303146362,240,1.0,2 +43740,9,1.0,0,1.6983251571655273,241,1.0,2 +43741,9,1.0,0,1.3093302249908447,242,1.0,2 +43742,9,1.0,0,1.4743280410766602,243,1.0,2 +43743,9,1.0,0,1.4643281698226929,244,1.0,2 +43744,9,1.0,0,1.3333299160003662,245,1.0,2 +43745,9,1.0,0,2.1013243198394775,246,0.0,2 +43746,9,0.0,0,1.3373298645019531,247,0.0,2 +43747,9,0.0,0,2.454340934753418,248,0.0,2 +43748,9,0.0,0,2.1383261680603027,249,0.0,2 +43749,9,0.0,0,1.7673243284225464,250,0.0,2 +43750,9,1.0,0,1.1953303813934326,251,1.0,2 +43751,9,1.0,0,1.504327654838562,252,1.0,2 +43752,9,1.0,0,1.7553244829177856,253,1.0,2 +43753,9,1.0,0,1.714324951171875,254,1.0,2 +43754,9,1.0,0,1.2223304510116577,255,0.0,2 +43755,9,1.0,0,1.3563295602798462,256,1.0,2 +43756,9,1.0,0,1.858323097229004,257,0.0,2 +43757,9,0.0,0,1.5503270626068115,258,0.0,2 +43758,9,1.0,0,1.4763280153274536,259,1.0,2 +43759,9,1.0,0,1.41632878780365,260,1.0,2 +43760,9,1.0,0,1.242330551147461,261,1.0,2 +43761,9,1.0,0,1.3433297872543335,262,1.0,2 +43762,9,1.0,0,1.55532705783844,263,0.0,2 +43763,9,1.0,0,1.4133288860321045,264,1.0,2 +43764,9,1.0,0,1.242330551147461,265,1.0,2 +43765,9,1.0,0,1.52632737159729,266,1.0,2 +43766,9,1.0,0,1.6543257236480713,267,0.0,2 +43767,9,1.0,0,1.831323504447937,268,1.0,2 +43768,9,1.0,0,1.1823303699493408,269,1.0,2 +43769,9,1.0,0,1.456328272819519,270,0.0,2 +43770,9,0.0,0,1.2683305740356445,271,0.0,2 +43771,9,0.0,0,2.1043243408203125,272,0.0,2 +43772,9,0.0,0,1.7243249416351318,273,0.0,2 +43773,9,0.0,0,1.2953304052352905,274,0.0,2 +43774,9,0.0,0,1.367329478263855,275,1.0,2 +43775,9,0.0,0,1.2523305416107178,276,0.0,2 +43776,9,0.0,0,1.5653269290924072,277,1.0,2 +43777,9,0.0,0,1.3303298950195312,278,0.0,2 +43778,9,1.0,0,1.390329122543335,279,1.0,2 +43779,9,1.0,0,1.298330307006836,280,1.0,2 +43780,9,1.0,0,1.4533283710479736,281,0.0,2 +43781,9,1.0,0,1.7093250751495361,282,1.0,2 +43782,9,1.0,0,1.342329740524292,283,1.0,2 +43783,9,1.0,0,1.6343259811401367,284,1.0,2 +43784,9,1.0,0,1.4403284788131714,285,1.0,2 +43785,9,1.0,0,1.5503270626068115,286,1.0,2 +43786,9,1.0,0,1.3433297872543335,287,0.0,2 +43787,9,0.0,0,1.3883291482925415,288,0.0,2 +43788,9,1.0,0,1.4583282470703125,289,1.0,2 +43789,9,1.0,0,1.5393272638320923,290,1.0,2 +43790,9,1.0,0,1.6543257236480713,291,0.0,2 +43791,9,0.0,0,1.8183236122131348,292,0.0,2 +43792,9,0.0,0,1.1543303728103638,293,0.0,2 +43793,9,1.0,0,1.7483246326446533,294,1.0,2 +43794,9,1.0,0,1.9133224487304688,295,0.0,2 +43795,9,1.0,0,1.7113250494003296,296,1.0,2 +43796,9,1.0,0,1.4003289937973022,297,1.0,2 +43797,9,1.0,0,1.4683281183242798,298,1.0,2 +43798,9,1.0,0,1.5623269081115723,299,1.0,2 +43799,9,1.0,0,1.3343298435211182,300,1.0,2 +43800,9,1.0,0,1.1863304376602173,301,0.0,2 +43801,9,0.0,0,1.437328577041626,302,0.0,2 +43802,9,0.0,0,1.5713268518447876,303,0.0,2 +43803,9,1.0,0,1.6083264350891113,304,1.0,2 +43804,9,1.0,0,1.8733229637145996,305,1.0,2 +43805,9,1.0,0,1.3293299674987793,306,1.0,2 +43806,9,1.0,0,1.8423233032226562,307,1.0,2 +43807,9,1.0,0,1.1923303604125977,308,1.0,2 +43808,9,1.0,0,1.1983304023742676,309,0.0,2 +43809,9,0.0,0,1.7413246631622314,310,1.0,2 +43810,9,0.0,0,1.1533303260803223,311,0.0,2 +43811,9,1.0,0,2.191328525543213,312,1.0,2 +43812,9,1.0,0,1.53232741355896,313,1.0,2 +43813,9,1.0,0,1.3823292255401611,314,1.0,2 +43814,9,1.0,0,1.408328890800476,315,1.0,2 +43815,9,1.0,0,1.239330530166626,316,1.0,2 +43816,9,1.0,0,1.4613282680511475,317,1.0,2 +43817,9,1.0,0,1.712325096130371,318,1.0,2 +43818,9,1.0,0,1.6393259763717651,319,1.0,2 +43819,9,1.0,0,1.5243273973464966,320,1.0,2 +43820,9,1.0,0,1.2253304719924927,321,1.0,2 +43821,9,1.0,0,1.5973265171051025,322,0.0,2 +43822,9,1.0,0,1.720324993133545,323,1.0,2 +43823,9,1.0,0,1.55532705783844,324,1.0,2 +43824,9,1.0,0,1.4803279638290405,325,1.0,2 +43825,9,0.0,0,1.2573305368423462,326,1.0,2 +43826,9,0.0,0,1.3563295602798462,327,0.0,2 +43827,9,1.0,0,1.760324478149414,328,0.0,2 +43828,9,1.0,0,1.5943264961242676,329,1.0,2 +43829,9,1.0,0,1.2633305788040161,330,1.0,2 +43830,9,1.0,0,1.6393259763717651,331,1.0,2 +43831,9,1.0,0,1.2483304738998413,332,1.0,2 +43832,9,1.0,0,1.175330400466919,333,1.0,2 +43833,9,1.0,0,1.2263305187225342,334,0.0,2 +43834,9,0.0,0,1.3283299207687378,335,0.0,2 +43835,9,1.0,0,1.3133301734924316,336,0.0,2 +43836,9,0.0,0,2.492342472076416,337,0.0,2 +43837,9,1.0,0,1.345329761505127,338,1.0,2 +43838,9,1.0,0,1.1973304748535156,339,1.0,2 +43839,9,1.0,0,1.482327938079834,340,0.0,2 +43840,9,0.0,0,1.4693281650543213,341,1.0,2 +43841,9,0.0,0,1.1803303956985474,342,0.0,2 +43842,9,1.0,0,1.6853253841400146,343,1.0,2 +43843,9,1.0,0,1.6123263835906982,344,1.0,2 +43844,9,0.0,0,1.2043304443359375,345,1.0,2 +43845,9,1.0,0,1.9663217067718506,346,1.0,2 +43846,9,1.0,0,1.857323169708252,347,1.0,2 +43847,9,1.0,0,2.0423216819763184,348,1.0,2 +43848,9,1.0,0,1.7503244876861572,349,1.0,2 +43849,9,1.0,0,1.2683305740356445,350,1.0,2 +43850,9,1.0,0,1.2383304834365845,351,1.0,2 +43851,9,0.0,0,1.434328556060791,352,1.0,2 +43852,9,1.0,0,1.2523305416107178,353,1.0,2 +43853,9,0.0,0,1.1893303394317627,354,0.0,2 +43854,9,1.0,0,1.3403297662734985,355,0.0,2 +43855,9,1.0,0,1.4093289375305176,356,1.0,2 +43856,9,1.0,0,1.8363234996795654,357,1.0,2 +43857,9,1.0,0,1.1853303909301758,358,1.0,2 +43858,9,1.0,0,1.4213287830352783,359,1.0,2 +43859,9,1.0,0,1.3723293542861938,360,1.0,2 +43860,9,1.0,0,1.6393259763717651,361,0.0,2 +43861,9,0.0,0,1.2513304948806763,362,1.0,2 +43862,9,0.0,0,1.169330358505249,363,0.0,2 +43863,9,1.0,0,1.7453246116638184,364,1.0,2 +43864,9,1.0,0,1.4883278608322144,365,1.0,2 +43865,9,1.0,0,1.9563219547271729,366,1.0,2 +43866,9,1.0,0,1.2963303327560425,367,1.0,2 +43867,9,1.0,0,1.2383304834365845,368,1.0,2 +43868,9,1.0,0,1.4283286333084106,369,1.0,2 +43869,9,1.0,0,1.2843304872512817,370,1.0,2 +43870,9,1.0,0,1.2293305397033691,371,1.0,2 +43871,9,0.0,0,1.4073289632797241,372,0.0,2 +43872,9,1.0,0,1.4843279123306274,373,1.0,2 +43873,9,1.0,0,1.7663242816925049,374,1.0,2 +43874,9,1.0,0,1.7893240451812744,375,1.0,2 +43875,9,1.0,0,1.6563258171081543,376,0.0,2 +43876,9,0.0,0,1.7493245601654053,377,0.0,2 +43877,9,0.0,0,1.3943290710449219,378,0.0,2 +43878,9,1.0,0,1.273330569267273,379,1.0,2 +43879,9,1.0,0,1.2083303928375244,380,1.0,2 +43880,9,1.0,0,1.3743293285369873,381,1.0,2 +43881,9,1.0,0,1.2053303718566895,382,1.0,2 +43882,9,1.0,0,1.4463284015655518,383,1.0,2 +43883,9,1.0,0,1.5063276290893555,384,1.0,2 +43884,9,1.0,0,1.2633305788040161,385,1.0,2 +43885,9,1.0,0,1.3323298692703247,386,1.0,2 +43886,9,1.0,0,1.5613269805908203,387,1.0,2 +43887,9,1.0,0,1.2473305463790894,388,0.0,2 +43888,9,0.0,0,1.2113304138183594,389,0.0,2 +43889,9,1.0,0,2.0223209857940674,390,1.0,2 +43890,9,1.0,0,1.455328345298767,391,1.0,2 +43891,9,1.0,0,1.293330430984497,392,1.0,2 +43892,9,1.0,0,1.50332772731781,393,0.0,2 +43893,9,1.0,0,1.8893227577209473,394,1.0,2 +43894,9,1.0,0,1.5313273668289185,395,1.0,2 +43895,9,0.0,0,1.2053303718566895,396,1.0,2 +43896,9,0.0,0,1.5883266925811768,397,0.0,2 +43897,9,1.0,0,1.52632737159729,398,0.0,2 +43898,9,1.0,0,1.6343259811401367,399,1.0,2 +43899,9,1.0,0,1.2633305788040161,400,0.0,2 +43900,9,1.0,0,1.6053264141082764,401,0.0,2 +43901,9,0.0,0,1.3293299674987793,402,0.0,2 +43902,9,1.0,0,1.8513232469558716,403,0.0,2 +43903,9,0.0,0,1.3243299722671509,404,0.0,2 +43904,9,1.0,0,2.202329158782959,405,1.0,2 +43905,9,1.0,0,1.4253287315368652,406,1.0,2 +43906,9,1.0,0,1.3243299722671509,407,1.0,2 +43907,9,1.0,0,1.5023276805877686,408,1.0,2 +43908,9,1.0,0,1.371329426765442,409,1.0,2 +43909,9,1.0,0,1.6633256673812866,410,1.0,2 +43910,9,1.0,0,1.2513304948806763,411,1.0,2 +43911,9,1.0,0,1.713325023651123,412,1.0,2 +43912,9,1.0,0,1.6443259716033936,413,1.0,2 +43913,9,1.0,0,1.1873303651809692,414,1.0,2 +43914,9,1.0,0,1.3133301734924316,415,0.0,2 +43915,9,0.0,0,1.743324637413025,416,0.0,2 +43916,9,1.0,0,1.5843267440795898,417,1.0,2 +43917,9,1.0,0,1.4233287572860718,418,1.0,2 +43918,9,1.0,0,1.478327989578247,419,1.0,2 +43919,9,1.0,0,1.2443305253982544,420,1.0,2 +43920,9,1.0,0,1.6233261823654175,421,1.0,2 +43921,9,1.0,0,1.7663242816925049,422,1.0,2 +43922,9,1.0,0,1.2803305387496948,423,1.0,2 +43923,9,1.0,0,1.3303298950195312,424,1.0,2 +43924,9,1.0,0,1.580326795578003,425,0.0,2 +43925,9,1.0,0,1.9653217792510986,426,0.0,2 +43926,9,1.0,0,1.8183236122131348,427,0.0,2 +43927,9,0.0,0,1.4183287620544434,428,0.0,2 +43928,9,1.0,0,1.4073289632797241,429,1.0,2 +43929,9,1.0,0,1.7853240966796875,430,1.0,2 +43930,9,1.0,0,1.4173288345336914,431,1.0,2 +43931,9,1.0,0,1.1853303909301758,432,1.0,2 +43932,9,1.0,0,1.3433297872543335,433,1.0,2 +43933,9,1.0,0,1.525327444076538,434,0.0,2 +43934,9,1.0,0,2.176327705383301,435,1.0,2 +43935,9,1.0,0,1.5123275518417358,436,1.0,2 +43936,9,1.0,0,1.3743293285369873,437,1.0,2 +43937,9,1.0,0,1.478327989578247,438,1.0,2 +43938,9,1.0,0,1.4743280410766602,439,1.0,2 +43939,9,1.0,0,1.2143304347991943,440,1.0,2 +43940,9,1.0,0,1.4233287572860718,441,1.0,2 +43941,9,1.0,0,1.4173288345336914,442,1.0,2 +43942,9,1.0,0,1.2573305368423462,443,1.0,2 +43943,9,1.0,0,1.2483304738998413,444,1.0,2 +43944,9,1.0,0,1.41632878780365,445,0.0,2 +43945,9,1.0,0,1.486327886581421,446,1.0,2 +43946,9,1.0,0,1.2543305158615112,447,1.0,2 +43947,9,1.0,0,1.346329689025879,448,1.0,2 +43948,9,1.0,0,1.4283286333084106,449,1.0,2 +43949,9,1.0,0,1.7423245906829834,450,1.0,2 +43950,9,1.0,0,1.7303247451782227,451,1.0,2 +43951,9,1.0,0,1.5433272123336792,452,1.0,2 +43952,9,1.0,0,1.6123263835906982,453,1.0,2 +43953,9,1.0,0,1.3083301782608032,454,1.0,2 +43954,9,1.0,0,1.5113276243209839,455,0.0,2 +43955,9,0.0,0,1.8473232984542847,456,0.0,2 +43956,9,1.0,0,1.5753268003463745,457,1.0,2 +43957,9,1.0,0,1.4213287830352783,458,0.0,2 +43958,9,1.0,0,1.4833279848098755,459,0.0,2 +43959,9,0.0,0,1.3333299160003662,460,0.0,2 +43960,9,0.0,0,1.6463258266448975,461,1.0,2 +43961,9,0.0,0,1.2243304252624512,462,0.0,2 +43962,9,0.0,0,1.7823240756988525,463,0.0,2 +43963,9,0.0,0,1.6543257236480713,464,0.0,2 +43964,9,1.0,0,1.433328628540039,465,1.0,2 +43965,9,1.0,0,1.7483246326446533,466,1.0,2 +43966,9,1.0,0,1.5913265943527222,467,1.0,2 +43967,9,1.0,0,1.4173288345336914,468,1.0,2 +43968,9,1.0,0,1.5583269596099854,469,1.0,2 +43969,9,1.0,0,2.3493359088897705,470,1.0,2 +43970,9,1.0,0,1.4033290147781372,471,1.0,2 +43971,9,1.0,0,1.3273299932479858,472,0.0,2 +43972,9,1.0,0,1.5173275470733643,473,1.0,2 +43973,9,1.0,0,1.8943226337432861,474,0.0,2 +43974,9,1.0,0,1.6833254098892212,475,1.0,2 +43975,9,1.0,0,1.338329792022705,476,1.0,2 +43976,9,1.0,0,1.2083303928375244,477,1.0,2 +43977,9,1.0,0,1.1683303117752075,478,1.0,2 +43978,9,1.0,0,1.3573296070098877,479,0.0,2 +43979,9,0.0,0,1.4693281650543213,480,0.0,2 +43980,9,1.0,0,2.2743325233459473,481,1.0,2 +43981,9,1.0,0,1.5403273105621338,482,0.0,2 +43982,9,1.0,0,1.9543218612670898,483,1.0,2 +43983,9,1.0,0,1.2783305644989014,484,1.0,2 +43984,9,0.0,0,1.2603305578231812,485,0.0,2 +43985,9,1.0,0,1.360329508781433,486,1.0,2 +43986,9,1.0,0,1.209330439567566,487,1.0,2 +43987,9,1.0,0,1.4583282470703125,488,0.0,2 +43988,9,1.0,0,1.7223248481750488,489,0.0,2 +43989,9,0.0,0,2.1143250465393066,490,0.0,2 +43990,9,0.0,0,1.4443284273147583,491,0.0,2 +43991,9,0.0,0,1.3653295040130615,492,1.0,2 +43992,9,0.0,0,1.3523296117782593,493,1.0,2 +43993,9,0.0,0,1.3433297872543335,494,0.0,2 +43994,9,0.0,0,1.6463258266448975,495,0.0,2 +43995,9,1.0,0,2.6083478927612305,496,1.0,2 +43996,9,1.0,0,1.2613306045532227,497,1.0,2 +43997,9,1.0,0,1.3943290710449219,498,1.0,2 +43998,9,1.0,0,1.389329195022583,499,1.0,2 +43999,9,1.0,0,1.3253300189971924,500,0.0,2 +44000,9,0.0,1,1.8183236122131348,1,0.0,2 +44001,9,0.0,1,1.3223299980163574,2,0.0,2 +44002,9,1.0,1,1.8673230409622192,3,0.0,2 +44003,9,0.0,1,1.2503305673599243,4,1.0,2 +44004,9,0.0,1,1.3133301734924316,5,0.0,2 +44005,9,0.0,1,1.530327320098877,6,1.0,2 +44006,9,0.0,1,1.200330376625061,7,0.0,2 +44007,9,1.0,1,1.3993290662765503,8,1.0,2 +44008,9,1.0,1,1.945322036743164,9,1.0,2 +44009,9,1.0,1,1.390329122543335,10,1.0,2 +44010,9,1.0,1,1.7493245601654053,11,1.0,2 +44011,9,1.0,1,1.5163275003433228,12,1.0,2 +44012,9,1.0,1,1.486327886581421,13,0.0,2 +44013,9,1.0,1,1.2193304300308228,14,1.0,2 +44014,9,1.0,1,1.6233261823654175,15,0.0,2 +44015,9,0.0,1,1.437328577041626,16,1.0,2 +44016,9,0.0,1,1.7953239679336548,17,0.0,2 +44017,9,0.0,1,1.3103301525115967,18,0.0,2 +44018,9,0.0,1,1.172330379486084,19,0.0,2 +44019,9,0.0,1,2.3073339462280273,20,0.0,2 +44020,9,0.0,1,1.2803305387496948,21,0.0,2 +44021,9,0.0,1,1.3433297872543335,22,0.0,2 +44022,9,0.0,1,1.4193288087844849,23,0.0,2 +44023,9,0.0,1,2.0033211708068848,24,0.0,2 +44024,9,0.0,1,2.3243346214294434,25,0.0,2 +44025,9,0.0,1,1.266330599784851,26,1.0,2 +44026,9,0.0,1,1.6303260326385498,27,0.0,2 +44027,9,0.0,1,1.9163224697113037,28,0.0,2 +44028,9,1.0,1,1.8433233499526978,29,1.0,2 +44029,9,1.0,1,1.408328890800476,30,1.0,2 +44030,9,1.0,1,1.6153262853622437,31,1.0,2 +44031,9,1.0,1,1.3793293237686157,32,0.0,2 +44032,9,1.0,1,1.8693230152130127,33,0.0,2 +44033,9,0.0,1,1.760324478149414,34,0.0,2 +44034,9,1.0,1,1.858323097229004,35,1.0,2 +44035,9,1.0,1,1.6233261823654175,36,1.0,2 +44036,9,1.0,1,1.3403297662734985,37,1.0,2 +44037,9,1.0,1,1.6523258686065674,38,1.0,2 +44038,9,1.0,1,1.5483272075653076,39,1.0,2 +44039,9,1.0,1,1.4733281135559082,40,0.0,2 +44040,9,1.0,1,1.1573302745819092,41,1.0,2 +44041,9,1.0,1,1.3393298387527466,42,0.0,2 +44042,9,0.0,1,1.6313260793685913,43,1.0,2 +44043,9,0.0,1,1.368329405784607,44,1.0,2 +44044,9,0.0,1,1.6583256721496582,45,0.0,2 +44045,9,0.0,1,1.5433272123336792,46,0.0,2 +44046,9,1.0,1,1.7043251991271973,47,1.0,2 +44047,9,1.0,1,1.4883278608322144,48,1.0,2 +44048,9,1.0,1,1.3173301219940186,49,1.0,2 +44049,9,1.0,1,1.4243286848068237,50,1.0,2 +44050,9,1.0,1,1.4313286542892456,51,1.0,2 +44051,9,1.0,1,1.4173288345336914,52,1.0,2 +44052,9,1.0,1,1.3363298177719116,53,0.0,2 +44053,9,0.0,1,1.2173304557800293,54,1.0,2 +44054,9,0.0,1,1.5933265686035156,55,0.0,2 +44055,9,1.0,1,1.1973304748535156,56,1.0,2 +44056,9,1.0,1,1.6123263835906982,57,0.0,2 +44057,9,1.0,1,1.166330337524414,58,1.0,2 +44058,9,1.0,1,1.4023289680480957,59,1.0,2 +44059,9,1.0,1,1.319330096244812,60,1.0,2 +44060,9,1.0,1,1.3243299722671509,61,0.0,2 +44061,9,0.0,1,1.5383272171020508,62,0.0,2 +44062,9,0.0,1,1.672325611114502,63,1.0,2 +44063,9,0.0,1,1.2813305854797363,64,0.0,2 +44064,9,1.0,1,1.998321294784546,65,0.0,2 +44065,9,1.0,1,1.4493284225463867,66,0.0,2 +44066,9,0.0,1,1.7383246421813965,67,0.0,2 +44067,9,0.0,1,1.5163275003433228,68,0.0,2 +44068,9,0.0,1,2.1533267498016357,69,0.0,2 +44069,9,0.0,1,1.6823253631591797,70,1.0,2 +44070,9,0.0,1,1.4903278350830078,71,0.0,2 +44071,9,1.0,1,1.3993290662765503,72,0.0,2 +44072,9,0.0,1,1.7343246936798096,73,0.0,2 +44073,9,1.0,1,1.8663229942321777,74,1.0,2 +44074,9,0.0,1,1.1683303117752075,75,0.0,2 +44075,9,1.0,1,1.411328911781311,76,1.0,2 +44076,9,1.0,1,1.5713268518447876,77,1.0,2 +44077,9,1.0,1,1.3743293285369873,78,1.0,2 +44078,9,1.0,1,1.430328607559204,79,0.0,2 +44079,9,0.0,1,1.9653217792510986,80,1.0,2 +44080,9,0.0,1,1.1043301820755005,81,0.0,2 +44081,9,1.0,1,1.7363247871398926,82,1.0,2 +44082,9,1.0,1,2.0663228034973145,83,1.0,2 +44083,9,1.0,1,1.3523296117782593,84,0.0,2 +44084,9,0.0,1,1.3333299160003662,85,0.0,2 +44085,9,0.0,1,2.001321315765381,86,1.0,2 +44086,9,0.0,1,1.408328890800476,87,0.0,2 +44087,9,0.0,1,1.9073225259780884,88,1.0,2 +44088,9,0.0,1,1.577326774597168,89,1.0,2 +44089,9,0.0,1,1.1483303308486938,90,0.0,2 +44090,9,1.0,1,2.0563220977783203,91,1.0,2 +44091,9,1.0,1,1.6903252601623535,92,0.0,2 +44092,9,0.0,1,1.4703280925750732,93,0.0,2 +44093,9,0.0,1,1.2923303842544556,94,1.0,2 +44094,9,0.0,1,1.3303298950195312,95,1.0,2 +44095,9,0.0,1,1.8113237619400024,96,0.0,2 +44096,9,1.0,1,1.6083264350891113,97,0.0,2 +44097,9,0.0,1,1.7003252506256104,98,0.0,2 +44098,9,1.0,1,1.5843267440795898,99,1.0,2 +44099,9,1.0,1,1.237330436706543,100,1.0,2 +44100,9,1.0,1,1.5153275728225708,101,1.0,2 +44101,9,1.0,1,1.9573218822479248,102,1.0,2 +44102,9,1.0,1,1.3113301992416382,103,1.0,2 +44103,9,1.0,1,1.4493284225463867,104,0.0,2 +44104,9,0.0,1,1.2323304414749146,105,0.0,2 +44105,9,0.0,1,2.158327102661133,106,1.0,2 +44106,9,0.0,1,1.1493303775787354,107,1.0,2 +44107,9,0.0,1,1.173330307006836,108,1.0,2 +44108,9,0.0,1,1.1983304023742676,109,0.0,2 +44109,9,1.0,1,1.4363285303115845,110,1.0,2 +44110,9,1.0,1,1.1513303518295288,111,1.0,2 +44111,9,1.0,1,1.5883266925811768,112,1.0,2 +44112,9,1.0,1,1.209330439567566,113,1.0,2 +44113,9,1.0,1,1.3843291997909546,114,1.0,2 +44114,9,1.0,1,1.2273304462432861,115,1.0,2 +44115,9,1.0,1,1.3073302507400513,116,0.0,2 +44116,9,1.0,1,1.7453246116638184,117,1.0,2 +44117,9,1.0,1,1.1773303747177124,118,0.0,2 +44118,9,1.0,1,2.1283254623413086,119,0.0,2 +44119,9,1.0,1,1.5153275728225708,120,1.0,2 +44120,9,1.0,1,1.2273304462432861,121,1.0,2 +44121,9,1.0,1,1.2573305368423462,122,1.0,2 +44122,9,1.0,1,1.6933252811431885,123,1.0,2 +44123,9,1.0,1,1.5133275985717773,124,0.0,2 +44124,9,1.0,1,1.363329529762268,125,1.0,2 +44125,9,0.0,1,1.1553303003311157,126,0.0,2 +44126,9,1.0,1,1.500327706336975,127,1.0,2 +44127,9,1.0,1,1.714324951171875,128,1.0,2 +44128,9,0.0,1,1.36432945728302,129,0.0,2 +44129,9,1.0,1,1.3343298435211182,130,1.0,2 +44130,9,1.0,1,1.4613282680511475,131,1.0,2 +44131,9,1.0,1,1.2283304929733276,132,0.0,2 +44132,9,0.0,1,1.345329761505127,133,0.0,2 +44133,9,1.0,1,1.9303221702575684,134,1.0,2 +44134,9,1.0,1,1.6093263626098633,135,1.0,2 +44135,9,0.0,1,1.4453284740447998,136,0.0,2 +44136,9,1.0,1,1.4673281908035278,137,1.0,2 +44137,9,1.0,1,1.4483283758163452,138,0.0,2 +44138,9,0.0,1,1.390329122543335,139,1.0,2 +44139,9,0.0,1,1.9843215942382812,140,0.0,2 +44140,9,0.0,1,1.4923278093338013,141,0.0,2 +44141,9,0.0,1,1.360329508781433,142,0.0,2 +44142,9,0.0,1,2.0313210487365723,143,1.0,2 +44143,9,0.0,1,1.2103304862976074,144,1.0,2 +44144,9,0.0,1,1.2543305158615112,145,0.0,2 +44145,9,0.0,1,1.6093263626098633,146,0.0,2 +44146,9,1.0,1,1.4653282165527344,147,1.0,2 +44147,9,1.0,1,1.455328345298767,148,1.0,2 +44148,9,1.0,1,1.5093276500701904,149,0.0,2 +44149,9,0.0,1,1.2873305082321167,150,0.0,2 +44150,9,1.0,1,1.666325569152832,151,1.0,2 +44151,9,1.0,1,1.3173301219940186,152,1.0,2 +44152,9,1.0,1,1.294330358505249,153,1.0,2 +44153,9,1.0,1,1.1703304052352905,154,0.0,2 +44154,9,0.0,1,2.197328805923462,155,0.0,2 +44155,9,1.0,1,2.4283394813537598,156,1.0,2 +44156,9,1.0,1,1.172330379486084,157,1.0,2 +44157,9,1.0,1,1.320330023765564,158,1.0,2 +44158,9,1.0,1,1.3223299980163574,159,1.0,2 +44159,9,1.0,1,1.2883304357528687,160,0.0,2 +44160,9,1.0,1,1.8033238649368286,161,0.0,2 +44161,9,1.0,1,1.4903278350830078,162,1.0,2 +44162,9,1.0,1,1.2083303928375244,163,0.0,2 +44163,9,0.0,1,1.5373272895812988,164,1.0,2 +44164,9,0.0,1,1.169330358505249,165,1.0,2 +44165,9,0.0,1,1.3173301219940186,166,1.0,2 +44166,9,0.0,1,1.3843291997909546,167,0.0,2 +44167,9,0.0,1,1.9853215217590332,168,0.0,2 +44168,9,1.0,1,1.209330439567566,169,0.0,2 +44169,9,1.0,1,1.7253248691558838,170,1.0,2 +44170,9,1.0,1,1.7963240146636963,171,1.0,2 +44171,9,1.0,1,1.1643303632736206,172,0.0,2 +44172,9,1.0,1,1.6933252811431885,173,1.0,2 +44173,9,1.0,1,1.2843304872512817,174,1.0,2 +44174,9,1.0,1,1.2753305435180664,175,1.0,2 +44175,9,1.0,1,1.485327959060669,176,0.0,2 +44176,9,1.0,1,1.7313247919082642,177,1.0,2 +44177,9,1.0,1,1.243330478668213,178,1.0,2 +44178,9,1.0,1,1.389329195022583,179,1.0,2 +44179,9,1.0,1,1.3023302555084229,180,0.0,2 +44180,9,0.0,1,1.5753268003463745,181,0.0,2 +44181,9,1.0,1,1.55532705783844,182,1.0,2 +44182,9,1.0,1,1.3983290195465088,183,1.0,2 +44183,9,1.0,1,1.4323285818099976,184,1.0,2 +44184,9,1.0,1,1.2073304653167725,185,1.0,2 +44185,9,1.0,1,1.3313299417495728,186,1.0,2 +44186,9,1.0,1,1.5353273153305054,187,1.0,2 +44187,9,1.0,1,1.3113301992416382,188,0.0,2 +44188,9,0.0,1,1.9183223247528076,189,1.0,2 +44189,9,0.0,1,1.5193275213241577,190,0.0,2 +44190,9,1.0,1,1.3983290195465088,191,1.0,2 +44191,9,0.0,1,1.6993252038955688,192,0.0,2 +44192,9,1.0,1,1.6113263368606567,193,1.0,2 +44193,9,1.0,1,1.2253304719924927,194,0.0,2 +44194,9,1.0,1,1.574326753616333,195,1.0,2 +44195,9,1.0,1,1.132330298423767,196,1.0,2 +44196,9,1.0,1,1.3593295812606812,197,1.0,2 +44197,9,1.0,1,1.3023302555084229,198,1.0,2 +44198,9,1.0,1,1.2113304138183594,199,1.0,2 +44199,9,1.0,1,1.2473305463790894,200,0.0,2 +44200,9,1.0,1,1.3593295812606812,201,1.0,2 +44201,9,1.0,1,1.762324333190918,202,0.0,2 +44202,9,1.0,1,1.4183287620544434,203,1.0,2 +44203,9,1.0,1,1.5123275518417358,204,1.0,2 +44204,9,1.0,1,1.41632878780365,205,1.0,2 +44205,9,1.0,1,1.3353298902511597,206,1.0,2 +44206,9,1.0,1,1.4263286590576172,207,1.0,2 +44207,9,1.0,1,1.434328556060791,208,1.0,2 +44208,9,1.0,1,1.4023289680480957,209,1.0,2 +44209,9,1.0,1,1.2753305435180664,210,0.0,2 +44210,9,1.0,1,1.5823266506195068,211,1.0,2 +44211,9,1.0,1,1.2833305597305298,212,0.0,2 +44212,9,0.0,1,1.712325096130371,213,0.0,2 +44213,9,0.0,1,1.2623305320739746,214,0.0,2 +44214,9,1.0,1,1.6943252086639404,215,0.0,2 +44215,9,1.0,1,2.032320976257324,216,1.0,2 +44216,9,1.0,1,1.3213300704956055,217,0.0,2 +44217,9,1.0,1,1.718324899673462,218,1.0,2 +44218,9,1.0,1,1.7063250541687012,219,1.0,2 +44219,9,1.0,1,1.6163263320922852,220,1.0,2 +44220,9,1.0,1,1.5163275003433228,221,1.0,2 +44221,9,1.0,1,1.8363234996795654,222,1.0,2 +44222,9,1.0,1,1.618326187133789,223,1.0,2 +44223,9,1.0,1,1.7593244314193726,224,0.0,2 +44224,9,1.0,1,1.6623256206512451,225,0.0,2 +44225,9,0.0,1,1.3483296632766724,226,1.0,2 +44226,9,0.0,1,1.3803292512893677,227,0.0,2 +44227,9,0.0,1,1.8043239116668701,228,0.0,2 +44228,9,1.0,1,1.3123301267623901,229,0.0,2 +44229,9,0.0,1,1.433328628540039,230,0.0,2 +44230,9,0.0,1,1.7473245859146118,231,0.0,2 +44231,9,1.0,1,2.1033244132995605,232,1.0,2 +44232,9,1.0,1,1.368329405784607,233,1.0,2 +44233,9,1.0,1,1.3663294315338135,234,1.0,2 +44234,9,1.0,1,1.1183302402496338,235,1.0,2 +44235,9,1.0,1,1.3143301010131836,236,1.0,2 +44236,9,1.0,1,1.2083303928375244,237,1.0,2 +44237,9,1.0,1,1.8243236541748047,238,1.0,2 +44238,9,1.0,1,1.367329478263855,239,1.0,2 +44239,9,1.0,1,1.5183274745941162,240,1.0,2 +44240,9,1.0,1,1.4203287363052368,241,1.0,2 +44241,9,1.0,1,1.4653282165527344,242,1.0,2 +44242,9,1.0,1,1.3113301992416382,243,1.0,2 +44243,9,1.0,1,1.4963277578353882,244,0.0,2 +44244,9,1.0,1,1.4213287830352783,245,0.0,2 +44245,9,1.0,1,1.8113237619400024,246,1.0,2 +44246,9,1.0,1,1.3953291177749634,247,1.0,2 +44247,9,1.0,1,1.3023302555084229,248,1.0,2 +44248,9,1.0,1,1.408328890800476,249,0.0,2 +44249,9,0.0,1,2.179327964782715,250,0.0,2 +44250,9,1.0,1,1.2633305788040161,251,1.0,2 +44251,9,1.0,1,1.5193275213241577,252,0.0,2 +44252,9,0.0,1,2.0263209342956543,253,0.0,2 +44253,9,0.0,1,1.240330457687378,254,0.0,2 +44254,9,1.0,1,1.4793280363082886,255,1.0,2 +44255,9,1.0,1,1.4173288345336914,256,1.0,2 +44256,9,1.0,1,1.2553305625915527,257,1.0,2 +44257,9,1.0,1,1.6853253841400146,258,0.0,2 +44258,9,0.0,1,1.2503305673599243,259,0.0,2 +44259,9,1.0,1,2.2913331985473633,260,1.0,2 +44260,9,1.0,1,1.3023302555084229,261,0.0,2 +44261,9,1.0,1,1.2123304605484009,262,1.0,2 +44262,9,1.0,1,1.6753255128860474,263,1.0,2 +44263,9,1.0,1,1.4293286800384521,264,1.0,2 +44264,9,1.0,1,1.298330307006836,265,0.0,2 +44265,9,1.0,1,1.2693305015563965,266,0.0,2 +44266,9,1.0,1,1.4663281440734863,267,0.0,2 +44267,9,1.0,1,1.2043304443359375,268,1.0,2 +44268,9,1.0,1,1.4423284530639648,269,1.0,2 +44269,9,1.0,1,1.6883254051208496,270,1.0,2 +44270,9,1.0,1,1.163330316543579,271,1.0,2 +44271,9,1.0,1,1.165330410003662,272,1.0,2 +44272,9,1.0,1,1.1853303909301758,273,1.0,2 +44273,9,1.0,1,1.2053303718566895,274,0.0,2 +44274,9,1.0,1,1.6363260746002197,275,1.0,2 +44275,9,1.0,1,1.2783305644989014,276,0.0,2 +44276,9,0.0,1,2.0173211097717285,277,0.0,2 +44277,9,0.0,1,1.997321367263794,278,0.0,2 +44278,9,1.0,1,1.857323169708252,279,1.0,2 +44279,9,1.0,1,1.5473271608352661,280,1.0,2 +44280,9,1.0,1,1.2343305349349976,281,1.0,2 +44281,9,1.0,1,1.323330044746399,282,1.0,2 +44282,9,1.0,1,1.34132981300354,283,1.0,2 +44283,9,1.0,1,1.7473245859146118,284,1.0,2 +44284,9,1.0,1,1.455328345298767,285,1.0,2 +44285,9,1.0,1,1.2153304815292358,286,0.0,2 +44286,9,1.0,1,2.0123212337493896,287,1.0,2 +44287,9,1.0,1,1.438328504562378,288,0.0,2 +44288,9,0.0,1,1.5133275985717773,289,0.0,2 +44289,9,0.0,1,1.7803242206573486,290,0.0,2 +44290,9,0.0,1,1.2783305644989014,291,0.0,2 +44291,9,0.0,1,1.624326229095459,292,0.0,2 +44292,9,1.0,1,1.3693294525146484,293,1.0,2 +44293,9,1.0,1,1.626326084136963,294,1.0,2 +44294,9,1.0,1,1.3273299932479858,295,1.0,2 +44295,9,1.0,1,1.3043302297592163,296,1.0,2 +44296,9,1.0,1,1.7493245601654053,297,1.0,2 +44297,9,1.0,1,1.4273287057876587,298,1.0,2 +44298,9,1.0,1,1.3243299722671509,299,1.0,2 +44299,9,1.0,1,1.4723280668258667,300,1.0,2 +44300,9,1.0,1,1.3793293237686157,301,1.0,2 +44301,9,0.0,1,1.2693305015563965,302,1.0,2 +44302,9,0.0,1,1.1903303861618042,303,0.0,2 +44303,9,1.0,1,1.5233274698257446,304,0.0,2 +44304,9,0.0,1,1.478327989578247,305,1.0,2 +44305,9,0.0,1,1.1973304748535156,306,1.0,2 +44306,9,0.0,1,1.2683305740356445,307,0.0,2 +44307,9,0.0,1,1.386329174041748,308,1.0,2 +44308,9,0.0,1,1.3353298902511597,309,0.0,2 +44309,9,1.0,1,1.757324457168579,310,1.0,2 +44310,9,1.0,1,1.508327603340149,311,0.0,2 +44311,9,0.0,1,1.3753293752670288,312,0.0,2 +44312,9,1.0,1,1.3443297147750854,313,1.0,2 +44313,9,1.0,1,1.9723217487335205,314,1.0,2 +44314,9,1.0,1,1.478327989578247,315,1.0,2 +44315,9,1.0,1,1.323330044746399,316,1.0,2 +44316,9,0.0,1,1.7473245859146118,317,1.0,2 +44317,9,1.0,1,1.9333221912384033,318,1.0,2 +44318,9,0.0,1,1.9873214960098267,319,1.0,2 +44319,9,1.0,1,1.9803216457366943,320,1.0,2 +44320,9,1.0,1,1.5053277015686035,321,1.0,2 +44321,9,0.0,1,1.242330551147461,322,0.0,2 +44322,9,1.0,1,1.478327989578247,323,1.0,2 +44323,9,1.0,1,1.240330457687378,324,0.0,2 +44324,9,1.0,1,1.4513283967971802,325,0.0,2 +44325,9,0.0,1,1.6933252811431885,326,1.0,2 +44326,9,0.0,1,1.4253287315368652,327,0.0,2 +44327,9,0.0,1,2.210329532623291,328,1.0,2 +44328,9,0.0,1,1.2883304357528687,329,1.0,2 +44329,9,0.0,1,1.2243304252624512,330,0.0,2 +44330,9,1.0,1,1.9513219594955444,331,1.0,2 +44331,9,1.0,1,1.2143304347991943,332,1.0,2 +44332,9,0.0,1,1.2993303537368774,333,0.0,2 +44333,9,1.0,1,1.3473297357559204,334,1.0,2 +44334,9,1.0,1,1.714324951171875,335,1.0,2 +44335,9,1.0,1,1.3133301734924316,336,1.0,2 +44336,9,1.0,1,1.4433284997940063,337,1.0,2 +44337,9,1.0,1,1.2083303928375244,338,1.0,2 +44338,9,1.0,1,1.3693294525146484,339,1.0,2 +44339,9,1.0,1,1.4213287830352783,340,1.0,2 +44340,9,1.0,1,1.4693281650543213,341,0.0,2 +44341,9,0.0,1,1.2263305187225342,342,0.0,2 +44342,9,0.0,1,1.9643218517303467,343,0.0,2 +44343,9,0.0,1,1.323330044746399,344,0.0,2 +44344,9,1.0,1,1.6443259716033936,345,0.0,2 +44345,9,0.0,1,1.3303298950195312,346,0.0,2 +44346,9,0.0,1,1.1593303680419922,347,0.0,2 +44347,9,0.0,1,1.4483283758163452,348,0.0,2 +44348,9,0.0,1,1.2953304052352905,349,0.0,2 +44349,9,1.0,1,1.8303234577178955,350,0.0,2 +44350,9,1.0,1,1.4913278818130493,351,1.0,2 +44351,9,1.0,1,1.1853303909301758,352,0.0,2 +44352,9,1.0,1,1.6543257236480713,353,1.0,2 +44353,9,1.0,1,1.3803292512893677,354,1.0,2 +44354,9,1.0,1,1.1873303651809692,355,1.0,2 +44355,9,1.0,1,1.6423258781433105,356,1.0,2 +44356,9,1.0,1,1.4473284482955933,357,0.0,2 +44357,9,1.0,1,1.3583295345306396,358,1.0,2 +44358,9,1.0,1,1.39332914352417,359,0.0,2 +44359,9,1.0,1,1.6773254871368408,360,1.0,2 +44360,9,1.0,1,1.7473245859146118,361,1.0,2 +44361,9,1.0,1,1.455328345298767,362,1.0,2 +44362,9,1.0,1,1.2803305387496948,363,1.0,2 +44363,9,1.0,1,1.1743303537368774,364,1.0,2 +44364,9,1.0,1,1.3763293027877808,365,1.0,2 +44365,9,1.0,1,1.239330530166626,366,1.0,2 +44366,9,1.0,1,1.758324384689331,367,0.0,2 +44367,9,1.0,1,1.6013264656066895,368,1.0,2 +44368,9,1.0,1,1.5833266973495483,369,0.0,2 +44369,9,1.0,1,1.4743280410766602,370,0.0,2 +44370,9,0.0,1,1.2603305578231812,371,0.0,2 +44371,9,0.0,1,1.52632737159729,372,0.0,2 +44372,9,1.0,1,1.5423271656036377,373,1.0,2 +44373,9,0.0,1,2.1373260021209717,374,0.0,2 +44374,9,1.0,1,1.713325023651123,375,1.0,2 +44375,9,1.0,1,1.3563295602798462,376,0.0,2 +44376,9,1.0,1,1.672325611114502,377,0.0,2 +44377,9,0.0,1,1.6353260278701782,378,0.0,2 +44378,9,1.0,1,1.1933304071426392,379,1.0,2 +44379,9,1.0,1,1.8253235816955566,380,0.0,2 +44380,9,1.0,1,1.4693281650543213,381,1.0,2 +44381,9,1.0,1,1.3073302507400513,382,1.0,2 +44382,9,1.0,1,1.3813292980194092,383,1.0,2 +44383,9,1.0,1,1.3873292207717896,384,0.0,2 +44384,9,0.0,1,1.2233304977416992,385,0.0,2 +44385,9,0.0,1,1.4673281908035278,386,0.0,2 +44386,9,0.0,1,1.8803229331970215,387,0.0,2 +44387,9,0.0,1,1.3123301267623901,388,0.0,2 +44388,9,0.0,1,1.5183274745941162,389,1.0,2 +44389,9,0.0,1,1.315330147743225,390,1.0,2 +44390,9,0.0,1,1.1463303565979004,391,0.0,2 +44391,9,0.0,1,1.7423245906829834,392,0.0,2 +44392,9,0.0,1,1.3963290452957153,393,0.0,2 +44393,9,0.0,1,1.1683303117752075,394,0.0,2 +44394,9,1.0,1,1.2723305225372314,395,1.0,2 +44395,9,1.0,1,1.5663268566131592,396,0.0,2 +44396,9,1.0,1,2.1333258152008057,397,0.0,2 +44397,9,0.0,1,1.297330379486084,398,0.0,2 +44398,9,0.0,1,1.5393272638320923,399,0.0,2 +44399,9,1.0,1,1.2293305397033691,400,1.0,2 +44400,9,1.0,1,1.345329761505127,401,0.0,2 +44401,9,1.0,1,2.228330135345459,402,1.0,2 +44402,9,1.0,1,1.4363285303115845,403,1.0,2 +44403,9,1.0,1,1.5063276290893555,404,0.0,2 +44404,9,1.0,1,2.1403260231018066,405,0.0,2 +44405,9,0.0,1,2.1063246726989746,406,0.0,2 +44406,9,1.0,1,1.695325255393982,407,1.0,2 +44407,9,1.0,1,1.3223299980163574,408,0.0,2 +44408,9,1.0,1,1.7243249416351318,409,1.0,2 +44409,9,1.0,1,1.3473297357559204,410,1.0,2 +44410,9,0.0,1,1.4353286027908325,411,1.0,2 +44411,9,1.0,1,1.9743216037750244,412,1.0,2 +44412,9,1.0,1,1.3133301734924316,413,0.0,2 +44413,9,0.0,1,1.2263305187225342,414,0.0,2 +44414,9,1.0,1,1.8033238649368286,415,0.0,2 +44415,9,0.0,1,1.4613282680511475,416,0.0,2 +44416,9,1.0,1,1.673325538635254,417,1.0,2 +44417,9,1.0,1,1.3133301734924316,418,1.0,2 +44418,9,1.0,1,1.4423284530639648,419,1.0,2 +44419,9,1.0,1,1.6843254566192627,420,1.0,2 +44420,9,1.0,1,1.2443305253982544,421,1.0,2 +44421,9,1.0,1,1.4703280925750732,422,0.0,2 +44422,9,1.0,1,2.0793232917785645,423,1.0,2 +44423,9,1.0,1,1.4543282985687256,424,1.0,2 +44424,9,1.0,1,1.5643270015716553,425,0.0,2 +44425,9,1.0,1,2.3303351402282715,426,1.0,2 +44426,9,1.0,1,1.5493271350860596,427,0.0,2 +44427,9,1.0,1,1.4393285512924194,428,1.0,2 +44428,9,1.0,1,1.2913304567337036,429,0.0,2 +44429,9,0.0,1,1.4473284482955933,430,0.0,2 +44430,9,1.0,1,1.599326491355896,431,0.0,2 +44431,9,0.0,1,1.1403303146362305,432,1.0,2 +44432,9,1.0,1,1.5543270111083984,433,1.0,2 +44433,9,0.0,1,1.7303247451782227,434,0.0,2 +44434,9,1.0,1,1.7313247919082642,435,0.0,2 +44435,9,0.0,1,1.2593305110931396,436,0.0,2 +44436,9,1.0,1,1.7083251476287842,437,0.0,2 +44437,9,1.0,1,2.200328826904297,438,1.0,2 +44438,9,1.0,1,1.8823227882385254,439,1.0,2 +44439,9,1.0,1,1.7733242511749268,440,1.0,2 +44440,9,1.0,1,1.3993290662765503,441,1.0,2 +44441,9,1.0,1,1.172330379486084,442,1.0,2 +44442,9,1.0,1,1.2773306369781494,443,0.0,2 +44443,9,0.0,1,1.176330327987671,444,0.0,2 +44444,9,1.0,1,1.4733281135559082,445,1.0,2 +44445,9,1.0,1,1.3273299932479858,446,1.0,2 +44446,9,1.0,1,1.346329689025879,447,1.0,2 +44447,9,1.0,1,1.2483304738998413,448,1.0,2 +44448,9,1.0,1,1.3613295555114746,449,1.0,2 +44449,9,1.0,1,1.4313286542892456,450,1.0,2 +44450,9,1.0,1,1.36432945728302,451,0.0,2 +44451,9,0.0,1,1.293330430984497,452,1.0,2 +44452,9,0.0,1,1.3143301010131836,453,1.0,2 +44453,9,1.0,1,1.3403297662734985,454,1.0,2 +44454,9,0.0,1,1.3063302040100098,455,0.0,2 +44455,9,1.0,1,1.3333299160003662,456,0.0,2 +44456,9,0.0,1,1.316330075263977,457,0.0,2 +44457,9,1.0,1,1.243330478668213,458,0.0,2 +44458,9,1.0,1,1.7523245811462402,459,1.0,2 +44459,9,1.0,1,1.3763293027877808,460,1.0,2 +44460,9,1.0,1,1.998321294784546,461,1.0,2 +44461,9,1.0,1,1.3343298435211182,462,1.0,2 +44462,9,1.0,1,1.617326259613037,463,1.0,2 +44463,9,1.0,1,1.3063302040100098,464,1.0,2 +44464,9,0.0,1,1.9033225774765015,465,0.0,2 +44465,9,1.0,1,1.8743228912353516,466,1.0,2 +44466,9,1.0,1,1.8193236589431763,467,0.0,2 +44467,9,1.0,1,2.1463265419006348,468,1.0,2 +44468,9,1.0,1,1.3583295345306396,469,0.0,2 +44469,9,0.0,1,1.4993277788162231,470,0.0,2 +44470,9,1.0,1,1.3063302040100098,471,0.0,2 +44471,9,0.0,1,1.4313286542892456,472,1.0,2 +44472,9,0.0,1,1.3023302555084229,473,0.0,2 +44473,9,0.0,1,1.412328839302063,474,0.0,2 +44474,9,0.0,1,1.345329761505127,475,0.0,2 +44475,9,1.0,1,1.7813241481781006,476,1.0,2 +44476,9,1.0,1,1.7523245811462402,477,1.0,2 +44477,9,1.0,1,1.4753280878067017,478,1.0,2 +44478,9,1.0,1,1.4073289632797241,479,1.0,2 +44479,9,1.0,1,2.0393214225769043,480,1.0,2 +44480,9,1.0,1,1.4673281908035278,481,1.0,2 +44481,9,0.0,1,1.6303260326385498,482,1.0,2 +44482,9,1.0,1,1.4743280410766602,483,1.0,2 +44483,9,1.0,1,1.3563295602798462,484,1.0,2 +44484,9,1.0,1,1.230330467224121,485,0.0,2 +44485,9,0.0,1,1.4623281955718994,486,0.0,2 +44486,9,1.0,1,1.6983251571655273,487,0.0,2 +44487,9,0.0,1,1.9323222637176514,488,0.0,2 +44488,9,0.0,1,2.0483217239379883,489,1.0,2 +44489,9,0.0,1,1.2803305387496948,490,1.0,2 +44490,9,0.0,1,1.5943264961242676,491,0.0,2 +44491,9,1.0,1,1.4073289632797241,492,0.0,2 +44492,9,0.0,1,1.87932288646698,493,0.0,2 +44493,9,1.0,1,1.7153249979019165,494,0.0,2 +44494,9,0.0,1,1.481328010559082,495,1.0,2 +44495,9,0.0,1,1.1033302545547485,496,0.0,2 +44496,9,0.0,1,1.765324354171753,497,0.0,2 +44497,9,0.0,1,2.44234037399292,498,1.0,2 +44498,9,1.0,1,1.3043302297592163,499,1.0,2 +44499,9,1.0,1,1.2743306159973145,500,1.0,2 +44500,9,0.0,2,1.433328628540039,1,1.0,2 +44501,9,0.0,2,1.3533296585083008,2,1.0,2 +44502,9,0.0,2,1.412328839302063,3,0.0,2 +44503,9,1.0,2,1.7093250751495361,4,0.0,2 +44504,9,0.0,2,1.202330470085144,5,1.0,2 +44505,9,0.0,2,1.411328911781311,6,1.0,2 +44506,9,0.0,2,1.390329122543335,7,0.0,2 +44507,9,1.0,2,1.853323221206665,8,1.0,2 +44508,9,1.0,2,1.668325662612915,9,0.0,2 +44509,9,1.0,2,1.4763280153274536,10,0.0,2 +44510,9,0.0,2,2.214329719543457,11,0.0,2 +44511,9,0.0,2,2.0913238525390625,12,1.0,2 +44512,9,0.0,2,1.3073302507400513,13,1.0,2 +44513,9,0.0,2,1.297330379486084,14,0.0,2 +44514,9,0.0,2,1.165330410003662,15,1.0,2 +44515,9,0.0,2,1.6113263368606567,16,0.0,2 +44516,9,0.0,2,1.5883266925811768,17,0.0,2 +44517,9,1.0,2,1.389329195022583,18,1.0,2 +44518,9,1.0,2,1.668325662612915,19,1.0,2 +44519,9,1.0,2,1.6153262853622437,20,0.0,2 +44520,9,0.0,2,1.2533304691314697,21,0.0,2 +44521,9,1.0,2,1.5753268003463745,22,0.0,2 +44522,9,1.0,2,1.8193236589431763,23,0.0,2 +44523,9,1.0,2,1.695325255393982,24,1.0,2 +44524,9,1.0,2,1.8213236331939697,25,0.0,2 +44525,9,1.0,2,1.3303298950195312,26,0.0,2 +44526,9,1.0,2,1.7003252506256104,27,1.0,2 +44527,9,1.0,2,1.2993303537368774,28,0.0,2 +44528,9,0.0,2,2.004321336746216,29,1.0,2 +44529,9,0.0,2,1.360329508781433,30,0.0,2 +44530,9,0.0,2,1.230330467224121,31,0.0,2 +44531,9,0.0,2,1.9333221912384033,32,1.0,2 +44532,9,0.0,2,1.4293286800384521,33,0.0,2 +44533,9,1.0,2,1.3503296375274658,34,0.0,2 +44534,9,0.0,2,1.3313299417495728,35,0.0,2 +44535,9,0.0,2,1.787324070930481,36,0.0,2 +44536,9,0.0,2,1.5403273105621338,37,0.0,2 +44537,9,1.0,2,1.5593270063400269,38,0.0,2 +44538,9,0.0,2,1.5643270015716553,39,1.0,2 +44539,9,0.0,2,1.3113301992416382,40,0.0,2 +44540,9,1.0,2,1.6833254098892212,41,1.0,2 +44541,9,1.0,2,1.3263299465179443,42,0.0,2 +44542,9,1.0,2,1.576326847076416,43,0.0,2 +44543,9,0.0,2,1.2313305139541626,44,0.0,2 +44544,9,1.0,2,1.9953213930130005,45,0.0,2 +44545,9,1.0,2,1.576326847076416,46,1.0,2 +44546,9,1.0,2,1.206330418586731,47,0.0,2 +44547,9,1.0,2,1.4983277320861816,48,1.0,2 +44548,9,1.0,2,1.3533296585083008,49,1.0,2 +44549,9,1.0,2,1.482327938079834,50,1.0,2 +44550,9,1.0,2,1.276330590248108,51,1.0,2 +44551,9,1.0,2,1.3723293542861938,52,0.0,2 +44552,9,1.0,2,1.4903278350830078,53,1.0,2 +44553,9,1.0,2,1.809323787689209,54,0.0,2 +44554,9,0.0,2,1.3813292980194092,55,1.0,2 +44555,9,0.0,2,1.3293299674987793,56,1.0,2 +44556,9,0.0,2,1.50332772731781,57,1.0,2 +44557,9,0.0,2,1.6373260021209717,58,0.0,2 +44558,9,1.0,2,1.9633218050003052,59,0.0,2 +44559,9,0.0,2,1.242330551147461,60,1.0,2 +44560,9,0.0,2,1.4173288345336914,61,1.0,2 +44561,9,0.0,2,1.7763242721557617,62,0.0,2 +44562,9,1.0,2,1.5233274698257446,63,1.0,2 +44563,9,1.0,2,1.3053302764892578,64,1.0,2 +44564,9,1.0,2,1.2843304872512817,65,0.0,2 +44565,9,1.0,2,1.5603270530700684,66,1.0,2 +44566,9,1.0,2,1.2503305673599243,67,0.0,2 +44567,9,0.0,2,2.179327964782715,68,0.0,2 +44568,9,1.0,2,2.4203391075134277,69,0.0,2 +44569,9,1.0,2,1.412328839302063,70,0.0,2 +44570,9,0.0,2,1.3723293542861938,71,1.0,2 +44571,9,0.0,2,1.2163304090499878,72,1.0,2 +44572,9,0.0,2,1.4033290147781372,73,1.0,2 +44573,9,0.0,2,1.1463303565979004,74,1.0,2 +44574,9,0.0,2,1.2163304090499878,75,0.0,2 +44575,9,1.0,2,1.8683230876922607,76,1.0,2 +44576,9,1.0,2,1.3923290967941284,77,0.0,2 +44577,9,0.0,2,1.7943239212036133,78,1.0,2 +44578,9,0.0,2,1.3063302040100098,79,0.0,2 +44579,9,1.0,2,1.360329508781433,80,1.0,2 +44580,9,1.0,2,1.2073304653167725,81,1.0,2 +44581,9,1.0,2,1.7253248691558838,82,1.0,2 +44582,9,1.0,2,1.2153304815292358,83,0.0,2 +44583,9,0.0,2,1.809323787689209,84,1.0,2 +44584,9,0.0,2,1.1373302936553955,85,1.0,2 +44585,9,0.0,2,1.2143304347991943,86,1.0,2 +44586,9,0.0,2,1.3623294830322266,87,0.0,2 +44587,9,1.0,2,2.001321315765381,88,0.0,2 +44588,9,1.0,2,1.2503305673599243,89,1.0,2 +44589,9,1.0,2,1.5683269500732422,90,1.0,2 +44590,9,1.0,2,1.5523271560668945,91,1.0,2 +44591,9,1.0,2,1.7093250751495361,92,1.0,2 +44592,9,1.0,2,1.5133275985717773,93,0.0,2 +44593,9,0.0,2,1.9373221397399902,94,1.0,2 +44594,9,0.0,2,1.368329405784607,95,1.0,2 +44595,9,1.0,2,1.8193236589431763,96,0.0,2 +44596,9,0.0,2,1.4233287572860718,97,1.0,2 +44597,9,0.0,2,1.199330449104309,98,1.0,2 +44598,9,0.0,2,1.2683305740356445,99,1.0,2 +44599,9,0.0,2,1.2053303718566895,100,1.0,2 +44600,9,0.0,2,1.5243273973464966,101,1.0,2 +44601,9,0.0,2,1.5353273153305054,102,0.0,2 +44602,9,0.0,2,1.242330551147461,103,1.0,2 +44603,9,0.0,2,1.1263302564620972,104,0.0,2 +44604,9,1.0,2,1.7283248901367188,105,1.0,2 +44605,9,1.0,2,1.3373298645019531,106,0.0,2 +44606,9,0.0,2,1.6903252601623535,107,0.0,2 +44607,9,1.0,2,1.264330506324768,108,1.0,2 +44608,9,1.0,2,1.3883291482925415,109,1.0,2 +44609,9,1.0,2,1.7773241996765137,110,1.0,2 +44610,9,1.0,2,1.2603305578231812,111,1.0,2 +44611,9,1.0,2,1.412328839302063,112,0.0,2 +44612,9,1.0,2,2.0793232917785645,113,1.0,2 +44613,9,1.0,2,1.5143275260925293,114,0.0,2 +44614,9,0.0,2,1.3253300189971924,115,0.0,2 +44615,9,0.0,2,1.4253287315368652,116,1.0,2 +44616,9,0.0,2,1.230330467224121,117,0.0,2 +44617,9,1.0,2,1.6083264350891113,118,0.0,2 +44618,9,0.0,2,2.3173344135284424,119,1.0,2 +44619,9,0.0,2,1.508327603340149,120,0.0,2 +44620,9,0.0,2,1.1963304281234741,121,1.0,2 +44621,9,0.0,2,1.8873227834701538,122,0.0,2 +44622,9,0.0,2,1.3753293752670288,123,0.0,2 +44623,9,0.0,2,1.2413305044174194,124,1.0,2 +44624,9,0.0,2,1.1063302755355835,125,1.0,2 +44625,9,0.0,2,1.5443272590637207,126,1.0,2 +44626,9,0.0,2,1.1233302354812622,127,1.0,2 +44627,9,0.0,2,1.1453303098678589,128,0.0,2 +44628,9,0.0,2,1.3393298387527466,129,0.0,2 +44629,9,0.0,2,1.4003289937973022,130,0.0,2 +44630,9,0.0,2,1.6613256931304932,131,0.0,2 +44631,9,0.0,2,1.1953303813934326,132,0.0,2 +44632,9,1.0,2,2.0923237800598145,133,1.0,2 +44633,9,1.0,2,1.2413305044174194,134,1.0,2 +44634,9,1.0,2,1.7273248434066772,135,0.0,2 +44635,9,1.0,2,1.9243223667144775,136,1.0,2 +44636,9,1.0,2,1.858323097229004,137,0.0,2 +44637,9,1.0,2,2.242331027984619,138,0.0,2 +44638,9,1.0,2,1.4313286542892456,139,1.0,2 +44639,9,1.0,2,1.2383304834365845,140,0.0,2 +44640,9,0.0,2,1.2873305082321167,141,1.0,2 +44641,9,0.0,2,1.624326229095459,142,0.0,2 +44642,9,0.0,2,1.4453284740447998,143,0.0,2 +44643,9,0.0,2,1.345329761505127,144,0.0,2 +44644,9,0.0,2,1.2463304996490479,145,0.0,2 +44645,9,1.0,2,2.150326728820801,146,0.0,2 +44646,9,1.0,2,1.4643281698226929,147,1.0,2 +44647,9,0.0,2,1.6153262853622437,148,1.0,2 +44648,9,0.0,2,1.3323298692703247,149,1.0,2 +44649,9,0.0,2,1.3593295812606812,150,1.0,2 +44650,9,1.0,2,1.7053251266479492,151,0.0,2 +44651,9,0.0,2,1.4993277788162231,152,0.0,2 +44652,9,1.0,2,1.9033225774765015,153,1.0,2 +44653,9,1.0,2,2.0973241329193115,154,1.0,2 +44654,9,1.0,2,1.5923266410827637,155,0.0,2 +44655,9,0.0,2,1.626326084136963,156,0.0,2 +44656,9,1.0,2,2.1023244857788086,157,0.0,2 +44657,9,0.0,2,2.5783467292785645,158,0.0,2 +44658,9,1.0,2,1.456328272819519,159,1.0,2 +44659,9,1.0,2,1.2593305110931396,160,0.0,2 +44660,9,0.0,2,1.342329740524292,161,1.0,2 +44661,9,0.0,2,1.3293299674987793,162,0.0,2 +44662,9,0.0,2,1.4453284740447998,163,0.0,2 +44663,9,1.0,2,2.000321388244629,164,1.0,2 +44664,9,1.0,2,1.486327886581421,165,1.0,2 +44665,9,1.0,2,1.3653295040130615,166,0.0,2 +44666,9,0.0,2,1.2263305187225342,167,0.0,2 +44667,9,0.0,2,1.8243236541748047,168,1.0,2 +44668,9,0.0,2,1.3983290195465088,169,0.0,2 +44669,9,1.0,2,1.8643231391906738,170,1.0,2 +44670,9,1.0,2,1.7383246421813965,171,1.0,2 +44671,9,1.0,2,1.3883291482925415,172,1.0,2 +44672,9,1.0,2,1.4583282470703125,173,0.0,2 +44673,9,0.0,2,2.265331983566284,174,1.0,2 +44674,9,0.0,2,1.3743293285369873,175,0.0,2 +44675,9,1.0,2,1.3503296375274658,176,1.0,2 +44676,9,1.0,2,1.1973304748535156,177,1.0,2 +44677,9,1.0,2,1.5063276290893555,178,1.0,2 +44678,9,1.0,2,1.2913304567337036,179,1.0,2 +44679,9,1.0,2,1.1913304328918457,180,1.0,2 +44680,9,0.0,2,1.6423258781433105,181,1.0,2 +44681,9,0.0,2,1.2543305158615112,182,0.0,2 +44682,9,1.0,2,1.5653269290924072,183,1.0,2 +44683,9,1.0,2,1.626326084136963,184,1.0,2 +44684,9,1.0,2,1.1903303861618042,185,1.0,2 +44685,9,0.0,2,1.4763280153274536,186,0.0,2 +44686,9,1.0,2,1.647325873374939,187,0.0,2 +44687,9,0.0,2,1.525327444076538,188,0.0,2 +44688,9,1.0,2,1.3943290710449219,189,1.0,2 +44689,9,1.0,2,2.0083212852478027,190,1.0,2 +44690,9,1.0,2,1.486327886581421,191,1.0,2 +44691,9,1.0,2,1.367329478263855,192,0.0,2 +44692,9,1.0,2,1.4283286333084106,193,1.0,2 +44693,9,1.0,2,1.3723293542861938,194,1.0,2 +44694,9,1.0,2,1.4173288345336914,195,0.0,2 +44695,9,0.0,2,1.2163304090499878,196,0.0,2 +44696,9,1.0,2,1.9733216762542725,197,0.0,2 +44697,9,0.0,2,1.199330449104309,198,0.0,2 +44698,9,0.0,2,1.4923278093338013,199,0.0,2 +44699,9,1.0,2,1.5423271656036377,200,1.0,2 +44700,9,1.0,2,1.5283273458480835,201,0.0,2 +44701,9,0.0,2,1.2013304233551025,202,1.0,2 +44702,9,0.0,2,2.0053212642669678,203,0.0,2 +44703,9,0.0,2,1.2283304929733276,204,1.0,2 +44704,9,0.0,2,1.1503303050994873,205,0.0,2 +44705,9,1.0,2,1.7483246326446533,206,0.0,2 +44706,9,0.0,2,1.3053302764892578,207,1.0,2 +44707,9,0.0,2,1.3303298950195312,208,0.0,2 +44708,9,0.0,2,1.8483233451843262,209,1.0,2 +44709,9,0.0,2,1.4713281393051147,210,1.0,2 +44710,9,0.0,2,1.2813305854797363,211,1.0,2 +44711,9,0.0,2,1.7273248434066772,212,1.0,2 +44712,9,0.0,2,1.2233304977416992,213,0.0,2 +44713,9,0.0,2,1.301330327987671,214,1.0,2 +44714,9,0.0,2,1.138330340385437,215,0.0,2 +44715,9,0.0,2,1.1903303861618042,216,0.0,2 +44716,9,0.0,2,1.3813292980194092,217,1.0,2 +44717,9,0.0,2,1.6063263416290283,218,0.0,2 +44718,9,1.0,2,2.180327892303467,219,0.0,2 +44719,9,0.0,2,1.4023289680480957,220,0.0,2 +44720,9,0.0,2,2.0643224716186523,221,0.0,2 +44721,9,0.0,2,2.272332191467285,222,1.0,2 +44722,9,0.0,2,1.3523296117782593,223,0.0,2 +44723,9,0.0,2,1.7793241739273071,224,0.0,2 +44724,9,0.0,2,1.5853266716003418,225,1.0,2 +44725,9,0.0,2,1.1613303422927856,226,0.0,2 +44726,9,1.0,2,2.3713369369506836,227,0.0,2 +44727,9,0.0,2,1.4583282470703125,228,1.0,2 +44728,9,0.0,2,1.294330358505249,229,1.0,2 +44729,9,0.0,2,1.2873305082321167,230,0.0,2 +44730,9,0.0,2,1.239330530166626,231,1.0,2 +44731,9,0.0,2,1.3243299722671509,232,1.0,2 +44732,9,0.0,2,1.5353273153305054,233,1.0,2 +44733,9,0.0,2,1.857323169708252,234,0.0,2 +44734,9,1.0,2,1.2103304862976074,235,0.0,2 +44735,9,0.0,2,1.3073302507400513,236,0.0,2 +44736,9,1.0,2,1.621326208114624,237,1.0,2 +44737,9,1.0,2,1.4003289937973022,238,1.0,2 +44738,9,1.0,2,1.6153262853622437,239,1.0,2 +44739,9,1.0,2,1.3223299980163574,240,0.0,2 +44740,9,0.0,2,1.5403273105621338,241,1.0,2 +44741,9,0.0,2,1.2183305025100708,242,0.0,2 +44742,9,0.0,2,1.293330430984497,243,0.0,2 +44743,9,0.0,2,1.1143302917480469,244,0.0,2 +44744,9,0.0,2,1.949321985244751,245,1.0,2 +44745,9,0.0,2,1.5583269596099854,246,1.0,2 +44746,9,0.0,2,1.3723293542861938,247,0.0,2 +44747,9,1.0,2,2.0983242988586426,248,0.0,2 +44748,9,0.0,2,1.7693243026733398,249,0.0,2 +44749,9,0.0,2,1.3513296842575073,250,1.0,2 +44750,9,0.0,2,1.2203304767608643,251,1.0,2 +44751,9,0.0,2,1.5463271141052246,252,0.0,2 +44752,9,0.0,2,1.6333260536193848,253,1.0,2 +44753,9,0.0,2,1.386329174041748,254,0.0,2 +44754,9,0.0,2,1.2503305673599243,255,0.0,2 +44755,9,0.0,2,1.8423233032226562,256,1.0,2 +44756,9,0.0,2,1.1943304538726807,257,0.0,2 +44757,9,0.0,2,1.3183300495147705,258,0.0,2 +44758,9,0.0,2,1.6013264656066895,259,1.0,2 +44759,9,0.0,2,1.1713303327560425,260,1.0,2 +44760,9,0.0,2,1.9163224697113037,261,1.0,2 +44761,9,0.0,2,1.3043302297592163,262,1.0,2 +44762,9,0.0,2,1.4773280620574951,263,1.0,2 +44763,9,0.0,2,1.166330337524414,264,1.0,2 +44764,9,0.0,2,1.3963290452957153,265,0.0,2 +44765,9,0.0,2,1.4033290147781372,266,1.0,2 +44766,9,0.0,2,1.2293305397033691,267,1.0,2 +44767,9,0.0,2,1.3613295555114746,268,0.0,2 +44768,9,0.0,2,1.5053277015686035,269,1.0,2 +44769,9,1.0,2,1.8143236637115479,270,0.0,2 +44770,9,0.0,2,1.3843291997909546,271,1.0,2 +44771,9,0.0,2,1.242330551147461,272,0.0,2 +44772,9,0.0,2,1.5793267488479614,273,1.0,2 +44773,9,0.0,2,1.508327603340149,274,1.0,2 +44774,9,0.0,2,1.368329405784607,275,0.0,2 +44775,9,1.0,2,1.952322006225586,276,1.0,2 +44776,9,1.0,2,1.1533303260803223,277,1.0,2 +44777,9,1.0,2,1.4033290147781372,278,1.0,2 +44778,9,1.0,2,1.441328525543213,279,0.0,2 +44779,9,0.0,2,1.2183305025100708,280,0.0,2 +44780,9,0.0,2,1.459328293800354,281,1.0,2 +44781,9,0.0,2,1.2133305072784424,282,1.0,2 +44782,9,0.0,2,1.408328890800476,283,0.0,2 +44783,9,0.0,2,1.2893304824829102,284,0.0,2 +44784,9,0.0,2,1.3923290967941284,285,0.0,2 +44785,9,1.0,2,1.4003289937973022,286,1.0,2 +44786,9,1.0,2,1.9093225002288818,287,0.0,2 +44787,9,0.0,2,1.294330358505249,288,0.0,2 +44788,9,1.0,2,1.4223287105560303,289,0.0,2 +44789,9,1.0,2,1.6043264865875244,290,1.0,2 +44790,9,1.0,2,1.209330439567566,291,1.0,2 +44791,9,1.0,2,1.412328839302063,292,1.0,2 +44792,9,1.0,2,1.3263299465179443,293,1.0,2 +44793,9,1.0,2,1.3573296070098877,294,1.0,2 +44794,9,1.0,2,1.270330548286438,295,1.0,2 +44795,9,1.0,2,1.3003302812576294,296,0.0,2 +44796,9,1.0,2,1.7323248386383057,297,1.0,2 +44797,9,1.0,2,1.1743303537368774,298,0.0,2 +44798,9,0.0,2,1.5983264446258545,299,0.0,2 +44799,9,1.0,2,1.3093302249908447,300,0.0,2 +44800,9,0.0,2,1.7293248176574707,301,1.0,2 +44801,9,0.0,2,1.1453303098678589,302,1.0,2 +44802,9,0.0,2,1.0753302574157715,303,0.0,2 +44803,9,0.0,2,1.3913291692733765,304,0.0,2 +44804,9,0.0,2,1.8563232421875,305,0.0,2 +44805,9,1.0,2,1.3433297872543335,306,1.0,2 +44806,9,1.0,2,1.647325873374939,307,0.0,2 +44807,9,1.0,2,1.371329426765442,308,0.0,2 +44808,9,0.0,2,1.3293299674987793,309,0.0,2 +44809,9,0.0,2,1.3973290920257568,310,0.0,2 +44810,9,0.0,2,1.6303260326385498,311,0.0,2 +44811,9,0.0,2,1.3813292980194092,312,0.0,2 +44812,9,0.0,2,1.5983264446258545,313,0.0,2 +44813,9,1.0,2,1.3273299932479858,314,0.0,2 +44814,9,0.0,2,1.236330509185791,315,1.0,2 +44815,9,0.0,2,1.2073304653167725,316,0.0,2 +44816,9,0.0,2,2.176327705383301,317,1.0,2 +44817,9,0.0,2,1.2573305368423462,318,1.0,2 +44818,9,0.0,2,1.2783305644989014,319,0.0,2 +44819,9,0.0,2,2.0403213500976562,320,1.0,2 +44820,9,0.0,2,1.1713303327560425,321,1.0,2 +44821,9,1.0,2,1.3403297662734985,322,1.0,2 +44822,9,0.0,2,1.5463271141052246,323,0.0,2 +44823,9,1.0,2,1.8653230667114258,324,0.0,2 +44824,9,0.0,2,1.4753280878067017,325,1.0,2 +44825,9,0.0,2,1.4703280925750732,326,0.0,2 +44826,9,0.0,2,1.3043302297592163,327,0.0,2 +44827,9,1.0,2,1.82732355594635,328,1.0,2 +44828,9,1.0,2,1.4993277788162231,329,1.0,2 +44829,9,1.0,2,1.2773306369781494,330,1.0,2 +44830,9,1.0,2,1.243330478668213,331,0.0,2 +44831,9,0.0,2,1.4933278560638428,332,1.0,2 +44832,9,0.0,2,1.3073302507400513,333,1.0,2 +44833,9,0.0,2,1.2073304653167725,334,0.0,2 +44834,9,0.0,2,1.805323839187622,335,1.0,2 +44835,9,0.0,2,1.2633305788040161,336,1.0,2 +44836,9,0.0,2,1.3393298387527466,337,0.0,2 +44837,9,1.0,2,1.5673269033432007,338,1.0,2 +44838,9,1.0,2,1.758324384689331,339,1.0,2 +44839,9,0.0,2,1.3343298435211182,340,0.0,2 +44840,9,1.0,2,1.298330307006836,341,1.0,2 +44841,9,1.0,2,1.2813305854797363,342,1.0,2 +44842,9,1.0,2,1.6353260278701782,343,0.0,2 +44843,9,1.0,2,2.3893377780914307,344,0.0,2 +44844,9,0.0,2,1.7673243284225464,345,0.0,2 +44845,9,1.0,2,1.6623256206512451,346,1.0,2 +44846,9,1.0,2,1.5213274955749512,347,0.0,2 +44847,9,1.0,2,2.0093212127685547,348,0.0,2 +44848,9,1.0,2,1.4103288650512695,349,0.0,2 +44849,9,0.0,2,1.345329761505127,350,1.0,2 +44850,9,0.0,2,1.1193302869796753,351,1.0,2 +44851,9,0.0,2,1.507327675819397,352,0.0,2 +44852,9,1.0,2,1.7923240661621094,353,0.0,2 +44853,9,0.0,2,1.2343305349349976,354,0.0,2 +44854,9,0.0,2,1.2013304233551025,355,1.0,2 +44855,9,0.0,2,1.270330548286438,356,0.0,2 +44856,9,1.0,2,1.5593270063400269,357,0.0,2 +44857,9,0.0,2,1.2173304557800293,358,0.0,2 +44858,9,0.0,2,1.135330319404602,359,1.0,2 +44859,9,0.0,2,1.1253302097320557,360,1.0,2 +44860,9,0.0,2,1.298330307006836,361,0.0,2 +44861,9,0.0,2,1.1463303565979004,362,0.0,2 +44862,9,1.0,2,2.0533220767974854,363,0.0,2 +44863,9,1.0,2,2.0203211307525635,364,0.0,2 +44864,9,0.0,2,1.6963253021240234,365,1.0,2 +44865,9,0.0,2,1.2463304996490479,366,0.0,2 +44866,9,0.0,2,1.5273274183273315,367,0.0,2 +44867,9,0.0,2,1.7083251476287842,368,1.0,2 +44868,9,0.0,2,1.7713242769241333,369,1.0,2 +44869,9,0.0,2,1.1833304166793823,370,0.0,2 +44870,9,0.0,2,2.0773231983184814,371,1.0,2 +44871,9,0.0,2,1.4623281955718994,372,0.0,2 +44872,9,0.0,2,1.3973290920257568,373,0.0,2 +44873,9,1.0,2,1.3003302812576294,374,1.0,2 +44874,9,1.0,2,1.5273274183273315,375,0.0,2 +44875,9,0.0,2,2.0333211421966553,376,0.0,2 +44876,9,0.0,2,2.3243346214294434,377,0.0,2 +44877,9,0.0,2,1.3623294830322266,378,1.0,2 +44878,9,0.0,2,1.3083301782608032,379,1.0,2 +44879,9,0.0,2,1.2843304872512817,380,0.0,2 +44880,9,1.0,2,1.8383233547210693,381,0.0,2 +44881,9,0.0,2,2.0573222637176514,382,0.0,2 +44882,9,0.0,2,1.2713305950164795,383,0.0,2 +44883,9,1.0,2,2.1413261890411377,384,1.0,2 +44884,9,1.0,2,1.7553244829177856,385,0.0,2 +44885,9,1.0,2,1.718324899673462,386,0.0,2 +44886,9,0.0,2,1.2193304300308228,387,0.0,2 +44887,9,0.0,2,1.266330599784851,388,1.0,2 +44888,9,0.0,2,1.1683303117752075,389,0.0,2 +44889,9,0.0,2,1.1963304281234741,390,0.0,2 +44890,9,0.0,2,2.1213252544403076,391,1.0,2 +44891,9,0.0,2,1.3503296375274658,392,0.0,2 +44892,9,0.0,2,1.41632878780365,393,0.0,2 +44893,9,0.0,2,2.0903239250183105,394,0.0,2 +44894,9,0.0,2,1.812323808670044,395,1.0,2 +44895,9,0.0,2,1.245330572128296,396,0.0,2 +44896,9,0.0,2,1.3553296327590942,397,1.0,2 +44897,9,0.0,2,1.5713268518447876,398,0.0,2 +44898,9,1.0,2,1.5423271656036377,399,1.0,2 +44899,9,1.0,2,1.3533296585083008,400,1.0,2 +44900,9,1.0,2,1.301330327987671,401,1.0,2 +44901,9,1.0,2,1.3043302297592163,402,1.0,2 +44902,9,1.0,2,1.7323248386383057,403,1.0,2 +44903,9,1.0,2,1.533327341079712,404,0.0,2 +44904,9,0.0,2,1.3323298692703247,405,1.0,2 +44905,9,0.0,2,1.8913227319717407,406,1.0,2 +44906,9,0.0,2,1.3803292512893677,407,1.0,2 +44907,9,0.0,2,1.3663294315338135,408,1.0,2 +44908,9,0.0,2,1.3023302555084229,409,0.0,2 +44909,9,1.0,2,1.4043289422988892,410,0.0,2 +44910,9,0.0,2,1.3723293542861938,411,0.0,2 +44911,9,0.0,2,1.4193288087844849,412,0.0,2 +44912,9,1.0,2,1.9113224744796753,413,1.0,2 +44913,9,1.0,2,1.6373260021209717,414,1.0,2 +44914,9,1.0,2,1.297330379486084,415,0.0,2 +44915,9,0.0,2,2.0933239459991455,416,1.0,2 +44916,9,0.0,2,1.4933278560638428,417,0.0,2 +44917,9,1.0,2,1.3073302507400513,418,1.0,2 +44918,9,1.0,2,1.3053302764892578,419,0.0,2 +44919,9,0.0,2,1.6993252038955688,420,1.0,2 +44920,9,0.0,2,1.342329740524292,421,1.0,2 +44921,9,0.0,2,1.4503283500671387,422,0.0,2 +44922,9,1.0,2,1.787324070930481,423,0.0,2 +44923,9,0.0,2,2.0063211917877197,424,0.0,2 +44924,9,0.0,2,1.239330530166626,425,0.0,2 +44925,9,1.0,2,1.2753305435180664,426,1.0,2 +44926,9,1.0,2,1.408328890800476,427,1.0,2 +44927,9,1.0,2,1.3573296070098877,428,0.0,2 +44928,9,0.0,2,1.8233236074447632,429,0.0,2 +44929,9,0.0,2,1.2153304815292358,430,0.0,2 +44930,9,0.0,2,1.3403297662734985,431,1.0,2 +44931,9,1.0,2,1.4753280878067017,432,1.0,2 +44932,9,1.0,2,1.8433233499526978,433,1.0,2 +44933,9,1.0,2,2.3233346939086914,434,1.0,2 +44934,9,0.0,2,1.243330478668213,435,0.0,2 +44935,9,1.0,2,2.0453217029571533,436,1.0,2 +44936,9,0.0,2,1.3583295345306396,437,1.0,2 +44937,9,1.0,2,1.4793280363082886,438,0.0,2 +44938,9,0.0,2,1.4033290147781372,439,1.0,2 +44939,9,0.0,2,1.9153224229812622,440,1.0,2 +44940,9,0.0,2,1.206330418586731,441,0.0,2 +44941,9,0.0,2,1.6363260746002197,442,0.0,2 +44942,9,1.0,2,1.3263299465179443,443,1.0,2 +44943,9,1.0,2,1.2633305788040161,444,0.0,2 +44944,9,0.0,2,1.5923266410827637,445,0.0,2 +44945,9,0.0,2,1.998321294784546,446,0.0,2 +44946,9,1.0,2,1.3513296842575073,447,1.0,2 +44947,9,1.0,2,1.4623281955718994,448,0.0,2 +44948,9,1.0,2,1.2553305625915527,449,0.0,2 +44949,9,0.0,2,1.1313302516937256,450,1.0,2 +44950,9,0.0,2,1.2153304815292358,451,0.0,2 +44951,9,0.0,2,1.8873227834701538,452,0.0,2 +44952,9,0.0,2,1.4673281908035278,453,0.0,2 +44953,9,1.0,2,2.1363258361816406,454,0.0,2 +44954,9,0.0,2,1.3513296842575073,455,1.0,2 +44955,9,0.0,2,1.628326177597046,456,1.0,2 +44956,9,0.0,2,1.3123301267623901,457,0.0,2 +44957,9,0.0,2,1.5893266201019287,458,1.0,2 +44958,9,0.0,2,1.368329405784607,459,0.0,2 +44959,9,0.0,2,1.8673230409622192,460,0.0,2 +44960,9,1.0,2,1.3043302297592163,461,1.0,2 +44961,9,1.0,2,1.3513296842575073,462,1.0,2 +44962,9,1.0,2,1.4703280925750732,463,1.0,2 +44963,9,1.0,2,1.2823305130004883,464,1.0,2 +44964,9,1.0,2,1.8453233242034912,465,1.0,2 +44965,9,1.0,2,1.455328345298767,466,1.0,2 +44966,9,1.0,2,1.1463303565979004,467,0.0,2 +44967,9,1.0,2,2.1293256282806396,468,1.0,2 +44968,9,1.0,2,1.7423245906829834,469,1.0,2 +44969,9,1.0,2,1.3313299417495728,470,1.0,2 +44970,9,1.0,2,1.55532705783844,471,1.0,2 +44971,9,1.0,2,1.5453271865844727,472,0.0,2 +44972,9,0.0,2,1.9893214702606201,473,1.0,2 +44973,9,0.0,2,1.5423271656036377,474,0.0,2 +44974,9,0.0,2,1.3513296842575073,475,1.0,2 +44975,9,0.0,2,1.2503305673599243,476,1.0,2 +44976,9,0.0,2,2.1013243198394775,477,1.0,2 +44977,9,0.0,2,1.1333303451538086,478,1.0,2 +44978,9,0.0,2,1.57832670211792,479,0.0,2 +44979,9,0.0,2,1.618326187133789,480,0.0,2 +44980,9,0.0,2,1.3223299980163574,481,1.0,2 +44981,9,0.0,2,1.1603302955627441,482,0.0,2 +44982,9,0.0,2,1.7863240242004395,483,0.0,2 +44983,9,1.0,2,2.239330768585205,484,0.0,2 +44984,9,1.0,2,1.5113276243209839,485,0.0,2 +44985,9,1.0,2,1.8903226852416992,486,1.0,2 +44986,9,1.0,2,1.430328607559204,487,0.0,2 +44987,9,1.0,2,1.7783241271972656,488,1.0,2 +44988,9,1.0,2,1.2683305740356445,489,1.0,2 +44989,9,1.0,2,1.5363273620605469,490,0.0,2 +44990,9,0.0,2,1.714324951171875,491,1.0,2 +44991,9,0.0,2,1.1543303728103638,492,0.0,2 +44992,9,1.0,2,2.0553221702575684,493,1.0,2 +44993,9,1.0,2,1.3513296842575073,494,0.0,2 +44994,9,0.0,2,1.7983238697052002,495,0.0,2 +44995,9,1.0,2,1.8243236541748047,496,1.0,2 +44996,9,0.0,2,1.2993303537368774,497,1.0,2 +44997,9,1.0,2,1.5473271608352661,498,1.0,2 +44998,9,1.0,2,1.4573283195495605,499,0.0,2 +44999,9,0.0,2,1.3923290967941284,500,0.0,2 +45000,10,1.0,0,1.4480253458023071,1,1.0,2 +45001,10,0.0,0,1.6830222606658936,2,0.0,2 +45002,10,1.0,0,1.6200231313705444,3,1.0,2 +45003,10,1.0,0,1.8000208139419556,4,1.0,2 +45004,10,1.0,0,1.4760249853134155,5,1.0,2 +45005,10,1.0,0,1.3050271272659302,6,1.0,2 +45006,10,1.0,0,1.3250268697738647,7,1.0,2 +45007,10,1.0,0,1.3710262775421143,8,1.0,2 +45008,10,1.0,0,1.3020272254943848,9,0.0,2 +45009,10,1.0,0,1.2450275421142578,10,1.0,2 +45010,10,1.0,0,1.3410266637802124,11,1.0,2 +45011,10,1.0,0,1.2040274143218994,12,0.0,2 +45012,10,0.0,0,1.2880274057388306,13,0.0,2 +45013,10,1.0,0,1.5390241146087646,14,1.0,2 +45014,10,1.0,0,1.6390228271484375,15,1.0,2 +45015,10,1.0,0,1.3220269680023193,16,1.0,2 +45016,10,1.0,0,1.3710262775421143,17,1.0,2 +45017,10,1.0,0,1.2470275163650513,18,0.0,2 +45018,10,1.0,0,2.1060218811035156,19,1.0,2 +45019,10,1.0,0,1.405025839805603,20,1.0,2 +45020,10,1.0,0,1.566023826599121,21,1.0,2 +45021,10,1.0,0,1.8580200672149658,22,1.0,2 +45022,10,1.0,0,1.7710211277008057,23,1.0,2 +45023,10,1.0,0,1.3920260667800903,24,1.0,2 +45024,10,1.0,0,1.3450266122817993,25,0.0,2 +45025,10,1.0,0,1.6790223121643066,26,1.0,2 +45026,10,1.0,0,1.7340216636657715,27,1.0,2 +45027,10,1.0,0,1.2530275583267212,28,1.0,2 +45028,10,1.0,0,1.430025577545166,29,1.0,2 +45029,10,1.0,0,1.2450275421142578,30,1.0,2 +45030,10,1.0,0,1.4400254487991333,31,1.0,2 +45031,10,1.0,0,1.313027024269104,32,1.0,2 +45032,10,1.0,0,1.4760249853134155,33,0.0,2 +45033,10,1.0,0,1.5180244445800781,34,1.0,2 +45034,10,1.0,0,1.4190256595611572,35,1.0,2 +45035,10,1.0,0,1.431025505065918,36,1.0,2 +45036,10,1.0,0,1.2680275440216064,37,1.0,2 +45037,10,1.0,0,1.229027509689331,38,1.0,2 +45038,10,1.0,0,1.2420275211334229,39,1.0,2 +45039,10,1.0,0,1.2330275774002075,40,1.0,2 +45040,10,0.0,0,1.3480266332626343,41,0.0,2 +45041,10,1.0,0,1.7010221481323242,42,1.0,2 +45042,10,1.0,0,1.382026195526123,43,1.0,2 +45043,10,1.0,0,1.5090245008468628,44,1.0,2 +45044,10,0.0,0,1.2300275564193726,45,0.0,2 +45045,10,1.0,0,1.4660251140594482,46,1.0,2 +45046,10,1.0,0,1.313027024269104,47,1.0,2 +45047,10,1.0,0,1.4210256338119507,48,0.0,2 +45048,10,0.0,0,1.7640212774276733,49,0.0,2 +45049,10,1.0,0,2.0570197105407715,50,1.0,2 +45050,10,1.0,0,2.0310184955596924,51,1.0,2 +45051,10,0.0,0,1.361026406288147,52,0.0,2 +45052,10,1.0,0,1.2150274515151978,53,1.0,2 +45053,10,1.0,0,1.263027548789978,54,1.0,2 +45054,10,1.0,0,1.3190269470214844,55,1.0,2 +45055,10,1.0,0,1.6200231313705444,56,1.0,2 +45056,10,0.0,0,1.5970234870910645,57,0.0,2 +45057,10,1.0,0,1.4410253763198853,58,1.0,2 +45058,10,1.0,0,1.6230230331420898,59,1.0,2 +45059,10,0.0,0,1.287027359008789,60,0.0,2 +45060,10,1.0,0,1.2080274820327759,61,1.0,2 +45061,10,1.0,0,1.3750262260437012,62,0.0,2 +45062,10,1.0,0,1.3660264015197754,63,1.0,2 +45063,10,1.0,0,1.7770211696624756,64,1.0,2 +45064,10,1.0,0,1.3840261697769165,65,1.0,2 +45065,10,0.0,0,1.8700199127197266,66,0.0,2 +45066,10,1.0,0,1.54802405834198,67,1.0,2 +45067,10,1.0,0,1.3730262517929077,68,1.0,2 +45068,10,0.0,0,1.138027310371399,69,0.0,2 +45069,10,1.0,0,1.335026741027832,70,0.0,2 +45070,10,1.0,0,1.6560226678848267,71,1.0,2 +45071,10,1.0,0,1.3680263757705688,72,1.0,2 +45072,10,1.0,0,1.5830235481262207,73,0.0,2 +45073,10,0.0,0,1.2270275354385376,74,0.0,2 +45074,10,1.0,0,1.5560239553451538,75,0.0,2 +45075,10,0.0,0,1.379026174545288,76,0.0,2 +45076,10,0.0,0,1.3110270500183105,77,0.0,2 +45077,10,1.0,0,1.2240275144577026,78,1.0,2 +45078,10,0.0,0,1.7870209217071533,79,0.0,2 +45079,10,1.0,0,1.7380216121673584,80,1.0,2 +45080,10,1.0,0,1.3200269937515259,81,1.0,2 +45081,10,1.0,0,1.5180244445800781,82,1.0,2 +45082,10,1.0,0,1.7520214319229126,83,1.0,2 +45083,10,1.0,0,1.5680238008499146,84,1.0,2 +45084,10,1.0,0,1.3920260667800903,85,1.0,2 +45085,10,1.0,0,1.8480201959609985,86,1.0,2 +45086,10,1.0,0,1.709022045135498,87,1.0,2 +45087,10,0.0,0,2.235028028488159,88,1.0,2 +45088,10,0.0,0,1.379026174545288,89,0.0,2 +45089,10,1.0,0,1.4590251445770264,90,1.0,2 +45090,10,1.0,0,1.5370242595672607,91,1.0,2 +45091,10,1.0,0,1.6290230751037598,92,1.0,2 +45092,10,1.0,0,1.4160257577896118,93,1.0,2 +45093,10,1.0,0,1.286027431488037,94,0.0,2 +45094,10,0.0,0,1.4070258140563965,95,0.0,2 +45095,10,1.0,0,1.4350254535675049,96,1.0,2 +45096,10,1.0,0,1.5450241565704346,97,0.0,2 +45097,10,1.0,0,1.471024990081787,98,1.0,2 +45098,10,1.0,0,1.356026530265808,99,0.0,2 +45099,10,0.0,0,1.4420254230499268,100,0.0,2 +45100,10,0.0,0,1.9070193767547607,101,1.0,2 +45101,10,0.0,0,1.916019320487976,102,0.0,2 +45102,10,0.0,0,1.5470240116119385,103,0.0,2 +45103,10,0.0,0,1.2250275611877441,104,0.0,2 +45104,10,1.0,0,1.7740211486816406,105,1.0,2 +45105,10,1.0,0,1.9580187797546387,106,1.0,2 +45106,10,1.0,0,1.9590187072753906,107,1.0,2 +45107,10,0.0,0,1.3470265865325928,108,0.0,2 +45108,10,1.0,0,1.3750262260437012,109,1.0,2 +45109,10,1.0,0,2.1180224418640137,110,1.0,2 +45110,10,1.0,0,1.6760224103927612,111,1.0,2 +45111,10,1.0,0,1.6410229206085205,112,1.0,2 +45112,10,1.0,0,1.412025809288025,113,1.0,2 +45113,10,1.0,0,1.3070271015167236,114,1.0,2 +45114,10,1.0,0,1.711021900177002,115,1.0,2 +45115,10,1.0,0,1.1880273818969727,116,1.0,2 +45116,10,1.0,0,1.3890260457992554,117,1.0,2 +45117,10,1.0,0,1.236027479171753,118,1.0,2 +45118,10,1.0,0,1.622023105621338,119,1.0,2 +45119,10,1.0,0,1.6680225133895874,120,1.0,2 +45120,10,1.0,0,1.7370216846466064,121,1.0,2 +45121,10,1.0,0,1.3430266380310059,122,1.0,2 +45122,10,1.0,0,1.3650263547897339,123,1.0,2 +45123,10,1.0,0,1.2920273542404175,124,1.0,2 +45124,10,1.0,0,1.2450275421142578,125,1.0,2 +45125,10,1.0,0,1.3070271015167236,126,1.0,2 +45126,10,1.0,0,1.2420275211334229,127,1.0,2 +45127,10,1.0,0,1.2820274829864502,128,1.0,2 +45128,10,1.0,0,1.2700276374816895,129,1.0,2 +45129,10,1.0,0,1.2590276002883911,130,1.0,2 +45130,10,1.0,0,1.5900235176086426,131,1.0,2 +45131,10,1.0,0,1.5590238571166992,132,1.0,2 +45132,10,1.0,0,1.313027024269104,133,0.0,2 +45133,10,1.0,0,1.7190217971801758,134,1.0,2 +45134,10,1.0,0,1.5900235176086426,135,1.0,2 +45135,10,1.0,0,1.5980234146118164,136,1.0,2 +45136,10,1.0,0,1.5810236930847168,137,1.0,2 +45137,10,1.0,0,1.7290217876434326,138,1.0,2 +45138,10,1.0,0,1.4700250625610352,139,1.0,2 +45139,10,1.0,0,1.3450266122817993,140,1.0,2 +45140,10,1.0,0,1.618023157119751,141,1.0,2 +45141,10,1.0,0,1.5720237493515015,142,0.0,2 +45142,10,1.0,0,1.4590251445770264,143,1.0,2 +45143,10,1.0,0,1.6850223541259766,144,1.0,2 +45144,10,1.0,0,1.5940234661102295,145,1.0,2 +45145,10,1.0,0,1.622023105621338,146,1.0,2 +45146,10,1.0,0,1.3100271224975586,147,1.0,2 +45147,10,1.0,0,1.3030271530151367,148,1.0,2 +45148,10,1.0,0,1.295027256011963,149,1.0,2 +45149,10,1.0,0,1.2400275468826294,150,1.0,2 +45150,10,1.0,0,1.4860248565673828,151,1.0,2 +45151,10,1.0,0,1.2770274877548218,152,1.0,2 +45152,10,1.0,0,1.162027359008789,153,1.0,2 +45153,10,1.0,0,1.4810248613357544,154,1.0,2 +45154,10,1.0,0,1.552024006843567,155,1.0,2 +45155,10,1.0,0,1.9500188827514648,156,1.0,2 +45156,10,0.0,0,1.427025556564331,157,0.0,2 +45157,10,1.0,0,1.4830248355865479,158,0.0,2 +45158,10,0.0,0,1.4150257110595703,159,1.0,2 +45159,10,0.0,0,1.7880209684371948,160,0.0,2 +45160,10,0.0,0,1.6280230283737183,161,0.0,2 +45161,10,1.0,0,1.853020191192627,162,0.0,2 +45162,10,0.0,0,2.2900304794311523,163,0.0,2 +45163,10,1.0,0,1.5050245523452759,164,1.0,2 +45164,10,1.0,0,1.3000272512435913,165,1.0,2 +45165,10,1.0,0,1.684022307395935,166,1.0,2 +45166,10,1.0,0,1.6990220546722412,167,1.0,2 +45167,10,1.0,0,1.529024362564087,168,0.0,2 +45168,10,1.0,0,1.3770262002944946,169,0.0,2 +45169,10,1.0,0,1.500024676322937,170,1.0,2 +45170,10,1.0,0,1.5860235691070557,171,1.0,2 +45171,10,1.0,0,1.6010234355926514,172,1.0,2 +45172,10,1.0,0,1.5200244188308716,173,1.0,2 +45173,10,1.0,0,1.644022822380066,174,1.0,2 +45174,10,1.0,0,1.2550275325775146,175,0.0,2 +45175,10,1.0,0,1.2990272045135498,176,1.0,2 +45176,10,1.0,0,1.4290255308151245,177,1.0,2 +45177,10,1.0,0,1.9970183372497559,178,1.0,2 +45178,10,1.0,0,1.286027431488037,179,1.0,2 +45179,10,1.0,0,1.2420275211334229,180,0.0,2 +45180,10,1.0,0,1.5720237493515015,181,1.0,2 +45181,10,1.0,0,1.6950221061706543,182,1.0,2 +45182,10,1.0,0,1.8210206031799316,183,1.0,2 +45183,10,0.0,0,2.2400283813476562,184,0.0,2 +45184,10,1.0,0,1.5930235385894775,185,1.0,2 +45185,10,1.0,0,1.356026530265808,186,1.0,2 +45186,10,1.0,0,1.544024109840393,187,1.0,2 +45187,10,1.0,0,1.2450275421142578,188,1.0,2 +45188,10,1.0,0,1.2230274677276611,189,0.0,2 +45189,10,1.0,0,1.4720250368118286,190,1.0,2 +45190,10,1.0,0,1.229027509689331,191,1.0,2 +45191,10,0.0,0,1.452025294303894,192,0.0,2 +45192,10,1.0,0,1.6090233325958252,193,1.0,2 +45193,10,1.0,0,1.3720263242721558,194,1.0,2 +45194,10,1.0,0,1.3920260667800903,195,1.0,2 +45195,10,1.0,0,1.5800236463546753,196,1.0,2 +45196,10,0.0,0,1.51902437210083,197,0.0,2 +45197,10,1.0,0,1.3140270709991455,198,0.0,2 +45198,10,1.0,0,1.5570240020751953,199,1.0,2 +45199,10,1.0,0,1.229027509689331,200,1.0,2 +45200,10,1.0,0,1.4180257320404053,201,1.0,2 +45201,10,1.0,0,1.5800236463546753,202,0.0,2 +45202,10,1.0,0,1.3400267362594604,203,1.0,2 +45203,10,1.0,0,1.4410253763198853,204,0.0,2 +45204,10,1.0,0,2.0310184955596924,205,0.0,2 +45205,10,0.0,0,1.9130194187164307,206,1.0,2 +45206,10,0.0,0,1.1320273876190186,207,0.0,2 +45207,10,0.0,0,1.4500253200531006,208,0.0,2 +45208,10,0.0,0,1.5030245780944824,209,0.0,2 +45209,10,1.0,0,1.6260230541229248,210,1.0,2 +45210,10,1.0,0,1.2980272769927979,211,1.0,2 +45211,10,1.0,0,1.6310229301452637,212,1.0,2 +45212,10,1.0,0,1.2770274877548218,213,1.0,2 +45213,10,1.0,0,1.662022590637207,214,1.0,2 +45214,10,1.0,0,1.8580200672149658,215,0.0,2 +45215,10,1.0,0,1.7340216636657715,216,1.0,2 +45216,10,0.0,0,1.6760224103927612,217,0.0,2 +45217,10,0.0,0,1.5600239038467407,218,1.0,2 +45218,10,0.0,0,1.4380254745483398,219,0.0,2 +45219,10,1.0,0,1.688022255897522,220,1.0,2 +45220,10,1.0,0,1.2140275239944458,221,0.0,2 +45221,10,1.0,0,1.6390228271484375,222,0.0,2 +45222,10,0.0,0,1.4480253458023071,223,1.0,2 +45223,10,0.0,0,1.262027621269226,224,0.0,2 +45224,10,0.0,0,2.2720298767089844,225,0.0,2 +45225,10,0.0,0,1.1770274639129639,226,0.0,2 +45226,10,0.0,0,1.2180274724960327,227,0.0,2 +45227,10,0.0,0,1.5310242176055908,228,0.0,2 +45228,10,1.0,0,1.4550251960754395,229,1.0,2 +45229,10,1.0,0,1.6640225648880005,230,1.0,2 +45230,10,1.0,0,1.5510239601135254,231,1.0,2 +45231,10,1.0,0,1.3950259685516357,232,1.0,2 +45232,10,1.0,0,1.4480253458023071,233,1.0,2 +45233,10,1.0,0,1.622023105621338,234,1.0,2 +45234,10,1.0,0,1.38602614402771,235,1.0,2 +45235,10,1.0,0,1.7940208911895752,236,0.0,2 +45236,10,1.0,0,1.5380241870880127,237,1.0,2 +45237,10,1.0,0,1.361026406288147,238,0.0,2 +45238,10,1.0,0,1.9170193672180176,239,1.0,2 +45239,10,1.0,0,1.2780275344848633,240,1.0,2 +45240,10,1.0,0,1.199027419090271,241,1.0,2 +45241,10,1.0,0,1.6260230541229248,242,1.0,2 +45242,10,1.0,0,1.5400241613388062,243,0.0,2 +45243,10,0.0,0,1.8260204792022705,244,0.0,2 +45244,10,0.0,0,2.467038869857788,245,0.0,2 +45245,10,0.0,0,1.9320191144943237,246,0.0,2 +45246,10,0.0,0,1.4070258140563965,247,0.0,2 +45247,10,0.0,0,1.1920274496078491,248,1.0,2 +45248,10,0.0,0,1.235027551651001,249,0.0,2 +45249,10,1.0,0,1.9700186252593994,250,1.0,2 +45250,10,1.0,0,1.4320255517959595,251,0.0,2 +45251,10,0.0,0,1.8350203037261963,252,0.0,2 +45252,10,0.0,0,2.0760207176208496,253,0.0,2 +45253,10,1.0,0,1.35702645778656,254,1.0,2 +45254,10,1.0,0,1.1730273962020874,255,1.0,2 +45255,10,1.0,0,1.335026741027832,256,1.0,2 +45256,10,1.0,0,1.2980272769927979,257,1.0,2 +45257,10,1.0,0,2.205026626586914,258,1.0,2 +45258,10,1.0,0,1.1880273818969727,259,0.0,2 +45259,10,0.0,0,1.2460275888442993,260,0.0,2 +45260,10,0.0,0,1.1300272941589355,261,0.0,2 +45261,10,1.0,0,1.263027548789978,262,1.0,2 +45262,10,1.0,0,1.4620251655578613,263,1.0,2 +45263,10,1.0,0,1.6450228691101074,264,1.0,2 +45264,10,1.0,0,1.2590276002883911,265,1.0,2 +45265,10,1.0,0,1.313027024269104,266,1.0,2 +45266,10,1.0,0,1.195027470588684,267,1.0,2 +45267,10,1.0,0,1.3620264530181885,268,1.0,2 +45268,10,1.0,0,1.6410229206085205,269,0.0,2 +45269,10,1.0,0,1.8180205821990967,270,1.0,2 +45270,10,1.0,0,1.3060271739959717,271,1.0,2 +45271,10,1.0,0,1.3620264530181885,272,1.0,2 +45272,10,1.0,0,1.1790274381637573,273,1.0,2 +45273,10,1.0,0,1.2580275535583496,274,1.0,2 +45274,10,1.0,0,1.2580275535583496,275,0.0,2 +45275,10,0.0,0,1.1460273265838623,276,0.0,2 +45276,10,0.0,0,1.7520214319229126,277,1.0,2 +45277,10,0.0,0,1.4980247020721436,278,0.0,2 +45278,10,0.0,0,1.2750275135040283,279,0.0,2 +45279,10,1.0,0,1.891019582748413,280,1.0,2 +45280,10,1.0,0,1.290027379989624,281,1.0,2 +45281,10,1.0,0,1.265027642250061,282,0.0,2 +45282,10,1.0,0,1.5450241565704346,283,1.0,2 +45283,10,1.0,0,1.54802405834198,284,1.0,2 +45284,10,1.0,0,1.3360267877578735,285,1.0,2 +45285,10,1.0,0,1.7190217971801758,286,1.0,2 +45286,10,1.0,0,1.4130257368087769,287,1.0,2 +45287,10,1.0,0,1.7740211486816406,288,1.0,2 +45288,10,1.0,0,1.4700250625610352,289,0.0,2 +45289,10,1.0,0,1.8670198917388916,290,1.0,2 +45290,10,0.0,0,1.5880235433578491,291,0.0,2 +45291,10,1.0,0,1.5880235433578491,292,1.0,2 +45292,10,1.0,0,1.7500214576721191,293,1.0,2 +45293,10,1.0,0,1.5030245780944824,294,0.0,2 +45294,10,1.0,0,2.1060218811035156,295,1.0,2 +45295,10,1.0,0,1.482024908065796,296,1.0,2 +45296,10,1.0,0,1.5870234966278076,297,1.0,2 +45297,10,1.0,0,1.3540265560150146,298,0.0,2 +45298,10,0.0,0,1.4450253248214722,299,0.0,2 +45299,10,1.0,0,1.3920260667800903,300,1.0,2 +45300,10,1.0,0,1.40902578830719,301,1.0,2 +45301,10,0.0,0,1.3520265817642212,302,0.0,2 +45302,10,0.0,0,1.619023084640503,303,0.0,2 +45303,10,1.0,0,1.313027024269104,304,1.0,2 +45304,10,1.0,0,1.317026972770691,305,0.0,2 +45305,10,1.0,0,1.4720250368118286,306,1.0,2 +45306,10,1.0,0,2.0320186614990234,307,1.0,2 +45307,10,1.0,0,1.2560275793075562,308,1.0,2 +45308,10,1.0,0,1.2160274982452393,309,1.0,2 +45309,10,1.0,0,1.6420228481292725,310,1.0,2 +45310,10,0.0,0,1.9320191144943237,311,0.0,2 +45311,10,1.0,0,1.6370229721069336,312,1.0,2 +45312,10,1.0,0,1.526024341583252,313,1.0,2 +45313,10,1.0,0,1.4180257320404053,314,1.0,2 +45314,10,0.0,0,1.2140275239944458,315,0.0,2 +45315,10,1.0,0,1.40902578830719,316,1.0,2 +45316,10,1.0,0,1.6710224151611328,317,1.0,2 +45317,10,1.0,0,1.2930272817611694,318,1.0,2 +45318,10,1.0,0,1.263027548789978,319,1.0,2 +45319,10,1.0,0,1.757021427154541,320,1.0,2 +45320,10,1.0,0,1.544024109840393,321,0.0,2 +45321,10,1.0,0,2.0540194511413574,322,1.0,2 +45322,10,1.0,0,2.1040220260620117,323,1.0,2 +45323,10,1.0,0,1.269027590751648,324,1.0,2 +45324,10,1.0,0,1.383026123046875,325,0.0,2 +45325,10,1.0,0,1.5680238008499146,326,1.0,2 +45326,10,1.0,0,1.8000208139419556,327,1.0,2 +45327,10,1.0,0,1.1810274124145508,328,1.0,2 +45328,10,1.0,0,1.1900274753570557,329,1.0,2 +45329,10,1.0,0,1.2300275564193726,330,1.0,2 +45330,10,1.0,0,1.434025526046753,331,1.0,2 +45331,10,1.0,0,1.7050220966339111,332,1.0,2 +45332,10,1.0,0,1.6030232906341553,333,1.0,2 +45333,10,1.0,0,1.3320268392562866,334,0.0,2 +45334,10,0.0,0,1.2220275402069092,335,0.0,2 +45335,10,1.0,0,1.9220192432403564,336,1.0,2 +45336,10,1.0,0,1.4390254020690918,337,1.0,2 +45337,10,1.0,0,1.8140206336975098,338,0.0,2 +45338,10,1.0,0,1.49602472782135,339,1.0,2 +45339,10,0.0,0,2.3090314865112305,340,0.0,2 +45340,10,1.0,0,1.5630238056182861,341,1.0,2 +45341,10,1.0,0,1.2700276374816895,342,1.0,2 +45342,10,1.0,0,1.3650263547897339,343,1.0,2 +45343,10,1.0,0,1.205027461051941,344,1.0,2 +45344,10,1.0,0,1.4910247325897217,345,1.0,2 +45345,10,1.0,0,1.7660212516784668,346,1.0,2 +45346,10,1.0,0,1.38602614402771,347,1.0,2 +45347,10,1.0,0,2.185025691986084,348,0.0,2 +45348,10,1.0,0,1.5540239810943604,349,1.0,2 +45349,10,1.0,0,1.3740262985229492,350,1.0,2 +45350,10,1.0,0,1.4060258865356445,351,1.0,2 +45351,10,1.0,0,1.474025011062622,352,1.0,2 +45352,10,1.0,0,1.2100274562835693,353,0.0,2 +45353,10,1.0,0,1.7680212259292603,354,1.0,2 +45354,10,1.0,0,1.3970259428024292,355,1.0,2 +45355,10,1.0,0,1.4430253505706787,356,0.0,2 +45356,10,1.0,0,1.2680275440216064,357,1.0,2 +45357,10,1.0,0,2.228027820587158,358,0.0,2 +45358,10,1.0,0,1.2800275087356567,359,0.0,2 +45359,10,1.0,0,1.552024006843567,360,1.0,2 +45360,10,1.0,0,1.8000208139419556,361,1.0,2 +45361,10,1.0,0,1.3890260457992554,362,1.0,2 +45362,10,1.0,0,1.1910274028778076,363,1.0,2 +45363,10,0.0,0,1.198027491569519,364,0.0,2 +45364,10,0.0,0,1.5310242176055908,365,0.0,2 +45365,10,0.0,0,1.4240256547927856,366,0.0,2 +45366,10,1.0,0,1.4470252990722656,367,0.0,2 +45367,10,0.0,0,1.6850223541259766,368,0.0,2 +45368,10,0.0,0,1.4610251188278198,369,0.0,2 +45369,10,0.0,0,2.2970309257507324,370,1.0,2 +45370,10,1.0,0,1.202027440071106,371,1.0,2 +45371,10,1.0,0,1.1830273866653442,372,1.0,2 +45372,10,1.0,0,2.0420188903808594,373,1.0,2 +45373,10,1.0,0,1.4280256032943726,374,1.0,2 +45374,10,1.0,0,1.9950182437896729,375,1.0,2 +45375,10,0.0,0,1.35702645778656,376,0.0,2 +45376,10,1.0,0,1.6930222511291504,377,1.0,2 +45377,10,1.0,0,1.757021427154541,378,1.0,2 +45378,10,1.0,0,1.8110206127166748,379,0.0,2 +45379,10,1.0,0,1.4450253248214722,380,0.0,2 +45380,10,1.0,0,1.574023723602295,381,1.0,2 +45381,10,0.0,0,1.2540276050567627,382,0.0,2 +45382,10,0.0,0,1.4620251655578613,383,0.0,2 +45383,10,1.0,0,1.5630238056182861,384,1.0,2 +45384,10,1.0,0,1.4250255823135376,385,1.0,2 +45385,10,1.0,0,1.4180257320404053,386,1.0,2 +45386,10,1.0,0,1.8170206546783447,387,1.0,2 +45387,10,1.0,0,1.4030258655548096,388,0.0,2 +45388,10,0.0,0,1.1580274105072021,389,0.0,2 +45389,10,1.0,0,1.3360267877578735,390,1.0,2 +45390,10,1.0,0,1.2750275135040283,391,1.0,2 +45391,10,1.0,0,1.3270268440246582,392,1.0,2 +45392,10,1.0,0,1.3360267877578735,393,1.0,2 +45393,10,1.0,0,1.663022518157959,394,1.0,2 +45394,10,1.0,0,1.4250255823135376,395,1.0,2 +45395,10,1.0,0,1.3970259428024292,396,1.0,2 +45396,10,1.0,0,1.8790197372436523,397,1.0,2 +45397,10,1.0,0,1.5120245218276978,398,1.0,2 +45398,10,1.0,0,1.8360203504562378,399,1.0,2 +45399,10,1.0,0,1.6530227661132812,400,1.0,2 +45400,10,1.0,0,1.3480266332626343,401,1.0,2 +45401,10,1.0,0,1.2080274820327759,402,1.0,2 +45402,10,1.0,0,1.2210274934768677,403,1.0,2 +45403,10,1.0,0,1.236027479171753,404,1.0,2 +45404,10,1.0,0,1.4730249643325806,405,1.0,2 +45405,10,0.0,0,1.2070274353027344,406,0.0,2 +45406,10,1.0,0,1.4100258350372314,407,1.0,2 +45407,10,1.0,0,1.6200231313705444,408,1.0,2 +45408,10,1.0,0,1.3750262260437012,409,1.0,2 +45409,10,1.0,0,1.3490265607833862,410,1.0,2 +45410,10,1.0,0,1.2990272045135498,411,1.0,2 +45411,10,1.0,0,1.3980259895324707,412,0.0,2 +45412,10,1.0,0,1.4400254487991333,413,1.0,2 +45413,10,1.0,0,2.0130181312561035,414,1.0,2 +45414,10,1.0,0,1.5100245475769043,415,1.0,2 +45415,10,1.0,0,1.4010258913040161,416,1.0,2 +45416,10,1.0,0,1.5600239038467407,417,1.0,2 +45417,10,1.0,0,1.4610251188278198,418,1.0,2 +45418,10,1.0,0,1.3710262775421143,419,1.0,2 +45419,10,1.0,0,1.6260230541229248,420,0.0,2 +45420,10,0.0,0,1.2850273847579956,421,1.0,2 +45421,10,0.0,0,1.8710198402404785,422,0.0,2 +45422,10,0.0,0,1.7160218954086304,423,0.0,2 +45423,10,1.0,0,1.6480227708816528,424,1.0,2 +45424,10,1.0,0,1.9020195007324219,425,1.0,2 +45425,10,1.0,0,1.3840261697769165,426,1.0,2 +45426,10,1.0,0,2.0260181427001953,427,1.0,2 +45427,10,1.0,0,1.3020272254943848,428,1.0,2 +45428,10,1.0,0,1.4470252990722656,429,1.0,2 +45429,10,1.0,0,1.851020097732544,430,0.0,2 +45430,10,0.0,0,2.0070180892944336,431,1.0,2 +45431,10,0.0,0,1.6580226421356201,432,0.0,2 +45432,10,0.0,0,1.6730225086212158,433,0.0,2 +45433,10,1.0,0,1.567023754119873,434,1.0,2 +45434,10,1.0,0,1.5310242176055908,435,1.0,2 +45435,10,1.0,0,1.4410253763198853,436,0.0,2 +45436,10,1.0,0,1.5970234870910645,437,1.0,2 +45437,10,1.0,0,1.2980272769927979,438,1.0,2 +45438,10,1.0,0,1.2710275650024414,439,1.0,2 +45439,10,1.0,0,1.714021921157837,440,1.0,2 +45440,10,1.0,0,1.3680263757705688,441,1.0,2 +45441,10,1.0,0,1.5870234966278076,442,1.0,2 +45442,10,1.0,0,1.3280268907546997,443,1.0,2 +45443,10,1.0,0,1.198027491569519,444,1.0,2 +45444,10,1.0,0,1.4060258865356445,445,1.0,2 +45445,10,1.0,0,1.2550275325775146,446,1.0,2 +45446,10,1.0,0,1.4360255002975464,447,1.0,2 +45447,10,1.0,0,1.529024362564087,448,1.0,2 +45448,10,1.0,0,1.294027328491211,449,1.0,2 +45449,10,1.0,0,1.3000272512435913,450,1.0,2 +45450,10,1.0,0,1.2890273332595825,451,1.0,2 +45451,10,1.0,0,1.3300268650054932,452,1.0,2 +45452,10,1.0,0,1.2460275888442993,453,1.0,2 +45453,10,1.0,0,1.1890274286270142,454,1.0,2 +45454,10,1.0,0,1.3110270500183105,455,0.0,2 +45455,10,1.0,0,1.8320204019546509,456,0.0,2 +45456,10,0.0,0,1.6820223331451416,457,0.0,2 +45457,10,0.0,0,1.566023826599121,458,0.0,2 +45458,10,1.0,0,1.4000259637832642,459,1.0,2 +45459,10,1.0,0,1.5980234146118164,460,1.0,2 +45460,10,1.0,0,1.5380241870880127,461,1.0,2 +45461,10,1.0,0,1.2890273332595825,462,0.0,2 +45462,10,1.0,0,1.9020195007324219,463,1.0,2 +45463,10,0.0,0,2.440037727355957,464,0.0,2 +45464,10,1.0,0,1.6310229301452637,465,1.0,2 +45465,10,1.0,0,1.780021071434021,466,1.0,2 +45466,10,1.0,0,1.4850248098373413,467,1.0,2 +45467,10,1.0,0,1.4240256547927856,468,1.0,2 +45468,10,1.0,0,1.1570273637771606,469,1.0,2 +45469,10,1.0,0,1.5410242080688477,470,1.0,2 +45470,10,1.0,0,1.3670263290405273,471,1.0,2 +45471,10,1.0,0,1.2430275678634644,472,1.0,2 +45472,10,1.0,0,1.9360190629959106,473,1.0,2 +45473,10,1.0,0,1.8800197839736938,474,1.0,2 +45474,10,1.0,0,1.3580265045166016,475,0.0,2 +45475,10,1.0,0,1.3760262727737427,476,1.0,2 +45476,10,1.0,0,1.165027379989624,477,1.0,2 +45477,10,0.0,0,1.1780273914337158,478,0.0,2 +45478,10,1.0,0,1.5680238008499146,479,1.0,2 +45479,10,1.0,0,1.941019058227539,480,1.0,2 +45480,10,1.0,0,1.4590251445770264,481,1.0,2 +45481,10,1.0,0,1.3460266590118408,482,1.0,2 +45482,10,1.0,0,1.3260269165039062,483,0.0,2 +45483,10,0.0,0,1.3630263805389404,484,0.0,2 +45484,10,0.0,0,1.239027500152588,485,0.0,2 +45485,10,1.0,0,1.640022873878479,486,1.0,2 +45486,10,1.0,0,1.4250255823135376,487,1.0,2 +45487,10,1.0,0,1.6920222043991089,488,1.0,2 +45488,10,1.0,0,1.2080274820327759,489,1.0,2 +45489,10,1.0,0,1.4000259637832642,490,0.0,2 +45490,10,1.0,0,1.3890260457992554,491,1.0,2 +45491,10,1.0,0,1.4870247840881348,492,0.0,2 +45492,10,1.0,0,1.614023208618164,493,1.0,2 +45493,10,1.0,0,1.3040271997451782,494,1.0,2 +45494,10,1.0,0,1.4920247793197632,495,1.0,2 +45495,10,1.0,0,1.2400275468826294,496,1.0,2 +45496,10,1.0,0,1.3200269937515259,497,1.0,2 +45497,10,1.0,0,1.479024887084961,498,1.0,2 +45498,10,1.0,0,1.3080271482467651,499,1.0,2 +45499,10,1.0,0,1.159027338027954,500,1.0,2 +45500,10,0.0,1,1.4180257320404053,1,0.0,2 +45501,10,1.0,1,1.57102370262146,2,1.0,2 +45502,10,0.0,1,1.9620187282562256,3,0.0,2 +45503,10,1.0,1,1.6860222816467285,4,1.0,2 +45504,10,1.0,1,1.9920183420181274,5,1.0,2 +45505,10,1.0,1,1.3990259170532227,6,0.0,2 +45506,10,1.0,1,1.4500253200531006,7,0.0,2 +45507,10,0.0,1,1.171027421951294,8,0.0,2 +45508,10,0.0,1,1.239027500152588,9,0.0,2 +45509,10,0.0,1,1.2420275211334229,10,0.0,2 +45510,10,0.0,1,1.9190192222595215,11,1.0,2 +45511,10,0.0,1,1.2590276002883911,12,0.0,2 +45512,10,1.0,1,1.475024938583374,13,0.0,2 +45513,10,0.0,1,1.291027307510376,14,1.0,2 +45514,10,0.0,1,1.3770262002944946,15,1.0,2 +45515,10,0.0,1,1.3840261697769165,16,0.0,2 +45516,10,0.0,1,2.0990216732025146,17,0.0,2 +45517,10,1.0,1,1.3850260972976685,18,0.0,2 +45518,10,0.0,1,1.1830273866653442,19,0.0,2 +45519,10,1.0,1,1.9570188522338867,20,1.0,2 +45520,10,1.0,1,1.5980234146118164,21,0.0,2 +45521,10,1.0,1,1.847020149230957,22,1.0,2 +45522,10,1.0,1,1.4370254278182983,23,1.0,2 +45523,10,1.0,1,1.4600251913070679,24,1.0,2 +45524,10,0.0,1,1.4940247535705566,25,0.0,2 +45525,10,0.0,1,1.4170256853103638,26,1.0,2 +45526,10,0.0,1,2.0870211124420166,27,0.0,2 +45527,10,1.0,1,1.2430275678634644,28,1.0,2 +45528,10,1.0,1,1.317026972770691,29,1.0,2 +45529,10,1.0,1,1.4680250883102417,30,0.0,2 +45530,10,1.0,1,1.5430240631103516,31,1.0,2 +45531,10,1.0,1,1.3520265817642212,32,1.0,2 +45532,10,1.0,1,1.2770274877548218,33,1.0,2 +45533,10,1.0,1,1.2740275859832764,34,1.0,2 +45534,10,1.0,1,1.4910247325897217,35,1.0,2 +45535,10,1.0,1,1.4200257062911987,36,0.0,2 +45536,10,0.0,1,1.851020097732544,37,0.0,2 +45537,10,1.0,1,1.9920183420181274,38,0.0,2 +45538,10,1.0,1,1.4870247840881348,39,1.0,2 +45539,10,1.0,1,1.7330217361450195,40,1.0,2 +45540,10,1.0,1,1.2600276470184326,41,1.0,2 +45541,10,1.0,1,1.54802405834198,42,0.0,2 +45542,10,1.0,1,1.35702645778656,43,1.0,2 +45543,10,1.0,1,1.4430253505706787,44,1.0,2 +45544,10,1.0,1,1.3200269937515259,45,0.0,2 +45545,10,1.0,1,1.54802405834198,46,0.0,2 +45546,10,1.0,1,2.19602632522583,47,1.0,2 +45547,10,1.0,1,1.2500275373458862,48,1.0,2 +45548,10,1.0,1,1.4770249128341675,49,1.0,2 +45549,10,1.0,1,1.3690263032913208,50,0.0,2 +45550,10,0.0,1,1.6920222043991089,51,0.0,2 +45551,10,1.0,1,1.7630212306976318,52,0.0,2 +45552,10,1.0,1,1.8110206127166748,53,1.0,2 +45553,10,1.0,1,1.9130194187164307,54,1.0,2 +45554,10,1.0,1,1.4160257577896118,55,1.0,2 +45555,10,1.0,1,1.3490265607833862,56,0.0,2 +45556,10,0.0,1,1.615023136138916,57,0.0,2 +45557,10,1.0,1,1.4830248355865479,58,1.0,2 +45558,10,1.0,1,2.0230181217193604,59,1.0,2 +45559,10,1.0,1,1.2030274868011475,60,1.0,2 +45560,10,1.0,1,1.2550275325775146,61,1.0,2 +45561,10,1.0,1,1.4670250415802002,62,0.0,2 +45562,10,1.0,1,1.8640199899673462,63,0.0,2 +45563,10,0.0,1,1.501024603843689,64,0.0,2 +45564,10,1.0,1,1.387026071548462,65,1.0,2 +45565,10,1.0,1,1.2510275840759277,66,1.0,2 +45566,10,1.0,1,1.364026427268982,67,1.0,2 +45567,10,1.0,1,1.291027307510376,68,1.0,2 +45568,10,1.0,1,1.2430275678634644,69,1.0,2 +45569,10,1.0,1,1.5620238780975342,70,1.0,2 +45570,10,1.0,1,2.0280184745788574,71,1.0,2 +45571,10,1.0,1,1.2680275440216064,72,1.0,2 +45572,10,1.0,1,1.35702645778656,73,0.0,2 +45573,10,1.0,1,1.4870247840881348,74,1.0,2 +45574,10,1.0,1,1.6280230283737183,75,1.0,2 +45575,10,1.0,1,1.2000274658203125,76,0.0,2 +45576,10,0.0,1,1.241027593612671,77,0.0,2 +45577,10,1.0,1,1.171027421951294,78,1.0,2 +45578,10,1.0,1,1.2600276470184326,79,1.0,2 +45579,10,1.0,1,1.4290255308151245,80,1.0,2 +45580,10,1.0,1,1.1870274543762207,81,1.0,2 +45581,10,1.0,1,1.7830209732055664,82,1.0,2 +45582,10,1.0,1,1.3630263805389404,83,1.0,2 +45583,10,1.0,1,1.1920274496078491,84,0.0,2 +45584,10,0.0,1,1.3040271997451782,85,0.0,2 +45585,10,1.0,1,1.4240256547927856,86,1.0,2 +45586,10,1.0,1,1.4720250368118286,87,1.0,2 +45587,10,1.0,1,1.2560275793075562,88,1.0,2 +45588,10,1.0,1,1.4160257577896118,89,1.0,2 +45589,10,1.0,1,1.7300217151641846,90,1.0,2 +45590,10,1.0,1,1.2830274105072021,91,0.0,2 +45591,10,1.0,1,1.7710211277008057,92,1.0,2 +45592,10,1.0,1,1.4010258913040161,93,1.0,2 +45593,10,1.0,1,1.3990259170532227,94,1.0,2 +45594,10,1.0,1,1.4660251140594482,95,1.0,2 +45595,10,1.0,1,1.3060271739959717,96,1.0,2 +45596,10,1.0,1,1.33402681350708,97,0.0,2 +45597,10,1.0,1,1.7170219421386719,98,0.0,2 +45598,10,1.0,1,1.8190205097198486,99,1.0,2 +45599,10,1.0,1,1.4690250158309937,100,1.0,2 +45600,10,1.0,1,1.5110244750976562,101,1.0,2 +45601,10,1.0,1,1.198027491569519,102,0.0,2 +45602,10,1.0,1,1.9570188522338867,103,1.0,2 +45603,10,1.0,1,1.3440266847610474,104,1.0,2 +45604,10,0.0,1,1.8650200366973877,105,0.0,2 +45605,10,1.0,1,1.4430253505706787,106,0.0,2 +45606,10,1.0,1,2.0380187034606934,107,1.0,2 +45607,10,1.0,1,1.1940274238586426,108,1.0,2 +45608,10,1.0,1,1.7470214366912842,109,1.0,2 +45609,10,1.0,1,1.1800274848937988,110,1.0,2 +45610,10,1.0,1,1.3650263547897339,111,1.0,2 +45611,10,1.0,1,1.4280256032943726,112,1.0,2 +45612,10,1.0,1,1.309027075767517,113,0.0,2 +45613,10,1.0,1,2.0800209045410156,114,0.0,2 +45614,10,1.0,1,2.0000181198120117,115,0.0,2 +45615,10,0.0,1,1.3730262517929077,116,0.0,2 +45616,10,0.0,1,1.5150244235992432,117,0.0,2 +45617,10,1.0,1,1.5030245780944824,118,0.0,2 +45618,10,1.0,1,1.614023208618164,119,1.0,2 +45619,10,1.0,1,1.4950246810913086,120,0.0,2 +45620,10,0.0,1,1.2680275440216064,121,1.0,2 +45621,10,0.0,1,1.4320255517959595,122,1.0,2 +45622,10,0.0,1,1.4390254020690918,123,0.0,2 +45623,10,1.0,1,1.4210256338119507,124,0.0,2 +45624,10,1.0,1,1.5910234451293945,125,1.0,2 +45625,10,0.0,1,1.8440202474594116,126,0.0,2 +45626,10,1.0,1,2.0710203647613525,127,0.0,2 +45627,10,1.0,1,1.2970272302627563,128,0.0,2 +45628,10,0.0,1,1.128027319908142,129,0.0,2 +45629,10,1.0,1,1.9760185480117798,130,0.0,2 +45630,10,1.0,1,1.4850248098373413,131,1.0,2 +45631,10,0.0,1,1.4430253505706787,132,1.0,2 +45632,10,0.0,1,1.7780210971832275,133,0.0,2 +45633,10,1.0,1,2.384035110473633,134,0.0,2 +45634,10,0.0,1,1.2200274467468262,135,0.0,2 +45635,10,0.0,1,1.8730199337005615,136,1.0,2 +45636,10,0.0,1,1.482024908065796,137,1.0,2 +45637,10,0.0,1,1.51902437210083,138,0.0,2 +45638,10,1.0,1,1.4590251445770264,139,1.0,2 +45639,10,0.0,1,1.2780275344848633,140,0.0,2 +45640,10,1.0,1,1.805020809173584,141,1.0,2 +45641,10,1.0,1,1.6100232601165771,142,1.0,2 +45642,10,1.0,1,1.2240275144577026,143,1.0,2 +45643,10,1.0,1,1.5150244235992432,144,1.0,2 +45644,10,1.0,1,1.9600187540054321,145,1.0,2 +45645,10,1.0,1,1.784021019935608,146,1.0,2 +45646,10,1.0,1,1.456025242805481,147,1.0,2 +45647,10,1.0,1,1.4900248050689697,148,1.0,2 +45648,10,1.0,1,1.3100271224975586,149,0.0,2 +45649,10,1.0,1,1.6950221061706543,150,1.0,2 +45650,10,1.0,1,1.4590251445770264,151,1.0,2 +45651,10,1.0,1,1.3360267877578735,152,0.0,2 +45652,10,0.0,1,1.54802405834198,153,0.0,2 +45653,10,0.0,1,1.3210269212722778,154,1.0,2 +45654,10,0.0,1,1.4510252475738525,155,1.0,2 +45655,10,0.0,1,1.266027569770813,156,1.0,2 +45656,10,0.0,1,1.241027593612671,157,0.0,2 +45657,10,0.0,1,1.2240275144577026,158,1.0,2 +45658,10,0.0,1,1.5130244493484497,159,0.0,2 +45659,10,0.0,1,1.5600239038467407,160,0.0,2 +45660,10,0.0,1,1.8900196552276611,161,1.0,2 +45661,10,0.0,1,1.6300230026245117,162,0.0,2 +45662,10,1.0,1,1.7350215911865234,163,1.0,2 +45663,10,1.0,1,1.3960260152816772,164,1.0,2 +45664,10,1.0,1,1.4170256853103638,165,1.0,2 +45665,10,1.0,1,1.662022590637207,166,1.0,2 +45666,10,1.0,1,1.5580239295959473,167,1.0,2 +45667,10,1.0,1,1.5320242643356323,168,1.0,2 +45668,10,1.0,1,1.2210274934768677,169,0.0,2 +45669,10,0.0,1,1.9550187587738037,170,1.0,2 +45670,10,0.0,1,1.5530240535736084,171,0.0,2 +45671,10,0.0,1,1.2780275344848633,172,0.0,2 +45672,10,1.0,1,1.4550251960754395,173,1.0,2 +45673,10,1.0,1,1.9310190677642822,174,0.0,2 +45674,10,0.0,1,1.2470275163650513,175,0.0,2 +45675,10,1.0,1,1.566023826599121,176,1.0,2 +45676,10,1.0,1,1.431025505065918,177,1.0,2 +45677,10,1.0,1,1.6940221786499023,178,0.0,2 +45678,10,0.0,1,1.707021951675415,179,0.0,2 +45679,10,1.0,1,1.898019552230835,180,0.0,2 +45680,10,0.0,1,1.138027310371399,181,0.0,2 +45681,10,1.0,1,1.8430202007293701,182,1.0,2 +45682,10,1.0,1,1.5570240020751953,183,1.0,2 +45683,10,1.0,1,1.4950246810913086,184,0.0,2 +45684,10,0.0,1,1.3370267152786255,185,0.0,2 +45685,10,0.0,1,1.6270229816436768,186,0.0,2 +45686,10,1.0,1,1.714021921157837,187,1.0,2 +45687,10,1.0,1,1.2890273332595825,188,1.0,2 +45688,10,1.0,1,1.7180218696594238,189,1.0,2 +45689,10,1.0,1,1.2680275440216064,190,0.0,2 +45690,10,1.0,1,1.6040233373641968,191,1.0,2 +45691,10,1.0,1,1.8300204277038574,192,0.0,2 +45692,10,1.0,1,1.7280217409133911,193,1.0,2 +45693,10,1.0,1,1.798020839691162,194,0.0,2 +45694,10,0.0,1,1.7380216121673584,195,1.0,2 +45695,10,0.0,1,1.295027256011963,196,1.0,2 +45696,10,0.0,1,1.4000259637832642,197,0.0,2 +45697,10,0.0,1,1.2980272769927979,198,0.0,2 +45698,10,0.0,1,1.4990246295928955,199,0.0,2 +45699,10,0.0,1,1.8630199432373047,200,0.0,2 +45700,10,0.0,1,1.5580239295959473,201,0.0,2 +45701,10,0.0,1,1.4210256338119507,202,0.0,2 +45702,10,1.0,1,1.3770262002944946,203,1.0,2 +45703,10,1.0,1,1.6040233373641968,204,1.0,2 +45704,10,1.0,1,1.3030271530151367,205,1.0,2 +45705,10,1.0,1,1.5500240325927734,206,1.0,2 +45706,10,1.0,1,1.1550273895263672,207,0.0,2 +45707,10,1.0,1,1.4630250930786133,208,1.0,2 +45708,10,1.0,1,1.3230268955230713,209,0.0,2 +45709,10,0.0,1,1.4920247793197632,210,1.0,2 +45710,10,0.0,1,1.3900260925292969,211,0.0,2 +45711,10,1.0,1,1.9210193157196045,212,1.0,2 +45712,10,1.0,1,1.2160274982452393,213,0.0,2 +45713,10,1.0,1,1.4900248050689697,214,1.0,2 +45714,10,1.0,1,1.453025221824646,215,1.0,2 +45715,10,1.0,1,1.3760262727737427,216,1.0,2 +45716,10,1.0,1,1.2990272045135498,217,0.0,2 +45717,10,0.0,1,1.5430240631103516,218,0.0,2 +45718,10,0.0,1,1.5940234661102295,219,0.0,2 +45719,10,1.0,1,1.171027421951294,220,1.0,2 +45720,10,1.0,1,1.5070245265960693,221,1.0,2 +45721,10,1.0,1,1.3840261697769165,222,0.0,2 +45722,10,0.0,1,1.3550264835357666,223,0.0,2 +45723,10,0.0,1,1.2400275468826294,224,1.0,2 +45724,10,0.0,1,1.1890274286270142,225,0.0,2 +45725,10,0.0,1,1.8040207624435425,226,0.0,2 +45726,10,1.0,1,1.7940208911895752,227,1.0,2 +45727,10,1.0,1,1.4450253248214722,228,1.0,2 +45728,10,1.0,1,2.185025691986084,229,1.0,2 +45729,10,1.0,1,1.2110275030136108,230,1.0,2 +45730,10,1.0,1,1.171027421951294,231,0.0,2 +45731,10,0.0,1,1.7260217666625977,232,1.0,2 +45732,10,1.0,1,1.3750262260437012,233,1.0,2 +45733,10,0.0,1,1.3760262727737427,234,1.0,2 +45734,10,0.0,1,2.424036979675293,235,1.0,2 +45735,10,1.0,1,2.0550196170806885,236,1.0,2 +45736,10,0.0,1,1.3140270709991455,237,0.0,2 +45737,10,1.0,1,1.3070271015167236,238,1.0,2 +45738,10,1.0,1,1.2580275535583496,239,1.0,2 +45739,10,1.0,1,1.4010258913040161,240,1.0,2 +45740,10,1.0,1,1.2270275354385376,241,1.0,2 +45741,10,1.0,1,1.7920209169387817,242,1.0,2 +45742,10,1.0,1,1.3000272512435913,243,1.0,2 +45743,10,1.0,1,1.3950259685516357,244,1.0,2 +45744,10,1.0,1,1.482024908065796,245,0.0,2 +45745,10,0.0,1,1.7290217876434326,246,0.0,2 +45746,10,1.0,1,1.5630238056182861,247,1.0,2 +45747,10,1.0,1,1.9270191192626953,248,0.0,2 +45748,10,0.0,1,1.3210269212722778,249,0.0,2 +45749,10,1.0,1,1.3000272512435913,250,1.0,2 +45750,10,1.0,1,1.3550264835357666,251,1.0,2 +45751,10,1.0,1,1.431025505065918,252,1.0,2 +45752,10,1.0,1,1.3460266590118408,253,0.0,2 +45753,10,0.0,1,1.2220275402069092,254,1.0,2 +45754,10,0.0,1,1.3230268955230713,255,0.0,2 +45755,10,0.0,1,1.5180244445800781,256,0.0,2 +45756,10,1.0,1,1.9000195264816284,257,0.0,2 +45757,10,0.0,1,1.238027572631836,258,0.0,2 +45758,10,1.0,1,1.5120245218276978,259,0.0,2 +45759,10,0.0,1,1.4130257368087769,260,1.0,2 +45760,10,0.0,1,1.3690263032913208,261,1.0,2 +45761,10,0.0,1,1.2170275449752808,262,0.0,2 +45762,10,1.0,1,1.5160244703292847,263,1.0,2 +45763,10,1.0,1,1.478024959564209,264,1.0,2 +45764,10,1.0,1,1.4370254278182983,265,1.0,2 +45765,10,1.0,1,1.479024887084961,266,1.0,2 +45766,10,1.0,1,1.335026741027832,267,0.0,2 +45767,10,0.0,1,1.4990246295928955,268,1.0,2 +45768,10,0.0,1,1.4240256547927856,269,1.0,2 +45769,10,0.0,1,1.1510273218154907,270,1.0,2 +45770,10,0.0,1,1.1470273733139038,271,1.0,2 +45771,10,0.0,1,1.7790210247039795,272,1.0,2 +45772,10,0.0,1,1.2890273332595825,273,0.0,2 +45773,10,0.0,1,1.9820184707641602,274,0.0,2 +45774,10,1.0,1,1.9520188570022583,275,0.0,2 +45775,10,1.0,1,1.8890197277069092,276,1.0,2 +45776,10,1.0,1,1.5490241050720215,277,0.0,2 +45777,10,1.0,1,1.5870234966278076,278,1.0,2 +45778,10,1.0,1,1.7380216121673584,279,1.0,2 +45779,10,1.0,1,1.3190269470214844,280,1.0,2 +45780,10,1.0,1,1.4620251655578613,281,0.0,2 +45781,10,1.0,1,1.8430202007293701,282,1.0,2 +45782,10,1.0,1,1.2600276470184326,283,0.0,2 +45783,10,1.0,1,1.6780223846435547,284,1.0,2 +45784,10,0.0,1,1.5470240116119385,285,1.0,2 +45785,10,1.0,1,1.3200269937515259,286,1.0,2 +45786,10,0.0,1,1.2830274105072021,287,0.0,2 +45787,10,0.0,1,1.412025809288025,288,1.0,2 +45788,10,0.0,1,2.3490333557128906,289,0.0,2 +45789,10,1.0,1,1.4110257625579834,290,1.0,2 +45790,10,1.0,1,1.2250275611877441,291,1.0,2 +45791,10,1.0,1,1.6900222301483154,292,0.0,2 +45792,10,0.0,1,1.5760236978530884,293,0.0,2 +45793,10,0.0,1,1.6450228691101074,294,0.0,2 +45794,10,0.0,1,1.5300242900848389,295,0.0,2 +45795,10,1.0,1,1.404025912284851,296,1.0,2 +45796,10,1.0,1,1.309027075767517,297,1.0,2 +45797,10,1.0,1,1.3140270709991455,298,1.0,2 +45798,10,1.0,1,1.3590264320373535,299,1.0,2 +45799,10,1.0,1,1.5130244493484497,300,1.0,2 +45800,10,1.0,1,1.4950246810913086,301,0.0,2 +45801,10,1.0,1,1.4220256805419922,302,1.0,2 +45802,10,1.0,1,1.4650250673294067,303,1.0,2 +45803,10,1.0,1,1.2550275325775146,304,1.0,2 +45804,10,1.0,1,1.4690250158309937,305,1.0,2 +45805,10,1.0,1,1.7640212774276733,306,0.0,2 +45806,10,1.0,1,1.9980182647705078,307,0.0,2 +45807,10,1.0,1,1.3580265045166016,308,0.0,2 +45808,10,1.0,1,1.570023775100708,309,0.0,2 +45809,10,0.0,1,1.8790197372436523,310,0.0,2 +45810,10,1.0,1,1.9260191917419434,311,1.0,2 +45811,10,0.0,1,1.2930272817611694,312,1.0,2 +45812,10,1.0,1,1.6090233325958252,313,0.0,2 +45813,10,0.0,1,1.095027208328247,314,0.0,2 +45814,10,1.0,1,1.342026710510254,315,1.0,2 +45815,10,1.0,1,1.3060271739959717,316,1.0,2 +45816,10,1.0,1,1.4100258350372314,317,0.0,2 +45817,10,0.0,1,1.3110270500183105,318,1.0,2 +45818,10,0.0,1,1.3760262727737427,319,1.0,2 +45819,10,0.0,1,1.3040271997451782,320,0.0,2 +45820,10,1.0,1,1.7670211791992188,321,0.0,2 +45821,10,1.0,1,1.8370203971862793,322,1.0,2 +45822,10,1.0,1,1.5130244493484497,323,1.0,2 +45823,10,1.0,1,1.3650263547897339,324,1.0,2 +45824,10,1.0,1,1.456025242805481,325,1.0,2 +45825,10,1.0,1,1.4160257577896118,326,1.0,2 +45826,10,1.0,1,1.5600239038467407,327,1.0,2 +45827,10,1.0,1,1.5380241870880127,328,1.0,2 +45828,10,1.0,1,1.1630274057388306,329,1.0,2 +45829,10,1.0,1,1.5600239038467407,330,1.0,2 +45830,10,1.0,1,1.617023229598999,331,1.0,2 +45831,10,1.0,1,1.6990220546722412,332,0.0,2 +45832,10,0.0,1,1.4100258350372314,333,0.0,2 +45833,10,1.0,1,1.5100245475769043,334,1.0,2 +45834,10,1.0,1,1.2780275344848633,335,1.0,2 +45835,10,1.0,1,1.5760236978530884,336,0.0,2 +45836,10,1.0,1,1.640022873878479,337,1.0,2 +45837,10,1.0,1,1.5450241565704346,338,1.0,2 +45838,10,1.0,1,1.5160244703292847,339,1.0,2 +45839,10,1.0,1,1.1550273895263672,340,1.0,2 +45840,10,0.0,1,1.7650213241577148,341,0.0,2 +45841,10,1.0,1,1.2000274658203125,342,1.0,2 +45842,10,1.0,1,1.5110244750976562,343,1.0,2 +45843,10,1.0,1,1.3520265817642212,344,0.0,2 +45844,10,0.0,1,1.4990246295928955,345,0.0,2 +45845,10,0.0,1,1.356026530265808,346,0.0,2 +45846,10,0.0,1,1.5080245733261108,347,0.0,2 +45847,10,1.0,1,1.6990220546722412,348,0.0,2 +45848,10,1.0,1,1.5350241661071777,349,1.0,2 +45849,10,1.0,1,1.238027572631836,350,1.0,2 +45850,10,1.0,1,1.2590276002883911,351,1.0,2 +45851,10,1.0,1,1.3150269985198975,352,1.0,2 +45852,10,1.0,1,1.457025170326233,353,0.0,2 +45853,10,1.0,1,1.6510226726531982,354,1.0,2 +45854,10,1.0,1,1.5650238990783691,355,1.0,2 +45855,10,1.0,1,1.2890273332595825,356,1.0,2 +45856,10,1.0,1,1.2500275373458862,357,0.0,2 +45857,10,1.0,1,2.0680203437805176,358,1.0,2 +45858,10,1.0,1,1.7430214881896973,359,1.0,2 +45859,10,1.0,1,1.5990233421325684,360,1.0,2 +45860,10,1.0,1,1.4290255308151245,361,1.0,2 +45861,10,1.0,1,1.40902578830719,362,1.0,2 +45862,10,1.0,1,1.5380241870880127,363,0.0,2 +45863,10,1.0,1,2.0170180797576904,364,0.0,2 +45864,10,1.0,1,1.7910208702087402,365,1.0,2 +45865,10,0.0,1,1.2070274353027344,366,0.0,2 +45866,10,1.0,1,1.7120219469070435,367,1.0,2 +45867,10,1.0,1,1.2270275354385376,368,1.0,2 +45868,10,1.0,1,1.8850197792053223,369,0.0,2 +45869,10,1.0,1,1.7330217361450195,370,1.0,2 +45870,10,1.0,1,1.2100274562835693,371,1.0,2 +45871,10,1.0,1,1.6160231828689575,372,1.0,2 +45872,10,1.0,1,1.2220275402069092,373,1.0,2 +45873,10,1.0,1,1.335026741027832,374,1.0,2 +45874,10,1.0,1,1.241027593612671,375,1.0,2 +45875,10,1.0,1,1.1850274801254272,376,1.0,2 +45876,10,1.0,1,1.5810236930847168,377,0.0,2 +45877,10,1.0,1,1.3000272512435913,378,1.0,2 +45878,10,1.0,1,1.3310267925262451,379,1.0,2 +45879,10,1.0,1,1.453025221824646,380,1.0,2 +45880,10,1.0,1,1.4650250673294067,381,0.0,2 +45881,10,0.0,1,2.0310184955596924,382,0.0,2 +45882,10,0.0,1,1.38602614402771,383,0.0,2 +45883,10,0.0,1,1.5390241146087646,384,0.0,2 +45884,10,1.0,1,1.7820210456848145,385,1.0,2 +45885,10,1.0,1,1.5200244188308716,386,1.0,2 +45886,10,1.0,1,1.3040271997451782,387,1.0,2 +45887,10,1.0,1,1.6230230331420898,388,1.0,2 +45888,10,1.0,1,1.4650250673294067,389,0.0,2 +45889,10,1.0,1,1.3080271482467651,390,1.0,2 +45890,10,1.0,1,1.2460275888442993,391,1.0,2 +45891,10,1.0,1,1.426025629043579,392,1.0,2 +45892,10,1.0,1,1.5970234870910645,393,1.0,2 +45893,10,1.0,1,1.3080271482467651,394,0.0,2 +45894,10,1.0,1,1.51902437210083,395,0.0,2 +45895,10,1.0,1,1.2140275239944458,396,1.0,2 +45896,10,1.0,1,1.7120219469070435,397,0.0,2 +45897,10,0.0,1,1.2920273542404175,398,1.0,2 +45898,10,0.0,1,1.2100274562835693,399,0.0,2 +45899,10,1.0,1,1.5790235996246338,400,1.0,2 +45900,10,1.0,1,1.4420254230499268,401,0.0,2 +45901,10,0.0,1,1.574023723602295,402,0.0,2 +45902,10,1.0,1,1.9670186042785645,403,1.0,2 +45903,10,1.0,1,1.2060275077819824,404,0.0,2 +45904,10,1.0,1,2.0160179138183594,405,0.0,2 +45905,10,0.0,1,1.2150274515151978,406,0.0,2 +45906,10,0.0,1,1.4800249338150024,407,1.0,2 +45907,10,0.0,1,1.622023105621338,408,1.0,2 +45908,10,0.0,1,1.6260230541229248,409,1.0,2 +45909,10,0.0,1,1.2270275354385376,410,0.0,2 +45910,10,1.0,1,1.3880261182785034,411,1.0,2 +45911,10,1.0,1,1.2670276165008545,412,1.0,2 +45912,10,1.0,1,1.9020195007324219,413,1.0,2 +45913,10,1.0,1,1.4370254278182983,414,1.0,2 +45914,10,1.0,1,1.2970272302627563,415,1.0,2 +45915,10,1.0,1,1.3470265865325928,416,1.0,2 +45916,10,1.0,1,1.2810274362564087,417,1.0,2 +45917,10,1.0,1,1.239027500152588,418,1.0,2 +45918,10,1.0,1,2.3140316009521484,419,1.0,2 +45919,10,1.0,1,1.853020191192627,420,1.0,2 +45920,10,0.0,1,1.3960260152816772,421,0.0,2 +45921,10,1.0,1,1.7450215816497803,422,1.0,2 +45922,10,1.0,1,1.2670276165008545,423,1.0,2 +45923,10,1.0,1,1.7170219421386719,424,0.0,2 +45924,10,0.0,1,1.6380228996276855,425,1.0,2 +45925,10,0.0,1,1.497024655342102,426,0.0,2 +45926,10,0.0,1,1.9850184917449951,427,1.0,2 +45927,10,0.0,1,1.226027488708496,428,0.0,2 +45928,10,0.0,1,1.5540239810943604,429,1.0,2 +45929,10,0.0,1,1.172027349472046,430,1.0,2 +45930,10,0.0,1,1.4640251398086548,431,0.0,2 +45931,10,0.0,1,1.6600226163864136,432,0.0,2 +45932,10,0.0,1,1.3070271015167236,433,0.0,2 +45933,10,0.0,1,1.241027593612671,434,1.0,2 +45934,10,0.0,1,1.2770274877548218,435,1.0,2 +45935,10,0.0,1,1.4360255002975464,436,1.0,2 +45936,10,0.0,1,1.6600226163864136,437,0.0,2 +45937,10,0.0,1,2.157024383544922,438,0.0,2 +45938,10,1.0,1,1.5330243110656738,439,0.0,2 +45939,10,1.0,1,2.194025993347168,440,1.0,2 +45940,10,1.0,1,1.4480253458023071,441,0.0,2 +45941,10,1.0,1,1.4170256853103638,442,0.0,2 +45942,10,1.0,1,1.7150218486785889,443,0.0,2 +45943,10,0.0,1,1.137027382850647,444,1.0,2 +45944,10,0.0,1,1.1920274496078491,445,1.0,2 +45945,10,0.0,1,1.3480266332626343,446,0.0,2 +45946,10,0.0,1,1.457025170326233,447,0.0,2 +45947,10,0.0,1,2.0520195960998535,448,0.0,2 +45948,10,0.0,1,1.2150274515151978,449,1.0,2 +45949,10,0.0,1,1.238027572631836,450,0.0,2 +45950,10,0.0,1,1.312027096748352,451,0.0,2 +45951,10,0.0,1,1.269027590751648,452,0.0,2 +45952,10,1.0,1,1.8590199947357178,453,1.0,2 +45953,10,1.0,1,1.2120275497436523,454,1.0,2 +45954,10,1.0,1,1.2490276098251343,455,1.0,2 +45955,10,1.0,1,1.5390241146087646,456,1.0,2 +45956,10,0.0,1,1.272027611732483,457,0.0,2 +45957,10,1.0,1,1.3660264015197754,458,1.0,2 +45958,10,1.0,1,1.9030194282531738,459,0.0,2 +45959,10,0.0,1,1.3530265092849731,460,0.0,2 +45960,10,1.0,1,1.711021900177002,461,1.0,2 +45961,10,1.0,1,1.266027569770813,462,0.0,2 +45962,10,1.0,1,1.4470252990722656,463,1.0,2 +45963,10,1.0,1,1.54802405834198,464,0.0,2 +45964,10,1.0,1,1.2090275287628174,465,1.0,2 +45965,10,1.0,1,1.3700263500213623,466,0.0,2 +45966,10,0.0,1,1.2160274982452393,467,0.0,2 +45967,10,1.0,1,1.5810236930847168,468,0.0,2 +45968,10,0.0,1,1.876019835472107,469,1.0,2 +45969,10,0.0,1,1.4180257320404053,470,0.0,2 +45970,10,0.0,1,1.5060245990753174,471,1.0,2 +45971,10,0.0,1,1.4290255308151245,472,0.0,2 +45972,10,1.0,1,2.180025577545166,473,0.0,2 +45973,10,1.0,1,1.617023229598999,474,1.0,2 +45974,10,1.0,1,1.195027470588684,475,1.0,2 +45975,10,1.0,1,1.707021951675415,476,1.0,2 +45976,10,1.0,1,1.201027512550354,477,1.0,2 +45977,10,0.0,1,1.1880273818969727,478,1.0,2 +45978,10,0.0,1,1.2730275392532349,479,1.0,2 +45979,10,0.0,1,1.9550187587738037,480,0.0,2 +45980,10,1.0,1,1.2190275192260742,481,0.0,2 +45981,10,1.0,1,1.3020272254943848,482,0.0,2 +45982,10,0.0,1,1.3650263547897339,483,0.0,2 +45983,10,1.0,1,1.7620213031768799,484,0.0,2 +45984,10,0.0,1,1.4190256595611572,485,0.0,2 +45985,10,0.0,1,1.4240256547927856,486,0.0,2 +45986,10,1.0,1,1.356026530265808,487,1.0,2 +45987,10,1.0,1,1.4590251445770264,488,1.0,2 +45988,10,1.0,1,1.619023084640503,489,0.0,2 +45989,10,0.0,1,1.798020839691162,490,0.0,2 +45990,10,1.0,1,1.4940247535705566,491,1.0,2 +45991,10,1.0,1,1.2790274620056152,492,1.0,2 +45992,10,1.0,1,1.7160218954086304,493,0.0,2 +45993,10,1.0,1,1.9690186977386475,494,0.0,2 +45994,10,0.0,1,1.4860248565673828,495,1.0,2 +45995,10,0.0,1,2.3020310401916504,496,1.0,2 +45996,10,0.0,1,1.356026530265808,497,1.0,2 +45997,10,0.0,1,1.569023847579956,498,0.0,2 +45998,10,1.0,1,2.212027072906494,499,0.0,2 +45999,10,0.0,1,1.9060194492340088,500,0.0,2 +46000,10,0.0,2,1.457025170326233,1,1.0,2 +46001,10,0.0,2,1.617023229598999,2,1.0,2 +46002,10,0.0,2,1.622023105621338,3,0.0,2 +46003,10,1.0,2,1.6930222511291504,4,0.0,2 +46004,10,0.0,2,1.2920273542404175,5,0.0,2 +46005,10,0.0,2,1.361026406288147,6,1.0,2 +46006,10,0.0,2,1.3260269165039062,7,0.0,2 +46007,10,0.0,2,1.5850236415863037,8,0.0,2 +46008,10,1.0,2,1.7470214366912842,9,0.0,2 +46009,10,0.0,2,1.3840261697769165,10,0.0,2 +46010,10,1.0,2,1.4370254278182983,11,0.0,2 +46011,10,0.0,2,1.6990220546722412,12,0.0,2 +46012,10,1.0,2,1.9570188522338867,13,0.0,2 +46013,10,0.0,2,1.262027621269226,14,1.0,2 +46014,10,0.0,2,1.137027382850647,15,1.0,2 +46015,10,0.0,2,1.2610275745391846,16,0.0,2 +46016,10,1.0,2,1.7170219421386719,17,0.0,2 +46017,10,1.0,2,1.755021333694458,18,0.0,2 +46018,10,0.0,2,1.3450266122817993,19,1.0,2 +46019,10,1.0,2,1.456025242805481,20,0.0,2 +46020,10,0.0,2,1.4280256032943726,21,0.0,2 +46021,10,0.0,2,1.9580187797546387,22,0.0,2 +46022,10,1.0,2,2.0010182857513428,23,1.0,2 +46023,10,1.0,2,1.4350254535675049,24,0.0,2 +46024,10,1.0,2,1.4890247583389282,25,0.0,2 +46025,10,1.0,2,1.7500214576721191,26,0.0,2 +46026,10,1.0,2,1.6230230331420898,27,1.0,2 +46027,10,1.0,2,1.3100271224975586,28,0.0,2 +46028,10,1.0,2,1.6600226163864136,29,1.0,2 +46029,10,1.0,2,1.6850223541259766,30,0.0,2 +46030,10,0.0,2,2.0100181102752686,31,0.0,2 +46031,10,0.0,2,1.8380203247070312,32,1.0,2 +46032,10,0.0,2,1.3840261697769165,33,0.0,2 +46033,10,0.0,2,2.2710297107696533,34,1.0,2 +46034,10,0.0,2,1.3370267152786255,35,1.0,2 +46035,10,0.0,2,1.2270275354385376,36,0.0,2 +46036,10,0.0,2,1.174027442932129,37,0.0,2 +46037,10,0.0,2,1.430025577545166,38,1.0,2 +46038,10,0.0,2,1.7000221014022827,39,0.0,2 +46039,10,0.0,2,1.5410242080688477,40,0.0,2 +46040,10,1.0,2,1.567023754119873,41,0.0,2 +46041,10,0.0,2,1.7650213241577148,42,1.0,2 +46042,10,0.0,2,1.5600239038467407,43,1.0,2 +46043,10,0.0,2,1.4540252685546875,44,1.0,2 +46044,10,0.0,2,1.4630250930786133,45,0.0,2 +46045,10,0.0,2,1.6310229301452637,46,0.0,2 +46046,10,1.0,2,1.846020221710205,47,1.0,2 +46047,10,1.0,2,1.3930259943008423,48,0.0,2 +46048,10,0.0,2,1.201027512550354,49,0.0,2 +46049,10,1.0,2,1.619023084640503,50,0.0,2 +46050,10,0.0,2,1.3960260152816772,51,0.0,2 +46051,10,1.0,2,1.5900235176086426,52,1.0,2 +46052,10,1.0,2,1.266027569770813,53,1.0,2 +46053,10,1.0,2,1.6160231828689575,54,1.0,2 +46054,10,1.0,2,1.3080271482467651,55,0.0,2 +46055,10,0.0,2,1.5540239810943604,56,1.0,2 +46056,10,0.0,2,1.161027431488037,57,1.0,2 +46057,10,0.0,2,1.5610239505767822,58,1.0,2 +46058,10,0.0,2,1.5150244235992432,59,1.0,2 +46059,10,0.0,2,1.1420273780822754,60,0.0,2 +46060,10,0.0,2,1.404025912284851,61,0.0,2 +46061,10,1.0,2,1.6160231828689575,62,1.0,2 +46062,10,1.0,2,1.5760236978530884,63,1.0,2 +46063,10,1.0,2,1.4060258865356445,64,1.0,2 +46064,10,1.0,2,1.4000259637832642,65,0.0,2 +46065,10,1.0,2,1.6740224361419678,66,1.0,2 +46066,10,1.0,2,1.2920273542404175,67,1.0,2 +46067,10,1.0,2,1.4470252990722656,68,1.0,2 +46068,10,1.0,2,1.8110206127166748,69,0.0,2 +46069,10,0.0,2,1.5620238780975342,70,1.0,2 +46070,10,0.0,2,1.6810224056243896,71,1.0,2 +46071,10,0.0,2,1.404025912284851,72,1.0,2 +46072,10,0.0,2,1.3760262727737427,73,1.0,2 +46073,10,0.0,2,1.3330267667770386,74,0.0,2 +46074,10,0.0,2,1.2700276374816895,75,1.0,2 +46075,10,0.0,2,1.3970259428024292,76,1.0,2 +46076,10,0.0,2,1.4510252475738525,77,1.0,2 +46077,10,0.0,2,1.4840248823165894,78,1.0,2 +46078,10,0.0,2,1.3660264015197754,79,0.0,2 +46079,10,0.0,2,1.1510273218154907,80,0.0,2 +46080,10,1.0,2,1.7680212259292603,81,1.0,2 +46081,10,1.0,2,1.335026741027832,82,1.0,2 +46082,10,1.0,2,1.387026071548462,83,1.0,2 +46083,10,1.0,2,1.3580265045166016,84,0.0,2 +46084,10,0.0,2,1.205027461051941,85,0.0,2 +46085,10,0.0,2,2.0950214862823486,86,1.0,2 +46086,10,0.0,2,1.501024603843689,87,0.0,2 +46087,10,0.0,2,1.7470214366912842,88,0.0,2 +46088,10,1.0,2,1.7290217876434326,89,0.0,2 +46089,10,1.0,2,1.9990181922912598,90,0.0,2 +46090,10,1.0,2,1.8580200672149658,91,0.0,2 +46091,10,0.0,2,1.8900196552276611,92,1.0,2 +46092,10,0.0,2,1.107027292251587,93,1.0,2 +46093,10,0.0,2,1.3480266332626343,94,0.0,2 +46094,10,0.0,2,1.4700250625610352,95,1.0,2 +46095,10,0.0,2,1.3150269985198975,96,0.0,2 +46096,10,1.0,2,1.5850236415863037,97,1.0,2 +46097,10,1.0,2,1.5420241355895996,98,1.0,2 +46098,10,1.0,2,1.5990233421325684,99,1.0,2 +46099,10,1.0,2,1.3450266122817993,100,1.0,2 +46100,10,1.0,2,1.4540252685546875,101,0.0,2 +46101,10,1.0,2,2.2790300846099854,102,1.0,2 +46102,10,1.0,2,1.8230204582214355,103,0.0,2 +46103,10,0.0,2,1.991018295288086,104,1.0,2 +46104,10,1.0,2,1.6100232601165771,105,1.0,2 +46105,10,0.0,2,1.850020170211792,106,0.0,2 +46106,10,1.0,2,1.2780275344848633,107,1.0,2 +46107,10,1.0,2,1.2370275259017944,108,1.0,2 +46108,10,1.0,2,1.1600273847579956,109,1.0,2 +46109,10,1.0,2,1.968018651008606,110,0.0,2 +46110,10,1.0,2,1.9210193157196045,111,1.0,2 +46111,10,1.0,2,1.8130207061767578,112,1.0,2 +46112,10,1.0,2,1.2170275449752808,113,1.0,2 +46113,10,1.0,2,1.7010221481323242,114,0.0,2 +46114,10,0.0,2,1.5560239553451538,115,1.0,2 +46115,10,0.0,2,1.8160206079483032,116,1.0,2 +46116,10,0.0,2,1.161027431488037,117,0.0,2 +46117,10,1.0,2,2.2710297107696533,118,0.0,2 +46118,10,0.0,2,1.6070232391357422,119,1.0,2 +46119,10,0.0,2,1.2060275077819824,120,1.0,2 +46120,10,0.0,2,1.6000233888626099,121,0.0,2 +46121,10,0.0,2,1.2270275354385376,122,1.0,2 +46122,10,0.0,2,1.5830235481262207,123,0.0,2 +46123,10,1.0,2,2.2530288696289062,124,0.0,2 +46124,10,1.0,2,1.3020272254943848,125,1.0,2 +46125,10,1.0,2,1.3140270709991455,126,0.0,2 +46126,10,0.0,2,1.228027582168579,127,1.0,2 +46127,10,0.0,2,1.2460275888442993,128,1.0,2 +46128,10,0.0,2,1.239027500152588,129,1.0,2 +46129,10,0.0,2,1.5970234870910645,130,1.0,2 +46130,10,0.0,2,1.3880261182785034,131,0.0,2 +46131,10,0.0,2,2.0400190353393555,132,1.0,2 +46132,10,1.0,2,1.9480189085006714,133,1.0,2 +46133,10,1.0,2,1.7370216846466064,134,1.0,2 +46134,10,1.0,2,1.7940208911895752,135,1.0,2 +46135,10,0.0,2,1.478024959564209,136,1.0,2 +46136,10,0.0,2,1.2560275793075562,137,0.0,2 +46137,10,1.0,2,1.3010271787643433,138,0.0,2 +46138,10,0.0,2,1.1850274801254272,139,1.0,2 +46139,10,0.0,2,1.2420275211334229,140,0.0,2 +46140,10,1.0,2,1.7950208187103271,141,1.0,2 +46141,10,1.0,2,1.8480201959609985,142,1.0,2 +46142,10,1.0,2,1.4840248823165894,143,0.0,2 +46143,10,1.0,2,1.7020220756530762,144,0.0,2 +46144,10,1.0,2,1.7910208702087402,145,1.0,2 +46145,10,1.0,2,1.452025294303894,146,1.0,2 +46146,10,1.0,2,1.4840248823165894,147,1.0,2 +46147,10,1.0,2,1.412025809288025,148,1.0,2 +46148,10,1.0,2,1.383026123046875,149,0.0,2 +46149,10,0.0,2,1.8360203504562378,150,1.0,2 +46150,10,0.0,2,1.312027096748352,151,0.0,2 +46151,10,0.0,2,1.427025556564331,152,1.0,2 +46152,10,0.0,2,1.3940260410308838,153,0.0,2 +46153,10,1.0,2,1.4140257835388184,154,1.0,2 +46154,10,1.0,2,1.3760262727737427,155,0.0,2 +46155,10,0.0,2,1.3180270195007324,156,1.0,2 +46156,10,0.0,2,1.3440266847610474,157,0.0,2 +46157,10,1.0,2,1.596023440361023,158,0.0,2 +46158,10,1.0,2,1.6600226163864136,159,1.0,2 +46159,10,1.0,2,1.9760185480117798,160,1.0,2 +46160,10,1.0,2,1.4580252170562744,161,1.0,2 +46161,10,1.0,2,1.615023136138916,162,1.0,2 +46162,10,1.0,2,1.3470265865325928,163,1.0,2 +46163,10,1.0,2,1.3480266332626343,164,0.0,2 +46164,10,1.0,2,1.3440266847610474,165,1.0,2 +46165,10,1.0,2,1.3960260152816772,166,0.0,2 +46166,10,0.0,2,1.6370229721069336,167,1.0,2 +46167,10,0.0,2,1.2420275211334229,168,0.0,2 +46168,10,0.0,2,1.263027548789978,169,1.0,2 +46169,10,0.0,2,1.3280268907546997,170,1.0,2 +46170,10,0.0,2,1.1810274124145508,171,1.0,2 +46171,10,0.0,2,1.205027461051941,172,1.0,2 +46172,10,0.0,2,1.294027328491211,173,0.0,2 +46173,10,1.0,2,1.4150257110595703,174,0.0,2 +46174,10,1.0,2,2.132023334503174,175,1.0,2 +46175,10,1.0,2,1.9280191659927368,176,0.0,2 +46176,10,1.0,2,1.4860248565673828,177,0.0,2 +46177,10,0.0,2,1.335026741027832,178,0.0,2 +46178,10,0.0,2,1.3970259428024292,179,0.0,2 +46179,10,0.0,2,1.569023847579956,180,0.0,2 +46180,10,1.0,2,1.1960275173187256,181,1.0,2 +46181,10,1.0,2,1.5100245475769043,182,1.0,2 +46182,10,1.0,2,1.4100258350372314,183,1.0,2 +46183,10,1.0,2,1.4690250158309937,184,0.0,2 +46184,10,0.0,2,1.529024362564087,185,1.0,2 +46185,10,0.0,2,1.3410266637802124,186,1.0,2 +46186,10,0.0,2,1.3690263032913208,187,0.0,2 +46187,10,0.0,2,1.7740211486816406,188,0.0,2 +46188,10,1.0,2,1.5510239601135254,189,1.0,2 +46189,10,0.0,2,1.3190269470214844,190,0.0,2 +46190,10,1.0,2,1.4860248565673828,191,0.0,2 +46191,10,0.0,2,1.663022518157959,192,0.0,2 +46192,10,1.0,2,1.5320242643356323,193,0.0,2 +46193,10,1.0,2,2.0260181427001953,194,0.0,2 +46194,10,1.0,2,1.805020809173584,195,1.0,2 +46195,10,1.0,2,1.899019479751587,196,1.0,2 +46196,10,1.0,2,1.236027479171753,197,0.0,2 +46197,10,1.0,2,1.759021282196045,198,0.0,2 +46198,10,1.0,2,1.1400272846221924,199,1.0,2 +46199,10,1.0,2,1.2250275611877441,200,0.0,2 +46200,10,1.0,2,1.622023105621338,201,0.0,2 +46201,10,1.0,2,2.0330185890197754,202,0.0,2 +46202,10,1.0,2,1.759021282196045,203,1.0,2 +46203,10,1.0,2,2.181025505065918,204,1.0,2 +46204,10,1.0,2,1.3880261182785034,205,0.0,2 +46205,10,0.0,2,1.1210273504257202,206,0.0,2 +46206,10,1.0,2,1.6310229301452637,207,1.0,2 +46207,10,0.0,2,1.238027572631836,208,1.0,2 +46208,10,1.0,2,1.9150192737579346,209,1.0,2 +46209,10,1.0,2,1.4580252170562744,210,1.0,2 +46210,10,0.0,2,1.5050245523452759,211,0.0,2 +46211,10,1.0,2,1.2330275774002075,212,1.0,2 +46212,10,1.0,2,1.3630263805389404,213,0.0,2 +46213,10,1.0,2,1.7910208702087402,214,1.0,2 +46214,10,1.0,2,1.2490276098251343,215,1.0,2 +46215,10,1.0,2,1.3650263547897339,216,0.0,2 +46216,10,0.0,2,1.87201988697052,217,1.0,2 +46217,10,0.0,2,1.4060258865356445,218,1.0,2 +46218,10,0.0,2,1.239027500152588,219,0.0,2 +46219,10,0.0,2,1.4730249643325806,220,0.0,2 +46220,10,1.0,2,1.3950259685516357,221,0.0,2 +46221,10,0.0,2,1.4830248355865479,222,0.0,2 +46222,10,0.0,2,1.2560275793075562,223,1.0,2 +46223,10,0.0,2,2.0040183067321777,224,1.0,2 +46224,10,0.0,2,1.2790274620056152,225,1.0,2 +46225,10,0.0,2,1.3940260410308838,226,0.0,2 +46226,10,0.0,2,1.335026741027832,227,1.0,2 +46227,10,0.0,2,1.137027382850647,228,0.0,2 +46228,10,0.0,2,1.471024990081787,229,0.0,2 +46229,10,0.0,2,1.3900260925292969,230,1.0,2 +46230,10,0.0,2,1.2520275115966797,231,0.0,2 +46231,10,1.0,2,1.3410266637802124,232,0.0,2 +46232,10,0.0,2,1.6710224151611328,233,0.0,2 +46233,10,0.0,2,1.665022611618042,234,0.0,2 +46234,10,1.0,2,1.3850260972976685,235,1.0,2 +46235,10,1.0,2,1.6490228176116943,236,1.0,2 +46236,10,1.0,2,1.2400275468826294,237,0.0,2 +46237,10,1.0,2,1.6790223121643066,238,0.0,2 +46238,10,0.0,2,1.4800249338150024,239,0.0,2 +46239,10,0.0,2,1.3360267877578735,240,1.0,2 +46240,10,0.0,2,1.291027307510376,241,0.0,2 +46241,10,0.0,2,1.6120232343673706,242,1.0,2 +46242,10,0.0,2,1.131027340888977,243,1.0,2 +46243,10,0.0,2,1.3940260410308838,244,0.0,2 +46244,10,0.0,2,1.8710198402404785,245,0.0,2 +46245,10,0.0,2,1.2140275239944458,246,0.0,2 +46246,10,1.0,2,1.7730212211608887,247,1.0,2 +46247,10,0.0,2,1.4160257577896118,248,0.0,2 +46248,10,1.0,2,1.3780262470245361,249,0.0,2 +46249,10,0.0,2,1.4070258140563965,250,0.0,2 +46250,10,0.0,2,1.2800275087356567,251,0.0,2 +46251,10,0.0,2,1.2110275030136108,252,1.0,2 +46252,10,0.0,2,1.2920273542404175,253,1.0,2 +46253,10,0.0,2,1.228027582168579,254,0.0,2 +46254,10,1.0,2,1.6500227451324463,255,0.0,2 +46255,10,0.0,2,1.2220275402069092,256,0.0,2 +46256,10,0.0,2,1.5630238056182861,257,0.0,2 +46257,10,1.0,2,1.5120245218276978,258,1.0,2 +46258,10,1.0,2,1.3980259895324707,259,1.0,2 +46259,10,1.0,2,1.475024938583374,260,0.0,2 +46260,10,0.0,2,1.6270229816436768,261,1.0,2 +46261,10,1.0,2,1.706022024154663,262,0.0,2 +46262,10,0.0,2,1.8420202732086182,263,0.0,2 +46263,10,0.0,2,2.1120223999023438,264,1.0,2 +46264,10,0.0,2,1.1970274448394775,265,0.0,2 +46265,10,0.0,2,1.1160273551940918,266,1.0,2 +46266,10,0.0,2,1.3690263032913208,267,0.0,2 +46267,10,1.0,2,1.4840248823165894,268,0.0,2 +46268,10,0.0,2,1.3050271272659302,269,0.0,2 +46269,10,1.0,2,1.3460266590118408,270,1.0,2 +46270,10,1.0,2,1.6960221529006958,271,1.0,2 +46271,10,0.0,2,1.7690212726593018,272,0.0,2 +46272,10,1.0,2,2.0520195960998535,273,1.0,2 +46273,10,0.0,2,1.199027419090271,274,0.0,2 +46274,10,1.0,2,1.335026741027832,275,1.0,2 +46275,10,1.0,2,1.6450228691101074,276,1.0,2 +46276,10,1.0,2,1.287027359008789,277,1.0,2 +46277,10,1.0,2,1.235027551651001,278,0.0,2 +46278,10,0.0,2,1.497024655342102,279,1.0,2 +46279,10,0.0,2,1.168027400970459,280,1.0,2 +46280,10,0.0,2,1.1290273666381836,281,0.0,2 +46281,10,1.0,2,1.3660264015197754,282,1.0,2 +46282,10,1.0,2,1.3480266332626343,283,0.0,2 +46283,10,0.0,2,1.226027488708496,284,0.0,2 +46284,10,0.0,2,1.504024624824524,285,0.0,2 +46285,10,1.0,2,1.5070245265960693,286,1.0,2 +46286,10,1.0,2,1.2450275421142578,287,0.0,2 +46287,10,0.0,2,1.7650213241577148,288,1.0,2 +46288,10,0.0,2,1.3280268907546997,289,0.0,2 +46289,10,0.0,2,1.6080232858657837,290,0.0,2 +46290,10,0.0,2,1.2530275583267212,291,0.0,2 +46291,10,1.0,2,2.0810208320617676,292,0.0,2 +46292,10,1.0,2,1.1870274543762207,293,0.0,2 +46293,10,0.0,2,1.38602614402771,294,0.0,2 +46294,10,0.0,2,1.2470275163650513,295,1.0,2 +46295,10,0.0,2,1.3500266075134277,296,0.0,2 +46296,10,0.0,2,1.4100258350372314,297,1.0,2 +46297,10,0.0,2,1.2680275440216064,298,1.0,2 +46298,10,0.0,2,1.3750262260437012,299,0.0,2 +46299,10,0.0,2,1.3910260200500488,300,0.0,2 +46300,10,1.0,2,1.5530240535736084,301,0.0,2 +46301,10,1.0,2,1.3520265817642212,302,1.0,2 +46302,10,1.0,2,1.621023178100586,303,0.0,2 +46303,10,1.0,2,1.312027096748352,304,1.0,2 +46304,10,1.0,2,1.2400275468826294,305,0.0,2 +46305,10,1.0,2,1.9280191659927368,306,1.0,2 +46306,10,1.0,2,1.2670276165008545,307,0.0,2 +46307,10,0.0,2,1.991018295288086,308,0.0,2 +46308,10,1.0,2,2.0020182132720947,309,0.0,2 +46309,10,0.0,2,1.434025526046753,310,1.0,2 +46310,10,0.0,2,1.2150274515151978,311,0.0,2 +46311,10,0.0,2,1.4690250158309937,312,1.0,2 +46312,10,0.0,2,1.4360255002975464,313,0.0,2 +46313,10,1.0,2,1.592023491859436,314,1.0,2 +46314,10,0.0,2,1.8660199642181396,315,1.0,2 +46315,10,0.0,2,1.9530189037322998,316,0.0,2 +46316,10,0.0,2,1.801020860671997,317,1.0,2 +46317,10,1.0,2,1.4860248565673828,318,0.0,2 +46318,10,0.0,2,1.3290268182754517,319,0.0,2 +46319,10,0.0,2,1.994018316268921,320,1.0,2 +46320,10,0.0,2,1.7660212516784668,321,1.0,2 +46321,10,0.0,2,1.2830274105072021,322,1.0,2 +46322,10,0.0,2,1.1790274381637573,323,1.0,2 +46323,10,0.0,2,1.1930274963378906,324,0.0,2 +46324,10,0.0,2,2.3650341033935547,325,0.0,2 +46325,10,1.0,2,1.7700212001800537,326,1.0,2 +46326,10,1.0,2,1.7700212001800537,327,0.0,2 +46327,10,0.0,2,1.824020504951477,328,1.0,2 +46328,10,0.0,2,1.228027582168579,329,1.0,2 +46329,10,0.0,2,1.1430273056030273,330,1.0,2 +46330,10,0.0,2,1.3660264015197754,331,1.0,2 +46331,10,0.0,2,1.3360267877578735,332,0.0,2 +46332,10,0.0,2,1.501024603843689,333,1.0,2 +46333,10,0.0,2,1.5120245218276978,334,1.0,2 +46334,10,0.0,2,1.4360255002975464,335,0.0,2 +46335,10,1.0,2,1.6330230236053467,336,0.0,2 +46336,10,1.0,2,1.3400267362594604,337,1.0,2 +46337,10,1.0,2,1.5720237493515015,338,0.0,2 +46338,10,1.0,2,1.137027382850647,339,1.0,2 +46339,10,1.0,2,1.5620238780975342,340,1.0,2 +46340,10,1.0,2,1.239027500152588,341,1.0,2 +46341,10,1.0,2,1.2980272769927979,342,0.0,2 +46342,10,1.0,2,2.497040271759033,343,1.0,2 +46343,10,1.0,2,2.195026159286499,344,0.0,2 +46344,10,0.0,2,1.291027307510376,345,0.0,2 +46345,10,0.0,2,1.3550264835357666,346,0.0,2 +46346,10,1.0,2,1.1890274286270142,347,1.0,2 +46347,10,1.0,2,1.3010271787643433,348,1.0,2 +46348,10,1.0,2,1.2210274934768677,349,0.0,2 +46349,10,1.0,2,1.6950221061706543,350,0.0,2 +46350,10,0.0,2,1.1170272827148438,351,0.0,2 +46351,10,0.0,2,1.5950233936309814,352,1.0,2 +46352,10,0.0,2,1.1900274753570557,353,1.0,2 +46353,10,0.0,2,1.290027379989624,354,1.0,2 +46354,10,0.0,2,1.4430253505706787,355,0.0,2 +46355,10,0.0,2,1.6490228176116943,356,0.0,2 +46356,10,0.0,2,1.316027045249939,357,1.0,2 +46357,10,0.0,2,1.262027621269226,358,1.0,2 +46358,10,0.0,2,1.1110272407531738,359,0.0,2 +46359,10,1.0,2,1.6850223541259766,360,1.0,2 +46360,10,1.0,2,1.4600251913070679,361,0.0,2 +46361,10,1.0,2,1.5310242176055908,362,0.0,2 +46362,10,1.0,2,1.5630238056182861,363,0.0,2 +46363,10,0.0,2,2.3150317668914795,364,0.0,2 +46364,10,0.0,2,1.759021282196045,365,1.0,2 +46365,10,0.0,2,1.5380241870880127,366,0.0,2 +46366,10,0.0,2,1.2820274829864502,367,0.0,2 +46367,10,1.0,2,1.4280256032943726,368,0.0,2 +46368,10,1.0,2,1.8380203247070312,369,0.0,2 +46369,10,0.0,2,1.4630250930786133,370,1.0,2 +46370,10,0.0,2,1.9000195264816284,371,1.0,2 +46371,10,0.0,2,1.238027572631836,372,0.0,2 +46372,10,0.0,2,1.4460253715515137,373,1.0,2 +46373,10,0.0,2,1.1220272779464722,374,1.0,2 +46374,10,0.0,2,1.5300242900848389,375,1.0,2 +46375,10,0.0,2,1.2180274724960327,376,0.0,2 +46376,10,0.0,2,1.526024341583252,377,0.0,2 +46377,10,1.0,2,1.3880261182785034,378,0.0,2 +46378,10,0.0,2,1.4150257110595703,379,1.0,2 +46379,10,0.0,2,1.7330217361450195,380,0.0,2 +46380,10,1.0,2,1.8360203504562378,381,1.0,2 +46381,10,1.0,2,1.613023281097412,382,0.0,2 +46382,10,0.0,2,1.6810224056243896,383,0.0,2 +46383,10,1.0,2,1.2130274772644043,384,1.0,2 +46384,10,1.0,2,1.5630238056182861,385,1.0,2 +46385,10,1.0,2,1.40902578830719,386,1.0,2 +46386,10,1.0,2,1.4230256080627441,387,0.0,2 +46387,10,0.0,2,1.5340242385864258,388,1.0,2 +46388,10,0.0,2,1.287027359008789,389,0.0,2 +46389,10,0.0,2,1.5340242385864258,390,1.0,2 +46390,10,0.0,2,1.290027379989624,391,1.0,2 +46391,10,0.0,2,1.2750275135040283,392,1.0,2 +46392,10,0.0,2,1.3940260410308838,393,1.0,2 +46393,10,1.0,2,1.57102370262146,394,0.0,2 +46394,10,0.0,2,1.2490276098251343,395,0.0,2 +46395,10,0.0,2,1.291027307510376,396,0.0,2 +46396,10,0.0,2,1.286027431488037,397,1.0,2 +46397,10,0.0,2,1.4730249643325806,398,0.0,2 +46398,10,0.0,2,1.2110275030136108,399,0.0,2 +46399,10,0.0,2,1.38602614402771,400,1.0,2 +46400,10,0.0,2,1.5510239601135254,401,1.0,2 +46401,10,0.0,2,1.3950259685516357,402,1.0,2 +46402,10,0.0,2,1.295027256011963,403,1.0,2 +46403,10,0.0,2,1.2430275678634644,404,1.0,2 +46404,10,0.0,2,1.408025860786438,405,0.0,2 +46405,10,0.0,2,1.5500240325927734,406,0.0,2 +46406,10,0.0,2,1.709022045135498,407,1.0,2 +46407,10,0.0,2,1.7790210247039795,408,0.0,2 +46408,10,1.0,2,1.312027096748352,409,0.0,2 +46409,10,0.0,2,1.9960182905197144,410,1.0,2 +46410,10,0.0,2,1.2240275144577026,411,1.0,2 +46411,10,0.0,2,1.195027470588684,412,1.0,2 +46412,10,0.0,2,1.2760275602340698,413,1.0,2 +46413,10,0.0,2,1.309027075767517,414,0.0,2 +46414,10,0.0,2,1.2270275354385376,415,0.0,2 +46415,10,0.0,2,1.1520273685455322,416,1.0,2 +46416,10,0.0,2,1.9480189085006714,417,1.0,2 +46417,10,0.0,2,1.1320273876190186,418,0.0,2 +46418,10,0.0,2,1.1200273036956787,419,1.0,2 +46419,10,0.0,2,1.076027274131775,420,1.0,2 +46420,10,0.0,2,1.2140275239944458,421,0.0,2 +46421,10,1.0,2,1.9820184707641602,422,0.0,2 +46422,10,0.0,2,1.294027328491211,423,0.0,2 +46423,10,0.0,2,1.3900260925292969,424,0.0,2 +46424,10,1.0,2,2.2890305519104004,425,1.0,2 +46425,10,1.0,2,1.500024676322937,426,0.0,2 +46426,10,0.0,2,1.2430275678634644,427,0.0,2 +46427,10,1.0,2,1.228027582168579,428,0.0,2 +46428,10,0.0,2,1.1750273704528809,429,1.0,2 +46429,10,0.0,2,1.3150269985198975,430,0.0,2 +46430,10,0.0,2,1.2830274105072021,431,0.0,2 +46431,10,1.0,2,1.4020259380340576,432,0.0,2 +46432,10,1.0,2,1.7190217971801758,433,0.0,2 +46433,10,0.0,2,1.3320268392562866,434,1.0,2 +46434,10,0.0,2,1.2180274724960327,435,0.0,2 +46435,10,0.0,2,1.404025912284851,436,0.0,2 +46436,10,1.0,2,1.2990272045135498,437,0.0,2 +46437,10,1.0,2,1.757021427154541,438,0.0,2 +46438,10,0.0,2,1.667022466659546,439,0.0,2 +46439,10,0.0,2,1.2190275192260742,440,1.0,2 +46440,10,0.0,2,1.38602614402771,441,1.0,2 +46441,10,0.0,2,1.1840274333953857,442,1.0,2 +46442,10,0.0,2,1.3980259895324707,443,1.0,2 +46443,10,0.0,2,1.2000274658203125,444,0.0,2 +46444,10,0.0,2,1.1930274963378906,445,1.0,2 +46445,10,0.0,2,1.3250268697738647,446,1.0,2 +46446,10,0.0,2,1.202027440071106,447,1.0,2 +46447,10,0.0,2,1.1400272846221924,448,1.0,2 +46448,10,0.0,2,1.2170275449752808,449,1.0,2 +46449,10,0.0,2,1.2270275354385376,450,1.0,2 +46450,10,0.0,2,1.3770262002944946,451,0.0,2 +46451,10,0.0,2,1.198027491569519,452,1.0,2 +46452,10,0.0,2,1.2130274772644043,453,1.0,2 +46453,10,0.0,2,1.3220269680023193,454,1.0,2 +46454,10,0.0,2,1.137027382850647,455,1.0,2 +46455,10,0.0,2,1.309027075767517,456,1.0,2 +46456,10,0.0,2,1.1890274286270142,457,1.0,2 +46457,10,0.0,2,1.199027419090271,458,1.0,2 +46458,10,0.0,2,1.6930222511291504,459,0.0,2 +46459,10,0.0,2,1.7040220499038696,460,1.0,2 +46460,10,0.0,2,1.2330275774002075,461,0.0,2 +46461,10,1.0,2,1.49602472782135,462,0.0,2 +46462,10,0.0,2,1.2930272817611694,463,1.0,2 +46463,10,0.0,2,1.4420254230499268,464,1.0,2 +46464,10,0.0,2,1.269027590751648,465,1.0,2 +46465,10,0.0,2,1.2670276165008545,466,1.0,2 +46466,10,0.0,2,1.4950246810913086,467,1.0,2 +46467,10,0.0,2,1.4210256338119507,468,0.0,2 +46468,10,1.0,2,1.8380203247070312,469,1.0,2 +46469,10,0.0,2,1.5790235996246338,470,0.0,2 +46470,10,0.0,2,1.8140206336975098,471,0.0,2 +46471,10,1.0,2,1.3920260667800903,472,1.0,2 +46472,10,0.0,2,1.6380228996276855,473,1.0,2 +46473,10,0.0,2,2.16902494430542,474,1.0,2 +46474,10,0.0,2,1.7890210151672363,475,0.0,2 +46475,10,1.0,2,1.6120232343673706,476,0.0,2 +46476,10,0.0,2,2.473039150238037,477,0.0,2 +46477,10,1.0,2,1.4630250930786133,478,1.0,2 +46478,10,1.0,2,1.317026972770691,479,0.0,2 +46479,10,0.0,2,1.4380254745483398,480,0.0,2 +46480,10,0.0,2,1.1770274639129639,481,0.0,2 +46481,10,0.0,2,1.3500266075134277,482,0.0,2 +46482,10,0.0,2,1.5340242385864258,483,1.0,2 +46483,10,0.0,2,1.5980234146118164,484,0.0,2 +46484,10,0.0,2,1.6960221529006958,485,0.0,2 +46485,10,1.0,2,1.9750185012817383,486,0.0,2 +46486,10,0.0,2,1.1450273990631104,487,1.0,2 +46487,10,0.0,2,1.456025242805481,488,0.0,2 +46488,10,1.0,2,1.269027590751648,489,1.0,2 +46489,10,1.0,2,1.171027421951294,490,1.0,2 +46490,10,1.0,2,1.3660264015197754,491,1.0,2 +46491,10,1.0,2,1.7700212001800537,492,1.0,2 +46492,10,1.0,2,1.8450202941894531,493,0.0,2 +46493,10,1.0,2,1.4440253973007202,494,0.0,2 +46494,10,0.0,2,1.095027208328247,495,0.0,2 +46495,10,0.0,2,1.137027382850647,496,1.0,2 +46496,10,0.0,2,1.3430266380310059,497,0.0,2 +46497,10,1.0,2,1.7010221481323242,498,0.0,2 +46498,10,0.0,2,1.3240269422531128,499,0.0,2 +46499,10,1.0,2,1.3770262002944946,500,0.0,2 +46500,11,1.0,0,1.7251733541488647,1,1.0,2 +46501,11,1.0,0,1.48517644405365,2,1.0,2 +46502,11,1.0,0,1.504176139831543,3,1.0,2 +46503,11,0.0,0,1.4351770877838135,4,0.0,2 +46504,11,1.0,0,2.3821892738342285,5,1.0,2 +46505,11,1.0,0,1.342178225517273,6,1.0,2 +46506,11,1.0,0,1.2061797380447388,7,1.0,2 +46507,11,1.0,0,1.4021774530410767,8,1.0,2 +46508,11,1.0,0,1.6131747961044312,9,1.0,2 +46509,11,1.0,0,1.1791796684265137,10,1.0,2 +46510,11,1.0,0,1.1021795272827148,11,1.0,2 +46511,11,1.0,0,1.2481794357299805,12,1.0,2 +46512,11,1.0,0,1.297178864479065,13,0.0,2 +46513,11,0.0,0,1.298178791999817,14,1.0,2 +46514,11,0.0,0,1.5671753883361816,15,0.0,2 +46515,11,0.0,0,2.268184185028076,16,0.0,2 +46516,11,1.0,0,1.5321757793426514,17,1.0,2 +46517,11,1.0,0,1.2111797332763672,18,1.0,2 +46518,11,0.0,0,1.5741753578186035,19,0.0,2 +46519,11,1.0,0,1.430177092552185,20,1.0,2 +46520,11,1.0,0,1.367177963256836,21,1.0,2 +46521,11,1.0,0,1.3341783285140991,22,1.0,2 +46522,11,1.0,0,1.2621792554855347,23,1.0,2 +46523,11,0.0,0,1.250179409980774,24,0.0,2 +46524,11,1.0,0,1.228179693222046,25,1.0,2 +46525,11,1.0,0,1.1361796855926514,26,1.0,2 +46526,11,1.0,0,1.4841763973236084,27,1.0,2 +46527,11,1.0,0,1.6201746463775635,28,1.0,2 +46528,11,1.0,0,1.5241758823394775,29,1.0,2 +46529,11,1.0,0,1.43317711353302,30,1.0,2 +46530,11,1.0,0,1.665174126625061,31,1.0,2 +46531,11,1.0,0,1.1911797523498535,32,1.0,2 +46532,11,1.0,0,1.617174744606018,33,1.0,2 +46533,11,1.0,0,1.2151798009872437,34,1.0,2 +46534,11,1.0,0,1.4191772937774658,35,1.0,2 +46535,11,1.0,0,1.7901725769042969,36,1.0,2 +46536,11,1.0,0,1.4671766757965088,37,0.0,2 +46537,11,1.0,0,1.2731791734695435,38,1.0,2 +46538,11,1.0,0,1.2531794309616089,39,1.0,2 +46539,11,1.0,0,1.2051798105239868,40,1.0,2 +46540,11,1.0,0,1.155179738998413,41,1.0,2 +46541,11,1.0,0,2.3161864280700684,42,1.0,2 +46542,11,1.0,0,1.1751797199249268,43,1.0,2 +46543,11,0.0,0,1.1101795434951782,44,0.0,2 +46544,11,1.0,0,2.1211771965026855,45,1.0,2 +46545,11,1.0,0,1.7751727104187012,46,1.0,2 +46546,11,1.0,0,1.2131798267364502,47,1.0,2 +46547,11,1.0,0,1.290178894996643,48,1.0,2 +46548,11,1.0,0,1.2141797542572021,49,1.0,2 +46549,11,1.0,0,1.1461796760559082,50,1.0,2 +46550,11,1.0,0,1.5841751098632812,51,1.0,2 +46551,11,1.0,0,1.459176778793335,52,0.0,2 +46552,11,0.0,0,1.510176181793213,53,0.0,2 +46553,11,0.0,0,1.4531768560409546,54,0.0,2 +46554,11,0.0,0,1.4971762895584106,55,0.0,2 +46555,11,1.0,0,1.268179178237915,56,0.0,2 +46556,11,1.0,0,2.1121768951416016,57,1.0,2 +46557,11,0.0,0,1.2481794357299805,58,0.0,2 +46558,11,1.0,0,1.27117919921875,59,1.0,2 +46559,11,1.0,0,1.316178560256958,60,0.0,2 +46560,11,0.0,0,2.176179885864258,61,0.0,2 +46561,11,1.0,0,2.268184185028076,62,0.0,2 +46562,11,0.0,0,1.6051748991012573,63,0.0,2 +46563,11,1.0,0,1.3881776332855225,64,0.0,2 +46564,11,0.0,0,1.1391797065734863,65,0.0,2 +46565,11,0.0,0,1.192179799079895,66,1.0,2 +46566,11,1.0,0,1.941170573234558,67,1.0,2 +46567,11,0.0,0,1.7911725044250488,68,0.0,2 +46568,11,1.0,0,1.4721765518188477,69,1.0,2 +46569,11,1.0,0,1.78017258644104,70,1.0,2 +46570,11,1.0,0,2.0451736450195312,71,1.0,2 +46571,11,1.0,0,1.316178560256958,72,1.0,2 +46572,11,1.0,0,1.2521793842315674,73,1.0,2 +46573,11,1.0,0,1.7191734313964844,74,1.0,2 +46574,11,1.0,0,1.192179799079895,75,1.0,2 +46575,11,0.0,0,1.8181722164154053,76,0.0,2 +46576,11,1.0,0,1.3081786632537842,77,1.0,2 +46577,11,1.0,0,1.430177092552185,78,0.0,2 +46578,11,1.0,0,1.4261771440505981,79,1.0,2 +46579,11,1.0,0,1.5171760320663452,80,1.0,2 +46580,11,1.0,0,1.1951797008514404,81,0.0,2 +46581,11,1.0,0,1.6641740798950195,82,1.0,2 +46582,11,1.0,0,1.7271733283996582,83,1.0,2 +46583,11,1.0,0,1.6361744403839111,84,1.0,2 +46584,11,1.0,0,1.7021737098693848,85,0.0,2 +46585,11,0.0,0,2.3501877784729004,86,0.0,2 +46586,11,1.0,0,1.8171721696853638,87,1.0,2 +46587,11,1.0,0,1.1731797456741333,88,1.0,2 +46588,11,1.0,0,1.695173740386963,89,1.0,2 +46589,11,1.0,0,1.3071787357330322,90,1.0,2 +46590,11,1.0,0,1.9511704444885254,91,1.0,2 +46591,11,1.0,0,1.2331796884536743,92,1.0,2 +46592,11,1.0,0,1.3921775817871094,93,1.0,2 +46593,11,1.0,0,1.1981797218322754,94,0.0,2 +46594,11,0.0,0,1.2141797542572021,95,0.0,2 +46595,11,1.0,0,1.390177607536316,96,0.0,2 +46596,11,0.0,0,1.0761795043945312,97,1.0,2 +46597,11,0.0,0,1.3701778650283813,98,0.0,2 +46598,11,0.0,0,1.5741753578186035,99,0.0,2 +46599,11,0.0,0,1.1491796970367432,100,0.0,2 +46600,11,1.0,0,1.6511743068695068,101,1.0,2 +46601,11,1.0,0,1.452176809310913,102,1.0,2 +46602,11,0.0,0,1.193179726600647,103,1.0,2 +46603,11,0.0,0,1.0971795320510864,104,1.0,2 +46604,11,1.0,0,1.8591716289520264,105,1.0,2 +46605,11,1.0,0,1.6521742343902588,106,1.0,2 +46606,11,1.0,0,1.4671766757965088,107,1.0,2 +46607,11,0.0,0,1.4611767530441284,108,1.0,2 +46608,11,0.0,0,1.8921711444854736,109,0.0,2 +46609,11,1.0,0,1.2331796884536743,110,1.0,2 +46610,11,1.0,0,1.8181722164154053,111,1.0,2 +46611,11,1.0,0,1.455176830291748,112,0.0,2 +46612,11,0.0,0,1.7141735553741455,113,0.0,2 +46613,11,1.0,0,1.5391757488250732,114,1.0,2 +46614,11,1.0,0,1.4171773195266724,115,1.0,2 +46615,11,1.0,0,1.6291745901107788,116,1.0,2 +46616,11,1.0,0,1.2831790447235107,117,1.0,2 +46617,11,1.0,0,1.2341796159744263,118,1.0,2 +46618,11,1.0,0,1.691173791885376,119,1.0,2 +46619,11,1.0,0,1.5841751098632812,120,1.0,2 +46620,11,0.0,0,1.9591703414916992,121,0.0,2 +46621,11,1.0,0,1.337178349494934,122,1.0,2 +46622,11,1.0,0,1.15317964553833,123,1.0,2 +46623,11,0.0,0,1.7811726331710815,124,1.0,2 +46624,11,0.0,0,1.481176495552063,125,1.0,2 +46625,11,0.0,0,1.2991788387298584,126,0.0,2 +46626,11,1.0,0,1.1441797018051147,127,0.0,2 +46627,11,1.0,0,1.4791765213012695,128,0.0,2 +46628,11,1.0,0,1.1811797618865967,129,1.0,2 +46629,11,1.0,0,1.2361795902252197,130,1.0,2 +46630,11,1.0,0,1.5191760063171387,131,1.0,2 +46631,11,1.0,0,1.78617262840271,132,1.0,2 +46632,11,1.0,0,1.2781790494918823,133,1.0,2 +46633,11,1.0,0,1.6291745901107788,134,1.0,2 +46634,11,1.0,0,1.7561728954315186,135,1.0,2 +46635,11,0.0,0,1.2161798477172852,136,0.0,2 +46636,11,1.0,0,1.3931776285171509,137,1.0,2 +46637,11,1.0,0,1.3791778087615967,138,1.0,2 +46638,11,1.0,0,1.3461781740188599,139,1.0,2 +46639,11,1.0,0,1.1061795949935913,140,1.0,2 +46640,11,1.0,0,1.1391797065734863,141,0.0,2 +46641,11,1.0,0,1.4951763153076172,142,1.0,2 +46642,11,1.0,0,1.599174976348877,143,0.0,2 +46643,11,1.0,0,1.5861752033233643,144,0.0,2 +46644,11,0.0,0,1.430177092552185,145,0.0,2 +46645,11,0.0,0,1.827172040939331,146,0.0,2 +46646,11,0.0,0,1.8191721439361572,147,0.0,2 +46647,11,0.0,0,1.1911797523498535,148,0.0,2 +46648,11,0.0,0,1.9291707277297974,149,0.0,2 +46649,11,1.0,0,2.1351778507232666,150,1.0,2 +46650,11,1.0,0,1.382177710533142,151,1.0,2 +46651,11,1.0,0,1.3481781482696533,152,1.0,2 +46652,11,1.0,0,1.554175615310669,153,1.0,2 +46653,11,0.0,0,1.8111722469329834,154,0.0,2 +46654,11,1.0,0,1.4741766452789307,155,0.0,2 +46655,11,0.0,0,1.4321770668029785,156,1.0,2 +46656,11,0.0,0,1.8991711139678955,157,1.0,2 +46657,11,0.0,0,1.455176830291748,158,1.0,2 +46658,11,0.0,0,1.5051761865615845,159,0.0,2 +46659,11,0.0,0,1.824172019958496,160,0.0,2 +46660,11,0.0,0,1.3101786375045776,161,1.0,2 +46661,11,1.0,0,2.1051764488220215,162,1.0,2 +46662,11,1.0,0,1.4711766242980957,163,1.0,2 +46663,11,0.0,0,1.7251733541488647,164,0.0,2 +46664,11,1.0,0,1.3031787872314453,165,0.0,2 +46665,11,0.0,0,1.4131773710250854,166,0.0,2 +46666,11,1.0,0,1.2561793327331543,167,1.0,2 +46667,11,1.0,0,1.2851790189743042,168,1.0,2 +46668,11,1.0,0,1.2251797914505005,169,1.0,2 +46669,11,1.0,0,1.8641715049743652,170,1.0,2 +46670,11,0.0,0,1.5051761865615845,171,0.0,2 +46671,11,1.0,0,1.1131795644760132,172,1.0,2 +46672,11,1.0,0,1.1781797409057617,173,0.0,2 +46673,11,1.0,0,1.9721702337265015,174,1.0,2 +46674,11,1.0,0,1.502176284790039,175,1.0,2 +46675,11,1.0,0,1.3571780920028687,176,1.0,2 +46676,11,1.0,0,1.199179768562317,177,1.0,2 +46677,11,0.0,0,1.0781794786453247,178,0.0,2 +46678,11,1.0,0,1.709173560142517,179,1.0,2 +46679,11,1.0,0,1.4621766805648804,180,1.0,2 +46680,11,1.0,0,1.1801797151565552,181,1.0,2 +46681,11,1.0,0,1.228179693222046,182,1.0,2 +46682,11,0.0,0,1.2431795597076416,183,0.0,2 +46683,11,1.0,0,1.192179799079895,184,1.0,2 +46684,11,1.0,0,1.2431795597076416,185,1.0,2 +46685,11,1.0,0,1.298178791999817,186,0.0,2 +46686,11,0.0,0,1.7331732511520386,187,0.0,2 +46687,11,0.0,0,1.1781797409057617,188,0.0,2 +46688,11,0.0,0,1.4161772727966309,189,1.0,2 +46689,11,0.0,0,1.2071797847747803,190,1.0,2 +46690,11,0.0,0,1.2421795129776,191,0.0,2 +46691,11,0.0,0,1.3751778602600098,192,0.0,2 +46692,11,1.0,0,1.6931737661361694,193,1.0,2 +46693,11,1.0,0,1.7691727876663208,194,1.0,2 +46694,11,1.0,0,1.9061710834503174,195,0.0,2 +46695,11,0.0,0,1.1501796245574951,196,0.0,2 +46696,11,0.0,0,1.920170783996582,197,0.0,2 +46697,11,0.0,0,1.9021711349487305,198,1.0,2 +46698,11,0.0,0,1.4091774225234985,199,0.0,2 +46699,11,1.0,0,1.2431795597076416,200,1.0,2 +46700,11,1.0,0,1.2831790447235107,201,1.0,2 +46701,11,1.0,0,1.2891789674758911,202,1.0,2 +46702,11,1.0,0,1.368177890777588,203,1.0,2 +46703,11,0.0,0,1.1101795434951782,204,1.0,2 +46704,11,0.0,0,1.058179497718811,205,1.0,2 +46705,11,0.0,0,1.5891751050949097,206,0.0,2 +46706,11,1.0,0,1.2481794357299805,207,1.0,2 +46707,11,1.0,0,1.2771791219711304,208,1.0,2 +46708,11,1.0,0,1.2571793794631958,209,1.0,2 +46709,11,1.0,0,1.220179796218872,210,0.0,2 +46710,11,0.0,0,1.9601702690124512,211,0.0,2 +46711,11,0.0,0,1.4031774997711182,212,0.0,2 +46712,11,0.0,0,1.6131747961044312,213,0.0,2 +46713,11,0.0,0,1.7591729164123535,214,0.0,2 +46714,11,0.0,0,1.2091797590255737,215,0.0,2 +46715,11,1.0,0,1.1781797409057617,216,1.0,2 +46716,11,0.0,0,1.1611796617507935,217,0.0,2 +46717,11,1.0,0,1.4711766242980957,218,1.0,2 +46718,11,1.0,0,1.156179666519165,219,1.0,2 +46719,11,1.0,0,2.1661791801452637,220,1.0,2 +46720,11,1.0,0,1.4691766500473022,221,1.0,2 +46721,11,1.0,0,1.4201772212982178,222,1.0,2 +46722,11,1.0,0,1.2401795387268066,223,1.0,2 +46723,11,1.0,0,1.3001787662506104,224,0.0,2 +46724,11,0.0,0,1.1061795949935913,225,1.0,2 +46725,11,0.0,0,1.783172607421875,226,0.0,2 +46726,11,1.0,0,1.506176233291626,227,1.0,2 +46727,11,1.0,0,1.6231746673583984,228,1.0,2 +46728,11,1.0,0,1.337178349494934,229,1.0,2 +46729,11,1.0,0,1.2921788692474365,230,1.0,2 +46730,11,1.0,0,1.3091787099838257,231,1.0,2 +46731,11,1.0,0,1.186179757118225,232,1.0,2 +46732,11,1.0,0,1.8401718139648438,233,1.0,2 +46733,11,1.0,0,1.6671741008758545,234,0.0,2 +46734,11,1.0,0,1.4581767320632935,235,1.0,2 +46735,11,1.0,0,2.0901756286621094,236,1.0,2 +46736,11,1.0,0,1.4501768350601196,237,0.0,2 +46737,11,0.0,0,1.1021795272827148,238,0.0,2 +46738,11,0.0,0,1.1341795921325684,239,1.0,2 +46739,11,0.0,0,1.544175624847412,240,0.0,2 +46740,11,1.0,0,1.3881776332855225,241,1.0,2 +46741,11,1.0,0,1.2141797542572021,242,1.0,2 +46742,11,1.0,0,1.7281732559204102,243,1.0,2 +46743,11,1.0,0,1.297178864479065,244,1.0,2 +46744,11,1.0,0,1.4181772470474243,245,1.0,2 +46745,11,1.0,0,1.227179765701294,246,1.0,2 +46746,11,1.0,0,2.3661885261535645,247,1.0,2 +46747,11,1.0,0,1.2401795387268066,248,0.0,2 +46748,11,0.0,0,1.7001736164093018,249,0.0,2 +46749,11,0.0,0,1.8141722679138184,250,0.0,2 +46750,11,1.0,0,1.3571780920028687,251,1.0,2 +46751,11,0.0,0,1.7281732559204102,252,0.0,2 +46752,11,1.0,0,1.452176809310913,253,1.0,2 +46753,11,1.0,0,1.2001798152923584,254,1.0,2 +46754,11,1.0,0,1.3781777620315552,255,1.0,2 +46755,11,0.0,0,1.3691779375076294,256,1.0,2 +46756,11,1.0,0,1.5591754913330078,257,1.0,2 +46757,11,0.0,0,1.3661779165267944,258,0.0,2 +46758,11,1.0,0,1.2621792554855347,259,1.0,2 +46759,11,1.0,0,1.3941775560379028,260,0.0,2 +46760,11,0.0,0,1.8161721229553223,261,0.0,2 +46761,11,1.0,0,1.525175929069519,262,1.0,2 +46762,11,1.0,0,1.691173791885376,263,1.0,2 +46763,11,0.0,0,1.2731791734695435,264,0.0,2 +46764,11,1.0,0,1.3791778087615967,265,1.0,2 +46765,11,1.0,0,1.3111786842346191,266,1.0,2 +46766,11,1.0,0,1.1351796388626099,267,0.0,2 +46767,11,1.0,0,1.8881711959838867,268,0.0,2 +46768,11,0.0,0,1.386177659034729,269,0.0,2 +46769,11,1.0,0,1.6961736679077148,270,1.0,2 +46770,11,1.0,0,1.4531768560409546,271,1.0,2 +46771,11,1.0,0,1.5451756715774536,272,1.0,2 +46772,11,0.0,0,1.156179666519165,273,0.0,2 +46773,11,1.0,0,1.3391783237457275,274,1.0,2 +46774,11,1.0,0,1.367177963256836,275,1.0,2 +46775,11,1.0,0,1.162179708480835,276,1.0,2 +46776,11,1.0,0,1.2961788177490234,277,1.0,2 +46777,11,1.0,0,1.4321770668029785,278,1.0,2 +46778,11,1.0,0,1.382177710533142,279,1.0,2 +46779,11,1.0,0,1.686173915863037,280,1.0,2 +46780,11,1.0,0,1.386177659034729,281,1.0,2 +46781,11,1.0,0,1.338178277015686,282,1.0,2 +46782,11,1.0,0,1.4101773500442505,283,1.0,2 +46783,11,0.0,0,1.3041787147521973,284,0.0,2 +46784,11,1.0,0,1.1421796083450317,285,1.0,2 +46785,11,1.0,0,1.415177345275879,286,0.0,2 +46786,11,1.0,0,1.5121760368347168,287,1.0,2 +46787,11,1.0,0,1.2791790962219238,288,1.0,2 +46788,11,1.0,0,1.4051774740219116,289,1.0,2 +46789,11,1.0,0,1.385177731513977,290,0.0,2 +46790,11,1.0,0,1.228179693222046,291,1.0,2 +46791,11,1.0,0,1.3271784782409668,292,1.0,2 +46792,11,1.0,0,1.7081735134124756,293,1.0,2 +46793,11,1.0,0,1.7081735134124756,294,1.0,2 +46794,11,1.0,0,1.6671741008758545,295,0.0,2 +46795,11,0.0,0,1.4051774740219116,296,0.0,2 +46796,11,1.0,0,1.6831738948822021,297,1.0,2 +46797,11,1.0,0,1.1871798038482666,298,1.0,2 +46798,11,1.0,0,1.1881797313690186,299,1.0,2 +46799,11,1.0,0,1.4141772985458374,300,0.0,2 +46800,11,0.0,0,1.408177375793457,301,0.0,2 +46801,11,1.0,0,1.691173791885376,302,1.0,2 +46802,11,1.0,0,1.4681766033172607,303,1.0,2 +46803,11,1.0,0,1.691173791885376,304,0.0,2 +46804,11,1.0,0,1.411177396774292,305,1.0,2 +46805,11,1.0,0,1.1801797151565552,306,1.0,2 +46806,11,1.0,0,1.7531729936599731,307,0.0,2 +46807,11,1.0,0,1.849171757698059,308,1.0,2 +46808,11,1.0,0,1.4741766452789307,309,1.0,2 +46809,11,1.0,0,1.2351796627044678,310,1.0,2 +46810,11,1.0,0,1.569175362586975,311,1.0,2 +46811,11,1.0,0,1.5751752853393555,312,1.0,2 +46812,11,1.0,0,1.312178611755371,313,1.0,2 +46813,11,1.0,0,1.5181760787963867,314,1.0,2 +46814,11,1.0,0,1.3721778392791748,315,0.0,2 +46815,11,0.0,0,1.089179515838623,316,0.0,2 +46816,11,1.0,0,1.2391796112060547,317,1.0,2 +46817,11,1.0,0,1.190179705619812,318,1.0,2 +46818,11,1.0,0,1.8291720151901245,319,1.0,2 +46819,11,1.0,0,1.4391770362854004,320,1.0,2 +46820,11,0.0,0,1.298178791999817,321,0.0,2 +46821,11,1.0,0,1.2541793584823608,322,1.0,2 +46822,11,1.0,0,1.1981797218322754,323,1.0,2 +46823,11,1.0,0,1.3841776847839355,324,1.0,2 +46824,11,1.0,0,1.3871777057647705,325,1.0,2 +46825,11,1.0,0,1.4251772165298462,326,0.0,2 +46826,11,0.0,0,1.2091797590255737,327,1.0,2 +46827,11,0.0,0,1.0701794624328613,328,0.0,2 +46828,11,0.0,0,1.1601797342300415,329,0.0,2 +46829,11,1.0,0,1.4781765937805176,330,1.0,2 +46830,11,1.0,0,1.3991775512695312,331,1.0,2 +46831,11,1.0,0,1.217179775238037,332,1.0,2 +46832,11,1.0,0,1.18917977809906,333,1.0,2 +46833,11,1.0,0,1.2531794309616089,334,0.0,2 +46834,11,0.0,0,2.1511785984039307,335,0.0,2 +46835,11,0.0,0,1.9021711349487305,336,0.0,2 +46836,11,1.0,0,1.826172113418579,337,1.0,2 +46837,11,1.0,0,1.642174482345581,338,1.0,2 +46838,11,1.0,0,1.132179617881775,339,0.0,2 +46839,11,0.0,0,1.0711795091629028,340,1.0,2 +46840,11,0.0,0,1.1031795740127563,341,0.0,2 +46841,11,0.0,0,1.3791778087615967,342,0.0,2 +46842,11,1.0,0,1.4711766242980957,343,1.0,2 +46843,11,0.0,0,1.4141772985458374,344,1.0,2 +46844,11,1.0,0,1.3341783285140991,345,1.0,2 +46845,11,1.0,0,1.1771796941757202,346,1.0,2 +46846,11,0.0,0,1.5721752643585205,347,0.0,2 +46847,11,1.0,0,1.2741791009902954,348,0.0,2 +46848,11,1.0,0,1.4431769847869873,349,1.0,2 +46849,11,1.0,0,1.4621766805648804,350,1.0,2 +46850,11,0.0,0,1.481176495552063,351,0.0,2 +46851,11,0.0,0,1.3701778650283813,352,0.0,2 +46852,11,1.0,0,1.3281784057617188,353,1.0,2 +46853,11,1.0,0,1.2731791734695435,354,1.0,2 +46854,11,1.0,0,1.8681714534759521,355,1.0,2 +46855,11,1.0,0,1.2631793022155762,356,1.0,2 +46856,11,1.0,0,1.312178611755371,357,0.0,2 +46857,11,0.0,0,1.742173194885254,358,0.0,2 +46858,11,1.0,0,1.739173173904419,359,1.0,2 +46859,11,0.0,0,1.0501794815063477,360,0.0,2 +46860,11,1.0,0,1.3361783027648926,361,0.0,2 +46861,11,1.0,0,1.6031749248504639,362,0.0,2 +46862,11,1.0,0,2.034173011779785,363,1.0,2 +46863,11,1.0,0,1.1391797065734863,364,1.0,2 +46864,11,1.0,0,1.2261797189712524,365,1.0,2 +46865,11,1.0,0,1.1841797828674316,366,1.0,2 +46866,11,1.0,0,1.434177041053772,367,1.0,2 +46867,11,1.0,0,1.3521780967712402,368,1.0,2 +46868,11,1.0,0,1.2641792297363281,369,1.0,2 +46869,11,0.0,0,1.5181760787963867,370,0.0,2 +46870,11,0.0,0,1.6111748218536377,371,0.0,2 +46871,11,1.0,0,1.5591754913330078,372,1.0,2 +46872,11,1.0,0,1.319178581237793,373,1.0,2 +46873,11,1.0,0,1.4061774015426636,374,1.0,2 +46874,11,1.0,0,1.6071748733520508,375,0.0,2 +46875,11,1.0,0,1.4241771697998047,376,1.0,2 +46876,11,1.0,0,1.4381769895553589,377,1.0,2 +46877,11,1.0,0,1.6581742763519287,378,1.0,2 +46878,11,0.0,0,1.2831790447235107,379,0.0,2 +46879,11,1.0,0,1.3831777572631836,380,1.0,2 +46880,11,1.0,0,1.7981724739074707,381,1.0,2 +46881,11,1.0,0,1.3831777572631836,382,1.0,2 +46882,11,1.0,0,1.3571780920028687,383,1.0,2 +46883,11,1.0,0,1.275179147720337,384,0.0,2 +46884,11,0.0,0,1.2251797914505005,385,0.0,2 +46885,11,1.0,0,1.3721778392791748,386,1.0,2 +46886,11,1.0,0,1.3061786890029907,387,1.0,2 +46887,11,1.0,0,1.2261797189712524,388,1.0,2 +46888,11,0.0,0,1.1061795949935913,389,0.0,2 +46889,11,1.0,0,1.4311771392822266,390,1.0,2 +46890,11,1.0,0,1.2341796159744263,391,1.0,2 +46891,11,1.0,0,1.246179461479187,392,1.0,2 +46892,11,1.0,0,1.1701797246932983,393,1.0,2 +46893,11,1.0,0,1.8361718654632568,394,1.0,2 +46894,11,1.0,0,1.337178349494934,395,1.0,2 +46895,11,1.0,0,1.3951776027679443,396,1.0,2 +46896,11,1.0,0,1.2311797142028809,397,1.0,2 +46897,11,1.0,0,1.4241771697998047,398,1.0,2 +46898,11,1.0,0,1.2101798057556152,399,1.0,2 +46899,11,1.0,0,2.0691747665405273,400,0.0,2 +46900,11,0.0,0,1.0681794881820679,401,0.0,2 +46901,11,0.0,0,1.249179482460022,402,0.0,2 +46902,11,0.0,0,1.4031774997711182,403,0.0,2 +46903,11,0.0,0,1.555175542831421,404,0.0,2 +46904,11,0.0,0,1.0591795444488525,405,0.0,2 +46905,11,0.0,0,2.1191771030426025,406,0.0,2 +46906,11,1.0,0,1.5171760320663452,407,0.0,2 +46907,11,1.0,0,1.5051761865615845,408,1.0,2 +46908,11,1.0,0,1.4981763362884521,409,0.0,2 +46909,11,1.0,0,2.000171661376953,410,1.0,2 +46910,11,1.0,0,1.2071797847747803,411,1.0,2 +46911,11,1.0,0,1.2291797399520874,412,1.0,2 +46912,11,1.0,0,1.1441797018051147,413,1.0,2 +46913,11,1.0,0,1.1711797714233398,414,1.0,2 +46914,11,1.0,0,1.4241771697998047,415,1.0,2 +46915,11,1.0,0,1.481176495552063,416,1.0,2 +46916,11,1.0,0,1.3331784009933472,417,1.0,2 +46917,11,0.0,0,2.25018310546875,418,1.0,2 +46918,11,0.0,0,1.316178560256958,419,0.0,2 +46919,11,1.0,0,1.156179666519165,420,1.0,2 +46920,11,1.0,0,1.27117919921875,421,1.0,2 +46921,11,1.0,0,1.2141797542572021,422,0.0,2 +46922,11,1.0,0,1.3171786069869995,423,1.0,2 +46923,11,0.0,0,1.2951788902282715,424,0.0,2 +46924,11,1.0,0,1.6961736679077148,425,1.0,2 +46925,11,1.0,0,1.312178611755371,426,1.0,2 +46926,11,1.0,0,2.1711795330047607,427,1.0,2 +46927,11,1.0,0,1.742173194885254,428,0.0,2 +46928,11,0.0,0,1.2371796369552612,429,0.0,2 +46929,11,1.0,0,1.1771796941757202,430,1.0,2 +46930,11,1.0,0,1.5411757230758667,431,1.0,2 +46931,11,1.0,0,1.1151795387268066,432,1.0,2 +46932,11,1.0,0,1.460176706314087,433,0.0,2 +46933,11,1.0,0,1.0841795206069946,434,1.0,2 +46934,11,1.0,0,1.665174126625061,435,1.0,2 +46935,11,1.0,0,1.1421796083450317,436,1.0,2 +46936,11,1.0,0,1.2851790189743042,437,1.0,2 +46937,11,1.0,0,1.43317711353302,438,1.0,2 +46938,11,1.0,0,1.217179775238037,439,0.0,2 +46939,11,1.0,0,1.5661754608154297,440,1.0,2 +46940,11,1.0,0,1.2951788902282715,441,1.0,2 +46941,11,1.0,0,1.3181785345077515,442,0.0,2 +46942,11,0.0,0,1.1701797246932983,443,1.0,2 +46943,11,0.0,0,2.445192337036133,444,0.0,2 +46944,11,0.0,0,2.222181797027588,445,0.0,2 +46945,11,0.0,0,1.1301796436309814,446,0.0,2 +46946,11,1.0,0,1.2601792812347412,447,1.0,2 +46947,11,1.0,0,1.1591796875,448,1.0,2 +46948,11,1.0,0,1.1841797828674316,449,1.0,2 +46949,11,1.0,0,1.3331784009933472,450,1.0,2 +46950,11,1.0,0,1.4821765422821045,451,1.0,2 +46951,11,1.0,0,1.3261784315109253,452,1.0,2 +46952,11,1.0,0,1.2541793584823608,453,0.0,2 +46953,11,1.0,0,1.2031798362731934,454,1.0,2 +46954,11,0.0,0,1.7551729679107666,455,0.0,2 +46955,11,1.0,0,1.3081786632537842,456,1.0,2 +46956,11,0.0,0,1.1661796569824219,457,0.0,2 +46957,11,1.0,0,1.6121747493743896,458,1.0,2 +46958,11,1.0,0,1.3991775512695312,459,1.0,2 +46959,11,1.0,0,1.3081786632537842,460,1.0,2 +46960,11,1.0,0,1.2511794567108154,461,1.0,2 +46961,11,1.0,0,1.6011749505996704,462,1.0,2 +46962,11,1.0,0,1.4571768045425415,463,1.0,2 +46963,11,1.0,0,1.5421757698059082,464,1.0,2 +46964,11,1.0,0,1.1771796941757202,465,1.0,2 +46965,11,1.0,0,1.5241758823394775,466,1.0,2 +46966,11,1.0,0,1.6611741781234741,467,1.0,2 +46967,11,1.0,0,1.4951763153076172,468,1.0,2 +46968,11,0.0,0,1.1721796989440918,469,1.0,2 +46969,11,0.0,0,1.5871751308441162,470,0.0,2 +46970,11,1.0,0,1.3741778135299683,471,1.0,2 +46971,11,1.0,0,1.7711727619171143,472,0.0,2 +46972,11,0.0,0,1.9331706762313843,473,0.0,2 +46973,11,0.0,0,1.1071796417236328,474,0.0,2 +46974,11,0.0,0,2.3631885051727295,475,0.0,2 +46975,11,1.0,0,1.967170238494873,476,1.0,2 +46976,11,1.0,0,1.092179536819458,477,1.0,2 +46977,11,1.0,0,1.3721778392791748,478,1.0,2 +46978,11,1.0,0,1.4241771697998047,479,1.0,2 +46979,11,1.0,0,1.2471795082092285,480,0.0,2 +46980,11,0.0,0,1.227179765701294,481,0.0,2 +46981,11,0.0,0,1.9421706199645996,482,0.0,2 +46982,11,1.0,0,1.684173822402954,483,1.0,2 +46983,11,1.0,0,1.6591742038726807,484,1.0,2 +46984,11,1.0,0,1.8451718091964722,485,1.0,2 +46985,11,1.0,0,1.5751752853393555,486,1.0,2 +46986,11,1.0,0,1.367177963256836,487,1.0,2 +46987,11,1.0,0,1.162179708480835,488,1.0,2 +46988,11,1.0,0,1.2791790962219238,489,1.0,2 +46989,11,1.0,0,1.8451718091964722,490,1.0,2 +46990,11,1.0,0,1.341178297996521,491,1.0,2 +46991,11,1.0,0,1.6621742248535156,492,1.0,2 +46992,11,1.0,0,1.2661792039871216,493,1.0,2 +46993,11,0.0,0,1.3471782207489014,494,0.0,2 +46994,11,1.0,0,1.2131798267364502,495,1.0,2 +46995,11,1.0,0,1.3741778135299683,496,1.0,2 +46996,11,1.0,0,1.7141735553741455,497,1.0,2 +46997,11,1.0,0,1.625174641609192,498,1.0,2 +46998,11,1.0,0,1.2401795387268066,499,1.0,2 +46999,11,1.0,0,1.3271784782409668,500,1.0,2 +47000,11,1.0,1,1.4791765213012695,1,1.0,2 +47001,11,0.0,1,1.4411770105361938,2,1.0,2 +47002,11,0.0,1,1.5141761302947998,3,1.0,2 +47003,11,0.0,1,1.9251707792282104,4,0.0,2 +47004,11,1.0,1,1.2691792249679565,5,1.0,2 +47005,11,1.0,1,1.7921724319458008,6,1.0,2 +47006,11,0.0,1,1.3271784782409668,7,1.0,2 +47007,11,0.0,1,1.1391797065734863,8,0.0,2 +47008,11,1.0,1,1.2031798362731934,9,1.0,2 +47009,11,1.0,1,1.4101773500442505,10,1.0,2 +47010,11,1.0,1,1.43317711353302,11,1.0,2 +47011,11,1.0,1,1.3511781692504883,12,1.0,2 +47012,11,1.0,1,1.1611796617507935,13,1.0,2 +47013,11,1.0,1,1.6321744918823242,14,0.0,2 +47014,11,1.0,1,1.3791778087615967,15,1.0,2 +47015,11,1.0,1,1.5881750583648682,16,1.0,2 +47016,11,1.0,1,1.6241745948791504,17,1.0,2 +47017,11,1.0,1,1.6511743068695068,18,1.0,2 +47018,11,1.0,1,1.4031774997711182,19,0.0,2 +47019,11,0.0,1,1.1401796340942383,20,0.0,2 +47020,11,1.0,1,1.2791790962219238,21,0.0,2 +47021,11,0.0,1,1.3951776027679443,22,1.0,2 +47022,11,0.0,1,1.2161798477172852,23,0.0,2 +47023,11,0.0,1,1.2851790189743042,24,0.0,2 +47024,11,0.0,1,2.3231866359710693,25,1.0,2 +47025,11,0.0,1,1.1501796245574951,26,0.0,2 +47026,11,0.0,1,1.9341707229614258,27,1.0,2 +47027,11,0.0,1,1.4011775255203247,28,0.0,2 +47028,11,0.0,1,1.717173457145691,29,0.0,2 +47029,11,1.0,1,2.0901756286621094,30,1.0,2 +47030,11,1.0,1,1.2031798362731934,31,0.0,2 +47031,11,0.0,1,1.3951776027679443,32,0.0,2 +47032,11,0.0,1,1.7021737098693848,33,0.0,2 +47033,11,0.0,1,1.6701741218566895,34,1.0,2 +47034,11,0.0,1,1.1751797199249268,35,1.0,2 +47035,11,0.0,1,1.6781740188598633,36,1.0,2 +47036,11,1.0,1,1.7431731224060059,37,1.0,2 +47037,11,1.0,1,1.8161721229553223,38,0.0,2 +47038,11,0.0,1,1.6371744871139526,39,0.0,2 +47039,11,0.0,1,1.1311795711517334,40,0.0,2 +47040,11,0.0,1,1.621174693107605,41,0.0,2 +47041,11,1.0,1,1.4471769332885742,42,1.0,2 +47042,11,0.0,1,1.7531729936599731,43,0.0,2 +47043,11,0.0,1,1.2911789417266846,44,0.0,2 +47044,11,1.0,1,1.246179461479187,45,1.0,2 +47045,11,1.0,1,2.265183925628662,46,0.0,2 +47046,11,1.0,1,1.9501705169677734,47,0.0,2 +47047,11,0.0,1,1.3881776332855225,48,0.0,2 +47048,11,0.0,1,1.8081722259521484,49,0.0,2 +47049,11,1.0,1,1.407177448272705,50,1.0,2 +47050,11,1.0,1,1.1971797943115234,51,1.0,2 +47051,11,0.0,1,1.3281784057617188,52,0.0,2 +47052,11,1.0,1,1.1241796016693115,53,1.0,2 +47053,11,0.0,1,1.3571780920028687,54,1.0,2 +47054,11,0.0,1,1.7991724014282227,55,0.0,2 +47055,11,1.0,1,1.993171215057373,56,1.0,2 +47056,11,1.0,1,1.3001787662506104,57,1.0,2 +47057,11,1.0,1,1.092179536819458,58,0.0,2 +47058,11,0.0,1,1.78017258644104,59,0.0,2 +47059,11,0.0,1,2.0721750259399414,60,1.0,2 +47060,11,0.0,1,1.1121796369552612,61,0.0,2 +47061,11,0.0,1,1.5851751565933228,62,1.0,2 +47062,11,0.0,1,1.5331758260726929,63,0.0,2 +47063,11,0.0,1,1.128179669380188,64,0.0,2 +47064,11,1.0,1,1.2331796884536743,65,0.0,2 +47065,11,1.0,1,1.2091797590255737,66,1.0,2 +47066,11,1.0,1,1.2781790494918823,67,1.0,2 +47067,11,1.0,1,1.3351783752441406,68,0.0,2 +47068,11,1.0,1,1.7881724834442139,69,1.0,2 +47069,11,1.0,1,1.602174997329712,70,0.0,2 +47070,11,0.0,1,1.5321757793426514,71,1.0,2 +47071,11,0.0,1,1.1171796321868896,72,0.0,2 +47072,11,0.0,1,2.4221911430358887,73,0.0,2 +47073,11,0.0,1,1.6281745433807373,74,1.0,2 +47074,11,0.0,1,1.1721796989440918,75,0.0,2 +47075,11,0.0,1,1.3071787357330322,76,1.0,2 +47076,11,0.0,1,1.5351758003234863,77,0.0,2 +47077,11,0.0,1,1.408177375793457,78,0.0,2 +47078,11,0.0,1,1.246179461479187,79,0.0,2 +47079,11,1.0,1,1.7451730966567993,80,1.0,2 +47080,11,1.0,1,1.2611793279647827,81,1.0,2 +47081,11,1.0,1,1.1331796646118164,82,0.0,2 +47082,11,0.0,1,1.1721796989440918,83,0.0,2 +47083,11,0.0,1,1.924170732498169,84,0.0,2 +47084,11,0.0,1,1.1911797523498535,85,0.0,2 +47085,11,1.0,1,2.3481879234313965,86,1.0,2 +47086,11,1.0,1,1.5721752643585205,87,1.0,2 +47087,11,1.0,1,1.5591754913330078,88,1.0,2 +47088,11,1.0,1,1.3001787662506104,89,1.0,2 +47089,11,1.0,1,1.5761752128601074,90,0.0,2 +47090,11,1.0,1,1.9181709289550781,91,0.0,2 +47091,11,0.0,1,1.684173822402954,92,0.0,2 +47092,11,1.0,1,1.5811752080917358,93,1.0,2 +47093,11,0.0,1,1.1351796388626099,94,0.0,2 +47094,11,1.0,1,1.4231772422790527,95,1.0,2 +47095,11,1.0,1,1.4441769123077393,96,0.0,2 +47096,11,0.0,1,1.293178915977478,97,0.0,2 +47097,11,0.0,1,1.1351796388626099,98,1.0,2 +47098,11,0.0,1,1.0831794738769531,99,0.0,2 +47099,11,1.0,1,2.4121909141540527,100,1.0,2 +47100,11,1.0,1,1.0941795110702515,101,0.0,2 +47101,11,1.0,1,1.4131773710250854,102,0.0,2 +47102,11,1.0,1,1.5841751098632812,103,1.0,2 +47103,11,0.0,1,1.128179669380188,104,0.0,2 +47104,11,1.0,1,1.7261734008789062,105,1.0,2 +47105,11,1.0,1,1.337178349494934,106,1.0,2 +47106,11,1.0,1,1.2371796369552612,107,1.0,2 +47107,11,1.0,1,1.5241758823394775,108,1.0,2 +47108,11,1.0,1,1.2631793022155762,109,1.0,2 +47109,11,0.0,1,1.2261797189712524,110,0.0,2 +47110,11,1.0,1,1.2191798686981201,111,0.0,2 +47111,11,1.0,1,1.1301796436309814,112,1.0,2 +47112,11,1.0,1,1.5461757183074951,113,0.0,2 +47113,11,0.0,1,1.162179708480835,114,0.0,2 +47114,11,0.0,1,1.29417884349823,115,0.0,2 +47115,11,1.0,1,1.717173457145691,116,1.0,2 +47116,11,1.0,1,1.220179796218872,117,0.0,2 +47117,11,0.0,1,1.4461768865585327,118,1.0,2 +47118,11,0.0,1,1.742173194885254,119,1.0,2 +47119,11,0.0,1,1.125179648399353,120,0.0,2 +47120,11,1.0,1,1.2831790447235107,121,1.0,2 +47121,11,1.0,1,1.3831777572631836,122,0.0,2 +47122,11,1.0,1,1.5381758213043213,123,1.0,2 +47123,11,0.0,1,1.3551781177520752,124,0.0,2 +47124,11,0.0,1,1.1871798038482666,125,0.0,2 +47125,11,1.0,1,1.3911776542663574,126,0.0,2 +47126,11,0.0,1,1.0521794557571411,127,1.0,2 +47127,11,0.0,1,1.7741727828979492,128,0.0,2 +47128,11,0.0,1,1.1361796855926514,129,0.0,2 +47129,11,1.0,1,1.3251785039901733,130,1.0,2 +47130,11,1.0,1,1.7161734104156494,131,0.0,2 +47131,11,0.0,1,1.2081798315048218,132,0.0,2 +47132,11,1.0,1,1.5161759853363037,133,0.0,2 +47133,11,1.0,1,1.1501796245574951,134,1.0,2 +47134,11,1.0,1,2.0541739463806152,135,1.0,2 +47135,11,1.0,1,1.15317964553833,136,1.0,2 +47136,11,1.0,1,1.3871777057647705,137,1.0,2 +47137,11,1.0,1,1.0501794815063477,138,1.0,2 +47138,11,1.0,1,1.342178225517273,139,1.0,2 +47139,11,1.0,1,1.2391796112060547,140,1.0,2 +47140,11,1.0,1,1.5821752548217773,141,0.0,2 +47141,11,0.0,1,1.2991788387298584,142,0.0,2 +47142,11,0.0,1,1.0961796045303345,143,0.0,2 +47143,11,0.0,1,1.3941775560379028,144,0.0,2 +47144,11,1.0,1,1.7631728649139404,145,1.0,2 +47145,11,0.0,1,1.190179705619812,146,0.0,2 +47146,11,1.0,1,1.6481742858886719,147,1.0,2 +47147,11,1.0,1,1.6571742296218872,148,1.0,2 +47148,11,1.0,1,1.0771795511245728,149,0.0,2 +47149,11,1.0,1,1.897171139717102,150,1.0,2 +47150,11,1.0,1,1.1811797618865967,151,1.0,2 +47151,11,1.0,1,1.1501796245574951,152,1.0,2 +47152,11,1.0,1,1.3871777057647705,153,0.0,2 +47153,11,1.0,1,1.7281732559204102,154,1.0,2 +47154,11,1.0,1,1.4611767530441284,155,1.0,2 +47155,11,1.0,1,1.2921788692474365,156,1.0,2 +47156,11,1.0,1,2.3701887130737305,157,0.0,2 +47157,11,0.0,1,1.2011797428131104,158,0.0,2 +47158,11,0.0,1,1.4171773195266724,159,0.0,2 +47159,11,1.0,1,1.3261784315109253,160,1.0,2 +47160,11,1.0,1,1.126179575920105,161,1.0,2 +47161,11,1.0,1,1.4911763668060303,162,0.0,2 +47162,11,0.0,1,1.5851751565933228,163,1.0,2 +47163,11,0.0,1,1.1421796083450317,164,0.0,2 +47164,11,1.0,1,1.6321744918823242,165,1.0,2 +47165,11,1.0,1,1.101179599761963,166,1.0,2 +47166,11,1.0,1,1.2641792297363281,167,1.0,2 +47167,11,1.0,1,1.3101786375045776,168,1.0,2 +47168,11,1.0,1,1.1801797151565552,169,1.0,2 +47169,11,1.0,1,1.8151721954345703,170,0.0,2 +47170,11,0.0,1,1.7621729373931885,171,1.0,2 +47171,11,0.0,1,1.2631793022155762,172,0.0,2 +47172,11,0.0,1,1.5271759033203125,173,0.0,2 +47173,11,0.0,1,1.6341745853424072,174,0.0,2 +47174,11,1.0,1,1.3991775512695312,175,1.0,2 +47175,11,1.0,1,1.3301783800125122,176,1.0,2 +47176,11,1.0,1,1.2011797428131104,177,1.0,2 +47177,11,0.0,1,2.221181869506836,178,0.0,2 +47178,11,1.0,1,1.2161798477172852,179,0.0,2 +47179,11,1.0,1,1.341178297996521,180,0.0,2 +47180,11,1.0,1,1.2141797542572021,181,0.0,2 +47181,11,0.0,1,1.6161746978759766,182,1.0,2 +47182,11,0.0,1,1.4131773710250854,183,1.0,2 +47183,11,0.0,1,1.5261759757995605,184,0.0,2 +47184,11,1.0,1,1.2311797142028809,185,1.0,2 +47185,11,1.0,1,1.245179533958435,186,1.0,2 +47186,11,1.0,1,1.1611796617507935,187,1.0,2 +47187,11,0.0,1,1.4251772165298462,188,0.0,2 +47188,11,1.0,1,1.2831790447235107,189,0.0,2 +47189,11,0.0,1,1.5211759805679321,190,0.0,2 +47190,11,0.0,1,1.1371796131134033,191,0.0,2 +47191,11,1.0,1,1.6821739673614502,192,1.0,2 +47192,11,1.0,1,1.625174641609192,193,1.0,2 +47193,11,1.0,1,1.411177396774292,194,0.0,2 +47194,11,0.0,1,1.2521793842315674,195,0.0,2 +47195,11,0.0,1,1.3361783027648926,196,0.0,2 +47196,11,0.0,1,1.2181798219680786,197,0.0,2 +47197,11,0.0,1,2.279184579849243,198,1.0,2 +47198,11,0.0,1,1.2061797380447388,199,0.0,2 +47199,11,0.0,1,1.6121747493743896,200,0.0,2 +47200,11,1.0,1,1.8401718139648438,201,1.0,2 +47201,11,1.0,1,1.569175362586975,202,1.0,2 +47202,11,1.0,1,1.437177062034607,203,0.0,2 +47203,11,0.0,1,1.4671766757965088,204,0.0,2 +47204,11,0.0,1,1.4821765422821045,205,0.0,2 +47205,11,0.0,1,1.1151795387268066,206,0.0,2 +47206,11,0.0,1,2.3941898345947266,207,0.0,2 +47207,11,0.0,1,1.2331796884536743,208,1.0,2 +47208,11,0.0,1,1.4061774015426636,209,1.0,2 +47209,11,0.0,1,1.3401782512664795,210,0.0,2 +47210,11,1.0,1,1.997171401977539,211,0.0,2 +47211,11,0.0,1,2.014172077178955,212,1.0,2 +47212,11,0.0,1,2.0491738319396973,213,0.0,2 +47213,11,1.0,1,1.7851725816726685,214,0.0,2 +47214,11,0.0,1,1.4001774787902832,215,0.0,2 +47215,11,0.0,1,1.8931711912155151,216,1.0,2 +47216,11,0.0,1,2.0551741123199463,217,1.0,2 +47217,11,0.0,1,1.0571794509887695,218,0.0,2 +47218,11,0.0,1,1.826172113418579,219,1.0,2 +47219,11,0.0,1,1.2321796417236328,220,0.0,2 +47220,11,0.0,1,1.1881797313690186,221,0.0,2 +47221,11,0.0,1,1.341178297996521,222,0.0,2 +47222,11,0.0,1,1.086179494857788,223,0.0,2 +47223,11,0.0,1,2.0771751403808594,224,0.0,2 +47224,11,1.0,1,1.6031749248504639,225,0.0,2 +47225,11,0.0,1,1.9541704654693604,226,1.0,2 +47226,11,0.0,1,1.6741740703582764,227,0.0,2 +47227,11,0.0,1,1.4701765775680542,228,0.0,2 +47228,11,1.0,1,1.6111748218536377,229,1.0,2 +47229,11,1.0,1,2.033173084259033,230,1.0,2 +47230,11,1.0,1,1.196179747581482,231,0.0,2 +47231,11,1.0,1,2.1621789932250977,232,0.0,2 +47232,11,0.0,1,1.7441730499267578,233,1.0,2 +47233,11,0.0,1,1.3441781997680664,234,0.0,2 +47234,11,0.0,1,1.1951797008514404,235,0.0,2 +47235,11,0.0,1,1.5151760578155518,236,1.0,2 +47236,11,0.0,1,1.338178277015686,237,0.0,2 +47237,11,0.0,1,1.6151747703552246,238,0.0,2 +47238,11,0.0,1,1.4241771697998047,239,1.0,2 +47239,11,0.0,1,1.713173508644104,240,1.0,2 +47240,11,0.0,1,1.2571793794631958,241,1.0,2 +47241,11,0.0,1,1.186179757118225,242,1.0,2 +47242,11,0.0,1,1.3871777057647705,243,0.0,2 +47243,11,0.0,1,1.1051795482635498,244,1.0,2 +47244,11,0.0,1,1.3341783285140991,245,1.0,2 +47245,11,0.0,1,1.3391783237457275,246,0.0,2 +47246,11,0.0,1,1.2041797637939453,247,1.0,2 +47247,11,0.0,1,1.2791790962219238,248,0.0,2 +47248,11,1.0,1,1.2911789417266846,249,1.0,2 +47249,11,1.0,1,1.5641753673553467,250,1.0,2 +47250,11,1.0,1,1.4251772165298462,251,1.0,2 +47251,11,1.0,1,1.3841776847839355,252,1.0,2 +47252,11,0.0,1,1.5161759853363037,253,1.0,2 +47253,11,0.0,1,1.8461718559265137,254,0.0,2 +47254,11,1.0,1,1.3061786890029907,255,1.0,2 +47255,11,1.0,1,1.4501768350601196,256,0.0,2 +47256,11,1.0,1,2.209181308746338,257,0.0,2 +47257,11,1.0,1,1.2121797800064087,258,1.0,2 +47258,11,1.0,1,1.500176191329956,259,1.0,2 +47259,11,1.0,1,1.3621779680252075,260,0.0,2 +47260,11,0.0,1,1.1491796970367432,261,0.0,2 +47261,11,1.0,1,1.8231720924377441,262,1.0,2 +47262,11,1.0,1,1.155179738998413,263,1.0,2 +47263,11,0.0,1,1.2841789722442627,264,1.0,2 +47264,11,0.0,1,1.2111797332763672,265,1.0,2 +47265,11,0.0,1,1.3071787357330322,266,1.0,2 +47266,11,0.0,1,1.8661715984344482,267,0.0,2 +47267,11,1.0,1,1.4901764392852783,268,1.0,2 +47268,11,1.0,1,1.9321706295013428,269,0.0,2 +47269,11,1.0,1,1.2691792249679565,270,1.0,2 +47270,11,1.0,1,1.5081760883331299,271,1.0,2 +47271,11,1.0,1,1.569175362586975,272,0.0,2 +47272,11,0.0,1,1.4361770153045654,273,0.0,2 +47273,11,0.0,1,1.3051787614822388,274,0.0,2 +47274,11,1.0,1,1.2871789932250977,275,0.0,2 +47275,11,1.0,1,1.2571793794631958,276,0.0,2 +47276,11,0.0,1,1.3261784315109253,277,1.0,2 +47277,11,0.0,1,1.3261784315109253,278,1.0,2 +47278,11,0.0,1,1.4701765775680542,279,1.0,2 +47279,11,0.0,1,1.0381793975830078,280,1.0,2 +47280,11,0.0,1,1.1041796207427979,281,0.0,2 +47281,11,1.0,1,2.1251773834228516,282,1.0,2 +47282,11,1.0,1,1.382177710533142,283,1.0,2 +47283,11,1.0,1,1.7701728343963623,284,0.0,2 +47284,11,0.0,1,1.876171350479126,285,1.0,2 +47285,11,0.0,1,1.5831751823425293,286,1.0,2 +47286,11,0.0,1,1.6351745128631592,287,0.0,2 +47287,11,0.0,1,1.2741791009902954,288,0.0,2 +47288,11,0.0,1,1.7291733026504517,289,0.0,2 +47289,11,0.0,1,1.7311732769012451,290,1.0,2 +47290,11,0.0,1,1.923170804977417,291,0.0,2 +47291,11,1.0,1,1.3141785860061646,292,1.0,2 +47292,11,1.0,1,1.9471704959869385,293,1.0,2 +47293,11,1.0,1,1.2121797800064087,294,1.0,2 +47294,11,1.0,1,1.1491796970367432,295,0.0,2 +47295,11,0.0,1,2.1401782035827637,296,0.0,2 +47296,11,0.0,1,1.6281745433807373,297,0.0,2 +47297,11,1.0,1,1.6711740493774414,298,1.0,2 +47298,11,1.0,1,1.4051774740219116,299,1.0,2 +47299,11,1.0,1,1.1671797037124634,300,1.0,2 +47300,11,1.0,1,1.2041797637939453,301,1.0,2 +47301,11,1.0,1,1.5421757698059082,302,1.0,2 +47302,11,1.0,1,1.452176809310913,303,1.0,2 +47303,11,1.0,1,1.5581755638122559,304,1.0,2 +47304,11,1.0,1,1.2111797332763672,305,1.0,2 +47305,11,1.0,1,1.6221747398376465,306,1.0,2 +47306,11,1.0,1,1.547175645828247,307,1.0,2 +47307,11,1.0,1,1.5051761865615845,308,1.0,2 +47308,11,1.0,1,1.8981711864471436,309,1.0,2 +47309,11,1.0,1,1.1851797103881836,310,1.0,2 +47310,11,1.0,1,1.16517972946167,311,1.0,2 +47311,11,1.0,1,1.6771739721298218,312,1.0,2 +47312,11,1.0,1,1.600174903869629,313,0.0,2 +47313,11,1.0,1,1.4831764698028564,314,1.0,2 +47314,11,1.0,1,1.6161746978759766,315,1.0,2 +47315,11,1.0,1,1.2251797914505005,316,0.0,2 +47316,11,1.0,1,1.4091774225234985,317,1.0,2 +47317,11,1.0,1,1.3351783752441406,318,1.0,2 +47318,11,1.0,1,2.0401735305786133,319,1.0,2 +47319,11,0.0,1,1.824172019958496,320,0.0,2 +47320,11,0.0,1,1.6591742038726807,321,1.0,2 +47321,11,1.0,1,1.455176830291748,322,0.0,2 +47322,11,0.0,1,1.1211795806884766,323,0.0,2 +47323,11,1.0,1,1.1691796779632568,324,1.0,2 +47324,11,1.0,1,1.3031787872314453,325,1.0,2 +47325,11,1.0,1,1.3521780967712402,326,1.0,2 +47326,11,1.0,1,1.4001774787902832,327,0.0,2 +47327,11,1.0,1,1.2521793842315674,328,0.0,2 +47328,11,0.0,1,1.5871751308441162,329,0.0,2 +47329,11,0.0,1,1.8911712169647217,330,0.0,2 +47330,11,0.0,1,1.126179575920105,331,0.0,2 +47331,11,0.0,1,1.2651792764663696,332,1.0,2 +47332,11,0.0,1,1.1971797943115234,333,0.0,2 +47333,11,1.0,1,1.6061749458312988,334,1.0,2 +47334,11,1.0,1,1.3081786632537842,335,1.0,2 +47335,11,1.0,1,1.1091796159744263,336,1.0,2 +47336,11,1.0,1,1.736173152923584,337,1.0,2 +47337,11,1.0,1,1.2141797542572021,338,1.0,2 +47338,11,1.0,1,1.4351770877838135,339,1.0,2 +47339,11,1.0,1,1.3101786375045776,340,1.0,2 +47340,11,1.0,1,1.2781790494918823,341,1.0,2 +47341,11,1.0,1,1.3271784782409668,342,0.0,2 +47342,11,0.0,1,1.3291784524917603,343,0.0,2 +47343,11,1.0,1,1.4541767835617065,344,1.0,2 +47344,11,1.0,1,1.1031795740127563,345,0.0,2 +47345,11,0.0,1,1.9041709899902344,346,0.0,2 +47346,11,0.0,1,1.2651792764663696,347,0.0,2 +47347,11,1.0,1,1.3991775512695312,348,1.0,2 +47348,11,1.0,1,1.5391757488250732,349,1.0,2 +47349,11,1.0,1,1.315178632736206,350,1.0,2 +47350,11,1.0,1,1.692173719406128,351,1.0,2 +47351,11,1.0,1,1.2911789417266846,352,1.0,2 +47352,11,1.0,1,1.2001798152923584,353,1.0,2 +47353,11,1.0,1,1.1491796970367432,354,0.0,2 +47354,11,1.0,1,1.5321757793426514,355,0.0,2 +47355,11,0.0,1,1.2651792764663696,356,0.0,2 +47356,11,0.0,1,1.1841797828674316,357,1.0,2 +47357,11,0.0,1,1.2591793537139893,358,1.0,2 +47358,11,0.0,1,1.223179817199707,359,0.0,2 +47359,11,1.0,1,1.7651728391647339,360,0.0,2 +47360,11,1.0,1,1.5461757183074951,361,0.0,2 +47361,11,1.0,1,1.2611793279647827,362,1.0,2 +47362,11,1.0,1,1.3311784267425537,363,1.0,2 +47363,11,1.0,1,1.3051787614822388,364,0.0,2 +47364,11,1.0,1,1.8431718349456787,365,1.0,2 +47365,11,1.0,1,1.3611780405044556,366,1.0,2 +47366,11,1.0,1,1.4491769075393677,367,1.0,2 +47367,11,0.0,1,1.2761790752410889,368,0.0,2 +47368,11,1.0,1,1.1831797361373901,369,1.0,2 +47369,11,1.0,1,1.3061786890029907,370,0.0,2 +47370,11,0.0,1,1.7781727313995361,371,0.0,2 +47371,11,0.0,1,1.736173152923584,372,0.0,2 +47372,11,0.0,1,1.4681766033172607,373,0.0,2 +47373,11,0.0,1,1.367177963256836,374,0.0,2 +47374,11,0.0,1,1.2651792764663696,375,0.0,2 +47375,11,0.0,1,1.290178894996643,376,0.0,2 +47376,11,1.0,1,1.0821795463562012,377,0.0,2 +47377,11,1.0,1,1.8591716289520264,378,1.0,2 +47378,11,1.0,1,2.014172077178955,379,1.0,2 +47379,11,1.0,1,1.1591796875,380,0.0,2 +47380,11,1.0,1,2.172179698944092,381,0.0,2 +47381,11,1.0,1,2.033173084259033,382,1.0,2 +47382,11,1.0,1,1.8501718044281006,383,1.0,2 +47383,11,1.0,1,1.9961713552474976,384,1.0,2 +47384,11,1.0,1,1.192179799079895,385,1.0,2 +47385,11,1.0,1,1.3811777830123901,386,0.0,2 +47386,11,0.0,1,1.196179747581482,387,0.0,2 +47387,11,0.0,1,1.4101773500442505,388,1.0,2 +47388,11,0.0,1,1.4001774787902832,389,0.0,2 +47389,11,0.0,1,1.989171028137207,390,1.0,2 +47390,11,0.0,1,1.1121796369552612,391,1.0,2 +47391,11,0.0,1,1.2831790447235107,392,0.0,2 +47392,11,0.0,1,1.525175929069519,393,0.0,2 +47393,11,0.0,1,1.3521780967712402,394,1.0,2 +47394,11,0.0,1,1.4571768045425415,395,0.0,2 +47395,11,0.0,1,1.250179409980774,396,0.0,2 +47396,11,0.0,1,1.548175573348999,397,0.0,2 +47397,11,0.0,1,1.987170934677124,398,1.0,2 +47398,11,0.0,1,1.1691796779632568,399,1.0,2 +47399,11,0.0,1,1.6831738948822021,400,0.0,2 +47400,11,0.0,1,1.7511730194091797,401,1.0,2 +47401,11,1.0,1,1.8771713972091675,402,1.0,2 +47402,11,1.0,1,1.1751797199249268,403,1.0,2 +47403,11,1.0,1,1.598175048828125,404,1.0,2 +47404,11,0.0,1,2.0811753273010254,405,1.0,2 +47405,11,1.0,1,1.4431769847869873,406,0.0,2 +47406,11,0.0,1,1.5401756763458252,407,0.0,2 +47407,11,1.0,1,1.7051736116409302,408,0.0,2 +47408,11,1.0,1,1.2611793279647827,409,1.0,2 +47409,11,1.0,1,1.2731791734695435,410,0.0,2 +47410,11,1.0,1,1.6571742296218872,411,0.0,2 +47411,11,0.0,1,1.7481729984283447,412,1.0,2 +47412,11,0.0,1,1.1811797618865967,413,0.0,2 +47413,11,1.0,1,1.7201733589172363,414,1.0,2 +47414,11,1.0,1,1.1681797504425049,415,1.0,2 +47415,11,1.0,1,1.1101795434951782,416,0.0,2 +47416,11,1.0,1,1.9341707229614258,417,0.0,2 +47417,11,1.0,1,1.5751752853393555,418,0.0,2 +47418,11,0.0,1,1.4361770153045654,419,0.0,2 +47419,11,0.0,1,2.0861754417419434,420,0.0,2 +47420,11,0.0,1,1.4801764488220215,421,1.0,2 +47421,11,0.0,1,1.2921788692474365,422,0.0,2 +47422,11,0.0,1,2.183180093765259,423,0.0,2 +47423,11,0.0,1,1.8671715259552002,424,0.0,2 +47424,11,0.0,1,1.2921788692474365,425,0.0,2 +47425,11,0.0,1,1.3721778392791748,426,0.0,2 +47426,11,1.0,1,1.3441781997680664,427,1.0,2 +47427,11,1.0,1,1.0661795139312744,428,1.0,2 +47428,11,1.0,1,1.29417884349823,429,0.0,2 +47429,11,0.0,1,1.132179617881775,430,0.0,2 +47430,11,1.0,1,1.4171773195266724,431,0.0,2 +47431,11,1.0,1,1.9171708822250366,432,1.0,2 +47432,11,1.0,1,1.5621755123138428,433,1.0,2 +47433,11,1.0,1,1.4681766033172607,434,1.0,2 +47434,11,1.0,1,1.0931795835494995,435,1.0,2 +47435,11,1.0,1,1.643174409866333,436,0.0,2 +47436,11,0.0,1,1.228179693222046,437,0.0,2 +47437,11,1.0,1,1.1751797199249268,438,1.0,2 +47438,11,1.0,1,1.3331784009933472,439,1.0,2 +47439,11,1.0,1,1.7881724834442139,440,1.0,2 +47440,11,1.0,1,1.6151747703552246,441,0.0,2 +47441,11,1.0,1,1.1831797361373901,442,1.0,2 +47442,11,1.0,1,1.5971750020980835,443,1.0,2 +47443,11,1.0,1,1.1851797103881836,444,0.0,2 +47444,11,0.0,1,1.220179796218872,445,0.0,2 +47445,11,1.0,1,1.5451756715774536,446,1.0,2 +47446,11,1.0,1,1.5531755685806274,447,1.0,2 +47447,11,1.0,1,1.3041787147521973,448,1.0,2 +47448,11,1.0,1,2.0681748390197754,449,1.0,2 +47449,11,1.0,1,1.1871798038482666,450,1.0,2 +47450,11,1.0,1,1.5411757230758667,451,1.0,2 +47451,11,1.0,1,1.3091787099838257,452,1.0,2 +47452,11,1.0,1,1.6221747398376465,453,0.0,2 +47453,11,0.0,1,1.2811790704727173,454,1.0,2 +47454,11,0.0,1,1.1841797828674316,455,0.0,2 +47455,11,0.0,1,1.985170841217041,456,1.0,2 +47456,11,0.0,1,1.4321770668029785,457,0.0,2 +47457,11,0.0,1,2.200181007385254,458,0.0,2 +47458,11,0.0,1,1.4181772470474243,459,0.0,2 +47459,11,0.0,1,1.3171786069869995,460,0.0,2 +47460,11,0.0,1,1.9071710109710693,461,0.0,2 +47461,11,0.0,1,1.7051736116409302,462,1.0,2 +47462,11,0.0,1,2.211181402206421,463,0.0,2 +47463,11,0.0,1,1.3101786375045776,464,0.0,2 +47464,11,0.0,1,1.1601797342300415,465,0.0,2 +47465,11,1.0,1,1.2161798477172852,466,0.0,2 +47466,11,1.0,1,1.4501768350601196,467,0.0,2 +47467,11,1.0,1,2.1431782245635986,468,1.0,2 +47468,11,1.0,1,1.477176547050476,469,1.0,2 +47469,11,1.0,1,1.5831751823425293,470,1.0,2 +47470,11,1.0,1,1.1031795740127563,471,1.0,2 +47471,11,1.0,1,1.2151798009872437,472,0.0,2 +47472,11,1.0,1,1.320178508758545,473,1.0,2 +47473,11,1.0,1,1.5421757698059082,474,1.0,2 +47474,11,1.0,1,1.6321744918823242,475,1.0,2 +47475,11,1.0,1,1.1831797361373901,476,1.0,2 +47476,11,1.0,1,1.4491769075393677,477,1.0,2 +47477,11,1.0,1,1.3761777877807617,478,0.0,2 +47478,11,0.0,1,1.2091797590255737,479,0.0,2 +47479,11,1.0,1,1.267179250717163,480,1.0,2 +47480,11,1.0,1,1.2041797637939453,481,1.0,2 +47481,11,1.0,1,1.4421769380569458,482,0.0,2 +47482,11,1.0,1,1.3811777830123901,483,0.0,2 +47483,11,1.0,1,1.2731791734695435,484,1.0,2 +47484,11,1.0,1,1.3311784267425537,485,1.0,2 +47485,11,1.0,1,1.4911763668060303,486,0.0,2 +47486,11,0.0,1,1.312178611755371,487,0.0,2 +47487,11,0.0,1,1.3301783800125122,488,0.0,2 +47488,11,1.0,1,1.430177092552185,489,1.0,2 +47489,11,1.0,1,1.4641766548156738,490,0.0,2 +47490,11,0.0,1,1.1441797018051147,491,0.0,2 +47491,11,1.0,1,1.6261746883392334,492,0.0,2 +47492,11,0.0,1,1.5451756715774536,493,1.0,2 +47493,11,0.0,1,1.2051798105239868,494,0.0,2 +47494,11,1.0,1,1.8601715564727783,495,0.0,2 +47495,11,0.0,1,1.7441730499267578,496,0.0,2 +47496,11,1.0,1,1.504176139831543,497,1.0,2 +47497,11,1.0,1,1.290178894996643,498,1.0,2 +47498,11,1.0,1,1.1741796731948853,499,1.0,2 +47499,11,1.0,1,1.089179515838623,500,1.0,2 +47500,11,1.0,2,1.2481794357299805,1,1.0,2 +47501,11,1.0,2,1.5591754913330078,2,0.0,2 +47502,11,0.0,2,1.9441704750061035,3,1.0,2 +47503,11,0.0,2,1.5841751098632812,4,0.0,2 +47504,11,0.0,2,1.8211721181869507,5,0.0,2 +47505,11,1.0,2,1.7141735553741455,6,0.0,2 +47506,11,0.0,2,1.1481796503067017,7,1.0,2 +47507,11,0.0,2,1.1381796598434448,8,1.0,2 +47508,11,0.0,2,1.3131786584854126,9,1.0,2 +47509,11,0.0,2,1.245179533958435,10,1.0,2 +47510,11,0.0,2,1.3181785345077515,11,1.0,2 +47511,11,0.0,2,1.1571797132492065,12,0.0,2 +47512,11,0.0,2,2.0521740913391113,13,1.0,2 +47513,11,0.0,2,1.290178894996643,14,1.0,2 +47514,11,0.0,2,1.1181795597076416,15,1.0,2 +47515,11,0.0,2,1.0871795415878296,16,0.0,2 +47516,11,0.0,2,1.1581796407699585,17,0.0,2 +47517,11,0.0,2,1.5131760835647583,18,1.0,2 +47518,11,0.0,2,1.4531768560409546,19,0.0,2 +47519,11,1.0,2,1.7961723804473877,20,0.0,2 +47520,11,0.0,2,1.6891738176345825,21,0.0,2 +47521,11,1.0,2,2.1521787643432617,22,0.0,2 +47522,11,1.0,2,1.1671797037124634,23,0.0,2 +47523,11,1.0,2,2.214181423187256,24,1.0,2 +47524,11,1.0,2,1.455176830291748,25,1.0,2 +47525,11,1.0,2,1.6811739206314087,26,0.0,2 +47526,11,0.0,2,1.312178611755371,27,1.0,2 +47527,11,0.0,2,1.3111786842346191,28,0.0,2 +47528,11,1.0,2,1.5851751565933228,29,0.0,2 +47529,11,0.0,2,1.1611796617507935,30,1.0,2 +47530,11,0.0,2,1.1311795711517334,31,0.0,2 +47531,11,0.0,2,1.3181785345077515,32,1.0,2 +47532,11,0.0,2,1.6081748008728027,33,0.0,2 +47533,11,0.0,2,1.8961710929870605,34,0.0,2 +47534,11,0.0,2,1.4141772985458374,35,1.0,2 +47535,11,0.0,2,1.1201796531677246,36,0.0,2 +47536,11,0.0,2,1.3751778602600098,37,1.0,2 +47537,11,0.0,2,1.2181798219680786,38,1.0,2 +47538,11,0.0,2,1.7641727924346924,39,1.0,2 +47539,11,0.0,2,1.0831794738769531,40,1.0,2 +47540,11,0.0,2,1.5861752033233643,41,0.0,2 +47541,11,0.0,2,1.1441797018051147,42,0.0,2 +47542,11,0.0,2,2.22418212890625,43,0.0,2 +47543,11,0.0,2,1.0731794834136963,44,0.0,2 +47544,11,0.0,2,1.8891712427139282,45,0.0,2 +47545,11,1.0,2,1.5851751565933228,46,1.0,2 +47546,11,1.0,2,1.3531781435012817,47,1.0,2 +47547,11,1.0,2,1.4041774272918701,48,1.0,2 +47548,11,1.0,2,1.3271784782409668,49,1.0,2 +47549,11,1.0,2,1.779172658920288,50,0.0,2 +47550,11,1.0,2,1.228179693222046,51,1.0,2 +47551,11,1.0,2,1.5051761865615845,52,0.0,2 +47552,11,0.0,2,1.2021797895431519,53,0.0,2 +47553,11,1.0,2,1.7881724834442139,54,1.0,2 +47554,11,1.0,2,1.9031710624694824,55,1.0,2 +47555,11,1.0,2,1.3281784057617188,56,1.0,2 +47556,11,1.0,2,1.3611780405044556,57,1.0,2 +47557,11,1.0,2,1.5591754913330078,58,1.0,2 +47558,11,1.0,2,1.2431795597076416,59,1.0,2 +47559,11,1.0,2,1.2021797895431519,60,1.0,2 +47560,11,1.0,2,1.3341783285140991,61,0.0,2 +47561,11,1.0,2,1.389177680015564,62,0.0,2 +47562,11,0.0,2,1.3661779165267944,63,0.0,2 +47563,11,0.0,2,1.8141722679138184,64,1.0,2 +47564,11,0.0,2,1.1131795644760132,65,0.0,2 +47565,11,0.0,2,1.3871777057647705,66,0.0,2 +47566,11,1.0,2,1.3701778650283813,67,0.0,2 +47567,11,0.0,2,1.2071797847747803,68,1.0,2 +47568,11,0.0,2,1.1391797065734863,69,1.0,2 +47569,11,0.0,2,1.1351796388626099,70,1.0,2 +47570,11,0.0,2,1.27117919921875,71,0.0,2 +47571,11,1.0,2,1.985170841217041,72,1.0,2 +47572,11,1.0,2,1.5241758823394775,73,1.0,2 +47573,11,1.0,2,1.224179744720459,74,1.0,2 +47574,11,1.0,2,1.2641792297363281,75,1.0,2 +47575,11,1.0,2,1.455176830291748,76,0.0,2 +47576,11,0.0,2,1.0521794557571411,77,1.0,2 +47577,11,0.0,2,1.1701797246932983,78,0.0,2 +47578,11,0.0,2,1.1791796684265137,79,0.0,2 +47579,11,0.0,2,2.2841849327087402,80,0.0,2 +47580,11,0.0,2,1.9131709337234497,81,0.0,2 +47581,11,0.0,2,1.6411744356155396,82,0.0,2 +47582,11,1.0,2,2.0731749534606934,83,1.0,2 +47583,11,1.0,2,1.3491781949996948,84,0.0,2 +47584,11,0.0,2,2.1171770095825195,85,0.0,2 +47585,11,0.0,2,1.223179817199707,86,0.0,2 +47586,11,0.0,2,1.924170732498169,87,0.0,2 +47587,11,0.0,2,1.2571793794631958,88,0.0,2 +47588,11,1.0,2,1.692173719406128,89,1.0,2 +47589,11,1.0,2,1.600174903869629,90,0.0,2 +47590,11,0.0,2,1.3171786069869995,91,0.0,2 +47591,11,1.0,2,1.8471717834472656,92,0.0,2 +47592,11,1.0,2,1.8231720924377441,93,0.0,2 +47593,11,0.0,2,1.4391770362854004,94,0.0,2 +47594,11,1.0,2,1.3911776542663574,95,0.0,2 +47595,11,0.0,2,1.6551742553710938,96,1.0,2 +47596,11,0.0,2,1.506176233291626,97,1.0,2 +47597,11,0.0,2,1.2291797399520874,98,0.0,2 +47598,11,1.0,2,1.224179744720459,99,0.0,2 +47599,11,1.0,2,1.293178915977478,100,0.0,2 +47600,11,1.0,2,2.0611743927001953,101,0.0,2 +47601,11,0.0,2,1.3271784782409668,102,0.0,2 +47602,11,0.0,2,1.2181798219680786,103,1.0,2 +47603,11,0.0,2,1.694173812866211,104,0.0,2 +47604,11,0.0,2,1.1081795692443848,105,1.0,2 +47605,11,0.0,2,1.6621742248535156,106,0.0,2 +47606,11,0.0,2,1.1161795854568481,107,1.0,2 +47607,11,0.0,2,1.297178864479065,108,0.0,2 +47608,11,1.0,2,1.8361718654632568,109,0.0,2 +47609,11,1.0,2,1.830172061920166,110,1.0,2 +47610,11,1.0,2,1.4051774740219116,111,0.0,2 +47611,11,0.0,2,1.1911797523498535,112,1.0,2 +47612,11,0.0,2,1.3981775045394897,113,1.0,2 +47613,11,0.0,2,1.128179669380188,114,0.0,2 +47614,11,1.0,2,2.0701746940612793,115,1.0,2 +47615,11,1.0,2,1.4011775255203247,116,1.0,2 +47616,11,1.0,2,1.7041735649108887,117,1.0,2 +47617,11,1.0,2,1.267179250717163,118,0.0,2 +47618,11,1.0,2,1.298178791999817,119,0.0,2 +47619,11,1.0,2,1.2761790752410889,120,1.0,2 +47620,11,1.0,2,1.0871795415878296,121,0.0,2 +47621,11,0.0,2,1.1421796083450317,122,1.0,2 +47622,11,0.0,2,1.1591796875,123,0.0,2 +47623,11,0.0,2,1.2571793794631958,124,0.0,2 +47624,11,1.0,2,1.8641715049743652,125,0.0,2 +47625,11,0.0,2,1.8351719379425049,126,1.0,2 +47626,11,0.0,2,1.9611703157424927,127,0.0,2 +47627,11,0.0,2,1.3911776542663574,128,0.0,2 +47628,11,1.0,2,2.19718074798584,129,1.0,2 +47629,11,1.0,2,1.4711766242980957,130,1.0,2 +47630,11,1.0,2,1.2591793537139893,131,0.0,2 +47631,11,0.0,2,1.477176547050476,132,1.0,2 +47632,11,0.0,2,1.290178894996643,133,1.0,2 +47633,11,0.0,2,1.4981763362884521,134,0.0,2 +47634,11,1.0,2,1.2421795129776,135,1.0,2 +47635,11,1.0,2,1.3021787405014038,136,1.0,2 +47636,11,1.0,2,1.4911763668060303,137,0.0,2 +47637,11,0.0,2,1.0671794414520264,138,0.0,2 +47638,11,1.0,2,2.013172149658203,139,0.0,2 +47639,11,0.0,2,1.460176706314087,140,0.0,2 +47640,11,1.0,2,1.598175048828125,141,1.0,2 +47641,11,1.0,2,1.5881750583648682,142,1.0,2 +47642,11,1.0,2,1.3651779890060425,143,0.0,2 +47643,11,0.0,2,1.5911750793457031,144,1.0,2 +47644,11,0.0,2,1.7981724739074707,145,1.0,2 +47645,11,0.0,2,1.245179533958435,146,1.0,2 +47646,11,0.0,2,1.2031798362731934,147,0.0,2 +47647,11,0.0,2,1.7851725816726685,148,0.0,2 +47648,11,1.0,2,1.5611754655838013,149,1.0,2 +47649,11,1.0,2,1.547175645828247,150,0.0,2 +47650,11,0.0,2,1.1441797018051147,151,0.0,2 +47651,11,1.0,2,1.3291784524917603,152,1.0,2 +47652,11,1.0,2,1.8121721744537354,153,1.0,2 +47653,11,0.0,2,1.0571794509887695,154,1.0,2 +47654,11,1.0,2,1.7071735858917236,155,0.0,2 +47655,11,0.0,2,1.1951797008514404,156,1.0,2 +47656,11,0.0,2,1.1981797218322754,157,0.0,2 +47657,11,0.0,2,1.2641792297363281,158,1.0,2 +47658,11,0.0,2,1.8251720666885376,159,1.0,2 +47659,11,0.0,2,1.0631794929504395,160,1.0,2 +47660,11,0.0,2,1.3541780710220337,161,0.0,2 +47661,11,0.0,2,1.602174997329712,162,0.0,2 +47662,11,0.0,2,1.5201759338378906,163,0.0,2 +47663,11,0.0,2,1.319178581237793,164,0.0,2 +47664,11,0.0,2,1.3921775817871094,165,0.0,2 +47665,11,0.0,2,1.1721796989440918,166,0.0,2 +47666,11,1.0,2,1.5181760787963867,167,1.0,2 +47667,11,1.0,2,1.3531781435012817,168,1.0,2 +47668,11,1.0,2,1.3931776285171509,169,1.0,2 +47669,11,1.0,2,1.3981775045394897,170,1.0,2 +47670,11,1.0,2,1.6561741828918457,171,0.0,2 +47671,11,0.0,2,1.1741796731948853,172,0.0,2 +47672,11,1.0,2,1.7211734056472778,173,1.0,2 +47673,11,1.0,2,1.5891751050949097,174,0.0,2 +47674,11,0.0,2,1.6111748218536377,175,1.0,2 +47675,11,0.0,2,1.477176547050476,176,0.0,2 +47676,11,0.0,2,1.6151747703552246,177,0.0,2 +47677,11,0.0,2,1.0991795063018799,178,0.0,2 +47678,11,1.0,2,1.297178864479065,179,0.0,2 +47679,11,1.0,2,1.3811777830123901,180,1.0,2 +47680,11,1.0,2,1.9021711349487305,181,1.0,2 +47681,11,1.0,2,1.3931776285171509,182,0.0,2 +47682,11,0.0,2,1.3651779890060425,183,1.0,2 +47683,11,0.0,2,1.1981797218322754,184,1.0,2 +47684,11,1.0,2,1.2311797142028809,185,0.0,2 +47685,11,0.0,2,1.1821796894073486,186,1.0,2 +47686,11,0.0,2,1.5051761865615845,187,0.0,2 +47687,11,1.0,2,1.1851797103881836,188,0.0,2 +47688,11,0.0,2,1.459176778793335,189,0.0,2 +47689,11,0.0,2,1.223179817199707,190,0.0,2 +47690,11,1.0,2,1.2661792039871216,191,1.0,2 +47691,11,1.0,2,1.5391757488250732,192,1.0,2 +47692,11,1.0,2,1.3011788129806519,193,1.0,2 +47693,11,1.0,2,1.500176191329956,194,1.0,2 +47694,11,1.0,2,1.1791796684265137,195,1.0,2 +47695,11,1.0,2,1.2791790962219238,196,0.0,2 +47696,11,1.0,2,1.7211734056472778,197,1.0,2 +47697,11,1.0,2,1.1041796207427979,198,0.0,2 +47698,11,0.0,2,2.0931758880615234,199,1.0,2 +47699,11,0.0,2,1.761172890663147,200,1.0,2 +47700,11,0.0,2,1.502176284790039,201,1.0,2 +47701,11,0.0,2,1.8031723499298096,202,1.0,2 +47702,11,0.0,2,1.16517972946167,203,1.0,2 +47703,11,1.0,2,1.1871798038482666,204,1.0,2 +47704,11,0.0,2,1.3721778392791748,205,1.0,2 +47705,11,1.0,2,2.3211865425109863,206,0.0,2 +47706,11,0.0,2,2.0431735515594482,207,0.0,2 +47707,11,1.0,2,1.4741766452789307,208,0.0,2 +47708,11,0.0,2,1.2321796417236328,209,1.0,2 +47709,11,1.0,2,1.5371757745742798,210,0.0,2 +47710,11,0.0,2,1.3181785345077515,211,0.0,2 +47711,11,1.0,2,1.4731765985488892,212,0.0,2 +47712,11,1.0,2,1.459176778793335,213,0.0,2 +47713,11,0.0,2,1.4531768560409546,214,0.0,2 +47714,11,1.0,2,2.1411781311035156,215,0.0,2 +47715,11,0.0,2,1.2381795644760132,216,0.0,2 +47716,11,0.0,2,1.386177659034729,217,0.0,2 +47717,11,0.0,2,1.2011797428131104,218,1.0,2 +47718,11,0.0,2,1.2831790447235107,219,0.0,2 +47719,11,0.0,2,1.0771795511245728,220,0.0,2 +47720,11,0.0,2,1.8641715049743652,221,1.0,2 +47721,11,0.0,2,1.1661796569824219,222,1.0,2 +47722,11,0.0,2,1.342178225517273,223,0.0,2 +47723,11,1.0,2,1.297178864479065,224,1.0,2 +47724,11,1.0,2,1.2091797590255737,225,1.0,2 +47725,11,1.0,2,1.7681727409362793,226,0.0,2 +47726,11,0.0,2,1.1081795692443848,227,0.0,2 +47727,11,1.0,2,1.3501781225204468,228,1.0,2 +47728,11,0.0,2,1.3781777620315552,229,0.0,2 +47729,11,1.0,2,1.5081760883331299,230,1.0,2 +47730,11,0.0,2,1.2851790189743042,231,1.0,2 +47731,11,0.0,2,1.8011723756790161,232,1.0,2 +47732,11,0.0,2,1.502176284790039,233,1.0,2 +47733,11,0.0,2,2.5841989517211914,234,1.0,2 +47734,11,0.0,2,2.0621743202209473,235,0.0,2 +47735,11,1.0,2,1.2631793022155762,236,1.0,2 +47736,11,1.0,2,1.2011797428131104,237,0.0,2 +47737,11,0.0,2,1.1681797504425049,238,0.0,2 +47738,11,1.0,2,1.550175666809082,239,1.0,2 +47739,11,1.0,2,1.275179147720337,240,1.0,2 +47740,11,1.0,2,1.554175615310669,241,0.0,2 +47741,11,1.0,2,1.6221747398376465,242,1.0,2 +47742,11,1.0,2,1.364177942276001,243,0.0,2 +47743,11,1.0,2,1.5561754703521729,244,1.0,2 +47744,11,0.0,2,1.6991736888885498,245,1.0,2 +47745,11,0.0,2,1.6371744871139526,246,0.0,2 +47746,11,1.0,2,1.4221771955490112,247,1.0,2 +47747,11,1.0,2,1.224179744720459,248,1.0,2 +47748,11,1.0,2,1.5821752548217773,249,0.0,2 +47749,11,1.0,2,1.8691715002059937,250,0.0,2 +47750,11,0.0,2,1.9611703157424927,251,1.0,2 +47751,11,0.0,2,1.1361796855926514,252,0.0,2 +47752,11,0.0,2,1.2811790704727173,253,1.0,2 +47753,11,0.0,2,1.0501794815063477,254,1.0,2 +47754,11,0.0,2,1.2111797332763672,255,0.0,2 +47755,11,0.0,2,1.6531742811203003,256,1.0,2 +47756,11,0.0,2,1.0501794815063477,257,0.0,2 +47757,11,0.0,2,1.872171401977539,258,1.0,2 +47758,11,0.0,2,1.125179648399353,259,1.0,2 +47759,11,0.0,2,1.690173864364624,260,0.0,2 +47760,11,0.0,2,1.249179482460022,261,0.0,2 +47761,11,0.0,2,1.320178508758545,262,0.0,2 +47762,11,0.0,2,1.5681753158569336,263,0.0,2 +47763,11,0.0,2,1.290178894996643,264,1.0,2 +47764,11,0.0,2,1.2651792764663696,265,1.0,2 +47765,11,0.0,2,1.6221747398376465,266,0.0,2 +47766,11,0.0,2,1.3101786375045776,267,0.0,2 +47767,11,0.0,2,1.6791739463806152,268,0.0,2 +47768,11,0.0,2,1.363178014755249,269,0.0,2 +47769,11,0.0,2,1.48517644405365,270,0.0,2 +47770,11,0.0,2,1.779172658920288,271,0.0,2 +47771,11,0.0,2,1.2851790189743042,272,1.0,2 +47772,11,0.0,2,1.1701797246932983,273,1.0,2 +47773,11,0.0,2,1.665174126625061,274,0.0,2 +47774,11,1.0,2,1.8891712427139282,275,1.0,2 +47775,11,1.0,2,1.7471730709075928,276,0.0,2 +47776,11,1.0,2,1.8881711959838867,277,0.0,2 +47777,11,1.0,2,1.4651767015457153,278,0.0,2 +47778,11,0.0,2,1.4451769590377808,279,0.0,2 +47779,11,0.0,2,1.8511717319488525,280,1.0,2 +47780,11,0.0,2,1.2101798057556152,281,0.0,2 +47781,11,0.0,2,1.6761739253997803,282,0.0,2 +47782,11,1.0,2,1.3501781225204468,283,1.0,2 +47783,11,1.0,2,1.5091761350631714,284,0.0,2 +47784,11,0.0,2,1.227179765701294,285,1.0,2 +47785,11,0.0,2,1.385177731513977,286,0.0,2 +47786,11,1.0,2,1.3011788129806519,287,1.0,2 +47787,11,1.0,2,1.551175594329834,288,1.0,2 +47788,11,1.0,2,1.500176191329956,289,0.0,2 +47789,11,0.0,2,2.0521740913391113,290,0.0,2 +47790,11,0.0,2,1.3921775817871094,291,0.0,2 +47791,11,0.0,2,1.7251733541488647,292,1.0,2 +47792,11,0.0,2,1.9181709289550781,293,1.0,2 +47793,11,0.0,2,1.2701791524887085,294,0.0,2 +47794,11,0.0,2,1.3741778135299683,295,0.0,2 +47795,11,1.0,2,2.1011762619018555,296,1.0,2 +47796,11,1.0,2,1.3061786890029907,297,1.0,2 +47797,11,1.0,2,1.4731765985488892,298,1.0,2 +47798,11,1.0,2,1.2151798009872437,299,1.0,2 +47799,11,1.0,2,1.717173457145691,300,1.0,2 +47800,11,1.0,2,1.4891763925552368,301,0.0,2 +47801,11,1.0,2,1.267179250717163,302,0.0,2 +47802,11,0.0,2,1.4751765727996826,303,0.0,2 +47803,11,0.0,2,1.429177165031433,304,0.0,2 +47804,11,0.0,2,1.5311758518218994,305,0.0,2 +47805,11,0.0,2,1.7061736583709717,306,1.0,2 +47806,11,0.0,2,1.2191798686981201,307,1.0,2 +47807,11,0.0,2,1.2401795387268066,308,1.0,2 +47808,11,0.0,2,1.4631767272949219,309,1.0,2 +47809,11,0.0,2,1.272179126739502,310,0.0,2 +47810,11,1.0,2,1.7891725301742554,311,1.0,2 +47811,11,1.0,2,1.1241796016693115,312,1.0,2 +47812,11,1.0,2,1.4751765727996826,313,1.0,2 +47813,11,1.0,2,1.2101798057556152,314,0.0,2 +47814,11,0.0,2,1.6531742811203003,315,0.0,2 +47815,11,1.0,2,1.1731797456741333,316,0.0,2 +47816,11,0.0,2,1.1971797943115234,317,0.0,2 +47817,11,0.0,2,1.8701715469360352,318,1.0,2 +47818,11,0.0,2,1.1731797456741333,319,1.0,2 +47819,11,0.0,2,1.4411770105361938,320,0.0,2 +47820,11,0.0,2,1.1341795921325684,321,0.0,2 +47821,11,1.0,2,1.3561780452728271,322,0.0,2 +47822,11,0.0,2,1.338178277015686,323,1.0,2 +47823,11,0.0,2,1.2521793842315674,324,0.0,2 +47824,11,0.0,2,1.2071797847747803,325,1.0,2 +47825,11,0.0,2,1.1141796112060547,326,0.0,2 +47826,11,0.0,2,1.5841751098632812,327,1.0,2 +47827,11,0.0,2,1.2521793842315674,328,1.0,2 +47828,11,0.0,2,1.2091797590255737,329,1.0,2 +47829,11,0.0,2,1.098179578781128,330,0.0,2 +47830,11,0.0,2,1.9531704187393188,331,0.0,2 +47831,11,1.0,2,1.3991775512695312,332,1.0,2 +47832,11,1.0,2,1.4101773500442505,333,1.0,2 +47833,11,1.0,2,1.1381796598434448,334,1.0,2 +47834,11,1.0,2,1.1911797523498535,335,1.0,2 +47835,11,1.0,2,1.4401769638061523,336,0.0,2 +47836,11,1.0,2,1.596174955368042,337,1.0,2 +47837,11,0.0,2,1.9651702642440796,338,1.0,2 +47838,11,1.0,2,1.5561754703521729,339,0.0,2 +47839,11,0.0,2,1.4411770105361938,340,1.0,2 +47840,11,0.0,2,1.926170825958252,341,0.0,2 +47841,11,0.0,2,1.455176830291748,342,0.0,2 +47842,11,0.0,2,1.2881789207458496,343,1.0,2 +47843,11,0.0,2,1.8951711654663086,344,1.0,2 +47844,11,1.0,2,2.0431735515594482,345,1.0,2 +47845,11,1.0,2,1.4511768817901611,346,1.0,2 +47846,11,1.0,2,1.779172658920288,347,0.0,2 +47847,11,0.0,2,1.0841795206069946,348,0.0,2 +47848,11,0.0,2,1.156179666519165,349,0.0,2 +47849,11,1.0,2,1.2691792249679565,350,1.0,2 +47850,11,1.0,2,1.4651767015457153,351,1.0,2 +47851,11,1.0,2,1.382177710533142,352,1.0,2 +47852,11,1.0,2,1.5331758260726929,353,1.0,2 +47853,11,1.0,2,1.5091761350631714,354,0.0,2 +47854,11,0.0,2,1.2921788692474365,355,0.0,2 +47855,11,1.0,2,1.290178894996643,356,1.0,2 +47856,11,1.0,2,1.1721796989440918,357,0.0,2 +47857,11,0.0,2,1.4451769590377808,358,1.0,2 +47858,11,0.0,2,1.363178014755249,359,0.0,2 +47859,11,1.0,2,1.6371744871139526,360,1.0,2 +47860,11,1.0,2,1.1411796808242798,361,0.0,2 +47861,11,0.0,2,1.6621742248535156,362,0.0,2 +47862,11,0.0,2,1.320178508758545,363,0.0,2 +47863,11,0.0,2,1.742173194885254,364,1.0,2 +47864,11,0.0,2,1.1971797943115234,365,1.0,2 +47865,11,0.0,2,1.3541780710220337,366,0.0,2 +47866,11,0.0,2,1.6121747493743896,367,0.0,2 +47867,11,0.0,2,1.4221771955490112,368,0.0,2 +47868,11,0.0,2,1.6591742038726807,369,0.0,2 +47869,11,0.0,2,1.3011788129806519,370,1.0,2 +47870,11,0.0,2,1.2391796112060547,371,0.0,2 +47871,11,0.0,2,1.3031787872314453,372,1.0,2 +47872,11,0.0,2,1.2851790189743042,373,0.0,2 +47873,11,0.0,2,1.2001798152923584,374,1.0,2 +47874,11,0.0,2,1.0731794834136963,375,0.0,2 +47875,11,1.0,2,1.390177607536316,376,0.0,2 +47876,11,0.0,2,1.875171422958374,377,1.0,2 +47877,11,0.0,2,1.577175259590149,378,1.0,2 +47878,11,0.0,2,1.2051798105239868,379,0.0,2 +47879,11,0.0,2,1.360177993774414,380,0.0,2 +47880,11,1.0,2,1.3951776027679443,381,1.0,2 +47881,11,1.0,2,1.5201759338378906,382,0.0,2 +47882,11,0.0,2,1.217179775238037,383,1.0,2 +47883,11,0.0,2,1.249179482460022,384,0.0,2 +47884,11,1.0,2,1.3391783237457275,385,1.0,2 +47885,11,1.0,2,1.2411795854568481,386,1.0,2 +47886,11,1.0,2,1.2361795902252197,387,1.0,2 +47887,11,1.0,2,1.455176830291748,388,0.0,2 +47888,11,0.0,2,2.037173271179199,389,1.0,2 +47889,11,0.0,2,1.4671766757965088,390,1.0,2 +47890,11,0.0,2,1.3971775770187378,391,0.0,2 +47891,11,0.0,2,1.3491781949996948,392,1.0,2 +47892,11,0.0,2,1.0751795768737793,393,0.0,2 +47893,11,0.0,2,1.390177607536316,394,0.0,2 +47894,11,0.0,2,1.4961762428283691,395,0.0,2 +47895,11,1.0,2,1.4881763458251953,396,0.0,2 +47896,11,0.0,2,1.2841789722442627,397,0.0,2 +47897,11,1.0,2,1.688173770904541,398,1.0,2 +47898,11,1.0,2,1.3311784267425537,399,0.0,2 +47899,11,0.0,2,1.2521793842315674,400,1.0,2 +47900,11,0.0,2,1.1461796760559082,401,1.0,2 +47901,11,0.0,2,1.2561793327331543,402,0.0,2 +47902,11,0.0,2,1.2871789932250977,403,1.0,2 +47903,11,1.0,2,1.2621792554855347,404,1.0,2 +47904,11,1.0,2,1.7251733541488647,405,1.0,2 +47905,11,0.0,2,1.3751778602600098,406,1.0,2 +47906,11,1.0,2,1.5911750793457031,407,0.0,2 +47907,11,0.0,2,1.3611780405044556,408,0.0,2 +47908,11,1.0,2,2.258183479309082,409,1.0,2 +47909,11,1.0,2,1.2441794872283936,410,0.0,2 +47910,11,1.0,2,1.4611767530441284,411,1.0,2 +47911,11,1.0,2,1.779172658920288,412,1.0,2 +47912,11,1.0,2,1.2131798267364502,413,0.0,2 +47913,11,0.0,2,1.6851738691329956,414,0.0,2 +47914,11,1.0,2,1.7731727361679077,415,1.0,2 +47915,11,1.0,2,1.6451743841171265,416,1.0,2 +47916,11,1.0,2,1.4641766548156738,417,0.0,2 +47917,11,1.0,2,1.2331796884536743,418,1.0,2 +47918,11,1.0,2,1.434177041053772,419,1.0,2 +47919,11,0.0,2,1.4101773500442505,420,1.0,2 +47920,11,0.0,2,1.9421706199645996,421,1.0,2 +47921,11,0.0,2,1.1111795902252197,422,1.0,2 +47922,11,1.0,2,1.7331732511520386,423,0.0,2 +47923,11,0.0,2,1.3171786069869995,424,0.0,2 +47924,11,1.0,2,1.691173791885376,425,0.0,2 +47925,11,1.0,2,2.24418306350708,426,1.0,2 +47926,11,1.0,2,1.5301759243011475,427,0.0,2 +47927,11,1.0,2,1.3281784057617188,428,1.0,2 +47928,11,0.0,2,1.186179757118225,429,0.0,2 +47929,11,1.0,2,1.7281732559204102,430,1.0,2 +47930,11,1.0,2,1.316178560256958,431,0.0,2 +47931,11,0.0,2,1.7221734523773193,432,0.0,2 +47932,11,0.0,2,1.250179409980774,433,0.0,2 +47933,11,0.0,2,1.1731797456741333,434,1.0,2 +47934,11,0.0,2,1.2511794567108154,435,0.0,2 +47935,11,1.0,2,1.2431795597076416,436,0.0,2 +47936,11,0.0,2,1.6271746158599854,437,1.0,2 +47937,11,0.0,2,1.2151798009872437,438,0.0,2 +47938,11,1.0,2,1.3031787872314453,439,0.0,2 +47939,11,1.0,2,1.186179757118225,440,0.0,2 +47940,11,0.0,2,1.3941775560379028,441,1.0,2 +47941,11,0.0,2,1.1751797199249268,442,1.0,2 +47942,11,0.0,2,1.0821795463562012,443,0.0,2 +47943,11,0.0,2,1.411177396774292,444,0.0,2 +47944,11,1.0,2,2.3291869163513184,445,1.0,2 +47945,11,1.0,2,1.1981797218322754,446,1.0,2 +47946,11,1.0,2,1.3061786890029907,447,0.0,2 +47947,11,1.0,2,1.4031774997711182,448,1.0,2 +47948,11,1.0,2,1.3711779117584229,449,0.0,2 +47949,11,0.0,2,1.7911725044250488,450,1.0,2 +47950,11,0.0,2,1.345178246498108,451,1.0,2 +47951,11,0.0,2,1.18917977809906,452,1.0,2 +47952,11,0.0,2,1.1311795711517334,453,1.0,2 +47953,11,0.0,2,1.1731797456741333,454,0.0,2 +47954,11,0.0,2,1.368177890777588,455,0.0,2 +47955,11,0.0,2,1.5811752080917358,456,1.0,2 +47956,11,0.0,2,1.1671797037124634,457,1.0,2 +47957,11,0.0,2,1.2881789207458496,458,1.0,2 +47958,11,0.0,2,1.2531794309616089,459,0.0,2 +47959,11,1.0,2,1.7041735649108887,460,1.0,2 +47960,11,1.0,2,1.1681797504425049,461,1.0,2 +47961,11,1.0,2,1.6801738739013672,462,0.0,2 +47962,11,0.0,2,1.692173719406128,463,0.0,2 +47963,11,1.0,2,1.7111735343933105,464,0.0,2 +47964,11,1.0,2,1.1951797008514404,465,0.0,2 +47965,11,0.0,2,1.2391796112060547,466,0.0,2 +47966,11,0.0,2,1.1271796226501465,467,1.0,2 +47967,11,0.0,2,1.2001798152923584,468,1.0,2 +47968,11,0.0,2,1.2641792297363281,469,0.0,2 +47969,11,0.0,2,1.9331706762313843,470,0.0,2 +47970,11,1.0,2,1.3081786632537842,471,1.0,2 +47971,11,1.0,2,1.2261797189712524,472,0.0,2 +47972,11,1.0,2,1.665174126625061,473,0.0,2 +47973,11,0.0,2,1.389177680015564,474,0.0,2 +47974,11,0.0,2,1.6961736679077148,475,0.0,2 +47975,11,1.0,2,1.2781790494918823,476,1.0,2 +47976,11,1.0,2,1.826172113418579,477,0.0,2 +47977,11,1.0,2,2.0391733646392822,478,1.0,2 +47978,11,1.0,2,1.3171786069869995,479,1.0,2 +47979,11,1.0,2,1.3461781740188599,480,1.0,2 +47980,11,1.0,2,1.2041797637939453,481,1.0,2 +47981,11,1.0,2,1.9981714487075806,482,1.0,2 +47982,11,1.0,2,1.1941797733306885,483,1.0,2 +47983,11,1.0,2,1.5171760320663452,484,1.0,2 +47984,11,1.0,2,1.6631741523742676,485,0.0,2 +47985,11,0.0,2,1.2021797895431519,486,0.0,2 +47986,11,1.0,2,1.6741740703582764,487,1.0,2 +47987,11,1.0,2,1.6061749458312988,488,0.0,2 +47988,11,1.0,2,1.2581793069839478,489,0.0,2 +47989,11,1.0,2,2.254183292388916,490,0.0,2 +47990,11,1.0,2,1.5311758518218994,491,1.0,2 +47991,11,0.0,2,1.459176778793335,492,0.0,2 +47992,11,1.0,2,1.217179775238037,493,1.0,2 +47993,11,1.0,2,1.3781777620315552,494,0.0,2 +47994,11,0.0,2,1.7651728391647339,495,0.0,2 +47995,11,1.0,2,1.268179178237915,496,1.0,2 +47996,11,1.0,2,1.3361783027648926,497,0.0,2 +47997,11,0.0,2,1.7511730194091797,498,0.0,2 +47998,11,1.0,2,2.0561742782592773,499,0.0,2 +47999,11,1.0,2,1.3481781482696533,500,0.0,2 +48000,12,1.0,0,2.2346413135528564,1,1.0,2 +48001,12,1.0,0,1.5036386251449585,2,1.0,2 +48002,12,0.0,0,1.501638650894165,3,0.0,2 +48003,12,1.0,0,1.2796415090560913,4,1.0,2 +48004,12,1.0,0,1.4176397323608398,5,1.0,2 +48005,12,1.0,0,1.6106373071670532,6,1.0,2 +48006,12,1.0,0,1.4406394958496094,7,1.0,2 +48007,12,1.0,0,1.5036386251449585,8,1.0,2 +48008,12,1.0,0,1.453639268875122,9,1.0,2 +48009,12,0.0,0,1.413639783859253,10,0.0,2 +48010,12,1.0,0,1.5386382341384888,11,0.0,2 +48011,12,1.0,0,1.7646353244781494,12,1.0,2 +48012,12,1.0,0,1.3056411743164062,13,1.0,2 +48013,12,1.0,0,1.7006361484527588,14,0.0,2 +48014,12,1.0,0,2.2236409187316895,15,0.0,2 +48015,12,0.0,0,1.2086412906646729,16,0.0,2 +48016,12,0.0,0,1.3476406335830688,17,1.0,2 +48017,12,0.0,0,1.2546414136886597,18,1.0,2 +48018,12,0.0,0,1.2606414556503296,19,0.0,2 +48019,12,0.0,0,2.1796388626098633,20,0.0,2 +48020,12,0.0,0,1.9266332387924194,21,0.0,2 +48021,12,1.0,0,1.3996399641036987,22,1.0,2 +48022,12,1.0,0,1.3706403970718384,23,1.0,2 +48023,12,0.0,0,1.9766325950622559,24,1.0,2 +48024,12,0.0,0,1.8386343717575073,25,0.0,2 +48025,12,1.0,0,1.6076374053955078,26,1.0,2 +48026,12,1.0,0,1.9556329250335693,27,1.0,2 +48027,12,1.0,0,2.0306320190429688,28,1.0,2 +48028,12,1.0,0,1.3016412258148193,29,0.0,2 +48029,12,1.0,0,1.3776402473449707,30,1.0,2 +48030,12,1.0,0,1.3716403245925903,31,0.0,2 +48031,12,0.0,0,1.6336369514465332,32,0.0,2 +48032,12,0.0,0,1.167641282081604,33,0.0,2 +48033,12,1.0,0,1.6716365814208984,34,0.0,2 +48034,12,0.0,0,1.298641324043274,35,1.0,2 +48035,12,0.0,0,1.3226410150527954,36,0.0,2 +48036,12,0.0,0,1.1496412754058838,37,0.0,2 +48037,12,0.0,0,1.2156413793563843,38,0.0,2 +48038,12,1.0,0,1.810634732246399,39,0.0,2 +48039,12,0.0,0,1.2486414909362793,40,0.0,2 +48040,12,0.0,0,1.261641502380371,41,0.0,2 +48041,12,1.0,0,1.4546393156051636,42,1.0,2 +48042,12,1.0,0,1.3256409168243408,43,0.0,2 +48043,12,1.0,0,1.692636251449585,44,1.0,2 +48044,12,1.0,0,1.9106334447860718,45,0.0,2 +48045,12,1.0,0,1.785634994506836,46,1.0,2 +48046,12,1.0,0,2.010632038116455,47,1.0,2 +48047,12,1.0,0,1.364640474319458,48,1.0,2 +48048,12,1.0,0,1.5146385431289673,49,1.0,2 +48049,12,1.0,0,1.854634165763855,50,1.0,2 +48050,12,1.0,0,1.2576414346694946,51,1.0,2 +48051,12,1.0,0,1.3306409120559692,52,1.0,2 +48052,12,1.0,0,1.593637466430664,53,1.0,2 +48053,12,1.0,0,1.5646378993988037,54,1.0,2 +48054,12,1.0,0,1.6566367149353027,55,1.0,2 +48055,12,1.0,0,1.391640067100525,56,1.0,2 +48056,12,1.0,0,1.317641019821167,57,1.0,2 +48057,12,1.0,0,1.7036361694335938,58,1.0,2 +48058,12,1.0,0,1.5106385946273804,59,1.0,2 +48059,12,1.0,0,1.335640788078308,60,1.0,2 +48060,12,1.0,0,1.3016412258148193,61,1.0,2 +48061,12,1.0,0,1.3186410665512085,62,1.0,2 +48062,12,1.0,0,1.3046412467956543,63,1.0,2 +48063,12,1.0,0,1.2926414012908936,64,1.0,2 +48064,12,1.0,0,1.5166385173797607,65,1.0,2 +48065,12,1.0,0,1.7936348915100098,66,0.0,2 +48066,12,0.0,0,2.076633930206299,67,0.0,2 +48067,12,1.0,0,1.6866363286972046,68,0.0,2 +48068,12,0.0,0,1.5196384191513062,69,0.0,2 +48069,12,0.0,0,1.2606414556503296,70,0.0,2 +48070,12,1.0,0,1.595637559890747,71,1.0,2 +48071,12,1.0,0,1.5796377658843994,72,1.0,2 +48072,12,1.0,0,1.4516392946243286,73,1.0,2 +48073,12,1.0,0,1.599637508392334,74,1.0,2 +48074,12,1.0,0,1.438639521598816,75,1.0,2 +48075,12,1.0,0,1.412639856338501,76,1.0,2 +48076,12,1.0,0,1.6696364879608154,77,0.0,2 +48077,12,1.0,0,1.501638650894165,78,1.0,2 +48078,12,1.0,0,2.0046322345733643,79,0.0,2 +48079,12,0.0,0,1.7646353244781494,80,0.0,2 +48080,12,1.0,0,1.4426394701004028,81,1.0,2 +48081,12,1.0,0,1.5446381568908691,82,1.0,2 +48082,12,0.0,0,1.3626405000686646,83,1.0,2 +48083,12,0.0,0,1.3496406078338623,84,0.0,2 +48084,12,1.0,0,1.4186397790908813,85,0.0,2 +48085,12,0.0,0,1.8536341190338135,86,0.0,2 +48086,12,0.0,0,1.2056413888931274,87,0.0,2 +48087,12,0.0,0,1.5036386251449585,88,0.0,2 +48088,12,1.0,0,1.7276358604431152,89,1.0,2 +48089,12,1.0,0,1.4866389036178589,90,1.0,2 +48090,12,1.0,0,1.3806402683258057,91,1.0,2 +48091,12,1.0,0,1.364640474319458,92,1.0,2 +48092,12,1.0,0,1.7306357622146606,93,1.0,2 +48093,12,1.0,0,1.549638032913208,94,1.0,2 +48094,12,1.0,0,1.435639500617981,95,1.0,2 +48095,12,1.0,0,1.691636323928833,96,1.0,2 +48096,12,1.0,0,1.2806415557861328,97,1.0,2 +48097,12,1.0,0,1.3246409893035889,98,1.0,2 +48098,12,1.0,0,1.5666378736495972,99,1.0,2 +48099,12,1.0,0,1.335640788078308,100,1.0,2 +48100,12,1.0,0,1.4556392431259155,101,1.0,2 +48101,12,1.0,0,1.5866376161575317,102,1.0,2 +48102,12,1.0,0,1.3016412258148193,103,1.0,2 +48103,12,1.0,0,1.7596354484558105,104,1.0,2 +48104,12,1.0,0,1.7096359729766846,105,1.0,2 +48105,12,1.0,0,1.2896413803100586,106,1.0,2 +48106,12,1.0,0,1.5376381874084473,107,1.0,2 +48107,12,1.0,0,1.2826415300369263,108,1.0,2 +48108,12,1.0,0,1.3956400156021118,109,1.0,2 +48109,12,1.0,0,1.687636375427246,110,1.0,2 +48110,12,1.0,0,1.4916387796401978,111,0.0,2 +48111,12,0.0,0,1.3796402215957642,112,0.0,2 +48112,12,1.0,0,1.9036335945129395,113,1.0,2 +48113,12,1.0,0,1.5036386251449585,114,1.0,2 +48114,12,1.0,0,1.408639907836914,115,1.0,2 +48115,12,1.0,0,1.361640453338623,116,1.0,2 +48116,12,1.0,0,1.6596367359161377,117,1.0,2 +48117,12,1.0,0,1.291641354560852,118,1.0,2 +48118,12,1.0,0,2.2796435356140137,119,1.0,2 +48119,12,1.0,0,1.4936387538909912,120,1.0,2 +48120,12,1.0,0,1.5646378993988037,121,1.0,2 +48121,12,1.0,0,1.5426381826400757,122,1.0,2 +48122,12,0.0,0,1.3106411695480347,123,0.0,2 +48123,12,1.0,0,1.2636414766311646,124,1.0,2 +48124,12,1.0,0,1.268641471862793,125,0.0,2 +48125,12,1.0,0,1.5816376209259033,126,0.0,2 +48126,12,1.0,0,1.9166333675384521,127,1.0,2 +48127,12,0.0,0,1.6166372299194336,128,0.0,2 +48128,12,1.0,0,1.4626392126083374,129,1.0,2 +48129,12,1.0,0,1.7866350412368774,130,1.0,2 +48130,12,1.0,0,1.2996412515640259,131,0.0,2 +48131,12,1.0,0,1.4016399383544922,132,1.0,2 +48132,12,0.0,0,1.195641279220581,133,1.0,2 +48133,12,1.0,0,1.549638032913208,134,1.0,2 +48134,12,0.0,0,1.7676353454589844,135,0.0,2 +48135,12,1.0,0,1.4206397533416748,136,1.0,2 +48136,12,1.0,0,1.733635663986206,137,1.0,2 +48137,12,0.0,0,1.6726365089416504,138,0.0,2 +48138,12,1.0,0,2.097634792327881,139,1.0,2 +48139,12,1.0,0,1.5156384706497192,140,1.0,2 +48140,12,1.0,0,1.4546393156051636,141,0.0,2 +48141,12,0.0,0,1.321640968322754,142,0.0,2 +48142,12,0.0,0,1.553637981414795,143,0.0,2 +48143,12,0.0,0,1.4696390628814697,144,0.0,2 +48144,12,1.0,0,1.3536405563354492,145,1.0,2 +48145,12,1.0,0,1.4196397066116333,146,1.0,2 +48146,12,1.0,0,1.6776363849639893,147,1.0,2 +48147,12,1.0,0,1.693636178970337,148,1.0,2 +48148,12,1.0,0,1.6726365089416504,149,1.0,2 +48149,12,1.0,0,1.346640706062317,150,1.0,2 +48150,12,1.0,0,1.4656391143798828,151,1.0,2 +48151,12,1.0,0,1.3086411952972412,152,1.0,2 +48152,12,1.0,0,1.435639500617981,153,1.0,2 +48153,12,1.0,0,1.3256409168243408,154,0.0,2 +48154,12,0.0,0,1.2826415300369263,155,0.0,2 +48155,12,0.0,0,1.4646391868591309,156,0.0,2 +48156,12,0.0,0,1.6676366329193115,157,1.0,2 +48157,12,0.0,0,1.3976399898529053,158,0.0,2 +48158,12,0.0,0,1.5446381568908691,159,0.0,2 +48159,12,0.0,0,1.66663658618927,160,0.0,2 +48160,12,1.0,0,2.2566423416137695,161,1.0,2 +48161,12,1.0,0,1.5156384706497192,162,1.0,2 +48162,12,1.0,0,1.4416394233703613,163,1.0,2 +48163,12,1.0,0,1.7456355094909668,164,1.0,2 +48164,12,1.0,0,1.2266414165496826,165,1.0,2 +48165,12,1.0,0,1.5346382856369019,166,1.0,2 +48166,12,1.0,0,1.3566405773162842,167,1.0,2 +48167,12,1.0,0,1.2826415300369263,168,1.0,2 +48168,12,1.0,0,1.2636414766311646,169,1.0,2 +48169,12,1.0,0,1.7726352214813232,170,1.0,2 +48170,12,1.0,0,1.5026386976242065,171,1.0,2 +48171,12,1.0,0,1.320641040802002,172,1.0,2 +48172,12,1.0,0,1.3146411180496216,173,0.0,2 +48173,12,1.0,0,1.234641432762146,174,1.0,2 +48174,12,1.0,0,1.3156410455703735,175,1.0,2 +48175,12,1.0,0,1.4106398820877075,176,1.0,2 +48176,12,1.0,0,1.4496393203735352,177,1.0,2 +48177,12,1.0,0,1.2696415185928345,178,1.0,2 +48178,12,1.0,0,1.2966413497924805,179,0.0,2 +48179,12,0.0,0,1.3456406593322754,180,0.0,2 +48180,12,0.0,0,1.1746412515640259,181,1.0,2 +48181,12,0.0,0,1.3966400623321533,182,0.0,2 +48182,12,1.0,0,1.9766325950622559,183,1.0,2 +48183,12,1.0,0,1.8146346807479858,184,1.0,2 +48184,12,1.0,0,2.0476326942443848,185,1.0,2 +48185,12,1.0,0,1.6306370496749878,186,1.0,2 +48186,12,1.0,0,1.7496354579925537,187,1.0,2 +48187,12,1.0,0,1.4716390371322632,188,1.0,2 +48188,12,1.0,0,1.4436393976211548,189,0.0,2 +48189,12,0.0,0,1.2246413230895996,190,1.0,2 +48190,12,0.0,0,1.3756402730941772,191,0.0,2 +48191,12,0.0,0,1.1666412353515625,192,0.0,2 +48192,12,0.0,0,1.137641191482544,193,0.0,2 +48193,12,1.0,0,1.8996336460113525,194,0.0,2 +48194,12,1.0,0,1.434639573097229,195,1.0,2 +48195,12,1.0,0,1.5606379508972168,196,1.0,2 +48196,12,1.0,0,1.2516413927078247,197,1.0,2 +48197,12,1.0,0,1.6466368436813354,198,1.0,2 +48198,12,1.0,0,1.4416394233703613,199,0.0,2 +48199,12,1.0,0,1.3806402683258057,200,1.0,2 +48200,12,1.0,0,1.3226410150527954,201,1.0,2 +48201,12,1.0,0,1.435639500617981,202,0.0,2 +48202,12,1.0,0,1.2256413698196411,203,1.0,2 +48203,12,1.0,0,1.4426394701004028,204,1.0,2 +48204,12,1.0,0,1.6286370754241943,205,0.0,2 +48205,12,1.0,0,1.8706339597702026,206,1.0,2 +48206,12,0.0,0,1.7076361179351807,207,1.0,2 +48207,12,1.0,0,1.736635684967041,208,1.0,2 +48208,12,0.0,0,1.921633243560791,209,0.0,2 +48209,12,1.0,0,1.31364107131958,210,0.0,2 +48210,12,0.0,0,1.7346357107162476,211,0.0,2 +48211,12,0.0,0,1.4516392946243286,212,0.0,2 +48212,12,0.0,0,1.7006361484527588,213,0.0,2 +48213,12,0.0,0,1.7046360969543457,214,0.0,2 +48214,12,0.0,0,1.4396394491195679,215,0.0,2 +48215,12,1.0,0,1.456639289855957,216,1.0,2 +48216,12,1.0,0,1.7156360149383545,217,0.0,2 +48217,12,0.0,0,1.1786413192749023,218,0.0,2 +48218,12,1.0,0,1.3306409120559692,219,1.0,2 +48219,12,1.0,0,1.3706403970718384,220,1.0,2 +48220,12,1.0,0,1.2476414442062378,221,1.0,2 +48221,12,1.0,0,1.7176358699798584,222,1.0,2 +48222,12,1.0,0,1.2506414651870728,223,0.0,2 +48223,12,1.0,0,1.737635612487793,224,1.0,2 +48224,12,1.0,0,1.3106411695480347,225,1.0,2 +48225,12,1.0,0,1.2676414251327515,226,1.0,2 +48226,12,1.0,0,1.2636414766311646,227,1.0,2 +48227,12,1.0,0,1.4296395778656006,228,1.0,2 +48228,12,1.0,0,1.5406382083892822,229,1.0,2 +48229,12,1.0,0,1.1756412982940674,230,1.0,2 +48230,12,1.0,0,1.919633388519287,231,1.0,2 +48231,12,1.0,0,1.501638650894165,232,0.0,2 +48232,12,0.0,0,1.9096333980560303,233,0.0,2 +48233,12,0.0,0,1.9086334705352783,234,0.0,2 +48234,12,1.0,0,1.8606340885162354,235,1.0,2 +48235,12,1.0,0,1.4506393671035767,236,1.0,2 +48236,12,1.0,0,1.6966361999511719,237,1.0,2 +48237,12,1.0,0,1.390640139579773,238,1.0,2 +48238,12,1.0,0,1.4016399383544922,239,1.0,2 +48239,12,1.0,0,1.2586414813995361,240,1.0,2 +48240,12,1.0,0,1.2966413497924805,241,1.0,2 +48241,12,1.0,0,1.198641300201416,242,0.0,2 +48242,12,1.0,0,1.6696364879608154,243,0.0,2 +48243,12,0.0,0,1.2516413927078247,244,0.0,2 +48244,12,0.0,0,1.7216358184814453,245,0.0,2 +48245,12,1.0,0,1.5066386461257935,246,1.0,2 +48246,12,1.0,0,1.6996362209320068,247,1.0,2 +48247,12,1.0,0,1.3366408348083496,248,1.0,2 +48248,12,1.0,0,1.3806402683258057,249,1.0,2 +48249,12,1.0,0,1.3086411952972412,250,1.0,2 +48250,12,1.0,0,1.640636920928955,251,1.0,2 +48251,12,1.0,0,1.2396414279937744,252,1.0,2 +48252,12,1.0,0,1.4396394491195679,253,1.0,2 +48253,12,1.0,0,1.9406330585479736,254,0.0,2 +48254,12,0.0,0,1.434639573097229,255,0.0,2 +48255,12,1.0,0,1.4876388311386108,256,1.0,2 +48256,12,1.0,0,1.2806415557861328,257,1.0,2 +48257,12,1.0,0,1.4276396036148071,258,1.0,2 +48258,12,1.0,0,1.8896336555480957,259,1.0,2 +48259,12,1.0,0,1.5076385736465454,260,0.0,2 +48260,12,0.0,0,1.2166414260864258,261,1.0,2 +48261,12,0.0,0,1.3736402988433838,262,0.0,2 +48262,12,0.0,0,1.5396382808685303,263,0.0,2 +48263,12,1.0,0,1.3716403245925903,264,0.0,2 +48264,12,1.0,0,1.6156373023986816,265,1.0,2 +48265,12,1.0,0,1.3066412210464478,266,0.0,2 +48266,12,1.0,0,1.2696415185928345,267,1.0,2 +48267,12,1.0,0,1.3676403760910034,268,1.0,2 +48268,12,1.0,0,1.530638337135315,269,1.0,2 +48269,12,1.0,0,1.408639907836914,270,1.0,2 +48270,12,1.0,0,1.2066413164138794,271,1.0,2 +48271,12,1.0,0,1.8446342945098877,272,1.0,2 +48272,12,1.0,0,1.408639907836914,273,1.0,2 +48273,12,1.0,0,1.435639500617981,274,1.0,2 +48274,12,1.0,0,1.3156410455703735,275,1.0,2 +48275,12,1.0,0,1.4846389293670654,276,1.0,2 +48276,12,1.0,0,1.3556405305862427,277,1.0,2 +48277,12,1.0,0,1.5886375904083252,278,0.0,2 +48278,12,0.0,0,1.1786413192749023,279,0.0,2 +48279,12,1.0,0,1.6846363544464111,280,1.0,2 +48280,12,1.0,0,1.237641453742981,281,1.0,2 +48281,12,1.0,0,1.4686391353607178,282,1.0,2 +48282,12,1.0,0,1.9456329345703125,283,1.0,2 +48283,12,1.0,0,1.3826402425765991,284,1.0,2 +48284,12,1.0,0,1.5186384916305542,285,0.0,2 +48285,12,1.0,0,2.098634958267212,286,1.0,2 +48286,12,1.0,0,1.479638934135437,287,1.0,2 +48287,12,1.0,0,1.1526412963867188,288,1.0,2 +48288,12,1.0,0,1.6946362257003784,289,1.0,2 +48289,12,1.0,0,1.2996412515640259,290,1.0,2 +48290,12,1.0,0,1.7666352987289429,291,1.0,2 +48291,12,1.0,0,1.5736377239227295,292,0.0,2 +48292,12,0.0,0,1.4896388053894043,293,0.0,2 +48293,12,1.0,0,1.5666378736495972,294,0.0,2 +48294,12,1.0,0,1.873633861541748,295,1.0,2 +48295,12,1.0,0,1.317641019821167,296,1.0,2 +48296,12,1.0,0,1.1836413145065308,297,1.0,2 +48297,12,1.0,0,1.2546414136886597,298,1.0,2 +48298,12,1.0,0,1.2226413488388062,299,1.0,2 +48299,12,1.0,0,1.4466394186019897,300,1.0,2 +48300,12,1.0,0,1.2546414136886597,301,1.0,2 +48301,12,1.0,0,1.390640139579773,302,1.0,2 +48302,12,1.0,0,1.2466413974761963,303,1.0,2 +48303,12,1.0,0,1.3236409425735474,304,1.0,2 +48304,12,1.0,0,1.5166385173797607,305,1.0,2 +48305,12,1.0,0,1.6746364831924438,306,1.0,2 +48306,12,1.0,0,1.4036399126052856,307,0.0,2 +48307,12,1.0,0,1.8816337585449219,308,1.0,2 +48308,12,1.0,0,1.4466394186019897,309,1.0,2 +48309,12,1.0,0,1.2826415300369263,310,1.0,2 +48310,12,1.0,0,1.9986323118209839,311,1.0,2 +48311,12,1.0,0,1.4376394748687744,312,1.0,2 +48312,12,0.0,0,1.7596354484558105,313,1.0,2 +48313,12,0.0,0,1.6516368389129639,314,0.0,2 +48314,12,1.0,0,1.4846389293670654,315,0.0,2 +48315,12,0.0,0,1.8536341190338135,316,0.0,2 +48316,12,1.0,0,1.2226413488388062,317,1.0,2 +48317,12,1.0,0,1.927633285522461,318,1.0,2 +48318,12,1.0,0,1.9786325693130493,319,1.0,2 +48319,12,1.0,0,1.5226384401321411,320,1.0,2 +48320,12,1.0,0,1.3996399641036987,321,1.0,2 +48321,12,1.0,0,1.5696377754211426,322,1.0,2 +48322,12,1.0,0,1.526638388633728,323,1.0,2 +48323,12,1.0,0,1.1896413564682007,324,1.0,2 +48324,12,1.0,0,1.3046412467956543,325,0.0,2 +48325,12,0.0,0,1.317641019821167,326,1.0,2 +48326,12,0.0,0,1.2126413583755493,327,0.0,2 +48327,12,0.0,0,1.4046399593353271,328,0.0,2 +48328,12,1.0,0,1.8216345310211182,329,1.0,2 +48329,12,1.0,0,1.2466413974761963,330,1.0,2 +48330,12,1.0,0,1.3016412258148193,331,1.0,2 +48331,12,1.0,0,1.295641303062439,332,1.0,2 +48332,12,1.0,0,1.2876414060592651,333,1.0,2 +48333,12,1.0,0,2.008632183074951,334,1.0,2 +48334,12,1.0,0,1.4046399593353271,335,1.0,2 +48335,12,1.0,0,1.4286396503448486,336,1.0,2 +48336,12,1.0,0,1.2836414575576782,337,1.0,2 +48337,12,1.0,0,1.47563898563385,338,0.0,2 +48338,12,0.0,0,1.412639856338501,339,0.0,2 +48339,12,0.0,0,2.131636619567871,340,0.0,2 +48340,12,1.0,0,1.5366382598876953,341,1.0,2 +48341,12,1.0,0,1.5336382389068604,342,1.0,2 +48342,12,1.0,0,1.5646378993988037,343,1.0,2 +48343,12,0.0,0,1.2506414651870728,344,0.0,2 +48344,12,1.0,0,1.5626379251480103,345,1.0,2 +48345,12,1.0,0,1.47563898563385,346,1.0,2 +48346,12,0.0,0,1.3116410970687866,347,0.0,2 +48347,12,1.0,0,1.2336413860321045,348,1.0,2 +48348,12,1.0,0,1.1866413354873657,349,1.0,2 +48349,12,1.0,0,1.3626405000686646,350,1.0,2 +48350,12,1.0,0,1.3576405048370361,351,1.0,2 +48351,12,1.0,0,1.2186414003372192,352,0.0,2 +48352,12,0.0,0,1.317641019821167,353,0.0,2 +48353,12,0.0,0,1.3096411228179932,354,0.0,2 +48354,12,0.0,0,2.135636806488037,355,0.0,2 +48355,12,0.0,0,1.6726365089416504,356,0.0,2 +48356,12,1.0,0,2.005632162094116,357,1.0,2 +48357,12,1.0,0,1.8096346855163574,358,1.0,2 +48358,12,1.0,0,1.5186384916305542,359,1.0,2 +48359,12,1.0,0,1.478639006614685,360,1.0,2 +48360,12,0.0,0,1.2506414651870728,361,0.0,2 +48361,12,1.0,0,1.4726390838623047,362,1.0,2 +48362,12,1.0,0,1.3186410665512085,363,1.0,2 +48363,12,1.0,0,1.3986400365829468,364,1.0,2 +48364,12,1.0,0,1.66663658618927,365,1.0,2 +48365,12,1.0,0,1.262641429901123,366,1.0,2 +48366,12,1.0,0,1.8016347885131836,367,0.0,2 +48367,12,0.0,0,2.2146403789520264,368,0.0,2 +48368,12,0.0,0,1.7686352729797363,369,0.0,2 +48369,12,0.0,0,1.662636637687683,370,0.0,2 +48370,12,0.0,0,1.3336408138275146,371,0.0,2 +48371,12,1.0,0,1.4686391353607178,372,1.0,2 +48372,12,1.0,0,1.2536414861679077,373,1.0,2 +48373,12,1.0,0,1.431639552116394,374,1.0,2 +48374,12,1.0,0,1.4376394748687744,375,0.0,2 +48375,12,1.0,0,1.6266371011734009,376,1.0,2 +48376,12,1.0,0,1.3556405305862427,377,1.0,2 +48377,12,1.0,0,2.0336318016052246,378,1.0,2 +48378,12,1.0,0,1.879633903503418,379,1.0,2 +48379,12,1.0,0,1.8416342735290527,380,1.0,2 +48380,12,1.0,0,1.4026399850845337,381,1.0,2 +48381,12,1.0,0,1.4636391401290894,382,1.0,2 +48382,12,1.0,0,1.4006400108337402,383,1.0,2 +48383,12,1.0,0,1.2476414442062378,384,1.0,2 +48384,12,1.0,0,1.8306344747543335,385,1.0,2 +48385,12,1.0,0,1.4806389808654785,386,1.0,2 +48386,12,1.0,0,1.710636019706726,387,1.0,2 +48387,12,1.0,0,1.555638074874878,388,0.0,2 +48388,12,0.0,0,1.4716390371322632,389,0.0,2 +48389,12,1.0,0,1.9436330795288086,390,0.0,2 +48390,12,0.0,0,1.8746339082717896,391,0.0,2 +48391,12,1.0,0,1.413639783859253,392,0.0,2 +48392,12,0.0,0,1.1756412982940674,393,1.0,2 +48393,12,0.0,0,1.457639217376709,394,1.0,2 +48394,12,0.0,0,1.2496414184570312,395,0.0,2 +48395,12,1.0,0,1.5916376113891602,396,1.0,2 +48396,12,1.0,0,1.3496406078338623,397,1.0,2 +48397,12,1.0,0,1.4016399383544922,398,1.0,2 +48398,12,1.0,0,1.877633810043335,399,1.0,2 +48399,12,0.0,0,1.2536414861679077,400,0.0,2 +48400,12,1.0,0,1.3316408395767212,401,1.0,2 +48401,12,1.0,0,1.8126347064971924,402,1.0,2 +48402,12,1.0,0,1.31364107131958,403,1.0,2 +48403,12,1.0,0,1.7446355819702148,404,0.0,2 +48404,12,1.0,0,1.7946349382400513,405,1.0,2 +48405,12,1.0,0,1.5656378269195557,406,1.0,2 +48406,12,1.0,0,1.549638032913208,407,1.0,2 +48407,12,1.0,0,1.552638053894043,408,1.0,2 +48408,12,1.0,0,1.8006348609924316,409,1.0,2 +48409,12,0.0,0,1.8076348304748535,410,0.0,2 +48410,12,1.0,0,1.3476406335830688,411,1.0,2 +48411,12,1.0,0,1.5726377964019775,412,1.0,2 +48412,12,1.0,0,1.6366369724273682,413,1.0,2 +48413,12,1.0,0,1.1936413049697876,414,1.0,2 +48414,12,1.0,0,2.119636058807373,415,0.0,2 +48415,12,1.0,0,1.8646340370178223,416,0.0,2 +48416,12,1.0,0,1.3346408605575562,417,1.0,2 +48417,12,1.0,0,1.3016412258148193,418,1.0,2 +48418,12,1.0,0,1.8396344184875488,419,1.0,2 +48419,12,1.0,0,1.6846363544464111,420,1.0,2 +48420,12,1.0,0,1.5286383628845215,421,1.0,2 +48421,12,1.0,0,1.4146398305892944,422,1.0,2 +48422,12,1.0,0,1.68963623046875,423,0.0,2 +48423,12,0.0,0,1.4066399335861206,424,0.0,2 +48424,12,1.0,0,1.6586366891860962,425,0.0,2 +48425,12,1.0,0,1.5736377239227295,426,1.0,2 +48426,12,1.0,0,1.478639006614685,427,1.0,2 +48427,12,1.0,0,1.4216396808624268,428,1.0,2 +48428,12,1.0,0,1.2516413927078247,429,1.0,2 +48429,12,1.0,0,1.3146411180496216,430,1.0,2 +48430,12,1.0,0,1.200641393661499,431,1.0,2 +48431,12,1.0,0,1.4376394748687744,432,0.0,2 +48432,12,0.0,0,2.082634210586548,433,0.0,2 +48433,12,0.0,0,1.9336330890655518,434,0.0,2 +48434,12,1.0,0,1.5436382293701172,435,1.0,2 +48435,12,1.0,0,1.3676403760910034,436,1.0,2 +48436,12,1.0,0,1.8396344184875488,437,1.0,2 +48437,12,1.0,0,1.2396414279937744,438,1.0,2 +48438,12,1.0,0,1.6826363801956177,439,1.0,2 +48439,12,1.0,0,1.237641453742981,440,1.0,2 +48440,12,1.0,0,1.2816414833068848,441,1.0,2 +48441,12,1.0,0,1.7126359939575195,442,0.0,2 +48442,12,0.0,0,1.6796364784240723,443,0.0,2 +48443,12,1.0,0,1.6146372556686401,444,1.0,2 +48444,12,1.0,0,1.3706403970718384,445,1.0,2 +48445,12,1.0,0,1.832634449005127,446,1.0,2 +48446,12,1.0,0,1.5166385173797607,447,1.0,2 +48447,12,1.0,0,1.4116398096084595,448,1.0,2 +48448,12,1.0,0,1.1806412935256958,449,1.0,2 +48449,12,1.0,0,1.2416414022445679,450,1.0,2 +48450,12,1.0,0,1.8136346340179443,451,1.0,2 +48451,12,1.0,0,1.7206358909606934,452,1.0,2 +48452,12,1.0,0,1.7666352987289429,453,1.0,2 +48453,12,1.0,0,1.2266414165496826,454,1.0,2 +48454,12,1.0,0,1.3766403198242188,455,0.0,2 +48455,12,0.0,0,1.167641282081604,456,1.0,2 +48456,12,0.0,0,1.7036361694335938,457,0.0,2 +48457,12,0.0,0,1.7066360712051392,458,0.0,2 +48458,12,1.0,0,1.4696390628814697,459,1.0,2 +48459,12,1.0,0,1.6356370449066162,460,1.0,2 +48460,12,1.0,0,1.4366395473480225,461,1.0,2 +48461,12,0.0,0,2.0586330890655518,462,1.0,2 +48462,12,1.0,0,2.147637367248535,463,1.0,2 +48463,12,1.0,0,2.077633857727051,464,0.0,2 +48464,12,0.0,0,1.5126385688781738,465,0.0,2 +48465,12,1.0,0,1.7266358137130737,466,1.0,2 +48466,12,1.0,0,1.4156397581100464,467,1.0,2 +48467,12,1.0,0,1.3826402425765991,468,1.0,2 +48468,12,1.0,0,1.8476343154907227,469,1.0,2 +48469,12,1.0,0,1.601637363433838,470,1.0,2 +48470,12,1.0,0,1.4486393928527832,471,1.0,2 +48471,12,1.0,0,1.5986374616622925,472,1.0,2 +48472,12,1.0,0,1.5376381874084473,473,1.0,2 +48473,12,1.0,0,1.1396411657333374,474,1.0,2 +48474,12,1.0,0,1.2856414318084717,475,0.0,2 +48475,12,1.0,0,2.2886438369750977,476,0.0,2 +48476,12,1.0,0,1.873633861541748,477,0.0,2 +48477,12,1.0,0,2.1966395378112793,478,1.0,2 +48478,12,1.0,0,1.7556354999542236,479,1.0,2 +48479,12,1.0,0,1.8186346292495728,480,1.0,2 +48480,12,1.0,0,1.4556392431259155,481,1.0,2 +48481,12,1.0,0,1.8096346855163574,482,1.0,2 +48482,12,1.0,0,1.5896375179290771,483,1.0,2 +48483,12,1.0,0,1.294641375541687,484,1.0,2 +48484,12,1.0,0,1.777635097503662,485,1.0,2 +48485,12,1.0,0,1.2566413879394531,486,1.0,2 +48486,12,1.0,0,1.408639907836914,487,1.0,2 +48487,12,1.0,0,1.5386382341384888,488,1.0,2 +48488,12,1.0,0,1.4936387538909912,489,1.0,2 +48489,12,1.0,0,1.343640685081482,490,1.0,2 +48490,12,0.0,0,1.3056411743164062,491,0.0,2 +48491,12,1.0,0,1.4766390323638916,492,1.0,2 +48492,12,1.0,0,1.3306409120559692,493,1.0,2 +48493,12,1.0,0,1.3406407833099365,494,1.0,2 +48494,12,1.0,0,1.4226397275924683,495,0.0,2 +48495,12,1.0,0,1.595637559890747,496,1.0,2 +48496,12,1.0,0,2.0436325073242188,497,1.0,2 +48497,12,1.0,0,1.7276358604431152,498,1.0,2 +48498,12,1.0,0,1.3556405305862427,499,1.0,2 +48499,12,1.0,0,2.066633462905884,500,1.0,2 +48500,12,0.0,1,1.4176397323608398,1,0.0,2 +48501,12,1.0,1,1.8376343250274658,2,1.0,2 +48502,12,1.0,1,1.1816413402557373,3,1.0,2 +48503,12,1.0,1,1.3366408348083496,4,0.0,2 +48504,12,1.0,1,2.330645799636841,5,0.0,2 +48505,12,0.0,1,2.010632038116455,6,1.0,2 +48506,12,0.0,1,1.3086411952972412,7,0.0,2 +48507,12,0.0,1,1.6256370544433594,8,0.0,2 +48508,12,0.0,1,2.0016322135925293,9,1.0,2 +48509,12,0.0,1,1.2416414022445679,10,0.0,2 +48510,12,0.0,1,2.2706429958343506,11,1.0,2 +48511,12,0.0,1,1.7206358909606934,12,0.0,2 +48512,12,1.0,1,1.3896400928497314,13,1.0,2 +48513,12,1.0,1,1.9866324663162231,14,1.0,2 +48514,12,1.0,1,1.2506414651870728,15,1.0,2 +48515,12,1.0,1,1.4976387023925781,16,1.0,2 +48516,12,1.0,1,1.2496414184570312,17,0.0,2 +48517,12,0.0,1,1.1426411867141724,18,0.0,2 +48518,12,0.0,1,1.4176397323608398,19,0.0,2 +48519,12,0.0,1,1.8386343717575073,20,0.0,2 +48520,12,0.0,1,1.5296382904052734,21,1.0,2 +48521,12,0.0,1,1.2926414012908936,22,0.0,2 +48522,12,0.0,1,1.2466413974761963,23,0.0,2 +48523,12,0.0,1,1.8526341915130615,24,0.0,2 +48524,12,1.0,1,1.8216345310211182,25,0.0,2 +48525,12,0.0,1,1.3376407623291016,26,1.0,2 +48526,12,0.0,1,1.4036399126052856,27,1.0,2 +48527,12,0.0,1,1.5666378736495972,28,0.0,2 +48528,12,0.0,1,1.316641092300415,29,0.0,2 +48529,12,0.0,1,1.2106413841247559,30,0.0,2 +48530,12,0.0,1,2.095634937286377,31,0.0,2 +48531,12,0.0,1,2.147637367248535,32,0.0,2 +48532,12,1.0,1,1.693636178970337,33,1.0,2 +48533,12,1.0,1,1.4926388263702393,34,0.0,2 +48534,12,1.0,1,1.7466355562210083,35,1.0,2 +48535,12,1.0,1,1.8486342430114746,36,1.0,2 +48536,12,1.0,1,1.2396414279937744,37,1.0,2 +48537,12,1.0,1,1.68963623046875,38,0.0,2 +48538,12,1.0,1,1.6136372089385986,39,1.0,2 +48539,12,1.0,1,1.2446414232254028,40,1.0,2 +48540,12,1.0,1,1.9996323585510254,41,0.0,2 +48541,12,0.0,1,1.3416407108306885,42,0.0,2 +48542,12,0.0,1,1.710636019706726,43,0.0,2 +48543,12,1.0,1,1.6986361742019653,44,1.0,2 +48544,12,1.0,1,1.7066360712051392,45,1.0,2 +48545,12,1.0,1,1.259641408920288,46,1.0,2 +48546,12,1.0,1,1.6526367664337158,47,1.0,2 +48547,12,1.0,1,1.3376407623291016,48,0.0,2 +48548,12,1.0,1,1.3596404790878296,49,1.0,2 +48549,12,1.0,1,1.5136384963989258,50,1.0,2 +48550,12,1.0,1,1.5406382083892822,51,1.0,2 +48551,12,1.0,1,1.316641092300415,52,1.0,2 +48552,12,1.0,1,1.4106398820877075,53,1.0,2 +48553,12,0.0,1,1.8346344232559204,54,0.0,2 +48554,12,1.0,1,1.3636404275894165,55,1.0,2 +48555,12,1.0,1,1.4986387491226196,56,1.0,2 +48556,12,1.0,1,1.2276413440704346,57,1.0,2 +48557,12,1.0,1,1.482638955116272,58,1.0,2 +48558,12,1.0,1,1.2176413536071777,59,1.0,2 +48559,12,1.0,1,1.4286396503448486,60,1.0,2 +48560,12,1.0,1,1.456639289855957,61,1.0,2 +48561,12,1.0,1,1.1636412143707275,62,1.0,2 +48562,12,1.0,1,1.34264075756073,63,1.0,2 +48563,12,1.0,1,2.068633556365967,64,0.0,2 +48564,12,0.0,1,1.3096411228179932,65,0.0,2 +48565,12,0.0,1,1.3776402473449707,66,0.0,2 +48566,12,1.0,1,1.6296370029449463,67,1.0,2 +48567,12,1.0,1,1.2406413555145264,68,1.0,2 +48568,12,1.0,1,1.5806376934051514,69,1.0,2 +48569,12,1.0,1,1.4876388311386108,70,1.0,2 +48570,12,1.0,1,1.4546393156051636,71,1.0,2 +48571,12,1.0,1,1.6636366844177246,72,0.0,2 +48572,12,1.0,1,1.4986387491226196,73,1.0,2 +48573,12,1.0,1,1.1476411819458008,74,1.0,2 +48574,12,0.0,1,1.6806364059448242,75,0.0,2 +48575,12,1.0,1,2.181638717651367,76,1.0,2 +48576,12,0.0,1,1.1506412029266357,77,0.0,2 +48577,12,1.0,1,1.3936400413513184,78,1.0,2 +48578,12,1.0,1,1.9496328830718994,79,0.0,2 +48579,12,0.0,1,1.4276396036148071,80,1.0,2 +48580,12,0.0,1,1.1916413307189941,81,1.0,2 +48581,12,0.0,1,1.3336408138275146,82,1.0,2 +48582,12,0.0,1,1.7276358604431152,83,0.0,2 +48583,12,0.0,1,1.386640191078186,84,0.0,2 +48584,12,0.0,1,1.2546414136886597,85,0.0,2 +48585,12,1.0,1,1.5676379203796387,86,0.0,2 +48586,12,0.0,1,1.294641375541687,87,0.0,2 +48587,12,1.0,1,2.0396323204040527,88,1.0,2 +48588,12,1.0,1,1.3086411952972412,89,1.0,2 +48589,12,1.0,1,1.501638650894165,90,0.0,2 +48590,12,1.0,1,1.8036348819732666,91,0.0,2 +48591,12,1.0,1,1.4646391868591309,92,1.0,2 +48592,12,1.0,1,1.6576366424560547,93,1.0,2 +48593,12,1.0,1,1.7756352424621582,94,0.0,2 +48594,12,1.0,1,2.1836390495300293,95,0.0,2 +48595,12,0.0,1,1.238641381263733,96,0.0,2 +48596,12,0.0,1,1.8406343460083008,97,0.0,2 +48597,12,0.0,1,1.7346357107162476,98,0.0,2 +48598,12,1.0,1,1.2856414318084717,99,1.0,2 +48599,12,1.0,1,1.7386356592178345,100,1.0,2 +48600,12,1.0,1,1.5736377239227295,101,1.0,2 +48601,12,1.0,1,1.409639835357666,102,0.0,2 +48602,12,0.0,1,1.4226397275924683,103,1.0,2 +48603,12,0.0,1,1.8786338567733765,104,0.0,2 +48604,12,0.0,1,1.1446411609649658,105,0.0,2 +48605,12,0.0,1,1.2156413793563843,106,0.0,2 +48606,12,1.0,1,1.5616378784179688,107,1.0,2 +48607,12,1.0,1,1.2756414413452148,108,0.0,2 +48608,12,0.0,1,1.5656378269195557,109,0.0,2 +48609,12,0.0,1,1.7276358604431152,110,0.0,2 +48610,12,0.0,1,1.1536412239074707,111,1.0,2 +48611,12,0.0,1,1.237641453742981,112,0.0,2 +48612,12,0.0,1,1.6776363849639893,113,0.0,2 +48613,12,0.0,1,1.732635736465454,114,0.0,2 +48614,12,0.0,1,1.3096411228179932,115,1.0,2 +48615,12,0.0,1,1.368640422821045,116,0.0,2 +48616,12,0.0,1,1.2776415348052979,117,0.0,2 +48617,12,0.0,1,1.3546406030654907,118,0.0,2 +48618,12,0.0,1,1.268641471862793,119,0.0,2 +48619,12,1.0,1,1.5666378736495972,120,1.0,2 +48620,12,1.0,1,1.877633810043335,121,0.0,2 +48621,12,1.0,1,1.3846402168273926,122,1.0,2 +48622,12,1.0,1,1.1846413612365723,123,1.0,2 +48623,12,1.0,1,1.3806402683258057,124,1.0,2 +48624,12,1.0,1,1.4296395778656006,125,1.0,2 +48625,12,1.0,1,1.5916376113891602,126,1.0,2 +48626,12,1.0,1,1.802634835243225,127,1.0,2 +48627,12,1.0,1,1.4746390581130981,128,1.0,2 +48628,12,1.0,1,1.5826376676559448,129,1.0,2 +48629,12,1.0,1,1.3296408653259277,130,1.0,2 +48630,12,1.0,1,1.547638177871704,131,1.0,2 +48631,12,1.0,1,1.4006400108337402,132,1.0,2 +48632,12,1.0,1,1.2966413497924805,133,1.0,2 +48633,12,1.0,1,1.7606353759765625,134,1.0,2 +48634,12,1.0,1,1.6026374101638794,135,1.0,2 +48635,12,1.0,1,1.9116334915161133,136,0.0,2 +48636,12,1.0,1,1.435639500617981,137,1.0,2 +48637,12,1.0,1,1.3106411695480347,138,0.0,2 +48638,12,0.0,1,2.114635705947876,139,0.0,2 +48639,12,0.0,1,1.4976387023925781,140,0.0,2 +48640,12,0.0,1,1.5676379203796387,141,1.0,2 +48641,12,0.0,1,1.3096411228179932,142,0.0,2 +48642,12,1.0,1,1.923633337020874,143,0.0,2 +48643,12,1.0,1,1.4206397533416748,144,1.0,2 +48644,12,1.0,1,1.3066412210464478,145,1.0,2 +48645,12,1.0,1,1.523638367652893,146,1.0,2 +48646,12,1.0,1,1.6306370496749878,147,0.0,2 +48647,12,0.0,1,1.4196397066116333,148,1.0,2 +48648,12,0.0,1,1.7186359167099,149,0.0,2 +48649,12,1.0,1,1.4476393461227417,150,0.0,2 +48650,12,1.0,1,1.4506393671035767,151,1.0,2 +48651,12,1.0,1,1.478639006614685,152,0.0,2 +48652,12,0.0,1,1.6696364879608154,153,0.0,2 +48653,12,0.0,1,1.850634217262268,154,0.0,2 +48654,12,0.0,1,1.5506380796432495,155,1.0,2 +48655,12,0.0,1,1.1806412935256958,156,1.0,2 +48656,12,0.0,1,2.394648790359497,157,0.0,2 +48657,12,0.0,1,1.6496367454528809,158,0.0,2 +48658,12,0.0,1,1.3596404790878296,159,0.0,2 +48659,12,0.0,1,1.3806402683258057,160,0.0,2 +48660,12,1.0,1,1.810634732246399,161,1.0,2 +48661,12,1.0,1,1.4456393718719482,162,1.0,2 +48662,12,1.0,1,1.430639624595642,163,1.0,2 +48663,12,1.0,1,1.3736402988433838,164,1.0,2 +48664,12,0.0,1,1.47563898563385,165,0.0,2 +48665,12,1.0,1,1.3796402215957642,166,0.0,2 +48666,12,1.0,1,1.391640067100525,167,1.0,2 +48667,12,1.0,1,1.2866414785385132,168,1.0,2 +48668,12,1.0,1,1.547638177871704,169,1.0,2 +48669,12,1.0,1,1.3326408863067627,170,1.0,2 +48670,12,1.0,1,1.526638388633728,171,0.0,2 +48671,12,0.0,1,1.9086334705352783,172,1.0,2 +48672,12,0.0,1,1.2326414585113525,173,0.0,2 +48673,12,1.0,1,1.6616365909576416,174,0.0,2 +48674,12,1.0,1,1.4246397018432617,175,0.0,2 +48675,12,0.0,1,1.5626379251480103,176,1.0,2 +48676,12,0.0,1,1.453639268875122,177,0.0,2 +48677,12,0.0,1,1.478639006614685,178,0.0,2 +48678,12,0.0,1,1.4156397581100464,179,1.0,2 +48679,12,0.0,1,1.6296370029449463,180,0.0,2 +48680,12,0.0,1,1.505638599395752,181,0.0,2 +48681,12,0.0,1,1.501638650894165,182,0.0,2 +48682,12,1.0,1,1.733635663986206,183,1.0,2 +48683,12,0.0,1,1.2056413888931274,184,1.0,2 +48684,12,1.0,1,1.274641513824463,185,0.0,2 +48685,12,0.0,1,1.2446414232254028,186,0.0,2 +48686,12,0.0,1,1.5676379203796387,187,0.0,2 +48687,12,0.0,1,1.3056411743164062,188,0.0,2 +48688,12,1.0,1,1.8886337280273438,189,1.0,2 +48689,12,1.0,1,1.5186384916305542,190,1.0,2 +48690,12,1.0,1,1.6506367921829224,191,1.0,2 +48691,12,1.0,1,1.4646391868591309,192,1.0,2 +48692,12,1.0,1,1.6946362257003784,193,0.0,2 +48693,12,1.0,1,1.7656352519989014,194,1.0,2 +48694,12,1.0,1,1.3776402473449707,195,1.0,2 +48695,12,1.0,1,2.071633815765381,196,1.0,2 +48696,12,1.0,1,1.339640736579895,197,1.0,2 +48697,12,1.0,1,1.692636251449585,198,0.0,2 +48698,12,0.0,1,1.3126411437988281,199,1.0,2 +48699,12,0.0,1,1.4526393413543701,200,0.0,2 +48700,12,0.0,1,1.3056411743164062,201,0.0,2 +48701,12,1.0,1,1.7946349382400513,202,1.0,2 +48702,12,1.0,1,1.5546380281448364,203,1.0,2 +48703,12,1.0,1,1.7126359939575195,204,0.0,2 +48704,12,1.0,1,1.7766351699829102,205,1.0,2 +48705,12,1.0,1,1.5366382598876953,206,1.0,2 +48706,12,1.0,1,1.5466381311416626,207,1.0,2 +48707,12,1.0,1,1.1826412677764893,208,1.0,2 +48708,12,1.0,1,1.3326408863067627,209,1.0,2 +48709,12,1.0,1,1.4626392126083374,210,0.0,2 +48710,12,0.0,1,1.4366395473480225,211,1.0,2 +48711,12,0.0,1,1.2456414699554443,212,1.0,2 +48712,12,0.0,1,1.5846376419067383,213,0.0,2 +48713,12,1.0,1,1.854634165763855,214,0.0,2 +48714,12,1.0,1,1.4726390838623047,215,1.0,2 +48715,12,1.0,1,1.197641372680664,216,1.0,2 +48716,12,1.0,1,1.4416394233703613,217,1.0,2 +48717,12,1.0,1,1.600637435913086,218,1.0,2 +48718,12,1.0,1,1.338640809059143,219,1.0,2 +48719,12,1.0,1,1.827634572982788,220,1.0,2 +48720,12,1.0,1,1.6276371479034424,221,0.0,2 +48721,12,0.0,1,2.121635913848877,222,0.0,2 +48722,12,0.0,1,1.7606353759765625,223,0.0,2 +48723,12,1.0,1,2.099635124206543,224,1.0,2 +48724,12,1.0,1,1.262641429901123,225,0.0,2 +48725,12,1.0,1,1.3046412467956543,226,1.0,2 +48726,12,1.0,1,1.5806376934051514,227,0.0,2 +48727,12,1.0,1,1.9776325225830078,228,1.0,2 +48728,12,1.0,1,1.3586405515670776,229,1.0,2 +48729,12,1.0,1,1.552638053894043,230,1.0,2 +48730,12,1.0,1,1.7966349124908447,231,0.0,2 +48731,12,1.0,1,1.8126347064971924,232,0.0,2 +48732,12,0.0,1,1.2866414785385132,233,0.0,2 +48733,12,1.0,1,1.3546406030654907,234,1.0,2 +48734,12,1.0,1,1.3966400623321533,235,0.0,2 +48735,12,0.0,1,1.7116360664367676,236,0.0,2 +48736,12,1.0,1,1.3596404790878296,237,0.0,2 +48737,12,0.0,1,1.161641240119934,238,1.0,2 +48738,12,0.0,1,1.641636848449707,239,0.0,2 +48739,12,0.0,1,1.2996412515640259,240,0.0,2 +48740,12,1.0,1,1.9606328010559082,241,0.0,2 +48741,12,1.0,1,1.8876338005065918,242,1.0,2 +48742,12,1.0,1,1.2186414003372192,243,1.0,2 +48743,12,1.0,1,1.2096413373947144,244,0.0,2 +48744,12,0.0,1,1.6166372299194336,245,0.0,2 +48745,12,1.0,1,1.5466381311416626,246,0.0,2 +48746,12,0.0,1,1.9986323118209839,247,1.0,2 +48747,12,0.0,1,1.295641303062439,248,1.0,2 +48748,12,0.0,1,1.1666412353515625,249,0.0,2 +48749,12,0.0,1,1.3666404485702515,250,0.0,2 +48750,12,1.0,1,1.7546354532241821,251,0.0,2 +48751,12,0.0,1,1.8786338567733765,252,1.0,2 +48752,12,0.0,1,1.877633810043335,253,0.0,2 +48753,12,1.0,1,1.994632363319397,254,0.0,2 +48754,12,0.0,1,2.017632007598877,255,0.0,2 +48755,12,1.0,1,1.4776389598846436,256,0.0,2 +48756,12,1.0,1,1.5386382341384888,257,1.0,2 +48757,12,1.0,1,1.4646391868591309,258,1.0,2 +48758,12,1.0,1,1.597637414932251,259,1.0,2 +48759,12,1.0,1,1.3716403245925903,260,1.0,2 +48760,12,1.0,1,1.551638126373291,261,1.0,2 +48761,12,1.0,1,1.3286409378051758,262,1.0,2 +48762,12,1.0,1,1.3186410665512085,263,0.0,2 +48763,12,0.0,1,1.460639238357544,264,0.0,2 +48764,12,1.0,1,1.9836325645446777,265,1.0,2 +48765,12,1.0,1,1.4466394186019897,266,0.0,2 +48766,12,0.0,1,1.2846415042877197,267,0.0,2 +48767,12,0.0,1,1.4276396036148071,268,0.0,2 +48768,12,1.0,1,1.648636817932129,269,0.0,2 +48769,12,1.0,1,2.111635684967041,270,1.0,2 +48770,12,1.0,1,1.3556405305862427,271,1.0,2 +48771,12,1.0,1,1.3376407623291016,272,0.0,2 +48772,12,1.0,1,1.9316332340240479,273,1.0,2 +48773,12,1.0,1,1.2966413497924805,274,0.0,2 +48774,12,0.0,1,1.8436343669891357,275,0.0,2 +48775,12,1.0,1,1.578637719154358,276,1.0,2 +48776,12,1.0,1,1.3816401958465576,277,1.0,2 +48777,12,1.0,1,1.5176384449005127,278,1.0,2 +48778,12,1.0,1,1.7276358604431152,279,0.0,2 +48779,12,0.0,1,2.2896437644958496,280,0.0,2 +48780,12,1.0,1,1.7126359939575195,281,0.0,2 +48781,12,1.0,1,1.453639268875122,282,1.0,2 +48782,12,0.0,1,1.3706403970718384,283,0.0,2 +48783,12,1.0,1,1.5776376724243164,284,1.0,2 +48784,12,1.0,1,1.3376407623291016,285,0.0,2 +48785,12,0.0,1,1.2226413488388062,286,0.0,2 +48786,12,1.0,1,1.3716403245925903,287,1.0,2 +48787,12,1.0,1,1.274641513824463,288,1.0,2 +48788,12,1.0,1,1.3446407318115234,289,0.0,2 +48789,12,1.0,1,1.7596354484558105,290,1.0,2 +48790,12,1.0,1,1.3296408653259277,291,1.0,2 +48791,12,1.0,1,1.434639573097229,292,1.0,2 +48792,12,1.0,1,1.3496406078338623,293,0.0,2 +48793,12,1.0,1,2.131636619567871,294,1.0,2 +48794,12,1.0,1,1.523638367652893,295,1.0,2 +48795,12,0.0,1,1.2936413288116455,296,1.0,2 +48796,12,0.0,1,1.170641303062439,297,0.0,2 +48797,12,1.0,1,1.5946375131607056,298,1.0,2 +48798,12,1.0,1,1.4196397066116333,299,1.0,2 +48799,12,1.0,1,1.2666414976119995,300,0.0,2 +48800,12,1.0,1,1.4116398096084595,301,0.0,2 +48801,12,0.0,1,1.2776415348052979,302,1.0,2 +48802,12,0.0,1,1.2106413841247559,303,0.0,2 +48803,12,0.0,1,1.391640067100525,304,1.0,2 +48804,12,0.0,1,1.416639804840088,305,0.0,2 +48805,12,1.0,1,1.3226410150527954,306,1.0,2 +48806,12,1.0,1,1.3086411952972412,307,0.0,2 +48807,12,0.0,1,1.3476406335830688,308,0.0,2 +48808,12,0.0,1,1.5296382904052734,309,0.0,2 +48809,12,0.0,1,1.7136359214782715,310,1.0,2 +48810,12,0.0,1,1.3406407833099365,311,0.0,2 +48811,12,0.0,1,2.107635498046875,312,1.0,2 +48812,12,0.0,1,1.4406394958496094,313,1.0,2 +48813,12,0.0,1,1.8926336765289307,314,0.0,2 +48814,12,1.0,1,1.9616327285766602,315,1.0,2 +48815,12,1.0,1,1.6986361742019653,316,1.0,2 +48816,12,1.0,1,1.7096359729766846,317,0.0,2 +48817,12,1.0,1,1.4226397275924683,318,0.0,2 +48818,12,0.0,1,1.2486414909362793,319,0.0,2 +48819,12,1.0,1,1.8376343250274658,320,1.0,2 +48820,12,1.0,1,1.7556354999542236,321,1.0,2 +48821,12,1.0,1,1.383640170097351,322,0.0,2 +48822,12,0.0,1,1.416639804840088,323,0.0,2 +48823,12,1.0,1,1.3116410970687866,324,1.0,2 +48824,12,1.0,1,1.9046335220336914,325,0.0,2 +48825,12,0.0,1,2.357646942138672,326,0.0,2 +48826,12,1.0,1,1.5776376724243164,327,1.0,2 +48827,12,1.0,1,1.4256396293640137,328,1.0,2 +48828,12,1.0,1,1.3286409378051758,329,1.0,2 +48829,12,1.0,1,1.7016360759735107,330,0.0,2 +48830,12,1.0,1,2.1826388835906982,331,0.0,2 +48831,12,0.0,1,1.5696377754211426,332,0.0,2 +48832,12,1.0,1,1.460639238357544,333,1.0,2 +48833,12,0.0,1,1.430639624595642,334,1.0,2 +48834,12,1.0,1,2.3176450729370117,335,1.0,2 +48835,12,0.0,1,1.9346331357955933,336,1.0,2 +48836,12,1.0,1,1.434639573097229,337,1.0,2 +48837,12,0.0,1,1.291641354560852,338,1.0,2 +48838,12,0.0,1,1.4266396760940552,339,0.0,2 +48839,12,1.0,1,1.4466394186019897,340,1.0,2 +48840,12,1.0,1,1.3156410455703735,341,1.0,2 +48841,12,1.0,1,1.2886414527893066,342,0.0,2 +48842,12,0.0,1,1.8126347064971924,343,1.0,2 +48843,12,0.0,1,1.6376368999481201,344,0.0,2 +48844,12,1.0,1,1.783635139465332,345,1.0,2 +48845,12,1.0,1,1.8836338520050049,346,1.0,2 +48846,12,1.0,1,1.6526367664337158,347,1.0,2 +48847,12,1.0,1,1.3566405773162842,348,1.0,2 +48848,12,1.0,1,1.735635757446289,349,1.0,2 +48849,12,1.0,1,1.2726414203643799,350,1.0,2 +48850,12,1.0,1,1.4906388521194458,351,1.0,2 +48851,12,1.0,1,1.2186414003372192,352,0.0,2 +48852,12,1.0,1,1.9516329765319824,353,1.0,2 +48853,12,0.0,1,2.1806387901306152,354,1.0,2 +48854,12,0.0,1,1.3736402988433838,355,0.0,2 +48855,12,1.0,1,1.968632698059082,356,0.0,2 +48856,12,0.0,1,1.1536412239074707,357,0.0,2 +48857,12,0.0,1,1.923633337020874,358,1.0,2 +48858,12,0.0,1,1.457639217376709,359,0.0,2 +48859,12,1.0,1,2.2676429748535156,360,1.0,2 +48860,12,1.0,1,1.6336369514465332,361,0.0,2 +48861,12,1.0,1,1.5116385221481323,362,1.0,2 +48862,12,1.0,1,1.827634572982788,363,0.0,2 +48863,12,0.0,1,1.7166359424591064,364,0.0,2 +48864,12,1.0,1,1.6986361742019653,365,1.0,2 +48865,12,1.0,1,1.298641324043274,366,1.0,2 +48866,12,1.0,1,1.8006348609924316,367,1.0,2 +48867,12,1.0,1,1.3736402988433838,368,1.0,2 +48868,12,1.0,1,1.924633264541626,369,0.0,2 +48869,12,1.0,1,1.5416381359100342,370,0.0,2 +48870,12,0.0,1,1.2176413536071777,371,0.0,2 +48871,12,1.0,1,1.9816324710845947,372,1.0,2 +48872,12,1.0,1,1.2146413326263428,373,1.0,2 +48873,12,1.0,1,1.5566380023956299,374,1.0,2 +48874,12,1.0,1,1.4246397018432617,375,1.0,2 +48875,12,1.0,1,1.4546393156051636,376,1.0,2 +48876,12,0.0,1,1.2236413955688477,377,1.0,2 +48877,12,1.0,1,1.4656391143798828,378,1.0,2 +48878,12,1.0,1,1.431639552116394,379,0.0,2 +48879,12,0.0,1,1.2226413488388062,380,1.0,2 +48880,12,0.0,1,1.2666414976119995,381,1.0,2 +48881,12,0.0,1,1.2146413326263428,382,0.0,2 +48882,12,1.0,1,1.6566367149353027,383,1.0,2 +48883,12,1.0,1,1.3286409378051758,384,1.0,2 +48884,12,1.0,1,1.6086373329162598,385,1.0,2 +48885,12,1.0,1,1.3716403245925903,386,1.0,2 +48886,12,0.0,1,1.5576379299163818,387,1.0,2 +48887,12,0.0,1,1.2806415557861328,388,0.0,2 +48888,12,1.0,1,1.2816414833068848,389,1.0,2 +48889,12,1.0,1,1.7666352987289429,390,1.0,2 +48890,12,1.0,1,1.6306370496749878,391,1.0,2 +48891,12,1.0,1,1.2766414880752563,392,1.0,2 +48892,12,1.0,1,1.3726403713226318,393,1.0,2 +48893,12,1.0,1,1.3116410970687866,394,1.0,2 +48894,12,0.0,1,1.262641429901123,395,1.0,2 +48895,12,0.0,1,1.877633810043335,396,0.0,2 +48896,12,1.0,1,1.2806415557861328,397,1.0,2 +48897,12,1.0,1,1.4716390371322632,398,1.0,2 +48898,12,1.0,1,1.453639268875122,399,1.0,2 +48899,12,0.0,1,1.3946400880813599,400,1.0,2 +48900,12,1.0,1,1.6596367359161377,401,0.0,2 +48901,12,0.0,1,1.4596391916275024,402,0.0,2 +48902,12,0.0,1,1.6096372604370117,403,0.0,2 +48903,12,1.0,1,1.5946375131607056,404,0.0,2 +48904,12,1.0,1,1.4886388778686523,405,0.0,2 +48905,12,1.0,1,1.6526367664337158,406,1.0,2 +48906,12,1.0,1,1.6026374101638794,407,0.0,2 +48907,12,1.0,1,1.4276396036148071,408,1.0,2 +48908,12,1.0,1,1.4026399850845337,409,0.0,2 +48909,12,1.0,1,1.6646366119384766,410,0.0,2 +48910,12,1.0,1,1.6276371479034424,411,1.0,2 +48911,12,1.0,1,1.8486342430114746,412,1.0,2 +48912,12,1.0,1,1.8056347370147705,413,1.0,2 +48913,12,1.0,1,1.2826415300369263,414,1.0,2 +48914,12,1.0,1,1.5506380796432495,415,1.0,2 +48915,12,0.0,1,1.3556405305862427,416,0.0,2 +48916,12,1.0,1,1.2396414279937744,417,1.0,2 +48917,12,1.0,1,1.4366395473480225,418,0.0,2 +48918,12,1.0,1,1.6796364784240723,419,1.0,2 +48919,12,1.0,1,1.7426356077194214,420,1.0,2 +48920,12,1.0,1,1.3346408605575562,421,1.0,2 +48921,12,1.0,1,1.5566380023956299,422,0.0,2 +48922,12,0.0,1,1.4696390628814697,423,0.0,2 +48923,12,0.0,1,1.9436330795288086,424,1.0,2 +48924,12,0.0,1,1.1756412982940674,425,0.0,2 +48925,12,1.0,1,1.361640453338623,426,0.0,2 +48926,12,0.0,1,2.34364652633667,427,0.0,2 +48927,12,0.0,1,2.2826435565948486,428,1.0,2 +48928,12,0.0,1,1.5226384401321411,429,1.0,2 +48929,12,0.0,1,1.2586414813995361,430,1.0,2 +48930,12,0.0,1,1.5396382808685303,431,0.0,2 +48931,12,0.0,1,2.0026321411132812,432,0.0,2 +48932,12,1.0,1,1.8606340885162354,433,1.0,2 +48933,12,1.0,1,1.6596367359161377,434,1.0,2 +48934,12,1.0,1,1.3346408605575562,435,1.0,2 +48935,12,0.0,1,1.192641258239746,436,0.0,2 +48936,12,1.0,1,1.3926401138305664,437,1.0,2 +48937,12,1.0,1,1.5186384916305542,438,1.0,2 +48938,12,1.0,1,2.131636619567871,439,0.0,2 +48939,12,0.0,1,1.3736402988433838,440,1.0,2 +48940,12,0.0,1,1.207641363143921,441,1.0,2 +48941,12,0.0,1,1.8936336040496826,442,0.0,2 +48942,12,0.0,1,1.2516413927078247,443,0.0,2 +48943,12,1.0,1,2.1786386966705322,444,1.0,2 +48944,12,1.0,1,1.338640809059143,445,0.0,2 +48945,12,0.0,1,1.4936387538909912,446,0.0,2 +48946,12,0.0,1,1.3046412467956543,447,1.0,2 +48947,12,1.0,1,1.3086411952972412,448,1.0,2 +48948,12,0.0,1,1.390640139579773,449,0.0,2 +48949,12,1.0,1,1.9886324405670166,450,0.0,2 +48950,12,0.0,1,1.921633243560791,451,0.0,2 +48951,12,0.0,1,1.96763277053833,452,1.0,2 +48952,12,0.0,1,1.3056411743164062,453,0.0,2 +48953,12,0.0,1,1.599637508392334,454,1.0,2 +48954,12,1.0,1,1.5406382083892822,455,0.0,2 +48955,12,0.0,1,1.170641303062439,456,0.0,2 +48956,12,1.0,1,1.9766325950622559,457,0.0,2 +48957,12,0.0,1,1.5596380233764648,458,1.0,2 +48958,12,0.0,1,1.2446414232254028,459,1.0,2 +48959,12,1.0,1,1.5106385946273804,460,0.0,2 +48960,12,0.0,1,1.391640067100525,461,1.0,2 +48961,12,0.0,1,1.2196413278579712,462,1.0,2 +48962,12,0.0,1,1.5246384143829346,463,1.0,2 +48963,12,0.0,1,1.3576405048370361,464,0.0,2 +48964,12,0.0,1,1.2536414861679077,465,1.0,2 +48965,12,0.0,1,1.3986400365829468,466,1.0,2 +48966,12,0.0,1,1.335640788078308,467,1.0,2 +48967,12,0.0,1,1.3256409168243408,468,0.0,2 +48968,12,0.0,1,1.600637435913086,469,0.0,2 +48969,12,1.0,1,1.9886324405670166,470,1.0,2 +48970,12,1.0,1,1.3516405820846558,471,0.0,2 +48971,12,0.0,1,1.5866376161575317,472,1.0,2 +48972,12,0.0,1,1.1596412658691406,473,0.0,2 +48973,12,1.0,1,1.7766351699829102,474,1.0,2 +48974,12,1.0,1,1.6846363544464111,475,1.0,2 +48975,12,1.0,1,1.876633882522583,476,1.0,2 +48976,12,0.0,1,1.3416407108306885,477,0.0,2 +48977,12,1.0,1,1.4196397066116333,478,1.0,2 +48978,12,1.0,1,1.3986400365829468,479,0.0,2 +48979,12,1.0,1,1.4816389083862305,480,0.0,2 +48980,12,1.0,1,1.7526354789733887,481,1.0,2 +48981,12,1.0,1,1.7236359119415283,482,1.0,2 +48982,12,1.0,1,1.4216396808624268,483,1.0,2 +48983,12,1.0,1,1.3936400413513184,484,1.0,2 +48984,12,1.0,1,1.2826415300369263,485,1.0,2 +48985,12,1.0,1,1.3256409168243408,486,0.0,2 +48986,12,0.0,1,1.5326383113861084,487,1.0,2 +48987,12,0.0,1,1.3696403503417969,488,1.0,2 +48988,12,0.0,1,1.228641390800476,489,0.0,2 +48989,12,0.0,1,2.0026321411132812,490,0.0,2 +48990,12,0.0,1,1.201641321182251,491,0.0,2 +48991,12,0.0,1,1.335640788078308,492,0.0,2 +48992,12,1.0,1,2.071633815765381,493,1.0,2 +48993,12,1.0,1,2.131636619567871,494,1.0,2 +48994,12,1.0,1,1.4556392431259155,495,0.0,2 +48995,12,0.0,1,1.4806389808654785,496,0.0,2 +48996,12,1.0,1,1.9306331872940063,497,0.0,2 +48997,12,1.0,1,1.4116398096084595,498,1.0,2 +48998,12,1.0,1,1.320641040802002,499,0.0,2 +48999,12,1.0,1,1.6156373023986816,500,1.0,2 +49000,12,0.0,2,1.6466368436813354,1,0.0,2 +49001,12,0.0,2,1.2966413497924805,2,0.0,2 +49002,12,1.0,2,1.2826415300369263,3,0.0,2 +49003,12,0.0,2,1.4376394748687744,4,0.0,2 +49004,12,1.0,2,1.3066412210464478,5,1.0,2 +49005,12,1.0,2,1.597637414932251,6,1.0,2 +49006,12,1.0,2,2.1926393508911133,7,0.0,2 +49007,12,0.0,2,1.2856414318084717,8,1.0,2 +49008,12,0.0,2,1.7746351957321167,9,1.0,2 +49009,12,1.0,2,1.457639217376709,10,1.0,2 +49010,12,1.0,2,1.6316370964050293,11,1.0,2 +49011,12,1.0,2,1.434639573097229,12,0.0,2 +49012,12,0.0,2,1.4216396808624268,13,1.0,2 +49013,12,0.0,2,1.7116360664367676,14,1.0,2 +49014,12,0.0,2,1.3796402215957642,15,0.0,2 +49015,12,1.0,2,1.7906349897384644,16,0.0,2 +49016,12,0.0,2,1.523638367652893,17,0.0,2 +49017,12,0.0,2,1.3496406078338623,18,0.0,2 +49018,12,0.0,2,1.4246397018432617,19,0.0,2 +49019,12,1.0,2,1.8146346807479858,20,1.0,2 +49020,12,1.0,2,1.781635046005249,21,1.0,2 +49021,12,1.0,2,1.2066413164138794,22,1.0,2 +49022,12,1.0,2,1.3256409168243408,23,0.0,2 +49023,12,0.0,2,1.4116398096084595,24,0.0,2 +49024,12,0.0,2,1.6246371269226074,25,1.0,2 +49025,12,0.0,2,1.3516405820846558,26,1.0,2 +49026,12,0.0,2,2.0546329021453857,27,1.0,2 +49027,12,0.0,2,1.4396394491195679,28,0.0,2 +49028,12,0.0,2,1.9116334915161133,29,1.0,2 +49029,12,0.0,2,1.259641408920288,30,1.0,2 +49030,12,0.0,2,1.5326383113861084,31,0.0,2 +49031,12,0.0,2,1.201641321182251,32,0.0,2 +49032,12,1.0,2,1.3066412210464478,33,0.0,2 +49033,12,1.0,2,1.831634521484375,34,0.0,2 +49034,12,0.0,2,1.850634217262268,35,0.0,2 +49035,12,1.0,2,2.0306320190429688,36,1.0,2 +49036,12,0.0,2,1.1496412754058838,37,0.0,2 +49037,12,1.0,2,1.4986387491226196,38,1.0,2 +49038,12,1.0,2,1.387640118598938,39,1.0,2 +49039,12,1.0,2,1.1626412868499756,40,1.0,2 +49040,12,1.0,2,1.2606414556503296,41,0.0,2 +49041,12,1.0,2,1.7136359214782715,42,1.0,2 +49042,12,1.0,2,1.5206384658813477,43,0.0,2 +49043,12,1.0,2,1.7216358184814453,44,1.0,2 +49044,12,1.0,2,1.2226413488388062,45,1.0,2 +49045,12,1.0,2,1.3826402425765991,46,0.0,2 +49046,12,1.0,2,1.3056411743164062,47,1.0,2 +49047,12,1.0,2,1.2606414556503296,48,0.0,2 +49048,12,1.0,2,1.8486342430114746,49,1.0,2 +49049,12,1.0,2,1.5506380796432495,50,1.0,2 +49050,12,1.0,2,1.8846337795257568,51,1.0,2 +49051,12,1.0,2,1.3126411437988281,52,1.0,2 +49052,12,1.0,2,1.3696403503417969,53,1.0,2 +49053,12,1.0,2,1.5686378479003906,54,1.0,2 +49054,12,1.0,2,1.2676414251327515,55,1.0,2 +49055,12,1.0,2,1.6506367921829224,56,1.0,2 +49056,12,1.0,2,1.6636366844177246,57,0.0,2 +49057,12,1.0,2,2.080634117126465,58,1.0,2 +49058,12,1.0,2,2.0416321754455566,59,1.0,2 +49059,12,1.0,2,1.268641471862793,60,1.0,2 +49060,12,1.0,2,1.5396382808685303,61,0.0,2 +49061,12,1.0,2,1.758635401725769,62,1.0,2 +49062,12,1.0,2,1.777635097503662,63,1.0,2 +49063,12,1.0,2,1.2136414051055908,64,1.0,2 +49064,12,1.0,2,1.3726403713226318,65,1.0,2 +49065,12,1.0,2,1.4676390886306763,66,1.0,2 +49066,12,1.0,2,1.456639289855957,67,1.0,2 +49067,12,1.0,2,1.3626405000686646,68,1.0,2 +49068,12,1.0,2,1.4646391868591309,69,1.0,2 +49069,12,1.0,2,1.5066386461257935,70,0.0,2 +49070,12,0.0,2,1.5386382341384888,71,0.0,2 +49071,12,0.0,2,1.7496354579925537,72,0.0,2 +49072,12,1.0,2,1.7546354532241821,73,1.0,2 +49073,12,1.0,2,1.5346382856369019,74,1.0,2 +49074,12,1.0,2,1.8496341705322266,75,1.0,2 +49075,12,1.0,2,1.4496393203735352,76,1.0,2 +49076,12,1.0,2,1.3676403760910034,77,0.0,2 +49077,12,0.0,2,1.3256409168243408,78,0.0,2 +49078,12,1.0,2,2.055633068084717,79,1.0,2 +49079,12,1.0,2,1.47563898563385,80,1.0,2 +49080,12,1.0,2,1.6376368999481201,81,1.0,2 +49081,12,1.0,2,1.5216383934020996,82,1.0,2 +49082,12,1.0,2,1.194641351699829,83,0.0,2 +49083,12,0.0,2,2.2106401920318604,84,0.0,2 +49084,12,0.0,2,1.3976399898529053,85,1.0,2 +49085,12,0.0,2,1.2426414489746094,86,1.0,2 +49086,12,0.0,2,1.2196413278579712,87,1.0,2 +49087,12,0.0,2,1.3846402168273926,88,1.0,2 +49088,12,0.0,2,1.3446407318115234,89,0.0,2 +49089,12,1.0,2,2.011632204055786,90,0.0,2 +49090,12,0.0,2,2.2096400260925293,91,0.0,2 +49091,12,0.0,2,1.6326370239257812,92,1.0,2 +49092,12,0.0,2,1.136641263961792,93,1.0,2 +49093,12,0.0,2,1.167641282081604,94,0.0,2 +49094,12,0.0,2,1.578637719154358,95,1.0,2 +49095,12,0.0,2,1.688636302947998,96,1.0,2 +49096,12,0.0,2,1.3766403198242188,97,1.0,2 +49097,12,0.0,2,1.338640809059143,98,0.0,2 +49098,12,0.0,2,1.4766390323638916,99,1.0,2 +49099,12,0.0,2,1.294641375541687,100,0.0,2 +49100,12,1.0,2,1.7796351909637451,101,1.0,2 +49101,12,0.0,2,1.7696352005004883,102,0.0,2 +49102,12,1.0,2,1.6906362771987915,103,1.0,2 +49103,12,0.0,2,1.8846337795257568,104,1.0,2 +49104,12,1.0,2,1.9566328525543213,105,0.0,2 +49105,12,0.0,2,1.2706414461135864,106,1.0,2 +49106,12,0.0,2,1.2466413974761963,107,1.0,2 +49107,12,0.0,2,1.435639500617981,108,1.0,2 +49108,12,0.0,2,1.4286396503448486,109,0.0,2 +49109,12,0.0,2,1.662636637687683,110,0.0,2 +49110,12,1.0,2,1.4686391353607178,111,1.0,2 +49111,12,1.0,2,1.530638337135315,112,0.0,2 +49112,12,1.0,2,2.0696334838867188,113,1.0,2 +49113,12,1.0,2,1.7796351909637451,114,0.0,2 +49114,12,1.0,2,2.601658344268799,115,1.0,2 +49115,12,1.0,2,1.346640706062317,116,1.0,2 +49116,12,1.0,2,1.7686352729797363,117,1.0,2 +49117,12,1.0,2,1.2976412773132324,118,1.0,2 +49118,12,1.0,2,1.1606411933898926,119,0.0,2 +49119,12,1.0,2,1.7506355047225952,120,0.0,2 +49120,12,0.0,2,2.351646900177002,121,1.0,2 +49121,12,0.0,2,1.435639500617981,122,1.0,2 +49122,12,0.0,2,1.2726414203643799,123,0.0,2 +49123,12,0.0,2,1.69563627243042,124,0.0,2 +49124,12,0.0,2,1.2266414165496826,125,0.0,2 +49125,12,0.0,2,1.6396369934082031,126,1.0,2 +49126,12,0.0,2,1.4366395473480225,127,0.0,2 +49127,12,1.0,2,1.8566341400146484,128,1.0,2 +49128,12,1.0,2,1.320641040802002,129,0.0,2 +49129,12,1.0,2,1.2166414260864258,130,1.0,2 +49130,12,1.0,2,1.551638126373291,131,1.0,2 +49131,12,1.0,2,1.8716340065002441,132,0.0,2 +49132,12,0.0,2,1.335640788078308,133,0.0,2 +49133,12,0.0,2,1.6266371011734009,134,0.0,2 +49134,12,1.0,2,1.6346369981765747,135,1.0,2 +49135,12,1.0,2,1.6686365604400635,136,0.0,2 +49136,12,0.0,2,1.3046412467956543,137,1.0,2 +49137,12,0.0,2,1.137641191482544,138,0.0,2 +49138,12,0.0,2,2.338646173477173,139,0.0,2 +49139,12,0.0,2,1.5666378736495972,140,0.0,2 +49140,12,1.0,2,1.431639552116394,141,0.0,2 +49141,12,0.0,2,2.335646152496338,142,1.0,2 +49142,12,0.0,2,1.1666412353515625,143,0.0,2 +49143,12,0.0,2,1.3236409425735474,144,1.0,2 +49144,12,0.0,2,1.1826412677764893,145,0.0,2 +49145,12,0.0,2,2.4876532554626465,146,1.0,2 +49146,12,0.0,2,1.271641492843628,147,0.0,2 +49147,12,1.0,2,1.3526406288146973,148,0.0,2 +49148,12,1.0,2,1.2266414165496826,149,1.0,2 +49149,12,1.0,2,1.3516405820846558,150,1.0,2 +49150,12,1.0,2,1.3126411437988281,151,1.0,2 +49151,12,1.0,2,1.714635968208313,152,1.0,2 +49152,12,1.0,2,1.9446330070495605,153,0.0,2 +49153,12,1.0,2,1.8056347370147705,154,0.0,2 +49154,12,1.0,2,1.5576379299163818,155,1.0,2 +49155,12,1.0,2,1.2836414575576782,156,1.0,2 +49156,12,1.0,2,1.3276408910751343,157,1.0,2 +49157,12,1.0,2,1.3586405515670776,158,0.0,2 +49158,12,0.0,2,1.6556367874145508,159,0.0,2 +49159,12,0.0,2,1.1866413354873657,160,0.0,2 +49160,12,0.0,2,1.8426343202590942,161,0.0,2 +49161,12,1.0,2,1.5656378269195557,162,0.0,2 +49162,12,1.0,2,1.2446414232254028,163,0.0,2 +49163,12,0.0,2,1.7186359167099,164,0.0,2 +49164,12,1.0,2,1.733635663986206,165,0.0,2 +49165,12,1.0,2,1.3746403455734253,166,1.0,2 +49166,12,1.0,2,1.2186414003372192,167,0.0,2 +49167,12,1.0,2,2.009632110595703,168,0.0,2 +49168,12,1.0,2,1.8136346340179443,169,0.0,2 +49169,12,0.0,2,1.1826412677764893,170,0.0,2 +49170,12,0.0,2,1.762635350227356,171,1.0,2 +49171,12,0.0,2,1.5066386461257935,172,0.0,2 +49172,12,1.0,2,1.4116398096084595,173,0.0,2 +49173,12,1.0,2,1.6736364364624023,174,1.0,2 +49174,12,1.0,2,1.1136411428451538,175,1.0,2 +49175,12,1.0,2,1.416639804840088,176,1.0,2 +49176,12,1.0,2,1.3106411695480347,177,1.0,2 +49177,12,1.0,2,1.2146413326263428,178,0.0,2 +49178,12,1.0,2,2.081634044647217,179,1.0,2 +49179,12,1.0,2,1.321640968322754,180,1.0,2 +49180,12,1.0,2,1.545638084411621,181,1.0,2 +49181,12,1.0,2,1.4516392946243286,182,1.0,2 +49182,12,1.0,2,1.4226397275924683,183,0.0,2 +49183,12,1.0,2,1.460639238357544,184,0.0,2 +49184,12,1.0,2,1.7236359119415283,185,1.0,2 +49185,12,1.0,2,1.4286396503448486,186,0.0,2 +49186,12,1.0,2,2.005632162094116,187,0.0,2 +49187,12,0.0,2,1.4656391143798828,188,0.0,2 +49188,12,0.0,2,2.0656332969665527,189,1.0,2 +49189,12,0.0,2,1.2516413927078247,190,1.0,2 +49190,12,0.0,2,1.6506367921829224,191,1.0,2 +49191,12,0.0,2,1.1446411609649658,192,0.0,2 +49192,12,0.0,2,1.52763831615448,193,0.0,2 +49193,12,1.0,2,1.478639006614685,194,1.0,2 +49194,12,1.0,2,1.1726412773132324,195,0.0,2 +49195,12,1.0,2,2.082634210586548,196,0.0,2 +49196,12,0.0,2,1.777635097503662,197,1.0,2 +49197,12,0.0,2,1.3706403970718384,198,0.0,2 +49198,12,0.0,2,1.2226413488388062,199,1.0,2 +49199,12,0.0,2,1.4816389083862305,200,1.0,2 +49200,12,0.0,2,1.4986387491226196,201,1.0,2 +49201,12,0.0,2,1.5416381359100342,202,0.0,2 +49202,12,0.0,2,1.596637487411499,203,0.0,2 +49203,12,0.0,2,1.164641261100769,204,0.0,2 +49204,12,0.0,2,1.3066412210464478,205,0.0,2 +49205,12,0.0,2,1.2876414060592651,206,0.0,2 +49206,12,0.0,2,1.3586405515670776,207,1.0,2 +49207,12,0.0,2,1.4416394233703613,208,1.0,2 +49208,12,0.0,2,1.6756365299224854,209,0.0,2 +49209,12,0.0,2,1.6206371784210205,210,0.0,2 +49210,12,1.0,2,1.3926401138305664,211,1.0,2 +49211,12,1.0,2,1.6236371994018555,212,0.0,2 +49212,12,0.0,2,1.6756365299224854,213,0.0,2 +49213,12,1.0,2,2.0526328086853027,214,1.0,2 +49214,12,1.0,2,1.3226410150527954,215,1.0,2 +49215,12,1.0,2,1.4036399126052856,216,1.0,2 +49216,12,1.0,2,1.3406407833099365,217,1.0,2 +49217,12,0.0,2,1.361640453338623,218,0.0,2 +49218,12,1.0,2,1.4866389036178589,219,0.0,2 +49219,12,0.0,2,2.2936439514160156,220,0.0,2 +49220,12,0.0,2,1.6906362771987915,221,1.0,2 +49221,12,0.0,2,1.2106413841247559,222,1.0,2 +49222,12,0.0,2,1.197641372680664,223,0.0,2 +49223,12,1.0,2,2.016632080078125,224,1.0,2 +49224,12,1.0,2,1.7916350364685059,225,1.0,2 +49225,12,1.0,2,1.192641258239746,226,1.0,2 +49226,12,1.0,2,1.4416394233703613,227,1.0,2 +49227,12,1.0,2,1.5186384916305542,228,1.0,2 +49228,12,1.0,2,1.4586392641067505,229,0.0,2 +49229,12,0.0,2,1.6066373586654663,230,0.0,2 +49230,12,0.0,2,1.3066412210464478,231,0.0,2 +49231,12,1.0,2,1.4336395263671875,232,1.0,2 +49232,12,1.0,2,1.827634572982788,233,1.0,2 +49233,12,1.0,2,1.2536414861679077,234,0.0,2 +49234,12,1.0,2,1.4976387023925781,235,0.0,2 +49235,12,0.0,2,1.4216396808624268,236,0.0,2 +49236,12,0.0,2,1.8526341915130615,237,1.0,2 +49237,12,0.0,2,1.3846402168273926,238,0.0,2 +49238,12,1.0,2,1.3856401443481445,239,0.0,2 +49239,12,0.0,2,1.0866411924362183,240,0.0,2 +49240,12,0.0,2,2.155637741088867,241,0.0,2 +49241,12,0.0,2,1.5196384191513062,242,1.0,2 +49242,12,0.0,2,1.1966413259506226,243,0.0,2 +49243,12,0.0,2,1.5886375904083252,244,0.0,2 +49244,12,0.0,2,1.5506380796432495,245,1.0,2 +49245,12,0.0,2,1.2886414527893066,246,1.0,2 +49246,12,0.0,2,1.4986387491226196,247,0.0,2 +49247,12,0.0,2,1.140641212463379,248,0.0,2 +49248,12,1.0,2,1.6246371269226074,249,1.0,2 +49249,12,1.0,2,1.942633032798767,250,0.0,2 +49250,12,0.0,2,1.3966400623321533,251,1.0,2 +49251,12,0.0,2,1.3926401138305664,252,0.0,2 +49252,12,0.0,2,1.3346408605575562,253,0.0,2 +49253,12,1.0,2,2.162637948989868,254,0.0,2 +49254,12,0.0,2,1.692636251449585,255,1.0,2 +49255,12,0.0,2,1.2146413326263428,256,0.0,2 +49256,12,0.0,2,1.390640139579773,257,0.0,2 +49257,12,0.0,2,1.548638105392456,258,0.0,2 +49258,12,1.0,2,1.551638126373291,259,1.0,2 +49259,12,1.0,2,1.6506367921829224,260,0.0,2 +49260,12,0.0,2,1.4266396760940552,261,0.0,2 +49261,12,0.0,2,2.017632007598877,262,0.0,2 +49262,12,0.0,2,1.924633264541626,263,0.0,2 +49263,12,1.0,2,1.36564040184021,264,1.0,2 +49264,12,1.0,2,1.3256409168243408,265,0.0,2 +49265,12,0.0,2,1.3726403713226318,266,1.0,2 +49266,12,0.0,2,1.2636414766311646,267,0.0,2 +49267,12,0.0,2,1.4516392946243286,268,1.0,2 +49268,12,0.0,2,1.2836414575576782,269,1.0,2 +49269,12,0.0,2,1.4686391353607178,270,1.0,2 +49270,12,0.0,2,1.3296408653259277,271,0.0,2 +49271,12,1.0,2,2.0306320190429688,272,1.0,2 +49272,12,1.0,2,1.6026374101638794,273,1.0,2 +49273,12,1.0,2,1.4966387748718262,274,0.0,2 +49274,12,0.0,2,2.059633255004883,275,1.0,2 +49275,12,0.0,2,1.127641201019287,276,1.0,2 +49276,12,0.0,2,1.274641513824463,277,1.0,2 +49277,12,0.0,2,1.2536414861679077,278,1.0,2 +49278,12,0.0,2,1.2026413679122925,279,0.0,2 +49279,12,1.0,2,2.2936439514160156,280,0.0,2 +49280,12,1.0,2,1.9036335945129395,281,0.0,2 +49281,12,1.0,2,2.008632183074951,282,0.0,2 +49282,12,1.0,2,1.7306357622146606,283,0.0,2 +49283,12,0.0,2,1.3086411952972412,284,1.0,2 +49284,12,0.0,2,1.3146411180496216,285,0.0,2 +49285,12,0.0,2,1.3346408605575562,286,1.0,2 +49286,12,0.0,2,1.4816389083862305,287,1.0,2 +49287,12,0.0,2,1.2766414880752563,288,0.0,2 +49288,12,1.0,2,1.8236346244812012,289,0.0,2 +49289,12,0.0,2,1.946632981300354,290,1.0,2 +49290,12,0.0,2,1.549638032913208,291,1.0,2 +49291,12,0.0,2,1.3286409378051758,292,1.0,2 +49292,12,0.0,2,1.7076361179351807,293,0.0,2 +49293,12,0.0,2,1.3776402473449707,294,0.0,2 +49294,12,1.0,2,1.7956349849700928,295,0.0,2 +49295,12,1.0,2,1.4046399593353271,296,0.0,2 +49296,12,0.0,2,1.360640525817871,297,0.0,2 +49297,12,0.0,2,1.4336395263671875,298,0.0,2 +49298,12,0.0,2,1.7096359729766846,299,0.0,2 +49299,12,0.0,2,1.8216345310211182,300,0.0,2 +49300,12,0.0,2,1.2186414003372192,301,1.0,2 +49301,12,0.0,2,1.9786325693130493,302,0.0,2 +49302,12,1.0,2,1.8216345310211182,303,1.0,2 +49303,12,1.0,2,1.4936387538909912,304,1.0,2 +49304,12,1.0,2,1.2296414375305176,305,1.0,2 +49305,12,0.0,2,1.3286409378051758,306,0.0,2 +49306,12,1.0,2,1.434639573097229,307,0.0,2 +49307,12,1.0,2,1.3766403198242188,308,1.0,2 +49308,12,0.0,2,1.3316408395767212,309,0.0,2 +49309,12,1.0,2,1.7566354274749756,310,1.0,2 +49310,12,1.0,2,1.3666404485702515,311,1.0,2 +49311,12,1.0,2,1.6516368389129639,312,0.0,2 +49312,12,0.0,2,1.2466413974761963,313,0.0,2 +49313,12,0.0,2,1.8846337795257568,314,0.0,2 +49314,12,0.0,2,1.858634114265442,315,0.0,2 +49315,12,0.0,2,1.994632363319397,316,1.0,2 +49316,12,0.0,2,1.2666414976119995,317,0.0,2 +49317,12,0.0,2,1.3716403245925903,318,0.0,2 +49318,12,1.0,2,1.5716378688812256,319,1.0,2 +49319,12,1.0,2,1.4876388311386108,320,0.0,2 +49320,12,1.0,2,1.6746364831924438,321,1.0,2 +49321,12,1.0,2,1.4706391096115112,322,1.0,2 +49322,12,1.0,2,1.346640706062317,323,1.0,2 +49323,12,1.0,2,1.5736377239227295,324,1.0,2 +49324,12,0.0,2,1.1886413097381592,325,1.0,2 +49325,12,0.0,2,1.5886375904083252,326,0.0,2 +49326,12,1.0,2,1.555638074874878,327,0.0,2 +49327,12,1.0,2,1.383640170097351,328,1.0,2 +49328,12,1.0,2,1.3416407108306885,329,1.0,2 +49329,12,1.0,2,1.743635654449463,330,0.0,2 +49330,12,1.0,2,1.5646378993988037,331,1.0,2 +49331,12,1.0,2,1.438639521598816,332,1.0,2 +49332,12,0.0,2,2.0026321411132812,333,0.0,2 +49333,12,1.0,2,1.457639217376709,334,1.0,2 +49334,12,1.0,2,1.1966413259506226,335,0.0,2 +49335,12,1.0,2,1.4016399383544922,336,1.0,2 +49336,12,0.0,2,1.4376394748687744,337,0.0,2 +49337,12,1.0,2,1.4016399383544922,338,1.0,2 +49338,12,1.0,2,1.825634479522705,339,1.0,2 +49339,12,1.0,2,1.4886388778686523,340,0.0,2 +49340,12,0.0,2,1.3676403760910034,341,0.0,2 +49341,12,1.0,2,1.456639289855957,342,0.0,2 +49342,12,0.0,2,2.009632110595703,343,1.0,2 +49343,12,0.0,2,1.2426414489746094,344,1.0,2 +49344,12,0.0,2,1.3126411437988281,345,0.0,2 +49345,12,0.0,2,1.431639552116394,346,1.0,2 +49346,12,0.0,2,1.4186397790908813,347,1.0,2 +49347,12,0.0,2,1.295641303062439,348,1.0,2 +49348,12,0.0,2,1.238641381263733,349,1.0,2 +49349,12,0.0,2,1.2926414012908936,350,0.0,2 +49350,12,0.0,2,1.6646366119384766,351,0.0,2 +49351,12,0.0,2,1.7826350927352905,352,0.0,2 +49352,12,0.0,2,1.4656391143798828,353,1.0,2 +49353,12,1.0,2,1.5286383628845215,354,1.0,2 +49354,12,0.0,2,1.9416329860687256,355,0.0,2 +49355,12,1.0,2,1.9136333465576172,356,0.0,2 +49356,12,0.0,2,1.530638337135315,357,0.0,2 +49357,12,0.0,2,1.6676366329193115,358,1.0,2 +49358,12,0.0,2,1.4516392946243286,359,1.0,2 +49359,12,0.0,2,1.2706414461135864,360,0.0,2 +49360,12,1.0,2,2.345646381378174,361,0.0,2 +49361,12,1.0,2,1.3496406078338623,362,1.0,2 +49362,12,1.0,2,1.4286396503448486,363,1.0,2 +49363,12,1.0,2,1.829634428024292,364,1.0,2 +49364,12,1.0,2,1.4746390581130981,365,1.0,2 +49365,12,1.0,2,1.2826415300369263,366,0.0,2 +49366,12,1.0,2,1.262641429901123,367,1.0,2 +49367,12,1.0,2,1.36564040184021,368,1.0,2 +49368,12,1.0,2,1.5356383323669434,369,1.0,2 +49369,12,1.0,2,1.7696352005004883,370,0.0,2 +49370,12,0.0,2,1.2776415348052979,371,1.0,2 +49371,12,0.0,2,1.294641375541687,372,1.0,2 +49372,12,0.0,2,1.2406413555145264,373,0.0,2 +49373,12,1.0,2,1.8656339645385742,374,0.0,2 +49374,12,0.0,2,1.3026412725448608,375,0.0,2 +49375,12,0.0,2,1.2126413583755493,376,1.0,2 +49376,12,0.0,2,1.6426368951797485,377,1.0,2 +49377,12,0.0,2,1.4806389808654785,378,1.0,2 +49378,12,0.0,2,1.457639217376709,379,1.0,2 +49379,12,0.0,2,1.531638264656067,380,0.0,2 +49380,12,0.0,2,1.4776389598846436,381,0.0,2 +49381,12,0.0,2,1.3056411743164062,382,0.0,2 +49382,12,0.0,2,1.387640118598938,383,0.0,2 +49383,12,1.0,2,1.3986400365829468,384,0.0,2 +49384,12,1.0,2,2.0536327362060547,385,1.0,2 +49385,12,1.0,2,1.2876414060592651,386,0.0,2 +49386,12,0.0,2,1.5136384963989258,387,1.0,2 +49387,12,0.0,2,1.5836377143859863,388,1.0,2 +49388,12,0.0,2,1.8036348819732666,389,0.0,2 +49389,12,0.0,2,1.2846415042877197,390,1.0,2 +49390,12,0.0,2,1.261641502380371,391,0.0,2 +49391,12,0.0,2,1.405639886856079,392,1.0,2 +49392,12,0.0,2,1.194641351699829,393,1.0,2 +49393,12,0.0,2,1.2736414670944214,394,0.0,2 +49394,12,1.0,2,2.0396323204040527,395,1.0,2 +49395,12,1.0,2,2.0346319675445557,396,1.0,2 +49396,12,1.0,2,1.4636391401290894,397,1.0,2 +49397,12,1.0,2,1.5716378688812256,398,1.0,2 +49398,12,1.0,2,1.1586412191390991,399,1.0,2 +49399,12,1.0,2,1.291641354560852,400,1.0,2 +49400,12,0.0,2,1.4736390113830566,401,1.0,2 +49401,12,1.0,2,1.194641351699829,402,1.0,2 +49402,12,0.0,2,1.9636328220367432,403,1.0,2 +49403,12,0.0,2,1.9146333932876587,404,0.0,2 +49404,12,1.0,2,1.6216371059417725,405,0.0,2 +49405,12,1.0,2,1.7386356592178345,406,1.0,2 +49406,12,1.0,2,1.235641360282898,407,1.0,2 +49407,12,1.0,2,1.435639500617981,408,0.0,2 +49408,12,1.0,2,1.5226384401321411,409,0.0,2 +49409,12,0.0,2,1.192641258239746,410,1.0,2 +49410,12,1.0,2,1.4546393156051636,411,0.0,2 +49411,12,0.0,2,1.237641453742981,412,0.0,2 +49412,12,0.0,2,1.5606379508972168,413,0.0,2 +49413,12,1.0,2,1.4546393156051636,414,0.0,2 +49414,12,1.0,2,2.163638114929199,415,1.0,2 +49415,12,1.0,2,1.7246358394622803,416,0.0,2 +49416,12,1.0,2,1.4416394233703613,417,1.0,2 +49417,12,1.0,2,1.9036335945129395,418,1.0,2 +49418,12,1.0,2,1.574637770652771,419,1.0,2 +49419,12,1.0,2,1.170641303062439,420,1.0,2 +49420,12,1.0,2,1.4476393461227417,421,1.0,2 +49421,12,1.0,2,1.320641040802002,422,1.0,2 +49422,12,1.0,2,1.4186397790908813,423,1.0,2 +49423,12,1.0,2,1.3226410150527954,424,0.0,2 +49424,12,1.0,2,1.8176345825195312,425,1.0,2 +49425,12,1.0,2,1.4216396808624268,426,0.0,2 +49426,12,0.0,2,1.291641354560852,427,0.0,2 +49427,12,1.0,2,1.4336395263671875,428,1.0,2 +49428,12,1.0,2,1.4686391353607178,429,0.0,2 +49429,12,0.0,2,1.7676353454589844,430,1.0,2 +49430,12,0.0,2,1.127641201019287,431,0.0,2 +49431,12,1.0,2,1.360640525817871,432,1.0,2 +49432,12,1.0,2,1.4746390581130981,433,1.0,2 +49433,12,1.0,2,1.5096385478973389,434,0.0,2 +49434,12,1.0,2,1.4156397581100464,435,0.0,2 +49435,12,0.0,2,2.2746431827545166,436,0.0,2 +49436,12,0.0,2,1.1356412172317505,437,1.0,2 +49437,12,0.0,2,1.3086411952972412,438,0.0,2 +49438,12,0.0,2,1.3346408605575562,439,0.0,2 +49439,12,0.0,2,1.4416394233703613,440,0.0,2 +49440,12,1.0,2,1.6056373119354248,441,0.0,2 +49441,12,0.0,2,1.391640067100525,442,0.0,2 +49442,12,0.0,2,1.6086373329162598,443,1.0,2 +49443,12,0.0,2,1.8556342124938965,444,1.0,2 +49444,12,0.0,2,1.3886401653289795,445,0.0,2 +49445,12,0.0,2,1.7506355047225952,446,1.0,2 +49446,12,0.0,2,1.2636414766311646,447,1.0,2 +49447,12,0.0,2,1.2756414413452148,448,1.0,2 +49448,12,1.0,2,1.597637414932251,449,1.0,2 +49449,12,0.0,2,1.6256370544433594,450,0.0,2 +49450,12,1.0,2,1.8996336460113525,451,1.0,2 +49451,12,1.0,2,1.4466394186019897,452,0.0,2 +49452,12,0.0,2,1.3546406030654907,453,0.0,2 +49453,12,0.0,2,1.548638105392456,454,0.0,2 +49454,12,1.0,2,2.0406322479248047,455,1.0,2 +49455,12,1.0,2,1.2696415185928345,456,1.0,2 +49456,12,1.0,2,1.2666414976119995,457,0.0,2 +49457,12,0.0,2,1.5286383628845215,458,1.0,2 +49458,12,0.0,2,1.7466355562210083,459,1.0,2 +49459,12,0.0,2,1.2926414012908936,460,1.0,2 +49460,12,0.0,2,1.5806376934051514,461,1.0,2 +49461,12,0.0,2,1.2266414165496826,462,1.0,2 +49462,12,0.0,2,1.1846413612365723,463,0.0,2 +49463,12,0.0,2,1.825634479522705,464,0.0,2 +49464,12,0.0,2,1.9646327495574951,465,0.0,2 +49465,12,1.0,2,2.0266318321228027,466,1.0,2 +49466,12,1.0,2,1.9006335735321045,467,1.0,2 +49467,12,1.0,2,1.5396382808685303,468,0.0,2 +49468,12,0.0,2,1.551638126373291,469,0.0,2 +49469,12,0.0,2,1.927633285522461,470,1.0,2 +49470,12,0.0,2,1.34264075756073,471,0.0,2 +49471,12,0.0,2,1.8626340627670288,472,1.0,2 +49472,12,0.0,2,1.161641240119934,473,0.0,2 +49473,12,1.0,2,1.6306370496749878,474,1.0,2 +49474,12,1.0,2,1.500638723373413,475,1.0,2 +49475,12,0.0,2,1.338640809059143,476,0.0,2 +49476,12,1.0,2,1.405639886856079,477,0.0,2 +49477,12,0.0,2,1.5396382808685303,478,1.0,2 +49478,12,0.0,2,1.36564040184021,479,0.0,2 +49479,12,0.0,2,1.2576414346694946,480,0.0,2 +49480,12,0.0,2,1.1846413612365723,481,0.0,2 +49481,12,0.0,2,1.3756402730941772,482,1.0,2 +49482,12,0.0,2,1.3846402168273926,483,1.0,2 +49483,12,0.0,2,1.2096413373947144,484,0.0,2 +49484,12,0.0,2,1.925633192062378,485,0.0,2 +49485,12,0.0,2,1.6326370239257812,486,0.0,2 +49486,12,1.0,2,1.7956349849700928,487,1.0,2 +49487,12,1.0,2,1.6426368951797485,488,0.0,2 +49488,12,1.0,2,1.7446355819702148,489,0.0,2 +49489,12,0.0,2,2.0316319465637207,490,0.0,2 +49490,12,1.0,2,1.5106385946273804,491,1.0,2 +49491,12,1.0,2,1.6646366119384766,492,0.0,2 +49492,12,0.0,2,1.662636637687683,493,1.0,2 +49493,12,0.0,2,1.5426381826400757,494,1.0,2 +49494,12,0.0,2,1.2876414060592651,495,1.0,2 +49495,12,0.0,2,1.2396414279937744,496,0.0,2 +49496,12,0.0,2,1.858634114265442,497,0.0,2 +49497,12,0.0,2,1.3336408138275146,498,1.0,2 +49498,12,0.0,2,1.387640118598938,499,1.0,2 +49499,12,0.0,2,1.3726403713226318,500,0.0,2 +49500,13,0.0,0,1.3320846557617188,1,0.0,2 +49501,13,1.0,0,1.6520805358886719,2,1.0,2 +49502,13,1.0,0,1.5310821533203125,3,1.0,2 +49503,13,1.0,0,1.4890825748443604,4,1.0,2 +49504,13,1.0,0,1.243085265159607,5,1.0,2 +49505,13,1.0,0,1.4290833473205566,6,1.0,2 +49506,13,1.0,0,1.3330845832824707,7,1.0,2 +49507,13,1.0,0,1.6730802059173584,8,0.0,2 +49508,13,1.0,0,1.4810826778411865,9,0.0,2 +49509,13,0.0,0,1.733079433441162,10,0.0,2 +49510,13,1.0,0,1.5370819568634033,11,0.0,2 +49511,13,0.0,0,1.9070773124694824,12,0.0,2 +49512,13,1.0,0,1.3130848407745361,13,1.0,2 +49513,13,1.0,0,1.3510843515396118,14,1.0,2 +49514,13,1.0,0,1.5430819988250732,15,1.0,2 +49515,13,1.0,0,1.740079402923584,16,1.0,2 +49516,13,1.0,0,1.4320833683013916,17,0.0,2 +49517,13,0.0,0,1.555081844329834,18,0.0,2 +49518,13,1.0,0,1.2600853443145752,19,1.0,2 +49519,13,1.0,0,1.236085295677185,20,1.0,2 +49520,13,1.0,0,1.4070836305618286,21,1.0,2 +49521,13,1.0,0,1.2840852737426758,22,1.0,2 +49522,13,1.0,0,1.2250852584838867,23,1.0,2 +49523,13,1.0,0,1.43108332157135,24,1.0,2 +49524,13,1.0,0,1.3510843515396118,25,0.0,2 +49525,13,1.0,0,1.6900800466537476,26,1.0,2 +49526,13,1.0,0,1.294085144996643,27,1.0,2 +49527,13,1.0,0,1.3590842485427856,28,1.0,2 +49528,13,1.0,0,1.3140848875045776,29,1.0,2 +49529,13,1.0,0,1.5410819053649902,30,1.0,2 +49530,13,1.0,0,1.3250846862792969,31,1.0,2 +49531,13,1.0,0,1.3540843725204468,32,1.0,2 +49532,13,1.0,0,1.2040852308273315,33,1.0,2 +49533,13,1.0,0,1.3230847120285034,34,1.0,2 +49534,13,1.0,0,1.1580851078033447,35,0.0,2 +49535,13,1.0,0,1.6550805568695068,36,1.0,2 +49536,13,1.0,0,1.1540851593017578,37,0.0,2 +49537,13,0.0,0,1.1400851011276245,38,0.0,2 +49538,13,1.0,0,1.6050810813903809,39,1.0,2 +49539,13,1.0,0,1.3250846862792969,40,1.0,2 +49540,13,1.0,0,1.2470853328704834,41,1.0,2 +49541,13,1.0,0,1.386083960533142,42,1.0,2 +49542,13,1.0,0,1.6360807418823242,43,1.0,2 +49543,13,1.0,0,1.2450852394104004,44,1.0,2 +49544,13,1.0,0,1.5940812826156616,45,1.0,2 +49545,13,1.0,0,1.3960838317871094,46,1.0,2 +49546,13,1.0,0,1.6830801963806152,47,1.0,2 +49547,13,1.0,0,1.5720815658569336,48,1.0,2 +49548,13,1.0,0,1.4260834455490112,49,1.0,2 +49549,13,1.0,0,1.2710853815078735,50,0.0,2 +49550,13,1.0,0,1.8710777759552002,51,1.0,2 +49551,13,1.0,0,1.2290852069854736,52,1.0,2 +49552,13,1.0,0,1.2550853490829468,53,1.0,2 +49553,13,1.0,0,1.5110822916030884,54,1.0,2 +49554,13,1.0,0,1.3920838832855225,55,1.0,2 +49555,13,1.0,0,1.4540830850601196,56,1.0,2 +49556,13,1.0,0,1.3780840635299683,57,1.0,2 +49557,13,1.0,0,1.3280847072601318,58,1.0,2 +49558,13,1.0,0,1.2340853214263916,59,0.0,2 +49559,13,1.0,0,2.1340808868408203,60,1.0,2 +49560,13,1.0,0,1.4650828838348389,61,0.0,2 +49561,13,0.0,0,1.3250846862792969,62,0.0,2 +49562,13,1.0,0,1.1190850734710693,63,1.0,2 +49563,13,0.0,0,1.4540830850601196,64,1.0,2 +49564,13,1.0,0,1.5750815868377686,65,1.0,2 +49565,13,1.0,0,1.1710851192474365,66,1.0,2 +49566,13,0.0,0,1.347084403038025,67,0.0,2 +49567,13,0.0,0,1.295085072517395,68,0.0,2 +49568,13,1.0,0,1.4010837078094482,69,1.0,2 +49569,13,1.0,0,1.1610851287841797,70,1.0,2 +49570,13,1.0,0,1.3760840892791748,71,1.0,2 +49571,13,1.0,0,1.1620850563049316,72,0.0,2 +49572,13,1.0,0,1.5820814371109009,73,1.0,2 +49573,13,1.0,0,1.8600778579711914,74,1.0,2 +49574,13,1.0,0,1.2900851964950562,75,1.0,2 +49575,13,1.0,0,1.2620853185653687,76,1.0,2 +49576,13,1.0,0,1.409083604812622,77,1.0,2 +49577,13,1.0,0,1.4460831880569458,78,1.0,2 +49578,13,1.0,0,1.236085295677185,79,1.0,2 +49579,13,1.0,0,1.4540830850601196,80,1.0,2 +49580,13,1.0,0,1.1990852355957031,81,0.0,2 +49581,13,0.0,0,1.347084403038025,82,0.0,2 +49582,13,0.0,0,1.6060811281204224,83,0.0,2 +49583,13,1.0,0,1.9190771579742432,84,1.0,2 +49584,13,1.0,0,1.372084140777588,85,1.0,2 +49585,13,1.0,0,1.206085205078125,86,1.0,2 +49586,13,1.0,0,1.3500844240188599,87,1.0,2 +49587,13,1.0,0,1.3040850162506104,88,1.0,2 +49588,13,1.0,0,1.434083342552185,89,1.0,2 +49589,13,1.0,0,1.5950813293457031,90,0.0,2 +49590,13,1.0,0,1.5670816898345947,91,1.0,2 +49591,13,1.0,0,1.4150835275650024,92,1.0,2 +49592,13,1.0,0,1.2920851707458496,93,1.0,2 +49593,13,1.0,0,1.3560843467712402,94,1.0,2 +49594,13,1.0,0,1.1900851726531982,95,1.0,2 +49595,13,1.0,0,1.212085247039795,96,1.0,2 +49596,13,1.0,0,1.1920851469039917,97,1.0,2 +49597,13,1.0,0,1.438083291053772,98,0.0,2 +49598,13,1.0,0,1.409083604812622,99,1.0,2 +49599,13,1.0,0,1.3550843000411987,100,0.0,2 +49600,13,0.0,0,2.2260851860046387,101,0.0,2 +49601,13,1.0,0,1.320084810256958,102,0.0,2 +49602,13,1.0,0,2.097079038619995,103,1.0,2 +49603,13,1.0,0,1.4550830125808716,104,1.0,2 +49604,13,1.0,0,1.4230834245681763,105,1.0,2 +49605,13,1.0,0,1.2350852489471436,106,1.0,2 +49606,13,1.0,0,1.5930812358856201,107,1.0,2 +49607,13,1.0,0,1.4080836772918701,108,0.0,2 +49608,13,1.0,0,1.20308518409729,109,0.0,2 +49609,13,0.0,0,1.8620778322219849,110,0.0,2 +49610,13,0.0,0,1.3740841150283813,111,0.0,2 +49611,13,0.0,0,1.4990824460983276,112,0.0,2 +49612,13,1.0,0,1.59908127784729,113,0.0,2 +49613,13,0.0,0,1.138085126876831,114,0.0,2 +49614,13,0.0,0,1.6630804538726807,115,1.0,2 +49615,13,0.0,0,1.3330845832824707,116,0.0,2 +49616,13,1.0,0,1.2180852890014648,117,1.0,2 +49617,13,1.0,0,1.4580830335617065,118,1.0,2 +49618,13,1.0,0,1.7020798921585083,119,1.0,2 +49619,13,1.0,0,1.1860852241516113,120,0.0,2 +49620,13,0.0,0,1.3150848150253296,121,0.0,2 +49621,13,0.0,0,1.4620829820632935,122,0.0,2 +49622,13,1.0,0,1.6140810251235962,123,1.0,2 +49623,13,1.0,0,1.3770840167999268,124,1.0,2 +49624,13,1.0,0,1.295085072517395,125,1.0,2 +49625,13,0.0,0,1.3660842180252075,126,0.0,2 +49626,13,1.0,0,1.6130809783935547,127,1.0,2 +49627,13,1.0,0,1.3550843000411987,128,1.0,2 +49628,13,1.0,0,1.4260834455490112,129,1.0,2 +49629,13,1.0,0,1.8560779094696045,130,1.0,2 +49630,13,1.0,0,1.6420806646347046,131,0.0,2 +49631,13,1.0,0,1.4510830640792847,132,1.0,2 +49632,13,1.0,0,1.6070811748504639,133,1.0,2 +49633,13,1.0,0,1.1740851402282715,134,1.0,2 +49634,13,1.0,0,1.4580830335617065,135,1.0,2 +49635,13,1.0,0,1.416083574295044,136,1.0,2 +49636,13,1.0,0,1.4890825748443604,137,1.0,2 +49637,13,1.0,0,1.1840851306915283,138,1.0,2 +49638,13,1.0,0,1.2270852327346802,139,1.0,2 +49639,13,1.0,0,1.3820840120315552,140,1.0,2 +49640,13,1.0,0,1.2580852508544922,141,1.0,2 +49641,13,1.0,0,1.4950824975967407,142,1.0,2 +49642,13,1.0,0,1.4050836563110352,143,0.0,2 +49643,13,1.0,0,1.666080355644226,144,1.0,2 +49644,13,1.0,0,1.435083270072937,145,1.0,2 +49645,13,1.0,0,1.2500853538513184,146,1.0,2 +49646,13,1.0,0,1.1550850868225098,147,1.0,2 +49647,13,1.0,0,1.43108332157135,148,1.0,2 +49648,13,1.0,0,1.5640816688537598,149,1.0,2 +49649,13,1.0,0,1.2540853023529053,150,1.0,2 +49650,13,1.0,0,1.733079433441162,151,1.0,2 +49651,13,1.0,0,1.2970850467681885,152,1.0,2 +49652,13,1.0,0,1.5400819778442383,153,0.0,2 +49653,13,1.0,0,1.6390807628631592,154,1.0,2 +49654,13,1.0,0,1.8660777807235718,155,1.0,2 +49655,13,1.0,0,1.2830852270126343,156,1.0,2 +49656,13,1.0,0,1.2710853815078735,157,1.0,2 +49657,13,1.0,0,1.3410844802856445,158,1.0,2 +49658,13,1.0,0,1.8180783987045288,159,0.0,2 +49659,13,0.0,0,1.4490830898284912,160,0.0,2 +49660,13,0.0,0,2.0050759315490723,161,0.0,2 +49661,13,1.0,0,1.2710853815078735,162,1.0,2 +49662,13,1.0,0,1.4270833730697632,163,1.0,2 +49663,13,1.0,0,1.4420832395553589,164,1.0,2 +49664,13,1.0,0,1.8020786046981812,165,1.0,2 +49665,13,1.0,0,1.464082956314087,166,0.0,2 +49666,13,0.0,0,2.1620821952819824,167,0.0,2 +49667,13,0.0,0,2.105079412460327,168,0.0,2 +49668,13,0.0,0,1.4510830640792847,169,0.0,2 +49669,13,1.0,0,1.8380781412124634,170,1.0,2 +49670,13,1.0,0,1.548081874847412,171,1.0,2 +49671,13,1.0,0,1.342084527015686,172,1.0,2 +49672,13,1.0,0,1.2230852842330933,173,1.0,2 +49673,13,1.0,0,1.2570853233337402,174,1.0,2 +49674,13,1.0,0,1.2920851707458496,175,1.0,2 +49675,13,1.0,0,1.4730827808380127,176,1.0,2 +49676,13,1.0,0,1.3410844802856445,177,1.0,2 +49677,13,1.0,0,1.295085072517395,178,1.0,2 +49678,13,0.0,0,1.176085114479065,179,0.0,2 +49679,13,1.0,0,1.2040852308273315,180,0.0,2 +49680,13,0.0,0,1.302085041999817,181,0.0,2 +49681,13,0.0,0,1.3190847635269165,182,0.0,2 +49682,13,0.0,0,1.368084192276001,183,0.0,2 +49683,13,1.0,0,1.8070785999298096,184,0.0,2 +49684,13,0.0,0,1.6230809688568115,185,0.0,2 +49685,13,1.0,0,1.4890825748443604,186,1.0,2 +49686,13,1.0,0,1.5270822048187256,187,1.0,2 +49687,13,1.0,0,1.2880852222442627,188,0.0,2 +49688,13,0.0,0,1.6110811233520508,189,0.0,2 +49689,13,1.0,0,1.873077630996704,190,0.0,2 +49690,13,0.0,0,1.5100823640823364,191,0.0,2 +49691,13,1.0,0,1.6360807418823242,192,1.0,2 +49692,13,1.0,0,1.3590842485427856,193,1.0,2 +49693,13,1.0,0,1.3930838108062744,194,1.0,2 +49694,13,1.0,0,1.361084222793579,195,1.0,2 +49695,13,1.0,0,1.3930838108062744,196,1.0,2 +49696,13,1.0,0,1.29808509349823,197,1.0,2 +49697,13,1.0,0,1.2560852766036987,198,1.0,2 +49698,13,1.0,0,1.3670841455459595,199,1.0,2 +49699,13,1.0,0,1.2970850467681885,200,1.0,2 +49700,13,1.0,0,1.6790802478790283,201,1.0,2 +49701,13,1.0,0,1.435083270072937,202,1.0,2 +49702,13,1.0,0,1.166085124015808,203,1.0,2 +49703,13,1.0,0,1.4060837030410767,204,1.0,2 +49704,13,1.0,0,1.4660829305648804,205,1.0,2 +49705,13,1.0,0,1.212085247039795,206,1.0,2 +49706,13,1.0,0,1.3850839138031006,207,1.0,2 +49707,13,1.0,0,1.1870851516723633,208,1.0,2 +49708,13,1.0,0,1.8000786304473877,209,1.0,2 +49709,13,1.0,0,1.3530843257904053,210,0.0,2 +49710,13,1.0,0,1.8170783519744873,211,1.0,2 +49711,13,1.0,0,1.5820814371109009,212,1.0,2 +49712,13,1.0,0,1.3950837850570679,213,1.0,2 +49713,13,1.0,0,1.5170822143554688,214,0.0,2 +49714,13,1.0,0,1.4300833940505981,215,1.0,2 +49715,13,1.0,0,1.2720853090286255,216,1.0,2 +49716,13,1.0,0,1.5500818490982056,217,1.0,2 +49717,13,1.0,0,1.1510851383209229,218,1.0,2 +49718,13,1.0,0,1.9220770597457886,219,1.0,2 +49719,13,1.0,0,1.2260851860046387,220,1.0,2 +49720,13,1.0,0,1.4180835485458374,221,0.0,2 +49721,13,1.0,0,1.5930812358856201,222,1.0,2 +49722,13,1.0,0,1.2490853071212769,223,0.0,2 +49723,13,0.0,0,1.2690852880477905,224,0.0,2 +49724,13,0.0,0,2.1950836181640625,225,0.0,2 +49725,13,0.0,0,1.409083604812622,226,0.0,2 +49726,13,0.0,0,1.2270852327346802,227,0.0,2 +49727,13,0.0,0,1.5790815353393555,228,1.0,2 +49728,13,0.0,0,1.4240834712982178,229,0.0,2 +49729,13,0.0,0,1.302085041999817,230,0.0,2 +49730,13,1.0,0,1.339084506034851,231,1.0,2 +49731,13,1.0,0,1.4010837078094482,232,1.0,2 +49732,13,1.0,0,1.1550850868225098,233,1.0,2 +49733,13,1.0,0,1.8620778322219849,234,1.0,2 +49734,13,1.0,0,1.9360768795013428,235,1.0,2 +49735,13,1.0,0,1.2920851707458496,236,1.0,2 +49736,13,0.0,0,1.3840839862823486,237,0.0,2 +49737,13,1.0,0,1.438083291053772,238,1.0,2 +49738,13,1.0,0,1.270085334777832,239,1.0,2 +49739,13,1.0,0,1.4660829305648804,240,1.0,2 +49740,13,1.0,0,1.8230783939361572,241,1.0,2 +49741,13,1.0,0,1.2230852842330933,242,1.0,2 +49742,13,1.0,0,1.277085304260254,243,0.0,2 +49743,13,0.0,0,1.3630841970443726,244,0.0,2 +49744,13,1.0,0,1.4370832443237305,245,1.0,2 +49745,13,1.0,0,1.4730827808380127,246,0.0,2 +49746,13,0.0,0,1.2780853509902954,247,0.0,2 +49747,13,0.0,0,1.902077317237854,248,0.0,2 +49748,13,0.0,0,1.8340781927108765,249,0.0,2 +49749,13,0.0,0,1.391083836555481,250,0.0,2 +49750,13,0.0,0,1.5330820083618164,251,0.0,2 +49751,13,1.0,0,1.696079969406128,252,1.0,2 +49752,13,1.0,0,1.390083909034729,253,1.0,2 +49753,13,1.0,0,1.7100797891616821,254,1.0,2 +49754,13,1.0,0,1.4430831670761108,255,1.0,2 +49755,13,1.0,0,1.2220852375030518,256,0.0,2 +49756,13,1.0,0,1.8130784034729004,257,0.0,2 +49757,13,0.0,0,1.4040837287902832,258,0.0,2 +49758,13,1.0,0,1.6120810508728027,259,1.0,2 +49759,13,1.0,0,1.4730827808380127,260,1.0,2 +49760,13,0.0,0,1.3510843515396118,261,1.0,2 +49761,13,1.0,0,1.8910775184631348,262,1.0,2 +49762,13,0.0,0,1.295085072517395,263,0.0,2 +49763,13,0.0,0,1.876077651977539,264,0.0,2 +49764,13,1.0,0,1.369084119796753,265,1.0,2 +49765,13,1.0,0,1.1820851564407349,266,0.0,2 +49766,13,1.0,0,1.7190797328948975,267,1.0,2 +49767,13,1.0,0,1.2280852794647217,268,1.0,2 +49768,13,1.0,0,1.1250849962234497,269,1.0,2 +49769,13,1.0,0,1.2340853214263916,270,0.0,2 +49770,13,1.0,0,1.743079423904419,271,1.0,2 +49771,13,1.0,0,1.526082158088684,272,1.0,2 +49772,13,1.0,0,1.2380852699279785,273,0.0,2 +49773,13,1.0,0,1.346084475517273,274,1.0,2 +49774,13,1.0,0,1.4370832443237305,275,1.0,2 +49775,13,1.0,0,1.3760840892791748,276,0.0,2 +49776,13,0.0,0,1.97507643699646,277,0.0,2 +49777,13,0.0,0,1.8900774717330933,278,1.0,2 +49778,13,0.0,0,1.559081792831421,279,0.0,2 +49779,13,0.0,0,1.692080020904541,280,0.0,2 +49780,13,0.0,0,2.093078851699829,281,0.0,2 +49781,13,0.0,0,1.169085144996643,282,0.0,2 +49782,13,1.0,0,1.438083291053772,283,1.0,2 +49783,13,1.0,0,1.210085153579712,284,1.0,2 +49784,13,1.0,0,1.3050849437713623,285,1.0,2 +49785,13,1.0,0,1.3110848665237427,286,0.0,2 +49786,13,1.0,0,1.6810801029205322,287,1.0,2 +49787,13,1.0,0,1.3190847635269165,288,1.0,2 +49788,13,1.0,0,1.439083218574524,289,1.0,2 +49789,13,1.0,0,1.2270852327346802,290,1.0,2 +49790,13,1.0,0,1.3500844240188599,291,1.0,2 +49791,13,1.0,0,1.1800851821899414,292,1.0,2 +49792,13,1.0,0,1.4140836000442505,293,1.0,2 +49793,13,1.0,0,1.2280852794647217,294,1.0,2 +49794,13,1.0,0,1.5220822095870972,295,1.0,2 +49795,13,1.0,0,1.2140852212905884,296,1.0,2 +49796,13,1.0,0,1.5460819005966187,297,1.0,2 +49797,13,1.0,0,1.2340853214263916,298,1.0,2 +49798,13,1.0,0,1.2660853862762451,299,1.0,2 +49799,13,1.0,0,1.4440832138061523,300,0.0,2 +49800,13,1.0,0,2.030076026916504,301,1.0,2 +49801,13,1.0,0,1.5240821838378906,302,1.0,2 +49802,13,1.0,0,1.2480852603912354,303,1.0,2 +49803,13,1.0,0,1.9440767765045166,304,0.0,2 +49804,13,0.0,0,1.2750853300094604,305,1.0,2 +49805,13,0.0,0,1.1920851469039917,306,1.0,2 +49806,13,0.0,0,1.166085124015808,307,0.0,2 +49807,13,0.0,0,1.4600830078125,308,0.0,2 +49808,13,1.0,0,2.1830830574035645,309,1.0,2 +49809,13,1.0,0,1.3760840892791748,310,1.0,2 +49810,13,1.0,0,1.3120849132537842,311,1.0,2 +49811,13,1.0,0,1.23308527469635,312,0.0,2 +49812,13,0.0,0,1.6680803298950195,313,0.0,2 +49813,13,1.0,0,2.025075674057007,314,1.0,2 +49814,13,1.0,0,2.12007999420166,315,1.0,2 +49815,13,1.0,0,1.695080041885376,316,1.0,2 +49816,13,1.0,0,1.3890838623046875,317,1.0,2 +49817,13,1.0,0,1.4420832395553589,318,1.0,2 +49818,13,1.0,0,1.5060824155807495,319,1.0,2 +49819,13,1.0,0,1.2860852479934692,320,0.0,2 +49820,13,1.0,0,1.5460819005966187,321,1.0,2 +49821,13,1.0,0,2.026075839996338,322,1.0,2 +49822,13,1.0,0,1.3040850162506104,323,1.0,2 +49823,13,1.0,0,1.3670841455459595,324,1.0,2 +49824,13,1.0,0,1.2190852165222168,325,1.0,2 +49825,13,1.0,0,1.6120810508728027,326,0.0,2 +49826,13,1.0,0,1.8660777807235718,327,1.0,2 +49827,13,1.0,0,1.5850813388824463,328,1.0,2 +49828,13,1.0,0,1.237085223197937,329,1.0,2 +49829,13,1.0,0,1.4940825700759888,330,1.0,2 +49830,13,1.0,0,1.3560843467712402,331,1.0,2 +49831,13,1.0,0,1.3030849695205688,332,1.0,2 +49832,13,1.0,0,1.2230852842330933,333,0.0,2 +49833,13,1.0,0,1.409083604812622,334,1.0,2 +49834,13,1.0,0,1.641080617904663,335,1.0,2 +49835,13,1.0,0,1.530082106590271,336,1.0,2 +49836,13,1.0,0,1.316084861755371,337,1.0,2 +49837,13,1.0,0,1.5000824928283691,338,1.0,2 +49838,13,1.0,0,1.3490843772888184,339,1.0,2 +49839,13,1.0,0,1.7480792999267578,340,1.0,2 +49840,13,1.0,0,1.5830814838409424,341,1.0,2 +49841,13,1.0,0,1.5890812873840332,342,0.0,2 +49842,13,1.0,0,1.409083604812622,343,1.0,2 +49843,13,1.0,0,1.3010849952697754,344,1.0,2 +49844,13,1.0,0,1.457082986831665,345,1.0,2 +49845,13,1.0,0,1.8080785274505615,346,1.0,2 +49846,13,1.0,0,1.1540851593017578,347,1.0,2 +49847,13,1.0,0,1.2820852994918823,348,1.0,2 +49848,13,1.0,0,1.5160822868347168,349,1.0,2 +49849,13,1.0,0,1.2520853281021118,350,1.0,2 +49850,13,1.0,0,1.2830852270126343,351,1.0,2 +49851,13,1.0,0,1.4050836563110352,352,1.0,2 +49852,13,1.0,0,1.2930850982666016,353,1.0,2 +49853,13,1.0,0,1.291085124015808,354,1.0,2 +49854,13,1.0,0,1.3740841150283813,355,0.0,2 +49855,13,1.0,0,1.4720828533172607,356,1.0,2 +49856,13,1.0,0,1.2610852718353271,357,1.0,2 +49857,13,1.0,0,1.736079454421997,358,1.0,2 +49858,13,1.0,0,1.4590829610824585,359,1.0,2 +49859,13,1.0,0,1.557081699371338,360,1.0,2 +49860,13,1.0,0,1.6150810718536377,361,1.0,2 +49861,13,1.0,0,1.2540853023529053,362,0.0,2 +49862,13,1.0,0,1.5030823945999146,363,1.0,2 +49863,13,1.0,0,1.3630841970443726,364,1.0,2 +49864,13,1.0,0,1.3280847072601318,365,1.0,2 +49865,13,1.0,0,1.391083836555481,366,1.0,2 +49866,13,1.0,0,1.1430851221084595,367,1.0,2 +49867,13,0.0,0,1.5210821628570557,368,0.0,2 +49868,13,1.0,0,1.4000837802886963,369,1.0,2 +49869,13,1.0,0,1.3790839910507202,370,1.0,2 +49870,13,1.0,0,1.2070852518081665,371,1.0,2 +49871,13,1.0,0,1.29808509349823,372,1.0,2 +49872,13,1.0,0,1.3130848407745361,373,1.0,2 +49873,13,1.0,0,1.479082703590393,374,1.0,2 +49874,13,1.0,0,1.2410852909088135,375,1.0,2 +49875,13,1.0,0,1.2310853004455566,376,1.0,2 +49876,13,1.0,0,1.409083604812622,377,1.0,2 +49877,13,1.0,0,1.361084222793579,378,1.0,2 +49878,13,1.0,0,1.5110822916030884,379,1.0,2 +49879,13,1.0,0,1.5670816898345947,380,0.0,2 +49880,13,0.0,0,1.3620842695236206,381,0.0,2 +49881,13,0.0,0,1.4430831670761108,382,0.0,2 +49882,13,1.0,0,2.1340808868408203,383,1.0,2 +49883,13,1.0,0,1.3750840425491333,384,1.0,2 +49884,13,1.0,0,1.699079990386963,385,1.0,2 +49885,13,1.0,0,1.369084119796753,386,1.0,2 +49886,13,0.0,0,1.5380820035934448,387,0.0,2 +49887,13,1.0,0,1.2780853509902954,388,0.0,2 +49888,13,1.0,0,1.240085244178772,389,1.0,2 +49889,13,1.0,0,1.4500831365585327,390,1.0,2 +49890,13,1.0,0,1.267085313796997,391,1.0,2 +49891,13,1.0,0,1.2190852165222168,392,1.0,2 +49892,13,1.0,0,1.5060824155807495,393,1.0,2 +49893,13,1.0,0,1.4220834970474243,394,1.0,2 +49894,13,1.0,0,1.386083960533142,395,1.0,2 +49895,13,1.0,0,1.2900851964950562,396,1.0,2 +49896,13,1.0,0,1.4880826473236084,397,0.0,2 +49897,13,1.0,0,2.279087543487549,398,1.0,2 +49898,13,0.0,0,1.342084527015686,399,0.0,2 +49899,13,1.0,0,1.6390807628631592,400,0.0,2 +49900,13,0.0,0,1.6520805358886719,401,0.0,2 +49901,13,1.0,0,1.3710840940475464,402,1.0,2 +49902,13,1.0,0,1.3480844497680664,403,1.0,2 +49903,13,1.0,0,1.2510852813720703,404,0.0,2 +49904,13,1.0,0,1.733079433441162,405,1.0,2 +49905,13,1.0,0,1.501082420349121,406,0.0,2 +49906,13,1.0,0,1.9420768022537231,407,1.0,2 +49907,13,1.0,0,1.5110822916030884,408,1.0,2 +49908,13,1.0,0,1.4010837078094482,409,1.0,2 +49909,13,1.0,0,1.4920825958251953,410,1.0,2 +49910,13,1.0,0,1.43108332157135,411,1.0,2 +49911,13,1.0,0,1.3750840425491333,412,0.0,2 +49912,13,1.0,0,1.5640816688537598,413,1.0,2 +49913,13,1.0,0,1.5900813341140747,414,1.0,2 +49914,13,1.0,0,1.1840851306915283,415,0.0,2 +49915,13,0.0,0,1.8380781412124634,416,0.0,2 +49916,13,0.0,0,1.7950787544250488,417,0.0,2 +49917,13,0.0,0,1.3230847120285034,418,0.0,2 +49918,13,0.0,0,2.049076795578003,419,0.0,2 +49919,13,0.0,0,1.3060849905014038,420,0.0,2 +49920,13,1.0,0,1.4470831155776978,421,1.0,2 +49921,13,1.0,0,1.3260847330093384,422,1.0,2 +49922,13,1.0,0,1.5750815868377686,423,1.0,2 +49923,13,1.0,0,1.3080849647521973,424,1.0,2 +49924,13,1.0,0,1.5000824928283691,425,1.0,2 +49925,13,1.0,0,1.3350845575332642,426,1.0,2 +49926,13,1.0,0,1.32108473777771,427,1.0,2 +49927,13,1.0,0,1.2780853509902954,428,1.0,2 +49928,13,1.0,0,1.3890838623046875,429,1.0,2 +49929,13,1.0,0,1.2630853652954102,430,1.0,2 +49930,13,1.0,0,1.416083574295044,431,1.0,2 +49931,13,1.0,0,1.416083574295044,432,1.0,2 +49932,13,1.0,0,1.294085144996643,433,1.0,2 +49933,13,1.0,0,1.5620816946029663,434,1.0,2 +49934,13,0.0,0,1.4010837078094482,435,0.0,2 +49935,13,1.0,0,1.59908127784729,436,1.0,2 +49936,13,1.0,0,1.4080836772918701,437,1.0,2 +49937,13,1.0,0,1.1900851726531982,438,1.0,2 +49938,13,1.0,0,1.5250821113586426,439,1.0,2 +49939,13,1.0,0,1.5270822048187256,440,1.0,2 +49940,13,1.0,0,1.4320833683013916,441,1.0,2 +49941,13,1.0,0,1.176085114479065,442,1.0,2 +49942,13,1.0,0,1.4250833988189697,443,1.0,2 +49943,13,1.0,0,1.4290833473205566,444,1.0,2 +49944,13,1.0,0,1.299085021018982,445,1.0,2 +49945,13,1.0,0,1.1260850429534912,446,0.0,2 +49946,13,1.0,0,1.1710851192474365,447,1.0,2 +49947,13,1.0,0,1.3520843982696533,448,0.0,2 +49948,13,1.0,0,1.317084789276123,449,1.0,2 +49949,13,1.0,0,1.976076364517212,450,1.0,2 +49950,13,1.0,0,1.4060837030410767,451,1.0,2 +49951,13,1.0,0,1.3550843000411987,452,1.0,2 +49952,13,1.0,0,1.20908522605896,453,1.0,2 +49953,13,1.0,0,1.1980851888656616,454,1.0,2 +49954,13,1.0,0,1.202085256576538,455,1.0,2 +49955,13,1.0,0,1.3550843000411987,456,0.0,2 +49956,13,1.0,0,1.4240834712982178,457,1.0,2 +49957,13,1.0,0,1.65108060836792,458,0.0,2 +49958,13,1.0,0,1.6190810203552246,459,1.0,2 +49959,13,1.0,0,1.5290820598602295,460,1.0,2 +49960,13,1.0,0,1.4240834712982178,461,1.0,2 +49961,13,1.0,0,1.3500844240188599,462,1.0,2 +49962,13,1.0,0,1.409083604812622,463,1.0,2 +49963,13,1.0,0,1.3500844240188599,464,1.0,2 +49964,13,1.0,0,1.7220796346664429,465,1.0,2 +49965,13,1.0,0,1.4550830125808716,466,1.0,2 +49966,13,1.0,0,1.5980812311172485,467,1.0,2 +49967,13,1.0,0,1.43108332157135,468,1.0,2 +49968,13,1.0,0,1.7600791454315186,469,1.0,2 +49969,13,1.0,0,1.4770827293395996,470,1.0,2 +49970,13,1.0,0,1.390083909034729,471,0.0,2 +49971,13,0.0,0,1.4180835485458374,472,0.0,2 +49972,13,0.0,0,2.101079225540161,473,0.0,2 +49973,13,1.0,0,1.3850839138031006,474,1.0,2 +49974,13,1.0,0,1.7940787076950073,475,1.0,2 +49975,13,0.0,0,1.3230847120285034,476,0.0,2 +49976,13,1.0,0,1.5850813388824463,477,1.0,2 +49977,13,1.0,0,1.3340846300125122,478,1.0,2 +49978,13,1.0,0,1.2550853490829468,479,1.0,2 +49979,13,1.0,0,1.3540843725204468,480,1.0,2 +49980,13,1.0,0,1.2230852842330933,481,0.0,2 +49981,13,1.0,0,1.7170796394348145,482,1.0,2 +49982,13,1.0,0,1.4740828275680542,483,1.0,2 +49983,13,1.0,0,1.3310846090316772,484,1.0,2 +49984,13,1.0,0,1.32108473777771,485,0.0,2 +49985,13,1.0,0,1.3490843772888184,486,1.0,2 +49986,13,1.0,0,1.559081792831421,487,1.0,2 +49987,13,1.0,0,1.48308265209198,488,1.0,2 +49988,13,1.0,0,1.3630841970443726,489,1.0,2 +49989,13,1.0,0,1.1500850915908813,490,1.0,2 +49990,13,1.0,0,1.438083291053772,491,1.0,2 +49991,13,1.0,0,1.2620853185653687,492,1.0,2 +49992,13,1.0,0,1.2560852766036987,493,1.0,2 +49993,13,1.0,0,1.4110835790634155,494,1.0,2 +49994,13,1.0,0,1.4200835227966309,495,1.0,2 +49995,13,1.0,0,1.2500853538513184,496,1.0,2 +49996,13,1.0,0,1.2190852165222168,497,1.0,2 +49997,13,1.0,0,1.2200852632522583,498,1.0,2 +49998,13,1.0,0,1.4810826778411865,499,1.0,2 +49999,13,1.0,0,1.880077600479126,500,1.0,2 +50000,13,1.0,1,1.3150848150253296,1,1.0,2 +50001,13,1.0,1,1.692080020904541,2,1.0,2 +50002,13,1.0,1,1.3250846862792969,3,1.0,2 +50003,13,0.0,1,2.3970930576324463,4,0.0,2 +50004,13,1.0,1,1.1830852031707764,5,1.0,2 +50005,13,1.0,1,1.4400832653045654,6,0.0,2 +50006,13,1.0,1,1.5120823383331299,7,1.0,2 +50007,13,1.0,1,1.8490779399871826,8,1.0,2 +50008,13,1.0,1,1.457082986831665,9,1.0,2 +50009,13,1.0,1,1.4450831413269043,10,1.0,2 +50010,13,1.0,1,1.2790852785110474,11,1.0,2 +50011,13,1.0,1,1.2050851583480835,12,1.0,2 +50012,13,1.0,1,1.246085286140442,13,1.0,2 +50013,13,1.0,1,1.4590829610824585,14,0.0,2 +50014,13,0.0,1,2.104079246520996,15,1.0,2 +50015,13,0.0,1,1.6540805101394653,16,1.0,2 +50016,13,0.0,1,1.6370806694030762,17,0.0,2 +50017,13,0.0,1,1.2250852584838867,18,1.0,2 +50018,13,0.0,1,1.3980838060379028,19,1.0,2 +50019,13,0.0,1,1.135085105895996,20,1.0,2 +50020,13,0.0,1,1.4950824975967407,21,1.0,2 +50021,13,0.0,1,1.1260850429534912,22,0.0,2 +50022,13,1.0,1,1.559081792831421,23,0.0,2 +50023,13,0.0,1,1.346084475517273,24,0.0,2 +50024,13,0.0,1,2.1140799522399902,25,1.0,2 +50025,13,0.0,1,1.372084140777588,26,0.0,2 +50026,13,0.0,1,1.2240852117538452,27,0.0,2 +50027,13,1.0,1,1.3010849952697754,28,1.0,2 +50028,13,0.0,1,1.2150852680206299,29,0.0,2 +50029,13,1.0,1,1.5750815868377686,30,1.0,2 +50030,13,1.0,1,1.434083342552185,31,1.0,2 +50031,13,1.0,1,1.2350852489471436,32,1.0,2 +50032,13,1.0,1,1.3990837335586548,33,1.0,2 +50033,13,1.0,1,1.5900813341140747,34,0.0,2 +50034,13,0.0,1,1.1130850315093994,35,0.0,2 +50035,13,1.0,1,1.3410844802856445,36,1.0,2 +50036,13,1.0,1,1.2110852003097534,37,1.0,2 +50037,13,0.0,1,1.1980851888656616,38,1.0,2 +50038,13,0.0,1,1.2210851907730103,39,0.0,2 +50039,13,1.0,1,1.6280808448791504,40,1.0,2 +50040,13,1.0,1,1.8560779094696045,41,1.0,2 +50041,13,1.0,1,1.1290850639343262,42,1.0,2 +50042,13,1.0,1,1.29808509349823,43,0.0,2 +50043,13,1.0,1,1.7310795783996582,44,1.0,2 +50044,13,1.0,1,1.5160822868347168,45,0.0,2 +50045,13,0.0,1,2.1720824241638184,46,0.0,2 +50046,13,0.0,1,2.028075695037842,47,0.0,2 +50047,13,1.0,1,1.8010785579681396,48,1.0,2 +50048,13,1.0,1,1.5350821018218994,49,0.0,2 +50049,13,0.0,1,1.9110772609710693,50,1.0,2 +50050,13,0.0,1,1.5000824928283691,51,0.0,2 +50051,13,0.0,1,2.3970930576324463,52,0.0,2 +50052,13,0.0,1,2.081078290939331,53,1.0,2 +50053,13,0.0,1,1.534082055091858,54,0.0,2 +50054,13,1.0,1,2.024075746536255,55,1.0,2 +50055,13,1.0,1,1.8920774459838867,56,0.0,2 +50056,13,0.0,1,1.7800788879394531,57,0.0,2 +50057,13,1.0,1,1.6720802783966064,58,1.0,2 +50058,13,1.0,1,1.368084192276001,59,1.0,2 +50059,13,1.0,1,1.5290820598602295,60,1.0,2 +50060,13,1.0,1,1.240085244178772,61,1.0,2 +50061,13,1.0,1,1.2190852165222168,62,0.0,2 +50062,13,0.0,1,1.9670765399932861,63,1.0,2 +50063,13,0.0,1,1.1470850706100464,64,0.0,2 +50064,13,1.0,1,1.8130784034729004,65,1.0,2 +50065,13,1.0,1,1.7540792226791382,66,0.0,2 +50066,13,0.0,1,1.2130851745605469,67,0.0,2 +50067,13,1.0,1,1.8590779304504395,68,1.0,2 +50068,13,1.0,1,1.5890812873840332,69,1.0,2 +50069,13,1.0,1,1.2510852813720703,70,1.0,2 +50070,13,1.0,1,1.2230852842330933,71,1.0,2 +50071,13,1.0,1,1.559081792831421,72,1.0,2 +50072,13,1.0,1,1.4880826473236084,73,0.0,2 +50073,13,1.0,1,1.9110772609710693,74,1.0,2 +50074,13,1.0,1,1.4650828838348389,75,1.0,2 +50075,13,1.0,1,1.3850839138031006,76,1.0,2 +50076,13,1.0,1,1.1710851192474365,77,0.0,2 +50077,13,1.0,1,1.7230796813964844,78,1.0,2 +50078,13,1.0,1,1.3540843725204468,79,1.0,2 +50079,13,1.0,1,1.2230852842330933,80,0.0,2 +50080,13,0.0,1,1.2840852737426758,81,0.0,2 +50081,13,1.0,1,1.5240821838378906,82,1.0,2 +50082,13,1.0,1,1.4030836820602417,83,0.0,2 +50083,13,0.0,1,1.4920825958251953,84,0.0,2 +50084,13,0.0,1,1.4240834712982178,85,1.0,2 +50085,13,0.0,1,1.6150810718536377,86,0.0,2 +50086,13,0.0,1,1.4740828275680542,87,0.0,2 +50087,13,1.0,1,1.3580843210220337,88,1.0,2 +50088,13,1.0,1,1.4880826473236084,89,1.0,2 +50089,13,1.0,1,1.1540851593017578,90,0.0,2 +50090,13,0.0,1,2.039076328277588,91,0.0,2 +50091,13,1.0,1,2.136080741882324,92,1.0,2 +50092,13,1.0,1,1.8430781364440918,93,1.0,2 +50093,13,1.0,1,1.2070852518081665,94,1.0,2 +50094,13,1.0,1,1.2830852270126343,95,1.0,2 +50095,13,1.0,1,1.2470853328704834,96,1.0,2 +50096,13,1.0,1,1.2230852842330933,97,1.0,2 +50097,13,1.0,1,1.4300833940505981,98,1.0,2 +50098,13,1.0,1,1.2960851192474365,99,0.0,2 +50099,13,1.0,1,1.6520805358886719,100,1.0,2 +50100,13,1.0,1,1.4650828838348389,101,0.0,2 +50101,13,1.0,1,1.553081750869751,102,1.0,2 +50102,13,1.0,1,1.2210851907730103,103,1.0,2 +50103,13,1.0,1,1.5200822353363037,104,0.0,2 +50104,13,1.0,1,1.8960773944854736,105,1.0,2 +50105,13,1.0,1,1.4450831413269043,106,0.0,2 +50106,13,0.0,1,1.649080514907837,107,0.0,2 +50107,13,0.0,1,2.10007905960083,108,1.0,2 +50108,13,0.0,1,1.2350852489471436,109,0.0,2 +50109,13,1.0,1,1.6100810766220093,110,1.0,2 +50110,13,1.0,1,1.4420832395553589,111,0.0,2 +50111,13,1.0,1,1.9800763130187988,112,1.0,2 +50112,13,1.0,1,1.2190852165222168,113,1.0,2 +50113,13,1.0,1,1.5110822916030884,114,1.0,2 +50114,13,1.0,1,1.5870814323425293,115,1.0,2 +50115,13,1.0,1,1.23308527469635,116,1.0,2 +50116,13,1.0,1,1.3740841150283813,117,1.0,2 +50117,13,1.0,1,1.597081184387207,118,1.0,2 +50118,13,1.0,1,1.4020837545394897,119,1.0,2 +50119,13,1.0,1,1.2900851964950562,120,0.0,2 +50120,13,0.0,1,1.4920825958251953,121,0.0,2 +50121,13,0.0,1,1.530082106590271,122,1.0,2 +50122,13,0.0,1,1.2560852766036987,123,0.0,2 +50123,13,1.0,1,1.20908522605896,124,1.0,2 +50124,13,1.0,1,1.883077621459961,125,0.0,2 +50125,13,1.0,1,1.4740828275680542,126,1.0,2 +50126,13,1.0,1,1.1880851984024048,127,1.0,2 +50127,13,1.0,1,1.8640778064727783,128,0.0,2 +50128,13,1.0,1,1.9140771627426147,129,1.0,2 +50129,13,1.0,1,1.5680816173553467,130,1.0,2 +50130,13,1.0,1,1.2490853071212769,131,0.0,2 +50131,13,0.0,1,1.1890851259231567,132,1.0,2 +50132,13,0.0,1,1.3800840377807617,133,1.0,2 +50133,13,0.0,1,1.3350845575332642,134,1.0,2 +50134,13,0.0,1,1.3370845317840576,135,0.0,2 +50135,13,0.0,1,1.6790802478790283,136,0.0,2 +50136,13,1.0,1,1.5720815658569336,137,0.0,2 +50137,13,1.0,1,1.7340794801712036,138,1.0,2 +50138,13,1.0,1,1.9380768537521362,139,1.0,2 +50139,13,1.0,1,1.364084243774414,140,1.0,2 +50140,13,1.0,1,1.4710828065872192,141,1.0,2 +50141,13,1.0,1,1.23308527469635,142,0.0,2 +50142,13,1.0,1,1.4720828533172607,143,1.0,2 +50143,13,1.0,1,1.3620842695236206,144,1.0,2 +50144,13,1.0,1,1.5500818490982056,145,1.0,2 +50145,13,1.0,1,1.2040852308273315,146,0.0,2 +50146,13,1.0,1,1.3280847072601318,147,1.0,2 +50147,13,1.0,1,1.4770827293395996,148,0.0,2 +50148,13,1.0,1,2.023075819015503,149,1.0,2 +50149,13,1.0,1,1.4200835227966309,150,0.0,2 +50150,13,1.0,1,1.666080355644226,151,1.0,2 +50151,13,1.0,1,1.2620853185653687,152,1.0,2 +50152,13,1.0,1,1.4040837287902832,153,0.0,2 +50153,13,1.0,1,1.5910813808441162,154,1.0,2 +50154,13,1.0,1,1.695080041885376,155,0.0,2 +50155,13,0.0,1,1.5180822610855103,156,0.0,2 +50156,13,1.0,1,1.4440832138061523,157,1.0,2 +50157,13,1.0,1,1.295085072517395,158,1.0,2 +50158,13,1.0,1,1.6420806646347046,159,1.0,2 +50159,13,1.0,1,1.2800853252410889,160,1.0,2 +50160,13,1.0,1,1.299085021018982,161,1.0,2 +50161,13,1.0,1,1.928076982498169,162,1.0,2 +50162,13,1.0,1,1.2590852975845337,163,1.0,2 +50163,13,1.0,1,1.2380852699279785,164,1.0,2 +50164,13,1.0,1,1.3710840940475464,165,1.0,2 +50165,13,1.0,1,1.2530852556228638,166,1.0,2 +50166,13,1.0,1,1.5290820598602295,167,0.0,2 +50167,13,0.0,1,2.02707576751709,168,0.0,2 +50168,13,0.0,1,1.1700851917266846,169,0.0,2 +50169,13,0.0,1,1.6740802526474,170,0.0,2 +50170,13,1.0,1,1.4950824975967407,171,0.0,2 +50171,13,0.0,1,2.1780829429626465,172,0.0,2 +50172,13,0.0,1,1.1890851259231567,173,0.0,2 +50173,13,0.0,1,1.246085286140442,174,0.0,2 +50174,13,1.0,1,1.5270822048187256,175,1.0,2 +50175,13,1.0,1,1.2970850467681885,176,1.0,2 +50176,13,0.0,1,1.2970850467681885,177,0.0,2 +50177,13,1.0,1,1.48308265209198,178,1.0,2 +50178,13,1.0,1,1.4700828790664673,179,1.0,2 +50179,13,1.0,1,1.243085265159607,180,1.0,2 +50180,13,1.0,1,1.3380845785140991,181,1.0,2 +50181,13,1.0,1,1.5240821838378906,182,1.0,2 +50182,13,1.0,1,1.3850839138031006,183,1.0,2 +50183,13,1.0,1,1.5880813598632812,184,0.0,2 +50184,13,0.0,1,1.877077579498291,185,1.0,2 +50185,13,0.0,1,1.2270852327346802,186,0.0,2 +50186,13,0.0,1,1.3030849695205688,187,1.0,2 +50187,13,0.0,1,1.6630804538726807,188,0.0,2 +50188,13,1.0,1,1.7460793256759644,189,1.0,2 +50189,13,1.0,1,2.084078311920166,190,0.0,2 +50190,13,1.0,1,1.83607816696167,191,1.0,2 +50191,13,1.0,1,1.368084192276001,192,0.0,2 +50192,13,0.0,1,1.4010837078094482,193,0.0,2 +50193,13,1.0,1,1.7750790119171143,194,1.0,2 +50194,13,1.0,1,1.1550850868225098,195,1.0,2 +50195,13,1.0,1,1.3670841455459595,196,0.0,2 +50196,13,1.0,1,1.7210795879364014,197,0.0,2 +50197,13,1.0,1,1.3480844497680664,198,1.0,2 +50198,13,1.0,1,1.4460831880569458,199,1.0,2 +50199,13,1.0,1,1.2900851964950562,200,0.0,2 +50200,13,0.0,1,1.789078712463379,201,1.0,2 +50201,13,0.0,1,1.5200822353363037,202,1.0,2 +50202,13,0.0,1,1.534082055091858,203,0.0,2 +50203,13,0.0,1,2.4270944595336914,204,0.0,2 +50204,13,1.0,1,1.8090784549713135,205,1.0,2 +50205,13,1.0,1,1.2380852699279785,206,1.0,2 +50206,13,1.0,1,1.364084243774414,207,1.0,2 +50207,13,1.0,1,1.578081488609314,208,1.0,2 +50208,13,1.0,1,1.2590852975845337,209,1.0,2 +50209,13,1.0,1,1.2070852518081665,210,1.0,2 +50210,13,1.0,1,1.59908127784729,211,1.0,2 +50211,13,1.0,1,1.8850774765014648,212,1.0,2 +50212,13,1.0,1,1.2440853118896484,213,1.0,2 +50213,13,1.0,1,1.501082420349121,214,1.0,2 +50214,13,1.0,1,1.4150835275650024,215,1.0,2 +50215,13,1.0,1,1.7760789394378662,216,1.0,2 +50216,13,1.0,1,1.3510843515396118,217,1.0,2 +50217,13,1.0,1,1.647080659866333,218,1.0,2 +50218,13,1.0,1,1.4320833683013916,219,0.0,2 +50219,13,0.0,1,1.4270833730697632,220,0.0,2 +50220,13,1.0,1,1.3590842485427856,221,1.0,2 +50221,13,1.0,1,1.2930850982666016,222,1.0,2 +50222,13,1.0,1,1.4140836000442505,223,1.0,2 +50223,13,1.0,1,1.1860852241516113,224,1.0,2 +50224,13,1.0,1,1.2250852584838867,225,1.0,2 +50225,13,1.0,1,1.4770827293395996,226,0.0,2 +50226,13,1.0,1,2.363091468811035,227,1.0,2 +50227,13,1.0,1,1.5390820503234863,228,0.0,2 +50228,13,0.0,1,1.299085021018982,229,0.0,2 +50229,13,1.0,1,1.641080617904663,230,0.0,2 +50230,13,0.0,1,2.014075756072998,231,0.0,2 +50231,13,0.0,1,1.8820775747299194,232,0.0,2 +50232,13,0.0,1,1.508082389831543,233,0.0,2 +50233,13,0.0,1,1.3040850162506104,234,1.0,2 +50234,13,0.0,1,1.3310846090316772,235,1.0,2 +50235,13,0.0,1,1.3440845012664795,236,0.0,2 +50236,13,1.0,1,1.6300808191299438,237,1.0,2 +50237,13,1.0,1,1.3630841970443726,238,1.0,2 +50238,13,1.0,1,1.3930838108062744,239,1.0,2 +50239,13,1.0,1,1.2610852718353271,240,1.0,2 +50240,13,1.0,1,1.4850826263427734,241,0.0,2 +50241,13,0.0,1,1.9050772190093994,242,0.0,2 +50242,13,1.0,1,1.364084243774414,243,0.0,2 +50243,13,1.0,1,1.9520766735076904,244,1.0,2 +50244,13,1.0,1,1.693079948425293,245,1.0,2 +50245,13,1.0,1,1.3290846347808838,246,1.0,2 +50246,13,1.0,1,1.8300782442092896,247,1.0,2 +50247,13,1.0,1,1.4670828580856323,248,0.0,2 +50248,13,1.0,1,1.2830852270126343,249,0.0,2 +50249,13,1.0,1,1.7930786609649658,250,1.0,2 +50250,13,1.0,1,1.368084192276001,251,1.0,2 +50251,13,1.0,1,1.2630853652954102,252,1.0,2 +50252,13,1.0,1,1.7290794849395752,253,1.0,2 +50253,13,1.0,1,1.3290846347808838,254,0.0,2 +50254,13,1.0,1,1.699079990386963,255,0.0,2 +50255,13,1.0,1,2.03407621383667,256,1.0,2 +50256,13,1.0,1,1.5290820598602295,257,1.0,2 +50257,13,1.0,1,1.3080849647521973,258,0.0,2 +50258,13,0.0,1,2.1920833587646484,259,0.0,2 +50259,13,1.0,1,1.3290846347808838,260,1.0,2 +50260,13,1.0,1,1.1810851097106934,261,1.0,2 +50261,13,1.0,1,1.4430831670761108,262,1.0,2 +50262,13,1.0,1,1.4850826263427734,263,0.0,2 +50263,13,1.0,1,1.3440845012664795,264,1.0,2 +50264,13,1.0,1,1.6820801496505737,265,1.0,2 +50265,13,1.0,1,1.291085124015808,266,1.0,2 +50266,13,1.0,1,1.5920813083648682,267,1.0,2 +50267,13,1.0,1,1.1560851335525513,268,1.0,2 +50268,13,1.0,1,1.4100836515426636,269,1.0,2 +50269,13,1.0,1,1.3620842695236206,270,0.0,2 +50270,13,1.0,1,1.3260847330093384,271,1.0,2 +50271,13,1.0,1,1.641080617904663,272,0.0,2 +50272,13,1.0,1,1.6270809173583984,273,0.0,2 +50273,13,1.0,1,2.2000837326049805,274,1.0,2 +50274,13,0.0,1,1.3370845317840576,275,0.0,2 +50275,13,1.0,1,1.276085376739502,276,0.0,2 +50276,13,1.0,1,1.3540843725204468,277,1.0,2 +50277,13,1.0,1,1.4400832653045654,278,1.0,2 +50278,13,1.0,1,1.166085124015808,279,0.0,2 +50279,13,1.0,1,1.4650828838348389,280,0.0,2 +50280,13,0.0,1,2.132080554962158,281,1.0,2 +50281,13,0.0,1,1.5770814418792725,282,0.0,2 +50282,13,0.0,1,1.600081205368042,283,0.0,2 +50283,13,0.0,1,1.2790852785110474,284,0.0,2 +50284,13,0.0,1,1.5470819473266602,285,0.0,2 +50285,13,1.0,1,1.5430819988250732,286,1.0,2 +50286,13,1.0,1,1.9810762405395508,287,1.0,2 +50287,13,1.0,1,1.6790802478790283,288,1.0,2 +50288,13,1.0,1,1.1230850219726562,289,0.0,2 +50289,13,1.0,1,1.2440853118896484,290,1.0,2 +50290,13,1.0,1,1.626080870628357,291,1.0,2 +50291,13,1.0,1,1.212085247039795,292,1.0,2 +50292,13,1.0,1,1.390083909034729,293,1.0,2 +50293,13,1.0,1,1.2450852394104004,294,1.0,2 +50294,13,1.0,1,1.62208092212677,295,1.0,2 +50295,13,1.0,1,1.1700851917266846,296,0.0,2 +50296,13,1.0,1,1.4880826473236084,297,1.0,2 +50297,13,1.0,1,1.1320850849151611,298,1.0,2 +50298,13,1.0,1,1.135085105895996,299,0.0,2 +50299,13,1.0,1,1.320084810256958,300,1.0,2 +50300,13,1.0,1,1.574081540107727,301,1.0,2 +50301,13,1.0,1,1.8890774250030518,302,1.0,2 +50302,13,1.0,1,1.4930825233459473,303,1.0,2 +50303,13,1.0,1,1.135085105895996,304,1.0,2 +50304,13,1.0,1,1.5280821323394775,305,1.0,2 +50305,13,1.0,1,1.4200835227966309,306,0.0,2 +50306,13,1.0,1,1.9110772609710693,307,1.0,2 +50307,13,1.0,1,1.3220847845077515,308,1.0,2 +50308,13,1.0,1,1.3060849905014038,309,0.0,2 +50309,13,1.0,1,1.8010785579681396,310,0.0,2 +50310,13,1.0,1,1.929076910018921,311,1.0,2 +50311,13,1.0,1,1.6070811748504639,312,1.0,2 +50312,13,1.0,1,1.7730789184570312,313,1.0,2 +50313,13,1.0,1,1.2720853090286255,314,1.0,2 +50314,13,1.0,1,1.2660853862762451,315,1.0,2 +50315,13,1.0,1,1.2830852270126343,316,0.0,2 +50316,13,0.0,1,1.464082956314087,317,1.0,2 +50317,13,0.0,1,1.4260834455490112,318,1.0,2 +50318,13,0.0,1,1.6730802059173584,319,0.0,2 +50319,13,0.0,1,1.3800840377807617,320,1.0,2 +50320,13,0.0,1,1.4320833683013916,321,0.0,2 +50321,13,1.0,1,1.553081750869751,322,1.0,2 +50322,13,1.0,1,1.509082317352295,323,0.0,2 +50323,13,0.0,1,1.6810801029205322,324,0.0,2 +50324,13,0.0,1,2.4140939712524414,325,0.0,2 +50325,13,0.0,1,1.3730840682983398,326,0.0,2 +50326,13,0.0,1,1.2130851745605469,327,0.0,2 +50327,13,0.0,1,1.6200809478759766,328,1.0,2 +50328,13,0.0,1,1.3560843467712402,329,1.0,2 +50329,13,0.0,1,1.1470850706100464,330,0.0,2 +50330,13,0.0,1,2.3960928916931152,331,1.0,2 +50331,13,0.0,1,1.3630841970443726,332,0.0,2 +50332,13,1.0,1,1.556081771850586,333,1.0,2 +50333,13,0.0,1,2.037076234817505,334,1.0,2 +50334,13,0.0,1,1.4270833730697632,335,0.0,2 +50335,13,1.0,1,1.785078763961792,336,0.0,2 +50336,13,0.0,1,1.62208092212677,337,0.0,2 +50337,13,0.0,1,1.6070811748504639,338,1.0,2 +50338,13,0.0,1,1.5330820083618164,339,0.0,2 +50339,13,0.0,1,1.240085244178772,340,1.0,2 +50340,13,0.0,1,1.5100823640823364,341,0.0,2 +50341,13,0.0,1,1.509082317352295,342,0.0,2 +50342,13,1.0,1,1.9170770645141602,343,0.0,2 +50343,13,0.0,1,1.3730840682983398,344,0.0,2 +50344,13,0.0,1,1.4600830078125,345,0.0,2 +50345,13,0.0,1,1.295085072517395,346,0.0,2 +50346,13,0.0,1,1.6070811748504639,347,0.0,2 +50347,13,0.0,1,1.7270796298980713,348,1.0,2 +50348,13,0.0,1,1.3070849180221558,349,0.0,2 +50349,13,1.0,1,1.5430819988250732,350,1.0,2 +50350,13,1.0,1,1.277085304260254,351,0.0,2 +50351,13,0.0,1,1.2240852117538452,352,0.0,2 +50352,13,0.0,1,1.4450831413269043,353,1.0,2 +50353,13,0.0,1,1.2210851907730103,354,0.0,2 +50354,13,1.0,1,2.132080554962158,355,1.0,2 +50355,13,1.0,1,1.1260850429534912,356,1.0,2 +50356,13,1.0,1,1.4450831413269043,357,1.0,2 +50357,13,1.0,1,1.551081895828247,358,1.0,2 +50358,13,1.0,1,1.810078501701355,359,0.0,2 +50359,13,0.0,1,1.1950851678848267,360,1.0,2 +50360,13,0.0,1,1.23308527469635,361,0.0,2 +50361,13,0.0,1,1.4490830898284912,362,0.0,2 +50362,13,0.0,1,1.7680790424346924,363,0.0,2 +50363,13,0.0,1,1.3330845832824707,364,0.0,2 +50364,13,0.0,1,1.5410819053649902,365,0.0,2 +50365,13,0.0,1,1.6110811233520508,366,1.0,2 +50366,13,0.0,1,1.29808509349823,367,0.0,2 +50367,13,0.0,1,2.089078664779663,368,0.0,2 +50368,13,1.0,1,2.267086982727051,369,1.0,2 +50369,13,1.0,1,1.2570853233337402,370,1.0,2 +50370,13,1.0,1,1.5420819520950317,371,1.0,2 +50371,13,1.0,1,1.4200835227966309,372,1.0,2 +50372,13,1.0,1,1.2870851755142212,373,1.0,2 +50373,13,1.0,1,1.324084758758545,374,0.0,2 +50374,13,0.0,1,1.237085223197937,375,1.0,2 +50375,13,0.0,1,1.391083836555481,376,0.0,2 +50376,13,0.0,1,1.5920813083648682,377,0.0,2 +50377,13,0.0,1,1.8070785999298096,378,0.0,2 +50378,13,1.0,1,1.509082317352295,379,0.0,2 +50379,13,1.0,1,2.099079132080078,380,1.0,2 +50380,13,1.0,1,1.6500805616378784,381,1.0,2 +50381,13,1.0,1,1.4270833730697632,382,0.0,2 +50382,13,1.0,1,1.1740851402282715,383,1.0,2 +50383,13,1.0,1,1.4370832443237305,384,1.0,2 +50384,13,1.0,1,1.556081771850586,385,0.0,2 +50385,13,0.0,1,2.2140846252441406,386,0.0,2 +50386,13,1.0,1,1.3010849952697754,387,1.0,2 +50387,13,0.0,1,1.1960852146148682,388,0.0,2 +50388,13,1.0,1,1.135085105895996,389,1.0,2 +50389,13,1.0,1,1.2280852794647217,390,1.0,2 +50390,13,1.0,1,1.2190852165222168,391,1.0,2 +50391,13,1.0,1,1.3750840425491333,392,1.0,2 +50392,13,1.0,1,1.210085153579712,393,0.0,2 +50393,13,0.0,1,1.4840826988220215,394,1.0,2 +50394,13,1.0,1,1.9150772094726562,395,0.0,2 +50395,13,0.0,1,1.3310846090316772,396,0.0,2 +50396,13,0.0,1,1.1910852193832397,397,1.0,2 +50397,13,0.0,1,1.2880852222442627,398,0.0,2 +50398,13,0.0,1,2.049076795578003,399,0.0,2 +50399,13,1.0,1,1.4930825233459473,400,1.0,2 +50400,13,1.0,1,1.3850839138031006,401,0.0,2 +50401,13,1.0,1,1.394083857536316,402,0.0,2 +50402,13,1.0,1,1.3570842742919922,403,1.0,2 +50403,13,1.0,1,1.2280852794647217,404,0.0,2 +50404,13,1.0,1,1.4920825958251953,405,0.0,2 +50405,13,0.0,1,1.2890851497650146,406,0.0,2 +50406,13,0.0,1,1.2790852785110474,407,0.0,2 +50407,13,1.0,1,1.787078857421875,408,1.0,2 +50408,13,1.0,1,1.3030849695205688,409,1.0,2 +50409,13,0.0,1,1.4050836563110352,410,1.0,2 +50410,13,1.0,1,1.8590779304504395,411,1.0,2 +50411,13,0.0,1,1.2860852479934692,412,0.0,2 +50412,13,1.0,1,1.264085292816162,413,1.0,2 +50413,13,1.0,1,1.210085153579712,414,0.0,2 +50414,13,0.0,1,1.2260851860046387,415,0.0,2 +50415,13,1.0,1,1.2590852975845337,416,1.0,2 +50416,13,1.0,1,1.3440845012664795,417,0.0,2 +50417,13,0.0,1,1.7450792789459229,418,0.0,2 +50418,13,1.0,1,1.5810813903808594,419,1.0,2 +50419,13,1.0,1,1.456083059310913,420,1.0,2 +50420,13,1.0,1,1.4420832395553589,421,1.0,2 +50421,13,1.0,1,1.5390820503234863,422,1.0,2 +50422,13,1.0,1,1.29808509349823,423,1.0,2 +50423,13,1.0,1,1.1070849895477295,424,1.0,2 +50424,13,1.0,1,1.1600850820541382,425,1.0,2 +50425,13,1.0,1,1.5270822048187256,426,1.0,2 +50426,13,1.0,1,1.4750827550888062,427,0.0,2 +50427,13,1.0,1,1.6610803604125977,428,1.0,2 +50428,13,0.0,1,2.2520861625671387,429,0.0,2 +50429,13,1.0,1,1.3030849695205688,430,0.0,2 +50430,13,0.0,1,1.9740763902664185,431,0.0,2 +50431,13,1.0,1,1.4010837078094482,432,1.0,2 +50432,13,1.0,1,1.7500792741775513,433,1.0,2 +50433,13,1.0,1,1.3330845832824707,434,1.0,2 +50434,13,1.0,1,1.4260834455490112,435,0.0,2 +50435,13,0.0,1,1.2080851793289185,436,0.0,2 +50436,13,0.0,1,1.3490843772888184,437,1.0,2 +50437,13,0.0,1,1.1940851211547852,438,0.0,2 +50438,13,1.0,1,1.4110835790634155,439,0.0,2 +50439,13,1.0,1,1.884077548980713,440,1.0,2 +50440,13,1.0,1,1.439083218574524,441,1.0,2 +50441,13,1.0,1,1.4010837078094482,442,1.0,2 +50442,13,1.0,1,1.291085124015808,443,1.0,2 +50443,13,1.0,1,1.5770814418792725,444,0.0,2 +50444,13,0.0,1,1.237085223197937,445,0.0,2 +50445,13,0.0,1,1.7950787544250488,446,0.0,2 +50446,13,1.0,1,2.2200846672058105,447,1.0,2 +50447,13,1.0,1,1.626080870628357,448,1.0,2 +50448,13,1.0,1,1.302085041999817,449,0.0,2 +50449,13,1.0,1,1.648080587387085,450,1.0,2 +50450,13,1.0,1,1.3100849390029907,451,1.0,2 +50451,13,1.0,1,1.5900813341140747,452,1.0,2 +50452,13,1.0,1,1.5240821838378906,453,0.0,2 +50453,13,1.0,1,1.3110848665237427,454,1.0,2 +50454,13,1.0,1,1.5790815353393555,455,1.0,2 +50455,13,1.0,1,1.741079330444336,456,1.0,2 +50456,13,1.0,1,1.417083501815796,457,1.0,2 +50457,13,1.0,1,1.2860852479934692,458,1.0,2 +50458,13,1.0,1,1.2560852766036987,459,1.0,2 +50459,13,1.0,1,1.8120784759521484,460,1.0,2 +50460,13,1.0,1,1.2280852794647217,461,1.0,2 +50461,13,1.0,1,1.549081802368164,462,1.0,2 +50462,13,1.0,1,1.4620829820632935,463,1.0,2 +50463,13,1.0,1,1.4240834712982178,464,0.0,2 +50464,13,0.0,1,2.1760826110839844,465,1.0,2 +50465,13,0.0,1,1.347084403038025,466,0.0,2 +50466,13,0.0,1,2.112079620361328,467,1.0,2 +50467,13,0.0,1,1.6210808753967285,468,0.0,2 +50468,13,0.0,1,1.3960838317871094,469,0.0,2 +50469,13,0.0,1,2.335090160369873,470,0.0,2 +50470,13,0.0,1,1.6560804843902588,471,1.0,2 +50471,13,0.0,1,1.391083836555481,472,1.0,2 +50472,13,0.0,1,2.119080066680908,473,0.0,2 +50473,13,1.0,1,1.7100797891616821,474,0.0,2 +50474,13,1.0,1,1.8180783987045288,475,1.0,2 +50475,13,1.0,1,1.574081540107727,476,1.0,2 +50476,13,1.0,1,1.343084454536438,477,1.0,2 +50477,13,0.0,1,1.2350852489471436,478,0.0,2 +50478,13,1.0,1,1.3540843725204468,479,1.0,2 +50479,13,1.0,1,1.3550843000411987,480,1.0,2 +50480,13,1.0,1,1.3290846347808838,481,1.0,2 +50481,13,1.0,1,1.4940825700759888,482,1.0,2 +50482,13,1.0,1,2.271087169647217,483,1.0,2 +50483,13,1.0,1,1.2260851860046387,484,1.0,2 +50484,13,1.0,1,1.7560791969299316,485,1.0,2 +50485,13,1.0,1,1.3660842180252075,486,1.0,2 +50486,13,1.0,1,1.4710828065872192,487,1.0,2 +50487,13,1.0,1,1.5180822610855103,488,1.0,2 +50488,13,1.0,1,1.556081771850586,489,1.0,2 +50489,13,1.0,1,1.264085292816162,490,0.0,2 +50490,13,1.0,1,1.3990837335586548,491,1.0,2 +50491,13,1.0,1,1.8890774250030518,492,1.0,2 +50492,13,1.0,1,1.7200796604156494,493,0.0,2 +50493,13,1.0,1,1.6150810718536377,494,0.0,2 +50494,13,0.0,1,1.4480831623077393,495,1.0,2 +50495,13,0.0,1,1.23308527469635,496,0.0,2 +50496,13,1.0,1,1.3480844497680664,497,1.0,2 +50497,13,1.0,1,1.299085021018982,498,1.0,2 +50498,13,1.0,1,1.509082317352295,499,1.0,2 +50499,13,1.0,1,1.4620829820632935,500,1.0,2 +50500,13,0.0,2,1.6940799951553345,1,0.0,2 +50501,13,1.0,2,1.1370850801467896,2,0.0,2 +50502,13,0.0,2,1.647080659866333,3,1.0,2 +50503,13,0.0,2,1.20908522605896,4,0.0,2 +50504,13,0.0,2,1.7860788106918335,5,0.0,2 +50505,13,0.0,2,1.295085072517395,6,0.0,2 +50506,13,0.0,2,1.5100823640823364,7,1.0,2 +50507,13,0.0,2,1.20908522605896,8,0.0,2 +50508,13,1.0,2,1.457082986831665,9,1.0,2 +50509,13,1.0,2,1.6190810203552246,10,1.0,2 +50510,13,1.0,2,1.2270852327346802,11,1.0,2 +50511,13,1.0,2,1.5620816946029663,12,0.0,2 +50512,13,0.0,2,1.267085313796997,13,0.0,2 +50513,13,0.0,2,1.9330768585205078,14,0.0,2 +50514,13,0.0,2,1.6110811233520508,15,1.0,2 +50515,13,0.0,2,1.3800840377807617,16,1.0,2 +50516,13,0.0,2,1.210085153579712,17,1.0,2 +50517,13,0.0,2,1.4220834970474243,18,0.0,2 +50518,13,0.0,2,1.409083604812622,19,1.0,2 +50519,13,0.0,2,1.138085126876831,20,1.0,2 +50520,13,0.0,2,1.2340853214263916,21,0.0,2 +50521,13,0.0,2,1.7050797939300537,22,0.0,2 +50522,13,1.0,2,1.5280821323394775,23,1.0,2 +50523,13,1.0,2,1.264085292816162,24,0.0,2 +50524,13,0.0,2,1.898077368736267,25,1.0,2 +50525,13,0.0,2,1.7690789699554443,26,0.0,2 +50526,13,0.0,2,1.3090848922729492,27,1.0,2 +50527,13,0.0,2,1.2050851583480835,28,0.0,2 +50528,13,1.0,2,1.644080638885498,29,0.0,2 +50529,13,1.0,2,1.5270822048187256,30,1.0,2 +50530,13,1.0,2,1.3790839910507202,31,1.0,2 +50531,13,1.0,2,1.4490830898284912,32,0.0,2 +50532,13,0.0,2,1.6270809173583984,33,1.0,2 +50533,13,0.0,2,1.4030836820602417,34,0.0,2 +50534,13,1.0,2,1.3070849180221558,35,1.0,2 +50535,13,1.0,2,1.3600842952728271,36,0.0,2 +50536,13,0.0,2,1.5350821018218994,37,1.0,2 +50537,13,0.0,2,1.5720815658569336,38,0.0,2 +50538,13,0.0,2,1.23308527469635,39,0.0,2 +50539,13,0.0,2,1.6670804023742676,40,0.0,2 +50540,13,0.0,2,1.4300833940505981,41,0.0,2 +50541,13,1.0,2,1.551081895828247,42,1.0,2 +50542,13,1.0,2,1.1490850448608398,43,0.0,2 +50543,13,1.0,2,1.5210821628570557,44,0.0,2 +50544,13,1.0,2,1.9090771675109863,45,1.0,2 +50545,13,1.0,2,1.7700790166854858,46,0.0,2 +50546,13,1.0,2,1.8950774669647217,47,0.0,2 +50547,13,0.0,2,1.8600778579711914,48,0.0,2 +50548,13,1.0,2,1.3830839395523071,49,0.0,2 +50549,13,0.0,2,1.9070773124694824,50,0.0,2 +50550,13,0.0,2,1.4700828790664673,51,0.0,2 +50551,13,0.0,2,2.312088966369629,52,0.0,2 +50552,13,1.0,2,1.148085117340088,53,1.0,2 +50553,13,1.0,2,1.2130851745605469,54,0.0,2 +50554,13,0.0,2,1.7240796089172363,55,1.0,2 +50555,13,0.0,2,1.2500853538513184,56,0.0,2 +50556,13,1.0,2,1.4400832653045654,57,0.0,2 +50557,13,1.0,2,1.7170796394348145,58,1.0,2 +50558,13,1.0,2,1.6230809688568115,59,1.0,2 +50559,13,1.0,2,1.3330845832824707,60,1.0,2 +50560,13,1.0,2,1.3850839138031006,61,0.0,2 +50561,13,1.0,2,1.718079686164856,62,1.0,2 +50562,13,1.0,2,1.4240834712982178,63,0.0,2 +50563,13,1.0,2,1.1620850563049316,64,1.0,2 +50564,13,1.0,2,1.3180848360061646,65,1.0,2 +50565,13,1.0,2,1.5310821533203125,66,0.0,2 +50566,13,0.0,2,1.4290833473205566,67,0.0,2 +50567,13,1.0,2,1.6330807209014893,68,1.0,2 +50568,13,1.0,2,1.3320846557617188,69,0.0,2 +50569,13,0.0,2,1.6840801239013672,70,0.0,2 +50570,13,0.0,2,2.2040839195251465,71,1.0,2 +50571,13,0.0,2,1.267085313796997,72,0.0,2 +50572,13,1.0,2,1.931077003479004,73,1.0,2 +50573,13,1.0,2,1.2580852508544922,74,0.0,2 +50574,13,1.0,2,1.6790802478790283,75,1.0,2 +50575,13,1.0,2,1.6600804328918457,76,1.0,2 +50576,13,1.0,2,1.4810826778411865,77,0.0,2 +50577,13,0.0,2,1.5680816173553467,78,1.0,2 +50578,13,0.0,2,1.5640816688537598,79,0.0,2 +50579,13,1.0,2,1.4080836772918701,80,0.0,2 +50580,13,0.0,2,1.236085295677185,81,0.0,2 +50581,13,0.0,2,1.2220852375030518,82,1.0,2 +50582,13,0.0,2,1.3620842695236206,83,0.0,2 +50583,13,0.0,2,2.319089412689209,84,0.0,2 +50584,13,0.0,2,1.6310808658599854,85,0.0,2 +50585,13,0.0,2,1.6090810298919678,86,0.0,2 +50586,13,1.0,2,1.5940812826156616,87,0.0,2 +50587,13,1.0,2,2.045076608657837,88,0.0,2 +50588,13,1.0,2,2.049076795578003,89,1.0,2 +50589,13,1.0,2,1.7540792226791382,90,1.0,2 +50590,13,1.0,2,1.7070798873901367,91,1.0,2 +50591,13,1.0,2,1.2750853300094604,92,0.0,2 +50592,13,1.0,2,2.2200846672058105,93,1.0,2 +50593,13,1.0,2,1.5670816898345947,94,0.0,2 +50594,13,1.0,2,1.2250852584838867,95,1.0,2 +50595,13,1.0,2,1.2300852537155151,96,1.0,2 +50596,13,1.0,2,1.2920851707458496,97,0.0,2 +50597,13,1.0,2,1.7260795831680298,98,1.0,2 +50598,13,1.0,2,1.4910825490951538,99,0.0,2 +50599,13,1.0,2,1.3450844287872314,100,0.0,2 +50600,13,0.0,2,1.5240821838378906,101,0.0,2 +50601,13,0.0,2,1.5760815143585205,102,0.0,2 +50602,13,0.0,2,1.5690815448760986,103,0.0,2 +50603,13,1.0,2,1.2270852327346802,104,0.0,2 +50604,13,0.0,2,1.2140852212905884,105,0.0,2 +50605,13,0.0,2,1.695080041885376,106,1.0,2 +50606,13,0.0,2,1.3380845785140991,107,0.0,2 +50607,13,1.0,2,1.4070836305618286,108,1.0,2 +50608,13,1.0,2,1.549081802368164,109,1.0,2 +50609,13,1.0,2,1.4240834712982178,110,1.0,2 +50610,13,1.0,2,1.3670841455459595,111,0.0,2 +50611,13,1.0,2,1.4540830850601196,112,0.0,2 +50612,13,0.0,2,1.9600765705108643,113,0.0,2 +50613,13,1.0,2,1.237085223197937,114,0.0,2 +50614,13,0.0,2,1.1630851030349731,115,0.0,2 +50615,13,0.0,2,1.553081750869751,116,0.0,2 +50616,13,1.0,2,1.4000837802886963,117,1.0,2 +50617,13,1.0,2,1.5830814838409424,118,1.0,2 +50618,13,1.0,2,1.1820851564407349,119,1.0,2 +50619,13,1.0,2,1.4600830078125,120,1.0,2 +50620,13,1.0,2,1.3890838623046875,121,1.0,2 +50621,13,1.0,2,1.4080836772918701,122,1.0,2 +50622,13,1.0,2,1.8490779399871826,123,0.0,2 +50623,13,1.0,2,1.4140836000442505,124,0.0,2 +50624,13,1.0,2,1.435083270072937,125,1.0,2 +50625,13,1.0,2,1.3590842485427856,126,1.0,2 +50626,13,1.0,2,1.277085304260254,127,1.0,2 +50627,13,1.0,2,1.4330832958221436,128,1.0,2 +50628,13,1.0,2,1.4080836772918701,129,1.0,2 +50629,13,1.0,2,1.2870851755142212,130,1.0,2 +50630,13,1.0,2,1.4530830383300781,131,1.0,2 +50631,13,1.0,2,1.2880852222442627,132,1.0,2 +50632,13,1.0,2,1.2820852994918823,133,0.0,2 +50633,13,0.0,2,1.2890851497650146,134,1.0,2 +50634,13,0.0,2,1.3140848875045776,135,1.0,2 +50635,13,0.0,2,1.3450844287872314,136,0.0,2 +50636,13,0.0,2,1.3050849437713623,137,1.0,2 +50637,13,0.0,2,1.3830839395523071,138,0.0,2 +50638,13,1.0,2,2.0050759315490723,139,1.0,2 +50639,13,1.0,2,1.718079686164856,140,1.0,2 +50640,13,1.0,2,1.509082317352295,141,0.0,2 +50641,13,1.0,2,1.5420819520950317,142,1.0,2 +50642,13,1.0,2,1.3710840940475464,143,0.0,2 +50643,13,0.0,2,1.2800853252410889,144,1.0,2 +50644,13,0.0,2,1.4230834245681763,145,1.0,2 +50645,13,0.0,2,1.1310850381851196,146,0.0,2 +50646,13,1.0,2,1.7120797634124756,147,0.0,2 +50647,13,1.0,2,1.3330845832824707,148,1.0,2 +50648,13,1.0,2,1.2860852479934692,149,0.0,2 +50649,13,0.0,2,1.2250852584838867,150,1.0,2 +50650,13,0.0,2,1.3830839395523071,151,0.0,2 +50651,13,1.0,2,1.5150822401046753,152,1.0,2 +50652,13,1.0,2,2.0010759830474854,153,1.0,2 +50653,13,1.0,2,1.394083857536316,154,1.0,2 +50654,13,1.0,2,1.4060837030410767,155,0.0,2 +50655,13,1.0,2,2.1300806999206543,156,1.0,2 +50656,13,1.0,2,1.2790852785110474,157,0.0,2 +50657,13,0.0,2,1.4600830078125,158,1.0,2 +50658,13,0.0,2,1.2420852184295654,159,0.0,2 +50659,13,1.0,2,1.5160822868347168,160,1.0,2 +50660,13,0.0,2,1.2010852098464966,161,0.0,2 +50661,13,1.0,2,1.4320833683013916,162,1.0,2 +50662,13,1.0,2,1.2410852909088135,163,1.0,2 +50663,13,1.0,2,1.3540843725204468,164,0.0,2 +50664,13,1.0,2,1.4730827808380127,165,0.0,2 +50665,13,0.0,2,2.031075954437256,166,0.0,2 +50666,13,0.0,2,1.9200770854949951,167,0.0,2 +50667,13,0.0,2,1.6200809478759766,168,1.0,2 +50668,13,0.0,2,1.1600850820541382,169,0.0,2 +50669,13,0.0,2,1.4260834455490112,170,0.0,2 +50670,13,0.0,2,2.0070760250091553,171,0.0,2 +50671,13,1.0,2,1.4590829610824585,172,1.0,2 +50672,13,1.0,2,1.2130851745605469,173,0.0,2 +50673,13,0.0,2,1.4280834197998047,174,0.0,2 +50674,13,0.0,2,1.6740802526474,175,1.0,2 +50675,13,0.0,2,1.20908522605896,176,1.0,2 +50676,13,0.0,2,1.274085283279419,177,0.0,2 +50677,13,1.0,2,1.3600842952728271,178,1.0,2 +50678,13,1.0,2,1.2150852680206299,179,0.0,2 +50679,13,0.0,2,1.5120823383331299,180,0.0,2 +50680,13,0.0,2,1.6140810251235962,181,1.0,2 +50681,13,0.0,2,1.1250849962234497,182,0.0,2 +50682,13,0.0,2,1.4950824975967407,183,0.0,2 +50683,13,1.0,2,1.557081699371338,184,0.0,2 +50684,13,0.0,2,1.8120784759521484,185,0.0,2 +50685,13,0.0,2,2.1870832443237305,186,0.0,2 +50686,13,0.0,2,1.3890838623046875,187,0.0,2 +50687,13,1.0,2,1.3010849952697754,188,1.0,2 +50688,13,1.0,2,1.4470831155776978,189,1.0,2 +50689,13,1.0,2,1.4620829820632935,190,0.0,2 +50690,13,1.0,2,2.0030760765075684,191,1.0,2 +50691,13,1.0,2,1.2840852737426758,192,0.0,2 +50692,13,1.0,2,1.4100836515426636,193,0.0,2 +50693,13,0.0,2,1.1970851421356201,194,1.0,2 +50694,13,0.0,2,1.5440819263458252,195,0.0,2 +50695,13,1.0,2,2.1520814895629883,196,1.0,2 +50696,13,1.0,2,1.2570853233337402,197,0.0,2 +50697,13,0.0,2,1.693079948425293,198,1.0,2 +50698,13,0.0,2,1.3100849390029907,199,0.0,2 +50699,13,0.0,2,1.7640790939331055,200,0.0,2 +50700,13,0.0,2,1.5110822916030884,201,0.0,2 +50701,13,1.0,2,1.766079068183899,202,0.0,2 +50702,13,1.0,2,2.295088291168213,203,0.0,2 +50703,13,0.0,2,1.4950824975967407,204,0.0,2 +50704,13,0.0,2,1.699079990386963,205,0.0,2 +50705,13,0.0,2,1.8600778579711914,206,1.0,2 +50706,13,0.0,2,1.3300846815109253,207,1.0,2 +50707,13,0.0,2,1.3510843515396118,208,0.0,2 +50708,13,0.0,2,1.2250852584838867,209,0.0,2 +50709,13,0.0,2,2.09407901763916,210,0.0,2 +50710,13,0.0,2,1.413083553314209,211,0.0,2 +50711,13,0.0,2,1.20308518409729,212,0.0,2 +50712,13,0.0,2,1.670080304145813,213,1.0,2 +50713,13,0.0,2,1.2190852165222168,214,0.0,2 +50714,13,1.0,2,1.4730827808380127,215,0.0,2 +50715,13,0.0,2,1.714079737663269,216,1.0,2 +50716,13,0.0,2,1.7050797939300537,217,0.0,2 +50717,13,1.0,2,1.9800763130187988,218,1.0,2 +50718,13,1.0,2,1.1300849914550781,219,1.0,2 +50719,13,1.0,2,1.6120810508728027,220,0.0,2 +50720,13,1.0,2,1.2560852766036987,221,1.0,2 +50721,13,1.0,2,1.3550843000411987,222,0.0,2 +50722,13,1.0,2,1.8590779304504395,223,1.0,2 +50723,13,1.0,2,1.8120784759521484,224,0.0,2 +50724,13,0.0,2,1.1440850496292114,225,0.0,2 +50725,13,1.0,2,1.2750853300094604,226,0.0,2 +50726,13,0.0,2,1.5420819520950317,227,0.0,2 +50727,13,0.0,2,1.7100797891616821,228,1.0,2 +50728,13,0.0,2,1.2240852117538452,229,0.0,2 +50729,13,1.0,2,1.7260795831680298,230,0.0,2 +50730,13,0.0,2,1.4040837287902832,231,1.0,2 +50731,13,0.0,2,1.601081132888794,232,1.0,2 +50732,13,0.0,2,1.3220847845077515,233,0.0,2 +50733,13,1.0,2,1.2890851497650146,234,1.0,2 +50734,13,1.0,2,1.4540830850601196,235,0.0,2 +50735,13,0.0,2,2.062077522277832,236,1.0,2 +50736,13,0.0,2,1.4100836515426636,237,1.0,2 +50737,13,0.0,2,1.5710816383361816,238,1.0,2 +50738,13,0.0,2,1.210085153579712,239,1.0,2 +50739,13,0.0,2,1.0960849523544312,240,0.0,2 +50740,13,0.0,2,1.7290794849395752,241,0.0,2 +50741,13,0.0,2,2.085078477859497,242,1.0,2 +50742,13,0.0,2,1.6060811281204224,243,1.0,2 +50743,13,0.0,2,1.7970786094665527,244,0.0,2 +50744,13,1.0,2,1.551081895828247,245,0.0,2 +50745,13,0.0,2,1.3000850677490234,246,1.0,2 +50746,13,0.0,2,1.1470850706100464,247,0.0,2 +50747,13,1.0,2,1.7190797328948975,248,1.0,2 +50748,13,1.0,2,1.3220847845077515,249,1.0,2 +50749,13,1.0,2,1.3370845317840576,250,0.0,2 +50750,13,1.0,2,1.267085313796997,251,1.0,2 +50751,13,1.0,2,1.4930825233459473,252,0.0,2 +50752,13,1.0,2,1.1920851469039917,253,0.0,2 +50753,13,0.0,2,1.8460780382156372,254,1.0,2 +50754,13,0.0,2,1.9650764465332031,255,0.0,2 +50755,13,0.0,2,1.530082106590271,256,0.0,2 +50756,13,0.0,2,1.4760828018188477,257,0.0,2 +50757,13,1.0,2,2.1630821228027344,258,1.0,2 +50758,13,1.0,2,1.3320846557617188,259,0.0,2 +50759,13,1.0,2,1.5290820598602295,260,1.0,2 +50760,13,1.0,2,1.8470780849456787,261,1.0,2 +50761,13,1.0,2,1.2510852813720703,262,1.0,2 +50762,13,1.0,2,1.4430831670761108,263,0.0,2 +50763,13,0.0,2,1.6790802478790283,264,1.0,2 +50764,13,0.0,2,1.7630791664123535,265,0.0,2 +50765,13,1.0,2,1.4980825185775757,266,1.0,2 +50766,13,1.0,2,1.346084475517273,267,1.0,2 +50767,13,1.0,2,1.2310853004455566,268,1.0,2 +50768,13,1.0,2,1.4760828018188477,269,0.0,2 +50769,13,0.0,2,1.276085376739502,270,0.0,2 +50770,13,1.0,2,1.1940851211547852,271,0.0,2 +50771,13,1.0,2,1.2420852184295654,272,0.0,2 +50772,13,0.0,2,1.1740851402282715,273,1.0,2 +50773,13,0.0,2,1.1230850219726562,274,0.0,2 +50774,13,0.0,2,1.8860775232315063,275,1.0,2 +50775,13,0.0,2,1.3730840682983398,276,0.0,2 +50776,13,0.0,2,1.7310795783996582,277,0.0,2 +50777,13,0.0,2,1.456083059310913,278,0.0,2 +50778,13,1.0,2,2.065077543258667,279,0.0,2 +50779,13,1.0,2,1.3000850677490234,280,0.0,2 +50780,13,0.0,2,2.1760826110839844,281,0.0,2 +50781,13,1.0,2,2.2240848541259766,282,0.0,2 +50782,13,0.0,2,1.9260770082473755,283,0.0,2 +50783,13,0.0,2,1.3930838108062744,284,0.0,2 +50784,13,0.0,2,1.8420780897140503,285,1.0,2 +50785,13,0.0,2,1.5800814628601074,286,0.0,2 +50786,13,0.0,2,2.543099880218506,287,0.0,2 +50787,13,1.0,2,1.7060798406600952,288,0.0,2 +50788,13,1.0,2,2.045076608657837,289,1.0,2 +50789,13,1.0,2,1.2130851745605469,290,1.0,2 +50790,13,1.0,2,1.3440845012664795,291,1.0,2 +50791,13,1.0,2,1.534082055091858,292,1.0,2 +50792,13,1.0,2,1.324084758758545,293,0.0,2 +50793,13,0.0,2,1.1970851421356201,294,0.0,2 +50794,13,1.0,2,1.6620804071426392,295,0.0,2 +50795,13,1.0,2,1.5280821323394775,296,0.0,2 +50796,13,1.0,2,1.3990837335586548,297,1.0,2 +50797,13,1.0,2,1.3270846605300903,298,1.0,2 +50798,13,1.0,2,1.2530852556228638,299,0.0,2 +50799,13,1.0,2,1.2160851955413818,300,1.0,2 +50800,13,1.0,2,1.3630841970443726,301,1.0,2 +50801,13,1.0,2,1.464082956314087,302,0.0,2 +50802,13,1.0,2,1.5900813341140747,303,1.0,2 +50803,13,1.0,2,1.7600791454315186,304,1.0,2 +50804,13,1.0,2,1.4840826988220215,305,0.0,2 +50805,13,1.0,2,1.5790815353393555,306,0.0,2 +50806,13,0.0,2,1.688080072402954,307,1.0,2 +50807,13,0.0,2,1.2880852222442627,308,0.0,2 +50808,13,0.0,2,1.412083625793457,309,0.0,2 +50809,13,0.0,2,1.881077527999878,310,0.0,2 +50810,13,0.0,2,1.4900826215744019,311,1.0,2 +50811,13,0.0,2,1.274085283279419,312,0.0,2 +50812,13,1.0,2,1.9430768489837646,313,0.0,2 +50813,13,1.0,2,2.116079807281494,314,1.0,2 +50814,13,1.0,2,1.6970798969268799,315,0.0,2 +50815,13,0.0,2,1.1930851936340332,316,1.0,2 +50816,13,1.0,2,1.4410831928253174,317,1.0,2 +50817,13,0.0,2,1.342084527015686,318,1.0,2 +50818,13,0.0,2,1.3270846605300903,319,0.0,2 +50819,13,1.0,2,1.3090848922729492,320,1.0,2 +50820,13,0.0,2,1.435083270072937,321,0.0,2 +50821,13,1.0,2,1.3550843000411987,322,0.0,2 +50822,13,0.0,2,1.5930812358856201,323,0.0,2 +50823,13,0.0,2,1.461082935333252,324,0.0,2 +50824,13,1.0,2,1.7610790729522705,325,1.0,2 +50825,13,1.0,2,1.236085295677185,326,0.0,2 +50826,13,0.0,2,1.6860800981521606,327,0.0,2 +50827,13,0.0,2,1.5670816898345947,328,0.0,2 +50828,13,0.0,2,1.6630804538726807,329,0.0,2 +50829,13,0.0,2,1.2930850982666016,330,0.0,2 +50830,13,0.0,2,1.210085153579712,331,1.0,2 +50831,13,0.0,2,1.4240834712982178,332,0.0,2 +50832,13,1.0,2,1.9960761070251465,333,1.0,2 +50833,13,1.0,2,1.2710853815078735,334,1.0,2 +50834,13,1.0,2,1.5830814838409424,335,0.0,2 +50835,13,1.0,2,1.6870801448822021,336,1.0,2 +50836,13,1.0,2,1.1940851211547852,337,1.0,2 +50837,13,1.0,2,1.3300846815109253,338,1.0,2 +50838,13,1.0,2,1.3580843210220337,339,0.0,2 +50839,13,0.0,2,2.117079973220825,340,1.0,2 +50840,13,0.0,2,1.2070852518081665,341,1.0,2 +50841,13,0.0,2,1.3710840940475464,342,0.0,2 +50842,13,0.0,2,1.368084192276001,343,0.0,2 +50843,13,1.0,2,1.5120823383331299,344,0.0,2 +50844,13,0.0,2,1.2190852165222168,345,0.0,2 +50845,13,0.0,2,1.8530778884887695,346,0.0,2 +50846,13,1.0,2,1.695080041885376,347,1.0,2 +50847,13,1.0,2,1.2720853090286255,348,1.0,2 +50848,13,1.0,2,1.148085117340088,349,1.0,2 +50849,13,1.0,2,1.6090810298919678,350,1.0,2 +50850,13,1.0,2,1.2140852212905884,351,1.0,2 +50851,13,1.0,2,2.2060842514038086,352,1.0,2 +50852,13,1.0,2,1.2880852222442627,353,0.0,2 +50853,13,0.0,2,1.240085244178772,354,1.0,2 +50854,13,0.0,2,1.3340846300125122,355,0.0,2 +50855,13,0.0,2,1.3080849647521973,356,0.0,2 +50856,13,1.0,2,1.2920851707458496,357,0.0,2 +50857,13,0.0,2,1.486082673072815,358,1.0,2 +50858,13,0.0,2,1.3330845832824707,359,0.0,2 +50859,13,1.0,2,1.3080849647521973,360,1.0,2 +50860,13,1.0,2,1.2290852069854736,361,0.0,2 +50861,13,0.0,2,1.8150784969329834,362,0.0,2 +50862,13,0.0,2,1.5800814628601074,363,0.0,2 +50863,13,0.0,2,1.2660853862762451,364,0.0,2 +50864,13,1.0,2,1.7930786609649658,365,1.0,2 +50865,13,1.0,2,1.3710840940475464,366,0.0,2 +50866,13,0.0,2,1.2830852270126343,367,1.0,2 +50867,13,0.0,2,1.4960825443267822,368,0.0,2 +50868,13,0.0,2,1.3800840377807617,369,0.0,2 +50869,13,0.0,2,1.7380794286727905,370,0.0,2 +50870,13,1.0,2,1.3830839395523071,371,0.0,2 +50871,13,0.0,2,1.2860852479934692,372,0.0,2 +50872,13,0.0,2,1.78407883644104,373,0.0,2 +50873,13,0.0,2,2.0540771484375,374,0.0,2 +50874,13,0.0,2,1.1590851545333862,375,1.0,2 +50875,13,0.0,2,1.2530852556228638,376,1.0,2 +50876,13,0.0,2,1.2260851860046387,377,0.0,2 +50877,13,0.0,2,1.7090797424316406,378,0.0,2 +50878,13,1.0,2,1.482082724571228,379,0.0,2 +50879,13,0.0,2,1.4840826988220215,380,1.0,2 +50880,13,0.0,2,1.1940851211547852,381,0.0,2 +50881,13,0.0,2,1.1820851564407349,382,0.0,2 +50882,13,0.0,2,1.6390807628631592,383,1.0,2 +50883,13,0.0,2,1.5190821886062622,384,1.0,2 +50884,13,0.0,2,1.172085165977478,385,1.0,2 +50885,13,0.0,2,1.2850852012634277,386,0.0,2 +50886,13,0.0,2,1.1780850887298584,387,0.0,2 +50887,13,0.0,2,1.5940812826156616,388,1.0,2 +50888,13,0.0,2,2.1670823097229004,389,1.0,2 +50889,13,0.0,2,1.1190850734710693,390,0.0,2 +50890,13,0.0,2,1.3970837593078613,391,0.0,2 +50891,13,0.0,2,1.810078501701355,392,0.0,2 +50892,13,1.0,2,1.8260782957077026,393,1.0,2 +50893,13,1.0,2,1.1770851612091064,394,0.0,2 +50894,13,0.0,2,1.8220783472061157,395,1.0,2 +50895,13,0.0,2,1.4080836772918701,396,0.0,2 +50896,13,0.0,2,2.014075756072998,397,0.0,2 +50897,13,1.0,2,1.6680803298950195,398,0.0,2 +50898,13,0.0,2,1.4710828065872192,399,1.0,2 +50899,13,0.0,2,1.6100810766220093,400,0.0,2 +50900,13,0.0,2,1.8690776824951172,401,1.0,2 +50901,13,0.0,2,1.785078763961792,402,0.0,2 +50902,13,0.0,2,1.2280852794647217,403,0.0,2 +50903,13,1.0,2,1.5760815143585205,404,0.0,2 +50904,13,1.0,2,2.073077917098999,405,1.0,2 +50905,13,0.0,2,1.2450852394104004,406,0.0,2 +50906,13,0.0,2,1.109084963798523,407,1.0,2 +50907,13,0.0,2,1.6330807209014893,408,0.0,2 +50908,13,1.0,2,1.2690852880477905,409,0.0,2 +50909,13,1.0,2,1.2150852680206299,410,0.0,2 +50910,13,0.0,2,1.1630851030349731,411,1.0,2 +50911,13,0.0,2,1.2580852508544922,412,1.0,2 +50912,13,0.0,2,1.1980851888656616,413,0.0,2 +50913,13,0.0,2,1.5800814628601074,414,0.0,2 +50914,13,1.0,2,1.4920825958251953,415,1.0,2 +50915,13,1.0,2,1.699079990386963,416,1.0,2 +50916,13,1.0,2,1.6740802526474,417,1.0,2 +50917,13,1.0,2,1.2780853509902954,418,0.0,2 +50918,13,1.0,2,2.1260805130004883,419,1.0,2 +50919,13,1.0,2,1.6050810813903809,420,1.0,2 +50920,13,1.0,2,1.4880826473236084,421,1.0,2 +50921,13,1.0,2,1.5170822143554688,422,1.0,2 +50922,13,1.0,2,1.2540853023529053,423,1.0,2 +50923,13,1.0,2,1.2920851707458496,424,0.0,2 +50924,13,0.0,2,2.057077169418335,425,0.0,2 +50925,13,1.0,2,1.3110848665237427,426,0.0,2 +50926,13,1.0,2,1.9150772094726562,427,1.0,2 +50927,13,1.0,2,1.2780853509902954,428,1.0,2 +50928,13,1.0,2,1.2880852222442627,429,1.0,2 +50929,13,1.0,2,1.2560852766036987,430,0.0,2 +50930,13,1.0,2,2.2390856742858887,431,0.0,2 +50931,13,0.0,2,1.1510851383209229,432,1.0,2 +50932,13,0.0,2,1.2520853281021118,433,0.0,2 +50933,13,0.0,2,1.789078712463379,434,0.0,2 +50934,13,1.0,2,1.4270833730697632,435,0.0,2 +50935,13,1.0,2,1.5070823431015015,436,0.0,2 +50936,13,1.0,2,1.884077548980713,437,0.0,2 +50937,13,1.0,2,2.1750826835632324,438,0.0,2 +50938,13,0.0,2,1.6080811023712158,439,1.0,2 +50939,13,0.0,2,1.1400851011276245,440,1.0,2 +50940,13,0.0,2,1.237085223197937,441,1.0,2 +50941,13,0.0,2,1.3190847635269165,442,1.0,2 +50942,13,0.0,2,1.501082420349121,443,0.0,2 +50943,13,0.0,2,1.3120849132537842,444,1.0,2 +50944,13,0.0,2,1.5410819053649902,445,0.0,2 +50945,13,1.0,2,1.8250782489776611,446,0.0,2 +50946,13,1.0,2,1.7550792694091797,447,0.0,2 +50947,13,1.0,2,1.7120797634124756,448,0.0,2 +50948,13,0.0,2,1.135085105895996,449,0.0,2 +50949,13,0.0,2,1.4000837802886963,450,0.0,2 +50950,13,0.0,2,1.8490779399871826,451,1.0,2 +50951,13,0.0,2,1.169085144996643,452,1.0,2 +50952,13,0.0,2,1.3400845527648926,453,0.0,2 +50953,13,0.0,2,1.4020837545394897,454,1.0,2 +50954,13,0.0,2,1.2300852537155151,455,0.0,2 +50955,13,1.0,2,1.7630791664123535,456,1.0,2 +50956,13,1.0,2,1.6230809688568115,457,1.0,2 +50957,13,1.0,2,1.4260834455490112,458,1.0,2 +50958,13,0.0,2,1.5710816383361816,459,0.0,2 +50959,13,1.0,2,1.3830839395523071,460,0.0,2 +50960,13,1.0,2,2.2490861415863037,461,1.0,2 +50961,13,1.0,2,1.4240834712982178,462,0.0,2 +50962,13,1.0,2,1.4040837287902832,463,0.0,2 +50963,13,0.0,2,2.036076068878174,464,0.0,2 +50964,13,1.0,2,2.1650822162628174,465,1.0,2 +50965,13,1.0,2,1.1370850801467896,466,1.0,2 +50966,13,1.0,2,1.4690828323364258,467,0.0,2 +50967,13,0.0,2,2.4600958824157715,468,0.0,2 +50968,13,0.0,2,1.2480852603912354,469,1.0,2 +50969,13,0.0,2,1.3270846605300903,470,1.0,2 +50970,13,0.0,2,1.2500853538513184,471,1.0,2 +50971,13,0.0,2,1.3190847635269165,472,1.0,2 +50972,13,0.0,2,1.5540817975997925,473,0.0,2 +50973,13,0.0,2,2.017075777053833,474,1.0,2 +50974,13,0.0,2,1.7270796298980713,475,1.0,2 +50975,13,0.0,2,1.2590852975845337,476,0.0,2 +50976,13,0.0,2,1.553081750869751,477,0.0,2 +50977,13,1.0,2,1.8390781879425049,478,0.0,2 +50978,13,1.0,2,1.412083625793457,479,1.0,2 +50979,13,1.0,2,1.1830852031707764,480,0.0,2 +50980,13,1.0,2,1.8020786046981812,481,1.0,2 +50981,13,1.0,2,1.4540830850601196,482,0.0,2 +50982,13,1.0,2,1.3530843257904053,483,0.0,2 +50983,13,0.0,2,1.9950761795043945,484,0.0,2 +50984,13,0.0,2,1.387083888053894,485,1.0,2 +50985,13,0.0,2,1.8220783472061157,486,0.0,2 +50986,13,0.0,2,2.075078010559082,487,1.0,2 +50987,13,0.0,2,1.4730827808380127,488,0.0,2 +50988,13,1.0,2,1.7040798664093018,489,1.0,2 +50989,13,1.0,2,1.6120810508728027,490,1.0,2 +50990,13,1.0,2,1.3840839862823486,491,0.0,2 +50991,13,1.0,2,2.3870925903320312,492,1.0,2 +50992,13,1.0,2,1.695080041885376,493,0.0,2 +50993,13,1.0,2,1.3120849132537842,494,0.0,2 +50994,13,1.0,2,1.8040785789489746,495,0.0,2 +50995,13,1.0,2,2.014075756072998,496,0.0,2 +50996,13,0.0,2,1.206085205078125,497,0.0,2 +50997,13,0.0,2,1.8270783424377441,498,1.0,2 +50998,13,0.0,2,1.2300852537155151,499,1.0,2 +50999,13,0.0,2,1.3400845527648926,500,1.0,2 +51000,14,0.0,0,1.5587971210479736,1,0.0,2 +51001,14,1.0,0,2.131795883178711,2,0.0,2 +51002,14,0.0,0,1.4277987480163574,3,0.0,2 +51003,14,0.0,0,1.494797945022583,4,0.0,2 +51004,14,0.0,0,1.6527959108352661,5,0.0,2 +51005,14,0.0,0,1.940792202949524,6,0.0,2 +51006,14,1.0,0,1.5707969665527344,7,0.0,2 +51007,14,0.0,0,2.5608158111572266,8,0.0,2 +51008,14,0.0,0,2.2228000164031982,9,0.0,2 +51009,14,1.0,0,1.6907954216003418,10,1.0,2 +51010,14,1.0,0,1.3907992839813232,11,1.0,2 +51011,14,1.0,0,1.3657995462417603,12,1.0,2 +51012,14,1.0,0,1.4087990522384644,13,1.0,2 +51013,14,1.0,0,1.4757981300354004,14,1.0,2 +51014,14,1.0,0,1.7347948551177979,15,1.0,2 +51015,14,1.0,0,1.4017990827560425,16,1.0,2 +51016,14,1.0,0,1.8827929496765137,17,1.0,2 +51017,14,1.0,0,1.468798279762268,18,0.0,2 +51018,14,1.0,0,1.6727956533432007,19,1.0,2 +51019,14,1.0,0,1.5447973012924194,20,1.0,2 +51020,14,1.0,0,1.4307987689971924,21,1.0,2 +51021,14,1.0,0,1.8477933406829834,22,1.0,2 +51022,14,0.0,0,1.9317922592163086,23,0.0,2 +51023,14,1.0,0,2.384807586669922,24,1.0,2 +51024,14,1.0,0,1.4327987432479858,25,1.0,2 +51025,14,1.0,0,1.6397960186004639,26,1.0,2 +51026,14,1.0,0,1.5737969875335693,27,1.0,2 +51027,14,1.0,0,1.9777917861938477,28,0.0,2 +51028,14,0.0,0,1.4647983312606812,29,0.0,2 +51029,14,1.0,0,1.8427934646606445,30,1.0,2 +51030,14,1.0,0,1.7807942628860474,31,1.0,2 +51031,14,1.0,0,1.4357986450195312,32,1.0,2 +51032,14,1.0,0,1.8527933359146118,33,1.0,2 +51033,14,1.0,0,1.3687995672225952,34,1.0,2 +51034,14,1.0,0,1.4927979707717896,35,1.0,2 +51035,14,1.0,0,1.677795648574829,36,1.0,2 +51036,14,1.0,0,1.5717968940734863,37,1.0,2 +51037,14,1.0,0,1.5107977390289307,38,1.0,2 +51038,14,1.0,0,1.1478004455566406,39,0.0,2 +51039,14,1.0,0,1.587796688079834,40,1.0,2 +51040,14,1.0,0,1.4827980995178223,41,1.0,2 +51041,14,1.0,0,1.5057977437973022,42,0.0,2 +51042,14,0.0,0,1.6627957820892334,43,0.0,2 +51043,14,1.0,0,2.176797866821289,44,0.0,2 +51044,14,1.0,0,1.6367961168289185,45,1.0,2 +51045,14,1.0,0,1.4837980270385742,46,1.0,2 +51046,14,1.0,0,1.472798228263855,47,1.0,2 +51047,14,1.0,0,1.3367999792099,48,1.0,2 +51048,14,1.0,0,1.329800009727478,49,1.0,2 +51049,14,1.0,0,1.5487972497940063,50,1.0,2 +51050,14,1.0,0,1.5227975845336914,51,1.0,2 +51051,14,1.0,0,1.3348000049591064,52,1.0,2 +51052,14,1.0,0,1.3367999792099,53,0.0,2 +51053,14,0.0,0,1.6657958030700684,54,0.0,2 +51054,14,0.0,0,1.7507946491241455,55,0.0,2 +51055,14,1.0,0,1.3567997217178345,56,1.0,2 +51056,14,1.0,0,1.5157976150512695,57,1.0,2 +51057,14,1.0,0,1.5597970485687256,58,1.0,2 +51058,14,1.0,0,1.28480064868927,59,1.0,2 +51059,14,1.0,0,1.473798155784607,60,1.0,2 +51060,14,1.0,0,1.3597996234893799,61,0.0,2 +51061,14,1.0,0,1.8297936916351318,62,1.0,2 +51062,14,0.0,0,2.104794502258301,63,0.0,2 +51063,14,1.0,0,2.2458009719848633,64,0.0,2 +51064,14,0.0,0,1.4337986707687378,65,0.0,2 +51065,14,0.0,0,1.220800518989563,66,0.0,2 +51066,14,1.0,0,2.5788166522979736,67,1.0,2 +51067,14,1.0,0,1.5337975025177002,68,0.0,2 +51068,14,0.0,0,1.4847980737686157,69,1.0,2 +51069,14,0.0,0,1.403799057006836,70,0.0,2 +51070,14,1.0,0,1.8567932844161987,71,1.0,2 +51071,14,1.0,0,1.6117963790893555,72,1.0,2 +51072,14,1.0,0,1.3967992067337036,73,1.0,2 +51073,14,0.0,0,1.4267988204956055,74,0.0,2 +51074,14,1.0,0,1.4827980995178223,75,1.0,2 +51075,14,1.0,0,1.2988004684448242,76,1.0,2 +51076,14,1.0,0,1.2088005542755127,77,1.0,2 +51077,14,1.0,0,1.2958004474639893,78,1.0,2 +51078,14,0.0,0,1.6237962245941162,79,0.0,2 +51079,14,0.0,0,1.2988004684448242,80,0.0,2 +51080,14,1.0,0,1.3887993097305298,81,1.0,2 +51081,14,1.0,0,1.3427999019622803,82,1.0,2 +51082,14,1.0,0,1.2488006353378296,83,1.0,2 +51083,14,1.0,0,1.4617983102798462,84,1.0,2 +51084,14,1.0,0,1.7687944173812866,85,1.0,2 +51085,14,1.0,0,1.2648006677627563,86,1.0,2 +51086,14,1.0,0,1.3687995672225952,87,1.0,2 +51087,14,1.0,0,1.535797357559204,88,1.0,2 +51088,14,1.0,0,1.402799129486084,89,1.0,2 +51089,14,1.0,0,1.633796215057373,90,0.0,2 +51090,14,0.0,0,1.2278006076812744,91,0.0,2 +51091,14,0.0,0,1.7597944736480713,92,1.0,2 +51092,14,0.0,0,1.3238000869750977,93,0.0,2 +51093,14,0.0,0,1.8867928981781006,94,0.0,2 +51094,14,1.0,0,1.774794340133667,95,1.0,2 +51095,14,1.0,0,1.4407986402511597,96,1.0,2 +51096,14,1.0,0,1.2068004608154297,97,1.0,2 +51097,14,1.0,0,1.3647996187210083,98,1.0,2 +51098,14,1.0,0,1.288800597190857,99,1.0,2 +51099,14,1.0,0,1.8417935371398926,100,1.0,2 +51100,14,1.0,0,1.5297974348068237,101,1.0,2 +51101,14,1.0,0,1.4407986402511597,102,1.0,2 +51102,14,1.0,0,1.5127977132797241,103,1.0,2 +51103,14,1.0,0,1.9497921466827393,104,1.0,2 +51104,14,1.0,0,1.4167989492416382,105,0.0,2 +51105,14,1.0,0,1.6697957515716553,106,1.0,2 +51106,14,1.0,0,1.5347974300384521,107,1.0,2 +51107,14,1.0,0,1.5017977952957153,108,0.0,2 +51108,14,0.0,0,1.4317986965179443,109,0.0,2 +51109,14,0.0,0,1.1768004894256592,110,0.0,2 +51110,14,0.0,0,2.367806911468506,111,0.0,2 +51111,14,1.0,0,1.4537984132766724,112,1.0,2 +51112,14,1.0,0,1.2078005075454712,113,1.0,2 +51113,14,1.0,0,1.4977978467941284,114,1.0,2 +51114,14,1.0,0,1.5847967863082886,115,1.0,2 +51115,14,1.0,0,1.2298005819320679,116,1.0,2 +51116,14,1.0,0,1.4077990055084229,117,1.0,2 +51117,14,1.0,0,1.280800700187683,118,1.0,2 +51118,14,1.0,0,2.355806350708008,119,1.0,2 +51119,14,1.0,0,1.223800539970398,120,1.0,2 +51120,14,1.0,0,1.3697994947433472,121,1.0,2 +51121,14,1.0,0,1.1918004751205444,122,0.0,2 +51122,14,1.0,0,1.46979820728302,123,1.0,2 +51123,14,1.0,0,1.5547971725463867,124,1.0,2 +51124,14,1.0,0,1.2608006000518799,125,1.0,2 +51125,14,1.0,0,1.725795030593872,126,1.0,2 +51126,14,0.0,0,1.4297987222671509,127,0.0,2 +51127,14,1.0,0,2.0837936401367188,128,1.0,2 +51128,14,1.0,0,1.4547984600067139,129,1.0,2 +51129,14,1.0,0,1.6897954940795898,130,1.0,2 +51130,14,1.0,0,1.4277987480163574,131,1.0,2 +51131,14,1.0,0,1.7137951850891113,132,1.0,2 +51132,14,1.0,0,1.4077990055084229,133,1.0,2 +51133,14,1.0,0,1.3058003187179565,134,1.0,2 +51134,14,1.0,0,1.4997978210449219,135,0.0,2 +51135,14,0.0,0,2.5858168601989746,136,0.0,2 +51136,14,1.0,0,1.2308006286621094,137,1.0,2 +51137,14,1.0,0,1.560797095298767,138,1.0,2 +51138,14,1.0,0,1.2018004655838013,139,1.0,2 +51139,14,1.0,0,1.3218001127243042,140,0.0,2 +51140,14,0.0,0,1.77079439163208,141,0.0,2 +51141,14,1.0,0,1.5597970485687256,142,1.0,2 +51142,14,1.0,0,1.58579683303833,143,1.0,2 +51143,14,1.0,0,1.5367974042892456,144,1.0,2 +51144,14,1.0,0,2.001791477203369,145,0.0,2 +51145,14,1.0,0,1.8967927694320679,146,1.0,2 +51146,14,1.0,0,1.3607996702194214,147,1.0,2 +51147,14,0.0,0,1.1638004779815674,148,0.0,2 +51148,14,1.0,0,2.2538013458251953,149,1.0,2 +51149,14,1.0,0,1.428798794746399,150,1.0,2 +51150,14,1.0,0,1.6647957563400269,151,1.0,2 +51151,14,1.0,0,1.6707956790924072,152,1.0,2 +51152,14,1.0,0,1.183800458908081,153,1.0,2 +51153,14,1.0,0,1.285800576210022,154,1.0,2 +51154,14,1.0,0,1.2018004655838013,155,1.0,2 +51155,14,1.0,0,1.2948005199432373,156,1.0,2 +51156,14,1.0,0,1.2918004989624023,157,1.0,2 +51157,14,1.0,0,1.2328006029129028,158,0.0,2 +51158,14,0.0,0,1.892792820930481,159,0.0,2 +51159,14,1.0,0,1.3787994384765625,160,0.0,2 +51160,14,0.0,0,1.2298005819320679,161,0.0,2 +51161,14,1.0,0,2.3258047103881836,162,0.0,2 +51162,14,0.0,0,1.4097989797592163,163,0.0,2 +51163,14,0.0,0,1.4747982025146484,164,0.0,2 +51164,14,0.0,0,1.6887954473495483,165,0.0,2 +51165,14,1.0,0,2.0807933807373047,166,1.0,2 +51166,14,1.0,0,1.250800609588623,167,1.0,2 +51167,14,1.0,0,1.5777969360351562,168,1.0,2 +51168,14,1.0,0,1.4307987689971924,169,1.0,2 +51169,14,1.0,0,1.2948005199432373,170,0.0,2 +51170,14,0.0,0,1.910792589187622,171,0.0,2 +51171,14,1.0,0,1.9357922077178955,172,0.0,2 +51172,14,0.0,0,1.6927953958511353,173,0.0,2 +51173,14,0.0,0,1.3228001594543457,174,0.0,2 +51174,14,1.0,0,1.2988004684448242,175,1.0,2 +51175,14,1.0,0,1.428798794746399,176,0.0,2 +51176,14,1.0,0,1.5367974042892456,177,1.0,2 +51177,14,1.0,0,1.4637982845306396,178,1.0,2 +51178,14,1.0,0,1.4807981252670288,179,0.0,2 +51179,14,0.0,0,1.6437959671020508,180,0.0,2 +51180,14,1.0,0,1.3787994384765625,181,1.0,2 +51181,14,1.0,0,1.6247962713241577,182,1.0,2 +51182,14,1.0,0,1.262800693511963,183,1.0,2 +51183,14,1.0,0,1.216800570487976,184,0.0,2 +51184,14,1.0,0,1.63779616355896,185,1.0,2 +51185,14,1.0,0,1.5147976875305176,186,1.0,2 +51186,14,1.0,0,1.3457998037338257,187,1.0,2 +51187,14,1.0,0,1.403799057006836,188,1.0,2 +51188,14,1.0,0,1.333799958229065,189,1.0,2 +51189,14,1.0,0,1.1988005638122559,190,1.0,2 +51190,14,1.0,0,1.2338005304336548,191,1.0,2 +51191,14,1.0,0,1.2978004217147827,192,1.0,2 +51192,14,1.0,0,1.1978005170822144,193,0.0,2 +51193,14,0.0,0,1.3627996444702148,194,0.0,2 +51194,14,0.0,0,1.3008004426956177,195,0.0,2 +51195,14,0.0,0,1.7507946491241455,196,1.0,2 +51196,14,0.0,0,1.376799464225769,197,1.0,2 +51197,14,0.0,0,1.8037939071655273,198,1.0,2 +51198,14,0.0,0,1.539797306060791,199,1.0,2 +51199,14,0.0,0,1.6987953186035156,200,0.0,2 +51200,14,0.0,0,2.3538060188293457,201,0.0,2 +51201,14,1.0,0,1.817793846130371,202,1.0,2 +51202,14,1.0,0,1.217800498008728,203,1.0,2 +51203,14,1.0,0,1.3727995157241821,204,1.0,2 +51204,14,1.0,0,1.4047991037368774,205,1.0,2 +51205,14,1.0,0,1.4407986402511597,206,1.0,2 +51206,14,1.0,0,1.6667957305908203,207,0.0,2 +51207,14,0.0,0,1.159800410270691,208,1.0,2 +51208,14,0.0,0,1.4937978982925415,209,0.0,2 +51209,14,0.0,0,1.3897992372512817,210,0.0,2 +51210,14,1.0,0,1.2328006029129028,211,1.0,2 +51211,14,1.0,0,2.0977940559387207,212,1.0,2 +51212,14,1.0,0,1.2658005952835083,213,1.0,2 +51213,14,1.0,0,1.4847980737686157,214,1.0,2 +51214,14,1.0,0,1.4887980222702026,215,1.0,2 +51215,14,1.0,0,1.4547984600067139,216,0.0,2 +51216,14,0.0,0,1.4627983570098877,217,0.0,2 +51217,14,1.0,0,1.5317974090576172,218,1.0,2 +51218,14,0.0,0,1.2558006048202515,219,0.0,2 +51219,14,0.0,0,1.542797327041626,220,0.0,2 +51220,14,1.0,0,1.3138002157211304,221,0.0,2 +51221,14,0.0,0,1.1768004894256592,222,0.0,2 +51222,14,1.0,0,2.108794689178467,223,1.0,2 +51223,14,1.0,0,1.3687995672225952,224,1.0,2 +51224,14,1.0,0,1.819793701171875,225,1.0,2 +51225,14,1.0,0,1.3387999534606934,226,1.0,2 +51226,14,1.0,0,1.186800479888916,227,1.0,2 +51227,14,1.0,0,1.4557983875274658,228,1.0,2 +51228,14,1.0,0,1.3018003702163696,229,1.0,2 +51229,14,1.0,0,1.4167989492416382,230,0.0,2 +51230,14,0.0,0,1.2958004474639893,231,0.0,2 +51231,14,1.0,0,1.8467934131622314,232,1.0,2 +51232,14,1.0,0,1.28480064868927,233,1.0,2 +51233,14,1.0,0,1.4897979497909546,234,1.0,2 +51234,14,1.0,0,2.114794969558716,235,1.0,2 +51235,14,1.0,0,1.8987927436828613,236,0.0,2 +51236,14,0.0,0,1.4667983055114746,237,0.0,2 +51237,14,1.0,0,1.5667970180511475,238,0.0,2 +51238,14,0.0,0,1.3887993097305298,239,1.0,2 +51239,14,0.0,0,1.4587984085083008,240,0.0,2 +51240,14,0.0,0,1.8797929286956787,241,0.0,2 +51241,14,1.0,0,2.016791343688965,242,1.0,2 +51242,14,1.0,0,2.012791156768799,243,1.0,2 +51243,14,1.0,0,1.4667983055114746,244,1.0,2 +51244,14,1.0,0,1.5737969875335693,245,1.0,2 +51245,14,1.0,0,1.2558006048202515,246,1.0,2 +51246,14,1.0,0,1.2438006401062012,247,1.0,2 +51247,14,1.0,0,1.259800672531128,248,0.0,2 +51248,14,0.0,0,1.6417961120605469,249,1.0,2 +51249,14,0.0,0,1.253800630569458,250,0.0,2 +51250,14,1.0,0,1.9297924041748047,251,1.0,2 +51251,14,1.0,0,1.8127938508987427,252,1.0,2 +51252,14,1.0,0,1.2988004684448242,253,0.0,2 +51253,14,1.0,0,1.778794288635254,254,1.0,2 +51254,14,1.0,0,1.66079580783844,255,1.0,2 +51255,14,1.0,0,1.1778004169464111,256,1.0,2 +51256,14,1.0,0,1.543797254562378,257,1.0,2 +51257,14,1.0,0,1.256800651550293,258,1.0,2 +51258,14,1.0,0,1.516797661781311,259,1.0,2 +51259,14,1.0,0,1.2008005380630493,260,1.0,2 +51260,14,1.0,0,1.491797924041748,261,0.0,2 +51261,14,1.0,0,1.5227975845336914,262,1.0,2 +51262,14,1.0,0,1.398799180984497,263,1.0,2 +51263,14,1.0,0,1.5747969150543213,264,1.0,2 +51264,14,0.0,0,1.490797996520996,265,0.0,2 +51265,14,1.0,0,1.2098004817962646,266,1.0,2 +51266,14,1.0,0,1.1848005056381226,267,0.0,2 +51267,14,0.0,0,1.406799077987671,268,0.0,2 +51268,14,1.0,0,1.4357986450195312,269,1.0,2 +51269,14,1.0,0,1.3397998809814453,270,1.0,2 +51270,14,1.0,0,1.8467934131622314,271,1.0,2 +51271,14,1.0,0,1.2068004608154297,272,1.0,2 +51272,14,1.0,0,1.6877954006195068,273,1.0,2 +51273,14,1.0,0,1.4167989492416382,274,1.0,2 +51274,14,1.0,0,1.4587984085083008,275,1.0,2 +51275,14,1.0,0,1.5497972965240479,276,0.0,2 +51276,14,1.0,0,1.840793490409851,277,0.0,2 +51277,14,0.0,0,1.4897979497909546,278,0.0,2 +51278,14,0.0,0,2.0267910957336426,279,0.0,2 +51279,14,0.0,0,1.6507959365844727,280,1.0,2 +51280,14,0.0,0,1.7557945251464844,281,0.0,2 +51281,14,0.0,0,2.186798334121704,282,0.0,2 +51282,14,1.0,0,1.6527959108352661,283,1.0,2 +51283,14,1.0,0,2.095794200897217,284,1.0,2 +51284,14,1.0,0,1.9197924137115479,285,1.0,2 +51285,14,1.0,0,1.2398005723953247,286,1.0,2 +51286,14,1.0,0,1.675795555114746,287,0.0,2 +51287,14,1.0,0,1.3977991342544556,288,1.0,2 +51288,14,1.0,0,1.821793794631958,289,1.0,2 +51289,14,1.0,0,1.5557971000671387,290,1.0,2 +51290,14,1.0,0,1.2798006534576416,291,1.0,2 +51291,14,1.0,0,1.3188002109527588,292,1.0,2 +51292,14,1.0,0,1.2398005723953247,293,1.0,2 +51293,14,1.0,0,1.3927992582321167,294,0.0,2 +51294,14,0.0,0,2.390807867050171,295,0.0,2 +51295,14,0.0,0,1.193800449371338,296,0.0,2 +51296,14,1.0,0,1.8847929239273071,297,1.0,2 +51297,14,1.0,0,1.5287975072860718,298,0.0,2 +51298,14,0.0,0,1.3228001594543457,299,0.0,2 +51299,14,1.0,0,1.8917927742004395,300,1.0,2 +51300,14,1.0,0,1.4267988204956055,301,1.0,2 +51301,14,1.0,0,1.4547984600067139,302,1.0,2 +51302,14,1.0,0,1.2098004817962646,303,1.0,2 +51303,14,1.0,0,1.3098002672195435,304,1.0,2 +51304,14,1.0,0,1.4017990827560425,305,1.0,2 +51305,14,1.0,0,1.3178001642227173,306,1.0,2 +51306,14,1.0,0,1.5737969875335693,307,1.0,2 +51307,14,1.0,0,2.699822425842285,308,0.0,2 +51308,14,1.0,0,1.2948005199432373,309,0.0,2 +51309,14,1.0,0,2.193798542022705,310,1.0,2 +51310,14,0.0,0,1.3048003911972046,311,0.0,2 +51311,14,1.0,0,1.5627970695495605,312,1.0,2 +51312,14,1.0,0,1.634796142578125,313,0.0,2 +51313,14,0.0,0,1.216800570487976,314,0.0,2 +51314,14,1.0,0,1.6147964000701904,315,1.0,2 +51315,14,1.0,0,1.4867980480194092,316,1.0,2 +51316,14,1.0,0,1.4337986707687378,317,1.0,2 +51317,14,1.0,0,1.3717994689941406,318,1.0,2 +51318,14,1.0,0,1.3178001642227173,319,1.0,2 +51319,14,1.0,0,1.3178001642227173,320,1.0,2 +51320,14,1.0,0,1.6107964515686035,321,1.0,2 +51321,14,1.0,0,1.3098002672195435,322,1.0,2 +51322,14,1.0,0,1.2188005447387695,323,0.0,2 +51323,14,1.0,0,2.2988035678863525,324,1.0,2 +51324,14,1.0,0,2.115795135498047,325,1.0,2 +51325,14,0.0,0,1.535797357559204,326,0.0,2 +51326,14,1.0,0,1.2248005867004395,327,0.0,2 +51327,14,1.0,0,2.192798614501953,328,1.0,2 +51328,14,1.0,0,1.303800344467163,329,1.0,2 +51329,14,1.0,0,1.49879789352417,330,1.0,2 +51330,14,1.0,0,1.3218001127243042,331,1.0,2 +51331,14,1.0,0,1.2378005981445312,332,1.0,2 +51332,14,1.0,0,1.3477997779846191,333,1.0,2 +51333,14,1.0,0,2.151796817779541,334,1.0,2 +51334,14,1.0,0,1.3148002624511719,335,1.0,2 +51335,14,1.0,0,1.6177964210510254,336,1.0,2 +51336,14,1.0,0,1.2468006610870361,337,1.0,2 +51337,14,1.0,0,1.6107964515686035,338,1.0,2 +51338,14,1.0,0,1.6407960653305054,339,1.0,2 +51339,14,1.0,0,1.2588006258010864,340,1.0,2 +51340,14,1.0,0,1.2678006887435913,341,1.0,2 +51341,14,1.0,0,1.5277974605560303,342,1.0,2 +51342,14,1.0,0,1.2708005905151367,343,1.0,2 +51343,14,1.0,0,1.5887967348098755,344,1.0,2 +51344,14,1.0,0,1.329800009727478,345,1.0,2 +51345,14,1.0,0,1.190800428390503,346,1.0,2 +51346,14,1.0,0,1.6747956275939941,347,1.0,2 +51347,14,1.0,0,1.634796142578125,348,1.0,2 +51348,14,1.0,0,1.3877992630004883,349,1.0,2 +51349,14,1.0,0,1.3447998762130737,350,0.0,2 +51350,14,1.0,0,1.60879647731781,351,0.0,2 +51351,14,1.0,0,1.723794937133789,352,1.0,2 +51352,14,1.0,0,1.377799391746521,353,1.0,2 +51353,14,1.0,0,1.4597983360290527,354,1.0,2 +51354,14,1.0,0,1.259800672531128,355,1.0,2 +51355,14,0.0,0,1.3727995157241821,356,0.0,2 +51356,14,1.0,0,1.159800410270691,357,1.0,2 +51357,14,1.0,0,1.3717994689941406,358,1.0,2 +51358,14,1.0,0,1.4427986145019531,359,1.0,2 +51359,14,1.0,0,1.468798279762268,360,1.0,2 +51360,14,1.0,0,1.153800368309021,361,1.0,2 +51361,14,1.0,0,1.149800419807434,362,1.0,2 +51362,14,1.0,0,1.725795030593872,363,1.0,2 +51363,14,1.0,0,2.0217912197113037,364,1.0,2 +51364,14,1.0,0,1.3138002157211304,365,1.0,2 +51365,14,1.0,0,1.708795189857483,366,0.0,2 +51366,14,0.0,0,1.3797993659973145,367,0.0,2 +51367,14,1.0,0,2.659820556640625,368,1.0,2 +51368,14,1.0,0,1.216800570487976,369,1.0,2 +51369,14,1.0,0,1.7547945976257324,370,1.0,2 +51370,14,1.0,0,1.262800693511963,371,1.0,2 +51371,14,1.0,0,1.49879789352417,372,1.0,2 +51372,14,1.0,0,1.4447985887527466,373,1.0,2 +51373,14,1.0,0,1.180800437927246,374,1.0,2 +51374,14,1.0,0,1.7987940311431885,375,1.0,2 +51375,14,1.0,0,1.180800437927246,376,1.0,2 +51376,14,1.0,0,1.4087990522384644,377,1.0,2 +51377,14,1.0,0,1.7477946281433105,378,1.0,2 +51378,14,1.0,0,1.2738006114959717,379,1.0,2 +51379,14,1.0,0,1.8937928676605225,380,1.0,2 +51380,14,1.0,0,1.792794108390808,381,1.0,2 +51381,14,1.0,0,1.4197988510131836,382,1.0,2 +51382,14,1.0,0,1.288800597190857,383,1.0,2 +51383,14,1.0,0,1.5957965850830078,384,1.0,2 +51384,14,1.0,0,1.1758004426956177,385,1.0,2 +51385,14,1.0,0,1.3308000564575195,386,0.0,2 +51386,14,1.0,0,1.775794267654419,387,0.0,2 +51387,14,1.0,0,1.3857992887496948,388,1.0,2 +51388,14,1.0,0,1.537797451019287,389,1.0,2 +51389,14,1.0,0,1.1818004846572876,390,0.0,2 +51390,14,1.0,0,1.6037964820861816,391,1.0,2 +51391,14,0.0,0,1.3657995462417603,392,1.0,2 +51392,14,1.0,0,1.915792465209961,393,1.0,2 +51393,14,1.0,0,2.3488059043884277,394,1.0,2 +51394,14,0.0,0,1.6847954988479614,395,0.0,2 +51395,14,1.0,0,1.5767968893051147,396,1.0,2 +51396,14,1.0,0,1.403799057006836,397,1.0,2 +51397,14,1.0,0,1.6987953186035156,398,1.0,2 +51398,14,1.0,0,1.6197962760925293,399,0.0,2 +51399,14,1.0,0,2.3158044815063477,400,1.0,2 +51400,14,1.0,0,1.8957927227020264,401,1.0,2 +51401,14,0.0,0,1.7097952365875244,402,0.0,2 +51402,14,1.0,0,1.7067952156066895,403,1.0,2 +51403,14,1.0,0,1.4997978210449219,404,1.0,2 +51404,14,1.0,0,1.8097939491271973,405,1.0,2 +51405,14,1.0,0,1.7477946281433105,406,1.0,2 +51406,14,1.0,0,1.7367948293685913,407,1.0,2 +51407,14,1.0,0,1.4627983570098877,408,1.0,2 +51408,14,1.0,0,1.1708004474639893,409,1.0,2 +51409,14,1.0,0,1.4227988719940186,410,1.0,2 +51410,14,1.0,0,1.4717981815338135,411,0.0,2 +51411,14,0.0,0,2.411808967590332,412,0.0,2 +51412,14,1.0,0,2.0517921447753906,413,1.0,2 +51413,14,1.0,0,1.3597996234893799,414,1.0,2 +51414,14,1.0,0,1.1948004961013794,415,0.0,2 +51415,14,1.0,0,1.406799077987671,416,1.0,2 +51416,14,1.0,0,1.8097939491271973,417,1.0,2 +51417,14,1.0,0,1.1418004035949707,418,1.0,2 +51418,14,1.0,0,1.4427986145019531,419,1.0,2 +51419,14,1.0,0,1.3228001594543457,420,1.0,2 +51420,14,1.0,0,1.451798439025879,421,1.0,2 +51421,14,1.0,0,1.280800700187683,422,1.0,2 +51422,14,1.0,0,1.4307987689971924,423,1.0,2 +51423,14,1.0,0,1.3048003911972046,424,1.0,2 +51424,14,1.0,0,1.1918004751205444,425,1.0,2 +51425,14,1.0,0,2.0687928199768066,426,1.0,2 +51426,14,1.0,0,1.587796688079834,427,1.0,2 +51427,14,1.0,0,1.420798897743225,428,1.0,2 +51428,14,1.0,0,1.5047978162765503,429,1.0,2 +51429,14,1.0,0,1.3208001852035522,430,0.0,2 +51430,14,0.0,0,1.4307987689971924,431,1.0,2 +51431,14,0.0,0,1.633796215057373,432,1.0,2 +51432,14,0.0,0,1.421798825263977,433,0.0,2 +51433,14,0.0,0,1.2488006353378296,434,0.0,2 +51434,14,1.0,0,1.380799412727356,435,1.0,2 +51435,14,0.0,0,2.6228187084198,436,0.0,2 +51436,14,1.0,0,1.4587984085083008,437,1.0,2 +51437,14,1.0,0,2.01379132270813,438,1.0,2 +51438,14,1.0,0,1.5957965850830078,439,1.0,2 +51439,14,1.0,0,1.3348000049591064,440,1.0,2 +51440,14,1.0,0,1.7397947311401367,441,1.0,2 +51441,14,1.0,0,1.328800082206726,442,1.0,2 +51442,14,1.0,0,1.4547984600067139,443,1.0,2 +51443,14,1.0,0,1.5267975330352783,444,1.0,2 +51444,14,1.0,0,1.5327974557876587,445,1.0,2 +51445,14,1.0,0,1.2698006629943848,446,1.0,2 +51446,14,1.0,0,1.7377948760986328,447,1.0,2 +51447,14,1.0,0,1.3377999067306519,448,1.0,2 +51448,14,1.0,0,1.2488006353378296,449,1.0,2 +51449,14,1.0,0,1.3138002157211304,450,1.0,2 +51450,14,1.0,0,1.3427999019622803,451,1.0,2 +51451,14,1.0,0,1.7697944641113281,452,1.0,2 +51452,14,1.0,0,1.153800368309021,453,1.0,2 +51453,14,1.0,0,1.311800241470337,454,1.0,2 +51454,14,1.0,0,1.752794623374939,455,1.0,2 +51455,14,1.0,0,1.3637995719909668,456,1.0,2 +51456,14,0.0,0,1.285800576210022,457,1.0,2 +51457,14,0.0,0,1.2638006210327148,458,1.0,2 +51458,14,1.0,0,1.3308000564575195,459,1.0,2 +51459,14,0.0,0,1.190800428390503,460,1.0,2 +51460,14,0.0,0,1.3607996702194214,461,0.0,2 +51461,14,1.0,0,1.1478004455566406,462,1.0,2 +51462,14,1.0,0,1.3977991342544556,463,1.0,2 +51463,14,1.0,0,1.4837980270385742,464,0.0,2 +51464,14,1.0,0,1.9197924137115479,465,1.0,2 +51465,14,0.0,0,1.7957940101623535,466,0.0,2 +51466,14,1.0,0,1.4717981815338135,467,1.0,2 +51467,14,1.0,0,1.568796992301941,468,1.0,2 +51468,14,1.0,0,1.3238000869750977,469,1.0,2 +51469,14,1.0,0,1.443798542022705,470,1.0,2 +51470,14,1.0,0,1.3357999324798584,471,1.0,2 +51471,14,1.0,0,1.3397998809814453,472,0.0,2 +51472,14,1.0,0,1.7017953395843506,473,0.0,2 +51473,14,1.0,0,1.8937928676605225,474,1.0,2 +51474,14,1.0,0,2.117794990539551,475,1.0,2 +51475,14,1.0,0,1.1698004007339478,476,1.0,2 +51476,14,1.0,0,1.677795648574829,477,1.0,2 +51477,14,0.0,0,1.189800500869751,478,0.0,2 +51478,14,1.0,0,1.476798176765442,479,1.0,2 +51479,14,1.0,0,1.2938004732131958,480,1.0,2 +51480,14,1.0,0,1.149800419807434,481,1.0,2 +51481,14,1.0,0,1.3098002672195435,482,1.0,2 +51482,14,1.0,0,1.5247975587844849,483,1.0,2 +51483,14,1.0,0,1.5007978677749634,484,1.0,2 +51484,14,1.0,0,1.2438006401062012,485,0.0,2 +51485,14,1.0,0,1.4197988510131836,486,1.0,2 +51486,14,1.0,0,1.2358006238937378,487,1.0,2 +51487,14,1.0,0,1.425798773765564,488,1.0,2 +51488,14,1.0,0,1.3787994384765625,489,1.0,2 +51489,14,1.0,0,1.2018004655838013,490,1.0,2 +51490,14,1.0,0,1.3008004426956177,491,1.0,2 +51491,14,1.0,0,1.2288005352020264,492,1.0,2 +51492,14,1.0,0,1.2108005285263062,493,1.0,2 +51493,14,1.0,0,1.5047978162765503,494,1.0,2 +51494,14,1.0,0,1.1998004913330078,495,1.0,2 +51495,14,1.0,0,1.3188002109527588,496,0.0,2 +51496,14,1.0,0,1.2138005495071411,497,1.0,2 +51497,14,1.0,0,1.420798897743225,498,1.0,2 +51498,14,1.0,0,1.2768006324768066,499,1.0,2 +51499,14,1.0,0,1.4277987480163574,500,1.0,2 +51500,14,1.0,1,1.7957940101623535,1,1.0,2 +51501,14,0.0,1,1.5197975635528564,2,0.0,2 +51502,14,1.0,1,1.8617932796478271,3,1.0,2 +51503,14,1.0,1,1.678795576095581,4,1.0,2 +51504,14,0.0,1,1.250800609588623,5,1.0,2 +51505,14,0.0,1,1.2658005952835083,6,0.0,2 +51506,14,0.0,1,2.0437917709350586,7,1.0,2 +51507,14,0.0,1,1.513797640800476,8,0.0,2 +51508,14,1.0,1,1.5327974557876587,9,1.0,2 +51509,14,1.0,1,1.1888004541397095,10,1.0,2 +51510,14,1.0,1,1.153800368309021,11,1.0,2 +51511,14,1.0,1,1.1948004961013794,12,1.0,2 +51512,14,1.0,1,1.564797043800354,13,1.0,2 +51513,14,1.0,1,1.3527997732162476,14,1.0,2 +51514,14,1.0,1,1.4927979707717896,15,1.0,2 +51515,14,1.0,1,1.2298005819320679,16,1.0,2 +51516,14,1.0,1,1.8777930736541748,17,1.0,2 +51517,14,1.0,1,2.0477919578552246,18,0.0,2 +51518,14,0.0,1,1.3937991857528687,19,0.0,2 +51519,14,1.0,1,1.5087977647781372,20,0.0,2 +51520,14,0.0,1,2.0737929344177246,21,1.0,2 +51521,14,0.0,1,1.77079439163208,22,1.0,2 +51522,14,0.0,1,1.2398005723953247,23,0.0,2 +51523,14,0.0,1,1.520797610282898,24,0.0,2 +51524,14,0.0,1,1.1488003730773926,25,0.0,2 +51525,14,0.0,1,1.3687995672225952,26,0.0,2 +51526,14,0.0,1,1.9957914352416992,27,1.0,2 +51527,14,0.0,1,1.5617971420288086,28,0.0,2 +51528,14,0.0,1,1.2718006372451782,29,1.0,2 +51529,14,0.0,1,1.3447998762130737,30,0.0,2 +51530,14,0.0,1,1.3437998294830322,31,1.0,2 +51531,14,0.0,1,1.7937941551208496,32,1.0,2 +51532,14,0.0,1,1.281800627708435,33,1.0,2 +51533,14,0.0,1,1.8797929286956787,34,0.0,2 +51534,14,0.0,1,1.8317935466766357,35,0.0,2 +51535,14,1.0,1,2.0747931003570557,36,0.0,2 +51536,14,0.0,1,1.6937954425811768,37,0.0,2 +51537,14,1.0,1,1.8907928466796875,38,1.0,2 +51538,14,1.0,1,1.8747930526733398,39,0.0,2 +51539,14,1.0,1,2.001791477203369,40,1.0,2 +51540,14,1.0,1,1.465798258781433,41,0.0,2 +51541,14,1.0,1,1.539797306060791,42,1.0,2 +51542,14,1.0,1,1.988791584968567,43,1.0,2 +51543,14,1.0,1,1.9747917652130127,44,1.0,2 +51544,14,0.0,1,1.5327974557876587,45,0.0,2 +51545,14,1.0,1,1.2978004217147827,46,0.0,2 +51546,14,1.0,1,1.8727930784225464,47,1.0,2 +51547,14,1.0,1,1.4147989749908447,48,1.0,2 +51548,14,1.0,1,1.6867954730987549,49,1.0,2 +51549,14,1.0,1,1.2638006210327148,50,1.0,2 +51550,14,1.0,1,1.2138005495071411,51,1.0,2 +51551,14,1.0,1,1.3497997522354126,52,1.0,2 +51552,14,1.0,1,1.3168002367019653,53,0.0,2 +51553,14,0.0,1,1.1758004426956177,54,0.0,2 +51554,14,1.0,1,1.380799412727356,55,1.0,2 +51555,14,1.0,1,1.253800630569458,56,1.0,2 +51556,14,1.0,1,1.2938004732131958,57,0.0,2 +51557,14,0.0,1,1.1338003873825073,58,1.0,2 +51558,14,0.0,1,1.6237962245941162,59,0.0,2 +51559,14,1.0,1,1.6467959880828857,60,1.0,2 +51560,14,0.0,1,1.2408006191253662,61,0.0,2 +51561,14,1.0,1,1.4537984132766724,62,1.0,2 +51562,14,1.0,1,1.4487985372543335,63,1.0,2 +51563,14,1.0,1,1.5987966060638428,64,1.0,2 +51564,14,1.0,1,1.52179753780365,65,1.0,2 +51565,14,1.0,1,1.395799160003662,66,0.0,2 +51566,14,1.0,1,1.537797451019287,67,1.0,2 +51567,14,1.0,1,2.398808240890503,68,1.0,2 +51568,14,1.0,1,1.4667983055114746,69,0.0,2 +51569,14,0.0,1,1.4237987995147705,70,1.0,2 +51570,14,1.0,1,1.8797929286956787,71,1.0,2 +51571,14,1.0,1,1.9217925071716309,72,1.0,2 +51572,14,1.0,1,1.9437921047210693,73,0.0,2 +51573,14,1.0,1,2.0447916984558105,74,0.0,2 +51574,14,0.0,1,1.2678006887435913,75,0.0,2 +51575,14,1.0,1,2.147796630859375,76,1.0,2 +51576,14,1.0,1,1.542797327041626,77,1.0,2 +51577,14,1.0,1,1.3857992887496948,78,1.0,2 +51578,14,1.0,1,1.5817968845367432,79,1.0,2 +51579,14,1.0,1,1.863793134689331,80,1.0,2 +51580,14,1.0,1,1.5087977647781372,81,1.0,2 +51581,14,1.0,1,1.7377948760986328,82,0.0,2 +51582,14,1.0,1,2.0237910747528076,83,1.0,2 +51583,14,1.0,1,1.494797945022583,84,1.0,2 +51584,14,1.0,1,2.0567922592163086,85,1.0,2 +51585,14,1.0,1,1.257800579071045,86,1.0,2 +51586,14,1.0,1,1.2078005075454712,87,1.0,2 +51587,14,1.0,1,1.3937991857528687,88,0.0,2 +51588,14,0.0,1,1.5487972497940063,89,0.0,2 +51589,14,1.0,1,1.9047926664352417,90,0.0,2 +51590,14,1.0,1,1.4877979755401611,91,1.0,2 +51591,14,1.0,1,2.0267910957336426,92,1.0,2 +51592,14,1.0,1,1.5967966318130493,93,1.0,2 +51593,14,1.0,1,1.6957952976226807,94,0.0,2 +51594,14,1.0,1,1.3637995719909668,95,1.0,2 +51595,14,1.0,1,1.546797275543213,96,0.0,2 +51596,14,1.0,1,1.428798794746399,97,1.0,2 +51597,14,1.0,1,1.6457960605621338,98,1.0,2 +51598,14,1.0,1,1.2738006114959717,99,0.0,2 +51599,14,1.0,1,1.8207937479019165,100,1.0,2 +51600,14,1.0,1,1.3917992115020752,101,1.0,2 +51601,14,1.0,1,1.1658004522323608,102,1.0,2 +51602,14,1.0,1,1.380799412727356,103,1.0,2 +51603,14,1.0,1,1.5757968425750732,104,1.0,2 +51604,14,1.0,1,1.2678006887435913,105,1.0,2 +51605,14,1.0,1,1.253800630569458,106,0.0,2 +51606,14,0.0,1,1.862793207168579,107,0.0,2 +51607,14,0.0,1,1.6207963228225708,108,1.0,2 +51608,14,0.0,1,1.3677995204925537,109,0.0,2 +51609,14,0.0,1,1.247800588607788,110,0.0,2 +51610,14,1.0,1,1.3887993097305298,111,1.0,2 +51611,14,1.0,1,1.4457985162734985,112,1.0,2 +51612,14,1.0,1,1.4157989025115967,113,0.0,2 +51613,14,0.0,1,1.3048003911972046,114,1.0,2 +51614,14,0.0,1,2.104794502258301,115,0.0,2 +51615,14,0.0,1,1.1998004913330078,116,1.0,2 +51616,14,0.0,1,1.4707982540130615,117,0.0,2 +51617,14,0.0,1,1.7387948036193848,118,1.0,2 +51618,14,0.0,1,1.4177988767623901,119,0.0,2 +51619,14,0.0,1,1.2288005352020264,120,0.0,2 +51620,14,1.0,1,1.914792537689209,121,1.0,2 +51621,14,1.0,1,1.7177951335906982,122,0.0,2 +51622,14,1.0,1,1.3937991857528687,123,1.0,2 +51623,14,1.0,1,1.3967992067337036,124,1.0,2 +51624,14,1.0,1,1.7557945251464844,125,0.0,2 +51625,14,1.0,1,2.5788166522979736,126,1.0,2 +51626,14,1.0,1,1.681795597076416,127,1.0,2 +51627,14,1.0,1,1.450798511505127,128,1.0,2 +51628,14,1.0,1,1.4787981510162354,129,1.0,2 +51629,14,1.0,1,1.3158001899719238,130,0.0,2 +51630,14,0.0,1,1.5477972030639648,131,0.0,2 +51631,14,1.0,1,2.195798873901367,132,1.0,2 +51632,14,1.0,1,1.3527997732162476,133,1.0,2 +51633,14,1.0,1,1.256800651550293,134,0.0,2 +51634,14,1.0,1,1.910792589187622,135,1.0,2 +51635,14,1.0,1,1.1588003635406494,136,1.0,2 +51636,14,1.0,1,1.52179753780365,137,1.0,2 +51637,14,1.0,1,1.3527997732162476,138,1.0,2 +51638,14,1.0,1,1.7647944688796997,139,1.0,2 +51639,14,1.0,1,1.3357999324798584,140,1.0,2 +51640,14,1.0,1,1.2678006887435913,141,0.0,2 +51641,14,1.0,1,1.5547971725463867,142,1.0,2 +51642,14,1.0,1,1.537797451019287,143,1.0,2 +51643,14,1.0,1,2.0717930793762207,144,1.0,2 +51644,14,1.0,1,1.4317986965179443,145,1.0,2 +51645,14,1.0,1,1.3717994689941406,146,1.0,2 +51646,14,1.0,1,1.4307987689971924,147,1.0,2 +51647,14,1.0,1,1.2328006029129028,148,1.0,2 +51648,14,1.0,1,1.6417961120605469,149,1.0,2 +51649,14,1.0,1,1.5157976150512695,150,1.0,2 +51650,14,1.0,1,1.2158005237579346,151,1.0,2 +51651,14,1.0,1,1.9417922496795654,152,0.0,2 +51652,14,1.0,1,1.6117963790893555,153,0.0,2 +51653,14,1.0,1,2.390807867050171,154,0.0,2 +51654,14,0.0,1,2.8008270263671875,155,1.0,2 +51655,14,0.0,1,1.1628004312515259,156,1.0,2 +51656,14,0.0,1,1.2678006887435913,157,1.0,2 +51657,14,0.0,1,1.1658004522323608,158,1.0,2 +51658,14,0.0,1,1.30780029296875,159,0.0,2 +51659,14,0.0,1,1.8107938766479492,160,1.0,2 +51660,14,0.0,1,1.3657995462417603,161,0.0,2 +51661,14,0.0,1,1.2358006238937378,162,0.0,2 +51662,14,1.0,1,1.395799160003662,163,0.0,2 +51663,14,0.0,1,1.8327935934066772,164,0.0,2 +51664,14,1.0,1,1.2728006839752197,165,1.0,2 +51665,14,1.0,1,1.2278006076812744,166,1.0,2 +51666,14,1.0,1,1.593796730041504,167,0.0,2 +51667,14,0.0,1,1.2868006229400635,168,1.0,2 +51668,14,0.0,1,1.6897954940795898,169,0.0,2 +51669,14,1.0,1,1.9977915287017822,170,1.0,2 +51670,14,0.0,1,1.495797872543335,171,0.0,2 +51671,14,0.0,1,1.733794927597046,172,0.0,2 +51672,14,1.0,1,1.2698006629943848,173,0.0,2 +51673,14,1.0,1,1.5297974348068237,174,1.0,2 +51674,14,1.0,1,1.9927915334701538,175,0.0,2 +51675,14,0.0,1,1.5197975635528564,176,1.0,2 +51676,14,0.0,1,1.8557932376861572,177,1.0,2 +51677,14,0.0,1,1.4777981042861938,178,0.0,2 +51678,14,0.0,1,2.012791156768799,179,1.0,2 +51679,14,0.0,1,1.7507946491241455,180,1.0,2 +51680,14,0.0,1,1.538797378540039,181,1.0,2 +51681,14,0.0,1,1.226800560951233,182,1.0,2 +51682,14,0.0,1,1.2418005466461182,183,1.0,2 +51683,14,0.0,1,1.2868006229400635,184,1.0,2 +51684,14,1.0,1,1.473798155784607,185,1.0,2 +51685,14,0.0,1,1.2518006563186646,186,1.0,2 +51686,14,1.0,1,1.844793438911438,187,0.0,2 +51687,14,0.0,1,1.6407960653305054,188,0.0,2 +51688,14,1.0,1,1.3128002882003784,189,1.0,2 +51689,14,1.0,1,1.9837915897369385,190,1.0,2 +51690,14,1.0,1,1.892792820930481,191,0.0,2 +51691,14,1.0,1,1.3537997007369995,192,0.0,2 +51692,14,1.0,1,1.7877941131591797,193,1.0,2 +51693,14,0.0,1,2.8388288021087646,194,0.0,2 +51694,14,1.0,1,2.127795696258545,195,1.0,2 +51695,14,1.0,1,1.2158005237579346,196,0.0,2 +51696,14,0.0,1,1.9547920227050781,197,0.0,2 +51697,14,1.0,1,1.568796992301941,198,1.0,2 +51698,14,1.0,1,1.9777917861938477,199,1.0,2 +51699,14,1.0,1,1.778794288635254,200,1.0,2 +51700,14,1.0,1,1.28480064868927,201,0.0,2 +51701,14,0.0,1,1.8417935371398926,202,1.0,2 +51702,14,0.0,1,1.730794906616211,203,0.0,2 +51703,14,1.0,1,1.4237987995147705,204,1.0,2 +51704,14,1.0,1,1.3837993144989014,205,1.0,2 +51705,14,1.0,1,1.9897916316986084,206,1.0,2 +51706,14,1.0,1,1.465798258781433,207,1.0,2 +51707,14,1.0,1,1.2118005752563477,208,1.0,2 +51708,14,1.0,1,1.1798005104064941,209,1.0,2 +51709,14,1.0,1,1.8387935161590576,210,1.0,2 +51710,14,1.0,1,1.2788007259368896,211,1.0,2 +51711,14,1.0,1,1.380799412727356,212,0.0,2 +51712,14,0.0,1,1.5947966575622559,213,0.0,2 +51713,14,1.0,1,2.2818026542663574,214,0.0,2 +51714,14,1.0,1,1.7807942628860474,215,0.0,2 +51715,14,1.0,1,1.4597983360290527,216,1.0,2 +51716,14,1.0,1,1.5677969455718994,217,0.0,2 +51717,14,0.0,1,1.6477959156036377,218,1.0,2 +51718,14,0.0,1,1.3248001337051392,219,0.0,2 +51719,14,0.0,1,1.44679856300354,220,0.0,2 +51720,14,1.0,1,1.7767943143844604,221,0.0,2 +51721,14,0.0,1,1.5817968845367432,222,0.0,2 +51722,14,0.0,1,1.5107977390289307,223,1.0,2 +51723,14,0.0,1,1.2648006677627563,224,0.0,2 +51724,14,0.0,1,1.3797993659973145,225,1.0,2 +51725,14,0.0,1,1.2338005304336548,226,1.0,2 +51726,14,0.0,1,1.329800009727478,227,1.0,2 +51727,14,0.0,1,1.2418005466461182,228,0.0,2 +51728,14,0.0,1,1.6267962455749512,229,0.0,2 +51729,14,0.0,1,1.6987953186035156,230,0.0,2 +51730,14,1.0,1,1.8397934436798096,231,1.0,2 +51731,14,1.0,1,1.3577996492385864,232,0.0,2 +51732,14,0.0,1,2.0347912311553955,233,0.0,2 +51733,14,0.0,1,1.6497960090637207,234,0.0,2 +51734,14,1.0,1,1.6247962713241577,235,0.0,2 +51735,14,0.0,1,1.3597996234893799,236,0.0,2 +51736,14,0.0,1,1.1368004083633423,237,1.0,2 +51737,14,0.0,1,2.435810089111328,238,0.0,2 +51738,14,1.0,1,1.495797872543335,239,1.0,2 +51739,14,1.0,1,2.010791301727295,240,1.0,2 +51740,14,1.0,1,1.2768006324768066,241,1.0,2 +51741,14,1.0,1,1.217800498008728,242,0.0,2 +51742,14,0.0,1,1.633796215057373,243,0.0,2 +51743,14,1.0,1,2.2458009719848633,244,1.0,2 +51744,14,1.0,1,1.8817930221557617,245,1.0,2 +51745,14,1.0,1,1.2448005676269531,246,1.0,2 +51746,14,1.0,1,1.3497997522354126,247,1.0,2 +51747,14,1.0,1,1.2278006076812744,248,0.0,2 +51748,14,0.0,1,2.0457916259765625,249,0.0,2 +51749,14,0.0,1,1.8367935419082642,250,1.0,2 +51750,14,0.0,1,1.5037977695465088,251,0.0,2 +51751,14,0.0,1,1.4547984600067139,252,0.0,2 +51752,14,0.0,1,1.792794108390808,253,1.0,2 +51753,14,0.0,1,1.472798228263855,254,1.0,2 +51754,14,0.0,1,1.5297974348068237,255,0.0,2 +51755,14,0.0,1,1.5807968378067017,256,0.0,2 +51756,14,0.0,1,1.4877979755401611,257,1.0,2 +51757,14,0.0,1,1.2358006238937378,258,0.0,2 +51758,14,0.0,1,1.541797399520874,259,0.0,2 +51759,14,1.0,1,2.138796091079712,260,0.0,2 +51760,14,0.0,1,1.3697994947433472,261,0.0,2 +51761,14,0.0,1,1.428798794746399,262,1.0,2 +51762,14,0.0,1,1.1718004941940308,263,1.0,2 +51763,14,0.0,1,1.443798542022705,264,0.0,2 +51764,14,0.0,1,1.815793752670288,265,1.0,2 +51765,14,0.0,1,1.6537959575653076,266,0.0,2 +51766,14,0.0,1,1.2408006191253662,267,1.0,2 +51767,14,0.0,1,1.3208001852035522,268,0.0,2 +51768,14,0.0,1,2.485812187194824,269,0.0,2 +51769,14,0.0,1,1.3977991342544556,270,1.0,2 +51770,14,0.0,1,1.4577983617782593,271,0.0,2 +51771,14,1.0,1,1.517797589302063,272,0.0,2 +51772,14,0.0,1,1.2698006629943848,273,0.0,2 +51773,14,0.0,1,1.2968004941940308,274,1.0,2 +51774,14,0.0,1,1.247800588607788,275,0.0,2 +51775,14,0.0,1,1.5747969150543213,276,0.0,2 +51776,14,0.0,1,1.4677982330322266,277,0.0,2 +51777,14,0.0,1,1.52179753780365,278,0.0,2 +51778,14,1.0,1,1.3477997779846191,279,0.0,2 +51779,14,0.0,1,1.752794623374939,280,0.0,2 +51780,14,1.0,1,2.206799268722534,281,1.0,2 +51781,14,1.0,1,1.5767968893051147,282,1.0,2 +51782,14,1.0,1,1.7177951335906982,283,1.0,2 +51783,14,1.0,1,1.3387999534606934,284,0.0,2 +51784,14,1.0,1,1.6917953491210938,285,1.0,2 +51785,14,1.0,1,1.5067977905273438,286,1.0,2 +51786,14,1.0,1,1.2828006744384766,287,1.0,2 +51787,14,1.0,1,1.3477997779846191,288,1.0,2 +51788,14,1.0,1,1.354799747467041,289,1.0,2 +51789,14,1.0,1,1.3967992067337036,290,1.0,2 +51790,14,1.0,1,1.2768006324768066,291,0.0,2 +51791,14,1.0,1,2.002791404724121,292,1.0,2 +51792,14,1.0,1,1.5227975845336914,293,1.0,2 +51793,14,1.0,1,1.3198001384735107,294,1.0,2 +51794,14,1.0,1,1.3947992324829102,295,0.0,2 +51795,14,0.0,1,1.1398004293441772,296,0.0,2 +51796,14,0.0,1,1.4747982025146484,297,0.0,2 +51797,14,0.0,1,1.656795859336853,298,1.0,2 +51798,14,0.0,1,1.262800693511963,299,0.0,2 +51799,14,0.0,1,1.2748006582260132,300,1.0,2 +51800,14,0.0,1,1.3098002672195435,301,0.0,2 +51801,14,1.0,1,1.3857992887496948,302,1.0,2 +51802,14,1.0,1,1.3597996234893799,303,1.0,2 +51803,14,1.0,1,1.451798439025879,304,1.0,2 +51804,14,1.0,1,1.2958004474639893,305,1.0,2 +51805,14,1.0,1,1.6177964210510254,306,0.0,2 +51806,14,1.0,1,1.3467998504638672,307,1.0,2 +51807,14,1.0,1,1.4897979497909546,308,0.0,2 +51808,14,0.0,1,1.700795292854309,309,1.0,2 +51809,14,0.0,1,1.1368004083633423,310,0.0,2 +51810,14,1.0,1,1.819793701171875,311,1.0,2 +51811,14,1.0,1,1.2048004865646362,312,0.0,2 +51812,14,1.0,1,2.2798027992248535,313,1.0,2 +51813,14,1.0,1,1.543797254562378,314,0.0,2 +51814,14,1.0,1,1.2678006887435913,315,1.0,2 +51815,14,1.0,1,1.7687944173812866,316,1.0,2 +51816,14,1.0,1,1.3917992115020752,317,0.0,2 +51817,14,0.0,1,2.161797046661377,318,1.0,2 +51818,14,0.0,1,2.2548015117645264,319,0.0,2 +51819,14,1.0,1,1.9417922496795654,320,1.0,2 +51820,14,1.0,1,1.310800313949585,321,0.0,2 +51821,14,0.0,1,1.5547971725463867,322,0.0,2 +51822,14,1.0,1,1.1888004541397095,323,1.0,2 +51823,14,1.0,1,2.2558016777038574,324,1.0,2 +51824,14,1.0,1,1.7467947006225586,325,0.0,2 +51825,14,0.0,1,2.152796745300293,326,0.0,2 +51826,14,1.0,1,1.4137989282608032,327,1.0,2 +51827,14,1.0,1,1.6047965288162231,328,1.0,2 +51828,14,1.0,1,1.288800597190857,329,1.0,2 +51829,14,1.0,1,1.7247949838638306,330,1.0,2 +51830,14,1.0,1,1.5777969360351562,331,1.0,2 +51831,14,1.0,1,1.451798439025879,332,1.0,2 +51832,14,1.0,1,1.5887967348098755,333,0.0,2 +51833,14,0.0,1,1.380799412727356,334,1.0,2 +51834,14,0.0,1,1.8107938766479492,335,1.0,2 +51835,14,0.0,1,1.0908002853393555,336,0.0,2 +51836,14,0.0,1,1.8837928771972656,337,0.0,2 +51837,14,0.0,1,2.3168044090270996,338,0.0,2 +51838,14,1.0,1,1.2948005199432373,339,1.0,2 +51839,14,1.0,1,1.3258000612258911,340,0.0,2 +51840,14,1.0,1,1.5627970695495605,341,0.0,2 +51841,14,1.0,1,1.6737957000732422,342,0.0,2 +51842,14,0.0,1,1.2608006000518799,343,1.0,2 +51843,14,0.0,1,2.3658065795898438,344,1.0,2 +51844,14,0.0,1,1.1918004751205444,345,0.0,2 +51845,14,0.0,1,2.0847935676574707,346,1.0,2 +51846,14,0.0,1,1.4377986192703247,347,0.0,2 +51847,14,0.0,1,2.001791477203369,348,1.0,2 +51848,14,1.0,1,2.922832727432251,349,1.0,2 +51849,14,0.0,1,1.9017927646636963,350,0.0,2 +51850,14,0.0,1,1.6327961683273315,351,0.0,2 +51851,14,1.0,1,1.472798228263855,352,0.0,2 +51852,14,1.0,1,2.0417914390563965,353,1.0,2 +51853,14,1.0,1,1.543797254562378,354,1.0,2 +51854,14,1.0,1,1.4317986965179443,355,0.0,2 +51855,14,0.0,1,1.2798006534576416,356,0.0,2 +51856,14,0.0,1,1.5287975072860718,357,0.0,2 +51857,14,1.0,1,1.6807955503463745,358,1.0,2 +51858,14,1.0,1,1.4867980480194092,359,0.0,2 +51859,14,0.0,1,1.217800498008728,360,0.0,2 +51860,14,1.0,1,2.405808448791504,361,1.0,2 +51861,14,1.0,1,1.5197975635528564,362,1.0,2 +51862,14,1.0,1,1.3228001594543457,363,1.0,2 +51863,14,1.0,1,1.381799340248108,364,0.0,2 +51864,14,1.0,1,1.656795859336853,365,1.0,2 +51865,14,1.0,1,1.2778006792068481,366,1.0,2 +51866,14,1.0,1,1.5237975120544434,367,1.0,2 +51867,14,1.0,1,1.285800576210022,368,0.0,2 +51868,14,1.0,1,1.9337923526763916,369,1.0,2 +51869,14,1.0,1,1.3487998247146606,370,0.0,2 +51870,14,1.0,1,2.5888171195983887,371,1.0,2 +51871,14,0.0,1,1.250800609588623,372,1.0,2 +51872,14,1.0,1,1.3437998294830322,373,1.0,2 +51873,14,0.0,1,1.963791847229004,374,1.0,2 +51874,14,0.0,1,1.1758004426956177,375,0.0,2 +51875,14,1.0,1,1.6247962713241577,376,0.0,2 +51876,14,0.0,1,1.727794885635376,377,0.0,2 +51877,14,1.0,1,1.8517932891845703,378,0.0,2 +51878,14,0.0,1,1.3467998504638672,379,0.0,2 +51879,14,1.0,1,1.5327974557876587,380,1.0,2 +51880,14,1.0,1,1.8747930526733398,381,1.0,2 +51881,14,1.0,1,1.5827968120574951,382,0.0,2 +51882,14,0.0,1,1.4977978467941284,383,0.0,2 +51883,14,1.0,1,1.8937928676605225,384,0.0,2 +51884,14,0.0,1,1.726794958114624,385,0.0,2 +51885,14,1.0,1,1.8547933101654053,386,0.0,2 +51886,14,1.0,1,1.82279372215271,387,1.0,2 +51887,14,1.0,1,1.4237987995147705,388,0.0,2 +51888,14,1.0,1,1.9827916622161865,389,1.0,2 +51889,14,1.0,1,1.3837993144989014,390,1.0,2 +51890,14,1.0,1,1.5487972497940063,391,1.0,2 +51891,14,1.0,1,1.3098002672195435,392,1.0,2 +51892,14,1.0,1,1.2158005237579346,393,1.0,2 +51893,14,1.0,1,1.3877992630004883,394,0.0,2 +51894,14,0.0,1,1.5817968845367432,395,0.0,2 +51895,14,0.0,1,1.1648004055023193,396,0.0,2 +51896,14,0.0,1,1.2408006191253662,397,0.0,2 +51897,14,0.0,1,2.006791353225708,398,1.0,2 +51898,14,0.0,1,1.5227975845336914,399,0.0,2 +51899,14,0.0,1,1.226800560951233,400,0.0,2 +51900,14,1.0,1,2.0977940559387207,401,1.0,2 +51901,14,1.0,1,1.3258000612258911,402,1.0,2 +51902,14,1.0,1,1.4077990055084229,403,1.0,2 +51903,14,1.0,1,1.6267962455749512,404,1.0,2 +51904,14,1.0,1,1.3148002624511719,405,1.0,2 +51905,14,1.0,1,1.1858004331588745,406,1.0,2 +51906,14,0.0,1,1.6447960138320923,407,0.0,2 +51907,14,1.0,1,1.564797043800354,408,1.0,2 +51908,14,1.0,1,2.0507919788360596,409,1.0,2 +51909,14,1.0,1,1.5817968845367432,410,1.0,2 +51910,14,1.0,1,1.216800570487976,411,0.0,2 +51911,14,0.0,1,1.940792202949524,412,0.0,2 +51912,14,1.0,1,1.8947927951812744,413,0.0,2 +51913,14,0.0,1,1.2688006162643433,414,0.0,2 +51914,14,0.0,1,1.3357999324798584,415,1.0,2 +51915,14,1.0,1,1.2148005962371826,416,1.0,2 +51916,14,0.0,1,1.4057990312576294,417,0.0,2 +51917,14,0.0,1,1.4167989492416382,418,0.0,2 +51918,14,1.0,1,1.380799412727356,419,1.0,2 +51919,14,1.0,1,1.377799391746521,420,1.0,2 +51920,14,1.0,1,1.9817917346954346,421,1.0,2 +51921,14,1.0,1,1.250800609588623,422,1.0,2 +51922,14,1.0,1,1.635796070098877,423,0.0,2 +51923,14,0.0,1,1.9027926921844482,424,0.0,2 +51924,14,1.0,1,1.3617995977401733,425,1.0,2 +51925,14,1.0,1,2.117794990539551,426,1.0,2 +51926,14,1.0,1,1.5227975845336914,427,0.0,2 +51927,14,1.0,1,1.7937941551208496,428,1.0,2 +51928,14,1.0,1,1.8317935466766357,429,1.0,2 +51929,14,1.0,1,1.9917914867401123,430,1.0,2 +51930,14,1.0,1,1.4087990522384644,431,1.0,2 +51931,14,1.0,1,1.3607996702194214,432,1.0,2 +51932,14,1.0,1,1.4107990264892578,433,1.0,2 +51933,14,1.0,1,1.2398005723953247,434,1.0,2 +51934,14,1.0,1,1.4177988767623901,435,1.0,2 +51935,14,1.0,1,1.5017977952957153,436,1.0,2 +51936,14,1.0,1,1.280800700187683,437,1.0,2 +51937,14,1.0,1,1.2728006839752197,438,1.0,2 +51938,14,1.0,1,1.2978004217147827,439,0.0,2 +51939,14,0.0,1,2.4868123531341553,440,1.0,2 +51940,14,0.0,1,1.377799391746521,441,1.0,2 +51941,14,0.0,1,1.6617958545684814,442,1.0,2 +51942,14,0.0,1,1.4547984600067139,443,0.0,2 +51943,14,1.0,1,1.866793155670166,444,1.0,2 +51944,14,1.0,1,1.8517932891845703,445,0.0,2 +51945,14,0.0,1,1.3058003187179565,446,0.0,2 +51946,14,1.0,1,1.6217963695526123,447,1.0,2 +51947,14,1.0,1,1.333799958229065,448,1.0,2 +51948,14,1.0,1,1.1748003959655762,449,0.0,2 +51949,14,1.0,1,1.9997913837432861,450,1.0,2 +51950,14,1.0,1,1.421798825263977,451,1.0,2 +51951,14,1.0,1,1.1218003034591675,452,1.0,2 +51952,14,1.0,1,1.4427986145019531,453,1.0,2 +51953,14,1.0,1,1.6017966270446777,454,1.0,2 +51954,14,1.0,1,1.3128002882003784,455,1.0,2 +51955,14,1.0,1,1.3677995204925537,456,1.0,2 +51956,14,1.0,1,1.815793752670288,457,1.0,2 +51957,14,1.0,1,2.372807025909424,458,0.0,2 +51958,14,0.0,1,2.0937938690185547,459,0.0,2 +51959,14,1.0,1,1.7727943658828735,460,1.0,2 +51960,14,1.0,1,1.2728006839752197,461,0.0,2 +51961,14,1.0,1,1.9017927646636963,462,0.0,2 +51962,14,0.0,1,1.4627983570098877,463,1.0,2 +51963,14,0.0,1,1.2798006534576416,464,0.0,2 +51964,14,1.0,1,1.656795859336853,465,1.0,2 +51965,14,1.0,1,1.6847954988479614,466,1.0,2 +51966,14,1.0,1,1.2838006019592285,467,0.0,2 +51967,14,0.0,1,2.0187911987304688,468,0.0,2 +51968,14,0.0,1,1.4417985677719116,469,1.0,2 +51969,14,0.0,1,1.6077964305877686,470,0.0,2 +51970,14,1.0,1,1.5067977905273438,471,1.0,2 +51971,14,1.0,1,1.635796070098877,472,1.0,2 +51972,14,1.0,1,1.4277987480163574,473,0.0,2 +51973,14,0.0,1,1.5577971935272217,474,0.0,2 +51974,14,1.0,1,1.428798794746399,475,1.0,2 +51975,14,1.0,1,1.5117976665496826,476,0.0,2 +51976,14,1.0,1,2.202799081802368,477,1.0,2 +51977,14,1.0,1,1.513797640800476,478,1.0,2 +51978,14,1.0,1,1.5527971982955933,479,0.0,2 +51979,14,0.0,1,1.6257963180541992,480,0.0,2 +51980,14,1.0,1,2.128795623779297,481,0.0,2 +51981,14,1.0,1,2.157796859741211,482,1.0,2 +51982,14,1.0,1,1.6557958126068115,483,1.0,2 +51983,14,1.0,1,1.3617995977401733,484,1.0,2 +51984,14,1.0,1,1.3148002624511719,485,1.0,2 +51985,14,1.0,1,1.5087977647781372,486,0.0,2 +51986,14,1.0,1,1.7577946186065674,487,0.0,2 +51987,14,0.0,1,1.9677917957305908,488,0.0,2 +51988,14,0.0,1,2.658820390701294,489,0.0,2 +51989,14,1.0,1,1.7217950820922852,490,1.0,2 +51990,14,1.0,1,2.0317912101745605,491,1.0,2 +51991,14,1.0,1,1.2558006048202515,492,1.0,2 +51992,14,1.0,1,1.468798279762268,493,1.0,2 +51993,14,1.0,1,1.7597944736480713,494,1.0,2 +51994,14,1.0,1,1.6057965755462646,495,0.0,2 +51995,14,1.0,1,1.3387999534606934,496,1.0,2 +51996,14,1.0,1,1.4627983570098877,497,1.0,2 +51997,14,1.0,1,1.4787981510162354,498,1.0,2 +51998,14,1.0,1,1.7127951383590698,499,1.0,2 +51999,14,1.0,1,1.3827993869781494,500,1.0,2 +52000,14,1.0,2,1.8597931861877441,1,1.0,2 +52001,14,1.0,2,1.2758007049560547,2,0.0,2 +52002,14,0.0,2,1.2148005962371826,3,0.0,2 +52003,14,1.0,2,1.6407960653305054,4,0.0,2 +52004,14,0.0,2,2.169797420501709,5,0.0,2 +52005,14,1.0,2,1.3537997007369995,6,1.0,2 +52006,14,1.0,2,1.2338005304336548,7,0.0,2 +52007,14,1.0,2,1.8397934436798096,8,0.0,2 +52008,14,0.0,2,1.7347948551177979,9,1.0,2 +52009,14,0.0,2,1.4397985935211182,10,1.0,2 +52010,14,0.0,2,1.8787930011749268,11,0.0,2 +52011,14,0.0,2,1.5717968940734863,12,1.0,2 +52012,14,0.0,2,1.4397985935211182,13,0.0,2 +52013,14,1.0,2,1.3757994174957275,14,0.0,2 +52014,14,0.0,2,1.399799108505249,15,1.0,2 +52015,14,0.0,2,1.4047991037368774,16,1.0,2 +52016,14,0.0,2,1.1368004083633423,17,1.0,2 +52017,14,0.0,2,1.119800329208374,18,0.0,2 +52018,14,0.0,2,1.5497972965240479,19,0.0,2 +52019,14,0.0,2,1.468798279762268,20,0.0,2 +52020,14,0.0,2,1.192800521850586,21,1.0,2 +52021,14,0.0,2,1.2068004608154297,22,0.0,2 +52022,14,1.0,2,1.4457985162734985,23,1.0,2 +52023,14,1.0,2,1.7067952156066895,24,1.0,2 +52024,14,1.0,2,1.6397960186004639,25,0.0,2 +52025,14,0.0,2,1.6077964305877686,26,1.0,2 +52026,14,0.0,2,1.4047991037368774,27,0.0,2 +52027,14,1.0,2,2.0457916259765625,28,0.0,2 +52028,14,0.0,2,1.1378003358840942,29,1.0,2 +52029,14,0.0,2,1.5287975072860718,30,0.0,2 +52030,14,0.0,2,1.7867941856384277,31,1.0,2 +52031,14,0.0,2,2.0497918128967285,32,0.0,2 +52032,14,1.0,2,1.6467959880828857,33,1.0,2 +52033,14,1.0,2,1.3847993612289429,34,0.0,2 +52034,14,1.0,2,1.8937928676605225,35,0.0,2 +52035,14,1.0,2,2.2868030071258545,36,0.0,2 +52036,14,0.0,2,1.6027965545654297,37,1.0,2 +52037,14,0.0,2,1.4617983102798462,38,0.0,2 +52038,14,0.0,2,1.5627970695495605,39,0.0,2 +52039,14,1.0,2,1.6507959365844727,40,0.0,2 +52040,14,1.0,2,1.727794885635376,41,1.0,2 +52041,14,1.0,2,1.6157963275909424,42,1.0,2 +52042,14,1.0,2,1.4877979755401611,43,0.0,2 +52043,14,1.0,2,1.823793649673462,44,0.0,2 +52044,14,0.0,2,2.3078041076660156,45,0.0,2 +52045,14,0.0,2,1.2528005838394165,46,0.0,2 +52046,14,0.0,2,1.3088003396987915,47,1.0,2 +52047,14,0.0,2,2.2548015117645264,48,1.0,2 +52048,14,0.0,2,1.1688004732131958,49,1.0,2 +52049,14,0.0,2,1.2498005628585815,50,0.0,2 +52050,14,0.0,2,1.2608006000518799,51,1.0,2 +52051,14,0.0,2,1.490797996520996,52,0.0,2 +52052,14,0.0,2,1.4337986707687378,53,0.0,2 +52053,14,0.0,2,1.513797640800476,54,1.0,2 +52054,14,0.0,2,1.3228001594543457,55,0.0,2 +52055,14,1.0,2,2.194798707962036,56,0.0,2 +52056,14,1.0,2,2.0607924461364746,57,1.0,2 +52057,14,1.0,2,1.1968004703521729,58,0.0,2 +52058,14,0.0,2,2.5208139419555664,59,1.0,2 +52059,14,0.0,2,1.30780029296875,60,0.0,2 +52060,14,1.0,2,1.3567997217178345,61,1.0,2 +52061,14,1.0,2,1.6497960090637207,62,1.0,2 +52062,14,1.0,2,2.172797679901123,63,0.0,2 +52063,14,1.0,2,1.7477946281433105,64,1.0,2 +52064,14,1.0,2,1.1888004541397095,65,1.0,2 +52065,14,1.0,2,1.2098004817962646,66,0.0,2 +52066,14,0.0,2,1.3717994689941406,67,0.0,2 +52067,14,0.0,2,1.6647957563400269,68,1.0,2 +52068,14,0.0,2,1.2188005447387695,69,0.0,2 +52069,14,1.0,2,2.0737929344177246,70,0.0,2 +52070,14,1.0,2,1.6627957820892334,71,0.0,2 +52071,14,1.0,2,1.3827993869781494,72,1.0,2 +52072,14,1.0,2,1.2918004989624023,73,1.0,2 +52073,14,1.0,2,1.5537972450256348,74,0.0,2 +52074,14,1.0,2,1.4587984085083008,75,0.0,2 +52075,14,0.0,2,1.380799412727356,76,0.0,2 +52076,14,0.0,2,1.2618006467819214,77,0.0,2 +52077,14,1.0,2,1.7507946491241455,78,1.0,2 +52078,14,1.0,2,1.9357922077178955,79,0.0,2 +52079,14,1.0,2,1.3457998037338257,80,0.0,2 +52080,14,1.0,2,1.918792486190796,81,1.0,2 +52081,14,1.0,2,1.3098002672195435,82,1.0,2 +52082,14,1.0,2,1.4387986660003662,83,1.0,2 +52083,14,1.0,2,1.46979820728302,84,1.0,2 +52084,14,1.0,2,1.1758004426956177,85,0.0,2 +52085,14,0.0,2,1.936792254447937,86,0.0,2 +52086,14,0.0,2,2.0977940559387207,87,1.0,2 +52087,14,0.0,2,1.5737969875335693,88,0.0,2 +52088,14,0.0,2,1.5477972030639648,89,0.0,2 +52089,14,0.0,2,1.3867993354797363,90,0.0,2 +52090,14,0.0,2,1.917792558670044,91,1.0,2 +52091,14,0.0,2,1.4817980527877808,92,0.0,2 +52092,14,0.0,2,1.303800344467163,93,0.0,2 +52093,14,1.0,2,1.4357986450195312,94,0.0,2 +52094,14,0.0,2,1.6907954216003418,95,1.0,2 +52095,14,0.0,2,1.6037964820861816,96,0.0,2 +52096,14,1.0,2,1.3647996187210083,97,1.0,2 +52097,14,1.0,2,1.848793387413025,98,1.0,2 +52098,14,1.0,2,1.7727943658828735,99,1.0,2 +52099,14,1.0,2,1.9517920017242432,100,0.0,2 +52100,14,0.0,2,1.195800542831421,101,0.0,2 +52101,14,0.0,2,2.001791477203369,102,1.0,2 +52102,14,0.0,2,1.1778004169464111,103,0.0,2 +52103,14,0.0,2,1.722795009613037,104,1.0,2 +52104,14,0.0,2,1.8437933921813965,105,1.0,2 +52105,14,0.0,2,1.7077951431274414,106,0.0,2 +52106,14,0.0,2,1.5157976150512695,107,0.0,2 +52107,14,0.0,2,1.159800410270691,108,0.0,2 +52108,14,1.0,2,1.6617958545684814,109,0.0,2 +52109,14,0.0,2,1.1408003568649292,110,0.0,2 +52110,14,1.0,2,2.385807514190674,111,1.0,2 +52111,14,1.0,2,1.546797275543213,112,1.0,2 +52112,14,1.0,2,1.3877992630004883,113,1.0,2 +52113,14,1.0,2,1.3028004169464111,114,1.0,2 +52114,14,1.0,2,1.723794937133789,115,1.0,2 +52115,14,1.0,2,1.406799077987671,116,1.0,2 +52116,14,1.0,2,1.4607983827590942,117,1.0,2 +52117,14,1.0,2,1.2378005981445312,118,0.0,2 +52118,14,0.0,2,2.2848029136657715,119,1.0,2 +52119,14,0.0,2,1.2958004474639893,120,1.0,2 +52120,14,1.0,2,1.3357999324798584,121,0.0,2 +52121,14,0.0,2,1.1608004570007324,122,1.0,2 +52122,14,0.0,2,1.2678006887435913,123,1.0,2 +52123,14,0.0,2,1.1628004312515259,124,0.0,2 +52124,14,0.0,2,2.0907938480377197,125,0.0,2 +52125,14,1.0,2,1.6187963485717773,126,0.0,2 +52126,14,1.0,2,2.424809455871582,127,0.0,2 +52127,14,0.0,2,2.454810857772827,128,0.0,2 +52128,14,1.0,2,1.656795859336853,129,1.0,2 +52129,14,1.0,2,1.4707982540130615,130,1.0,2 +52130,14,1.0,2,1.473798155784607,131,0.0,2 +52131,14,0.0,2,1.5967966318130493,132,0.0,2 +52132,14,1.0,2,1.9997913837432861,133,1.0,2 +52133,14,1.0,2,1.4417985677719116,134,0.0,2 +52134,14,1.0,2,2.204799175262451,135,1.0,2 +52135,14,1.0,2,1.3048003911972046,136,0.0,2 +52136,14,0.0,2,1.3947992324829102,137,0.0,2 +52137,14,1.0,2,1.6677956581115723,138,1.0,2 +52138,14,1.0,2,1.424798846244812,139,0.0,2 +52139,14,1.0,2,1.7947940826416016,140,0.0,2 +52140,14,1.0,2,1.5777969360351562,141,0.0,2 +52141,14,0.0,2,1.5087977647781372,142,1.0,2 +52142,14,0.0,2,1.3937991857528687,143,0.0,2 +52143,14,0.0,2,1.6037964820861816,144,0.0,2 +52144,14,1.0,2,1.3258000612258911,145,0.0,2 +52145,14,1.0,2,1.8357934951782227,146,1.0,2 +52146,14,1.0,2,1.8567932844161987,147,1.0,2 +52147,14,1.0,2,1.520797610282898,148,1.0,2 +52148,14,1.0,2,1.3687995672225952,149,0.0,2 +52149,14,0.0,2,1.7997939586639404,150,0.0,2 +52150,14,1.0,2,1.9087926149368286,151,0.0,2 +52151,14,0.0,2,1.4297987222671509,152,1.0,2 +52152,14,0.0,2,1.537797451019287,153,0.0,2 +52153,14,0.0,2,1.3797993659973145,154,1.0,2 +52154,14,0.0,2,1.226800560951233,155,0.0,2 +52155,14,0.0,2,2.430809736251831,156,0.0,2 +52156,14,0.0,2,1.420798897743225,157,1.0,2 +52157,14,0.0,2,1.3617995977401733,158,1.0,2 +52158,14,0.0,2,1.288800597190857,159,0.0,2 +52159,14,0.0,2,1.149800419807434,160,0.0,2 +52160,14,1.0,2,2.117794990539551,161,1.0,2 +52161,14,1.0,2,1.3607996702194214,162,0.0,2 +52162,14,1.0,2,1.46979820728302,163,1.0,2 +52163,14,1.0,2,1.5617971420288086,164,0.0,2 +52164,14,0.0,2,1.7427947521209717,165,0.0,2 +52165,14,1.0,2,1.377799391746521,166,1.0,2 +52166,14,1.0,2,1.2978004217147827,167,1.0,2 +52167,14,1.0,2,1.4887980222702026,168,0.0,2 +52168,14,1.0,2,1.8617932796478271,169,0.0,2 +52169,14,1.0,2,1.2978004217147827,170,0.0,2 +52170,14,0.0,2,1.4087990522384644,171,1.0,2 +52171,14,0.0,2,1.2188005447387695,172,0.0,2 +52172,14,0.0,2,1.2798006534576416,173,0.0,2 +52173,14,0.0,2,1.1988005638122559,174,1.0,2 +52174,14,0.0,2,1.1518003940582275,175,0.0,2 +52175,14,0.0,2,1.5737969875335693,176,1.0,2 +52176,14,0.0,2,1.2768006324768066,177,1.0,2 +52177,14,0.0,2,1.2938004732131958,178,1.0,2 +52178,14,0.0,2,1.1678004264831543,179,0.0,2 +52179,14,1.0,2,1.4707982540130615,180,0.0,2 +52180,14,0.0,2,1.6997952461242676,181,0.0,2 +52181,14,1.0,2,1.8367935419082642,182,0.0,2 +52182,14,1.0,2,1.8307936191558838,183,0.0,2 +52183,14,0.0,2,1.2218005657196045,184,0.0,2 +52184,14,1.0,2,1.8457934856414795,185,1.0,2 +52185,14,1.0,2,1.6887954473495483,186,1.0,2 +52186,14,1.0,2,1.3897992372512817,187,0.0,2 +52187,14,0.0,2,2.2398009300231934,188,1.0,2 +52188,14,0.0,2,1.2838006019592285,189,1.0,2 +52189,14,0.0,2,1.5997965335845947,190,0.0,2 +52190,14,0.0,2,2.41680908203125,191,0.0,2 +52191,14,0.0,2,1.4847980737686157,192,0.0,2 +52192,14,0.0,2,1.3597996234893799,193,1.0,2 +52193,14,0.0,2,1.6157963275909424,194,1.0,2 +52194,14,0.0,2,1.1488003730773926,195,0.0,2 +52195,14,1.0,2,1.3877992630004883,196,0.0,2 +52196,14,1.0,2,1.4867980480194092,197,1.0,2 +52197,14,1.0,2,1.2278006076812744,198,0.0,2 +52198,14,1.0,2,1.9377923011779785,199,0.0,2 +52199,14,1.0,2,1.5257974863052368,200,0.0,2 +52200,14,0.0,2,1.4187989234924316,201,0.0,2 +52201,14,0.0,2,1.5017977952957153,202,1.0,2 +52202,14,0.0,2,1.1328003406524658,203,1.0,2 +52203,14,0.0,2,1.226800560951233,204,1.0,2 +52204,14,0.0,2,1.612796425819397,205,0.0,2 +52205,14,1.0,2,1.729794979095459,206,0.0,2 +52206,14,0.0,2,1.773794412612915,207,0.0,2 +52207,14,0.0,2,1.7507946491241455,208,1.0,2 +52208,14,0.0,2,1.800794005393982,209,1.0,2 +52209,14,0.0,2,1.4837980270385742,210,0.0,2 +52210,14,1.0,2,1.6977953910827637,211,0.0,2 +52211,14,1.0,2,1.4427986145019531,212,1.0,2 +52212,14,1.0,2,1.6937954425811768,213,1.0,2 +52213,14,1.0,2,1.3797993659973145,214,1.0,2 +52214,14,1.0,2,1.823793649673462,215,1.0,2 +52215,14,1.0,2,1.3447998762130737,216,0.0,2 +52216,14,0.0,2,1.256800651550293,217,0.0,2 +52217,14,1.0,2,1.4747982025146484,218,1.0,2 +52218,14,1.0,2,1.5407973527908325,219,0.0,2 +52219,14,1.0,2,1.9297924041748047,220,1.0,2 +52220,14,1.0,2,1.262800693511963,221,1.0,2 +52221,14,0.0,2,1.5057977437973022,222,0.0,2 +52222,14,1.0,2,1.420798897743225,223,0.0,2 +52223,14,1.0,2,1.4047991037368774,224,1.0,2 +52224,14,0.0,2,1.7867941856384277,225,0.0,2 +52225,14,1.0,2,1.8417935371398926,226,0.0,2 +52226,14,0.0,2,1.8867928981781006,227,0.0,2 +52227,14,1.0,2,1.7687944173812866,228,0.0,2 +52228,14,1.0,2,1.6197962760925293,229,0.0,2 +52229,14,0.0,2,2.347805976867676,230,0.0,2 +52230,14,1.0,2,1.4297987222671509,231,1.0,2 +52231,14,1.0,2,1.865793228149414,232,1.0,2 +52232,14,1.0,2,1.3198001384735107,233,1.0,2 +52233,14,1.0,2,1.537797451019287,234,0.0,2 +52234,14,0.0,2,1.3877992630004883,235,0.0,2 +52235,14,0.0,2,2.458811044692993,236,1.0,2 +52236,14,0.0,2,1.2718006372451782,237,1.0,2 +52237,14,0.0,2,1.7417948246002197,238,0.0,2 +52238,14,1.0,2,2.010791301727295,239,1.0,2 +52239,14,1.0,2,1.9797916412353516,240,1.0,2 +52240,14,1.0,2,1.3397998809814453,241,1.0,2 +52241,14,1.0,2,1.7247949838638306,242,1.0,2 +52242,14,1.0,2,1.2188005447387695,243,0.0,2 +52243,14,0.0,2,1.9607919454574585,244,1.0,2 +52244,14,0.0,2,1.5757968425750732,245,1.0,2 +52245,14,0.0,2,1.3088003396987915,246,0.0,2 +52246,14,0.0,2,1.253800630569458,247,0.0,2 +52247,14,1.0,2,1.2018004655838013,248,1.0,2 +52248,14,1.0,2,1.424798846244812,249,1.0,2 +52249,14,1.0,2,1.5547971725463867,250,0.0,2 +52250,14,1.0,2,2.37680721282959,251,1.0,2 +52251,14,1.0,2,1.817793846130371,252,0.0,2 +52252,14,1.0,2,2.123795509338379,253,1.0,2 +52253,14,1.0,2,1.420798897743225,254,1.0,2 +52254,14,1.0,2,1.2438006401062012,255,1.0,2 +52255,14,1.0,2,1.3198001384735107,256,0.0,2 +52256,14,1.0,2,1.752794623374939,257,1.0,2 +52257,14,1.0,2,1.3088003396987915,258,0.0,2 +52258,14,1.0,2,1.3497997522354126,259,1.0,2 +52259,14,1.0,2,1.7637944221496582,260,1.0,2 +52260,14,1.0,2,1.564797043800354,261,1.0,2 +52261,14,1.0,2,1.5227975845336914,262,0.0,2 +52262,14,1.0,2,1.6017966270446777,263,0.0,2 +52263,14,0.0,2,2.144796371459961,264,1.0,2 +52264,14,0.0,2,1.2518006563186646,265,1.0,2 +52265,14,0.0,2,1.3617995977401733,266,0.0,2 +52266,14,0.0,2,2.145796298980713,267,0.0,2 +52267,14,1.0,2,1.5557971000671387,268,1.0,2 +52268,14,1.0,2,2.2508013248443604,269,0.0,2 +52269,14,0.0,2,1.3158001899719238,270,0.0,2 +52270,14,0.0,2,1.4527984857559204,271,1.0,2 +52271,14,0.0,2,1.2328006029129028,272,1.0,2 +52272,14,0.0,2,1.2878005504608154,273,0.0,2 +52273,14,0.0,2,1.1638004779815674,274,1.0,2 +52274,14,0.0,2,1.729794979095459,275,1.0,2 +52275,14,0.0,2,1.1628004312515259,276,0.0,2 +52276,14,0.0,2,1.5617971420288086,277,1.0,2 +52277,14,0.0,2,1.819793701171875,278,1.0,2 +52278,14,0.0,2,1.5627970695495605,279,0.0,2 +52279,14,0.0,2,1.4677982330322266,280,1.0,2 +52280,14,0.0,2,1.5967966318130493,281,1.0,2 +52281,14,0.0,2,1.473798155784607,282,1.0,2 +52282,14,0.0,2,1.4447985887527466,283,1.0,2 +52283,14,0.0,2,1.3617995977401733,284,0.0,2 +52284,14,0.0,2,1.5087977647781372,285,0.0,2 +52285,14,1.0,2,1.9897916316986084,286,1.0,2 +52286,14,1.0,2,1.1738004684448242,287,1.0,2 +52287,14,0.0,2,1.3278000354766846,288,0.0,2 +52288,14,1.0,2,1.7247949838638306,289,0.0,2 +52289,14,1.0,2,1.6977953910827637,290,0.0,2 +52290,14,1.0,2,1.2988004684448242,291,0.0,2 +52291,14,0.0,2,1.7117950916290283,292,0.0,2 +52292,14,0.0,2,2.2538013458251953,293,0.0,2 +52293,14,1.0,2,1.4647983312606812,294,0.0,2 +52294,14,0.0,2,1.7647944688796997,295,1.0,2 +52295,14,0.0,2,1.125800371170044,296,1.0,2 +52296,14,0.0,2,1.2648006677627563,297,1.0,2 +52297,14,0.0,2,1.1728004217147827,298,1.0,2 +52298,14,0.0,2,1.1418004035949707,299,0.0,2 +52299,14,0.0,2,1.4647983312606812,300,1.0,2 +52300,14,0.0,2,1.1668004989624023,301,1.0,2 +52301,14,0.0,2,1.1638004779815674,302,0.0,2 +52302,14,1.0,2,1.5257974863052368,303,0.0,2 +52303,14,0.0,2,2.0417914390563965,304,1.0,2 +52304,14,0.0,2,1.4197988510131836,305,1.0,2 +52305,14,0.0,2,2.0617923736572266,306,0.0,2 +52306,14,0.0,2,1.5557971000671387,307,1.0,2 +52307,14,0.0,2,1.2498005628585815,308,0.0,2 +52308,14,1.0,2,1.8457934856414795,309,1.0,2 +52309,14,1.0,2,1.5117976665496826,310,0.0,2 +52310,14,0.0,2,1.7537946701049805,311,0.0,2 +52311,14,1.0,2,1.543797254562378,312,1.0,2 +52312,14,0.0,2,1.288800597190857,313,0.0,2 +52313,14,1.0,2,1.9667918682098389,314,1.0,2 +52314,14,1.0,2,1.3847993612289429,315,0.0,2 +52315,14,1.0,2,2.3028037548065186,316,0.0,2 +52316,14,1.0,2,1.5947966575622559,317,1.0,2 +52317,14,1.0,2,1.560797095298767,318,1.0,2 +52318,14,1.0,2,1.6937954425811768,319,1.0,2 +52319,14,1.0,2,1.2698006629943848,320,1.0,2 +52320,14,1.0,2,1.4497984647750854,321,1.0,2 +52321,14,1.0,2,1.5667970180511475,322,0.0,2 +52322,14,1.0,2,1.7677943706512451,323,1.0,2 +52323,14,1.0,2,1.7457947731018066,324,1.0,2 +52324,14,1.0,2,1.2368005514144897,325,0.0,2 +52325,14,1.0,2,1.9667918682098389,326,1.0,2 +52326,14,1.0,2,1.3877992630004883,327,1.0,2 +52327,14,1.0,2,1.4887980222702026,328,1.0,2 +52328,14,1.0,2,1.3238000869750977,329,1.0,2 +52329,14,1.0,2,1.7357947826385498,330,0.0,2 +52330,14,1.0,2,1.9507920742034912,331,1.0,2 +52331,14,1.0,2,1.6047965288162231,332,1.0,2 +52332,14,1.0,2,1.9457921981811523,333,1.0,2 +52333,14,1.0,2,1.5227975845336914,334,0.0,2 +52334,14,1.0,2,1.3457998037338257,335,0.0,2 +52335,14,0.0,2,1.4547984600067139,336,0.0,2 +52336,14,0.0,2,1.3348000049591064,337,0.0,2 +52337,14,0.0,2,1.583796739578247,338,0.0,2 +52338,14,1.0,2,1.7677943706512451,339,1.0,2 +52339,14,0.0,2,1.2868006229400635,340,1.0,2 +52340,14,0.0,2,1.5087977647781372,341,0.0,2 +52341,14,1.0,2,1.7627944946289062,342,1.0,2 +52342,14,1.0,2,1.8207937479019165,343,1.0,2 +52343,14,1.0,2,1.520797610282898,344,0.0,2 +52344,14,0.0,2,1.9987914562225342,345,0.0,2 +52345,14,0.0,2,2.1097946166992188,346,1.0,2 +52346,14,0.0,2,1.3847993612289429,347,1.0,2 +52347,14,0.0,2,1.1458003520965576,348,0.0,2 +52348,14,1.0,2,1.2638006210327148,349,1.0,2 +52349,14,1.0,2,1.253800630569458,350,0.0,2 +52350,14,1.0,2,1.5657970905303955,351,1.0,2 +52351,14,1.0,2,1.3967992067337036,352,1.0,2 +52352,14,1.0,2,1.5247975587844849,353,0.0,2 +52353,14,1.0,2,1.4017990827560425,354,0.0,2 +52354,14,1.0,2,2.017791271209717,355,1.0,2 +52355,14,1.0,2,1.560797095298767,356,1.0,2 +52356,14,1.0,2,1.593796730041504,357,0.0,2 +52357,14,0.0,2,1.476798176765442,358,0.0,2 +52358,14,0.0,2,1.403799057006836,359,0.0,2 +52359,14,0.0,2,1.3937991857528687,360,0.0,2 +52360,14,0.0,2,1.8037939071655273,361,1.0,2 +52361,14,0.0,2,1.4337986707687378,362,0.0,2 +52362,14,1.0,2,1.4607983827590942,363,1.0,2 +52363,14,1.0,2,1.3497997522354126,364,0.0,2 +52364,14,0.0,2,1.3797993659973145,365,0.0,2 +52365,14,0.0,2,1.4417985677719116,366,0.0,2 +52366,14,0.0,2,1.4117989540100098,367,1.0,2 +52367,14,0.0,2,1.2288005352020264,368,0.0,2 +52368,14,1.0,2,1.8947927951812744,369,0.0,2 +52369,14,1.0,2,2.45681095123291,370,1.0,2 +52370,14,1.0,2,1.281800627708435,371,0.0,2 +52371,14,0.0,2,2.2618017196655273,372,0.0,2 +52372,14,1.0,2,1.2378005981445312,373,0.0,2 +52373,14,0.0,2,1.494797945022583,374,0.0,2 +52374,14,0.0,2,1.1718004941940308,375,1.0,2 +52375,14,0.0,2,1.3238000869750977,376,0.0,2 +52376,14,0.0,2,1.2988004684448242,377,1.0,2 +52377,14,0.0,2,1.634796142578125,378,0.0,2 +52378,14,0.0,2,2.0397915840148926,379,0.0,2 +52379,14,0.0,2,1.2778006792068481,380,0.0,2 +52380,14,0.0,2,1.3967992067337036,381,1.0,2 +52381,14,0.0,2,1.2318005561828613,382,1.0,2 +52382,14,0.0,2,1.6037964820861816,383,0.0,2 +52383,14,1.0,2,1.7977941036224365,384,0.0,2 +52384,14,0.0,2,1.253800630569458,385,0.0,2 +52385,14,1.0,2,1.5367974042892456,386,0.0,2 +52386,14,1.0,2,2.0857934951782227,387,1.0,2 +52387,14,1.0,2,1.3467998504638672,388,1.0,2 +52388,14,1.0,2,1.3637995719909668,389,1.0,2 +52389,14,1.0,2,1.5087977647781372,390,1.0,2 +52390,14,1.0,2,1.3308000564575195,391,0.0,2 +52391,14,1.0,2,1.4357986450195312,392,0.0,2 +52392,14,1.0,2,1.495797872543335,393,1.0,2 +52393,14,1.0,2,1.2518006563186646,394,0.0,2 +52394,14,0.0,2,1.3228001594543457,395,1.0,2 +52395,14,0.0,2,1.8597931861877441,396,0.0,2 +52396,14,0.0,2,1.2608006000518799,397,1.0,2 +52397,14,0.0,2,1.2248005867004395,398,0.0,2 +52398,14,1.0,2,1.7657945156097412,399,1.0,2 +52399,14,1.0,2,1.4047991037368774,400,0.0,2 +52400,14,0.0,2,1.3617995977401733,401,1.0,2 +52401,14,0.0,2,1.2278006076812744,402,1.0,2 +52402,14,0.0,2,1.3158001899719238,403,1.0,2 +52403,14,0.0,2,1.2028005123138428,404,1.0,2 +52404,14,0.0,2,1.2058005332946777,405,0.0,2 +52405,14,0.0,2,1.5777969360351562,406,1.0,2 +52406,14,0.0,2,1.9717917442321777,407,0.0,2 +52407,14,1.0,2,1.333799958229065,408,1.0,2 +52408,14,1.0,2,1.1508004665374756,409,1.0,2 +52409,14,1.0,2,1.6417961120605469,410,0.0,2 +52410,14,0.0,2,1.354799747467041,411,0.0,2 +52411,14,0.0,2,1.3387999534606934,412,0.0,2 +52412,14,0.0,2,1.5107977390289307,413,1.0,2 +52413,14,0.0,2,1.491797924041748,414,0.0,2 +52414,14,1.0,2,1.543797254562378,415,0.0,2 +52415,14,0.0,2,1.3477997779846191,416,0.0,2 +52416,14,1.0,2,1.9617919921875,417,1.0,2 +52417,14,1.0,2,1.4547984600067139,418,1.0,2 +52418,14,1.0,2,1.4977978467941284,419,0.0,2 +52419,14,0.0,2,1.476798176765442,420,0.0,2 +52420,14,1.0,2,1.333799958229065,421,1.0,2 +52421,14,1.0,2,1.723794937133789,422,1.0,2 +52422,14,1.0,2,1.406799077987671,423,0.0,2 +52423,14,0.0,2,1.1548004150390625,424,0.0,2 +52424,14,1.0,2,1.9397921562194824,425,0.0,2 +52425,14,0.0,2,1.541797399520874,426,0.0,2 +52426,14,0.0,2,1.9717917442321777,427,0.0,2 +52427,14,0.0,2,1.4807981252670288,428,0.0,2 +52428,14,1.0,2,2.2808027267456055,429,0.0,2 +52429,14,0.0,2,2.127795696258545,430,1.0,2 +52430,14,0.0,2,1.3527997732162476,431,1.0,2 +52431,14,0.0,2,1.280800700187683,432,1.0,2 +52432,14,0.0,2,1.3098002672195435,433,0.0,2 +52433,14,0.0,2,1.4327987432479858,434,1.0,2 +52434,14,0.0,2,1.3018003702163696,435,0.0,2 +52435,14,1.0,2,2.158797025680542,436,1.0,2 +52436,14,1.0,2,1.520797610282898,437,0.0,2 +52437,14,0.0,2,1.44679856300354,438,1.0,2 +52438,14,0.0,2,1.6517958641052246,439,0.0,2 +52439,14,0.0,2,1.773794412612915,440,1.0,2 +52440,14,0.0,2,1.2418005466461182,441,0.0,2 +52441,14,1.0,2,2.0397915840148926,442,1.0,2 +52442,14,1.0,2,1.7877941131591797,443,1.0,2 +52443,14,1.0,2,1.2648006677627563,444,1.0,2 +52444,14,1.0,2,1.685795545578003,445,1.0,2 +52445,14,1.0,2,1.420798897743225,446,1.0,2 +52446,14,1.0,2,1.3487998247146606,447,1.0,2 +52447,14,1.0,2,1.5267975330352783,448,1.0,2 +52448,14,1.0,2,1.3847993612289429,449,1.0,2 +52449,14,1.0,2,1.2398005723953247,450,1.0,2 +52450,14,1.0,2,1.2048004865646362,451,1.0,2 +52451,14,1.0,2,1.398799180984497,452,0.0,2 +52452,14,0.0,2,1.7117950916290283,453,1.0,2 +52453,14,0.0,2,1.2468006610870361,454,1.0,2 +52454,14,0.0,2,1.4757981300354004,455,0.0,2 +52455,14,0.0,2,2.191798686981201,456,0.0,2 +52456,14,0.0,2,1.589796781539917,457,0.0,2 +52457,14,0.0,2,1.3597996234893799,458,0.0,2 +52458,14,1.0,2,1.8547933101654053,459,0.0,2 +52459,14,1.0,2,1.6457960605621338,460,1.0,2 +52460,14,1.0,2,1.4087990522384644,461,0.0,2 +52461,14,0.0,2,1.7887941598892212,462,0.0,2 +52462,14,1.0,2,2.162797212600708,463,1.0,2 +52463,14,1.0,2,1.5307974815368652,464,1.0,2 +52464,14,1.0,2,1.4487985372543335,465,0.0,2 +52465,14,1.0,2,1.6527959108352661,466,1.0,2 +52466,14,1.0,2,1.539797306060791,467,0.0,2 +52467,14,1.0,2,2.0797934532165527,468,1.0,2 +52468,14,1.0,2,1.4307987689971924,469,1.0,2 +52469,14,1.0,2,1.3727995157241821,470,0.0,2 +52470,14,0.0,2,1.3178001642227173,471,0.0,2 +52471,14,1.0,2,1.6557958126068115,472,0.0,2 +52472,14,0.0,2,2.2758026123046875,473,0.0,2 +52473,14,1.0,2,2.0307910442352295,474,0.0,2 +52474,14,1.0,2,1.2038005590438843,475,1.0,2 +52475,14,1.0,2,1.7457947731018066,476,1.0,2 +52476,14,1.0,2,1.6577959060668945,477,0.0,2 +52477,14,0.0,2,1.2048004865646362,478,0.0,2 +52478,14,1.0,2,1.3687995672225952,479,0.0,2 +52479,14,1.0,2,1.940792202949524,480,1.0,2 +52480,14,1.0,2,1.1738004684448242,481,0.0,2 +52481,14,1.0,2,2.406808614730835,482,0.0,2 +52482,14,0.0,2,1.6807955503463745,483,1.0,2 +52483,14,0.0,2,1.2588006258010864,484,1.0,2 +52484,14,0.0,2,1.1578004360198975,485,0.0,2 +52485,14,0.0,2,1.2458006143569946,486,1.0,2 +52486,14,0.0,2,1.2038005590438843,487,1.0,2 +52487,14,0.0,2,1.1548004150390625,488,0.0,2 +52488,14,1.0,2,1.5567971467971802,489,0.0,2 +52489,14,1.0,2,1.5657970905303955,490,0.0,2 +52490,14,1.0,2,1.60879647731781,491,0.0,2 +52491,14,0.0,2,1.3757994174957275,492,1.0,2 +52492,14,0.0,2,1.4717981815338135,493,0.0,2 +52493,14,0.0,2,1.7517945766448975,494,0.0,2 +52494,14,0.0,2,1.7117950916290283,495,1.0,2 +52495,14,0.0,2,1.4977978467941284,496,1.0,2 +52496,14,0.0,2,1.288800597190857,497,0.0,2 +52497,14,0.0,2,2.2618017196655273,498,0.0,2 +52498,14,0.0,2,2.0637927055358887,499,1.0,2 +52499,14,0.0,2,1.4837980270385742,500,0.0,2 +52500,15,1.0,0,2.3390064239501953,1,1.0,2 +52501,15,1.0,0,1.4980016946792603,2,1.0,2 +52502,15,1.0,0,1.488001823425293,3,1.0,2 +52503,15,1.0,0,1.2460037469863892,4,1.0,2 +52504,15,1.0,0,1.3340038061141968,5,1.0,2 +52505,15,1.0,0,1.462002158164978,6,1.0,2 +52506,15,0.0,0,1.5640008449554443,7,0.0,2 +52507,15,1.0,0,1.3680033683776855,8,1.0,2 +52508,15,1.0,0,1.6210001707077026,9,0.0,2 +52509,15,0.0,0,1.2180036306381226,10,0.0,2 +52510,15,1.0,0,1.854997158050537,11,1.0,2 +52511,15,1.0,0,1.4530023336410522,12,1.0,2 +52512,15,1.0,0,1.57900071144104,13,1.0,2 +52513,15,1.0,0,1.6619997024536133,14,1.0,2 +52514,15,1.0,0,1.5670008659362793,15,1.0,2 +52515,15,1.0,0,1.2740037441253662,16,0.0,2 +52516,15,0.0,0,2.1259965896606445,17,0.0,2 +52517,15,0.0,0,1.3790032863616943,18,0.0,2 +52518,15,0.0,0,1.8739969730377197,19,0.0,2 +52519,15,0.0,0,1.2640037536621094,20,0.0,2 +52520,15,0.0,0,2.0959949493408203,21,0.0,2 +52521,15,1.0,0,1.8909966945648193,22,1.0,2 +52522,15,1.0,0,1.1720036268234253,23,1.0,2 +52523,15,1.0,0,1.3980029821395874,24,1.0,2 +52524,15,1.0,0,1.2030036449432373,25,1.0,2 +52525,15,1.0,0,1.317003846168518,26,1.0,2 +52526,15,1.0,0,1.539001226425171,27,1.0,2 +52527,15,1.0,0,1.4470024108886719,28,1.0,2 +52528,15,0.0,0,1.576000690460205,29,0.0,2 +52529,15,1.0,0,1.4340025186538696,30,0.0,2 +52530,15,1.0,0,1.5920004844665527,31,1.0,2 +52531,15,1.0,0,1.286003828048706,32,0.0,2 +52532,15,0.0,0,1.857997179031372,33,0.0,2 +52533,15,1.0,0,1.3550035953521729,34,1.0,2 +52534,15,1.0,0,1.4960017204284668,35,1.0,2 +52535,15,1.0,0,1.2910038232803345,36,1.0,2 +52536,15,1.0,0,1.2990038394927979,37,1.0,2 +52537,15,1.0,0,1.2140036821365356,38,1.0,2 +52538,15,1.0,0,1.2670037746429443,39,1.0,2 +52539,15,1.0,0,2.0559945106506348,40,1.0,2 +52540,15,1.0,0,1.4810019731521606,41,1.0,2 +52541,15,1.0,0,1.3860031366348267,42,1.0,2 +52542,15,1.0,0,1.295003890991211,43,0.0,2 +52543,15,1.0,0,1.4680020809173584,44,1.0,2 +52544,15,1.0,0,1.7419986724853516,45,1.0,2 +52545,15,1.0,0,1.4740020036697388,46,1.0,2 +52546,15,1.0,0,1.461002230644226,47,1.0,2 +52547,15,1.0,0,1.5950005054473877,48,1.0,2 +52548,15,1.0,0,1.229003667831421,49,1.0,2 +52549,15,1.0,0,1.4480023384094238,50,1.0,2 +52550,15,1.0,0,1.3330038785934448,51,1.0,2 +52551,15,1.0,0,1.2430037260055542,52,1.0,2 +52552,15,1.0,0,1.2340036630630493,53,1.0,2 +52553,15,1.0,0,1.2640037536621094,54,1.0,2 +52554,15,1.0,0,1.2760038375854492,55,1.0,2 +52555,15,1.0,0,1.766998291015625,56,0.0,2 +52556,15,0.0,0,1.9889954328536987,57,0.0,2 +52557,15,0.0,0,1.41700279712677,58,0.0,2 +52558,15,1.0,0,1.4960017204284668,59,1.0,2 +52559,15,1.0,0,1.5900006294250488,60,1.0,2 +52560,15,1.0,0,1.576000690460205,61,1.0,2 +52561,15,1.0,0,1.5240013599395752,62,1.0,2 +52562,15,1.0,0,1.5000016689300537,63,1.0,2 +52563,15,1.0,0,1.4010030031204224,64,1.0,2 +52564,15,1.0,0,1.6220002174377441,65,1.0,2 +52565,15,1.0,0,1.369003415107727,66,1.0,2 +52566,15,1.0,0,1.532001256942749,67,1.0,2 +52567,15,1.0,0,1.461002230644226,68,1.0,2 +52568,15,1.0,0,1.391003131866455,69,1.0,2 +52569,15,1.0,0,1.5170015096664429,70,0.0,2 +52570,15,1.0,0,1.630000114440918,71,1.0,2 +52571,15,1.0,0,1.3160039186477661,72,1.0,2 +52572,15,1.0,0,1.3790032863616943,73,0.0,2 +52573,15,0.0,0,1.7609983682632446,74,0.0,2 +52574,15,1.0,0,1.6409999132156372,75,1.0,2 +52575,15,1.0,0,1.317003846168518,76,1.0,2 +52576,15,1.0,0,1.995995283126831,77,1.0,2 +52577,15,1.0,0,1.5040016174316406,78,1.0,2 +52578,15,1.0,0,1.3980029821395874,79,1.0,2 +52579,15,1.0,0,1.286003828048706,80,1.0,2 +52580,15,1.0,0,1.510001540184021,81,1.0,2 +52581,15,1.0,0,1.4240026473999023,82,0.0,2 +52582,15,1.0,0,1.5750007629394531,83,1.0,2 +52583,15,1.0,0,1.5490010976791382,84,1.0,2 +52584,15,1.0,0,1.8299975395202637,85,1.0,2 +52585,15,1.0,0,1.8259975910186768,86,1.0,2 +52586,15,1.0,0,1.4190027713775635,87,1.0,2 +52587,15,1.0,0,1.8319973945617676,88,1.0,2 +52588,15,1.0,0,1.5910005569458008,89,1.0,2 +52589,15,1.0,0,1.5040016174316406,90,1.0,2 +52590,15,1.0,0,1.624000072479248,91,1.0,2 +52591,15,1.0,0,1.2210036516189575,92,1.0,2 +52592,15,1.0,0,2.0089950561523438,93,1.0,2 +52593,15,1.0,0,1.461002230644226,94,1.0,2 +52594,15,1.0,0,1.4260026216506958,95,1.0,2 +52595,15,1.0,0,1.2350037097930908,96,1.0,2 +52596,15,1.0,0,1.4050029516220093,97,1.0,2 +52597,15,1.0,0,1.283003807067871,98,1.0,2 +52598,15,1.0,0,1.5750007629394531,99,1.0,2 +52599,15,1.0,0,2.0839943885803223,100,0.0,2 +52600,15,1.0,0,1.4330025911331177,101,1.0,2 +52601,15,1.0,0,1.583000659942627,102,0.0,2 +52602,15,1.0,0,1.286003828048706,103,1.0,2 +52603,15,0.0,0,1.5110015869140625,104,0.0,2 +52604,15,1.0,0,1.3780032396316528,105,1.0,2 +52605,15,1.0,0,1.1810035705566406,106,1.0,2 +52606,15,1.0,0,1.5730007886886597,107,1.0,2 +52607,15,1.0,0,1.5630009174346924,108,1.0,2 +52608,15,1.0,0,1.3400037288665771,109,1.0,2 +52609,15,1.0,0,1.8189976215362549,110,1.0,2 +52610,15,1.0,0,1.722998857498169,111,1.0,2 +52611,15,1.0,0,1.624000072479248,112,1.0,2 +52612,15,1.0,0,1.5010017156600952,113,0.0,2 +52613,15,0.0,0,1.3790032863616943,114,0.0,2 +52614,15,1.0,0,1.5400011539459229,115,1.0,2 +52615,15,1.0,0,1.3530036211013794,116,1.0,2 +52616,15,1.0,0,1.343003749847412,117,0.0,2 +52617,15,0.0,0,1.8399972915649414,118,0.0,2 +52618,15,0.0,0,1.4090029001235962,119,0.0,2 +52619,15,0.0,0,1.557000994682312,120,0.0,2 +52620,15,0.0,0,1.765998363494873,121,0.0,2 +52621,15,1.0,0,1.7129989862442017,122,1.0,2 +52622,15,1.0,0,1.580000638961792,123,1.0,2 +52623,15,1.0,0,1.535001277923584,124,0.0,2 +52624,15,0.0,0,2.1539978981018066,125,0.0,2 +52625,15,1.0,0,1.5200014114379883,126,1.0,2 +52626,15,1.0,0,2.0559945106506348,127,1.0,2 +52627,15,1.0,0,1.4200026988983154,128,0.0,2 +52628,15,0.0,0,1.4980016946792603,129,0.0,2 +52629,15,1.0,0,1.5370012521743774,130,1.0,2 +52630,15,1.0,0,1.444002389907837,131,1.0,2 +52631,15,0.0,0,1.5160014629364014,132,0.0,2 +52632,15,1.0,0,1.7299988269805908,133,1.0,2 +52633,15,1.0,0,1.4940017461776733,134,1.0,2 +52634,15,1.0,0,1.3360037803649902,135,1.0,2 +52635,15,1.0,0,1.514001488685608,136,1.0,2 +52636,15,1.0,0,1.9159963130950928,137,1.0,2 +52637,15,1.0,0,1.3220038414001465,138,1.0,2 +52638,15,0.0,0,1.4120028018951416,139,0.0,2 +52639,15,1.0,0,1.3650034666061401,140,1.0,2 +52640,15,1.0,0,1.439002513885498,141,0.0,2 +52641,15,0.0,0,1.582000732421875,142,0.0,2 +52642,15,0.0,0,1.1600035429000854,143,0.0,2 +52643,15,0.0,0,2.1339969635009766,144,1.0,2 +52644,15,0.0,0,1.3780032396316528,145,0.0,2 +52645,15,1.0,0,1.5680007934570312,146,1.0,2 +52646,15,1.0,0,1.3120038509368896,147,0.0,2 +52647,15,0.0,0,1.188003659248352,148,0.0,2 +52648,15,1.0,0,1.7369986772537231,149,1.0,2 +52649,15,1.0,0,1.2490037679672241,150,1.0,2 +52650,15,1.0,0,1.320003867149353,151,1.0,2 +52651,15,1.0,0,1.3030037879943848,152,1.0,2 +52652,15,1.0,0,1.7299988269805908,153,1.0,2 +52653,15,1.0,0,1.4030029773712158,154,1.0,2 +52654,15,1.0,0,1.8399972915649414,155,1.0,2 +52655,15,1.0,0,1.4260026216506958,156,1.0,2 +52656,15,1.0,0,1.6439998149871826,157,1.0,2 +52657,15,1.0,0,1.2240036725997925,158,1.0,2 +52658,15,1.0,0,1.262003779411316,159,1.0,2 +52659,15,1.0,0,1.4790019989013672,160,1.0,2 +52660,15,1.0,0,1.5710008144378662,161,1.0,2 +52661,15,1.0,0,1.8699970245361328,162,1.0,2 +52662,15,1.0,0,1.2750037908554077,163,1.0,2 +52663,15,1.0,0,1.5490010976791382,164,1.0,2 +52664,15,1.0,0,1.462002158164978,165,1.0,2 +52665,15,1.0,0,2.0669944286346436,166,1.0,2 +52666,15,1.0,0,1.2650038003921509,167,0.0,2 +52667,15,0.0,0,1.1970036029815674,168,1.0,2 +52668,15,0.0,0,1.5680007934570312,169,0.0,2 +52669,15,0.0,0,1.283003807067871,170,0.0,2 +52670,15,1.0,0,1.8769968748092651,171,0.0,2 +52671,15,1.0,0,1.5110015869140625,172,1.0,2 +52672,15,1.0,0,1.5180014371871948,173,1.0,2 +52673,15,1.0,0,1.4340025186538696,174,1.0,2 +52674,15,1.0,0,1.5950005054473877,175,0.0,2 +52675,15,0.0,0,1.5630009174346924,176,0.0,2 +52676,15,0.0,0,1.7379987239837646,177,0.0,2 +52677,15,1.0,0,1.289003849029541,178,1.0,2 +52678,15,1.0,0,1.7089990377426147,179,1.0,2 +52679,15,1.0,0,1.231003761291504,180,1.0,2 +52680,15,1.0,0,1.2710037231445312,181,1.0,2 +52681,15,1.0,0,1.4280025959014893,182,0.0,2 +52682,15,1.0,0,1.9429960250854492,183,1.0,2 +52683,15,1.0,0,1.4370025396347046,184,1.0,2 +52684,15,1.0,0,1.317003846168518,185,1.0,2 +52685,15,1.0,0,1.41700279712677,186,1.0,2 +52686,15,1.0,0,1.4110028743743896,187,0.0,2 +52687,15,0.0,0,1.1780035495758057,188,0.0,2 +52688,15,0.0,0,1.4990017414093018,189,0.0,2 +52689,15,0.0,0,1.195003628730774,190,0.0,2 +52690,15,1.0,0,1.4540022611618042,191,1.0,2 +52691,15,1.0,0,1.7429986000061035,192,1.0,2 +52692,15,1.0,0,1.5910005569458008,193,1.0,2 +52693,15,1.0,0,1.3330038785934448,194,0.0,2 +52694,15,1.0,0,1.9689956903457642,195,1.0,2 +52695,15,1.0,0,1.630000114440918,196,1.0,2 +52696,15,1.0,0,1.343003749847412,197,1.0,2 +52697,15,1.0,0,1.3610035181045532,198,1.0,2 +52698,15,1.0,0,2.1149959564208984,199,1.0,2 +52699,15,1.0,0,1.4160027503967285,200,1.0,2 +52700,15,1.0,0,1.262003779411316,201,1.0,2 +52701,15,1.0,0,1.2630038261413574,202,1.0,2 +52702,15,1.0,0,1.532001256942749,203,1.0,2 +52703,15,1.0,0,1.5660008192062378,204,1.0,2 +52704,15,1.0,0,1.9689956903457642,205,1.0,2 +52705,15,1.0,0,1.344003677368164,206,0.0,2 +52706,15,1.0,0,1.6949992179870605,207,1.0,2 +52707,15,1.0,0,1.9789955615997314,208,1.0,2 +52708,15,1.0,0,1.2970038652420044,209,1.0,2 +52709,15,1.0,0,1.583000659942627,210,1.0,2 +52710,15,1.0,0,1.2200037240982056,211,0.0,2 +52711,15,1.0,0,1.3560035228729248,212,1.0,2 +52712,15,1.0,0,1.3970030546188354,213,1.0,2 +52713,15,1.0,0,1.509001612663269,214,0.0,2 +52714,15,1.0,0,1.3580034971237183,215,1.0,2 +52715,15,1.0,0,1.626000165939331,216,1.0,2 +52716,15,1.0,0,1.6140003204345703,217,1.0,2 +52717,15,1.0,0,1.2450037002563477,218,1.0,2 +52718,15,1.0,0,1.2030036449432373,219,1.0,2 +52719,15,1.0,0,1.3280038833618164,220,0.0,2 +52720,15,1.0,0,1.770998239517212,221,1.0,2 +52721,15,1.0,0,1.3610035181045532,222,1.0,2 +52722,15,0.0,0,1.5870006084442139,223,0.0,2 +52723,15,1.0,0,1.4150028228759766,224,1.0,2 +52724,15,1.0,0,1.491001844406128,225,1.0,2 +52725,15,1.0,0,1.4260026216506958,226,1.0,2 +52726,15,1.0,0,1.2740037441253662,227,1.0,2 +52727,15,1.0,0,2.3300061225891113,228,1.0,2 +52728,15,1.0,0,1.3620034456253052,229,1.0,2 +52729,15,1.0,0,1.2210036516189575,230,1.0,2 +52730,15,1.0,0,1.2910038232803345,231,1.0,2 +52731,15,1.0,0,1.3220038414001465,232,1.0,2 +52732,15,1.0,0,1.9629957675933838,233,1.0,2 +52733,15,1.0,0,1.421002745628357,234,1.0,2 +52734,15,1.0,0,1.373003363609314,235,1.0,2 +52735,15,1.0,0,1.4540022611618042,236,1.0,2 +52736,15,1.0,0,1.4310026168823242,237,1.0,2 +52737,15,1.0,0,1.373003363609314,238,1.0,2 +52738,15,1.0,0,1.4760019779205322,239,1.0,2 +52739,15,1.0,0,1.483001947402954,240,1.0,2 +52740,15,1.0,0,1.7529984712600708,241,0.0,2 +52741,15,1.0,0,1.3370038270950317,242,1.0,2 +52742,15,1.0,0,1.4040029048919678,243,0.0,2 +52743,15,0.0,0,1.583000659942627,244,0.0,2 +52744,15,1.0,0,1.395003080368042,245,1.0,2 +52745,15,1.0,0,1.2970038652420044,246,1.0,2 +52746,15,1.0,0,1.6409999132156372,247,1.0,2 +52747,15,1.0,0,1.3370038270950317,248,1.0,2 +52748,15,1.0,0,1.995995283126831,249,1.0,2 +52749,15,1.0,0,1.63100004196167,250,0.0,2 +52750,15,0.0,0,1.4070029258728027,251,0.0,2 +52751,15,0.0,0,1.6669995784759521,252,0.0,2 +52752,15,0.0,0,1.3580034971237183,253,1.0,2 +52753,15,0.0,0,1.3800032138824463,254,0.0,2 +52754,15,0.0,0,2.222001075744629,255,0.0,2 +52755,15,1.0,0,1.4070029258728027,256,1.0,2 +52756,15,1.0,0,1.558000922203064,257,1.0,2 +52757,15,1.0,0,1.195003628730774,258,1.0,2 +52758,15,1.0,0,1.5480010509490967,259,1.0,2 +52759,15,1.0,0,1.576000690460205,260,1.0,2 +52760,15,0.0,0,1.509001612663269,261,0.0,2 +52761,15,1.0,0,2.1299967765808105,262,1.0,2 +52762,15,1.0,0,1.369003415107727,263,0.0,2 +52763,15,1.0,0,2.1999998092651367,264,1.0,2 +52764,15,1.0,0,1.2770037651062012,265,0.0,2 +52765,15,1.0,0,1.2780038118362427,266,0.0,2 +52766,15,1.0,0,1.6389999389648438,267,1.0,2 +52767,15,1.0,0,1.8039977550506592,268,1.0,2 +52768,15,1.0,0,1.4470024108886719,269,1.0,2 +52769,15,1.0,0,1.3110039234161377,270,1.0,2 +52770,15,1.0,0,1.6419999599456787,271,1.0,2 +52771,15,1.0,0,1.4450024366378784,272,1.0,2 +52772,15,1.0,0,1.7129989862442017,273,1.0,2 +52773,15,1.0,0,1.3380037546157837,274,1.0,2 +52774,15,1.0,0,1.5690008401870728,275,1.0,2 +52775,15,1.0,0,1.3070038557052612,276,1.0,2 +52776,15,1.0,0,1.5380011796951294,277,1.0,2 +52777,15,1.0,0,1.6829993724822998,278,1.0,2 +52778,15,1.0,0,1.4730020761489868,279,1.0,2 +52779,15,1.0,0,1.5050016641616821,280,1.0,2 +52780,15,1.0,0,1.3970030546188354,281,1.0,2 +52781,15,1.0,0,1.1980036497116089,282,1.0,2 +52782,15,1.0,0,1.586000680923462,283,1.0,2 +52783,15,1.0,0,1.3110039234161377,284,1.0,2 +52784,15,1.0,0,1.347003698348999,285,1.0,2 +52785,15,1.0,0,1.4280025959014893,286,0.0,2 +52786,15,0.0,0,2.3410065174102783,287,1.0,2 +52787,15,1.0,0,1.5560009479522705,288,1.0,2 +52788,15,0.0,0,1.667999505996704,289,0.0,2 +52789,15,1.0,0,1.5470011234283447,290,0.0,2 +52790,15,0.0,0,1.6459999084472656,291,0.0,2 +52791,15,1.0,0,1.609000325202942,292,1.0,2 +52792,15,1.0,0,1.6060004234313965,293,1.0,2 +52793,15,1.0,0,1.259003758430481,294,0.0,2 +52794,15,0.0,0,1.5380011796951294,295,0.0,2 +52795,15,0.0,0,1.6959991455078125,296,1.0,2 +52796,15,0.0,0,1.6070003509521484,297,1.0,2 +52797,15,1.0,0,1.343003749847412,298,1.0,2 +52798,15,1.0,0,1.3870031833648682,299,1.0,2 +52799,15,0.0,0,1.7069990634918213,300,0.0,2 +52800,15,1.0,0,1.3670034408569336,301,1.0,2 +52801,15,1.0,0,1.3600034713745117,302,1.0,2 +52802,15,1.0,0,1.4420024156570435,303,1.0,2 +52803,15,1.0,0,1.6559996604919434,304,0.0,2 +52804,15,0.0,0,1.6340000629425049,305,0.0,2 +52805,15,0.0,0,1.290003776550293,306,0.0,2 +52806,15,0.0,0,2.042994737625122,307,0.0,2 +52807,15,0.0,0,1.3620034456253052,308,0.0,2 +52808,15,1.0,0,1.5690008401870728,309,1.0,2 +52809,15,1.0,0,1.5450011491775513,310,1.0,2 +52810,15,1.0,0,1.223003625869751,311,1.0,2 +52811,15,1.0,0,1.8059978485107422,312,1.0,2 +52812,15,1.0,0,1.4080028533935547,313,1.0,2 +52813,15,1.0,0,1.1980036497116089,314,1.0,2 +52814,15,1.0,0,1.561000943183899,315,1.0,2 +52815,15,1.0,0,1.6889992952346802,316,1.0,2 +52816,15,1.0,0,1.4230027198791504,317,1.0,2 +52817,15,1.0,0,1.7029991149902344,318,1.0,2 +52818,15,1.0,0,1.4680020809173584,319,0.0,2 +52819,15,0.0,0,1.7969979047775269,320,1.0,2 +52820,15,0.0,0,2.0179951190948486,321,0.0,2 +52821,15,0.0,0,1.4890018701553345,322,1.0,2 +52822,15,0.0,0,1.6849993467330933,323,0.0,2 +52823,15,1.0,0,1.6030004024505615,324,1.0,2 +52824,15,0.0,0,1.44000244140625,325,0.0,2 +52825,15,1.0,0,1.6180002689361572,326,1.0,2 +52826,15,1.0,0,1.4200026988983154,327,1.0,2 +52827,15,1.0,0,1.2480037212371826,328,1.0,2 +52828,15,1.0,0,1.5050016641616821,329,1.0,2 +52829,15,1.0,0,1.9339962005615234,330,1.0,2 +52830,15,1.0,0,1.3860031366348267,331,1.0,2 +52831,15,1.0,0,1.6959991455078125,332,0.0,2 +52832,15,0.0,0,1.3560035228729248,333,0.0,2 +52833,15,1.0,0,1.5640008449554443,334,1.0,2 +52834,15,1.0,0,1.5510010719299316,335,1.0,2 +52835,15,1.0,0,1.2360037565231323,336,1.0,2 +52836,15,1.0,0,1.436002492904663,337,1.0,2 +52837,15,1.0,0,1.373003363609314,338,1.0,2 +52838,15,1.0,0,1.4010030031204224,339,1.0,2 +52839,15,1.0,0,1.2300037145614624,340,1.0,2 +52840,15,1.0,0,1.580000638961792,341,1.0,2 +52841,15,1.0,0,1.6359999179840088,342,1.0,2 +52842,15,1.0,0,1.3880031108856201,343,1.0,2 +52843,15,1.0,0,1.3450037240982056,344,1.0,2 +52844,15,1.0,0,1.228003740310669,345,1.0,2 +52845,15,1.0,0,1.3330038785934448,346,1.0,2 +52846,15,1.0,0,1.6589996814727783,347,1.0,2 +52847,15,1.0,0,1.4760019779205322,348,1.0,2 +52848,15,1.0,0,1.2240036725997925,349,0.0,2 +52849,15,1.0,0,1.373003363609314,350,1.0,2 +52850,15,1.0,0,1.539001226425171,351,1.0,2 +52851,15,1.0,0,1.7309987545013428,352,1.0,2 +52852,15,1.0,0,1.4230027198791504,353,1.0,2 +52853,15,1.0,0,1.5240013599395752,354,0.0,2 +52854,15,0.0,0,1.4340025186538696,355,0.0,2 +52855,15,1.0,0,1.4030029773712158,356,0.0,2 +52856,15,1.0,0,1.7719981670379639,357,1.0,2 +52857,15,1.0,0,1.5490010976791382,358,1.0,2 +52858,15,1.0,0,1.2940038442611694,359,1.0,2 +52859,15,1.0,0,1.3100038766860962,360,0.0,2 +52860,15,0.0,0,1.6919991970062256,361,0.0,2 +52861,15,1.0,0,1.5960004329681396,362,0.0,2 +52862,15,1.0,0,1.399003028869629,363,1.0,2 +52863,15,1.0,0,1.2850037813186646,364,0.0,2 +52864,15,0.0,0,1.924996256828308,365,0.0,2 +52865,15,1.0,0,1.932996153831482,366,1.0,2 +52866,15,1.0,0,1.3040038347244263,367,1.0,2 +52867,15,1.0,0,1.465002179145813,368,1.0,2 +52868,15,1.0,0,1.5440011024475098,369,1.0,2 +52869,15,1.0,0,1.5590009689331055,370,1.0,2 +52870,15,1.0,0,1.5810006856918335,371,1.0,2 +52871,15,1.0,0,1.3720033168792725,372,1.0,2 +52872,15,0.0,0,1.5330013036727905,373,1.0,2 +52873,15,0.0,0,1.9969953298568726,374,0.0,2 +52874,15,1.0,0,1.5720007419586182,375,1.0,2 +52875,15,1.0,0,1.2820037603378296,376,1.0,2 +52876,15,1.0,0,1.6859993934631348,377,1.0,2 +52877,15,1.0,0,1.4960017204284668,378,0.0,2 +52878,15,0.0,0,1.5670008659362793,379,0.0,2 +52879,15,0.0,0,1.4520022869110107,380,0.0,2 +52880,15,1.0,0,1.9629957675933838,381,1.0,2 +52881,15,1.0,0,1.3380037546157837,382,1.0,2 +52882,15,1.0,0,1.488001823425293,383,1.0,2 +52883,15,1.0,0,1.2990038394927979,384,0.0,2 +52884,15,1.0,0,1.5440011024475098,385,1.0,2 +52885,15,1.0,0,1.2370036840438843,386,1.0,2 +52886,15,1.0,0,1.44000244140625,387,1.0,2 +52887,15,1.0,0,1.4370025396347046,388,0.0,2 +52888,15,1.0,0,1.535001277923584,389,1.0,2 +52889,15,0.0,0,1.6859993934631348,390,0.0,2 +52890,15,0.0,0,1.723998785018921,391,0.0,2 +52891,15,1.0,0,1.5290013551712036,392,1.0,2 +52892,15,1.0,0,1.4230027198791504,393,0.0,2 +52893,15,1.0,0,2.242002010345459,394,1.0,2 +52894,15,1.0,0,1.1940035820007324,395,1.0,2 +52895,15,1.0,0,1.609000325202942,396,1.0,2 +52896,15,1.0,0,1.2150037288665771,397,0.0,2 +52897,15,1.0,0,1.290003776550293,398,1.0,2 +52898,15,1.0,0,1.5420011281967163,399,0.0,2 +52899,15,1.0,0,1.9779956340789795,400,1.0,2 +52900,15,1.0,0,1.5720007419586182,401,1.0,2 +52901,15,1.0,0,1.4900017976760864,402,1.0,2 +52902,15,1.0,0,1.4570022821426392,403,1.0,2 +52903,15,1.0,0,1.4010030031204224,404,0.0,2 +52904,15,1.0,0,1.767998218536377,405,1.0,2 +52905,15,1.0,0,1.2850037813186646,406,0.0,2 +52906,15,0.0,0,1.3240039348602295,407,0.0,2 +52907,15,1.0,0,1.8959965705871582,408,1.0,2 +52908,15,1.0,0,1.539001226425171,409,0.0,2 +52909,15,1.0,0,1.9589958190917969,410,1.0,2 +52910,15,1.0,0,1.3090038299560547,411,1.0,2 +52911,15,1.0,0,1.4330025911331177,412,1.0,2 +52912,15,1.0,0,1.4580022096633911,413,1.0,2 +52913,15,1.0,0,1.1760035753250122,414,1.0,2 +52914,15,1.0,0,1.7609983682632446,415,1.0,2 +52915,15,1.0,0,1.6340000629425049,416,1.0,2 +52916,15,1.0,0,1.722998857498169,417,0.0,2 +52917,15,0.0,0,1.2880038022994995,418,0.0,2 +52918,15,1.0,0,1.7689982652664185,419,0.0,2 +52919,15,1.0,0,1.9569958448410034,420,1.0,2 +52920,15,1.0,0,1.4820019006729126,421,1.0,2 +52921,15,1.0,0,1.8009978532791138,422,1.0,2 +52922,15,1.0,0,1.4220026731491089,423,1.0,2 +52923,15,1.0,0,1.439002513885498,424,1.0,2 +52924,15,1.0,0,1.5040016174316406,425,1.0,2 +52925,15,1.0,0,2.0369949340820312,426,0.0,2 +52926,15,1.0,0,1.4690021276474,427,0.0,2 +52927,15,1.0,0,2.0979952812194824,428,1.0,2 +52928,15,1.0,0,1.3620034456253052,429,1.0,2 +52929,15,1.0,0,1.4580022096633911,430,0.0,2 +52930,15,0.0,0,1.3270039558410645,431,0.0,2 +52931,15,1.0,0,1.692999243736267,432,1.0,2 +52932,15,1.0,0,1.5190014839172363,433,0.0,2 +52933,15,0.0,0,1.8479971885681152,434,0.0,2 +52934,15,1.0,0,1.2150037288665771,435,1.0,2 +52935,15,1.0,0,1.286003828048706,436,1.0,2 +52936,15,1.0,0,2.1519975662231445,437,1.0,2 +52937,15,1.0,0,1.4970017671585083,438,1.0,2 +52938,15,1.0,0,1.2940038442611694,439,1.0,2 +52939,15,1.0,0,1.3900030851364136,440,1.0,2 +52940,15,1.0,0,1.4540022611618042,441,1.0,2 +52941,15,1.0,0,1.9719955921173096,442,1.0,2 +52942,15,1.0,0,1.3240039348602295,443,1.0,2 +52943,15,0.0,0,1.5250014066696167,444,0.0,2 +52944,15,1.0,0,1.488001823425293,445,1.0,2 +52945,15,1.0,0,1.3040038347244263,446,1.0,2 +52946,15,1.0,0,1.6290000677108765,447,1.0,2 +52947,15,1.0,0,2.0969951152801514,448,1.0,2 +52948,15,1.0,0,1.320003867149353,449,1.0,2 +52949,15,1.0,0,1.2880038022994995,450,1.0,2 +52950,15,1.0,0,1.514001488685608,451,1.0,2 +52951,15,1.0,0,1.6040003299713135,452,1.0,2 +52952,15,1.0,0,1.2660037279129028,453,1.0,2 +52953,15,1.0,0,1.3710033893585205,454,1.0,2 +52954,15,1.0,0,1.3780032396316528,455,1.0,2 +52955,15,1.0,0,1.553001046180725,456,1.0,2 +52956,15,1.0,0,1.3640034198760986,457,1.0,2 +52957,15,1.0,0,1.2700037956237793,458,1.0,2 +52958,15,1.0,0,1.256003737449646,459,1.0,2 +52959,15,0.0,0,1.5340012311935425,460,0.0,2 +52960,15,1.0,0,1.7389986515045166,461,0.0,2 +52961,15,0.0,0,1.6170002222061157,462,0.0,2 +52962,15,0.0,0,2.1439971923828125,463,0.0,2 +52963,15,0.0,0,2.0769944190979004,464,0.0,2 +52964,15,0.0,0,1.9699957370758057,465,1.0,2 +52965,15,0.0,0,1.3840031623840332,466,0.0,2 +52966,15,1.0,0,1.8049978017807007,467,1.0,2 +52967,15,1.0,0,1.3530036211013794,468,1.0,2 +52968,15,1.0,0,1.2370036840438843,469,1.0,2 +52969,15,1.0,0,1.561000943183899,470,1.0,2 +52970,15,1.0,0,1.253003716468811,471,1.0,2 +52971,15,1.0,0,1.320003867149353,472,1.0,2 +52972,15,1.0,0,1.976995587348938,473,1.0,2 +52973,15,1.0,0,1.3940030336380005,474,1.0,2 +52974,15,1.0,0,1.3350038528442383,475,1.0,2 +52975,15,1.0,0,1.836997389793396,476,1.0,2 +52976,15,1.0,0,1.2990038394927979,477,1.0,2 +52977,15,1.0,0,1.3890031576156616,478,1.0,2 +52978,15,1.0,0,1.41700279712677,479,1.0,2 +52979,15,1.0,0,1.3270039558410645,480,0.0,2 +52980,15,1.0,0,2.0199949741363525,481,1.0,2 +52981,15,1.0,0,1.3150038719177246,482,1.0,2 +52982,15,1.0,0,1.4920017719268799,483,0.0,2 +52983,15,0.0,0,1.8189976215362549,484,0.0,2 +52984,15,0.0,0,2.0619945526123047,485,1.0,2 +52985,15,0.0,0,1.2130036354064941,486,0.0,2 +52986,15,1.0,0,1.9599957466125488,487,1.0,2 +52987,15,1.0,0,1.5910005569458008,488,0.0,2 +52988,15,1.0,0,1.6839993000030518,489,1.0,2 +52989,15,1.0,0,1.4230027198791504,490,0.0,2 +52990,15,0.0,0,1.6909992694854736,491,0.0,2 +52991,15,1.0,0,1.8899967670440674,492,1.0,2 +52992,15,1.0,0,1.283003807067871,493,1.0,2 +52993,15,1.0,0,1.3710033893585205,494,1.0,2 +52994,15,1.0,0,1.3420037031173706,495,1.0,2 +52995,15,1.0,0,1.2470037937164307,496,1.0,2 +52996,15,0.0,0,1.5110015869140625,497,1.0,2 +52997,15,1.0,0,2.1609981060028076,498,1.0,2 +52998,15,0.0,0,1.4150028228759766,499,0.0,2 +52999,15,1.0,0,1.6040003299713135,500,1.0,2 +53000,15,1.0,1,1.8679969310760498,1,0.0,2 +53001,15,1.0,1,1.626000165939331,2,0.0,2 +53002,15,0.0,1,1.3370038270950317,3,0.0,2 +53003,15,1.0,1,2.048994541168213,4,0.0,2 +53004,15,1.0,1,1.6170002222061157,5,0.0,2 +53005,15,0.0,1,2.1679983139038086,6,0.0,2 +53006,15,1.0,1,1.487001895904541,7,1.0,2 +53007,15,1.0,1,1.250003695487976,8,1.0,2 +53008,15,1.0,1,1.4090029001235962,9,1.0,2 +53009,15,1.0,1,1.7329987287521362,10,1.0,2 +53010,15,1.0,1,1.6140003204345703,11,1.0,2 +53011,15,1.0,1,1.5460010766983032,12,1.0,2 +53012,15,1.0,1,1.3370038270950317,13,1.0,2 +53013,15,1.0,1,1.9199962615966797,14,1.0,2 +53014,15,1.0,1,1.553001046180725,15,0.0,2 +53015,15,1.0,1,1.2760038375854492,16,0.0,2 +53016,15,1.0,1,2.0839943885803223,17,0.0,2 +53017,15,0.0,1,1.5920004844665527,18,0.0,2 +53018,15,0.0,1,1.3280038833618164,19,0.0,2 +53019,15,0.0,1,2.042994737625122,20,0.0,2 +53020,15,0.0,1,1.3580034971237183,21,0.0,2 +53021,15,0.0,1,1.7609983682632446,22,1.0,2 +53022,15,0.0,1,1.8499972820281982,23,0.0,2 +53023,15,0.0,1,1.765998363494873,24,0.0,2 +53024,15,0.0,1,1.624000072479248,25,1.0,2 +53025,15,0.0,1,1.2440037727355957,26,0.0,2 +53026,15,1.0,1,1.44000244140625,27,1.0,2 +53027,15,1.0,1,1.558000922203064,28,1.0,2 +53028,15,1.0,1,1.3930031061172485,29,1.0,2 +53029,15,1.0,1,1.2460037469863892,30,1.0,2 +53030,15,1.0,1,1.3780032396316528,31,1.0,2 +53031,15,1.0,1,1.3780032396316528,32,1.0,2 +53032,15,1.0,1,1.7829980850219727,33,1.0,2 +53033,15,1.0,1,1.4060028791427612,34,1.0,2 +53034,15,0.0,1,1.725998878479004,35,0.0,2 +53035,15,1.0,1,1.2630038261413574,36,1.0,2 +53036,15,1.0,1,1.5330013036727905,37,1.0,2 +53037,15,1.0,1,1.5290013551712036,38,0.0,2 +53038,15,1.0,1,2.1239962577819824,39,1.0,2 +53039,15,1.0,1,1.4240026473999023,40,1.0,2 +53040,15,1.0,1,1.528001308441162,41,1.0,2 +53041,15,1.0,1,1.391003131866455,42,1.0,2 +53042,15,1.0,1,2.3100051879882812,43,1.0,2 +53043,15,1.0,1,1.465002179145813,44,1.0,2 +53044,15,1.0,1,1.5340012311935425,45,1.0,2 +53045,15,1.0,1,1.5420011281967163,46,0.0,2 +53046,15,0.0,1,2.230001449584961,47,0.0,2 +53047,15,1.0,1,1.2720037698745728,48,1.0,2 +53048,15,1.0,1,1.7419986724853516,49,0.0,2 +53049,15,0.0,1,1.2080036401748657,50,0.0,2 +53050,15,1.0,1,1.4780019521713257,51,1.0,2 +53051,15,1.0,1,1.3830032348632812,52,0.0,2 +53052,15,1.0,1,1.253003716468811,53,0.0,2 +53053,15,1.0,1,2.050994634628296,54,1.0,2 +53054,15,1.0,1,1.5870006084442139,55,1.0,2 +53055,15,1.0,1,1.3930031061172485,56,1.0,2 +53056,15,1.0,1,1.2800037860870361,57,0.0,2 +53057,15,1.0,1,2.1679983139038086,58,0.0,2 +53058,15,1.0,1,1.2300037145614624,59,0.0,2 +53059,15,0.0,1,1.6639995574951172,60,0.0,2 +53060,15,0.0,1,1.9449959993362427,61,1.0,2 +53061,15,1.0,1,1.6100003719329834,62,1.0,2 +53062,15,0.0,1,1.3340038061141968,63,0.0,2 +53063,15,1.0,1,1.4320025444030762,64,0.0,2 +53064,15,0.0,1,2.1549978256225586,65,0.0,2 +53065,15,0.0,1,1.7809981107711792,66,0.0,2 +53066,15,1.0,1,2.275003433227539,67,0.0,2 +53067,15,0.0,1,1.7819981575012207,68,0.0,2 +53068,15,0.0,1,1.7429986000061035,69,0.0,2 +53069,15,0.0,1,1.4010030031204224,70,0.0,2 +53070,15,0.0,1,1.509001612663269,71,1.0,2 +53071,15,0.0,1,1.392003059387207,72,0.0,2 +53072,15,1.0,1,1.648999810218811,73,1.0,2 +53073,15,1.0,1,1.3240039348602295,74,1.0,2 +53074,15,1.0,1,1.4510023593902588,75,1.0,2 +53075,15,1.0,1,1.3490036725997925,76,1.0,2 +53076,15,1.0,1,1.290003776550293,77,1.0,2 +53077,15,1.0,1,1.7439985275268555,78,1.0,2 +53078,15,0.0,1,1.3190038204193115,79,0.0,2 +53079,15,1.0,1,2.048994541168213,80,1.0,2 +53080,15,1.0,1,1.418002724647522,81,1.0,2 +53081,15,1.0,1,1.8569971323013306,82,1.0,2 +53082,15,1.0,1,1.6060004234313965,83,1.0,2 +53083,15,1.0,1,1.3410037755966187,84,1.0,2 +53084,15,1.0,1,1.4260026216506958,85,0.0,2 +53085,15,1.0,1,1.4000029563903809,86,1.0,2 +53086,15,1.0,1,1.374003291130066,87,1.0,2 +53087,15,1.0,1,1.6849993467330933,88,1.0,2 +53088,15,1.0,1,1.539001226425171,89,0.0,2 +53089,15,1.0,1,1.7089990377426147,90,1.0,2 +53090,15,1.0,1,1.317003846168518,91,1.0,2 +53091,15,1.0,1,1.8679969310760498,92,1.0,2 +53092,15,1.0,1,1.5900006294250488,93,0.0,2 +53093,15,1.0,1,1.3840031623840332,94,1.0,2 +53094,15,1.0,1,1.4050029516220093,95,1.0,2 +53095,15,1.0,1,1.2060036659240723,96,0.0,2 +53096,15,0.0,1,1.8859968185424805,97,0.0,2 +53097,15,1.0,1,1.7019991874694824,98,1.0,2 +53098,15,1.0,1,1.3980029821395874,99,1.0,2 +53099,15,1.0,1,1.3840031623840332,100,0.0,2 +53100,15,0.0,1,1.462002158164978,101,0.0,2 +53101,15,1.0,1,1.3760032653808594,102,1.0,2 +53102,15,1.0,1,1.57900071144104,103,0.0,2 +53103,15,0.0,1,1.903996467590332,104,1.0,2 +53104,15,0.0,1,1.6419999599456787,105,0.0,2 +53105,15,1.0,1,1.439002513885498,106,1.0,2 +53106,15,1.0,1,1.4300025701522827,107,1.0,2 +53107,15,0.0,1,1.2450037002563477,108,0.0,2 +53108,15,1.0,1,1.4110028743743896,109,0.0,2 +53109,15,1.0,1,1.3150038719177246,110,1.0,2 +53110,15,1.0,1,1.2210036516189575,111,1.0,2 +53111,15,1.0,1,1.9759955406188965,112,0.0,2 +53112,15,0.0,1,1.3640034198760986,113,0.0,2 +53113,15,0.0,1,1.461002230644226,114,0.0,2 +53114,15,0.0,1,1.2680038213729858,115,0.0,2 +53115,15,1.0,1,1.995995283126831,116,1.0,2 +53116,15,1.0,1,1.395003080368042,117,1.0,2 +53117,15,1.0,1,1.4370025396347046,118,1.0,2 +53118,15,0.0,1,1.8799967765808105,119,0.0,2 +53119,15,1.0,1,1.6669995784759521,120,1.0,2 +53120,15,1.0,1,1.4760019779205322,121,0.0,2 +53121,15,1.0,1,1.5510010719299316,122,1.0,2 +53122,15,1.0,1,1.399003028869629,123,1.0,2 +53123,15,1.0,1,1.5270013809204102,124,0.0,2 +53124,15,1.0,1,1.509001612663269,125,1.0,2 +53125,15,1.0,1,1.3540035486221313,126,1.0,2 +53126,15,1.0,1,1.320003867149353,127,1.0,2 +53127,15,1.0,1,1.4670021533966064,128,1.0,2 +53128,15,1.0,1,1.7749981880187988,129,1.0,2 +53129,15,1.0,1,1.4230027198791504,130,0.0,2 +53130,15,1.0,1,1.510001540184021,131,0.0,2 +53131,15,0.0,1,2.0569944381713867,132,0.0,2 +53132,15,0.0,1,1.6879992485046387,133,0.0,2 +53133,15,0.0,1,1.5440011024475098,134,0.0,2 +53134,15,0.0,1,1.44000244140625,135,1.0,2 +53135,15,0.0,1,1.3300038576126099,136,0.0,2 +53136,15,0.0,1,1.414002776145935,137,0.0,2 +53137,15,0.0,1,1.6110002994537354,138,0.0,2 +53138,15,1.0,1,1.3500036001205444,139,1.0,2 +53139,15,1.0,1,1.6619997024536133,140,0.0,2 +53140,15,0.0,1,2.1049954891204834,141,1.0,2 +53141,15,0.0,1,1.2880038022994995,142,1.0,2 +53142,15,0.0,1,1.7209988832473755,143,0.0,2 +53143,15,1.0,1,1.5700007677078247,144,1.0,2 +53144,15,1.0,1,1.4100028276443481,145,1.0,2 +53145,15,1.0,1,1.7359986305236816,146,1.0,2 +53146,15,1.0,1,1.6409999132156372,147,1.0,2 +53147,15,1.0,1,1.5430011749267578,148,1.0,2 +53148,15,1.0,1,1.2880038022994995,149,1.0,2 +53149,15,1.0,1,1.6619997024536133,150,1.0,2 +53150,15,0.0,1,1.1870036125183105,151,0.0,2 +53151,15,1.0,1,1.3570035696029663,152,0.0,2 +53152,15,1.0,1,1.4260026216506958,153,0.0,2 +53153,15,0.0,1,1.4230027198791504,154,0.0,2 +53154,15,1.0,1,1.5330013036727905,155,1.0,2 +53155,15,1.0,1,1.2130036354064941,156,0.0,2 +53156,15,1.0,1,1.4900017976760864,157,1.0,2 +53157,15,1.0,1,1.7069990634918213,158,1.0,2 +53158,15,1.0,1,1.2360037565231323,159,0.0,2 +53159,15,0.0,1,1.4280025959014893,160,0.0,2 +53160,15,1.0,1,1.347003698348999,161,1.0,2 +53161,15,1.0,1,1.4750020503997803,162,1.0,2 +53162,15,1.0,1,1.396003007888794,163,1.0,2 +53163,15,1.0,1,1.531001329421997,164,0.0,2 +53164,15,0.0,1,1.9409960508346558,165,0.0,2 +53165,15,0.0,1,1.8829967975616455,166,0.0,2 +53166,15,0.0,1,1.352003574371338,167,0.0,2 +53167,15,0.0,1,1.5670008659362793,168,0.0,2 +53168,15,1.0,1,1.4150028228759766,169,1.0,2 +53169,15,1.0,1,1.788998007774353,170,1.0,2 +53170,15,0.0,1,1.5270013809204102,171,1.0,2 +53171,15,0.0,1,1.3210039138793945,172,0.0,2 +53172,15,1.0,1,1.5740007162094116,173,0.0,2 +53173,15,1.0,1,1.9389960765838623,174,0.0,2 +53174,15,1.0,1,1.5470011234283447,175,1.0,2 +53175,15,1.0,1,1.6380000114440918,176,1.0,2 +53176,15,1.0,1,1.6639995574951172,177,1.0,2 +53177,15,0.0,1,1.3450037240982056,178,1.0,2 +53178,15,0.0,1,2.0799942016601562,179,0.0,2 +53179,15,1.0,1,1.2850037813186646,180,1.0,2 +53180,15,1.0,1,1.3050038814544678,181,1.0,2 +53181,15,1.0,1,1.4420024156570435,182,1.0,2 +53182,15,1.0,1,1.7069990634918213,183,1.0,2 +53183,15,1.0,1,1.669999599456787,184,1.0,2 +53184,15,1.0,1,1.2770037651062012,185,1.0,2 +53185,15,1.0,1,1.3310039043426514,186,1.0,2 +53186,15,1.0,1,2.0209951400756836,187,1.0,2 +53187,15,1.0,1,1.4530023336410522,188,1.0,2 +53188,15,1.0,1,1.4120028018951416,189,1.0,2 +53189,15,1.0,1,1.3500036001205444,190,1.0,2 +53190,15,1.0,1,1.4000029563903809,191,0.0,2 +53191,15,0.0,1,1.3810032606124878,192,1.0,2 +53192,15,0.0,1,1.3080039024353027,193,0.0,2 +53193,15,0.0,1,1.439002513885498,194,0.0,2 +53194,15,0.0,1,1.865997076034546,195,0.0,2 +53195,15,0.0,1,1.2880038022994995,196,1.0,2 +53196,15,0.0,1,1.6220002174377441,197,0.0,2 +53197,15,0.0,1,1.3890031576156616,198,0.0,2 +53198,15,1.0,1,1.3020038604736328,199,1.0,2 +53199,15,1.0,1,1.6559996604919434,200,1.0,2 +53200,15,1.0,1,1.5010017156600952,201,0.0,2 +53201,15,0.0,1,1.4690021276474,202,0.0,2 +53202,15,0.0,1,1.8499972820281982,203,0.0,2 +53203,15,0.0,1,1.884996771812439,204,1.0,2 +53204,15,0.0,1,1.2200037240982056,205,1.0,2 +53205,15,0.0,1,1.4090029001235962,206,1.0,2 +53206,15,0.0,1,1.4670021533966064,207,0.0,2 +53207,15,0.0,1,1.4220026731491089,208,0.0,2 +53208,15,0.0,1,1.553001046180725,209,1.0,2 +53209,15,0.0,1,1.3980029821395874,210,1.0,2 +53210,15,0.0,1,1.347003698348999,211,0.0,2 +53211,15,0.0,1,2.223001003265381,212,0.0,2 +53212,15,1.0,1,1.3930031061172485,213,1.0,2 +53213,15,1.0,1,1.2390036582946777,214,1.0,2 +53214,15,1.0,1,1.3190038204193115,215,1.0,2 +53215,15,1.0,1,1.3400037288665771,216,1.0,2 +53216,15,1.0,1,1.3680033683776855,217,0.0,2 +53217,15,1.0,1,1.5250014066696167,218,1.0,2 +53218,15,1.0,1,1.7999978065490723,219,0.0,2 +53219,15,0.0,1,1.5110015869140625,220,1.0,2 +53220,15,0.0,1,1.219003677368164,221,0.0,2 +53221,15,0.0,1,1.7209988832473755,222,1.0,2 +53222,15,0.0,1,1.2100036144256592,223,1.0,2 +53223,15,0.0,1,1.3350038528442383,224,0.0,2 +53224,15,1.0,1,1.4790019989013672,225,0.0,2 +53225,15,0.0,1,1.855997085571289,226,1.0,2 +53226,15,1.0,1,1.7829980850219727,227,1.0,2 +53227,15,1.0,1,1.5240013599395752,228,1.0,2 +53228,15,1.0,1,1.8039977550506592,229,1.0,2 +53229,15,1.0,1,1.256003737449646,230,0.0,2 +53230,15,0.0,1,1.2180036306381226,231,0.0,2 +53231,15,1.0,1,1.8919966220855713,232,1.0,2 +53232,15,1.0,1,1.3330038785934448,233,1.0,2 +53233,15,1.0,1,1.4280025959014893,234,1.0,2 +53234,15,1.0,1,1.670999526977539,235,1.0,2 +53235,15,1.0,1,1.395003080368042,236,1.0,2 +53236,15,1.0,1,1.696999192237854,237,1.0,2 +53237,15,1.0,1,1.2850037813186646,238,0.0,2 +53238,15,1.0,1,1.4580022096633911,239,0.0,2 +53239,15,0.0,1,1.2610037326812744,240,1.0,2 +53240,15,0.0,1,1.4040029048919678,241,1.0,2 +53241,15,0.0,1,1.2510037422180176,242,1.0,2 +53242,15,0.0,1,1.1790035963058472,243,0.0,2 +53243,15,1.0,1,2.1379971504211426,244,1.0,2 +53244,15,1.0,1,1.528001308441162,245,1.0,2 +53245,15,0.0,1,1.7589983940124512,246,0.0,2 +53246,15,1.0,1,1.6579997539520264,247,1.0,2 +53247,15,0.0,1,1.3680033683776855,248,0.0,2 +53248,15,1.0,1,1.4050029516220093,249,0.0,2 +53249,15,1.0,1,1.4800019264221191,250,1.0,2 +53250,15,1.0,1,1.4740020036697388,251,1.0,2 +53251,15,1.0,1,1.4920017719268799,252,0.0,2 +53252,15,1.0,1,2.1409971714019775,253,1.0,2 +53253,15,1.0,1,1.225003719329834,254,1.0,2 +53254,15,1.0,1,1.2850037813186646,255,0.0,2 +53255,15,1.0,1,1.3110039234161377,256,1.0,2 +53256,15,1.0,1,1.561000943183899,257,1.0,2 +53257,15,1.0,1,1.6330000162124634,258,0.0,2 +53258,15,0.0,1,1.2740037441253662,259,1.0,2 +53259,15,0.0,1,1.4560022354125977,260,0.0,2 +53260,15,1.0,1,1.1900036334991455,261,1.0,2 +53261,15,1.0,1,1.630000114440918,262,1.0,2 +53262,15,1.0,1,1.8609970808029175,263,0.0,2 +53263,15,0.0,1,1.79299795627594,264,0.0,2 +53264,15,0.0,1,1.950995922088623,265,0.0,2 +53265,15,1.0,1,1.5660008192062378,266,0.0,2 +53266,15,1.0,1,1.7209988832473755,267,0.0,2 +53267,15,0.0,1,1.5150015354156494,268,0.0,2 +53268,15,1.0,1,1.9609957933425903,269,1.0,2 +53269,15,1.0,1,1.3360037803649902,270,0.0,2 +53270,15,0.0,1,1.5910005569458008,271,1.0,2 +53271,15,0.0,1,1.7609983682632446,272,1.0,2 +53272,15,0.0,1,1.4110028743743896,273,0.0,2 +53273,15,0.0,1,1.5240013599395752,274,1.0,2 +53274,15,0.0,1,1.2240036725997925,275,0.0,2 +53275,15,0.0,1,1.8909966945648193,276,0.0,2 +53276,15,1.0,1,1.8959965705871582,277,1.0,2 +53277,15,1.0,1,1.6839993000030518,278,1.0,2 +53278,15,1.0,1,1.3640034198760986,279,1.0,2 +53279,15,1.0,1,1.3180038928985596,280,1.0,2 +53280,15,0.0,1,1.1990036964416504,281,1.0,2 +53281,15,1.0,1,1.951995849609375,282,1.0,2 +53282,15,1.0,1,1.4420024156570435,283,1.0,2 +53283,15,1.0,1,1.7289987802505493,284,1.0,2 +53284,15,1.0,1,1.1480035781860352,285,1.0,2 +53285,15,0.0,1,1.2820037603378296,286,0.0,2 +53286,15,1.0,1,1.880996823310852,287,0.0,2 +53287,15,0.0,1,1.314003825187683,288,1.0,2 +53288,15,0.0,1,1.7609983682632446,289,0.0,2 +53289,15,0.0,1,1.7349987030029297,290,1.0,2 +53290,15,0.0,1,1.532001256942749,291,1.0,2 +53291,15,0.0,1,1.4540022611618042,292,0.0,2 +53292,15,0.0,1,1.5600008964538574,293,0.0,2 +53293,15,1.0,1,1.7519984245300293,294,0.0,2 +53294,15,1.0,1,1.9629957675933838,295,1.0,2 +53295,15,1.0,1,1.3110039234161377,296,1.0,2 +53296,15,1.0,1,1.4890018701553345,297,1.0,2 +53297,15,0.0,1,1.326003909111023,298,1.0,2 +53298,15,1.0,1,1.487001895904541,299,1.0,2 +53299,15,1.0,1,1.5720007419586182,300,1.0,2 +53300,15,1.0,1,1.514001488685608,301,1.0,2 +53301,15,1.0,1,1.558000922203064,302,0.0,2 +53302,15,0.0,1,1.4310026168823242,303,1.0,2 +53303,15,0.0,1,1.5150015354156494,304,1.0,2 +53304,15,0.0,1,1.928996205329895,305,0.0,2 +53305,15,1.0,1,1.2150037288665771,306,1.0,2 +53306,15,1.0,1,1.5210014581680298,307,1.0,2 +53307,15,1.0,1,1.2570037841796875,308,1.0,2 +53308,15,1.0,1,1.484001874923706,309,1.0,2 +53309,15,1.0,1,1.5120015144348145,310,1.0,2 +53310,15,1.0,1,1.3550035953521729,311,1.0,2 +53311,15,1.0,1,1.5440011024475098,312,1.0,2 +53312,15,1.0,1,1.4800019264221191,313,1.0,2 +53313,15,0.0,1,1.1820036172866821,314,1.0,2 +53314,15,1.0,1,1.7999978065490723,315,0.0,2 +53315,15,0.0,1,1.3500036001205444,316,0.0,2 +53316,15,0.0,1,2.1249964237213135,317,1.0,2 +53317,15,0.0,1,1.4260026216506958,318,0.0,2 +53318,15,0.0,1,1.5200014114379883,319,1.0,2 +53319,15,0.0,1,1.3840031623840332,320,1.0,2 +53320,15,0.0,1,1.6989991664886475,321,1.0,2 +53321,15,0.0,1,1.3130038976669312,322,1.0,2 +53322,15,0.0,1,1.7049990892410278,323,0.0,2 +53323,15,1.0,1,1.392003059387207,324,0.0,2 +53324,15,0.0,1,1.9569958448410034,325,0.0,2 +53325,15,0.0,1,1.231003761291504,326,0.0,2 +53326,15,1.0,1,1.3540035486221313,327,1.0,2 +53327,15,0.0,1,1.5940005779266357,328,0.0,2 +53328,15,1.0,1,1.4240026473999023,329,1.0,2 +53329,15,1.0,1,1.811997652053833,330,1.0,2 +53330,15,1.0,1,1.5210014581680298,331,0.0,2 +53331,15,1.0,1,1.9649957418441772,332,0.0,2 +53332,15,0.0,1,1.3420037031173706,333,1.0,2 +53333,15,0.0,1,1.2710037231445312,334,0.0,2 +53334,15,0.0,1,1.1800036430358887,335,1.0,2 +53335,15,0.0,1,1.76399827003479,336,0.0,2 +53336,15,0.0,1,1.558000922203064,337,0.0,2 +53337,15,1.0,1,1.817997694015503,338,0.0,2 +53338,15,1.0,1,1.3850032091140747,339,1.0,2 +53339,15,1.0,1,1.3940030336380005,340,1.0,2 +53340,15,1.0,1,1.4520022869110107,341,1.0,2 +53341,15,1.0,1,1.3780032396316528,342,1.0,2 +53342,15,1.0,1,1.3300038576126099,343,1.0,2 +53343,15,1.0,1,1.4160027503967285,344,1.0,2 +53344,15,1.0,1,1.3570035696029663,345,1.0,2 +53345,15,1.0,1,1.4380024671554565,346,1.0,2 +53346,15,1.0,1,1.528001308441162,347,0.0,2 +53347,15,1.0,1,1.6210001707077026,348,0.0,2 +53348,15,1.0,1,1.4160027503967285,349,1.0,2 +53349,15,1.0,1,1.809997797012329,350,1.0,2 +53350,15,1.0,1,1.2040036916732788,351,0.0,2 +53351,15,1.0,1,1.675999402999878,352,0.0,2 +53352,15,0.0,1,1.8879966735839844,353,1.0,2 +53353,15,0.0,1,1.957995891571045,354,0.0,2 +53354,15,0.0,1,1.4110028743743896,355,0.0,2 +53355,15,0.0,1,2.0769944190979004,356,1.0,2 +53356,15,0.0,1,1.5370012521743774,357,0.0,2 +53357,15,1.0,1,1.3340038061141968,358,1.0,2 +53358,15,0.0,1,2.0729942321777344,359,0.0,2 +53359,15,1.0,1,1.256003737449646,360,1.0,2 +53360,15,1.0,1,1.4350025653839111,361,0.0,2 +53361,15,1.0,1,1.628000020980835,362,1.0,2 +53362,15,1.0,1,1.3370038270950317,363,0.0,2 +53363,15,0.0,1,1.3670034408569336,364,1.0,2 +53364,15,0.0,1,1.5240013599395752,365,0.0,2 +53365,15,0.0,1,1.5960004329681396,366,0.0,2 +53366,15,1.0,1,1.8059978485107422,367,0.0,2 +53367,15,0.0,1,1.3680033683776855,368,0.0,2 +53368,15,0.0,1,1.370003342628479,369,1.0,2 +53369,15,0.0,1,1.2670037746429443,370,0.0,2 +53370,15,0.0,1,1.8889967203140259,371,1.0,2 +53371,15,0.0,1,1.4050029516220093,372,0.0,2 +53372,15,1.0,1,1.718998908996582,373,0.0,2 +53373,15,0.0,1,1.391003131866455,374,0.0,2 +53374,15,1.0,1,1.5910005569458008,375,1.0,2 +53375,15,1.0,1,1.4970017671585083,376,1.0,2 +53376,15,1.0,1,1.3780032396316528,377,1.0,2 +53377,15,1.0,1,1.4320025444030762,378,1.0,2 +53378,15,1.0,1,1.7599983215332031,379,1.0,2 +53379,15,1.0,1,1.7349987030029297,380,0.0,2 +53380,15,0.0,1,1.4470024108886719,381,0.0,2 +53381,15,0.0,1,1.5260013341903687,382,1.0,2 +53382,15,0.0,1,1.5870006084442139,383,0.0,2 +53383,15,1.0,1,1.5490010976791382,384,1.0,2 +53384,15,1.0,1,1.4570022821426392,385,1.0,2 +53385,15,1.0,1,1.3890031576156616,386,1.0,2 +53386,15,1.0,1,1.6879992485046387,387,1.0,2 +53387,15,0.0,1,1.3610035181045532,388,0.0,2 +53388,15,1.0,1,1.413002848625183,389,1.0,2 +53389,15,1.0,1,1.8259975910186768,390,0.0,2 +53390,15,0.0,1,1.2850037813186646,391,0.0,2 +53391,15,1.0,1,1.5430011749267578,392,1.0,2 +53392,15,1.0,1,1.561000943183899,393,1.0,2 +53393,15,1.0,1,1.6469998359680176,394,1.0,2 +53394,15,1.0,1,1.6100003719329834,395,0.0,2 +53395,15,1.0,1,1.8479971885681152,396,0.0,2 +53396,15,0.0,1,1.998995304107666,397,0.0,2 +53397,15,0.0,1,1.4240026473999023,398,0.0,2 +53398,15,1.0,1,1.4920017719268799,399,1.0,2 +53399,15,1.0,1,1.6939992904663086,400,1.0,2 +53400,15,1.0,1,1.536001205444336,401,1.0,2 +53401,15,1.0,1,1.3540035486221313,402,0.0,2 +53402,15,0.0,1,1.4670021533966064,403,1.0,2 +53403,15,0.0,1,1.2750037908554077,404,0.0,2 +53404,15,0.0,1,1.41700279712677,405,0.0,2 +53405,15,1.0,1,1.439002513885498,406,0.0,2 +53406,15,0.0,1,1.674999475479126,407,0.0,2 +53407,15,1.0,1,1.630000114440918,408,1.0,2 +53408,15,1.0,1,1.6409999132156372,409,1.0,2 +53409,15,1.0,1,1.3420037031173706,410,1.0,2 +53410,15,1.0,1,1.296003818511963,411,1.0,2 +53411,15,1.0,1,1.3850032091140747,412,1.0,2 +53412,15,1.0,1,1.4700020551681519,413,0.0,2 +53413,15,1.0,1,1.9049965143203735,414,1.0,2 +53414,15,1.0,1,1.4720020294189453,415,1.0,2 +53415,15,1.0,1,1.630000114440918,416,0.0,2 +53416,15,0.0,1,1.4240026473999023,417,0.0,2 +53417,15,0.0,1,1.3270039558410645,418,0.0,2 +53418,15,1.0,1,1.6549997329711914,419,1.0,2 +53419,15,1.0,1,1.4670021533966064,420,1.0,2 +53420,15,1.0,1,1.3280038833618164,421,1.0,2 +53421,15,1.0,1,1.2430037260055542,422,0.0,2 +53422,15,0.0,1,1.762998342514038,423,0.0,2 +53423,15,1.0,1,1.9269962310791016,424,0.0,2 +53424,15,1.0,1,1.554000973701477,425,1.0,2 +53425,15,1.0,1,1.3130038976669312,426,0.0,2 +53426,15,0.0,1,1.4820019006729126,427,0.0,2 +53427,15,1.0,1,2.202000141143799,428,0.0,2 +53428,15,0.0,1,1.723998785018921,429,0.0,2 +53429,15,0.0,1,2.037994861602783,430,0.0,2 +53430,15,0.0,1,1.6389999389648438,431,1.0,2 +53431,15,0.0,1,1.4350025653839111,432,0.0,2 +53432,15,0.0,1,1.5550010204315186,433,0.0,2 +53433,15,0.0,1,1.8209975957870483,434,1.0,2 +53434,15,0.0,1,2.0779943466186523,435,0.0,2 +53435,15,0.0,1,1.3420037031173706,436,0.0,2 +53436,15,0.0,1,1.2340036630630493,437,0.0,2 +53437,15,0.0,1,1.8019979000091553,438,0.0,2 +53438,15,1.0,1,1.5440011024475098,439,0.0,2 +53439,15,0.0,1,1.5270013809204102,440,0.0,2 +53440,15,1.0,1,1.601000428199768,441,1.0,2 +53441,15,1.0,1,2.0359947681427,442,1.0,2 +53442,15,1.0,1,1.4220026731491089,443,1.0,2 +53443,15,1.0,1,1.9419960975646973,444,1.0,2 +53444,15,1.0,1,1.4920017719268799,445,1.0,2 +53445,15,1.0,1,1.3890031576156616,446,1.0,2 +53446,15,1.0,1,1.580000638961792,447,0.0,2 +53447,15,0.0,1,1.6539998054504395,448,1.0,2 +53448,15,1.0,1,1.5660008192062378,449,1.0,2 +53449,15,1.0,1,1.6020004749298096,450,1.0,2 +53450,15,1.0,1,1.8229975700378418,451,1.0,2 +53451,15,1.0,1,1.6819994449615479,452,1.0,2 +53452,15,0.0,1,1.817997694015503,453,0.0,2 +53453,15,1.0,1,1.8339974880218506,454,1.0,2 +53454,15,1.0,1,1.344003677368164,455,1.0,2 +53455,15,1.0,1,1.5460010766983032,456,0.0,2 +53456,15,0.0,1,1.3560035228729248,457,0.0,2 +53457,15,1.0,1,2.0309948921203613,458,0.0,2 +53458,15,0.0,1,2.0089950561523438,459,0.0,2 +53459,15,1.0,1,1.256003737449646,460,0.0,2 +53460,15,0.0,1,1.4810019731521606,461,0.0,2 +53461,15,0.0,1,2.0159950256347656,462,0.0,2 +53462,15,1.0,1,1.6539998054504395,463,0.0,2 +53463,15,0.0,1,1.3090038299560547,464,0.0,2 +53464,15,0.0,1,1.675999402999878,465,0.0,2 +53465,15,1.0,1,1.9699957370758057,466,1.0,2 +53466,15,1.0,1,1.4240026473999023,467,1.0,2 +53467,15,1.0,1,1.5980005264282227,468,1.0,2 +53468,15,1.0,1,1.461002230644226,469,0.0,2 +53469,15,1.0,1,1.4860018491744995,470,0.0,2 +53470,15,0.0,1,1.4980016946792603,471,0.0,2 +53471,15,1.0,1,1.8039977550506592,472,1.0,2 +53472,15,1.0,1,1.2070035934448242,473,1.0,2 +53473,15,1.0,1,1.3770033121109009,474,1.0,2 +53474,15,1.0,1,1.5190014839172363,475,1.0,2 +53475,15,1.0,1,1.9159963130950928,476,1.0,2 +53476,15,0.0,1,1.5720007419586182,477,0.0,2 +53477,15,1.0,1,1.4070029258728027,478,0.0,2 +53478,15,1.0,1,1.906996488571167,479,0.0,2 +53479,15,1.0,1,1.9259963035583496,480,1.0,2 +53480,15,0.0,1,2.211000442504883,481,0.0,2 +53481,15,1.0,1,1.6150002479553223,482,1.0,2 +53482,15,1.0,1,1.5700007677078247,483,1.0,2 +53483,15,1.0,1,1.2710037231445312,484,0.0,2 +53484,15,0.0,1,1.5600008964538574,485,0.0,2 +53485,15,1.0,1,1.7399985790252686,486,0.0,2 +53486,15,0.0,1,1.8959965705871582,487,1.0,2 +53487,15,0.0,1,1.3020038604736328,488,1.0,2 +53488,15,0.0,1,1.2320036888122559,489,0.0,2 +53489,15,0.0,1,1.5220013856887817,490,0.0,2 +53490,15,1.0,1,1.231003761291504,491,1.0,2 +53491,15,1.0,1,1.343003749847412,492,1.0,2 +53492,15,1.0,1,1.3250038623809814,493,0.0,2 +53493,15,1.0,1,1.3590035438537598,494,1.0,2 +53494,15,1.0,1,1.2300037145614624,495,1.0,2 +53495,15,1.0,1,1.2670037746429443,496,1.0,2 +53496,15,1.0,1,1.3500036001205444,497,0.0,2 +53497,15,0.0,1,1.6000003814697266,498,0.0,2 +53498,15,1.0,1,1.3760032653808594,499,0.0,2 +53499,15,0.0,1,1.223003625869751,500,0.0,2 +53500,15,0.0,2,1.722998857498169,1,0.0,2 +53501,15,0.0,2,1.225003719329834,2,1.0,2 +53502,15,0.0,2,1.627000093460083,3,1.0,2 +53503,15,0.0,2,1.4230027198791504,4,0.0,2 +53504,15,1.0,2,1.7029991149902344,5,1.0,2 +53505,15,1.0,2,1.461002230644226,6,1.0,2 +53506,15,1.0,2,1.7939980030059814,7,1.0,2 +53507,15,1.0,2,2.1689984798431396,8,1.0,2 +53508,15,1.0,2,2.1029953956604004,9,1.0,2 +53509,15,1.0,2,1.2800037860870361,10,1.0,2 +53510,15,1.0,2,1.461002230644226,11,1.0,2 +53511,15,1.0,2,1.396003007888794,12,1.0,2 +53512,15,1.0,2,1.5560009479522705,13,1.0,2 +53513,15,1.0,2,1.3550035953521729,14,0.0,2 +53514,15,0.0,2,1.374003291130066,15,0.0,2 +53515,15,1.0,2,1.395003080368042,16,1.0,2 +53516,15,1.0,2,1.5110015869140625,17,1.0,2 +53517,15,1.0,2,1.6449998617172241,18,1.0,2 +53518,15,1.0,2,1.3300038576126099,19,0.0,2 +53519,15,1.0,2,1.8729969263076782,20,0.0,2 +53520,15,1.0,2,1.44000244140625,21,1.0,2 +53521,15,1.0,2,1.536001205444336,22,0.0,2 +53522,15,1.0,2,1.6000003814697266,23,1.0,2 +53523,15,1.0,2,1.696999192237854,24,0.0,2 +53524,15,0.0,2,2.1369969844818115,25,0.0,2 +53525,15,0.0,2,1.9129964113235474,26,0.0,2 +53526,15,1.0,2,1.8009978532791138,27,1.0,2 +53527,15,1.0,2,1.2710037231445312,28,1.0,2 +53528,15,1.0,2,1.5120015144348145,29,0.0,2 +53529,15,1.0,2,1.2790038585662842,30,0.0,2 +53530,15,1.0,2,1.4480023384094238,31,1.0,2 +53531,15,0.0,2,1.3150038719177246,32,0.0,2 +53532,15,1.0,2,1.4200026988983154,33,1.0,2 +53533,15,1.0,2,1.373003363609314,34,0.0,2 +53534,15,1.0,2,1.3350038528442383,35,1.0,2 +53535,15,1.0,2,1.4850019216537476,36,1.0,2 +53536,15,1.0,2,1.323003888130188,37,1.0,2 +53537,15,0.0,2,1.5340012311935425,38,1.0,2 +53538,15,1.0,2,1.3500036001205444,39,1.0,2 +53539,15,0.0,2,1.6330000162124634,40,1.0,2 +53540,15,0.0,2,2.1279964447021484,41,0.0,2 +53541,15,1.0,2,1.8299975395202637,42,0.0,2 +53542,15,1.0,2,1.57900071144104,43,0.0,2 +53543,15,0.0,2,1.1700035333633423,44,1.0,2 +53544,15,0.0,2,1.6389999389648438,45,0.0,2 +53545,15,0.0,2,1.5270013809204102,46,1.0,2 +53546,15,0.0,2,1.584000587463379,47,1.0,2 +53547,15,0.0,2,1.2580037117004395,48,1.0,2 +53548,15,0.0,2,1.488001823425293,49,1.0,2 +53549,15,0.0,2,1.9489959478378296,50,0.0,2 +53550,15,1.0,2,1.351003646850586,51,0.0,2 +53551,15,0.0,2,1.3930031061172485,52,1.0,2 +53552,15,0.0,2,1.7849980592727661,53,1.0,2 +53553,15,0.0,2,1.4820019006729126,54,1.0,2 +53554,15,0.0,2,1.3780032396316528,55,0.0,2 +53555,15,1.0,2,1.3840031623840332,56,1.0,2 +53556,15,0.0,2,1.195003628730774,57,1.0,2 +53557,15,1.0,2,1.627000093460083,58,0.0,2 +53558,15,0.0,2,1.2360037565231323,59,1.0,2 +53559,15,0.0,2,1.2360037565231323,60,1.0,2 +53560,15,0.0,2,1.1980036497116089,61,1.0,2 +53561,15,0.0,2,1.7739982604980469,62,0.0,2 +53562,15,1.0,2,1.8219976425170898,63,0.0,2 +53563,15,0.0,2,2.0999951362609863,64,1.0,2 +53564,15,0.0,2,1.7099990844726562,65,0.0,2 +53565,15,0.0,2,1.539001226425171,66,0.0,2 +53566,15,0.0,2,1.5870006084442139,67,1.0,2 +53567,15,0.0,2,1.3020038604736328,68,0.0,2 +53568,15,0.0,2,1.3210039138793945,69,1.0,2 +53569,15,0.0,2,1.2100036144256592,70,0.0,2 +53570,15,0.0,2,1.3620034456253052,71,1.0,2 +53571,15,0.0,2,1.3010038137435913,72,0.0,2 +53572,15,1.0,2,1.5480010509490967,73,1.0,2 +53573,15,1.0,2,1.2760038375854492,74,0.0,2 +53574,15,0.0,2,1.4760019779205322,75,1.0,2 +53575,15,0.0,2,1.3410037755966187,76,1.0,2 +53576,15,0.0,2,1.195003628730774,77,1.0,2 +53577,15,0.0,2,1.3550035953521729,78,0.0,2 +53578,15,0.0,2,1.4300025701522827,79,0.0,2 +53579,15,1.0,2,1.5380011796951294,80,0.0,2 +53580,15,0.0,2,1.9899954795837402,81,0.0,2 +53581,15,0.0,2,1.715998888015747,82,0.0,2 +53582,15,1.0,2,1.2910038232803345,83,1.0,2 +53583,15,1.0,2,1.3330038785934448,84,1.0,2 +53584,15,1.0,2,1.253003716468811,85,1.0,2 +53585,15,1.0,2,1.7029991149902344,86,0.0,2 +53586,15,0.0,2,1.2760038375854492,87,1.0,2 +53587,15,0.0,2,1.5340012311935425,88,0.0,2 +53588,15,0.0,2,1.558000922203064,89,0.0,2 +53589,15,0.0,2,1.807997703552246,90,0.0,2 +53590,15,1.0,2,2.489013433456421,91,0.0,2 +53591,15,0.0,2,1.6539998054504395,92,0.0,2 +53592,15,0.0,2,1.8649970293045044,93,0.0,2 +53593,15,1.0,2,2.4100098609924316,94,1.0,2 +53594,15,1.0,2,1.491001844406128,95,1.0,2 +53595,15,1.0,2,1.7389986515045166,96,1.0,2 +53596,15,1.0,2,1.4730020761489868,97,0.0,2 +53597,15,0.0,2,1.2840038537979126,98,0.0,2 +53598,15,0.0,2,1.4340025186538696,99,0.0,2 +53599,15,0.0,2,1.4200026988983154,100,0.0,2 +53600,15,0.0,2,1.1700035333633423,101,1.0,2 +53601,15,0.0,2,1.8979966640472412,102,0.0,2 +53602,15,1.0,2,2.0199949741363525,103,1.0,2 +53603,15,1.0,2,1.7169989347457886,104,0.0,2 +53604,15,0.0,2,1.252003788948059,105,0.0,2 +53605,15,1.0,2,1.7329987287521362,106,1.0,2 +53606,15,1.0,2,1.5030016899108887,107,1.0,2 +53607,15,1.0,2,1.3050038814544678,108,0.0,2 +53608,15,1.0,2,1.6200001239776611,109,0.0,2 +53609,15,0.0,2,1.5050016641616821,110,1.0,2 +53610,15,0.0,2,1.5950005054473877,111,0.0,2 +53611,15,0.0,2,1.3340038061141968,112,1.0,2 +53612,15,0.0,2,1.6899993419647217,113,0.0,2 +53613,15,0.0,2,2.228001117706299,114,1.0,2 +53614,15,0.0,2,1.399003028869629,115,0.0,2 +53615,15,0.0,2,2.0269949436187744,116,0.0,2 +53616,15,0.0,2,1.3780032396316528,117,1.0,2 +53617,15,0.0,2,1.391003131866455,118,1.0,2 +53618,15,0.0,2,1.223003625869751,119,1.0,2 +53619,15,0.0,2,1.2630038261413574,120,0.0,2 +53620,15,0.0,2,1.998995304107666,121,1.0,2 +53621,15,0.0,2,1.439002513885498,122,1.0,2 +53622,15,0.0,2,1.256003737449646,123,1.0,2 +53623,15,0.0,2,1.3080039024353027,124,0.0,2 +53624,15,0.0,2,2.039994716644287,125,0.0,2 +53625,15,1.0,2,1.8059978485107422,126,0.0,2 +53626,15,1.0,2,2.1929996013641357,127,1.0,2 +53627,15,1.0,2,1.7499985694885254,128,0.0,2 +53628,15,1.0,2,1.2670037746429443,129,1.0,2 +53629,15,1.0,2,1.3810032606124878,130,1.0,2 +53630,15,1.0,2,1.6569997072219849,131,1.0,2 +53631,15,1.0,2,1.2780038118362427,132,0.0,2 +53632,15,0.0,2,1.584000587463379,133,0.0,2 +53633,15,1.0,2,1.8699970245361328,134,1.0,2 +53634,15,1.0,2,1.3100038766860962,135,0.0,2 +53635,15,0.0,2,1.8759968280792236,136,0.0,2 +53636,15,1.0,2,1.7739982604980469,137,0.0,2 +53637,15,1.0,2,1.6220002174377441,138,0.0,2 +53638,15,1.0,2,1.553001046180725,139,0.0,2 +53639,15,0.0,2,1.3410037755966187,140,0.0,2 +53640,15,0.0,2,1.352003574371338,141,0.0,2 +53641,15,0.0,2,2.0559945106506348,142,0.0,2 +53642,15,0.0,2,2.1459975242614746,143,0.0,2 +53643,15,0.0,2,1.326003909111023,144,1.0,2 +53644,15,0.0,2,1.314003825187683,145,0.0,2 +53645,15,0.0,2,1.857997179031372,146,0.0,2 +53646,15,0.0,2,2.0289950370788574,147,1.0,2 +53647,15,0.0,2,1.6589996814727783,148,1.0,2 +53648,15,0.0,2,1.2680038213729858,149,0.0,2 +53649,15,0.0,2,1.6469998359680176,150,0.0,2 +53650,15,1.0,2,1.5460010766983032,151,0.0,2 +53651,15,0.0,2,1.4690021276474,152,0.0,2 +53652,15,1.0,2,1.719998836517334,153,0.0,2 +53653,15,1.0,2,1.9409960508346558,154,0.0,2 +53654,15,0.0,2,1.3970030546188354,155,0.0,2 +53655,15,0.0,2,1.3800032138824463,156,0.0,2 +53656,15,0.0,2,1.4950017929077148,157,1.0,2 +53657,15,0.0,2,1.7569984197616577,158,0.0,2 +53658,15,0.0,2,1.3040038347244263,159,1.0,2 +53659,15,0.0,2,1.1700035333633423,160,1.0,2 +53660,15,0.0,2,1.162003517150879,161,0.0,2 +53661,15,0.0,2,1.513001561164856,162,0.0,2 +53662,15,1.0,2,1.4560022354125977,163,0.0,2 +53663,15,0.0,2,1.1720036268234253,164,1.0,2 +53664,15,0.0,2,1.3820031881332397,165,0.0,2 +53665,15,0.0,2,1.5510010719299316,166,0.0,2 +53666,15,1.0,2,1.5780006647109985,167,0.0,2 +53667,15,1.0,2,1.3860031366348267,168,0.0,2 +53668,15,1.0,2,1.8609970808029175,169,1.0,2 +53669,15,1.0,2,2.1739988327026367,170,1.0,2 +53670,15,1.0,2,1.2510037422180176,171,1.0,2 +53671,15,1.0,2,1.5690008401870728,172,1.0,2 +53672,15,1.0,2,1.5340012311935425,173,1.0,2 +53673,15,1.0,2,1.6769994497299194,174,0.0,2 +53674,15,0.0,2,1.317003846168518,175,0.0,2 +53675,15,1.0,2,1.4080028533935547,176,1.0,2 +53676,15,1.0,2,1.348003625869751,177,0.0,2 +53677,15,0.0,2,1.4100028276443481,178,1.0,2 +53678,15,0.0,2,1.3970030546188354,179,0.0,2 +53679,15,0.0,2,1.373003363609314,180,1.0,2 +53680,15,0.0,2,1.9599957466125488,181,1.0,2 +53681,15,0.0,2,1.418002724647522,182,0.0,2 +53682,15,0.0,2,1.2800037860870361,183,0.0,2 +53683,15,1.0,2,1.5810006856918335,184,1.0,2 +53684,15,1.0,2,1.3860031366348267,185,0.0,2 +53685,15,1.0,2,2.4270105361938477,186,1.0,2 +53686,15,1.0,2,1.4150028228759766,187,1.0,2 +53687,15,1.0,2,1.7429986000061035,188,1.0,2 +53688,15,1.0,2,1.2720037698745728,189,1.0,2 +53689,15,1.0,2,1.2550036907196045,190,0.0,2 +53690,15,1.0,2,1.7959978580474854,191,0.0,2 +53691,15,1.0,2,1.539001226425171,192,0.0,2 +53692,15,1.0,2,2.042994737625122,193,0.0,2 +53693,15,0.0,2,1.6799993515014648,194,0.0,2 +53694,15,0.0,2,1.788998007774353,195,0.0,2 +53695,15,0.0,2,2.235001564025879,196,0.0,2 +53696,15,1.0,2,1.624000072479248,197,0.0,2 +53697,15,1.0,2,1.8889967203140259,198,0.0,2 +53698,15,0.0,2,1.1730035543441772,199,0.0,2 +53699,15,0.0,2,1.809997797012329,200,0.0,2 +53700,15,1.0,2,1.4530023336410522,201,0.0,2 +53701,15,1.0,2,1.9239962100982666,202,1.0,2 +53702,15,1.0,2,1.3640034198760986,203,0.0,2 +53703,15,1.0,2,1.7319986820220947,204,0.0,2 +53704,15,0.0,2,1.3780032396316528,205,1.0,2 +53705,15,0.0,2,1.1510035991668701,206,1.0,2 +53706,15,0.0,2,1.2240036725997925,207,0.0,2 +53707,15,0.0,2,1.3460036516189575,208,1.0,2 +53708,15,1.0,2,1.5740007162094116,209,1.0,2 +53709,15,1.0,2,1.392003059387207,210,0.0,2 +53710,15,1.0,2,1.4230027198791504,211,1.0,2 +53711,15,1.0,2,1.6919991970062256,212,1.0,2 +53712,15,0.0,2,1.392003059387207,213,1.0,2 +53713,15,0.0,2,2.0119950771331787,214,0.0,2 +53714,15,1.0,2,1.4570022821426392,215,0.0,2 +53715,15,0.0,2,1.5050016641616821,216,0.0,2 +53716,15,0.0,2,1.8669970035552979,217,0.0,2 +53717,15,1.0,2,1.4500023126602173,218,0.0,2 +53718,15,0.0,2,1.3330038785934448,219,0.0,2 +53719,15,0.0,2,2.038994789123535,220,0.0,2 +53720,15,0.0,2,1.8309974670410156,221,1.0,2 +53721,15,0.0,2,1.286003828048706,222,1.0,2 +53722,15,0.0,2,1.2990038394927979,223,1.0,2 +53723,15,0.0,2,1.3400037288665771,224,1.0,2 +53724,15,0.0,2,1.1910035610198975,225,1.0,2 +53725,15,0.0,2,1.3860031366348267,226,0.0,2 +53726,15,1.0,2,1.4100028276443481,227,1.0,2 +53727,15,1.0,2,1.535001277923584,228,0.0,2 +53728,15,1.0,2,1.286003828048706,229,1.0,2 +53729,15,1.0,2,1.5400011539459229,230,1.0,2 +53730,15,1.0,2,1.4090029001235962,231,0.0,2 +53731,15,0.0,2,2.300004482269287,232,1.0,2 +53732,15,1.0,2,1.4590022563934326,233,1.0,2 +53733,15,1.0,2,1.8819968700408936,234,0.0,2 +53734,15,0.0,2,1.2080036401748657,235,0.0,2 +53735,15,0.0,2,1.2330037355422974,236,0.0,2 +53736,15,1.0,2,1.2680038213729858,237,1.0,2 +53737,15,1.0,2,1.4420024156570435,238,0.0,2 +53738,15,0.0,2,1.5520009994506836,239,1.0,2 +53739,15,0.0,2,2.0319948196411133,240,0.0,2 +53740,15,1.0,2,2.1709985733032227,241,1.0,2 +53741,15,1.0,2,1.2680038213729858,242,0.0,2 +53742,15,0.0,2,1.6649996042251587,243,0.0,2 +53743,15,0.0,2,1.5930005311965942,244,1.0,2 +53744,15,0.0,2,1.2340036630630493,245,0.0,2 +53745,15,0.0,2,1.5660008192062378,246,1.0,2 +53746,15,0.0,2,1.6020004749298096,247,0.0,2 +53747,15,0.0,2,1.2990038394927979,248,1.0,2 +53748,15,0.0,2,1.4010030031204224,249,0.0,2 +53749,15,0.0,2,1.3450037240982056,250,0.0,2 +53750,15,1.0,2,1.9739956855773926,251,1.0,2 +53751,15,1.0,2,1.3150038719177246,252,1.0,2 +53752,15,1.0,2,1.6150002479553223,253,0.0,2 +53753,15,1.0,2,1.5460010766983032,254,1.0,2 +53754,15,1.0,2,1.576000690460205,255,0.0,2 +53755,15,0.0,2,1.536001205444336,256,0.0,2 +53756,15,0.0,2,1.7269988059997559,257,0.0,2 +53757,15,1.0,2,2.1199960708618164,258,0.0,2 +53758,15,1.0,2,1.2760038375854492,259,0.0,2 +53759,15,1.0,2,1.725998878479004,260,0.0,2 +53760,15,0.0,2,1.326003909111023,261,1.0,2 +53761,15,0.0,2,1.5950005054473877,262,0.0,2 +53762,15,0.0,2,1.8799967765808105,263,1.0,2 +53763,15,0.0,2,1.4230027198791504,264,1.0,2 +53764,15,0.0,2,1.5380011796951294,265,1.0,2 +53765,15,0.0,2,1.5720007419586182,266,1.0,2 +53766,15,0.0,2,1.391003131866455,267,0.0,2 +53767,15,1.0,2,1.4980016946792603,268,0.0,2 +53768,15,0.0,2,1.3160039186477661,269,0.0,2 +53769,15,1.0,2,1.7809981107711792,270,1.0,2 +53770,15,1.0,2,1.344003677368164,271,0.0,2 +53771,15,0.0,2,1.3600034713745117,272,0.0,2 +53772,15,0.0,2,1.2300037145614624,273,0.0,2 +53773,15,1.0,2,1.553001046180725,274,0.0,2 +53774,15,0.0,2,1.3900030851364136,275,0.0,2 +53775,15,0.0,2,2.0199949741363525,276,1.0,2 +53776,15,0.0,2,1.910996437072754,277,0.0,2 +53777,15,1.0,2,2.005995273590088,278,0.0,2 +53778,15,1.0,2,1.3450037240982056,279,0.0,2 +53779,15,0.0,2,1.2060036659240723,280,0.0,2 +53780,15,0.0,2,2.0809943675994873,281,0.0,2 +53781,15,0.0,2,1.6210001707077026,282,0.0,2 +53782,15,0.0,2,1.3710033893585205,283,1.0,2 +53783,15,0.0,2,1.8439972400665283,284,1.0,2 +53784,15,0.0,2,1.1680035591125488,285,0.0,2 +53785,15,0.0,2,1.6080002784729004,286,0.0,2 +53786,15,0.0,2,1.9369961023330688,287,0.0,2 +53787,15,0.0,2,1.4600021839141846,288,0.0,2 +53788,15,0.0,2,1.3300038576126099,289,1.0,2 +53789,15,0.0,2,1.531001329421997,290,0.0,2 +53790,15,0.0,2,1.4760019779205322,291,1.0,2 +53791,15,0.0,2,1.4980016946792603,292,1.0,2 +53792,15,0.0,2,1.399003028869629,293,0.0,2 +53793,15,0.0,2,1.3760032653808594,294,0.0,2 +53794,15,0.0,2,1.3980029821395874,295,1.0,2 +53795,15,0.0,2,1.1910035610198975,296,1.0,2 +53796,15,0.0,2,1.3040038347244263,297,0.0,2 +53797,15,0.0,2,1.2980037927627563,298,1.0,2 +53798,15,0.0,2,1.3340038061141968,299,0.0,2 +53799,15,0.0,2,1.6190001964569092,300,1.0,2 +53800,15,0.0,2,1.2470037937164307,301,0.0,2 +53801,15,0.0,2,1.718998908996582,302,1.0,2 +53802,15,0.0,2,1.3870031833648682,303,0.0,2 +53803,15,0.0,2,1.219003677368164,304,0.0,2 +53804,15,0.0,2,1.2460037469863892,305,0.0,2 +53805,15,1.0,2,1.4960017204284668,306,0.0,2 +53806,15,0.0,2,1.8949966430664062,307,0.0,2 +53807,15,1.0,2,1.4160027503967285,308,1.0,2 +53808,15,1.0,2,1.462002158164978,309,0.0,2 +53809,15,1.0,2,1.4000029563903809,310,1.0,2 +53810,15,1.0,2,1.4410024881362915,311,1.0,2 +53811,15,1.0,2,1.5020016431808472,312,1.0,2 +53812,15,1.0,2,1.8769968748092651,313,1.0,2 +53813,15,1.0,2,1.4580022096633911,314,1.0,2 +53814,15,1.0,2,1.4120028018951416,315,0.0,2 +53815,15,1.0,2,2.001995325088501,316,1.0,2 +53816,15,1.0,2,1.3340038061141968,317,0.0,2 +53817,15,0.0,2,1.4200026988983154,318,1.0,2 +53818,15,0.0,2,1.4010030031204224,319,0.0,2 +53819,15,0.0,2,1.5700007677078247,320,0.0,2 +53820,15,0.0,2,2.4110097885131836,321,0.0,2 +53821,15,0.0,2,1.483001947402954,322,0.0,2 +53822,15,0.0,2,1.4550023078918457,323,0.0,2 +53823,15,1.0,2,1.5030016899108887,324,1.0,2 +53824,15,1.0,2,1.2460037469863892,325,0.0,2 +53825,15,1.0,2,1.9799954891204834,326,1.0,2 +53826,15,1.0,2,1.9529958963394165,327,1.0,2 +53827,15,1.0,2,1.3750033378601074,328,0.0,2 +53828,15,0.0,2,1.9199962615966797,329,0.0,2 +53829,15,0.0,2,1.6609996557235718,330,1.0,2 +53830,15,0.0,2,1.4460023641586304,331,0.0,2 +53831,15,0.0,2,1.3370038270950317,332,1.0,2 +53832,15,0.0,2,1.3150038719177246,333,0.0,2 +53833,15,0.0,2,1.8999965190887451,334,0.0,2 +53834,15,1.0,2,1.488001823425293,335,0.0,2 +53835,15,1.0,2,1.667999505996704,336,1.0,2 +53836,15,1.0,2,1.6869993209838867,337,1.0,2 +53837,15,1.0,2,1.7049990892410278,338,0.0,2 +53838,15,1.0,2,1.6619997024536133,339,1.0,2 +53839,15,1.0,2,1.6399998664855957,340,1.0,2 +53840,15,1.0,2,2.1359968185424805,341,0.0,2 +53841,15,1.0,2,1.5420011281967163,342,0.0,2 +53842,15,0.0,2,1.2180036306381226,343,1.0,2 +53843,15,0.0,2,1.6459999084472656,344,0.0,2 +53844,15,0.0,2,1.7149989604949951,345,1.0,2 +53845,15,0.0,2,1.4990017414093018,346,1.0,2 +53846,15,0.0,2,1.865997076034546,347,0.0,2 +53847,15,0.0,2,1.6170002222061157,348,0.0,2 +53848,15,0.0,2,1.5220013856887817,349,0.0,2 +53849,15,1.0,2,1.9489959478378296,350,1.0,2 +53850,15,1.0,2,1.5450011491775513,351,0.0,2 +53851,15,0.0,2,1.3490036725997925,352,1.0,2 +53852,15,0.0,2,1.8939967155456543,353,0.0,2 +53853,15,1.0,2,2.002995252609253,354,1.0,2 +53854,15,1.0,2,1.3830032348632812,355,1.0,2 +53855,15,1.0,2,1.6479997634887695,356,1.0,2 +53856,15,1.0,2,1.2080036401748657,357,1.0,2 +53857,15,1.0,2,1.4580022096633911,358,0.0,2 +53858,15,0.0,2,1.2010036706924438,359,0.0,2 +53859,15,0.0,2,1.5650008916854858,360,0.0,2 +53860,15,1.0,2,1.4220026731491089,361,1.0,2 +53861,15,0.0,2,1.3180038928985596,362,1.0,2 +53862,15,0.0,2,1.6369999647140503,363,1.0,2 +53863,15,0.0,2,1.3420037031173706,364,0.0,2 +53864,15,1.0,2,1.3600034713745117,365,1.0,2 +53865,15,1.0,2,1.439002513885498,366,1.0,2 +53866,15,1.0,2,1.9239962100982666,367,1.0,2 +53867,15,1.0,2,1.3040038347244263,368,0.0,2 +53868,15,0.0,2,1.185003638267517,369,1.0,2 +53869,15,0.0,2,1.5510010719299316,370,1.0,2 +53870,15,0.0,2,1.2750037908554077,371,1.0,2 +53871,15,0.0,2,1.2910038232803345,372,1.0,2 +53872,15,0.0,2,1.3790032863616943,373,1.0,2 +53873,15,0.0,2,1.513001561164856,374,1.0,2 +53874,15,0.0,2,1.1930036544799805,375,1.0,2 +53875,15,0.0,2,1.3320038318634033,376,1.0,2 +53876,15,0.0,2,1.3100038766860962,377,0.0,2 +53877,15,0.0,2,1.2690037488937378,378,0.0,2 +53878,15,0.0,2,1.7519984245300293,379,0.0,2 +53879,15,1.0,2,1.6340000629425049,380,1.0,2 +53880,15,1.0,2,1.7529984712600708,381,1.0,2 +53881,15,1.0,2,1.4800019264221191,382,0.0,2 +53882,15,1.0,2,2.0819945335388184,383,1.0,2 +53883,15,1.0,2,1.250003695487976,384,1.0,2 +53884,15,1.0,2,1.491001844406128,385,1.0,2 +53885,15,1.0,2,1.2270036935806274,386,1.0,2 +53886,15,1.0,2,1.439002513885498,387,0.0,2 +53887,15,1.0,2,1.561000943183899,388,1.0,2 +53888,15,1.0,2,1.4060028791427612,389,1.0,2 +53889,15,1.0,2,1.2470037937164307,390,1.0,2 +53890,15,1.0,2,1.4580022096633911,391,0.0,2 +53891,15,0.0,2,1.7949979305267334,392,0.0,2 +53892,15,1.0,2,1.296003818511963,393,0.0,2 +53893,15,1.0,2,1.4020029306411743,394,1.0,2 +53894,15,1.0,2,1.4980016946792603,395,1.0,2 +53895,15,1.0,2,1.1980036497116089,396,1.0,2 +53896,15,1.0,2,1.3780032396316528,397,0.0,2 +53897,15,0.0,2,1.715998888015747,398,1.0,2 +53898,15,0.0,2,1.323003888130188,399,0.0,2 +53899,15,0.0,2,2.291004180908203,400,0.0,2 +53900,15,0.0,2,1.373003363609314,401,1.0,2 +53901,15,0.0,2,1.3320038318634033,402,1.0,2 +53902,15,0.0,2,1.627000093460083,403,0.0,2 +53903,15,0.0,2,1.5510010719299316,404,0.0,2 +53904,15,0.0,2,2.1519975662231445,405,1.0,2 +53905,15,0.0,2,1.718998908996582,406,1.0,2 +53906,15,0.0,2,1.3000038862228394,407,0.0,2 +53907,15,1.0,2,1.2550036907196045,408,1.0,2 +53908,15,1.0,2,1.3610035181045532,409,1.0,2 +53909,15,1.0,2,1.4410024881362915,410,1.0,2 +53910,15,1.0,2,1.5890005826950073,411,0.0,2 +53911,15,0.0,2,1.6559996604919434,412,1.0,2 +53912,15,0.0,2,1.2720037698745728,413,0.0,2 +53913,15,0.0,2,1.5440011024475098,414,0.0,2 +53914,15,0.0,2,1.7819981575012207,415,0.0,2 +53915,15,1.0,2,1.63100004196167,416,0.0,2 +53916,15,1.0,2,1.9709956645965576,417,0.0,2 +53917,15,0.0,2,1.9209963083267212,418,1.0,2 +53918,15,0.0,2,1.1960036754608154,419,0.0,2 +53919,15,0.0,2,1.5040016174316406,420,1.0,2 +53920,15,0.0,2,1.3070038557052612,421,0.0,2 +53921,15,1.0,2,1.4760019779205322,422,1.0,2 +53922,15,0.0,2,1.2440037727355957,423,1.0,2 +53923,15,1.0,2,1.5150015354156494,424,0.0,2 +53924,15,0.0,2,2.0899949073791504,425,0.0,2 +53925,15,0.0,2,1.854997158050537,426,1.0,2 +53926,15,0.0,2,1.2480037212371826,427,0.0,2 +53927,15,1.0,2,1.7859981060028076,428,0.0,2 +53928,15,0.0,2,1.2840038537979126,429,0.0,2 +53929,15,1.0,2,1.2200037240982056,430,0.0,2 +53930,15,0.0,2,1.3010038137435913,431,0.0,2 +53931,15,0.0,2,1.2170037031173706,432,1.0,2 +53932,15,0.0,2,1.6579997539520264,433,0.0,2 +53933,15,1.0,2,1.7839980125427246,434,1.0,2 +53934,15,1.0,2,1.7919979095458984,435,0.0,2 +53935,15,0.0,2,1.6619997024536133,436,0.0,2 +53936,15,1.0,2,2.1479973793029785,437,1.0,2 +53937,15,0.0,2,1.5250014066696167,438,0.0,2 +53938,15,1.0,2,1.396003007888794,439,1.0,2 +53939,15,1.0,2,1.2770037651062012,440,1.0,2 +53940,15,1.0,2,1.1370035409927368,441,1.0,2 +53941,15,1.0,2,1.2630038261413574,442,0.0,2 +53942,15,1.0,2,1.7389986515045166,443,1.0,2 +53943,15,0.0,2,1.81599760055542,444,1.0,2 +53944,15,1.0,2,2.1739988327026367,445,1.0,2 +53945,15,0.0,2,2.0959949493408203,446,0.0,2 +53946,15,1.0,2,1.6849993467330933,447,1.0,2 +53947,15,1.0,2,1.7069990634918213,448,0.0,2 +53948,15,0.0,2,2.0309948921203613,449,0.0,2 +53949,15,0.0,2,1.2180036306381226,450,0.0,2 +53950,15,1.0,2,1.626000165939331,451,0.0,2 +53951,15,1.0,2,1.3370038270950317,452,0.0,2 +53952,15,1.0,2,2.3430066108703613,453,1.0,2 +53953,15,1.0,2,1.3710033893585205,454,1.0,2 +53954,15,1.0,2,1.5730007886886597,455,0.0,2 +53955,15,0.0,2,1.4110028743743896,456,0.0,2 +53956,15,1.0,2,1.539001226425171,457,0.0,2 +53957,15,1.0,2,1.4450024366378784,458,1.0,2 +53958,15,1.0,2,1.2780038118362427,459,1.0,2 +53959,15,1.0,2,1.3360037803649902,460,1.0,2 +53960,15,1.0,2,1.4270026683807373,461,0.0,2 +53961,15,1.0,2,1.222003698348999,462,1.0,2 +53962,15,1.0,2,1.7549984455108643,463,1.0,2 +53963,15,1.0,2,1.4730020761489868,464,1.0,2 +53964,15,1.0,2,1.5040016174316406,465,0.0,2 +53965,15,1.0,2,1.1750035285949707,466,1.0,2 +53966,15,1.0,2,1.8459973335266113,467,0.0,2 +53967,15,1.0,2,1.8829967975616455,468,1.0,2 +53968,15,1.0,2,1.6989991664886475,469,0.0,2 +53969,15,0.0,2,1.4330025911331177,470,0.0,2 +53970,15,0.0,2,1.366003394126892,471,0.0,2 +53971,15,1.0,2,2.0729942321777344,472,0.0,2 +53972,15,1.0,2,1.932996153831482,473,1.0,2 +53973,15,1.0,2,1.673999547958374,474,1.0,2 +53974,15,1.0,2,1.4980016946792603,475,0.0,2 +53975,15,1.0,2,1.2820037603378296,476,1.0,2 +53976,15,1.0,2,1.2240036725997925,477,1.0,2 +53977,15,1.0,2,1.5250014066696167,478,1.0,2 +53978,15,1.0,2,1.2000036239624023,479,1.0,2 +53979,15,1.0,2,1.4970017671585083,480,0.0,2 +53980,15,0.0,2,1.6899993419647217,481,1.0,2 +53981,15,0.0,2,1.5500010251998901,482,1.0,2 +53982,15,0.0,2,2.0869946479797363,483,0.0,2 +53983,15,1.0,2,1.5660008192062378,484,1.0,2 +53984,15,1.0,2,1.5150015354156494,485,1.0,2 +53985,15,1.0,2,1.9429960250854492,486,0.0,2 +53986,15,0.0,2,1.2400037050247192,487,0.0,2 +53987,15,1.0,2,1.8059978485107422,488,1.0,2 +53988,15,1.0,2,1.3120038509368896,489,0.0,2 +53989,15,1.0,2,1.3620034456253052,490,1.0,2 +53990,15,1.0,2,1.4370025396347046,491,0.0,2 +53991,15,1.0,2,1.5810006856918335,492,0.0,2 +53992,15,0.0,2,1.223003625869751,493,1.0,2 +53993,15,0.0,2,1.8799967765808105,494,0.0,2 +53994,15,1.0,2,1.4420024156570435,495,0.0,2 +53995,15,0.0,2,1.2200037240982056,496,0.0,2 +53996,15,1.0,2,2.1559977531433105,497,1.0,2 +53997,15,1.0,2,1.5190014839172363,498,1.0,2 +53998,15,1.0,2,1.2940038442611694,499,1.0,2 +53999,15,1.0,2,1.6649996042251587,500,0.0,2 +54000,16,1.0,0,1.7917253971099854,1,1.0,2 +54001,16,0.0,0,1.854724645614624,2,0.0,2 +54002,16,1.0,0,1.1567323207855225,3,1.0,2 +54003,16,1.0,0,1.5927278995513916,4,1.0,2 +54004,16,1.0,0,1.4207301139831543,5,1.0,2 +54005,16,1.0,0,1.3837306499481201,6,1.0,2 +54006,16,1.0,0,1.8327248096466064,7,1.0,2 +54007,16,1.0,0,1.6317274570465088,8,1.0,2 +54008,16,1.0,0,1.9317235946655273,9,0.0,2 +54009,16,0.0,0,1.2537323236465454,10,0.0,2 +54010,16,1.0,0,2.6407532691955566,11,0.0,2 +54011,16,0.0,0,2.452744483947754,12,0.0,2 +54012,16,1.0,0,1.3737307786941528,13,1.0,2 +54013,16,1.0,0,1.4427298307418823,14,1.0,2 +54014,16,1.0,0,1.64972722530365,15,1.0,2 +54015,16,1.0,0,1.2797319889068604,16,1.0,2 +54016,16,1.0,0,1.366730809211731,17,1.0,2 +54017,16,1.0,0,1.1167322397232056,18,1.0,2 +54018,16,1.0,0,1.1507322788238525,19,1.0,2 +54019,16,1.0,0,1.3977304697036743,20,1.0,2 +54020,16,1.0,0,1.191732406616211,21,1.0,2 +54021,16,1.0,0,1.5357286930084229,22,1.0,2 +54022,16,1.0,0,1.1877323389053345,23,1.0,2 +54023,16,1.0,0,1.6067278385162354,24,1.0,2 +54024,16,1.0,0,1.457729697227478,25,1.0,2 +54025,16,0.0,0,1.571728229522705,26,0.0,2 +54026,16,1.0,0,1.3987303972244263,27,1.0,2 +54027,16,1.0,0,1.462729573249817,28,1.0,2 +54028,16,1.0,0,1.480729341506958,29,1.0,2 +54029,16,1.0,0,1.2347325086593628,30,1.0,2 +54030,16,1.0,0,1.3097316026687622,31,1.0,2 +54031,16,1.0,0,1.7297261953353882,32,0.0,2 +54032,16,0.0,0,1.3737307786941528,33,0.0,2 +54033,16,1.0,0,1.4427298307418823,34,1.0,2 +54034,16,0.0,0,1.4067302942276,35,0.0,2 +54035,16,1.0,0,1.4757294654846191,36,1.0,2 +54036,16,1.0,0,1.3327312469482422,37,1.0,2 +54037,16,1.0,0,1.6387274265289307,38,1.0,2 +54038,16,1.0,0,1.191732406616211,39,1.0,2 +54039,16,1.0,0,1.624727487564087,40,1.0,2 +54040,16,1.0,0,1.1807323694229126,41,0.0,2 +54041,16,0.0,0,1.1787323951721191,42,0.0,2 +54042,16,1.0,0,1.247732400894165,43,1.0,2 +54043,16,1.0,0,1.3857306241989136,44,1.0,2 +54044,16,1.0,0,1.3607308864593506,45,1.0,2 +54045,16,1.0,0,1.1617323160171509,46,1.0,2 +54046,16,1.0,0,1.7437260150909424,47,0.0,2 +54047,16,0.0,0,1.8427248001098633,48,0.0,2 +54048,16,1.0,0,2.1087284088134766,49,1.0,2 +54049,16,1.0,0,1.1467323303222656,50,1.0,2 +54050,16,1.0,0,1.2637321949005127,51,1.0,2 +54051,16,0.0,0,1.1407322883605957,52,0.0,2 +54052,16,1.0,0,1.4507297277450562,53,1.0,2 +54053,16,1.0,0,1.125732183456421,54,1.0,2 +54054,16,1.0,0,1.7497259378433228,55,1.0,2 +54055,16,1.0,0,1.1537322998046875,56,1.0,2 +54056,16,1.0,0,1.3097316026687622,57,1.0,2 +54057,16,1.0,0,1.8177250623703003,58,1.0,2 +54058,16,1.0,0,1.7707257270812988,59,1.0,2 +54059,16,1.0,0,1.218732476234436,60,1.0,2 +54060,16,1.0,0,1.2937318086624146,61,1.0,2 +54061,16,1.0,0,1.3807306289672852,62,1.0,2 +54062,16,1.0,0,1.4237301349639893,63,1.0,2 +54063,16,1.0,0,1.3837306499481201,64,1.0,2 +54064,16,0.0,0,1.8807241916656494,65,0.0,2 +54065,16,1.0,0,1.1597323417663574,66,1.0,2 +54066,16,1.0,0,1.4527297019958496,67,1.0,2 +54067,16,0.0,0,1.4447298049926758,68,0.0,2 +54068,16,1.0,0,1.2067323923110962,69,1.0,2 +54069,16,1.0,0,1.339731216430664,70,1.0,2 +54070,16,1.0,0,1.3507310152053833,71,1.0,2 +54071,16,0.0,0,1.2117323875427246,72,0.0,2 +54072,16,1.0,0,2.163731098175049,73,1.0,2 +54073,16,1.0,0,1.4477298259735107,74,1.0,2 +54074,16,1.0,0,1.4647295475006104,75,1.0,2 +54075,16,1.0,0,1.2787319421768188,76,1.0,2 +54076,16,1.0,0,1.4917292594909668,77,0.0,2 +54077,16,0.0,0,2.1047282218933105,78,0.0,2 +54078,16,0.0,0,2.48974609375,79,0.0,2 +54079,16,0.0,0,1.192732334136963,80,0.0,2 +54080,16,0.0,0,1.9287235736846924,81,0.0,2 +54081,16,1.0,0,2.191732406616211,82,1.0,2 +54082,16,0.0,0,1.1037322282791138,83,0.0,2 +54083,16,1.0,0,1.5397286415100098,84,1.0,2 +54084,16,1.0,0,1.391730546951294,85,1.0,2 +54085,16,1.0,0,1.3557310104370117,86,0.0,2 +54086,16,0.0,0,1.3827306032180786,87,0.0,2 +54087,16,0.0,0,1.5227289199829102,88,0.0,2 +54088,16,0.0,0,1.3137315511703491,89,0.0,2 +54089,16,0.0,0,1.1837323904037476,90,0.0,2 +54090,16,1.0,0,1.4157302379608154,91,1.0,2 +54091,16,1.0,0,1.361730933189392,92,1.0,2 +54092,16,1.0,0,1.711726427078247,93,1.0,2 +54093,16,1.0,0,1.5947279930114746,94,1.0,2 +54094,16,1.0,0,1.1007322072982788,95,1.0,2 +54095,16,1.0,0,1.668726921081543,96,1.0,2 +54096,16,1.0,0,1.2567322254180908,97,1.0,2 +54097,16,1.0,0,1.1357322931289673,98,1.0,2 +54098,16,1.0,0,1.2587321996688843,99,1.0,2 +54099,16,1.0,0,1.7847254276275635,100,1.0,2 +54100,16,1.0,0,1.3937305212020874,101,1.0,2 +54101,16,1.0,0,1.873724341392517,102,1.0,2 +54102,16,1.0,0,1.1837323904037476,103,1.0,2 +54103,16,1.0,0,1.269732117652893,104,0.0,2 +54104,16,0.0,0,1.091732144355774,105,0.0,2 +54105,16,1.0,0,1.2537323236465454,106,1.0,2 +54106,16,1.0,0,1.2237324714660645,107,0.0,2 +54107,16,0.0,0,1.274731993675232,108,0.0,2 +54108,16,0.0,0,1.7467260360717773,109,0.0,2 +54109,16,1.0,0,1.1977324485778809,110,1.0,2 +54110,16,0.0,0,1.5457285642623901,111,1.0,2 +54111,16,1.0,0,1.7887253761291504,112,1.0,2 +54112,16,0.0,0,1.2007323503494263,113,0.0,2 +54113,16,1.0,0,1.6577271223068237,114,0.0,2 +54114,16,0.0,0,1.219732403755188,115,0.0,2 +54115,16,0.0,0,1.781725525856018,116,0.0,2 +54116,16,0.0,0,1.9267237186431885,117,0.0,2 +54117,16,1.0,0,1.9187238216400146,118,1.0,2 +54118,16,1.0,0,1.575728178024292,119,1.0,2 +54119,16,1.0,0,1.2577322721481323,120,0.0,2 +54120,16,0.0,0,1.1567323207855225,121,0.0,2 +54121,16,1.0,0,1.6047277450561523,122,1.0,2 +54122,16,1.0,0,1.3287312984466553,123,1.0,2 +54123,16,0.0,0,1.344731092453003,124,0.0,2 +54124,16,1.0,0,1.2807319164276123,125,1.0,2 +54125,16,0.0,0,1.151732325553894,126,0.0,2 +54126,16,1.0,0,1.2577322721481323,127,1.0,2 +54127,16,1.0,0,1.6257275342941284,128,1.0,2 +54128,16,1.0,0,1.5227289199829102,129,0.0,2 +54129,16,0.0,0,1.7437260150909424,130,0.0,2 +54130,16,0.0,0,1.2357324361801147,131,0.0,2 +54131,16,1.0,0,1.432729959487915,132,1.0,2 +54132,16,1.0,0,1.2297325134277344,133,1.0,2 +54133,16,1.0,0,1.247732400894165,134,1.0,2 +54134,16,1.0,0,1.5427286624908447,135,1.0,2 +54135,16,1.0,0,1.409730315208435,136,1.0,2 +54136,16,1.0,0,1.436729907989502,137,0.0,2 +54137,16,0.0,0,1.4677295684814453,138,0.0,2 +54138,16,1.0,0,1.674726963043213,139,0.0,2 +54139,16,1.0,0,1.3717308044433594,140,1.0,2 +54140,16,0.0,0,1.3757307529449463,141,0.0,2 +54141,16,1.0,0,1.4197301864624023,142,1.0,2 +54142,16,1.0,0,1.2007323503494263,143,1.0,2 +54143,16,1.0,0,1.5367286205291748,144,1.0,2 +54144,16,1.0,0,1.1747323274612427,145,1.0,2 +54145,16,1.0,0,1.1937323808670044,146,1.0,2 +54146,16,1.0,0,1.2657321691513062,147,1.0,2 +54147,16,1.0,0,1.2597322463989258,148,1.0,2 +54148,16,1.0,0,1.8937240839004517,149,1.0,2 +54149,16,0.0,0,1.29673171043396,150,0.0,2 +54150,16,1.0,0,1.266732096672058,151,1.0,2 +54151,16,1.0,0,1.2307324409484863,152,1.0,2 +54152,16,1.0,0,2.281736373901367,153,1.0,2 +54153,16,1.0,0,1.4757294654846191,154,1.0,2 +54154,16,1.0,0,1.1667323112487793,155,1.0,2 +54155,16,1.0,0,1.2237324714660645,156,1.0,2 +54156,16,0.0,0,1.2117323875427246,157,0.0,2 +54157,16,1.0,0,1.7577258348464966,158,0.0,2 +54158,16,1.0,0,1.7497259378433228,159,1.0,2 +54159,16,1.0,0,1.6797268390655518,160,0.0,2 +54160,16,0.0,0,1.5917279720306396,161,0.0,2 +54161,16,1.0,0,1.829724907875061,162,1.0,2 +54162,16,1.0,0,1.527728796005249,163,0.0,2 +54163,16,0.0,0,1.7437260150909424,164,0.0,2 +54164,16,0.0,0,1.4267300367355347,165,1.0,2 +54165,16,0.0,0,1.45872962474823,166,0.0,2 +54166,16,0.0,0,1.5117290019989014,167,0.0,2 +54167,16,1.0,0,1.833724856376648,168,1.0,2 +54168,16,1.0,0,1.4157302379608154,169,1.0,2 +54169,16,1.0,0,1.2457324266433716,170,1.0,2 +54170,16,1.0,0,1.3827306032180786,171,0.0,2 +54171,16,0.0,0,2.1117286682128906,172,0.0,2 +54172,16,1.0,0,1.6547272205352783,173,1.0,2 +54173,16,1.0,0,1.2977317571640015,174,1.0,2 +54174,16,1.0,0,1.4717295169830322,175,1.0,2 +54175,16,0.0,0,1.1977324485778809,176,0.0,2 +54176,16,1.0,0,1.462729573249817,177,1.0,2 +54177,16,1.0,0,1.3947304487228394,178,1.0,2 +54178,16,1.0,0,1.3017317056655884,179,1.0,2 +54179,16,1.0,0,1.3027316331863403,180,1.0,2 +54180,16,1.0,0,1.9367234706878662,181,1.0,2 +54181,16,1.0,0,1.3727307319641113,182,1.0,2 +54182,16,1.0,0,1.6907267570495605,183,1.0,2 +54183,16,1.0,0,1.2937318086624146,184,1.0,2 +54184,16,0.0,0,1.3997304439544678,185,0.0,2 +54185,16,1.0,0,1.5117290019989014,186,1.0,2 +54186,16,1.0,0,1.6377273797988892,187,1.0,2 +54187,16,1.0,0,1.4217301607131958,188,1.0,2 +54188,16,1.0,0,1.2077324390411377,189,1.0,2 +54189,16,1.0,0,1.624727487564087,190,1.0,2 +54190,16,1.0,0,1.2047324180603027,191,0.0,2 +54191,16,0.0,0,2.0927276611328125,192,0.0,2 +54192,16,0.0,0,1.2377324104309082,193,0.0,2 +54193,16,0.0,0,1.5467286109924316,194,1.0,2 +54194,16,0.0,0,1.185732364654541,195,0.0,2 +54195,16,0.0,0,1.3547309637069702,196,0.0,2 +54196,16,1.0,0,1.3587309122085571,197,1.0,2 +54197,16,1.0,0,1.3587309122085571,198,1.0,2 +54198,16,1.0,0,1.3737307786941528,199,1.0,2 +54199,16,1.0,0,1.3127315044403076,200,1.0,2 +54200,16,1.0,0,1.5667283535003662,201,1.0,2 +54201,16,1.0,0,1.716726303100586,202,1.0,2 +54202,16,1.0,0,1.5487284660339355,203,1.0,2 +54203,16,1.0,0,1.8917241096496582,204,1.0,2 +54204,16,0.0,0,1.192732334136963,205,0.0,2 +54205,16,1.0,0,1.299731731414795,206,1.0,2 +54206,16,1.0,0,1.2027324438095093,207,1.0,2 +54207,16,1.0,0,1.3787306547164917,208,0.0,2 +54208,16,1.0,0,1.3357312679290771,209,0.0,2 +54209,16,0.0,0,1.9707231521606445,210,0.0,2 +54210,16,0.0,0,2.001723289489746,211,0.0,2 +54211,16,1.0,0,1.4007303714752197,212,1.0,2 +54212,16,1.0,0,1.2857319116592407,213,1.0,2 +54213,16,0.0,0,1.339731216430664,214,0.0,2 +54214,16,1.0,0,1.3507310152053833,215,1.0,2 +54215,16,1.0,0,1.1437323093414307,216,0.0,2 +54216,16,1.0,0,1.2077324390411377,217,1.0,2 +54217,16,1.0,0,1.3867305517196655,218,1.0,2 +54218,16,1.0,0,1.8427248001098633,219,1.0,2 +54219,16,1.0,0,1.181732416152954,220,1.0,2 +54220,16,1.0,0,1.5197288990020752,221,1.0,2 +54221,16,1.0,0,1.4967291355133057,222,1.0,2 +54222,16,1.0,0,1.6297274827957153,223,1.0,2 +54223,16,1.0,0,1.666727066040039,224,1.0,2 +54224,16,1.0,0,1.462729573249817,225,1.0,2 +54225,16,1.0,0,1.8447246551513672,226,1.0,2 +54226,16,1.0,0,2.000723361968994,227,1.0,2 +54227,16,1.0,0,1.3137315511703491,228,1.0,2 +54228,16,1.0,0,1.5967278480529785,229,1.0,2 +54229,16,1.0,0,1.3867305517196655,230,0.0,2 +54230,16,0.0,0,2.207733154296875,231,0.0,2 +54231,16,0.0,0,1.2297325134277344,232,0.0,2 +54232,16,1.0,0,1.3987303972244263,233,0.0,2 +54233,16,1.0,0,1.7657257318496704,234,1.0,2 +54234,16,1.0,0,1.4987292289733887,235,1.0,2 +54235,16,1.0,0,1.4757294654846191,236,1.0,2 +54236,16,1.0,0,1.4287300109863281,237,1.0,2 +54237,16,0.0,0,1.3237314224243164,238,0.0,2 +54238,16,1.0,0,1.3077316284179688,239,1.0,2 +54239,16,1.0,0,2.3117380142211914,240,0.0,2 +54240,16,0.0,0,1.3067315816879272,241,0.0,2 +54241,16,0.0,0,1.1137322187423706,242,0.0,2 +54242,16,0.0,0,1.336731195449829,243,0.0,2 +54243,16,1.0,0,1.43572998046875,244,1.0,2 +54244,16,1.0,0,2.007723808288574,245,1.0,2 +54245,16,1.0,0,2.6147520542144775,246,1.0,2 +54246,16,1.0,0,1.1747323274612427,247,1.0,2 +54247,16,1.0,0,1.1717323064804077,248,1.0,2 +54248,16,1.0,0,1.4387298822402954,249,1.0,2 +54249,16,1.0,0,1.4517297744750977,250,0.0,2 +54250,16,0.0,0,1.8427248001098633,251,0.0,2 +54251,16,1.0,0,1.2347325086593628,252,0.0,2 +54252,16,0.0,0,2.237734317779541,253,0.0,2 +54253,16,1.0,0,1.5737282037734985,254,1.0,2 +54254,16,1.0,0,1.4007303714752197,255,1.0,2 +54255,16,0.0,0,1.1957323551177979,256,0.0,2 +54256,16,1.0,0,1.5067291259765625,257,1.0,2 +54257,16,1.0,0,1.3607308864593506,258,0.0,2 +54258,16,1.0,0,2.005723476409912,259,1.0,2 +54259,16,1.0,0,1.9767229557037354,260,1.0,2 +54260,16,1.0,0,1.5207288265228271,261,0.0,2 +54261,16,0.0,0,1.252732276916504,262,0.0,2 +54262,16,1.0,0,1.4207301139831543,263,1.0,2 +54263,16,1.0,0,1.5667283535003662,264,0.0,2 +54264,16,1.0,0,1.4167301654815674,265,1.0,2 +54265,16,1.0,0,1.509729027748108,266,1.0,2 +54266,16,1.0,0,1.3647308349609375,267,1.0,2 +54267,16,1.0,0,1.3067315816879272,268,1.0,2 +54268,16,1.0,0,1.670727014541626,269,1.0,2 +54269,16,1.0,0,1.391730546951294,270,1.0,2 +54270,16,1.0,0,1.1317322254180908,271,1.0,2 +54271,16,1.0,0,1.369730830192566,272,1.0,2 +54272,16,1.0,0,1.5197288990020752,273,1.0,2 +54273,16,1.0,0,1.2597322463989258,274,1.0,2 +54274,16,1.0,0,1.191732406616211,275,1.0,2 +54275,16,1.0,0,1.2057323455810547,276,0.0,2 +54276,16,1.0,0,1.2347325086593628,277,1.0,2 +54277,16,1.0,0,1.6727268695831299,278,1.0,2 +54278,16,1.0,0,1.317731499671936,279,1.0,2 +54279,16,1.0,0,1.2797319889068604,280,1.0,2 +54280,16,1.0,0,1.718726396560669,281,1.0,2 +54281,16,1.0,0,1.2497323751449585,282,1.0,2 +54282,16,1.0,0,1.5197288990020752,283,1.0,2 +54283,16,1.0,0,1.7287261486053467,284,1.0,2 +54284,16,1.0,0,1.1067322492599487,285,1.0,2 +54285,16,1.0,0,1.269732117652893,286,1.0,2 +54286,16,1.0,0,1.4777294397354126,287,1.0,2 +54287,16,1.0,0,1.247732400894165,288,1.0,2 +54288,16,1.0,0,1.6517271995544434,289,1.0,2 +54289,16,1.0,0,1.3727307319641113,290,0.0,2 +54290,16,0.0,0,2.0967278480529785,291,0.0,2 +54291,16,0.0,0,1.2717320919036865,292,0.0,2 +54292,16,1.0,0,1.8427248001098633,293,1.0,2 +54293,16,1.0,0,1.6917266845703125,294,1.0,2 +54294,16,1.0,0,1.1367322206497192,295,1.0,2 +54295,16,1.0,0,1.6207275390625,296,1.0,2 +54296,16,1.0,0,1.218732476234436,297,1.0,2 +54297,16,1.0,0,1.8227250576019287,298,1.0,2 +54298,16,1.0,0,1.9847228527069092,299,1.0,2 +54299,16,1.0,0,1.6137276887893677,300,0.0,2 +54300,16,1.0,0,2.1277294158935547,301,1.0,2 +54301,16,1.0,0,1.6077277660369873,302,1.0,2 +54302,16,1.0,0,1.225732445716858,303,1.0,2 +54303,16,0.0,0,1.4347299337387085,304,1.0,2 +54304,16,1.0,0,1.9077239036560059,305,1.0,2 +54305,16,1.0,0,1.6427273750305176,306,1.0,2 +54306,16,1.0,0,2.016724109649658,307,1.0,2 +54307,16,0.0,0,1.2557322978973389,308,0.0,2 +54308,16,1.0,0,1.3537310361862183,309,1.0,2 +54309,16,0.0,0,1.391730546951294,310,0.0,2 +54310,16,1.0,0,1.1317322254180908,311,1.0,2 +54311,16,1.0,0,1.9337235689163208,312,1.0,2 +54312,16,0.0,0,1.2607321739196777,313,0.0,2 +54313,16,1.0,0,1.318731427192688,314,1.0,2 +54314,16,1.0,0,1.881724238395691,315,1.0,2 +54315,16,1.0,0,1.5597283840179443,316,1.0,2 +54316,16,1.0,0,1.2677321434020996,317,1.0,2 +54317,16,1.0,0,1.6877267360687256,318,1.0,2 +54318,16,1.0,0,1.5627284049987793,319,1.0,2 +54319,16,1.0,0,1.1447322368621826,320,1.0,2 +54320,16,1.0,0,1.9577232599258423,321,1.0,2 +54321,16,1.0,0,1.3137315511703491,322,1.0,2 +54322,16,1.0,0,1.3507310152053833,323,1.0,2 +54323,16,1.0,0,1.2417324781417847,324,1.0,2 +54324,16,1.0,0,1.1497323513031006,325,1.0,2 +54325,16,1.0,0,1.247732400894165,326,1.0,2 +54326,16,1.0,0,1.1937323808670044,327,1.0,2 +54327,16,1.0,0,1.2307324409484863,328,0.0,2 +54328,16,1.0,0,1.3987303972244263,329,1.0,2 +54329,16,1.0,0,1.89872407913208,330,1.0,2 +54330,16,1.0,0,1.2417324781417847,331,0.0,2 +54331,16,0.0,0,1.252732276916504,332,0.0,2 +54332,16,1.0,0,1.4417299032211304,333,1.0,2 +54333,16,1.0,0,1.251732349395752,334,1.0,2 +54334,16,1.0,0,1.248732328414917,335,1.0,2 +54335,16,1.0,0,1.314731478691101,336,1.0,2 +54336,16,0.0,0,1.4887292385101318,337,0.0,2 +54337,16,1.0,0,1.6007277965545654,338,1.0,2 +54338,16,1.0,0,1.2067323923110962,339,1.0,2 +54339,16,1.0,0,1.7477259635925293,340,0.0,2 +54340,16,0.0,0,1.4217301607131958,341,0.0,2 +54341,16,0.0,0,2.5597496032714844,342,0.0,2 +54342,16,0.0,0,1.7497259378433228,343,0.0,2 +54343,16,0.0,0,2.23073410987854,344,0.0,2 +54344,16,0.0,0,1.3707307577133179,345,0.0,2 +54345,16,0.0,0,1.9077239036560059,346,0.0,2 +54346,16,1.0,0,2.450744390487671,347,1.0,2 +54347,16,1.0,0,1.1907323598861694,348,1.0,2 +54348,16,1.0,0,1.8727242946624756,349,1.0,2 +54349,16,1.0,0,1.2457324266433716,350,1.0,2 +54350,16,1.0,0,1.45872962474823,351,0.0,2 +54351,16,1.0,0,1.431730031967163,352,1.0,2 +54352,16,1.0,0,1.2387324571609497,353,1.0,2 +54353,16,1.0,0,1.252732276916504,354,1.0,2 +54354,16,1.0,0,1.764725685119629,355,1.0,2 +54355,16,1.0,0,1.4127302169799805,356,1.0,2 +54356,16,0.0,0,1.4287300109863281,357,0.0,2 +54357,16,1.0,0,1.3297313451766968,358,1.0,2 +54358,16,1.0,0,1.1607322692871094,359,1.0,2 +54359,16,1.0,0,1.3637309074401855,360,1.0,2 +54360,16,1.0,0,1.369730830192566,361,1.0,2 +54361,16,1.0,0,1.4757294654846191,362,1.0,2 +54362,16,1.0,0,1.3467310667037964,363,1.0,2 +54363,16,1.0,0,1.5957279205322266,364,1.0,2 +54364,16,1.0,0,1.593727946281433,365,1.0,2 +54365,16,1.0,0,1.2307324409484863,366,1.0,2 +54366,16,1.0,0,1.3747307062149048,367,1.0,2 +54367,16,1.0,0,1.1617323160171509,368,1.0,2 +54368,16,1.0,0,1.4177302122116089,369,1.0,2 +54369,16,1.0,0,1.1777323484420776,370,1.0,2 +54370,16,1.0,0,1.5077290534973145,371,1.0,2 +54371,16,1.0,0,1.4417299032211304,372,1.0,2 +54372,16,1.0,0,1.215732455253601,373,1.0,2 +54373,16,1.0,0,1.154732346534729,374,1.0,2 +54374,16,1.0,0,1.1507322788238525,375,1.0,2 +54375,16,1.0,0,1.7017265558242798,376,1.0,2 +54376,16,1.0,0,1.2407324314117432,377,0.0,2 +54377,16,1.0,0,1.4907293319702148,378,1.0,2 +54378,16,1.0,0,1.7947254180908203,379,1.0,2 +54379,16,1.0,0,1.1427322626113892,380,1.0,2 +54380,16,1.0,0,1.5417286157608032,381,1.0,2 +54381,16,1.0,0,1.2177324295043945,382,1.0,2 +54382,16,1.0,0,1.7387261390686035,383,0.0,2 +54383,16,1.0,0,1.7907254695892334,384,1.0,2 +54384,16,1.0,0,1.3747307062149048,385,1.0,2 +54385,16,1.0,0,1.6037278175354004,386,1.0,2 +54386,16,1.0,0,1.2177324295043945,387,1.0,2 +54387,16,1.0,0,1.9377235174179077,388,1.0,2 +54388,16,1.0,0,1.59772789478302,389,1.0,2 +54389,16,1.0,0,1.572728157043457,390,1.0,2 +54390,16,1.0,0,1.476729393005371,391,1.0,2 +54391,16,1.0,0,1.3197314739227295,392,1.0,2 +54392,16,1.0,0,1.3267313241958618,393,1.0,2 +54393,16,1.0,0,1.2407324314117432,394,0.0,2 +54394,16,0.0,0,1.391730546951294,395,1.0,2 +54395,16,0.0,0,1.1877323389053345,396,0.0,2 +54396,16,1.0,0,1.6957266330718994,397,0.0,2 +54397,16,0.0,0,1.6887266635894775,398,0.0,2 +54398,16,1.0,0,1.9277236461639404,399,1.0,2 +54399,16,1.0,0,1.1937323808670044,400,1.0,2 +54400,16,1.0,0,1.219732403755188,401,1.0,2 +54401,16,1.0,0,1.6987266540527344,402,1.0,2 +54402,16,1.0,0,1.579728126525879,403,1.0,2 +54403,16,1.0,0,1.4007303714752197,404,1.0,2 +54404,16,1.0,0,1.4677295684814453,405,1.0,2 +54405,16,1.0,0,1.1317322254180908,406,1.0,2 +54406,16,1.0,0,1.124732255935669,407,1.0,2 +54407,16,1.0,0,1.6557271480560303,408,1.0,2 +54408,16,1.0,0,1.3237314224243164,409,1.0,2 +54409,16,0.0,0,1.1687322854995728,410,0.0,2 +54410,16,1.0,0,1.664726972579956,411,1.0,2 +54411,16,1.0,0,1.189732313156128,412,1.0,2 +54412,16,1.0,0,1.158732295036316,413,1.0,2 +54413,16,1.0,0,1.321731448173523,414,1.0,2 +54414,16,1.0,0,1.215732455253601,415,1.0,2 +54415,16,1.0,0,1.189732313156128,416,0.0,2 +54416,16,1.0,0,2.0197243690490723,417,0.0,2 +54417,16,0.0,0,1.2637321949005127,418,0.0,2 +54418,16,1.0,0,1.3607308864593506,419,1.0,2 +54419,16,1.0,0,1.3647308349609375,420,1.0,2 +54420,16,1.0,0,1.2307324409484863,421,0.0,2 +54421,16,0.0,0,1.8717243671417236,422,1.0,2 +54422,16,0.0,0,1.6097277402877808,423,0.0,2 +54423,16,0.0,0,1.4047303199768066,424,0.0,2 +54424,16,0.0,0,2.0767269134521484,425,1.0,2 +54425,16,0.0,0,1.1137322187423706,426,1.0,2 +54426,16,1.0,0,2.0837273597717285,427,1.0,2 +54427,16,0.0,0,1.8477246761322021,428,0.0,2 +54428,16,0.0,0,1.266732096672058,429,0.0,2 +54429,16,1.0,0,1.5077290534973145,430,1.0,2 +54430,16,1.0,0,1.2537323236465454,431,1.0,2 +54431,16,1.0,0,1.4757294654846191,432,1.0,2 +54432,16,0.0,0,1.0737321376800537,433,0.0,2 +54433,16,1.0,0,1.4987292289733887,434,1.0,2 +54434,16,1.0,0,1.4447298049926758,435,1.0,2 +54435,16,0.0,0,1.3467310667037964,436,0.0,2 +54436,16,1.0,0,1.4177302122116089,437,1.0,2 +54437,16,0.0,0,1.5507285594940186,438,0.0,2 +54438,16,1.0,0,1.2677321434020996,439,1.0,2 +54439,16,1.0,0,1.5157289505004883,440,1.0,2 +54440,16,1.0,0,1.2787319421768188,441,1.0,2 +54441,16,1.0,0,1.2877318859100342,442,1.0,2 +54442,16,1.0,0,2.0437254905700684,443,1.0,2 +54443,16,1.0,0,1.314731478691101,444,1.0,2 +54444,16,1.0,0,1.3737307786941528,445,1.0,2 +54445,16,1.0,0,1.5227289199829102,446,1.0,2 +54446,16,1.0,0,1.3047316074371338,447,0.0,2 +54447,16,1.0,0,1.3817306756973267,448,1.0,2 +54448,16,1.0,0,1.666727066040039,449,1.0,2 +54449,16,1.0,0,1.4987292289733887,450,1.0,2 +54450,16,1.0,0,1.5177289247512817,451,1.0,2 +54451,16,1.0,0,1.9317235946655273,452,1.0,2 +54452,16,1.0,0,1.361730933189392,453,1.0,2 +54453,16,1.0,0,1.6887266635894775,454,1.0,2 +54454,16,1.0,0,1.4917292594909668,455,1.0,2 +54455,16,1.0,0,1.6107277870178223,456,1.0,2 +54456,16,1.0,0,1.252732276916504,457,1.0,2 +54457,16,1.0,0,1.850724697113037,458,1.0,2 +54458,16,1.0,0,1.2427324056625366,459,1.0,2 +54459,16,1.0,0,1.225732445716858,460,1.0,2 +54460,16,0.0,0,1.5187289714813232,461,0.0,2 +54461,16,1.0,0,1.601727843284607,462,1.0,2 +54462,16,1.0,0,1.3947304487228394,463,1.0,2 +54463,16,1.0,0,1.8457247018814087,464,1.0,2 +54464,16,1.0,0,1.6587271690368652,465,1.0,2 +54465,16,1.0,0,2.3617401123046875,466,1.0,2 +54466,16,1.0,0,1.462729573249817,467,0.0,2 +54467,16,1.0,0,1.670727014541626,468,1.0,2 +54468,16,1.0,0,1.3737307786941528,469,1.0,2 +54469,16,1.0,0,1.5687282085418701,470,1.0,2 +54470,16,1.0,0,1.2797319889068604,471,1.0,2 +54471,16,1.0,0,1.1437323093414307,472,1.0,2 +54472,16,1.0,0,1.1997324228286743,473,1.0,2 +54473,16,1.0,0,1.192732334136963,474,1.0,2 +54474,16,1.0,0,1.758725881576538,475,0.0,2 +54475,16,1.0,0,1.943723440170288,476,0.0,2 +54476,16,0.0,0,2.258735418319702,477,0.0,2 +54477,16,1.0,0,2.3567399978637695,478,1.0,2 +54478,16,1.0,0,1.2097324132919312,479,1.0,2 +54479,16,1.0,0,1.1627323627471924,480,1.0,2 +54480,16,1.0,0,1.432729959487915,481,1.0,2 +54481,16,1.0,0,1.4887292385101318,482,1.0,2 +54482,16,1.0,0,1.3427311182022095,483,1.0,2 +54483,16,1.0,0,1.6617270708084106,484,1.0,2 +54484,16,1.0,0,1.5917279720306396,485,1.0,2 +54485,16,1.0,0,1.6347274780273438,486,1.0,2 +54486,16,1.0,0,1.251732349395752,487,0.0,2 +54487,16,0.0,0,2.0997281074523926,488,0.0,2 +54488,16,1.0,0,1.4197301864624023,489,0.0,2 +54489,16,0.0,0,1.3167314529418945,490,0.0,2 +54490,16,0.0,0,1.5377286672592163,491,1.0,2 +54491,16,0.0,0,1.339731216430664,492,0.0,2 +54492,16,0.0,0,1.182732343673706,493,1.0,2 +54493,16,0.0,0,1.1877323389053345,494,0.0,2 +54494,16,1.0,0,1.4207301139831543,495,1.0,2 +54495,16,1.0,0,1.192732334136963,496,1.0,2 +54496,16,1.0,0,1.5127289295196533,497,1.0,2 +54497,16,1.0,0,1.4937292337417603,498,1.0,2 +54498,16,1.0,0,1.3357312679290771,499,1.0,2 +54499,16,0.0,0,1.2287324666976929,500,0.0,2 +54500,16,1.0,1,1.7747256755828857,1,0.0,2 +54501,16,0.0,1,1.6327273845672607,2,1.0,2 +54502,16,0.0,1,1.2277324199676514,3,0.0,2 +54503,16,0.0,1,1.8257249593734741,4,0.0,2 +54504,16,0.0,1,2.482745885848999,5,1.0,2 +54505,16,0.0,1,1.2207324504852295,6,1.0,2 +54506,16,0.0,1,1.3377312421798706,7,0.0,2 +54507,16,0.0,1,1.2597322463989258,8,1.0,2 +54508,16,0.0,1,1.3507310152053833,9,0.0,2 +54509,16,0.0,1,2.3077378273010254,10,0.0,2 +54510,16,0.0,1,1.5257288217544556,11,0.0,2 +54511,16,1.0,1,2.5687499046325684,12,1.0,2 +54512,16,1.0,1,1.5257288217544556,13,0.0,2 +54513,16,0.0,1,2.000723361968994,14,0.0,2 +54514,16,0.0,1,1.4647295475006104,15,0.0,2 +54515,16,1.0,1,1.3337312936782837,16,1.0,2 +54516,16,1.0,1,1.7757256031036377,17,1.0,2 +54517,16,0.0,1,1.339731216430664,18,0.0,2 +54518,16,1.0,1,1.4527297019958496,19,1.0,2 +54519,16,1.0,1,1.1987323760986328,20,1.0,2 +54520,16,1.0,1,1.1137322187423706,21,1.0,2 +54521,16,1.0,1,1.5077290534973145,22,0.0,2 +54522,16,0.0,1,1.6277275085449219,23,1.0,2 +54523,16,0.0,1,1.2607321739196777,24,0.0,2 +54524,16,1.0,1,1.848724603652954,25,1.0,2 +54525,16,1.0,1,2.3157382011413574,26,1.0,2 +54526,16,1.0,1,1.3597309589385986,27,0.0,2 +54527,16,1.0,1,1.299731731414795,28,1.0,2 +54528,16,0.0,1,1.2577322721481323,29,0.0,2 +54529,16,1.0,1,1.7387261390686035,30,0.0,2 +54530,16,1.0,1,1.5867280960083008,31,1.0,2 +54531,16,1.0,1,1.4697295427322388,32,1.0,2 +54532,16,1.0,1,1.5337287187576294,33,0.0,2 +54533,16,1.0,1,1.7557258605957031,34,1.0,2 +54534,16,1.0,1,1.3557310104370117,35,1.0,2 +54535,16,1.0,1,1.3997304439544678,36,1.0,2 +54536,16,1.0,1,1.4037303924560547,37,1.0,2 +54537,16,1.0,1,1.4667295217514038,38,0.0,2 +54538,16,1.0,1,1.291731834411621,39,1.0,2 +54539,16,1.0,1,1.3777307271957397,40,1.0,2 +54540,16,1.0,1,1.2727320194244385,41,1.0,2 +54541,16,1.0,1,2.233734130859375,42,0.0,2 +54542,16,0.0,1,2.5677499771118164,43,0.0,2 +54543,16,0.0,1,1.1647323369979858,44,0.0,2 +54544,16,1.0,1,2.724757194519043,45,1.0,2 +54545,16,1.0,1,1.6737269163131714,46,1.0,2 +54546,16,1.0,1,1.3067315816879272,47,0.0,2 +54547,16,1.0,1,1.4937292337417603,48,0.0,2 +54548,16,1.0,1,1.4497298002243042,49,1.0,2 +54549,16,1.0,1,1.6347274780273438,50,1.0,2 +54550,16,1.0,1,1.4487297534942627,51,1.0,2 +54551,16,1.0,1,1.344731092453003,52,1.0,2 +54552,16,1.0,1,1.1747323274612427,53,1.0,2 +54553,16,1.0,1,1.2717320919036865,54,1.0,2 +54554,16,1.0,1,1.2807319164276123,55,0.0,2 +54555,16,1.0,1,1.4457298517227173,56,1.0,2 +54556,16,1.0,1,1.218732476234436,57,1.0,2 +54557,16,1.0,1,1.2727320194244385,58,1.0,2 +54558,16,1.0,1,1.2657321691513062,59,1.0,2 +54559,16,1.0,1,1.436729907989502,60,1.0,2 +54560,16,1.0,1,1.5737282037734985,61,1.0,2 +54561,16,1.0,1,1.5687282085418701,62,1.0,2 +54562,16,1.0,1,1.344731092453003,63,1.0,2 +54563,16,1.0,1,1.2577322721481323,64,1.0,2 +54564,16,1.0,1,1.155732274055481,65,1.0,2 +54565,16,1.0,1,1.4877293109893799,66,1.0,2 +54566,16,1.0,1,1.192732334136963,67,1.0,2 +54567,16,1.0,1,1.4757294654846191,68,1.0,2 +54568,16,1.0,1,1.484729290008545,69,1.0,2 +54569,16,1.0,1,1.616727590560913,70,1.0,2 +54570,16,1.0,1,1.2377324104309082,71,1.0,2 +54571,16,1.0,1,1.6817268133163452,72,1.0,2 +54572,16,0.0,1,1.7317261695861816,73,0.0,2 +54573,16,0.0,1,1.179732322692871,74,1.0,2 +54574,16,1.0,1,1.5427286624908447,75,1.0,2 +54575,16,0.0,1,1.8727242946624756,76,0.0,2 +54576,16,1.0,1,1.8847241401672363,77,1.0,2 +54577,16,1.0,1,1.3637309074401855,78,0.0,2 +54578,16,1.0,1,1.5577284097671509,79,1.0,2 +54579,16,1.0,1,1.624727487564087,80,1.0,2 +54580,16,1.0,1,1.2857319116592407,81,1.0,2 +54581,16,1.0,1,1.4427298307418823,82,1.0,2 +54582,16,1.0,1,1.3417311906814575,83,1.0,2 +54583,16,1.0,1,1.5597283840179443,84,0.0,2 +54584,16,1.0,1,1.295731782913208,85,0.0,2 +54585,16,0.0,1,1.1997324228286743,86,0.0,2 +54586,16,0.0,1,1.3757307529449463,87,1.0,2 +54587,16,1.0,1,1.2817319631576538,88,0.0,2 +54588,16,0.0,1,1.194732427597046,89,0.0,2 +54589,16,0.0,1,1.321731448173523,90,0.0,2 +54590,16,0.0,1,1.6977266073226929,91,0.0,2 +54591,16,1.0,1,1.716726303100586,92,0.0,2 +54592,16,0.0,1,1.3527309894561768,93,0.0,2 +54593,16,1.0,1,1.5117290019989014,94,0.0,2 +54594,16,0.0,1,1.5677282810211182,95,0.0,2 +54595,16,0.0,1,1.1967324018478394,96,0.0,2 +54596,16,0.0,1,1.3637309074401855,97,0.0,2 +54597,16,0.0,1,1.0857322216033936,98,0.0,2 +54598,16,1.0,1,1.833724856376648,99,1.0,2 +54599,16,1.0,1,1.9417234659194946,100,1.0,2 +54600,16,1.0,1,1.9087238311767578,101,0.0,2 +54601,16,0.0,1,1.6007277965545654,102,0.0,2 +54602,16,0.0,1,1.2817319631576538,103,0.0,2 +54603,16,1.0,1,1.715726375579834,104,1.0,2 +54604,16,1.0,1,1.2547322511672974,105,1.0,2 +54605,16,1.0,1,1.5587284564971924,106,1.0,2 +54606,16,1.0,1,1.3987303972244263,107,0.0,2 +54607,16,0.0,1,1.6957266330718994,108,0.0,2 +54608,16,1.0,1,1.1747323274612427,109,1.0,2 +54609,16,1.0,1,1.4607295989990234,110,1.0,2 +54610,16,1.0,1,1.4757294654846191,111,0.0,2 +54611,16,1.0,1,1.6817268133163452,112,1.0,2 +54612,16,1.0,1,1.3897305727005005,113,0.0,2 +54613,16,1.0,1,1.322731375694275,114,1.0,2 +54614,16,1.0,1,1.155732274055481,115,0.0,2 +54615,16,0.0,1,1.2587321996688843,116,0.0,2 +54616,16,1.0,1,1.189732313156128,117,0.0,2 +54617,16,1.0,1,2.0617260932922363,118,1.0,2 +54618,16,1.0,1,1.6277275085449219,119,1.0,2 +54619,16,1.0,1,1.1807323694229126,120,1.0,2 +54620,16,1.0,1,1.3047316074371338,121,1.0,2 +54621,16,1.0,1,1.5877280235290527,122,0.0,2 +54622,16,0.0,1,1.252732276916504,123,1.0,2 +54623,16,0.0,1,1.7697256803512573,124,1.0,2 +54624,16,1.0,1,1.251732349395752,125,1.0,2 +54625,16,0.0,1,1.1687322854995728,126,0.0,2 +54626,16,1.0,1,1.43572998046875,127,1.0,2 +54627,16,1.0,1,1.24473237991333,128,1.0,2 +54628,16,1.0,1,1.1647323369979858,129,1.0,2 +54629,16,1.0,1,1.3777307271957397,130,1.0,2 +54630,16,1.0,1,2.0587260723114014,131,1.0,2 +54631,16,1.0,1,1.1167322397232056,132,1.0,2 +54632,16,1.0,1,1.1807323694229126,133,0.0,2 +54633,16,1.0,1,1.4187301397323608,134,0.0,2 +54634,16,0.0,1,1.7447259426116943,135,1.0,2 +54635,16,0.0,1,1.1237322092056274,136,1.0,2 +54636,16,0.0,1,1.2147324085235596,137,0.0,2 +54637,16,0.0,1,1.4377299547195435,138,0.0,2 +54638,16,1.0,1,1.8477246761322021,139,1.0,2 +54639,16,1.0,1,1.2577322721481323,140,1.0,2 +54640,16,1.0,1,1.4197301864624023,141,1.0,2 +54641,16,1.0,1,1.2207324504852295,142,1.0,2 +54642,16,1.0,1,1.1937323808670044,143,0.0,2 +54643,16,1.0,1,1.2177324295043945,144,0.0,2 +54644,16,1.0,1,1.192732334136963,145,1.0,2 +54645,16,1.0,1,1.2817319631576538,146,0.0,2 +54646,16,1.0,1,1.3117315769195557,147,1.0,2 +54647,16,1.0,1,1.9667232036590576,148,1.0,2 +54648,16,1.0,1,1.3767306804656982,149,0.0,2 +54649,16,0.0,1,1.454729676246643,150,0.0,2 +54650,16,1.0,1,1.737726092338562,151,1.0,2 +54651,16,1.0,1,1.2817319631576538,152,0.0,2 +54652,16,1.0,1,1.6867268085479736,153,0.0,2 +54653,16,0.0,1,1.6597270965576172,154,1.0,2 +54654,16,0.0,1,1.0867321491241455,155,0.0,2 +54655,16,0.0,1,1.854724645614624,156,0.0,2 +54656,16,0.0,1,1.4947292804718018,157,0.0,2 +54657,16,0.0,1,1.9527232646942139,158,0.0,2 +54658,16,0.0,1,1.3817306756973267,159,1.0,2 +54659,16,0.0,1,1.4967291355133057,160,1.0,2 +54660,16,0.0,1,1.1757323741912842,161,0.0,2 +54661,16,0.0,1,1.8537245988845825,162,1.0,2 +54662,16,0.0,1,1.0837321281433105,163,0.0,2 +54663,16,0.0,1,1.2787319421768188,164,0.0,2 +54664,16,0.0,1,1.8217250108718872,165,1.0,2 +54665,16,0.0,1,1.4987292289733887,166,1.0,2 +54666,16,0.0,1,1.3247313499450684,167,0.0,2 +54667,16,0.0,1,1.1047321557998657,168,0.0,2 +54668,16,1.0,1,1.9497233629226685,169,1.0,2 +54669,16,1.0,1,1.9117238521575928,170,1.0,2 +54670,16,1.0,1,1.6037278175354004,171,1.0,2 +54671,16,1.0,1,1.4257301092147827,172,1.0,2 +54672,16,1.0,1,1.6047277450561523,173,0.0,2 +54673,16,1.0,1,1.6327273845672607,174,1.0,2 +54674,16,1.0,1,1.4037303924560547,175,1.0,2 +54675,16,1.0,1,1.4567296504974365,176,0.0,2 +54676,16,1.0,1,1.6087276935577393,177,0.0,2 +54677,16,1.0,1,1.6567270755767822,178,1.0,2 +54678,16,1.0,1,1.6887266635894775,179,0.0,2 +54679,16,1.0,1,1.733726143836975,180,1.0,2 +54680,16,1.0,1,1.4027303457260132,181,1.0,2 +54681,16,1.0,1,1.1747323274612427,182,0.0,2 +54682,16,1.0,1,1.3597309589385986,183,1.0,2 +54683,16,1.0,1,1.2757320404052734,184,1.0,2 +54684,16,0.0,1,1.277732014656067,185,0.0,2 +54685,16,1.0,1,1.322731375694275,186,1.0,2 +54686,16,1.0,1,1.6327273845672607,187,0.0,2 +54687,16,0.0,1,2.1127285957336426,188,0.0,2 +54688,16,0.0,1,1.3957304954528809,189,0.0,2 +54689,16,1.0,1,1.855724573135376,190,1.0,2 +54690,16,1.0,1,1.219732403755188,191,1.0,2 +54691,16,1.0,1,1.457729697227478,192,1.0,2 +54692,16,1.0,1,1.4347299337387085,193,0.0,2 +54693,16,0.0,1,1.454729676246643,194,0.0,2 +54694,16,1.0,1,2.1107285022735596,195,1.0,2 +54695,16,0.0,1,1.851724624633789,196,0.0,2 +54696,16,1.0,1,1.5197288990020752,197,1.0,2 +54697,16,1.0,1,1.1497323513031006,198,1.0,2 +54698,16,1.0,1,1.6127276420593262,199,1.0,2 +54699,16,1.0,1,1.5517284870147705,200,1.0,2 +54700,16,0.0,1,1.4817293882369995,201,1.0,2 +54701,16,1.0,1,1.9187238216400146,202,1.0,2 +54702,16,0.0,1,1.5417286157608032,203,1.0,2 +54703,16,1.0,1,2.1497302055358887,204,1.0,2 +54704,16,1.0,1,1.8147251605987549,205,1.0,2 +54705,16,1.0,1,2.273736000061035,206,1.0,2 +54706,16,0.0,1,1.185732364654541,207,1.0,2 +54707,16,0.0,1,1.9367234706878662,208,0.0,2 +54708,16,1.0,1,2.0777268409729004,209,1.0,2 +54709,16,0.0,1,2.1657309532165527,210,0.0,2 +54710,16,1.0,1,1.8277249336242676,211,1.0,2 +54711,16,1.0,1,1.3087315559387207,212,1.0,2 +54712,16,1.0,1,1.2427324056625366,213,0.0,2 +54713,16,0.0,1,1.2547322511672974,214,0.0,2 +54714,16,0.0,1,1.5637283325195312,215,1.0,2 +54715,16,1.0,1,1.9747231006622314,216,1.0,2 +54716,16,1.0,1,1.925723671913147,217,1.0,2 +54717,16,1.0,1,1.117732286453247,218,0.0,2 +54718,16,0.0,1,1.1287322044372559,219,1.0,2 +54719,16,0.0,1,1.3247313499450684,220,1.0,2 +54720,16,0.0,1,1.3027316331863403,221,1.0,2 +54721,16,0.0,1,1.4637296199798584,222,1.0,2 +54722,16,0.0,1,1.6057277917861938,223,0.0,2 +54723,16,1.0,1,1.8097251653671265,224,1.0,2 +54724,16,1.0,1,1.148732304573059,225,1.0,2 +54725,16,1.0,1,1.4667295217514038,226,1.0,2 +54726,16,1.0,1,1.4567296504974365,227,1.0,2 +54727,16,1.0,1,1.270732045173645,228,0.0,2 +54728,16,1.0,1,1.3567309379577637,229,0.0,2 +54729,16,0.0,1,1.3737307786941528,230,0.0,2 +54730,16,1.0,1,1.2467323541641235,231,0.0,2 +54731,16,0.0,1,1.5087289810180664,232,0.0,2 +54732,16,1.0,1,1.2577322721481323,233,1.0,2 +54733,16,1.0,1,2.1287293434143066,234,1.0,2 +54734,16,1.0,1,1.873724341392517,235,1.0,2 +54735,16,1.0,1,1.6387274265289307,236,1.0,2 +54736,16,0.0,1,1.1027321815490723,237,0.0,2 +54737,16,1.0,1,1.2437324523925781,238,1.0,2 +54738,16,1.0,1,1.7367260456085205,239,1.0,2 +54739,16,1.0,1,1.1667323112487793,240,0.0,2 +54740,16,1.0,1,1.6287274360656738,241,1.0,2 +54741,16,1.0,1,1.4187301397323608,242,1.0,2 +54742,16,1.0,1,1.4417299032211304,243,1.0,2 +54743,16,1.0,1,1.1687322854995728,244,0.0,2 +54744,16,0.0,1,2.0687265396118164,245,0.0,2 +54745,16,1.0,1,2.0727267265319824,246,1.0,2 +54746,16,1.0,1,1.3427311182022095,247,1.0,2 +54747,16,1.0,1,2.002723455429077,248,1.0,2 +54748,16,1.0,1,1.7467260360717773,249,1.0,2 +54749,16,1.0,1,1.667726993560791,250,0.0,2 +54750,16,0.0,1,2.202732801437378,251,0.0,2 +54751,16,0.0,1,2.0117239952087402,252,0.0,2 +54752,16,1.0,1,1.2877318859100342,253,0.0,2 +54753,16,1.0,1,1.7507259845733643,254,1.0,2 +54754,16,1.0,1,1.576728105545044,255,1.0,2 +54755,16,1.0,1,1.414730191230774,256,1.0,2 +54756,16,1.0,1,1.6447272300720215,257,0.0,2 +54757,16,1.0,1,2.3787410259246826,258,1.0,2 +54758,16,1.0,1,1.2557322978973389,259,0.0,2 +54759,16,0.0,1,1.9377235174179077,260,0.0,2 +54760,16,0.0,1,1.3967304229736328,261,0.0,2 +54761,16,1.0,1,1.6917266845703125,262,1.0,2 +54762,16,1.0,1,1.2617322206497192,263,1.0,2 +54763,16,1.0,1,1.6107277870178223,264,1.0,2 +54764,16,1.0,1,1.340731143951416,265,1.0,2 +54765,16,0.0,1,1.4497298002243042,266,1.0,2 +54766,16,0.0,1,1.9977232217788696,267,0.0,2 +54767,16,1.0,1,1.2207324504852295,268,1.0,2 +54768,16,1.0,1,1.2207324504852295,269,1.0,2 +54769,16,1.0,1,1.5007290840148926,270,1.0,2 +54770,16,1.0,1,1.391730546951294,271,1.0,2 +54771,16,1.0,1,1.3567309379577637,272,1.0,2 +54772,16,1.0,1,1.3647308349609375,273,1.0,2 +54773,16,1.0,1,1.2787319421768188,274,1.0,2 +54774,16,1.0,1,1.3977304697036743,275,1.0,2 +54775,16,1.0,1,1.2267324924468994,276,1.0,2 +54776,16,1.0,1,1.7477259635925293,277,0.0,2 +54777,16,1.0,1,1.5817281007766724,278,1.0,2 +54778,16,1.0,1,1.251732349395752,279,1.0,2 +54779,16,1.0,1,1.92172372341156,280,1.0,2 +54780,16,1.0,1,1.189732313156128,281,1.0,2 +54781,16,1.0,1,1.0727320909500122,282,0.0,2 +54782,16,0.0,1,2.207733154296875,283,0.0,2 +54783,16,0.0,1,1.299731731414795,284,0.0,2 +54784,16,0.0,1,2.3297386169433594,285,0.0,2 +54785,16,0.0,1,1.387730598449707,286,0.0,2 +54786,16,1.0,1,1.43572998046875,287,1.0,2 +54787,16,1.0,1,1.578728199005127,288,1.0,2 +54788,16,1.0,1,1.2117323875427246,289,1.0,2 +54789,16,1.0,1,1.671726942062378,290,0.0,2 +54790,16,1.0,1,2.1067283153533936,291,0.0,2 +54791,16,0.0,1,1.8727242946624756,292,0.0,2 +54792,16,0.0,1,1.5157289505004883,293,0.0,2 +54793,16,1.0,1,1.9847228527069092,294,1.0,2 +54794,16,1.0,1,1.9237236976623535,295,1.0,2 +54795,16,1.0,1,1.322731375694275,296,0.0,2 +54796,16,0.0,1,1.2087323665618896,297,1.0,2 +54797,16,0.0,1,1.4047303199768066,298,1.0,2 +54798,16,0.0,1,1.2807319164276123,299,1.0,2 +54799,16,0.0,1,1.5027291774749756,300,0.0,2 +54800,16,1.0,1,1.859724521636963,301,1.0,2 +54801,16,1.0,1,1.3737307786941528,302,1.0,2 +54802,16,1.0,1,1.5127289295196533,303,0.0,2 +54803,16,1.0,1,1.2427324056625366,304,1.0,2 +54804,16,1.0,1,1.4267300367355347,305,1.0,2 +54805,16,1.0,1,1.413730263710022,306,1.0,2 +54806,16,1.0,1,2.6777548789978027,307,1.0,2 +54807,16,1.0,1,1.7477259635925293,308,1.0,2 +54808,16,1.0,1,1.8397247791290283,309,1.0,2 +54809,16,1.0,1,2.1377296447753906,310,0.0,2 +54810,16,1.0,1,1.4677295684814453,311,1.0,2 +54811,16,0.0,1,1.4727294445037842,312,1.0,2 +54812,16,1.0,1,1.5827281475067139,313,1.0,2 +54813,16,0.0,1,1.225732445716858,314,0.0,2 +54814,16,1.0,1,1.3337312936782837,315,0.0,2 +54815,16,1.0,1,1.4657295942306519,316,1.0,2 +54816,16,1.0,1,1.9667232036590576,317,1.0,2 +54817,16,1.0,1,1.1937323808670044,318,0.0,2 +54818,16,0.0,1,1.4817293882369995,319,0.0,2 +54819,16,0.0,1,1.215732455253601,320,0.0,2 +54820,16,1.0,1,1.336731195449829,321,0.0,2 +54821,16,0.0,1,1.2177324295043945,322,0.0,2 +54822,16,1.0,1,1.4707294702529907,323,1.0,2 +54823,16,0.0,1,1.5197288990020752,324,1.0,2 +54824,16,1.0,1,1.5607283115386963,325,1.0,2 +54825,16,0.0,1,1.8357248306274414,326,0.0,2 +54826,16,0.0,1,1.3597309589385986,327,0.0,2 +54827,16,1.0,1,1.532728672027588,328,1.0,2 +54828,16,1.0,1,1.3127315044403076,329,1.0,2 +54829,16,1.0,1,1.3907305002212524,330,0.0,2 +54830,16,1.0,1,1.4657295942306519,331,1.0,2 +54831,16,1.0,1,1.4967291355133057,332,1.0,2 +54832,16,1.0,1,1.5477285385131836,333,1.0,2 +54833,16,1.0,1,1.409730315208435,334,1.0,2 +54834,16,1.0,1,2.0917277336120605,335,0.0,2 +54835,16,0.0,1,1.2097324132919312,336,0.0,2 +54836,16,1.0,1,1.5587284564971924,337,1.0,2 +54837,16,1.0,1,1.1767323017120361,338,0.0,2 +54838,16,1.0,1,1.3267313241958618,339,0.0,2 +54839,16,1.0,1,1.3157315254211426,340,0.0,2 +54840,16,0.0,1,1.1617323160171509,341,0.0,2 +54841,16,0.0,1,1.5697282552719116,342,1.0,2 +54842,16,0.0,1,1.225732445716858,343,0.0,2 +54843,16,1.0,1,1.2837319374084473,344,1.0,2 +54844,16,1.0,1,1.2057323455810547,345,0.0,2 +54845,16,1.0,1,2.198732614517212,346,1.0,2 +54846,16,1.0,1,1.3747307062149048,347,0.0,2 +54847,16,1.0,1,1.7037265300750732,348,1.0,2 +54848,16,1.0,1,1.361730933189392,349,1.0,2 +54849,16,1.0,1,1.2547322511672974,350,1.0,2 +54850,16,1.0,1,1.1677323579788208,351,0.0,2 +54851,16,0.0,1,1.1227322816848755,352,0.0,2 +54852,16,1.0,1,1.9317235946655273,353,1.0,2 +54853,16,1.0,1,1.7697256803512573,354,1.0,2 +54854,16,1.0,1,1.321731448173523,355,1.0,2 +54855,16,1.0,1,2.0827271938323975,356,1.0,2 +54856,16,1.0,1,1.251732349395752,357,0.0,2 +54857,16,1.0,1,1.881724238395691,358,1.0,2 +54858,16,1.0,1,1.3577309846878052,359,1.0,2 +54859,16,1.0,1,1.4567296504974365,360,1.0,2 +54860,16,1.0,1,1.3677308559417725,361,1.0,2 +54861,16,1.0,1,1.295731782913208,362,1.0,2 +54862,16,1.0,1,1.2327324151992798,363,1.0,2 +54863,16,1.0,1,1.5417286157608032,364,0.0,2 +54864,16,0.0,1,1.4437298774719238,365,0.0,2 +54865,16,1.0,1,1.2727320194244385,366,1.0,2 +54866,16,1.0,1,1.4477298259735107,367,0.0,2 +54867,16,0.0,1,1.1437323093414307,368,1.0,2 +54868,16,0.0,1,2.0667264461517334,369,0.0,2 +54869,16,0.0,1,1.5337287187576294,370,0.0,2 +54870,16,0.0,1,1.2467323541641235,371,0.0,2 +54871,16,1.0,1,2.0267245769500732,372,1.0,2 +54872,16,1.0,1,1.2347325086593628,373,1.0,2 +54873,16,0.0,1,1.947723388671875,374,0.0,2 +54874,16,1.0,1,1.1087322235107422,375,1.0,2 +54875,16,1.0,1,1.7887253761291504,376,1.0,2 +54876,16,1.0,1,1.322731375694275,377,0.0,2 +54877,16,0.0,1,2.2837367057800293,378,0.0,2 +54878,16,1.0,1,1.7917253971099854,379,0.0,2 +54879,16,0.0,1,2.3657402992248535,380,1.0,2 +54880,16,0.0,1,1.0867321491241455,381,1.0,2 +54881,16,0.0,1,1.154732346534729,382,1.0,2 +54882,16,0.0,1,1.2727320194244385,383,0.0,2 +54883,16,0.0,1,1.8017252683639526,384,1.0,2 +54884,16,0.0,1,1.7287261486053467,385,0.0,2 +54885,16,0.0,1,1.593727946281433,386,1.0,2 +54886,16,0.0,1,1.2267324924468994,387,0.0,2 +54887,16,1.0,1,1.5637283325195312,388,1.0,2 +54888,16,1.0,1,1.2347325086593628,389,1.0,2 +54889,16,1.0,1,1.1767323017120361,390,0.0,2 +54890,16,1.0,1,2.171731472015381,391,1.0,2 +54891,16,1.0,1,1.5227289199829102,392,0.0,2 +54892,16,0.0,1,1.152732253074646,393,1.0,2 +54893,16,0.0,1,1.114732265472412,394,0.0,2 +54894,16,0.0,1,2.1017279624938965,395,0.0,2 +54895,16,1.0,1,1.2057323455810547,396,1.0,2 +54896,16,1.0,1,1.4047303199768066,397,0.0,2 +54897,16,1.0,1,1.3717308044433594,398,0.0,2 +54898,16,0.0,1,1.7837255001068115,399,0.0,2 +54899,16,0.0,1,2.1627309322357178,400,0.0,2 +54900,16,0.0,1,1.3947304487228394,401,0.0,2 +54901,16,1.0,1,2.3847413063049316,402,1.0,2 +54902,16,1.0,1,1.575728178024292,403,0.0,2 +54903,16,1.0,1,1.9407234191894531,404,1.0,2 +54904,16,1.0,1,1.218732476234436,405,1.0,2 +54905,16,0.0,1,1.5197288990020752,406,0.0,2 +54906,16,1.0,1,1.3857306241989136,407,1.0,2 +54907,16,1.0,1,1.4227300882339478,408,1.0,2 +54908,16,1.0,1,1.5407285690307617,409,1.0,2 +54909,16,1.0,1,1.4787293672561646,410,1.0,2 +54910,16,1.0,1,1.2607321739196777,411,1.0,2 +54911,16,1.0,1,1.4417299032211304,412,1.0,2 +54912,16,1.0,1,1.4257301092147827,413,0.0,2 +54913,16,1.0,1,1.9947230815887451,414,1.0,2 +54914,16,1.0,1,1.2367324829101562,415,1.0,2 +54915,16,1.0,1,1.1967324018478394,416,1.0,2 +54916,16,0.0,1,1.2097324132919312,417,0.0,2 +54917,16,1.0,1,1.179732322692871,418,1.0,2 +54918,16,1.0,1,1.3387311697006226,419,1.0,2 +54919,16,1.0,1,1.1057322025299072,420,1.0,2 +54920,16,1.0,1,1.2987316846847534,421,1.0,2 +54921,16,1.0,1,1.3547309637069702,422,1.0,2 +54922,16,1.0,1,1.4087302684783936,423,0.0,2 +54923,16,1.0,1,1.6767268180847168,424,1.0,2 +54924,16,1.0,1,1.4417299032211304,425,1.0,2 +54925,16,1.0,1,1.5917279720306396,426,1.0,2 +54926,16,1.0,1,1.5047290325164795,427,0.0,2 +54927,16,1.0,1,1.188732385635376,428,1.0,2 +54928,16,1.0,1,1.2137324810028076,429,1.0,2 +54929,16,1.0,1,2.4057421684265137,430,1.0,2 +54930,16,1.0,1,1.1377322673797607,431,1.0,2 +54931,16,1.0,1,1.3977304697036743,432,0.0,2 +54932,16,0.0,1,1.526728868484497,433,0.0,2 +54933,16,0.0,1,2.228734016418457,434,0.0,2 +54934,16,1.0,1,1.317731499671936,435,1.0,2 +54935,16,1.0,1,1.3747307062149048,436,1.0,2 +54936,16,1.0,1,1.3737307786941528,437,1.0,2 +54937,16,1.0,1,1.461729645729065,438,1.0,2 +54938,16,1.0,1,1.4537297487258911,439,1.0,2 +54939,16,1.0,1,1.6807267665863037,440,1.0,2 +54940,16,1.0,1,1.3207314014434814,441,1.0,2 +54941,16,1.0,1,1.3167314529418945,442,1.0,2 +54942,16,1.0,1,1.8347249031066895,443,1.0,2 +54943,16,1.0,1,1.4517297744750977,444,1.0,2 +54944,16,1.0,1,1.5697282552719116,445,1.0,2 +54945,16,1.0,1,1.5187289714813232,446,1.0,2 +54946,16,1.0,1,1.1357322931289673,447,0.0,2 +54947,16,1.0,1,1.6957266330718994,448,0.0,2 +54948,16,0.0,1,1.8897241353988647,449,0.0,2 +54949,16,0.0,1,2.4637451171875,450,1.0,2 +54950,16,0.0,1,1.1687322854995728,451,1.0,2 +54951,16,0.0,1,1.2877318859100342,452,0.0,2 +54952,16,1.0,1,1.711726427078247,453,1.0,2 +54953,16,0.0,1,1.8907241821289062,454,1.0,2 +54954,16,0.0,1,1.1777323484420776,455,1.0,2 +54955,16,0.0,1,1.2497323751449585,456,1.0,2 +54956,16,1.0,1,2.1167287826538086,457,1.0,2 +54957,16,0.0,1,1.9017239809036255,458,0.0,2 +54958,16,1.0,1,1.1877323389053345,459,1.0,2 +54959,16,1.0,1,1.3487310409545898,460,1.0,2 +54960,16,1.0,1,1.2867318391799927,461,1.0,2 +54961,16,1.0,1,1.6867268085479736,462,1.0,2 +54962,16,1.0,1,1.479729413986206,463,1.0,2 +54963,16,1.0,1,1.3037316799163818,464,1.0,2 +54964,16,1.0,1,1.2007323503494263,465,1.0,2 +54965,16,1.0,1,1.5427286624908447,466,1.0,2 +54966,16,1.0,1,1.4527297019958496,467,0.0,2 +54967,16,1.0,1,1.3307312726974487,468,1.0,2 +54968,16,1.0,1,1.4757294654846191,469,0.0,2 +54969,16,0.0,1,1.4387298822402954,470,0.0,2 +54970,16,0.0,1,1.3017317056655884,471,1.0,2 +54971,16,0.0,1,1.2757320404052734,472,0.0,2 +54972,16,1.0,1,2.0607261657714844,473,1.0,2 +54973,16,1.0,1,2.01772403717041,474,1.0,2 +54974,16,1.0,1,1.4817293882369995,475,1.0,2 +54975,16,1.0,1,1.2637321949005127,476,0.0,2 +54976,16,0.0,1,1.7357261180877686,477,0.0,2 +54977,16,0.0,1,2.4047422409057617,478,1.0,2 +54978,16,0.0,1,1.392730474472046,479,0.0,2 +54979,16,0.0,1,1.5857280492782593,480,1.0,2 +54980,16,0.0,1,1.5067291259765625,481,0.0,2 +54981,16,0.0,1,1.5357286930084229,482,1.0,2 +54982,16,0.0,1,1.1447322368621826,483,0.0,2 +54983,16,1.0,1,2.0307247638702393,484,1.0,2 +54984,16,1.0,1,1.151732325553894,485,1.0,2 +54985,16,1.0,1,1.9637231826782227,486,0.0,2 +54986,16,1.0,1,1.530728816986084,487,0.0,2 +54987,16,0.0,1,1.9407234191894531,488,1.0,2 +54988,16,0.0,1,1.7657257318496704,489,0.0,2 +54989,16,0.0,1,1.6157276630401611,490,0.0,2 +54990,16,0.0,1,1.6967265605926514,491,1.0,2 +54991,16,0.0,1,1.4057303667068481,492,0.0,2 +54992,16,0.0,1,1.5087289810180664,493,1.0,2 +54993,16,0.0,1,1.1167322397232056,494,0.0,2 +54994,16,1.0,1,1.829724907875061,495,1.0,2 +54995,16,0.0,1,1.6137276887893677,496,0.0,2 +54996,16,1.0,1,1.3047316074371338,497,1.0,2 +54997,16,1.0,1,1.5087289810180664,498,1.0,2 +54998,16,1.0,1,1.616727590560913,499,1.0,2 +54999,16,1.0,1,1.4517297744750977,500,1.0,2 +55000,16,0.0,2,1.5487284660339355,1,1.0,2 +55001,16,0.0,2,1.6997265815734863,2,0.0,2 +55002,16,0.0,2,1.2607321739196777,3,0.0,2 +55003,16,1.0,2,2.1497302055358887,4,0.0,2 +55004,16,0.0,2,1.5147290229797363,5,0.0,2 +55005,16,0.0,2,1.1987323760986328,6,0.0,2 +55006,16,1.0,2,1.1647323369979858,7,1.0,2 +55007,16,1.0,2,2.447744369506836,8,1.0,2 +55008,16,1.0,2,1.4867292642593384,9,1.0,2 +55009,16,1.0,2,1.7347261905670166,10,1.0,2 +55010,16,1.0,2,1.3237314224243164,11,1.0,2 +55011,16,1.0,2,1.3747307062149048,12,0.0,2 +55012,16,1.0,2,1.3207314014434814,13,0.0,2 +55013,16,1.0,2,1.9497233629226685,14,0.0,2 +55014,16,0.0,2,1.4037303924560547,15,1.0,2 +55015,16,1.0,2,1.9357235431671143,16,1.0,2 +55016,16,0.0,2,1.6447272300720215,17,0.0,2 +55017,16,1.0,2,1.7437260150909424,18,1.0,2 +55018,16,1.0,2,1.4157302379608154,19,0.0,2 +55019,16,0.0,2,1.8347249031066895,20,0.0,2 +55020,16,1.0,2,1.622727632522583,21,0.0,2 +55021,16,0.0,2,1.1957323551177979,22,0.0,2 +55022,16,1.0,2,1.8447246551513672,23,1.0,2 +55023,16,0.0,2,1.4387298822402954,24,1.0,2 +55024,16,1.0,2,1.2397325038909912,25,1.0,2 +55025,16,1.0,2,2.0997281074523926,26,0.0,2 +55026,16,0.0,2,1.4117302894592285,27,1.0,2 +55027,16,0.0,2,1.270732045173645,28,1.0,2 +55028,16,0.0,2,1.43572998046875,29,0.0,2 +55029,16,0.0,2,1.3977304697036743,30,0.0,2 +55030,16,1.0,2,1.4597296714782715,31,0.0,2 +55031,16,0.0,2,1.1877323389053345,32,0.0,2 +55032,16,0.0,2,2.218733549118042,33,0.0,2 +55033,16,0.0,2,1.4857293367385864,34,1.0,2 +55034,16,0.0,2,1.2027324438095093,35,0.0,2 +55035,16,0.0,2,1.3327312469482422,36,1.0,2 +55036,16,0.0,2,1.576728105545044,37,0.0,2 +55037,16,0.0,2,1.532728672027588,38,0.0,2 +55038,16,0.0,2,1.2587321996688843,39,1.0,2 +55039,16,0.0,2,1.4667295217514038,40,1.0,2 +55040,16,0.0,2,1.3327312469482422,41,1.0,2 +55041,16,0.0,2,1.6917266845703125,42,0.0,2 +55042,16,0.0,2,1.5807280540466309,43,0.0,2 +55043,16,0.0,2,1.5117290019989014,44,1.0,2 +55044,16,0.0,2,1.2317324876785278,45,0.0,2 +55045,16,0.0,2,1.2837319374084473,46,1.0,2 +55046,16,0.0,2,1.1387323141098022,47,1.0,2 +55047,16,0.0,2,1.8977240324020386,48,0.0,2 +55048,16,0.0,2,1.6397273540496826,49,0.0,2 +55049,16,1.0,2,1.4877293109893799,50,1.0,2 +55050,16,1.0,2,1.2907317876815796,51,0.0,2 +55051,16,1.0,2,1.3907305002212524,52,0.0,2 +55052,16,0.0,2,1.5257288217544556,53,1.0,2 +55053,16,0.0,2,1.4377299547195435,54,0.0,2 +55054,16,1.0,2,1.5447285175323486,55,1.0,2 +55055,16,1.0,2,1.2547322511672974,56,0.0,2 +55056,16,0.0,2,2.245734691619873,57,0.0,2 +55057,16,0.0,2,1.6987266540527344,58,1.0,2 +55058,16,0.0,2,1.413730263710022,59,0.0,2 +55059,16,1.0,2,1.6397273540496826,60,0.0,2 +55060,16,1.0,2,1.5947279930114746,61,0.0,2 +55061,16,0.0,2,1.781725525856018,62,0.0,2 +55062,16,0.0,2,1.155732274055481,63,0.0,2 +55063,16,1.0,2,1.666727066040039,64,1.0,2 +55064,16,1.0,2,1.5027291774749756,65,1.0,2 +55065,16,1.0,2,1.3067315816879272,66,0.0,2 +55066,16,0.0,2,1.8467247486114502,67,1.0,2 +55067,16,0.0,2,1.2607321739196777,68,0.0,2 +55068,16,1.0,2,1.3357312679290771,69,0.0,2 +55069,16,0.0,2,1.0627321004867554,70,0.0,2 +55070,16,0.0,2,1.532728672027588,71,0.0,2 +55071,16,0.0,2,1.1407322883605957,72,0.0,2 +55072,16,0.0,2,1.7247262001037598,73,0.0,2 +55073,16,0.0,2,1.9197237491607666,74,1.0,2 +55074,16,0.0,2,1.9637231826782227,75,1.0,2 +55075,16,0.0,2,1.3997304439544678,76,0.0,2 +55076,16,0.0,2,2.2717361450195312,77,0.0,2 +55077,16,0.0,2,1.483729362487793,78,0.0,2 +55078,16,1.0,2,1.3317313194274902,79,0.0,2 +55079,16,1.0,2,1.6047277450561523,80,0.0,2 +55080,16,0.0,2,1.392730474472046,81,0.0,2 +55081,16,0.0,2,1.2987316846847534,82,0.0,2 +55082,16,0.0,2,1.2497323751449585,83,0.0,2 +55083,16,0.0,2,1.5917279720306396,84,0.0,2 +55084,16,0.0,2,1.7277262210845947,85,1.0,2 +55085,16,0.0,2,1.2677321434020996,86,0.0,2 +55086,16,0.0,2,1.2657321691513062,87,1.0,2 +55087,16,0.0,2,1.299731731414795,88,0.0,2 +55088,16,1.0,2,2.1037282943725586,89,0.0,2 +55089,16,1.0,2,1.645727276802063,90,1.0,2 +55090,16,1.0,2,1.2497323751449585,91,1.0,2 +55091,16,1.0,2,1.2367324829101562,92,1.0,2 +55092,16,1.0,2,1.088732123374939,93,1.0,2 +55093,16,1.0,2,1.6347274780273438,94,1.0,2 +55094,16,1.0,2,1.4127302169799805,95,0.0,2 +55095,16,1.0,2,1.5857280492782593,96,1.0,2 +55096,16,0.0,2,1.0827322006225586,97,1.0,2 +55097,16,0.0,2,1.1667323112487793,98,1.0,2 +55098,16,0.0,2,1.969723105430603,99,0.0,2 +55099,16,1.0,2,1.1747323274612427,100,0.0,2 +55100,16,0.0,2,2.002723455429077,101,1.0,2 +55101,16,0.0,2,1.182732343673706,102,0.0,2 +55102,16,0.0,2,1.2687320709228516,103,0.0,2 +55103,16,1.0,2,1.579728126525879,104,0.0,2 +55104,16,0.0,2,1.7407259941101074,105,0.0,2 +55105,16,1.0,2,2.0797271728515625,106,1.0,2 +55106,16,1.0,2,1.2647321224212646,107,1.0,2 +55107,16,1.0,2,1.1227322816848755,108,0.0,2 +55108,16,1.0,2,1.194732427597046,109,0.0,2 +55109,16,1.0,2,1.5897279977798462,110,1.0,2 +55110,16,0.0,2,1.1057322025299072,111,1.0,2 +55111,16,0.0,2,1.3757307529449463,112,0.0,2 +55112,16,1.0,2,1.5737282037734985,113,1.0,2 +55113,16,1.0,2,1.436729907989502,114,0.0,2 +55114,16,1.0,2,2.3477396965026855,115,0.0,2 +55115,16,0.0,2,1.7327260971069336,116,1.0,2 +55116,16,0.0,2,1.2497323751449585,117,1.0,2 +55117,16,0.0,2,1.3897305727005005,118,0.0,2 +55118,16,0.0,2,1.336731195449829,119,0.0,2 +55119,16,1.0,2,1.5047290325164795,120,0.0,2 +55120,16,0.0,2,1.3707307577133179,121,1.0,2 +55121,16,0.0,2,2.245734691619873,122,0.0,2 +55122,16,0.0,2,1.5697282552719116,123,0.0,2 +55123,16,0.0,2,1.4787293672561646,124,1.0,2 +55124,16,0.0,2,1.247732400894165,125,0.0,2 +55125,16,1.0,2,1.480729341506958,126,1.0,2 +55126,16,1.0,2,1.222732424736023,127,1.0,2 +55127,16,1.0,2,1.3247313499450684,128,1.0,2 +55128,16,1.0,2,1.1597323417663574,129,0.0,2 +55129,16,1.0,2,1.4217301607131958,130,1.0,2 +55130,16,1.0,2,1.1697323322296143,131,1.0,2 +55131,16,1.0,2,1.3247313499450684,132,1.0,2 +55132,16,1.0,2,1.5077290534973145,133,1.0,2 +55133,16,1.0,2,1.5067291259765625,134,0.0,2 +55134,16,1.0,2,1.3977304697036743,135,1.0,2 +55135,16,1.0,2,1.154732346534729,136,1.0,2 +55136,16,1.0,2,1.3377312421798706,137,1.0,2 +55137,16,1.0,2,1.3717308044433594,138,1.0,2 +55138,16,1.0,2,1.3857306241989136,139,1.0,2 +55139,16,1.0,2,1.5657283067703247,140,1.0,2 +55140,16,1.0,2,1.9187238216400146,141,1.0,2 +55141,16,1.0,2,1.6257275342941284,142,1.0,2 +55142,16,1.0,2,1.2947317361831665,143,0.0,2 +55143,16,0.0,2,1.2597322463989258,144,1.0,2 +55144,16,0.0,2,1.5197288990020752,145,0.0,2 +55145,16,0.0,2,1.2007323503494263,146,0.0,2 +55146,16,0.0,2,1.439729928970337,147,1.0,2 +55147,16,0.0,2,1.530728816986084,148,1.0,2 +55148,16,0.0,2,1.251732349395752,149,0.0,2 +55149,16,0.0,2,1.7027266025543213,150,0.0,2 +55150,16,1.0,2,1.8307249546051025,151,1.0,2 +55151,16,1.0,2,1.192732334136963,152,0.0,2 +55152,16,1.0,2,1.7837255001068115,153,1.0,2 +55153,16,1.0,2,1.8357248306274414,154,0.0,2 +55154,16,1.0,2,1.7877254486083984,155,0.0,2 +55155,16,0.0,2,2.0377249717712402,156,0.0,2 +55156,16,0.0,2,1.188732385635376,157,1.0,2 +55157,16,0.0,2,2.0317249298095703,158,1.0,2 +55158,16,1.0,2,1.414730191230774,159,1.0,2 +55159,16,0.0,2,1.2147324085235596,160,1.0,2 +55160,16,0.0,2,1.593727946281433,161,1.0,2 +55161,16,0.0,2,1.7387261390686035,162,0.0,2 +55162,16,1.0,2,1.3907305002212524,163,0.0,2 +55163,16,1.0,2,1.6137276887893677,164,1.0,2 +55164,16,1.0,2,1.2087323665618896,165,0.0,2 +55165,16,1.0,2,2.0897274017333984,166,0.0,2 +55166,16,1.0,2,2.0577259063720703,167,0.0,2 +55167,16,1.0,2,2.1427299976348877,168,0.0,2 +55168,16,0.0,2,1.4197301864624023,169,0.0,2 +55169,16,0.0,2,1.388730525970459,170,0.0,2 +55170,16,0.0,2,1.336731195449829,171,0.0,2 +55171,16,0.0,2,1.3137315511703491,172,1.0,2 +55172,16,0.0,2,1.3687307834625244,173,0.0,2 +55173,16,0.0,2,1.1097321510314941,174,0.0,2 +55174,16,1.0,2,2.498746633529663,175,0.0,2 +55175,16,0.0,2,1.225732445716858,176,1.0,2 +55176,16,0.0,2,1.5437285900115967,177,1.0,2 +55177,16,0.0,2,1.181732416152954,178,1.0,2 +55178,16,0.0,2,1.4537297487258911,179,0.0,2 +55179,16,0.0,2,1.274731993675232,180,1.0,2 +55180,16,0.0,2,1.2727320194244385,181,0.0,2 +55181,16,0.0,2,2.0887274742126465,182,0.0,2 +55182,16,0.0,2,1.3247313499450684,183,0.0,2 +55183,16,1.0,2,1.194732427597046,184,0.0,2 +55184,16,0.0,2,1.2217323780059814,185,0.0,2 +55185,16,0.0,2,1.118732213973999,186,1.0,2 +55186,16,0.0,2,1.2607321739196777,187,0.0,2 +55187,16,1.0,2,1.340731143951416,188,1.0,2 +55188,16,1.0,2,1.2907317876815796,189,0.0,2 +55189,16,0.0,2,2.1237292289733887,190,1.0,2 +55190,16,0.0,2,1.1077321767807007,191,1.0,2 +55191,16,0.0,2,1.1717323064804077,192,1.0,2 +55192,16,0.0,2,1.5417286157608032,193,0.0,2 +55193,16,0.0,2,1.59772789478302,194,0.0,2 +55194,16,0.0,2,2.186732053756714,195,0.0,2 +55195,16,1.0,2,1.3547309637069702,196,1.0,2 +55196,16,1.0,2,1.3337312936782837,197,0.0,2 +55197,16,1.0,2,1.1397322416305542,198,1.0,2 +55198,16,0.0,2,1.413730263710022,199,1.0,2 +55199,16,0.0,2,1.1567323207855225,200,0.0,2 +55200,16,1.0,2,1.5427286624908447,201,0.0,2 +55201,16,0.0,2,1.5847280025482178,202,0.0,2 +55202,16,1.0,2,2.3187382221221924,203,1.0,2 +55203,16,1.0,2,1.5737282037734985,204,1.0,2 +55204,16,1.0,2,1.2687320709228516,205,1.0,2 +55205,16,1.0,2,1.3897305727005005,206,0.0,2 +55206,16,1.0,2,1.5677282810211182,207,1.0,2 +55207,16,1.0,2,2.0887274742126465,208,0.0,2 +55208,16,0.0,2,1.850724697113037,209,1.0,2 +55209,16,0.0,2,1.8657244443893433,210,1.0,2 +55210,16,0.0,2,1.3337312936782837,211,0.0,2 +55211,16,1.0,2,2.3017373085021973,212,0.0,2 +55212,16,1.0,2,1.27373206615448,213,1.0,2 +55213,16,1.0,2,1.6207275390625,214,0.0,2 +55214,16,0.0,2,2.242734670639038,215,1.0,2 +55215,16,0.0,2,1.2007323503494263,216,1.0,2 +55216,16,0.0,2,1.4277300834655762,217,1.0,2 +55217,16,0.0,2,1.2177324295043945,218,1.0,2 +55218,16,0.0,2,1.7807254791259766,219,1.0,2 +55219,16,0.0,2,1.1307322978973389,220,0.0,2 +55220,16,1.0,2,1.8747243881225586,221,1.0,2 +55221,16,1.0,2,1.3157315254211426,222,1.0,2 +55222,16,1.0,2,1.3457311391830444,223,1.0,2 +55223,16,1.0,2,1.4997291564941406,224,1.0,2 +55224,16,1.0,2,1.3707307577133179,225,0.0,2 +55225,16,1.0,2,2.427743434906006,226,1.0,2 +55226,16,1.0,2,1.9057239294052124,227,0.0,2 +55227,16,0.0,2,1.947723388671875,228,0.0,2 +55228,16,1.0,2,2.1297292709350586,229,1.0,2 +55229,16,1.0,2,1.2807319164276123,230,0.0,2 +55230,16,1.0,2,1.3317313194274902,231,1.0,2 +55231,16,1.0,2,1.571728229522705,232,1.0,2 +55232,16,1.0,2,1.2587321996688843,233,1.0,2 +55233,16,1.0,2,1.2497323751449585,234,1.0,2 +55234,16,1.0,2,1.1477322578430176,235,0.0,2 +55235,16,0.0,2,1.321731448173523,236,1.0,2 +55236,16,0.0,2,1.1397322416305542,237,1.0,2 +55237,16,0.0,2,1.1227322816848755,238,1.0,2 +55238,16,0.0,2,1.158732295036316,239,1.0,2 +55239,16,0.0,2,1.1957323551177979,240,0.0,2 +55240,16,0.0,2,1.4537297487258911,241,0.0,2 +55241,16,0.0,2,2.0907275676727295,242,0.0,2 +55242,16,1.0,2,1.5737282037734985,243,0.0,2 +55243,16,0.0,2,1.3047316074371338,244,1.0,2 +55244,16,0.0,2,1.5387287139892578,245,0.0,2 +55245,16,0.0,2,1.4047303199768066,246,0.0,2 +55246,16,1.0,2,1.251732349395752,247,1.0,2 +55247,16,1.0,2,1.1847323179244995,248,1.0,2 +55248,16,1.0,2,2.262735605239868,249,0.0,2 +55249,16,1.0,2,1.5397286415100098,250,0.0,2 +55250,16,0.0,2,1.719726324081421,251,0.0,2 +55251,16,0.0,2,1.2577322721481323,252,1.0,2 +55252,16,0.0,2,1.3947304487228394,253,1.0,2 +55253,16,0.0,2,1.2817319631576538,254,0.0,2 +55254,16,0.0,2,1.2577322721481323,255,1.0,2 +55255,16,0.0,2,1.4757294654846191,256,0.0,2 +55256,16,1.0,2,1.1667323112487793,257,0.0,2 +55257,16,1.0,2,2.237734317779541,258,1.0,2 +55258,16,1.0,2,1.3607308864593506,259,0.0,2 +55259,16,1.0,2,1.9137238264083862,260,0.0,2 +55260,16,1.0,2,1.4817293882369995,261,0.0,2 +55261,16,0.0,2,1.414730191230774,262,0.0,2 +55262,16,0.0,2,1.804725170135498,263,0.0,2 +55263,16,0.0,2,1.8877241611480713,264,0.0,2 +55264,16,1.0,2,1.3987303972244263,265,0.0,2 +55265,16,1.0,2,1.81172513961792,266,0.0,2 +55266,16,0.0,2,1.4277300834655762,267,0.0,2 +55267,16,0.0,2,1.7367260456085205,268,0.0,2 +55268,16,0.0,2,1.4437298774719238,269,0.0,2 +55269,16,0.0,2,1.2607321739196777,270,0.0,2 +55270,16,0.0,2,1.5657283067703247,271,0.0,2 +55271,16,0.0,2,1.3237314224243164,272,0.0,2 +55272,16,0.0,2,1.3467310667037964,273,0.0,2 +55273,16,0.0,2,1.8757243156433105,274,1.0,2 +55274,16,0.0,2,1.6177276372909546,275,0.0,2 +55275,16,0.0,2,1.457729697227478,276,1.0,2 +55276,16,0.0,2,1.2437324523925781,277,0.0,2 +55277,16,0.0,2,1.1757323741912842,278,1.0,2 +55278,16,1.0,2,1.189732313156128,279,1.0,2 +55279,16,0.0,2,1.5157289505004883,280,1.0,2 +55280,16,1.0,2,1.6967265605926514,281,1.0,2 +55281,16,1.0,2,1.3907305002212524,282,1.0,2 +55282,16,0.0,2,1.5577284097671509,283,0.0,2 +55283,16,1.0,2,1.4157302379608154,284,1.0,2 +55284,16,1.0,2,1.4727294445037842,285,1.0,2 +55285,16,1.0,2,1.1667323112487793,286,1.0,2 +55286,16,1.0,2,1.8227250576019287,287,1.0,2 +55287,16,1.0,2,1.3687307834625244,288,1.0,2 +55288,16,1.0,2,1.2107324600219727,289,1.0,2 +55289,16,1.0,2,1.6797268390655518,290,1.0,2 +55290,16,1.0,2,1.1337323188781738,291,1.0,2 +55291,16,1.0,2,1.1597323417663574,292,1.0,2 +55292,16,1.0,2,1.1787323951721191,293,0.0,2 +55293,16,0.0,2,1.1997324228286743,294,0.0,2 +55294,16,0.0,2,1.7557258605957031,295,1.0,2 +55295,16,0.0,2,1.2007323503494263,296,1.0,2 +55296,16,0.0,2,1.124732255935669,297,0.0,2 +55297,16,0.0,2,1.3357312679290771,298,0.0,2 +55298,16,0.0,2,1.8157250881195068,299,1.0,2 +55299,16,0.0,2,1.4267300367355347,300,1.0,2 +55300,16,0.0,2,1.114732265472412,301,1.0,2 +55301,16,0.0,2,1.2327324151992798,302,0.0,2 +55302,16,0.0,2,2.1337294578552246,303,0.0,2 +55303,16,0.0,2,1.6617270708084106,304,0.0,2 +55304,16,1.0,2,1.2587321996688843,305,0.0,2 +55305,16,0.0,2,1.8197250366210938,306,0.0,2 +55306,16,0.0,2,2.1387298107147217,307,1.0,2 +55307,16,0.0,2,1.366730809211731,308,1.0,2 +55308,16,0.0,2,1.5997278690338135,309,1.0,2 +55309,16,0.0,2,1.8167250156402588,310,1.0,2 +55310,16,0.0,2,1.252732276916504,311,1.0,2 +55311,16,0.0,2,1.8427248001098633,312,1.0,2 +55312,16,0.0,2,1.5357286930084229,313,1.0,2 +55313,16,0.0,2,1.151732325553894,314,0.0,2 +55314,16,0.0,2,1.3287312984466553,315,1.0,2 +55315,16,0.0,2,1.8887240886688232,316,1.0,2 +55316,16,0.0,2,1.9017239809036255,317,0.0,2 +55317,16,0.0,2,1.8767242431640625,318,0.0,2 +55318,16,0.0,2,1.9457234144210815,319,0.0,2 +55319,16,0.0,2,1.3597309589385986,320,1.0,2 +55320,16,0.0,2,1.2907317876815796,321,0.0,2 +55321,16,0.0,2,1.225732445716858,322,0.0,2 +55322,16,1.0,2,2.1397299766540527,323,1.0,2 +55323,16,1.0,2,1.410730242729187,324,1.0,2 +55324,16,1.0,2,1.4017304182052612,325,0.0,2 +55325,16,0.0,2,1.9147238731384277,326,1.0,2 +55326,16,0.0,2,1.2857319116592407,327,0.0,2 +55327,16,0.0,2,1.1787323951721191,328,0.0,2 +55328,16,0.0,2,1.7077264785766602,329,0.0,2 +55329,16,0.0,2,1.216732382774353,330,1.0,2 +55330,16,0.0,2,1.1577322483062744,331,0.0,2 +55331,16,1.0,2,1.4127302169799805,332,0.0,2 +55332,16,0.0,2,2.238734483718872,333,1.0,2 +55333,16,0.0,2,1.5517284870147705,334,0.0,2 +55334,16,1.0,2,1.7887253761291504,335,1.0,2 +55335,16,1.0,2,1.667726993560791,336,0.0,2 +55336,16,1.0,2,1.8877241611480713,337,1.0,2 +55337,16,0.0,2,1.4237301349639893,338,1.0,2 +55338,16,1.0,2,1.369730830192566,339,1.0,2 +55339,16,0.0,2,1.8887240886688232,340,1.0,2 +55340,16,0.0,2,1.6257275342941284,341,0.0,2 +55341,16,1.0,2,1.8257249593734741,342,0.0,2 +55342,16,0.0,2,1.719726324081421,343,1.0,2 +55343,16,0.0,2,1.619727611541748,344,0.0,2 +55344,16,1.0,2,2.451744556427002,345,1.0,2 +55345,16,1.0,2,1.532728672027588,346,0.0,2 +55346,16,1.0,2,1.6577271223068237,347,0.0,2 +55347,16,1.0,2,1.4347299337387085,348,1.0,2 +55348,16,1.0,2,1.387730598449707,349,0.0,2 +55349,16,0.0,2,1.7227263450622559,350,1.0,2 +55350,16,0.0,2,1.3567309379577637,351,0.0,2 +55351,16,1.0,2,1.7777255773544312,352,0.0,2 +55352,16,0.0,2,1.6887266635894775,353,0.0,2 +55353,16,0.0,2,1.1707323789596558,354,1.0,2 +55354,16,0.0,2,1.1427322626113892,355,0.0,2 +55355,16,0.0,2,1.114732265472412,356,0.0,2 +55356,16,1.0,2,1.5637283325195312,357,0.0,2 +55357,16,0.0,2,1.1967324018478394,358,1.0,2 +55358,16,1.0,2,1.7317261695861816,359,0.0,2 +55359,16,0.0,2,1.1097321510314941,360,0.0,2 +55360,16,0.0,2,2.3037376403808594,361,0.0,2 +55361,16,1.0,2,1.185732364654541,362,1.0,2 +55362,16,1.0,2,1.4467297792434692,363,1.0,2 +55363,16,1.0,2,1.6097277402877808,364,0.0,2 +55364,16,1.0,2,1.8857241868972778,365,1.0,2 +55365,16,1.0,2,1.5427286624908447,366,0.0,2 +55366,16,1.0,2,1.534728765487671,367,1.0,2 +55367,16,1.0,2,1.3267313241958618,368,0.0,2 +55368,16,0.0,2,1.9097238779067993,369,0.0,2 +55369,16,0.0,2,1.2877318859100342,370,1.0,2 +55370,16,0.0,2,1.3037316799163818,371,1.0,2 +55371,16,0.0,2,1.1167322397232056,372,1.0,2 +55372,16,0.0,2,1.1397322416305542,373,1.0,2 +55373,16,0.0,2,1.270732045173645,374,1.0,2 +55374,16,0.0,2,1.2247323989868164,375,1.0,2 +55375,16,0.0,2,1.5407285690307617,376,1.0,2 +55376,16,0.0,2,1.124732255935669,377,0.0,2 +55377,16,1.0,2,1.1197322607040405,378,1.0,2 +55378,16,1.0,2,1.763725757598877,379,1.0,2 +55379,16,1.0,2,1.5357286930084229,380,1.0,2 +55380,16,1.0,2,1.2727320194244385,381,0.0,2 +55381,16,0.0,2,1.7267262935638428,382,0.0,2 +55382,16,1.0,2,1.3607308864593506,383,1.0,2 +55383,16,0.0,2,1.1107321977615356,384,0.0,2 +55384,16,1.0,2,1.2977317571640015,385,1.0,2 +55385,16,1.0,2,1.3497310876846313,386,1.0,2 +55386,16,1.0,2,1.3767306804656982,387,0.0,2 +55387,16,0.0,2,1.8367247581481934,388,0.0,2 +55388,16,1.0,2,1.3417311906814575,389,1.0,2 +55389,16,1.0,2,1.2757320404052734,390,1.0,2 +55390,16,1.0,2,1.431730031967163,391,0.0,2 +55391,16,0.0,2,1.6177276372909546,392,1.0,2 +55392,16,0.0,2,1.4707294702529907,393,0.0,2 +55393,16,0.0,2,1.188732385635376,394,0.0,2 +55394,16,1.0,2,1.7887253761291504,395,1.0,2 +55395,16,1.0,2,1.216732382774353,396,1.0,2 +55396,16,1.0,2,1.291731834411621,397,0.0,2 +55397,16,0.0,2,1.1437323093414307,398,0.0,2 +55398,16,0.0,2,1.1567323207855225,399,0.0,2 +55399,16,1.0,2,1.5477285385131836,400,1.0,2 +55400,16,1.0,2,1.3527309894561768,401,1.0,2 +55401,16,1.0,2,1.6947267055511475,402,0.0,2 +55402,16,0.0,2,1.4867292642593384,403,1.0,2 +55403,16,0.0,2,1.3287312984466553,404,1.0,2 +55404,16,0.0,2,1.2897318601608276,405,1.0,2 +55405,16,0.0,2,1.322731375694275,406,0.0,2 +55406,16,0.0,2,1.3907305002212524,407,0.0,2 +55407,16,0.0,2,1.3587309122085571,408,1.0,2 +55408,16,0.0,2,1.7617257833480835,409,0.0,2 +55409,16,1.0,2,1.6327273845672607,410,1.0,2 +55410,16,1.0,2,1.9667232036590576,411,0.0,2 +55411,16,1.0,2,1.5417286157608032,412,0.0,2 +55412,16,0.0,2,1.2607321739196777,413,0.0,2 +55413,16,1.0,2,1.3787306547164917,414,0.0,2 +55414,16,1.0,2,1.900723934173584,415,0.0,2 +55415,16,0.0,2,1.2987316846847534,416,0.0,2 +55416,16,0.0,2,1.2727320194244385,417,0.0,2 +55417,16,0.0,2,1.2337324619293213,418,1.0,2 +55418,16,0.0,2,1.4067302942276,419,0.0,2 +55419,16,0.0,2,1.3537310361862183,420,1.0,2 +55420,16,0.0,2,1.2467323541641235,421,1.0,2 +55421,16,0.0,2,1.2207324504852295,422,0.0,2 +55422,16,0.0,2,1.9637231826782227,423,0.0,2 +55423,16,1.0,2,1.3837306499481201,424,0.0,2 +55424,16,0.0,2,1.4657295942306519,425,1.0,2 +55425,16,0.0,2,2.0457253456115723,426,0.0,2 +55426,16,1.0,2,1.523728847503662,427,0.0,2 +55427,16,1.0,2,1.5257288217544556,428,0.0,2 +55428,16,1.0,2,2.1077284812927246,429,1.0,2 +55429,16,1.0,2,1.7207262516021729,430,1.0,2 +55430,16,1.0,2,2.0987279415130615,431,1.0,2 +55431,16,1.0,2,1.3287312984466553,432,1.0,2 +55432,16,1.0,2,1.3597309589385986,433,1.0,2 +55433,16,1.0,2,1.3687307834625244,434,0.0,2 +55434,16,0.0,2,1.3737307786941528,435,0.0,2 +55435,16,1.0,2,1.6867268085479736,436,1.0,2 +55436,16,1.0,2,1.4167301654815674,437,1.0,2 +55437,16,1.0,2,1.2817319631576538,438,1.0,2 +55438,16,0.0,2,1.5417286157608032,439,0.0,2 +55439,16,1.0,2,1.2767319679260254,440,0.0,2 +55440,16,1.0,2,1.969723105430603,441,0.0,2 +55441,16,0.0,2,1.6877267360687256,442,0.0,2 +55442,16,0.0,2,2.3837413787841797,443,1.0,2 +55443,16,0.0,2,1.3357312679290771,444,1.0,2 +55444,16,0.0,2,1.5077290534973145,445,0.0,2 +55445,16,1.0,2,1.436729907989502,446,1.0,2 +55446,16,1.0,2,1.2567322254180908,447,0.0,2 +55447,16,0.0,2,1.215732455253601,448,1.0,2 +55448,16,0.0,2,1.0727320909500122,449,1.0,2 +55449,16,0.0,2,1.299731731414795,450,1.0,2 +55450,16,0.0,2,1.2607321739196777,451,1.0,2 +55451,16,0.0,2,1.6517271995544434,452,0.0,2 +55452,16,1.0,2,1.8617244958877563,453,1.0,2 +55453,16,1.0,2,2.0477256774902344,454,0.0,2 +55454,16,1.0,2,1.3767306804656982,455,1.0,2 +55455,16,1.0,2,1.4037303924560547,456,0.0,2 +55456,16,0.0,2,1.7077264785766602,457,1.0,2 +55457,16,0.0,2,1.4637296199798584,458,1.0,2 +55458,16,0.0,2,2.0627262592315674,459,1.0,2 +55459,16,0.0,2,1.2247323989868164,460,0.0,2 +55460,16,0.0,2,1.9937230348587036,461,1.0,2 +55461,16,0.0,2,1.2147324085235596,462,0.0,2 +55462,16,0.0,2,1.576728105545044,463,1.0,2 +55463,16,0.0,2,1.5227289199829102,464,1.0,2 +55464,16,0.0,2,1.2317324876785278,465,0.0,2 +55465,16,0.0,2,1.2347325086593628,466,1.0,2 +55466,16,0.0,2,1.3677308559417725,467,1.0,2 +55467,16,0.0,2,1.476729393005371,468,0.0,2 +55468,16,1.0,2,1.7657257318496704,469,1.0,2 +55469,16,1.0,2,1.155732274055481,470,1.0,2 +55470,16,1.0,2,1.6427273750305176,471,1.0,2 +55471,16,1.0,2,2.0527257919311523,472,0.0,2 +55472,16,0.0,2,1.6917266845703125,473,0.0,2 +55473,16,0.0,2,1.2807319164276123,474,0.0,2 +55474,16,0.0,2,1.2757320404052734,475,0.0,2 +55475,16,0.0,2,2.1507303714752197,476,0.0,2 +55476,16,0.0,2,1.5137289762496948,477,0.0,2 +55477,16,1.0,2,1.8277249336242676,478,0.0,2 +55478,16,0.0,2,1.3527309894561768,479,1.0,2 +55479,16,0.0,2,1.2407324314117432,480,1.0,2 +55480,16,0.0,2,1.088732123374939,481,0.0,2 +55481,16,0.0,2,1.5897279977798462,482,1.0,2 +55482,16,0.0,2,1.1477322578430176,483,0.0,2 +55483,16,1.0,2,1.387730598449707,484,0.0,2 +55484,16,1.0,2,2.181731700897217,485,0.0,2 +55485,16,0.0,2,1.0857322216033936,486,1.0,2 +55486,16,0.0,2,1.5087289810180664,487,1.0,2 +55487,16,0.0,2,1.8607244491577148,488,1.0,2 +55488,16,0.0,2,1.5567283630371094,489,1.0,2 +55489,16,0.0,2,1.8177250623703003,490,0.0,2 +55490,16,1.0,2,2.001723289489746,491,0.0,2 +55491,16,0.0,2,1.436729907989502,492,0.0,2 +55492,16,1.0,2,1.2717320919036865,493,0.0,2 +55493,16,0.0,2,1.4497298002243042,494,0.0,2 +55494,16,0.0,2,2.2717361450195312,495,1.0,2 +55495,16,0.0,2,1.571728229522705,496,1.0,2 +55496,16,0.0,2,1.8867242336273193,497,1.0,2 +55497,16,0.0,2,1.2237324714660645,498,1.0,2 +55498,16,0.0,2,1.225732445716858,499,1.0,2 +55499,16,0.0,2,1.081732153892517,500,1.0,2 +55500,17,0.0,0,1.8801127672195435,1,0.0,2 +55501,17,1.0,0,1.4021189212799072,2,1.0,2 +55502,17,1.0,0,1.1781201362609863,3,1.0,2 +55503,17,1.0,0,1.66411554813385,4,1.0,2 +55504,17,1.0,0,1.3141200542449951,5,1.0,2 +55505,17,1.0,0,1.6121162176132202,6,1.0,2 +55506,17,1.0,0,1.1561200618743896,7,0.0,2 +55507,17,1.0,0,1.779114007949829,8,0.0,2 +55508,17,0.0,0,2.12011456489563,9,0.0,2 +55509,17,1.0,0,1.4901177883148193,10,1.0,2 +55510,17,1.0,0,1.3281198740005493,11,1.0,2 +55511,17,1.0,0,1.26412034034729,12,1.0,2 +55512,17,1.0,0,1.296120285987854,13,1.0,2 +55513,17,1.0,0,1.3601194620132446,14,0.0,2 +55514,17,1.0,0,1.8431131839752197,15,1.0,2 +55515,17,1.0,0,1.4381184577941895,16,1.0,2 +55516,17,1.0,0,1.3531194925308228,17,1.0,2 +55517,17,1.0,0,1.6831152439117432,18,1.0,2 +55518,17,0.0,0,1.3201199769973755,19,1.0,2 +55519,17,0.0,0,1.3981189727783203,20,0.0,2 +55520,17,1.0,0,1.974111557006836,21,1.0,2 +55521,17,1.0,0,1.3141200542449951,22,0.0,2 +55522,17,0.0,0,1.9131124019622803,23,0.0,2 +55523,17,1.0,0,1.322119951248169,24,1.0,2 +55524,17,1.0,0,1.194120168685913,25,1.0,2 +55525,17,1.0,0,1.5191173553466797,26,1.0,2 +55526,17,1.0,0,1.5081175565719604,27,1.0,2 +55527,17,1.0,0,1.367119312286377,28,1.0,2 +55528,17,1.0,0,1.507117509841919,29,1.0,2 +55529,17,1.0,0,1.3351197242736816,30,1.0,2 +55530,17,1.0,0,1.2601202726364136,31,1.0,2 +55531,17,1.0,0,1.3061201572418213,32,1.0,2 +55532,17,1.0,0,1.344119668006897,33,1.0,2 +55533,17,1.0,0,1.3801192045211792,34,1.0,2 +55534,17,0.0,0,1.3551194667816162,35,0.0,2 +55535,17,1.0,0,1.2751203775405884,36,1.0,2 +55536,17,1.0,0,1.6321159601211548,37,1.0,2 +55537,17,1.0,0,1.414118766784668,38,1.0,2 +55538,17,1.0,0,1.3461196422576904,39,1.0,2 +55539,17,1.0,0,1.2321202754974365,40,1.0,2 +55540,17,1.0,0,1.2511203289031982,41,0.0,2 +55541,17,0.0,0,2.010111093521118,42,1.0,2 +55542,17,0.0,0,1.1581201553344727,43,0.0,2 +55543,17,1.0,0,1.1801201105117798,44,1.0,2 +55544,17,1.0,0,1.856113076210022,45,0.0,2 +55545,17,0.0,0,1.4451183080673218,46,0.0,2 +55546,17,0.0,0,1.553117036819458,47,0.0,2 +55547,17,0.0,0,1.2901203632354736,48,0.0,2 +55548,17,1.0,0,2.202118396759033,49,1.0,2 +55549,17,1.0,0,1.6711153984069824,50,1.0,2 +55550,17,1.0,0,1.3521195650100708,51,1.0,2 +55551,17,1.0,0,1.4891177415847778,52,1.0,2 +55552,17,1.0,0,1.454118251800537,53,1.0,2 +55553,17,1.0,0,1.3821191787719727,54,1.0,2 +55554,17,1.0,0,1.2831203937530518,55,1.0,2 +55555,17,1.0,0,1.5401171445846558,56,1.0,2 +55556,17,1.0,0,1.4281185865402222,57,1.0,2 +55557,17,1.0,0,1.5091174840927124,58,1.0,2 +55558,17,1.0,0,1.5001176595687866,59,0.0,2 +55559,17,0.0,0,1.3251198530197144,60,0.0,2 +55560,17,1.0,0,1.7311146259307861,61,1.0,2 +55561,17,1.0,0,1.2261202335357666,62,1.0,2 +55562,17,1.0,0,1.4691179990768433,63,1.0,2 +55563,17,1.0,0,1.407118797302246,64,1.0,2 +55564,17,1.0,0,1.7431144714355469,65,1.0,2 +55565,17,1.0,0,1.2881203889846802,66,1.0,2 +55566,17,1.0,0,1.2691203355789185,67,1.0,2 +55567,17,1.0,0,1.7251148223876953,68,1.0,2 +55568,17,1.0,0,1.4651180505752563,69,1.0,2 +55569,17,1.0,0,1.297120213508606,70,1.0,2 +55570,17,1.0,0,1.1831201314926147,71,1.0,2 +55571,17,1.0,0,1.341119647026062,72,1.0,2 +55572,17,1.0,0,1.4011188745498657,73,1.0,2 +55573,17,1.0,0,1.4711179733276367,74,1.0,2 +55574,17,1.0,0,1.271120309829712,75,1.0,2 +55575,17,1.0,0,1.36311936378479,76,1.0,2 +55576,17,1.0,0,1.576116681098938,77,1.0,2 +55577,17,1.0,0,1.50211763381958,78,1.0,2 +55578,17,1.0,0,1.6631155014038086,79,1.0,2 +55579,17,1.0,0,1.2741203308105469,80,1.0,2 +55580,17,1.0,0,1.649115800857544,81,1.0,2 +55581,17,1.0,0,1.2581202983856201,82,1.0,2 +55582,17,1.0,0,1.4791178703308105,83,1.0,2 +55583,17,1.0,0,1.2171201705932617,84,1.0,2 +55584,17,1.0,0,1.4711179733276367,85,1.0,2 +55585,17,1.0,0,1.2211202383041382,86,1.0,2 +55586,17,1.0,0,1.66411554813385,87,1.0,2 +55587,17,1.0,0,1.7001150846481323,88,1.0,2 +55588,17,1.0,0,1.3731192350387573,89,0.0,2 +55589,17,1.0,0,1.5771167278289795,90,1.0,2 +55590,17,1.0,0,1.2431203126907349,91,1.0,2 +55591,17,1.0,0,1.297120213508606,92,1.0,2 +55592,17,1.0,0,1.2801203727722168,93,0.0,2 +55593,17,1.0,0,1.735114574432373,94,1.0,2 +55594,17,1.0,0,1.454118251800537,95,1.0,2 +55595,17,1.0,0,1.7671141624450684,96,1.0,2 +55596,17,1.0,0,1.5361171960830688,97,1.0,2 +55597,17,1.0,0,1.4041188955307007,98,1.0,2 +55598,17,1.0,0,1.3041201829910278,99,1.0,2 +55599,17,1.0,0,1.271120309829712,100,1.0,2 +55600,17,1.0,0,1.5191173553466797,101,1.0,2 +55601,17,1.0,0,1.6371159553527832,102,1.0,2 +55602,17,1.0,0,1.463118076324463,103,1.0,2 +55603,17,1.0,0,1.3121200799942017,104,1.0,2 +55604,17,1.0,0,1.39211905002594,105,1.0,2 +55605,17,1.0,0,1.8631129264831543,106,0.0,2 +55606,17,1.0,0,1.2361202239990234,107,1.0,2 +55607,17,1.0,0,1.197120189666748,108,0.0,2 +55608,17,0.0,0,1.8691129684448242,109,1.0,2 +55609,17,0.0,0,1.7101149559020996,110,0.0,2 +55610,17,1.0,0,1.6581156253814697,111,1.0,2 +55611,17,1.0,0,1.6311159133911133,112,0.0,2 +55612,17,1.0,0,1.3641194105148315,113,1.0,2 +55613,17,1.0,0,1.4441183805465698,114,1.0,2 +55614,17,0.0,0,1.2861204147338867,115,0.0,2 +55615,17,1.0,0,1.6621155738830566,116,1.0,2 +55616,17,1.0,0,1.572116732597351,117,1.0,2 +55617,17,1.0,0,1.2071201801300049,118,1.0,2 +55618,17,1.0,0,1.532117247581482,119,1.0,2 +55619,17,1.0,0,1.3561195135116577,120,1.0,2 +55620,17,1.0,0,1.3171199560165405,121,1.0,2 +55621,17,1.0,0,1.3821191787719727,122,1.0,2 +55622,17,1.0,0,1.5161174535751343,123,0.0,2 +55623,17,0.0,0,1.4221186637878418,124,0.0,2 +55624,17,1.0,0,1.3771191835403442,125,1.0,2 +55625,17,1.0,0,1.3461196422576904,126,1.0,2 +55626,17,1.0,0,1.4241186380386353,127,0.0,2 +55627,17,0.0,0,1.4391183853149414,128,0.0,2 +55628,17,1.0,0,1.783113956451416,129,1.0,2 +55629,17,1.0,0,1.3591194152832031,130,0.0,2 +55630,17,1.0,0,1.2851203680038452,131,1.0,2 +55631,17,1.0,0,1.345119595527649,132,1.0,2 +55632,17,1.0,0,1.3611193895339966,133,1.0,2 +55633,17,1.0,0,1.2721203565597534,134,1.0,2 +55634,17,1.0,0,1.2891203165054321,135,1.0,2 +55635,17,1.0,0,1.5341172218322754,136,1.0,2 +55636,17,1.0,0,1.5001176595687866,137,1.0,2 +55637,17,1.0,0,2.2901225090026855,138,1.0,2 +55638,17,1.0,0,1.4881178140640259,139,1.0,2 +55639,17,1.0,0,1.1851201057434082,140,0.0,2 +55640,17,0.0,0,1.4391183853149414,141,0.0,2 +55641,17,0.0,0,2.5411343574523926,142,0.0,2 +55642,17,0.0,0,2.2581210136413574,143,0.0,2 +55643,17,1.0,0,2.0761125087738037,144,1.0,2 +55644,17,1.0,0,1.5741167068481445,145,0.0,2 +55645,17,0.0,0,1.2501202821731567,146,1.0,2 +55646,17,0.0,0,1.197120189666748,147,0.0,2 +55647,17,1.0,0,1.6531157493591309,148,1.0,2 +55648,17,1.0,0,1.4271185398101807,149,1.0,2 +55649,17,1.0,0,1.3981189727783203,150,1.0,2 +55650,17,0.0,0,1.506117582321167,151,1.0,2 +55651,17,0.0,0,1.462118148803711,152,0.0,2 +55652,17,1.0,0,1.2391202449798584,153,1.0,2 +55653,17,1.0,0,1.2501202821731567,154,1.0,2 +55654,17,1.0,0,1.1861201524734497,155,1.0,2 +55655,17,1.0,0,1.4731179475784302,156,1.0,2 +55656,17,1.0,0,1.5621168613433838,157,1.0,2 +55657,17,1.0,0,1.6881152391433716,158,1.0,2 +55658,17,1.0,0,1.2731202840805054,159,1.0,2 +55659,17,1.0,0,1.197120189666748,160,1.0,2 +55660,17,1.0,0,1.7771141529083252,161,1.0,2 +55661,17,1.0,0,1.2431203126907349,162,1.0,2 +55662,17,1.0,0,1.3821191787719727,163,1.0,2 +55663,17,0.0,0,1.5081175565719604,164,0.0,2 +55664,17,1.0,0,1.4721180200576782,165,1.0,2 +55665,17,1.0,0,1.5191173553466797,166,1.0,2 +55666,17,1.0,0,1.4711179733276367,167,1.0,2 +55667,17,1.0,0,1.2751203775405884,168,1.0,2 +55668,17,1.0,0,1.6161161661148071,169,1.0,2 +55669,17,1.0,0,1.1601201295852661,170,1.0,2 +55670,17,1.0,0,1.2111202478408813,171,1.0,2 +55671,17,1.0,0,1.2051202058792114,172,1.0,2 +55672,17,1.0,0,1.4281185865402222,173,1.0,2 +55673,17,1.0,0,1.2811203002929688,174,1.0,2 +55674,17,1.0,0,1.3331197500228882,175,1.0,2 +55675,17,1.0,0,1.5391170978546143,176,0.0,2 +55676,17,0.0,0,1.9911112785339355,177,0.0,2 +55677,17,1.0,0,1.4431183338165283,178,1.0,2 +55678,17,1.0,0,1.385119080543518,179,1.0,2 +55679,17,1.0,0,1.5341172218322754,180,1.0,2 +55680,17,1.0,0,1.2401202917099,181,1.0,2 +55681,17,1.0,0,1.201120138168335,182,1.0,2 +55682,17,1.0,0,1.300120234489441,183,1.0,2 +55683,17,1.0,0,1.2261202335357666,184,1.0,2 +55684,17,1.0,0,1.927112102508545,185,1.0,2 +55685,17,1.0,0,1.3121200799942017,186,1.0,2 +55686,17,1.0,0,1.2501202821731567,187,1.0,2 +55687,17,1.0,0,1.6561156511306763,188,1.0,2 +55688,17,1.0,0,1.2991201877593994,189,1.0,2 +55689,17,1.0,0,1.3491195440292358,190,1.0,2 +55690,17,1.0,0,1.547116994857788,191,0.0,2 +55691,17,0.0,0,1.4881178140640259,192,0.0,2 +55692,17,0.0,0,1.410118818283081,193,0.0,2 +55693,17,0.0,0,1.2731202840805054,194,0.0,2 +55694,17,0.0,0,1.3301198482513428,195,0.0,2 +55695,17,0.0,0,1.9331121444702148,196,0.0,2 +55696,17,0.0,0,1.1291199922561646,197,0.0,2 +55697,17,1.0,0,2.127114772796631,198,1.0,2 +55698,17,0.0,0,1.22812020778656,199,1.0,2 +55699,17,1.0,0,2.163116455078125,200,1.0,2 +55700,17,0.0,0,2.138115406036377,201,0.0,2 +55701,17,1.0,0,1.1581201553344727,202,1.0,2 +55702,17,1.0,0,1.5231173038482666,203,1.0,2 +55703,17,1.0,0,1.4531182050704956,204,1.0,2 +55704,17,1.0,0,1.4601181745529175,205,1.0,2 +55705,17,1.0,0,1.4171186685562134,206,1.0,2 +55706,17,1.0,0,1.2141201496124268,207,0.0,2 +55707,17,0.0,0,1.837113380432129,208,1.0,2 +55708,17,0.0,0,1.1481200456619263,209,0.0,2 +55709,17,1.0,0,1.484117865562439,210,1.0,2 +55710,17,1.0,0,2.0521113872528076,211,1.0,2 +55711,17,1.0,0,1.6191160678863525,212,1.0,2 +55712,17,1.0,0,1.5431170463562012,213,1.0,2 +55713,17,1.0,0,1.4431183338165283,214,0.0,2 +55714,17,0.0,0,1.510117530822754,215,0.0,2 +55715,17,1.0,0,1.4671180248260498,216,1.0,2 +55716,17,1.0,0,1.5661168098449707,217,1.0,2 +55717,17,1.0,0,1.2021201848983765,218,1.0,2 +55718,17,1.0,0,1.3611193895339966,219,1.0,2 +55719,17,1.0,0,1.454118251800537,220,1.0,2 +55720,17,1.0,0,1.2891203165054321,221,1.0,2 +55721,17,1.0,0,1.2411202192306519,222,1.0,2 +55722,17,1.0,0,1.268120288848877,223,1.0,2 +55723,17,1.0,0,1.7631142139434814,224,1.0,2 +55724,17,1.0,0,1.605116367340088,225,1.0,2 +55725,17,1.0,0,1.1881201267242432,226,1.0,2 +55726,17,1.0,0,1.3611193895339966,227,1.0,2 +55727,17,1.0,0,1.4791178703308105,228,1.0,2 +55728,17,1.0,0,1.3031201362609863,229,1.0,2 +55729,17,1.0,0,1.458118200302124,230,1.0,2 +55730,17,1.0,0,1.877112865447998,231,1.0,2 +55731,17,1.0,0,1.27012038230896,232,1.0,2 +55732,17,1.0,0,1.4931176900863647,233,0.0,2 +55733,17,1.0,0,1.551116943359375,234,1.0,2 +55734,17,1.0,0,1.3461196422576904,235,1.0,2 +55735,17,1.0,0,1.4471182823181152,236,1.0,2 +55736,17,1.0,0,1.1911201477050781,237,1.0,2 +55737,17,1.0,0,1.7001150846481323,238,1.0,2 +55738,17,1.0,0,1.194120168685913,239,1.0,2 +55739,17,0.0,0,1.2911202907562256,240,0.0,2 +55740,17,1.0,0,1.173120141029358,241,1.0,2 +55741,17,1.0,0,1.4231185913085938,242,1.0,2 +55742,17,1.0,0,1.227120280265808,243,0.0,2 +55743,17,1.0,0,1.3251198530197144,244,1.0,2 +55744,17,1.0,0,1.2181202173233032,245,1.0,2 +55745,17,1.0,0,1.55411696434021,246,1.0,2 +55746,17,1.0,0,1.4231185913085938,247,1.0,2 +55747,17,1.0,0,1.549117088317871,248,1.0,2 +55748,17,1.0,0,1.3061201572418213,249,1.0,2 +55749,17,1.0,0,1.3061201572418213,250,1.0,2 +55750,17,1.0,0,1.7581143379211426,251,1.0,2 +55751,17,1.0,0,1.8641129732131958,252,1.0,2 +55752,17,1.0,0,1.6211161613464355,253,1.0,2 +55753,17,1.0,0,1.2751203775405884,254,0.0,2 +55754,17,0.0,0,1.1881201267242432,255,1.0,2 +55755,17,1.0,0,1.3291198015213013,256,1.0,2 +55756,17,1.0,0,2.431128978729248,257,1.0,2 +55757,17,0.0,0,2.184117555618286,258,0.0,2 +55758,17,1.0,0,1.432118535041809,259,1.0,2 +55759,17,1.0,0,1.5401171445846558,260,0.0,2 +55760,17,0.0,0,1.6031162738800049,261,0.0,2 +55761,17,0.0,0,1.2771203517913818,262,0.0,2 +55762,17,0.0,0,2.0451111793518066,263,0.0,2 +55763,17,0.0,0,1.4741179943084717,264,0.0,2 +55764,17,1.0,0,1.2021201848983765,265,0.0,2 +55765,17,0.0,0,1.6551156044006348,266,0.0,2 +55766,17,0.0,0,1.200120210647583,267,1.0,2 +55767,17,0.0,0,1.7551143169403076,268,0.0,2 +55768,17,0.0,0,1.6661155223846436,269,1.0,2 +55769,17,0.0,0,1.6541156768798828,270,0.0,2 +55770,17,0.0,0,1.2841203212738037,271,0.0,2 +55771,17,1.0,0,1.2781202793121338,272,0.0,2 +55772,17,0.0,0,1.4161187410354614,273,0.0,2 +55773,17,0.0,0,1.8141136169433594,274,0.0,2 +55774,17,1.0,0,1.4491182565689087,275,1.0,2 +55775,17,1.0,0,1.262120246887207,276,1.0,2 +55776,17,1.0,0,1.6291160583496094,277,1.0,2 +55777,17,1.0,0,1.2811203002929688,278,1.0,2 +55778,17,1.0,0,1.720114827156067,279,0.0,2 +55779,17,0.0,0,1.7261147499084473,280,1.0,2 +55780,17,0.0,0,1.5711166858673096,281,0.0,2 +55781,17,0.0,0,1.5891165733337402,282,0.0,2 +55782,17,1.0,0,1.5311172008514404,283,1.0,2 +55783,17,1.0,0,1.3521195650100708,284,1.0,2 +55784,17,1.0,0,1.3051201105117798,285,1.0,2 +55785,17,1.0,0,1.2181202173233032,286,1.0,2 +55786,17,1.0,0,1.4881178140640259,287,1.0,2 +55787,17,1.0,0,1.4231185913085938,288,1.0,2 +55788,17,0.0,0,1.4091187715530396,289,0.0,2 +55789,17,1.0,0,1.4031188488006592,290,1.0,2 +55790,17,1.0,0,1.3391196727752686,291,1.0,2 +55791,17,1.0,0,1.2581202983856201,292,1.0,2 +55792,17,1.0,0,1.5371171236038208,293,0.0,2 +55793,17,0.0,0,1.3481196165084839,294,0.0,2 +55794,17,1.0,0,1.764114260673523,295,1.0,2 +55795,17,1.0,0,1.4461183547973633,296,1.0,2 +55796,17,1.0,0,1.4971176385879517,297,1.0,2 +55797,17,1.0,0,1.271120309829712,298,1.0,2 +55798,17,1.0,0,1.3641194105148315,299,1.0,2 +55799,17,1.0,0,1.3091200590133667,300,0.0,2 +55800,17,1.0,0,2.2461204528808594,301,1.0,2 +55801,17,1.0,0,1.3871190547943115,302,1.0,2 +55802,17,1.0,0,1.2491202354431152,303,1.0,2 +55803,17,1.0,0,1.4131187200546265,304,1.0,2 +55804,17,1.0,0,1.41511869430542,305,1.0,2 +55805,17,1.0,0,1.4741179943084717,306,1.0,2 +55806,17,1.0,0,1.4171186685562134,307,1.0,2 +55807,17,1.0,0,1.507117509841919,308,0.0,2 +55808,17,0.0,0,1.1911201477050781,309,0.0,2 +55809,17,0.0,0,1.5691168308258057,310,0.0,2 +55810,17,1.0,0,2.021111011505127,311,1.0,2 +55811,17,1.0,0,1.5081175565719604,312,1.0,2 +55812,17,1.0,0,1.507117509841919,313,1.0,2 +55813,17,1.0,0,1.393118977546692,314,1.0,2 +55814,17,1.0,0,1.642115831375122,315,1.0,2 +55815,17,1.0,0,1.7281147241592407,316,0.0,2 +55816,17,0.0,0,2.0681121349334717,317,0.0,2 +55817,17,1.0,0,1.4891177415847778,318,1.0,2 +55818,17,1.0,0,1.458118200302124,319,1.0,2 +55819,17,1.0,0,1.4011188745498657,320,0.0,2 +55820,17,0.0,0,1.319119930267334,321,0.0,2 +55821,17,0.0,0,1.8871126174926758,322,0.0,2 +55822,17,0.0,0,1.507117509841919,323,1.0,2 +55823,17,0.0,0,1.1071200370788574,324,0.0,2 +55824,17,0.0,0,1.7741141319274902,325,1.0,2 +55825,17,0.0,0,1.529117226600647,326,0.0,2 +55826,17,1.0,0,1.5331171751022339,327,1.0,2 +55827,17,1.0,0,1.506117582321167,328,1.0,2 +55828,17,1.0,0,1.414118766784668,329,1.0,2 +55829,17,1.0,0,1.5111174583435059,330,1.0,2 +55830,17,1.0,0,1.555116891860962,331,1.0,2 +55831,17,1.0,0,1.5671167373657227,332,0.0,2 +55832,17,0.0,0,1.9911112785339355,333,0.0,2 +55833,17,1.0,0,1.8001137971878052,334,0.0,2 +55834,17,0.0,0,1.1891201734542847,335,0.0,2 +55835,17,1.0,0,2.132115125656128,336,1.0,2 +55836,17,1.0,0,1.2861204147338867,337,1.0,2 +55837,17,1.0,0,1.6411159038543701,338,1.0,2 +55838,17,1.0,0,1.1771200895309448,339,1.0,2 +55839,17,1.0,0,1.4481183290481567,340,1.0,2 +55840,17,1.0,0,1.4911177158355713,341,1.0,2 +55841,17,1.0,0,1.2431203126907349,342,0.0,2 +55842,17,1.0,0,2.403127670288086,343,1.0,2 +55843,17,1.0,0,1.1591200828552246,344,1.0,2 +55844,17,1.0,0,1.5191173553466797,345,1.0,2 +55845,17,1.0,0,1.5811166763305664,346,1.0,2 +55846,17,1.0,0,1.5091174840927124,347,1.0,2 +55847,17,1.0,0,1.271120309829712,348,1.0,2 +55848,17,1.0,0,1.5171173810958862,349,1.0,2 +55849,17,1.0,0,1.4731179475784302,350,1.0,2 +55850,17,1.0,0,1.323119878768921,351,1.0,2 +55851,17,1.0,0,1.8441132307052612,352,1.0,2 +55852,17,1.0,0,1.318120002746582,353,1.0,2 +55853,17,1.0,0,1.4511182308197021,354,1.0,2 +55854,17,1.0,0,2.0031111240386963,355,1.0,2 +55855,17,1.0,0,1.2851203680038452,356,0.0,2 +55856,17,0.0,0,2.396127462387085,357,0.0,2 +55857,17,1.0,0,1.553117036819458,358,1.0,2 +55858,17,1.0,0,1.2431203126907349,359,1.0,2 +55859,17,1.0,0,1.2401202917099,360,1.0,2 +55860,17,1.0,0,1.6141161918640137,361,1.0,2 +55861,17,1.0,0,1.3121200799942017,362,1.0,2 +55862,17,1.0,0,1.2381203174591064,363,1.0,2 +55863,17,1.0,0,1.2981202602386475,364,1.0,2 +55864,17,1.0,0,1.4821178913116455,365,1.0,2 +55865,17,1.0,0,1.3841191530227661,366,1.0,2 +55866,17,1.0,0,1.8931126594543457,367,0.0,2 +55867,17,0.0,0,2.101113796234131,368,0.0,2 +55868,17,0.0,0,1.459118127822876,369,1.0,2 +55869,17,0.0,0,1.741114616394043,370,0.0,2 +55870,17,1.0,0,1.2691203355789185,371,1.0,2 +55871,17,1.0,0,1.6921151876449585,372,1.0,2 +55872,17,1.0,0,1.7501144409179688,373,1.0,2 +55873,17,1.0,0,1.3561195135116577,374,1.0,2 +55874,17,1.0,0,1.194120168685913,375,1.0,2 +55875,17,1.0,0,1.3461196422576904,376,1.0,2 +55876,17,1.0,0,2.025110960006714,377,1.0,2 +55877,17,1.0,0,1.3211199045181274,378,1.0,2 +55878,17,1.0,0,1.5681167840957642,379,1.0,2 +55879,17,1.0,0,1.262120246887207,380,1.0,2 +55880,17,1.0,0,1.3021202087402344,381,1.0,2 +55881,17,1.0,0,1.2191202640533447,382,1.0,2 +55882,17,1.0,0,1.3271198272705078,383,1.0,2 +55883,17,1.0,0,1.3591194152832031,384,1.0,2 +55884,17,1.0,0,1.4791178703308105,385,0.0,2 +55885,17,1.0,0,1.7171149253845215,386,1.0,2 +55886,17,1.0,0,1.5091174840927124,387,1.0,2 +55887,17,1.0,0,1.388119101524353,388,1.0,2 +55888,17,1.0,0,1.3131200075149536,389,1.0,2 +55889,17,1.0,0,1.605116367340088,390,1.0,2 +55890,17,1.0,0,1.2881203889846802,391,1.0,2 +55891,17,0.0,0,1.6821153163909912,392,0.0,2 +55892,17,1.0,0,1.3961189985275269,393,1.0,2 +55893,17,1.0,0,1.297120213508606,394,1.0,2 +55894,17,1.0,0,1.3771191835403442,395,1.0,2 +55895,17,1.0,0,1.2761203050613403,396,1.0,2 +55896,17,1.0,0,1.4091187715530396,397,0.0,2 +55897,17,0.0,0,1.3011201620101929,398,1.0,2 +55898,17,0.0,0,1.5051175355911255,399,0.0,2 +55899,17,1.0,0,1.2661203145980835,400,1.0,2 +55900,17,1.0,0,1.297120213508606,401,0.0,2 +55901,17,0.0,0,2.371126174926758,402,1.0,2 +55902,17,0.0,0,1.5931165218353271,403,0.0,2 +55903,17,0.0,0,1.2561203241348267,404,0.0,2 +55904,17,0.0,0,1.875112771987915,405,0.0,2 +55905,17,0.0,0,1.1771200895309448,406,0.0,2 +55906,17,0.0,0,1.1721200942993164,407,0.0,2 +55907,17,0.0,0,1.4201186895370483,408,0.0,2 +55908,17,1.0,0,1.4531182050704956,409,1.0,2 +55909,17,1.0,0,1.2391202449798584,410,1.0,2 +55910,17,1.0,0,1.2761203050613403,411,1.0,2 +55911,17,1.0,0,1.2521202564239502,412,1.0,2 +55912,17,1.0,0,1.1861201524734497,413,1.0,2 +55913,17,1.0,0,1.2331202030181885,414,1.0,2 +55914,17,0.0,0,1.7011151313781738,415,0.0,2 +55915,17,1.0,0,1.5201174020767212,416,1.0,2 +55916,17,1.0,0,1.296120285987854,417,1.0,2 +55917,17,1.0,0,1.2361202239990234,418,1.0,2 +55918,17,1.0,0,1.2831203937530518,419,1.0,2 +55919,17,1.0,0,1.5341172218322754,420,0.0,2 +55920,17,1.0,0,1.7081149816513062,421,1.0,2 +55921,17,1.0,0,1.4491182565689087,422,1.0,2 +55922,17,1.0,0,1.3861191272735596,423,1.0,2 +55923,17,1.0,0,1.672115445137024,424,1.0,2 +55924,17,1.0,0,1.3381197452545166,425,1.0,2 +55925,17,1.0,0,1.3011201620101929,426,1.0,2 +55926,17,1.0,0,1.3551194667816162,427,1.0,2 +55927,17,1.0,0,1.2891203165054321,428,1.0,2 +55928,17,1.0,0,1.344119668006897,429,1.0,2 +55929,17,1.0,0,1.292120337486267,430,1.0,2 +55930,17,1.0,0,1.3131200075149536,431,1.0,2 +55931,17,1.0,0,1.322119951248169,432,1.0,2 +55932,17,1.0,0,1.440118432044983,433,1.0,2 +55933,17,1.0,0,1.4051188230514526,434,1.0,2 +55934,17,1.0,0,1.2161202430725098,435,1.0,2 +55935,17,1.0,0,1.2721203565597534,436,1.0,2 +55936,17,1.0,0,1.4211186170578003,437,1.0,2 +55937,17,1.0,0,1.1771200895309448,438,1.0,2 +55938,17,1.0,0,1.3531194925308228,439,1.0,2 +55939,17,1.0,0,1.1681201457977295,440,1.0,2 +55940,17,1.0,0,1.436118483543396,441,1.0,2 +55941,17,1.0,0,1.528117299079895,442,1.0,2 +55942,17,1.0,0,1.267120361328125,443,1.0,2 +55943,17,1.0,0,1.454118251800537,444,1.0,2 +55944,17,1.0,0,1.2531203031539917,445,1.0,2 +55945,17,1.0,0,1.225120186805725,446,0.0,2 +55946,17,1.0,0,2.4651308059692383,447,1.0,2 +55947,17,1.0,0,1.4241186380386353,448,1.0,2 +55948,17,1.0,0,1.5961164236068726,449,1.0,2 +55949,17,1.0,0,1.852113127708435,450,1.0,2 +55950,17,1.0,0,1.8211135864257812,451,1.0,2 +55951,17,1.0,0,1.22812020778656,452,0.0,2 +55952,17,1.0,0,1.4671180248260498,453,1.0,2 +55953,17,1.0,0,1.2941203117370605,454,1.0,2 +55954,17,1.0,0,1.3051201105117798,455,1.0,2 +55955,17,1.0,0,1.4241186380386353,456,1.0,2 +55956,17,1.0,0,1.318120002746582,457,0.0,2 +55957,17,1.0,0,1.41511869430542,458,1.0,2 +55958,17,1.0,0,1.5521169900894165,459,1.0,2 +55959,17,1.0,0,1.2231202125549316,460,1.0,2 +55960,17,1.0,0,1.2751203775405884,461,1.0,2 +55961,17,1.0,0,1.804113745689392,462,1.0,2 +55962,17,1.0,0,1.7911138534545898,463,1.0,2 +55963,17,1.0,0,1.6091163158416748,464,0.0,2 +55964,17,0.0,0,1.36311936378479,465,0.0,2 +55965,17,1.0,0,1.6161161661148071,466,0.0,2 +55966,17,1.0,0,1.5811166763305664,467,1.0,2 +55967,17,1.0,0,1.2511203289031982,468,1.0,2 +55968,17,1.0,0,1.3361197710037231,469,1.0,2 +55969,17,1.0,0,1.337119698524475,470,0.0,2 +55970,17,1.0,0,2.024110794067383,471,0.0,2 +55971,17,0.0,0,1.8531131744384766,472,0.0,2 +55972,17,0.0,0,1.3421196937561035,473,0.0,2 +55973,17,0.0,0,1.4701180458068848,474,0.0,2 +55974,17,1.0,0,2.382126808166504,475,1.0,2 +55975,17,1.0,0,1.3211199045181274,476,1.0,2 +55976,17,1.0,0,1.2781202793121338,477,1.0,2 +55977,17,1.0,0,1.477117896080017,478,1.0,2 +55978,17,1.0,0,1.4121187925338745,479,1.0,2 +55979,17,1.0,0,1.2101202011108398,480,1.0,2 +55980,17,1.0,0,1.5651168823242188,481,1.0,2 +55981,17,1.0,0,1.3581194877624512,482,1.0,2 +55982,17,1.0,0,1.3381197452545166,483,1.0,2 +55983,17,1.0,0,1.5601168870925903,484,1.0,2 +55984,17,1.0,0,1.2851203680038452,485,1.0,2 +55985,17,1.0,0,1.3211199045181274,486,1.0,2 +55986,17,1.0,0,1.3121200799942017,487,1.0,2 +55987,17,1.0,0,1.3241199254989624,488,1.0,2 +55988,17,1.0,0,1.2951202392578125,489,1.0,2 +55989,17,1.0,0,1.197120189666748,490,1.0,2 +55990,17,1.0,0,1.4271185398101807,491,1.0,2 +55991,17,1.0,0,1.3911190032958984,492,1.0,2 +55992,17,1.0,0,1.130120038986206,493,1.0,2 +55993,17,1.0,0,1.2731202840805054,494,1.0,2 +55994,17,1.0,0,1.2111202478408813,495,0.0,2 +55995,17,0.0,0,1.834113359451294,496,0.0,2 +55996,17,0.0,0,1.6381158828735352,497,0.0,2 +55997,17,0.0,0,1.8031136989593506,498,0.0,2 +55998,17,0.0,0,1.319119930267334,499,1.0,2 +55999,17,0.0,0,1.1521201133728027,500,0.0,2 +56000,17,0.0,1,1.9411120414733887,1,1.0,2 +56001,17,0.0,1,1.9361120462417603,2,0.0,2 +56002,17,1.0,1,1.6991150379180908,3,1.0,2 +56003,17,1.0,1,1.2591203451156616,4,1.0,2 +56004,17,1.0,1,1.3161200284957886,5,1.0,2 +56005,17,1.0,1,1.2021201848983765,6,0.0,2 +56006,17,1.0,1,1.9791114330291748,7,1.0,2 +56007,17,1.0,1,1.6781153678894043,8,1.0,2 +56008,17,1.0,1,1.3421196937561035,9,0.0,2 +56009,17,0.0,1,1.4251185655593872,10,0.0,2 +56010,17,1.0,1,1.528117299079895,11,1.0,2 +56011,17,1.0,1,1.3041201829910278,12,0.0,2 +56012,17,0.0,1,2.2171192169189453,13,0.0,2 +56013,17,1.0,1,1.6651155948638916,14,1.0,2 +56014,17,1.0,1,1.1771200895309448,15,0.0,2 +56015,17,0.0,1,1.3731192350387573,16,1.0,2 +56016,17,0.0,1,1.3061201572418213,17,0.0,2 +56017,17,1.0,1,1.645115852355957,18,1.0,2 +56018,17,1.0,1,1.7251148223876953,19,0.0,2 +56019,17,0.0,1,1.2811203002929688,20,0.0,2 +56020,17,1.0,1,2.142115592956543,21,1.0,2 +56021,17,1.0,1,1.3721193075180054,22,0.0,2 +56022,17,1.0,1,2.2221193313598633,23,1.0,2 +56023,17,1.0,1,1.4251185655593872,24,0.0,2 +56024,17,1.0,1,1.877112865447998,25,0.0,2 +56025,17,1.0,1,1.4511182308197021,26,1.0,2 +56026,17,1.0,1,1.3251198530197144,27,1.0,2 +56027,17,1.0,1,1.3291198015213013,28,1.0,2 +56028,17,1.0,1,1.2761203050613403,29,1.0,2 +56029,17,1.0,1,2.116114377975464,30,1.0,2 +56030,17,1.0,1,1.2951202392578125,31,0.0,2 +56031,17,1.0,1,1.6841152906417847,32,0.0,2 +56032,17,1.0,1,1.231120228767395,33,1.0,2 +56033,17,1.0,1,1.6801153421401978,34,0.0,2 +56034,17,0.0,1,1.300120234489441,35,0.0,2 +56035,17,1.0,1,1.7461144924163818,36,1.0,2 +56036,17,1.0,1,1.4381184577941895,37,1.0,2 +56037,17,1.0,1,1.1381200551986694,38,1.0,2 +56038,17,1.0,1,1.2821203470230103,39,1.0,2 +56039,17,1.0,1,1.3961189985275269,40,1.0,2 +56040,17,1.0,1,1.3561195135116577,41,1.0,2 +56041,17,1.0,1,1.5661168098449707,42,1.0,2 +56042,17,1.0,1,1.2131202220916748,43,0.0,2 +56043,17,1.0,1,1.8991124629974365,44,0.0,2 +56044,17,1.0,1,1.7171149253845215,45,1.0,2 +56045,17,1.0,1,1.9631116390228271,46,1.0,2 +56046,17,1.0,1,1.3751192092895508,47,1.0,2 +56047,17,1.0,1,1.3531194925308228,48,0.0,2 +56048,17,1.0,1,1.322119951248169,49,0.0,2 +56049,17,0.0,1,1.5121175050735474,50,0.0,2 +56050,17,1.0,1,2.122114658355713,51,1.0,2 +56051,17,1.0,1,1.2181202173233032,52,1.0,2 +56052,17,1.0,1,1.2591203451156616,53,0.0,2 +56053,17,0.0,1,1.2021201848983765,54,0.0,2 +56054,17,1.0,1,1.8891127109527588,55,0.0,2 +56055,17,0.0,1,1.4131187200546265,56,0.0,2 +56056,17,0.0,1,1.3331197500228882,57,0.0,2 +56057,17,1.0,1,1.4061188697814941,58,0.0,2 +56058,17,1.0,1,1.7221148014068604,59,1.0,2 +56059,17,1.0,1,1.3351197242736816,60,1.0,2 +56060,17,1.0,1,1.3281198740005493,61,0.0,2 +56061,17,1.0,1,1.8951125144958496,62,1.0,2 +56062,17,1.0,1,1.7511143684387207,63,1.0,2 +56063,17,1.0,1,1.1501200199127197,64,0.0,2 +56064,17,1.0,1,2.2101187705993652,65,0.0,2 +56065,17,1.0,1,1.4501183032989502,66,1.0,2 +56066,17,1.0,1,1.2411202192306519,67,1.0,2 +56067,17,1.0,1,1.5481170415878296,68,0.0,2 +56068,17,1.0,1,1.647115707397461,69,0.0,2 +56069,17,0.0,1,1.2081202268600464,70,0.0,2 +56070,17,0.0,1,1.8361133337020874,71,0.0,2 +56071,17,0.0,1,1.458118200302124,72,0.0,2 +56072,17,0.0,1,1.1661200523376465,73,1.0,2 +56073,17,0.0,1,1.2111202478408813,74,0.0,2 +56074,17,0.0,1,1.9641116857528687,75,0.0,2 +56075,17,1.0,1,1.506117582321167,76,0.0,2 +56076,17,0.0,1,1.9781115055084229,77,0.0,2 +56077,17,1.0,1,1.8021137714385986,78,1.0,2 +56078,17,1.0,1,2.131114959716797,79,1.0,2 +56079,17,1.0,1,1.6141161918640137,80,1.0,2 +56080,17,1.0,1,1.597116470336914,81,1.0,2 +56081,17,1.0,1,1.6841152906417847,82,0.0,2 +56082,17,0.0,1,1.952111840248108,83,0.0,2 +56083,17,1.0,1,2.441129684448242,84,0.0,2 +56084,17,0.0,1,1.3981189727783203,85,0.0,2 +56085,17,0.0,1,1.4691179990768433,86,0.0,2 +56086,17,0.0,1,1.8011138439178467,87,0.0,2 +56087,17,1.0,1,1.407118797302246,88,1.0,2 +56088,17,1.0,1,1.3421196937561035,89,1.0,2 +56089,17,1.0,1,1.6541156768798828,90,1.0,2 +56090,17,1.0,1,1.4951176643371582,91,1.0,2 +56091,17,1.0,1,1.1741201877593994,92,1.0,2 +56092,17,1.0,1,1.267120361328125,93,0.0,2 +56093,17,1.0,1,1.7301146984100342,94,1.0,2 +56094,17,1.0,1,1.837113380432129,95,1.0,2 +56095,17,1.0,1,1.3681193590164185,96,1.0,2 +56096,17,1.0,1,1.6001163721084595,97,1.0,2 +56097,17,1.0,1,1.2361202239990234,98,1.0,2 +56098,17,1.0,1,1.5681167840957642,99,1.0,2 +56099,17,1.0,1,1.4681180715560913,100,1.0,2 +56100,17,1.0,1,1.267120361328125,101,1.0,2 +56101,17,1.0,1,1.167120099067688,102,1.0,2 +56102,17,1.0,1,1.4341185092926025,103,1.0,2 +56103,17,1.0,1,1.2441202402114868,104,0.0,2 +56104,17,1.0,1,2.5461344718933105,105,1.0,2 +56105,17,1.0,1,1.5271172523498535,106,1.0,2 +56106,17,1.0,1,1.4221186637878418,107,0.0,2 +56107,17,0.0,1,1.1201200485229492,108,0.0,2 +56108,17,0.0,1,1.139120101928711,109,1.0,2 +56109,17,0.0,1,1.6001163721084595,110,1.0,2 +56110,17,0.0,1,1.2151201963424683,111,1.0,2 +56111,17,0.0,1,1.2891203165054321,112,0.0,2 +56112,17,0.0,1,1.2111202478408813,113,1.0,2 +56113,17,0.0,1,1.7031149864196777,114,0.0,2 +56114,17,0.0,1,1.1871201992034912,115,0.0,2 +56115,17,1.0,1,1.3781192302703857,116,1.0,2 +56116,17,1.0,1,1.3721193075180054,117,1.0,2 +56117,17,1.0,1,1.2751203775405884,118,0.0,2 +56118,17,1.0,1,1.2881203889846802,119,1.0,2 +56119,17,1.0,1,1.268120288848877,120,1.0,2 +56120,17,1.0,1,1.20412015914917,121,1.0,2 +56121,17,1.0,1,1.2861204147338867,122,0.0,2 +56122,17,0.0,1,1.1881201267242432,123,0.0,2 +56123,17,0.0,1,1.7591142654418945,124,0.0,2 +56124,17,1.0,1,1.9991111755371094,125,0.0,2 +56125,17,1.0,1,1.6291160583496094,126,1.0,2 +56126,17,1.0,1,1.5871164798736572,127,1.0,2 +56127,17,1.0,1,1.2831203937530518,128,1.0,2 +56128,17,1.0,1,1.5821166038513184,129,1.0,2 +56129,17,1.0,1,1.318120002746582,130,1.0,2 +56130,17,1.0,1,1.170120120048523,131,1.0,2 +56131,17,1.0,1,2.2251195907592773,132,0.0,2 +56132,17,1.0,1,1.6761153936386108,133,1.0,2 +56133,17,1.0,1,1.3991189002990723,134,1.0,2 +56134,17,1.0,1,1.2451202869415283,135,1.0,2 +56135,17,1.0,1,1.2941203117370605,136,1.0,2 +56136,17,1.0,1,1.4301185607910156,137,1.0,2 +56137,17,1.0,1,1.26412034034729,138,0.0,2 +56138,17,1.0,1,2.0521113872528076,139,1.0,2 +56139,17,1.0,1,1.6541156768798828,140,1.0,2 +56140,17,1.0,1,1.2461202144622803,141,1.0,2 +56141,17,1.0,1,1.5451171398162842,142,0.0,2 +56142,17,0.0,1,1.8011138439178467,143,0.0,2 +56143,17,1.0,1,2.387126922607422,144,1.0,2 +56144,17,1.0,1,1.5781166553497314,145,0.0,2 +56145,17,1.0,1,1.7241147756576538,146,0.0,2 +56146,17,0.0,1,1.9311120510101318,147,1.0,2 +56147,17,0.0,1,1.136120080947876,148,0.0,2 +56148,17,0.0,1,1.1811201572418213,149,0.0,2 +56149,17,1.0,1,1.9581117630004883,150,1.0,2 +56150,17,1.0,1,1.2571202516555786,151,1.0,2 +56151,17,1.0,1,1.1981201171875,152,1.0,2 +56152,17,1.0,1,1.6091163158416748,153,1.0,2 +56153,17,1.0,1,1.2801203727722168,154,1.0,2 +56154,17,1.0,1,1.6281160116195679,155,1.0,2 +56155,17,1.0,1,1.3331197500228882,156,0.0,2 +56156,17,1.0,1,1.6671154499053955,157,1.0,2 +56157,17,1.0,1,1.1821200847625732,158,0.0,2 +56158,17,1.0,1,1.2191202640533447,159,1.0,2 +56159,17,1.0,1,1.5181174278259277,160,1.0,2 +56160,17,1.0,1,1.695115089416504,161,0.0,2 +56161,17,1.0,1,2.0041112899780273,162,1.0,2 +56162,17,1.0,1,1.557116985321045,163,1.0,2 +56163,17,1.0,1,1.3861191272735596,164,1.0,2 +56164,17,1.0,1,1.4191186428070068,165,1.0,2 +56165,17,1.0,1,1.9831113815307617,166,0.0,2 +56166,17,0.0,1,1.6781153678894043,167,0.0,2 +56167,17,1.0,1,1.5451171398162842,168,1.0,2 +56168,17,1.0,1,1.4211186170578003,169,0.0,2 +56169,17,1.0,1,1.2881203889846802,170,0.0,2 +56170,17,0.0,1,1.1981201171875,171,1.0,2 +56171,17,0.0,1,1.407118797302246,172,0.0,2 +56172,17,1.0,1,1.2131202220916748,173,1.0,2 +56173,17,1.0,1,1.4411183595657349,174,1.0,2 +56174,17,1.0,1,1.8231134414672852,175,1.0,2 +56175,17,1.0,1,1.7111148834228516,176,1.0,2 +56176,17,1.0,1,1.271120309829712,177,1.0,2 +56177,17,1.0,1,1.410118818283081,178,1.0,2 +56178,17,1.0,1,1.3391196727752686,179,0.0,2 +56179,17,0.0,1,1.5771167278289795,180,0.0,2 +56180,17,1.0,1,2.3331246376037598,181,0.0,2 +56181,17,1.0,1,2.398127555847168,182,0.0,2 +56182,17,0.0,1,1.7111148834228516,183,0.0,2 +56183,17,0.0,1,1.524117350578308,184,0.0,2 +56184,17,0.0,1,1.804113745689392,185,0.0,2 +56185,17,0.0,1,1.735114574432373,186,0.0,2 +56186,17,1.0,1,2.3041231632232666,187,0.0,2 +56187,17,0.0,1,1.639115810394287,188,0.0,2 +56188,17,1.0,1,1.2981202602386475,189,1.0,2 +56189,17,1.0,1,1.322119951248169,190,1.0,2 +56190,17,1.0,1,1.3691192865371704,191,0.0,2 +56191,17,1.0,1,2.376126527786255,192,0.0,2 +56192,17,0.0,1,1.5411171913146973,193,0.0,2 +56193,17,1.0,1,1.5521169900894165,194,1.0,2 +56194,17,1.0,1,1.393118977546692,195,1.0,2 +56195,17,1.0,1,1.2911202907562256,196,1.0,2 +56196,17,1.0,1,1.6371159553527832,197,0.0,2 +56197,17,1.0,1,1.2081202268600464,198,1.0,2 +56198,17,1.0,1,1.389119029045105,199,1.0,2 +56199,17,1.0,1,1.3351197242736816,200,1.0,2 +56200,17,1.0,1,1.6861152648925781,201,0.0,2 +56201,17,0.0,1,2.173117160797119,202,1.0,2 +56202,17,0.0,1,1.2421202659606934,203,0.0,2 +56203,17,0.0,1,1.1841201782226562,204,1.0,2 +56204,17,0.0,1,1.136120080947876,205,0.0,2 +56205,17,1.0,1,2.008111000061035,206,1.0,2 +56206,17,1.0,1,1.1691200733184814,207,1.0,2 +56207,17,1.0,1,1.3591194152832031,208,0.0,2 +56208,17,1.0,1,1.9361120462417603,209,1.0,2 +56209,17,1.0,1,1.4341185092926025,210,1.0,2 +56210,17,1.0,1,1.2051202058792114,211,1.0,2 +56211,17,1.0,1,1.5341172218322754,212,0.0,2 +56212,17,0.0,1,1.52511727809906,213,0.0,2 +56213,17,1.0,1,1.4901177883148193,214,1.0,2 +56214,17,1.0,1,1.3991189002990723,215,0.0,2 +56215,17,0.0,1,1.268120288848877,216,0.0,2 +56216,17,1.0,1,2.405128002166748,217,1.0,2 +56217,17,1.0,1,1.2171201705932617,218,0.0,2 +56218,17,1.0,1,1.4011188745498657,219,1.0,2 +56219,17,1.0,1,1.2481203079223633,220,1.0,2 +56220,17,1.0,1,1.6371159553527832,221,0.0,2 +56221,17,1.0,1,1.5191173553466797,222,1.0,2 +56222,17,1.0,1,1.7181148529052734,223,0.0,2 +56223,17,1.0,1,2.2331199645996094,224,1.0,2 +56224,17,1.0,1,1.2811203002929688,225,0.0,2 +56225,17,1.0,1,1.8731129169464111,226,1.0,2 +56226,17,1.0,1,1.4471182823181152,227,1.0,2 +56227,17,1.0,1,1.3501195907592773,228,1.0,2 +56228,17,1.0,1,1.5311172008514404,229,1.0,2 +56229,17,1.0,1,1.549117088317871,230,1.0,2 +56230,17,1.0,1,1.3201199769973755,231,1.0,2 +56231,17,1.0,1,1.139120101928711,232,0.0,2 +56232,17,1.0,1,1.194120168685913,233,0.0,2 +56233,17,0.0,1,1.1581201553344727,234,0.0,2 +56234,17,0.0,1,2.3041231632232666,235,0.0,2 +56235,17,0.0,1,1.7941138744354248,236,0.0,2 +56236,17,0.0,1,1.8891127109527588,237,0.0,2 +56237,17,0.0,1,1.7921139001846313,238,0.0,2 +56238,17,1.0,1,1.7631142139434814,239,1.0,2 +56239,17,1.0,1,1.2461202144622803,240,1.0,2 +56240,17,1.0,1,1.319119930267334,241,1.0,2 +56241,17,1.0,1,1.2151201963424683,242,1.0,2 +56242,17,1.0,1,1.8971126079559326,243,0.0,2 +56243,17,1.0,1,1.3301198482513428,244,1.0,2 +56244,17,1.0,1,1.3291198015213013,245,1.0,2 +56245,17,1.0,1,1.203120231628418,246,1.0,2 +56246,17,1.0,1,1.5401171445846558,247,1.0,2 +56247,17,1.0,1,1.4191186428070068,248,1.0,2 +56248,17,1.0,1,1.6381158828735352,249,0.0,2 +56249,17,1.0,1,2.5291337966918945,250,1.0,2 +56250,17,1.0,1,1.4391183853149414,251,1.0,2 +56251,17,1.0,1,1.2571202516555786,252,1.0,2 +56252,17,1.0,1,1.1681201457977295,253,1.0,2 +56253,17,1.0,1,1.3071200847625732,254,1.0,2 +56254,17,1.0,1,1.4611181020736694,255,1.0,2 +56255,17,1.0,1,1.1571201086044312,256,1.0,2 +56256,17,1.0,1,1.5601168870925903,257,1.0,2 +56257,17,1.0,1,1.293120265007019,258,1.0,2 +56258,17,1.0,1,1.4701180458068848,259,1.0,2 +56259,17,1.0,1,1.2721203565597534,260,1.0,2 +56260,17,1.0,1,1.2531203031539917,261,1.0,2 +56261,17,1.0,1,1.370119333267212,262,1.0,2 +56262,17,1.0,1,1.3961189985275269,263,1.0,2 +56263,17,1.0,1,1.2601202726364136,264,0.0,2 +56264,17,1.0,1,1.8761128187179565,265,1.0,2 +56265,17,1.0,1,1.167120099067688,266,1.0,2 +56266,17,1.0,1,1.3491195440292358,267,1.0,2 +56267,17,1.0,1,1.9161123037338257,268,1.0,2 +56268,17,1.0,1,1.3131200075149536,269,1.0,2 +56269,17,1.0,1,1.2461202144622803,270,1.0,2 +56270,17,1.0,1,1.4751179218292236,271,1.0,2 +56271,17,1.0,1,1.5181174278259277,272,1.0,2 +56272,17,1.0,1,1.4761179685592651,273,1.0,2 +56273,17,1.0,1,1.2951202392578125,274,0.0,2 +56274,17,0.0,1,2.2431201934814453,275,0.0,2 +56275,17,0.0,1,1.2911202907562256,276,0.0,2 +56276,17,0.0,1,1.2821203470230103,277,0.0,2 +56277,17,1.0,1,1.414118766784668,278,1.0,2 +56278,17,1.0,1,1.2501202821731567,279,1.0,2 +56279,17,1.0,1,1.261120319366455,280,1.0,2 +56280,17,1.0,1,1.7081149816513062,281,1.0,2 +56281,17,1.0,1,1.5171173810958862,282,0.0,2 +56282,17,1.0,1,2.0541114807128906,283,1.0,2 +56283,17,1.0,1,1.720114827156067,284,1.0,2 +56284,17,1.0,1,1.506117582321167,285,1.0,2 +56285,17,1.0,1,1.227120280265808,286,1.0,2 +56286,17,1.0,1,1.1851201057434082,287,1.0,2 +56287,17,1.0,1,1.225120186805725,288,1.0,2 +56288,17,1.0,1,1.2791203260421753,289,1.0,2 +56289,17,1.0,1,1.201120138168335,290,1.0,2 +56290,17,1.0,1,1.4961177110671997,291,1.0,2 +56291,17,1.0,1,1.5311172008514404,292,1.0,2 +56292,17,1.0,1,1.3971189260482788,293,1.0,2 +56293,17,1.0,1,1.1831201314926147,294,0.0,2 +56294,17,1.0,1,1.8981125354766846,295,1.0,2 +56295,17,1.0,1,1.4891177415847778,296,1.0,2 +56296,17,1.0,1,1.345119595527649,297,1.0,2 +56297,17,1.0,1,1.3941190242767334,298,0.0,2 +56298,17,1.0,1,1.7711141109466553,299,1.0,2 +56299,17,1.0,1,1.7631142139434814,300,1.0,2 +56300,17,1.0,1,1.34011971950531,301,1.0,2 +56301,17,1.0,1,1.3361197710037231,302,1.0,2 +56302,17,1.0,1,1.267120361328125,303,1.0,2 +56303,17,1.0,1,1.2531203031539917,304,0.0,2 +56304,17,1.0,1,2.5791358947753906,305,1.0,2 +56305,17,1.0,1,1.4051188230514526,306,1.0,2 +56306,17,1.0,1,1.463118076324463,307,1.0,2 +56307,17,1.0,1,1.3721193075180054,308,1.0,2 +56308,17,1.0,1,1.6381158828735352,309,1.0,2 +56309,17,1.0,1,1.1751201152801514,310,1.0,2 +56310,17,1.0,1,1.3691192865371704,311,1.0,2 +56311,17,1.0,1,1.5151174068450928,312,0.0,2 +56312,17,1.0,1,1.203120231628418,313,0.0,2 +56313,17,0.0,1,1.2731202840805054,314,0.0,2 +56314,17,1.0,1,1.9761115312576294,315,1.0,2 +56315,17,1.0,1,1.9621117115020752,316,0.0,2 +56316,17,1.0,1,1.689115285873413,317,1.0,2 +56317,17,1.0,1,1.55411696434021,318,1.0,2 +56318,17,1.0,1,1.2581202983856201,319,1.0,2 +56319,17,1.0,1,1.27012038230896,320,1.0,2 +56320,17,1.0,1,1.480117917060852,321,1.0,2 +56321,17,1.0,1,1.8761128187179565,322,1.0,2 +56322,17,1.0,1,1.3751192092895508,323,1.0,2 +56323,17,1.0,1,1.3971189260482788,324,0.0,2 +56324,17,0.0,1,1.9591116905212402,325,0.0,2 +56325,17,0.0,1,1.1921201944351196,326,1.0,2 +56326,17,0.0,1,1.2771203517913818,327,0.0,2 +56327,17,0.0,1,1.4571181535720825,328,0.0,2 +56328,17,0.0,1,1.4001189470291138,329,0.0,2 +56329,17,1.0,1,1.741114616394043,330,1.0,2 +56330,17,1.0,1,1.2741203308105469,331,1.0,2 +56331,17,1.0,1,1.344119668006897,332,1.0,2 +56332,17,1.0,1,1.4891177415847778,333,0.0,2 +56333,17,0.0,1,1.3101201057434082,334,0.0,2 +56334,17,0.0,1,1.2151201963424683,335,0.0,2 +56335,17,1.0,1,1.5081175565719604,336,1.0,2 +56336,17,1.0,1,1.410118818283081,337,1.0,2 +56337,17,1.0,1,1.164120078086853,338,0.0,2 +56338,17,0.0,1,1.9991111755371094,339,0.0,2 +56339,17,1.0,1,1.7471144199371338,340,0.0,2 +56340,17,1.0,1,2.2681214809417725,341,1.0,2 +56341,17,1.0,1,1.6161161661148071,342,1.0,2 +56342,17,1.0,1,1.1551201343536377,343,1.0,2 +56343,17,1.0,1,1.3691192865371704,344,1.0,2 +56344,17,1.0,1,1.2771203517913818,345,1.0,2 +56345,17,1.0,1,1.2691203355789185,346,0.0,2 +56346,17,1.0,1,1.5131174325942993,347,1.0,2 +56347,17,1.0,1,1.3301198482513428,348,0.0,2 +56348,17,1.0,1,1.598116397857666,349,1.0,2 +56349,17,1.0,1,1.41511869430542,350,1.0,2 +56350,17,1.0,1,1.3591194152832031,351,1.0,2 +56351,17,1.0,1,1.5431170463562012,352,0.0,2 +56352,17,0.0,1,1.3691192865371704,353,0.0,2 +56353,17,0.0,1,1.1891201734542847,354,0.0,2 +56354,17,1.0,1,2.357125759124756,355,1.0,2 +56355,17,0.0,1,1.3561195135116577,356,0.0,2 +56356,17,1.0,1,1.2491202354431152,357,0.0,2 +56357,17,1.0,1,1.2081202268600464,358,1.0,2 +56358,17,1.0,1,1.5211173295974731,359,0.0,2 +56359,17,1.0,1,2.126114845275879,360,1.0,2 +56360,17,1.0,1,1.318120002746582,361,1.0,2 +56361,17,1.0,1,1.647115707397461,362,0.0,2 +56362,17,1.0,1,1.5631167888641357,363,1.0,2 +56363,17,1.0,1,1.3251198530197144,364,1.0,2 +56364,17,1.0,1,1.7721141576766968,365,0.0,2 +56365,17,1.0,1,1.2441202402114868,366,1.0,2 +56366,17,1.0,1,1.481117844581604,367,0.0,2 +56367,17,0.0,1,1.4041188955307007,368,0.0,2 +56368,17,0.0,1,2.3211240768432617,369,0.0,2 +56369,17,1.0,1,1.5311172008514404,370,1.0,2 +56370,17,1.0,1,1.20412015914917,371,1.0,2 +56371,17,1.0,1,1.2441202402114868,372,0.0,2 +56372,17,0.0,1,2.0361108779907227,373,0.0,2 +56373,17,0.0,1,1.742114543914795,374,0.0,2 +56374,17,1.0,1,2.3031229972839355,375,0.0,2 +56375,17,0.0,1,2.364125967025757,376,1.0,2 +56376,17,0.0,1,1.2911202907562256,377,0.0,2 +56377,17,0.0,1,1.5081175565719604,378,0.0,2 +56378,17,0.0,1,1.1351200342178345,379,1.0,2 +56379,17,0.0,1,1.1751201152801514,380,1.0,2 +56380,17,0.0,1,1.2451202869415283,381,0.0,2 +56381,17,0.0,1,1.4791178703308105,382,1.0,2 +56382,17,0.0,1,1.393118977546692,383,0.0,2 +56383,17,1.0,1,2.4681308269500732,384,0.0,2 +56384,17,1.0,1,1.7021150588989258,385,1.0,2 +56385,17,1.0,1,1.4061188697814941,386,1.0,2 +56386,17,1.0,1,1.4711179733276367,387,0.0,2 +56387,17,1.0,1,2.113114356994629,388,0.0,2 +56388,17,0.0,1,1.6481157541275024,389,0.0,2 +56389,17,1.0,1,1.2391202449798584,390,1.0,2 +56390,17,1.0,1,1.6131162643432617,391,0.0,2 +56391,17,0.0,1,1.8511130809783936,392,0.0,2 +56392,17,1.0,1,1.6541156768798828,393,0.0,2 +56393,17,0.0,1,1.2531203031539917,394,0.0,2 +56394,17,1.0,1,1.7671141624450684,395,1.0,2 +56395,17,1.0,1,1.6081162691116333,396,1.0,2 +56396,17,1.0,1,1.5461170673370361,397,0.0,2 +56397,17,0.0,1,1.929112195968628,398,0.0,2 +56398,17,0.0,1,1.2181202173233032,399,1.0,2 +56399,17,0.0,1,1.528117299079895,400,0.0,2 +56400,17,0.0,1,1.547116994857788,401,0.0,2 +56401,17,1.0,1,1.484117865562439,402,1.0,2 +56402,17,1.0,1,1.5691168308258057,403,1.0,2 +56403,17,1.0,1,1.167120099067688,404,1.0,2 +56404,17,1.0,1,1.5831165313720703,405,1.0,2 +56405,17,1.0,1,1.4201186895370483,406,1.0,2 +56406,17,1.0,1,1.6801153421401978,407,1.0,2 +56407,17,1.0,1,1.5691168308258057,408,0.0,2 +56408,17,0.0,1,1.36311936378479,409,0.0,2 +56409,17,0.0,1,1.4981176853179932,410,0.0,2 +56410,17,1.0,1,2.5121328830718994,411,0.0,2 +56411,17,1.0,1,1.2801203727722168,412,0.0,2 +56412,17,0.0,1,1.2881203889846802,413,0.0,2 +56413,17,0.0,1,1.852113127708435,414,0.0,2 +56414,17,0.0,1,1.2391202449798584,415,0.0,2 +56415,17,0.0,1,2.132115125656128,416,0.0,2 +56416,17,0.0,1,2.3071231842041016,417,0.0,2 +56417,17,1.0,1,1.3391196727752686,418,1.0,2 +56418,17,1.0,1,1.1531200408935547,419,1.0,2 +56419,17,1.0,1,1.4461183547973633,420,1.0,2 +56420,17,1.0,1,1.2481203079223633,421,1.0,2 +56421,17,1.0,1,1.454118251800537,422,1.0,2 +56422,17,1.0,1,1.4831178188323975,423,0.0,2 +56423,17,1.0,1,1.4201186895370483,424,0.0,2 +56424,17,0.0,1,1.8671128749847412,425,1.0,2 +56425,17,0.0,1,1.2771203517913818,426,0.0,2 +56426,17,1.0,1,2.0341107845306396,427,1.0,2 +56427,17,1.0,1,1.2431203126907349,428,1.0,2 +56428,17,1.0,1,1.2881203889846802,429,1.0,2 +56429,17,1.0,1,1.362119436264038,430,1.0,2 +56430,17,1.0,1,1.4311184883117676,431,0.0,2 +56431,17,0.0,1,1.7561143636703491,432,0.0,2 +56432,17,1.0,1,1.5221173763275146,433,1.0,2 +56433,17,1.0,1,1.2661203145980835,434,1.0,2 +56434,17,1.0,1,1.407118797302246,435,1.0,2 +56435,17,1.0,1,1.668115496635437,436,0.0,2 +56436,17,0.0,1,1.5461170673370361,437,0.0,2 +56437,17,1.0,1,1.8051137924194336,438,1.0,2 +56438,17,1.0,1,1.2361202239990234,439,1.0,2 +56439,17,1.0,1,1.6071162223815918,440,0.0,2 +56440,17,1.0,1,1.8951125144958496,441,1.0,2 +56441,17,1.0,1,1.459118127822876,442,1.0,2 +56442,17,1.0,1,1.1691200733184814,443,1.0,2 +56443,17,1.0,1,1.3251198530197144,444,0.0,2 +56444,17,1.0,1,1.458118200302124,445,1.0,2 +56445,17,1.0,1,1.3951189517974854,446,1.0,2 +56446,17,1.0,1,1.2221202850341797,447,1.0,2 +56447,17,1.0,1,1.388119101524353,448,1.0,2 +56448,17,1.0,1,1.7691142559051514,449,0.0,2 +56449,17,0.0,1,1.4651180505752563,450,0.0,2 +56450,17,0.0,1,2.1031136512756348,451,1.0,2 +56451,17,0.0,1,1.2451202869415283,452,0.0,2 +56452,17,1.0,1,1.5621168613433838,453,1.0,2 +56453,17,1.0,1,1.2131202220916748,454,0.0,2 +56454,17,0.0,1,1.3831191062927246,455,0.0,2 +56455,17,0.0,1,1.3901190757751465,456,0.0,2 +56456,17,0.0,1,1.2121201753616333,457,0.0,2 +56457,17,1.0,1,2.0321106910705566,458,1.0,2 +56458,17,1.0,1,1.5441170930862427,459,1.0,2 +56459,17,1.0,1,1.1481200456619263,460,1.0,2 +56460,17,1.0,1,1.2211202383041382,461,1.0,2 +56461,17,1.0,1,1.9411120414733887,462,0.0,2 +56462,17,0.0,1,1.3471195697784424,463,0.0,2 +56463,17,0.0,1,1.6221160888671875,464,0.0,2 +56464,17,1.0,1,1.4521182775497437,465,1.0,2 +56465,17,1.0,1,1.140120029449463,466,0.0,2 +56466,17,1.0,1,1.462118148803711,467,1.0,2 +56467,17,1.0,1,1.2591203451156616,468,1.0,2 +56468,17,1.0,1,1.5141174793243408,469,1.0,2 +56469,17,1.0,1,1.4341185092926025,470,1.0,2 +56470,17,1.0,1,1.34011971950531,471,1.0,2 +56471,17,1.0,1,1.34011971950531,472,1.0,2 +56472,17,1.0,1,1.1931201219558716,473,1.0,2 +56473,17,1.0,1,1.2481203079223633,474,0.0,2 +56474,17,0.0,1,1.455118179321289,475,0.0,2 +56475,17,1.0,1,1.8731129169464111,476,1.0,2 +56476,17,1.0,1,1.3801192045211792,477,0.0,2 +56477,17,1.0,1,1.4271185398101807,478,1.0,2 +56478,17,1.0,1,1.3721193075180054,479,1.0,2 +56479,17,1.0,1,1.2491202354431152,480,1.0,2 +56480,17,1.0,1,1.2941203117370605,481,1.0,2 +56481,17,1.0,1,1.367119312286377,482,0.0,2 +56482,17,1.0,1,2.098113536834717,483,0.0,2 +56483,17,0.0,1,1.572116732597351,484,1.0,2 +56484,17,0.0,1,1.1381200551986694,485,0.0,2 +56485,17,0.0,1,1.458118200302124,486,0.0,2 +56486,17,0.0,1,1.6291160583496094,487,0.0,2 +56487,17,1.0,1,1.3571194410324097,488,1.0,2 +56488,17,1.0,1,1.4291185140609741,489,1.0,2 +56489,17,1.0,1,1.1711201667785645,490,1.0,2 +56490,17,1.0,1,1.2501202821731567,491,1.0,2 +56491,17,1.0,1,1.1861201524734497,492,0.0,2 +56492,17,1.0,1,2.128114938735962,493,1.0,2 +56493,17,1.0,1,1.4921177625656128,494,1.0,2 +56494,17,1.0,1,1.1901202201843262,495,1.0,2 +56495,17,1.0,1,1.4961177110671997,496,1.0,2 +56496,17,1.0,1,1.2521202564239502,497,1.0,2 +56497,17,1.0,1,1.2941203117370605,498,0.0,2 +56498,17,0.0,1,1.26412034034729,499,0.0,2 +56499,17,0.0,1,1.646115779876709,500,1.0,2 +56500,17,0.0,2,1.5131174325942993,1,0.0,2 +56501,17,1.0,2,1.3321198225021362,2,0.0,2 +56502,17,1.0,2,1.6121162176132202,3,1.0,2 +56503,17,1.0,2,1.227120280265808,4,1.0,2 +56504,17,1.0,2,1.8131136894226074,5,1.0,2 +56505,17,1.0,2,1.3301198482513428,6,1.0,2 +56506,17,1.0,2,1.4011188745498657,7,1.0,2 +56507,17,1.0,2,1.5331171751022339,8,0.0,2 +56508,17,0.0,2,1.881112813949585,9,1.0,2 +56509,17,0.0,2,1.5371171236038208,10,1.0,2 +56510,17,0.0,2,1.1761201620101929,11,1.0,2 +56511,17,0.0,2,1.1831201314926147,12,0.0,2 +56512,17,1.0,2,1.8631129264831543,13,0.0,2 +56513,17,0.0,2,1.2051202058792114,14,0.0,2 +56514,17,1.0,2,1.7261147499084473,15,0.0,2 +56515,17,0.0,2,1.3551194667816162,16,0.0,2 +56516,17,1.0,2,2.3261241912841797,17,1.0,2 +56517,17,1.0,2,1.6001163721084595,18,0.0,2 +56518,17,0.0,2,1.529117226600647,19,0.0,2 +56519,17,0.0,2,1.1991201639175415,20,1.0,2 +56520,17,0.0,2,1.1601201295852661,21,0.0,2 +56521,17,1.0,2,1.9311120510101318,22,1.0,2 +56522,17,1.0,2,1.8251135349273682,23,1.0,2 +56523,17,1.0,2,1.605116367340088,24,0.0,2 +56524,17,0.0,2,2.018110990524292,25,0.0,2 +56525,17,0.0,2,2.019110918045044,26,1.0,2 +56526,17,0.0,2,1.6101162433624268,27,1.0,2 +56527,17,0.0,2,1.668115496635437,28,0.0,2 +56528,17,0.0,2,1.1831201314926147,29,1.0,2 +56529,17,0.0,2,1.5841165781021118,30,0.0,2 +56530,17,0.0,2,1.9451119899749756,31,0.0,2 +56531,17,1.0,2,1.808113694190979,32,1.0,2 +56532,17,1.0,2,1.5931165218353271,33,0.0,2 +56533,17,0.0,2,1.4411183595657349,34,0.0,2 +56534,17,1.0,2,1.8671128749847412,35,1.0,2 +56535,17,0.0,2,1.5181174278259277,36,1.0,2 +56536,17,1.0,2,2.1001136302948,37,1.0,2 +56537,17,1.0,2,1.367119312286377,38,0.0,2 +56538,17,0.0,2,1.3581194877624512,39,1.0,2 +56539,17,0.0,2,1.1581201553344727,40,0.0,2 +56540,17,1.0,2,1.2161202430725098,41,0.0,2 +56541,17,0.0,2,1.624116063117981,42,1.0,2 +56542,17,0.0,2,1.7951138019561768,43,0.0,2 +56543,17,0.0,2,1.4161187410354614,44,1.0,2 +56544,17,0.0,2,1.1931201219558716,45,0.0,2 +56545,17,0.0,2,1.2781202793121338,46,1.0,2 +56546,17,0.0,2,1.2481203079223633,47,0.0,2 +56547,17,1.0,2,1.6101162433624268,48,0.0,2 +56548,17,0.0,2,1.786113977432251,49,0.0,2 +56549,17,0.0,2,1.2771203517913818,50,1.0,2 +56550,17,0.0,2,1.3581194877624512,51,1.0,2 +56551,17,0.0,2,1.1601201295852661,52,0.0,2 +56552,17,0.0,2,1.7031149864196777,53,0.0,2 +56553,17,0.0,2,1.3261198997497559,54,0.0,2 +56554,17,1.0,2,1.4941177368164062,55,0.0,2 +56555,17,0.0,2,1.262120246887207,56,1.0,2 +56556,17,0.0,2,1.2601202726364136,57,1.0,2 +56557,17,0.0,2,1.3601194620132446,58,0.0,2 +56558,17,0.0,2,1.4861178398132324,59,0.0,2 +56559,17,1.0,2,1.8981125354766846,60,0.0,2 +56560,17,1.0,2,1.8701128959655762,61,0.0,2 +56561,17,0.0,2,1.3801192045211792,62,0.0,2 +56562,17,1.0,2,1.7561143636703491,63,0.0,2 +56563,17,0.0,2,1.4251185655593872,64,0.0,2 +56564,17,0.0,2,2.0511112213134766,65,0.0,2 +56565,17,1.0,2,1.8641129732131958,66,1.0,2 +56566,17,1.0,2,1.366119384765625,67,1.0,2 +56567,17,1.0,2,1.1891201734542847,68,1.0,2 +56568,17,1.0,2,1.3971189260482788,69,1.0,2 +56569,17,1.0,2,1.2951202392578125,70,1.0,2 +56570,17,1.0,2,1.3551194667816162,71,1.0,2 +56571,17,1.0,2,1.337119698524475,72,0.0,2 +56572,17,1.0,2,1.8181135654449463,73,0.0,2 +56573,17,1.0,2,1.9531118869781494,74,1.0,2 +56574,17,1.0,2,1.8161135911941528,75,1.0,2 +56575,17,1.0,2,1.3731192350387573,76,1.0,2 +56576,17,1.0,2,1.130120038986206,77,0.0,2 +56577,17,1.0,2,1.9031124114990234,78,1.0,2 +56578,17,1.0,2,1.4661180973052979,79,1.0,2 +56579,17,1.0,2,1.7231147289276123,80,1.0,2 +56580,17,1.0,2,1.4251185655593872,81,1.0,2 +56581,17,1.0,2,1.3271198272705078,82,0.0,2 +56582,17,1.0,2,1.4381184577941895,83,1.0,2 +56583,17,1.0,2,1.6631155014038086,84,0.0,2 +56584,17,1.0,2,1.3831191062927246,85,0.0,2 +56585,17,0.0,2,1.3861191272735596,86,0.0,2 +56586,17,1.0,2,2.102113723754883,87,1.0,2 +56587,17,1.0,2,1.3281198740005493,88,0.0,2 +56588,17,1.0,2,1.68711519241333,89,0.0,2 +56589,17,1.0,2,1.5111174583435059,90,1.0,2 +56590,17,1.0,2,1.337119698524475,91,1.0,2 +56591,17,1.0,2,1.691115140914917,92,1.0,2 +56592,17,1.0,2,1.5591168403625488,93,1.0,2 +56593,17,1.0,2,1.6711153984069824,94,1.0,2 +56594,17,1.0,2,1.3331197500228882,95,1.0,2 +56595,17,1.0,2,1.3651193380355835,96,0.0,2 +56596,17,1.0,2,1.9571118354797363,97,0.0,2 +56597,17,1.0,2,1.4281185865402222,98,1.0,2 +56598,17,1.0,2,1.1841201782226562,99,1.0,2 +56599,17,1.0,2,1.2821203470230103,100,0.0,2 +56600,17,1.0,2,1.553117036819458,101,1.0,2 +56601,17,1.0,2,1.3161200284957886,102,1.0,2 +56602,17,1.0,2,1.477117896080017,103,1.0,2 +56603,17,1.0,2,1.197120189666748,104,0.0,2 +56604,17,0.0,2,1.3511195182800293,105,0.0,2 +56605,17,0.0,2,1.55411696434021,106,1.0,2 +56606,17,0.0,2,1.3461196422576904,107,1.0,2 +56607,17,0.0,2,1.3651193380355835,108,0.0,2 +56608,17,0.0,2,1.4671180248260498,109,0.0,2 +56609,17,1.0,2,1.5271172523498535,110,1.0,2 +56610,17,1.0,2,1.2851203680038452,111,0.0,2 +56611,17,1.0,2,1.646115779876709,112,1.0,2 +56612,17,1.0,2,1.3361197710037231,113,1.0,2 +56613,17,1.0,2,1.1561200618743896,114,0.0,2 +56614,17,1.0,2,2.081112861633301,115,1.0,2 +56615,17,1.0,2,1.6611156463623047,116,1.0,2 +56616,17,1.0,2,1.4131187200546265,117,0.0,2 +56617,17,1.0,2,1.2841203212738037,118,0.0,2 +56618,17,1.0,2,1.3111200332641602,119,0.0,2 +56619,17,0.0,2,1.7361146211624146,120,0.0,2 +56620,17,0.0,2,1.2241202592849731,121,0.0,2 +56621,17,1.0,2,2.0321106910705566,122,1.0,2 +56622,17,1.0,2,1.691115140914917,123,0.0,2 +56623,17,1.0,2,1.267120361328125,124,0.0,2 +56624,17,0.0,2,1.503117561340332,125,1.0,2 +56625,17,0.0,2,1.5221173763275146,126,0.0,2 +56626,17,1.0,2,1.262120246887207,127,1.0,2 +56627,17,0.0,2,1.8241134881973267,128,1.0,2 +56628,17,0.0,2,1.2441202402114868,129,1.0,2 +56629,17,0.0,2,1.8131136894226074,130,0.0,2 +56630,17,1.0,2,1.5131174325942993,131,0.0,2 +56631,17,0.0,2,2.349125385284424,132,0.0,2 +56632,17,0.0,2,1.127120018005371,133,0.0,2 +56633,17,1.0,2,1.6531157493591309,134,1.0,2 +56634,17,1.0,2,1.4511182308197021,135,0.0,2 +56635,17,0.0,2,1.3341197967529297,136,0.0,2 +56636,17,1.0,2,1.6651155948638916,137,0.0,2 +56637,17,1.0,2,1.8061137199401855,138,0.0,2 +56638,17,1.0,2,1.599116325378418,139,0.0,2 +56639,17,1.0,2,1.8621129989624023,140,0.0,2 +56640,17,0.0,2,1.7931139469146729,141,0.0,2 +56641,17,0.0,2,1.9951112270355225,142,1.0,2 +56642,17,0.0,2,1.4751179218292236,143,1.0,2 +56643,17,0.0,2,1.2411202192306519,144,1.0,2 +56644,17,0.0,2,1.550117015838623,145,0.0,2 +56645,17,1.0,2,1.55411696434021,146,1.0,2 +56646,17,1.0,2,1.2331202030181885,147,0.0,2 +56647,17,0.0,2,2.127114772796631,148,0.0,2 +56648,17,0.0,2,1.4121187925338745,149,0.0,2 +56649,17,1.0,2,1.8711128234863281,150,1.0,2 +56650,17,1.0,2,1.3071200847625732,151,0.0,2 +56651,17,0.0,2,1.2331202030181885,152,0.0,2 +56652,17,0.0,2,1.3791191577911377,153,1.0,2 +56653,17,0.0,2,1.3211199045181274,154,0.0,2 +56654,17,1.0,2,1.6441158056259155,155,0.0,2 +56655,17,0.0,2,1.5711166858673096,156,0.0,2 +56656,17,1.0,2,1.3481196165084839,157,1.0,2 +56657,17,1.0,2,1.5121175050735474,158,1.0,2 +56658,17,1.0,2,1.3811191320419312,159,1.0,2 +56659,17,1.0,2,1.576116681098938,160,1.0,2 +56660,17,1.0,2,1.8431131839752197,161,0.0,2 +56661,17,0.0,2,1.8421132564544678,162,1.0,2 +56662,17,0.0,2,1.2191202640533447,163,1.0,2 +56663,17,0.0,2,1.1261200904846191,164,0.0,2 +56664,17,0.0,2,1.2071201801300049,165,0.0,2 +56665,17,0.0,2,1.5821166038513184,166,0.0,2 +56666,17,1.0,2,1.432118535041809,167,0.0,2 +56667,17,0.0,2,1.8961125612258911,168,1.0,2 +56668,17,0.0,2,1.194120168685913,169,0.0,2 +56669,17,0.0,2,2.132115125656128,170,1.0,2 +56670,17,0.0,2,1.2481203079223633,171,1.0,2 +56671,17,0.0,2,1.2531203031539917,172,0.0,2 +56672,17,1.0,2,1.2521202564239502,173,1.0,2 +56673,17,1.0,2,1.5521169900894165,174,1.0,2 +56674,17,1.0,2,1.197120189666748,175,1.0,2 +56675,17,1.0,2,1.265120267868042,176,1.0,2 +56676,17,1.0,2,1.2691203355789185,177,0.0,2 +56677,17,1.0,2,1.8021137714385986,178,0.0,2 +56678,17,0.0,2,1.2781202793121338,179,0.0,2 +56679,17,1.0,2,1.553117036819458,180,0.0,2 +56680,17,1.0,2,1.779114007949829,181,1.0,2 +56681,17,1.0,2,1.271120309829712,182,1.0,2 +56682,17,1.0,2,1.7611143589019775,183,0.0,2 +56683,17,0.0,2,1.4821178913116455,184,0.0,2 +56684,17,0.0,2,1.3731192350387573,185,1.0,2 +56685,17,0.0,2,1.7501144409179688,186,0.0,2 +56686,17,0.0,2,1.5051175355911255,187,1.0,2 +56687,17,1.0,2,1.3261198997497559,188,1.0,2 +56688,17,1.0,2,1.4311184883117676,189,1.0,2 +56689,17,1.0,2,1.7241147756576538,190,1.0,2 +56690,17,0.0,2,2.1031136512756348,191,1.0,2 +56691,17,0.0,2,2.0491113662719727,192,1.0,2 +56692,17,0.0,2,1.4261186122894287,193,1.0,2 +56693,17,0.0,2,1.874112844467163,194,0.0,2 +56694,17,1.0,2,1.410118818283081,195,1.0,2 +56695,17,1.0,2,1.3531194925308228,196,0.0,2 +56696,17,0.0,2,1.4191186428070068,197,0.0,2 +56697,17,1.0,2,2.2621212005615234,198,1.0,2 +56698,17,1.0,2,1.551116943359375,199,1.0,2 +56699,17,1.0,2,1.3871190547943115,200,1.0,2 +56700,17,1.0,2,1.4011188745498657,201,1.0,2 +56701,17,1.0,2,1.4161187410354614,202,1.0,2 +56702,17,0.0,2,1.414118766784668,203,0.0,2 +56703,17,1.0,2,1.2841203212738037,204,1.0,2 +56704,17,1.0,2,1.7571144104003906,205,0.0,2 +56705,17,0.0,2,1.3271198272705078,206,0.0,2 +56706,17,0.0,2,1.6281160116195679,207,1.0,2 +56707,17,0.0,2,1.4571181535720825,208,1.0,2 +56708,17,0.0,2,1.2661203145980835,209,0.0,2 +56709,17,0.0,2,1.462118148803711,210,0.0,2 +56710,17,0.0,2,1.738114595413208,211,1.0,2 +56711,17,0.0,2,1.2541203498840332,212,0.0,2 +56712,17,0.0,2,1.8161135911941528,213,1.0,2 +56713,17,0.0,2,1.7261147499084473,214,1.0,2 +56714,17,0.0,2,1.3721193075180054,215,0.0,2 +56715,17,1.0,2,1.672115445137024,216,1.0,2 +56716,17,1.0,2,1.5581169128417969,217,0.0,2 +56717,17,0.0,2,1.1461200714111328,218,0.0,2 +56718,17,1.0,2,1.9561117887496948,219,0.0,2 +56719,17,1.0,2,2.023110866546631,220,1.0,2 +56720,17,1.0,2,1.6231160163879395,221,0.0,2 +56721,17,1.0,2,2.0671119689941406,222,1.0,2 +56722,17,1.0,2,1.167120099067688,223,1.0,2 +56723,17,1.0,2,1.4021189212799072,224,0.0,2 +56724,17,0.0,2,2.198118209838867,225,1.0,2 +56725,17,0.0,2,1.3391196727752686,226,0.0,2 +56726,17,1.0,2,1.6301159858703613,227,1.0,2 +56727,17,1.0,2,1.271120309829712,228,0.0,2 +56728,17,0.0,2,1.1691200733184814,229,1.0,2 +56729,17,0.0,2,1.5861165523529053,230,1.0,2 +56730,17,0.0,2,1.3121200799942017,231,0.0,2 +56731,17,1.0,2,1.9541118144989014,232,1.0,2 +56732,17,1.0,2,1.3541195392608643,233,0.0,2 +56733,17,0.0,2,1.2991201877593994,234,0.0,2 +56734,17,1.0,2,1.3861191272735596,235,1.0,2 +56735,17,1.0,2,1.26412034034729,236,1.0,2 +56736,17,1.0,2,1.624116063117981,237,0.0,2 +56737,17,1.0,2,1.9801114797592163,238,0.0,2 +56738,17,0.0,2,1.2521202564239502,239,0.0,2 +56739,17,0.0,2,1.3021202087402344,240,1.0,2 +56740,17,0.0,2,1.5441170930862427,241,1.0,2 +56741,17,0.0,2,1.2871203422546387,242,1.0,2 +56742,17,0.0,2,1.2801203727722168,243,1.0,2 +56743,17,0.0,2,1.5361171960830688,244,1.0,2 +56744,17,0.0,2,1.3011201620101929,245,0.0,2 +56745,17,1.0,2,1.6111161708831787,246,0.0,2 +56746,17,0.0,2,1.458118200302124,247,0.0,2 +56747,17,0.0,2,2.2101187705993652,248,1.0,2 +56748,17,0.0,2,1.7251148223876953,249,0.0,2 +56749,17,0.0,2,1.2051202058792114,250,1.0,2 +56750,17,0.0,2,1.0971200466156006,251,1.0,2 +56751,17,0.0,2,1.4751179218292236,252,0.0,2 +56752,17,0.0,2,1.436118483543396,253,0.0,2 +56753,17,1.0,2,1.8541131019592285,254,0.0,2 +56754,17,1.0,2,1.4211186170578003,255,0.0,2 +56755,17,0.0,2,1.3251198530197144,256,1.0,2 +56756,17,0.0,2,1.547116994857788,257,0.0,2 +56757,17,0.0,2,1.6121162176132202,258,0.0,2 +56758,17,0.0,2,1.1921201944351196,259,0.0,2 +56759,17,1.0,2,1.8481131792068481,260,1.0,2 +56760,17,1.0,2,1.672115445137024,261,1.0,2 +56761,17,1.0,2,1.5011175870895386,262,0.0,2 +56762,17,1.0,2,1.742114543914795,263,1.0,2 +56763,17,1.0,2,1.414118766784668,264,0.0,2 +56764,17,1.0,2,1.921112298965454,265,0.0,2 +56765,17,0.0,2,1.2161202430725098,266,0.0,2 +56766,17,0.0,2,1.7071149349212646,267,0.0,2 +56767,17,1.0,2,1.786113977432251,268,0.0,2 +56768,17,0.0,2,1.3361197710037231,269,0.0,2 +56769,17,0.0,2,1.1781201362609863,270,1.0,2 +56770,17,0.0,2,1.1321200132369995,271,1.0,2 +56771,17,0.0,2,1.3751192092895508,272,0.0,2 +56772,17,0.0,2,1.4761179685592651,273,1.0,2 +56773,17,0.0,2,1.4031188488006592,274,0.0,2 +56774,17,0.0,2,1.296120285987854,275,1.0,2 +56775,17,0.0,2,1.2151201963424683,276,0.0,2 +56776,17,0.0,2,1.6511156558990479,277,1.0,2 +56777,17,0.0,2,1.555116891860962,278,0.0,2 +56778,17,0.0,2,1.323119878768921,279,1.0,2 +56779,17,0.0,2,1.3841191530227661,280,0.0,2 +56780,17,1.0,2,2.2161190509796143,281,1.0,2 +56781,17,1.0,2,1.7241147756576538,282,1.0,2 +56782,17,1.0,2,1.3131200075149536,283,1.0,2 +56783,17,1.0,2,1.7621142864227295,284,1.0,2 +56784,17,1.0,2,1.337119698524475,285,0.0,2 +56785,17,0.0,2,1.5091174840927124,286,1.0,2 +56786,17,0.0,2,1.2951202392578125,287,0.0,2 +56787,17,0.0,2,1.3051201105117798,288,1.0,2 +56788,17,0.0,2,1.1801201105117798,289,1.0,2 +56789,17,0.0,2,1.1861201524734497,290,1.0,2 +56790,17,0.0,2,1.3171199560165405,291,0.0,2 +56791,17,0.0,2,1.2541203498840332,292,1.0,2 +56792,17,0.0,2,1.2991201877593994,293,1.0,2 +56793,17,0.0,2,1.3261198997497559,294,1.0,2 +56794,17,0.0,2,1.2911202907562256,295,1.0,2 +56795,17,0.0,2,1.4711179733276367,296,0.0,2 +56796,17,0.0,2,1.7751140594482422,297,1.0,2 +56797,17,0.0,2,1.2781202793121338,298,0.0,2 +56798,17,0.0,2,1.4881178140640259,299,1.0,2 +56799,17,0.0,2,1.5261173248291016,300,1.0,2 +56800,17,0.0,2,1.1951202154159546,301,0.0,2 +56801,17,0.0,2,1.5311172008514404,302,0.0,2 +56802,17,0.0,2,1.948111891746521,303,0.0,2 +56803,17,1.0,2,1.781114101409912,304,1.0,2 +56804,17,1.0,2,1.458118200302124,305,0.0,2 +56805,17,0.0,2,1.5481170415878296,306,1.0,2 +56806,17,0.0,2,1.1681201457977295,307,1.0,2 +56807,17,0.0,2,1.1881201267242432,308,0.0,2 +56808,17,0.0,2,1.5131174325942993,309,1.0,2 +56809,17,0.0,2,1.6771154403686523,310,0.0,2 +56810,17,1.0,2,1.55411696434021,311,0.0,2 +56811,17,1.0,2,1.39211905002594,312,1.0,2 +56812,17,1.0,2,1.6591155529022217,313,1.0,2 +56813,17,1.0,2,1.4041188955307007,314,0.0,2 +56814,17,1.0,2,1.4971176385879517,315,0.0,2 +56815,17,0.0,2,1.5261173248291016,316,0.0,2 +56816,17,0.0,2,1.3721193075180054,317,0.0,2 +56817,17,1.0,2,1.720114827156067,318,1.0,2 +56818,17,1.0,2,1.6171162128448486,319,1.0,2 +56819,17,1.0,2,1.3911190032958984,320,1.0,2 +56820,17,1.0,2,1.3011201620101929,321,1.0,2 +56821,17,1.0,2,1.3821191787719727,322,1.0,2 +56822,17,1.0,2,1.4681180715560913,323,0.0,2 +56823,17,1.0,2,1.7481144666671753,324,1.0,2 +56824,17,1.0,2,1.4161187410354614,325,1.0,2 +56825,17,1.0,2,2.175117015838623,326,1.0,2 +56826,17,1.0,2,1.550117015838623,327,0.0,2 +56827,17,0.0,2,1.41511869430542,328,0.0,2 +56828,17,1.0,2,2.0711121559143066,329,1.0,2 +56829,17,1.0,2,1.2481203079223633,330,0.0,2 +56830,17,0.0,2,1.3251198530197144,331,0.0,2 +56831,17,1.0,2,1.455118179321289,332,0.0,2 +56832,17,0.0,2,1.8471131324768066,333,0.0,2 +56833,17,0.0,2,1.4901177883148193,334,0.0,2 +56834,17,0.0,2,1.3601194620132446,335,0.0,2 +56835,17,0.0,2,1.3971189260482788,336,0.0,2 +56836,17,0.0,2,1.5111174583435059,337,0.0,2 +56837,17,1.0,2,1.440118432044983,338,0.0,2 +56838,17,1.0,2,2.018110990524292,339,0.0,2 +56839,17,0.0,2,1.689115285873413,340,1.0,2 +56840,17,0.0,2,1.315119981765747,341,0.0,2 +56841,17,0.0,2,1.2361202239990234,342,0.0,2 +56842,17,1.0,2,1.2101202011108398,343,0.0,2 +56843,17,1.0,2,2.2551207542419434,344,1.0,2 +56844,17,1.0,2,1.5011175870895386,345,1.0,2 +56845,17,1.0,2,1.293120265007019,346,1.0,2 +56846,17,1.0,2,2.0951132774353027,347,0.0,2 +56847,17,1.0,2,1.7101149559020996,348,0.0,2 +56848,17,1.0,2,1.8451132774353027,349,0.0,2 +56849,17,1.0,2,1.6321159601211548,350,0.0,2 +56850,17,0.0,2,1.2051202058792114,351,1.0,2 +56851,17,0.0,2,1.4411183595657349,352,1.0,2 +56852,17,0.0,2,1.2101202011108398,353,1.0,2 +56853,17,0.0,2,1.790113925933838,354,1.0,2 +56854,17,0.0,2,1.2201201915740967,355,1.0,2 +56855,17,0.0,2,1.262120246887207,356,0.0,2 +56856,17,0.0,2,1.7761141061782837,357,0.0,2 +56857,17,0.0,2,1.6061162948608398,358,0.0,2 +56858,17,1.0,2,2.3361246585845947,359,1.0,2 +56859,17,1.0,2,1.5701167583465576,360,1.0,2 +56860,17,1.0,2,1.4911177158355713,361,1.0,2 +56861,17,1.0,2,1.227120280265808,362,1.0,2 +56862,17,1.0,2,1.8731129169464111,363,0.0,2 +56863,17,1.0,2,1.7231147289276123,364,1.0,2 +56864,17,1.0,2,1.9051125049591064,365,1.0,2 +56865,17,1.0,2,1.1851201057434082,366,1.0,2 +56866,17,1.0,2,1.2861204147338867,367,1.0,2 +56867,17,1.0,2,1.2911202907562256,368,0.0,2 +56868,17,1.0,2,1.437118411064148,369,1.0,2 +56869,17,1.0,2,1.3571194410324097,370,1.0,2 +56870,17,1.0,2,1.2771203517913818,371,0.0,2 +56871,17,0.0,2,2.106113910675049,372,1.0,2 +56872,17,0.0,2,1.2791203260421753,373,1.0,2 +56873,17,0.0,2,1.3281198740005493,374,0.0,2 +56874,17,1.0,2,2.2561209201812744,375,1.0,2 +56875,17,1.0,2,1.2111202478408813,376,1.0,2 +56876,17,1.0,2,1.2071201801300049,377,1.0,2 +56877,17,1.0,2,1.6121162176132202,378,1.0,2 +56878,17,1.0,2,1.5671167373657227,379,0.0,2 +56879,17,1.0,2,1.4471182823181152,380,0.0,2 +56880,17,1.0,2,2.4811315536499023,381,1.0,2 +56881,17,1.0,2,1.3141200542449951,382,0.0,2 +56882,17,0.0,2,1.5011175870895386,383,1.0,2 +56883,17,0.0,2,1.4421184062957764,384,0.0,2 +56884,17,0.0,2,1.3681193590164185,385,1.0,2 +56885,17,0.0,2,1.4291185140609741,386,1.0,2 +56886,17,0.0,2,1.1901202201843262,387,0.0,2 +56887,17,0.0,2,1.3491195440292358,388,1.0,2 +56888,17,0.0,2,1.2771203517913818,389,0.0,2 +56889,17,0.0,2,1.2421202659606934,390,0.0,2 +56890,17,1.0,2,1.55411696434021,391,1.0,2 +56891,17,1.0,2,1.3101201057434082,392,0.0,2 +56892,17,1.0,2,1.4421184062957764,393,1.0,2 +56893,17,1.0,2,1.366119384765625,394,1.0,2 +56894,17,1.0,2,1.7841140031814575,395,0.0,2 +56895,17,0.0,2,1.7031149864196777,396,0.0,2 +56896,17,1.0,2,1.2431203126907349,397,0.0,2 +56897,17,1.0,2,1.9031124114990234,398,1.0,2 +56898,17,1.0,2,1.2821203470230103,399,1.0,2 +56899,17,1.0,2,1.3811191320419312,400,1.0,2 +56900,17,1.0,2,1.5641168355941772,401,0.0,2 +56901,17,1.0,2,1.7061150074005127,402,0.0,2 +56902,17,0.0,2,1.9511117935180664,403,0.0,2 +56903,17,0.0,2,1.5301172733306885,404,0.0,2 +56904,17,1.0,2,1.3971189260482788,405,0.0,2 +56905,17,0.0,2,1.2561203241348267,406,0.0,2 +56906,17,0.0,2,2.0541114807128906,407,1.0,2 +56907,17,0.0,2,1.6031162738800049,408,0.0,2 +56908,17,1.0,2,1.8721128702163696,409,1.0,2 +56909,17,1.0,2,1.3201199769973755,410,0.0,2 +56910,17,0.0,2,2.0521113872528076,411,1.0,2 +56911,17,0.0,2,1.1931201219558716,412,1.0,2 +56912,17,0.0,2,1.2111202478408813,413,1.0,2 +56913,17,0.0,2,1.3021202087402344,414,0.0,2 +56914,17,0.0,2,1.2021201848983765,415,0.0,2 +56915,17,0.0,2,1.362119436264038,416,1.0,2 +56916,17,0.0,2,1.1681201457977295,417,1.0,2 +56917,17,0.0,2,1.3831191062927246,418,0.0,2 +56918,17,0.0,2,1.4051188230514526,419,1.0,2 +56919,17,0.0,2,1.4681180715560913,420,0.0,2 +56920,17,0.0,2,1.265120267868042,421,1.0,2 +56921,17,0.0,2,1.1561200618743896,422,1.0,2 +56922,17,0.0,2,1.3711192607879639,423,1.0,2 +56923,17,0.0,2,1.4081188440322876,424,0.0,2 +56924,17,1.0,2,1.9341120719909668,425,1.0,2 +56925,17,1.0,2,1.4501183032989502,426,0.0,2 +56926,17,0.0,2,1.5421171188354492,427,0.0,2 +56927,17,0.0,2,2.009111166000366,428,1.0,2 +56928,17,0.0,2,1.3141200542449951,429,1.0,2 +56929,17,0.0,2,1.6521157026290894,430,1.0,2 +56930,17,0.0,2,1.4411183595657349,431,0.0,2 +56931,17,0.0,2,1.7731142044067383,432,1.0,2 +56932,17,0.0,2,1.231120228767395,433,1.0,2 +56933,17,0.0,2,1.1811201572418213,434,0.0,2 +56934,17,0.0,2,1.3351197242736816,435,0.0,2 +56935,17,0.0,2,1.922112226486206,436,0.0,2 +56936,17,0.0,2,1.6271159648895264,437,0.0,2 +56937,17,1.0,2,2.117114543914795,438,1.0,2 +56938,17,1.0,2,1.3811191320419312,439,1.0,2 +56939,17,1.0,2,1.557116985321045,440,1.0,2 +56940,17,1.0,2,1.3101201057434082,441,1.0,2 +56941,17,1.0,2,1.555116891860962,442,0.0,2 +56942,17,0.0,2,1.7551143169403076,443,0.0,2 +56943,17,0.0,2,2.2791218757629395,444,0.0,2 +56944,17,0.0,2,1.201120138168335,445,1.0,2 +56945,17,0.0,2,1.318120002746582,446,0.0,2 +56946,17,0.0,2,1.458118200302124,447,0.0,2 +56947,17,1.0,2,1.4221186637878418,448,0.0,2 +56948,17,1.0,2,1.3721193075180054,449,1.0,2 +56949,17,1.0,2,1.3681193590164185,450,1.0,2 +56950,17,1.0,2,1.4741179943084717,451,0.0,2 +56951,17,1.0,2,1.3511195182800293,452,1.0,2 +56952,17,0.0,2,1.3731192350387573,453,0.0,2 +56953,17,1.0,2,1.7131149768829346,454,1.0,2 +56954,17,1.0,2,1.5451171398162842,455,1.0,2 +56955,17,1.0,2,1.3601194620132446,456,1.0,2 +56956,17,1.0,2,1.1751201152801514,457,1.0,2 +56957,17,1.0,2,1.2821203470230103,458,1.0,2 +56958,17,0.0,2,1.6331160068511963,459,0.0,2 +56959,17,1.0,2,1.690115213394165,460,1.0,2 +56960,17,1.0,2,1.3771191835403442,461,1.0,2 +56961,17,1.0,2,1.550117015838623,462,1.0,2 +56962,17,1.0,2,1.206120252609253,463,1.0,2 +56963,17,1.0,2,1.265120267868042,464,0.0,2 +56964,17,0.0,2,1.2241202592849731,465,1.0,2 +56965,17,0.0,2,1.1531200408935547,466,1.0,2 +56966,17,0.0,2,1.1761201620101929,467,0.0,2 +56967,17,1.0,2,1.5931165218353271,468,0.0,2 +56968,17,1.0,2,1.4261186122894287,469,0.0,2 +56969,17,0.0,2,1.6551156044006348,470,0.0,2 +56970,17,1.0,2,1.8911125659942627,471,0.0,2 +56971,17,0.0,2,1.8221135139465332,472,0.0,2 +56972,17,1.0,2,1.7011151313781738,473,1.0,2 +56973,17,1.0,2,1.2881203889846802,474,1.0,2 +56974,17,1.0,2,1.265120267868042,475,0.0,2 +56975,17,0.0,2,1.3971189260482788,476,0.0,2 +56976,17,1.0,2,1.6651155948638916,477,1.0,2 +56977,17,1.0,2,2.0651121139526367,478,1.0,2 +56978,17,1.0,2,1.4791178703308105,479,1.0,2 +56979,17,1.0,2,1.2291202545166016,480,0.0,2 +56980,17,1.0,2,2.2921226024627686,481,0.0,2 +56981,17,1.0,2,2.183117389678955,482,1.0,2 +56982,17,1.0,2,1.3811191320419312,483,0.0,2 +56983,17,1.0,2,1.967111587524414,484,1.0,2 +56984,17,1.0,2,1.4741179943084717,485,1.0,2 +56985,17,1.0,2,1.5271172523498535,486,0.0,2 +56986,17,0.0,2,1.225120186805725,487,1.0,2 +56987,17,0.0,2,1.5671167373657227,488,0.0,2 +56988,17,1.0,2,1.2741203308105469,489,1.0,2 +56989,17,1.0,2,1.3281198740005493,490,1.0,2 +56990,17,1.0,2,1.5171173810958862,491,0.0,2 +56991,17,1.0,2,1.9071123600006104,492,1.0,2 +56992,17,1.0,2,1.2161202430725098,493,0.0,2 +56993,17,1.0,2,1.6091163158416748,494,1.0,2 +56994,17,1.0,2,1.8631129264831543,495,1.0,2 +56995,17,1.0,2,1.388119101524353,496,0.0,2 +56996,17,0.0,2,1.2461202144622803,497,0.0,2 +56997,17,1.0,2,1.1511200666427612,498,1.0,2 +56998,17,1.0,2,1.2581202983856201,499,0.0,2 +56999,17,0.0,2,1.2321202754974365,500,0.0,2 +57000,18,1.0,0,1.4927388429641724,1,1.0,2 +57001,18,0.0,0,1.8827338218688965,2,1.0,2 +57002,18,0.0,0,1.9367331266403198,3,0.0,2 +57003,18,1.0,0,1.3047410249710083,4,1.0,2 +57004,18,1.0,0,1.4847389459609985,5,0.0,2 +57005,18,0.0,0,1.3817402124404907,6,0.0,2 +57006,18,1.0,0,1.2077407836914062,7,1.0,2 +57007,18,1.0,0,1.4267396926879883,8,0.0,2 +57008,18,1.0,0,1.6337370872497559,9,1.0,2 +57009,18,1.0,0,1.2487409114837646,10,1.0,2 +57010,18,1.0,0,1.2357409000396729,11,1.0,2 +57011,18,0.0,0,2.246739625930786,12,0.0,2 +57012,18,1.0,0,1.3767403364181519,13,1.0,2 +57013,18,0.0,0,1.4277396202087402,14,0.0,2 +57014,18,0.0,0,1.2987409830093384,15,0.0,2 +57015,18,1.0,0,1.457739233970642,16,1.0,2 +57016,18,1.0,0,1.5457381010055542,17,1.0,2 +57017,18,1.0,0,1.2707409858703613,18,0.0,2 +57018,18,1.0,0,1.4707391262054443,19,1.0,2 +57019,18,1.0,0,1.4257396459579468,20,1.0,2 +57020,18,1.0,0,1.2927409410476685,21,1.0,2 +57021,18,1.0,0,1.4677391052246094,22,1.0,2 +57022,18,0.0,0,1.7427356243133545,23,1.0,2 +57023,18,1.0,0,2.1127333641052246,24,0.0,2 +57024,18,1.0,0,1.5837376117706299,25,1.0,2 +57025,18,1.0,0,1.4497393369674683,26,1.0,2 +57026,18,1.0,0,2.3317437171936035,27,1.0,2 +57027,18,1.0,0,2.5657544136047363,28,1.0,2 +57028,18,1.0,0,1.320741057395935,29,1.0,2 +57029,18,0.0,0,1.3107409477233887,30,0.0,2 +57030,18,1.0,0,1.6457369327545166,31,1.0,2 +57031,18,0.0,0,1.700736165046692,32,0.0,2 +57032,18,1.0,0,2.155735492706299,33,1.0,2 +57033,18,1.0,0,1.88473379611969,34,0.0,2 +57034,18,1.0,0,1.7167359590530396,35,1.0,2 +57035,18,0.0,0,1.8427343368530273,36,0.0,2 +57036,18,1.0,0,1.4547393321990967,37,1.0,2 +57037,18,0.0,0,1.2357409000396729,38,1.0,2 +57038,18,0.0,0,1.9967323541641235,39,0.0,2 +57039,18,0.0,0,1.3787403106689453,40,0.0,2 +57040,18,1.0,0,2.3317437171936035,41,1.0,2 +57041,18,1.0,0,1.5167385339736938,42,0.0,2 +57042,18,0.0,0,1.412739872932434,43,0.0,2 +57043,18,1.0,0,2.160735607147217,44,1.0,2 +57044,18,0.0,0,2.3277435302734375,45,0.0,2 +57045,18,1.0,0,1.365740418434143,46,1.0,2 +57046,18,1.0,0,1.8267345428466797,47,1.0,2 +57047,18,1.0,0,2.675759792327881,48,0.0,2 +57048,18,1.0,0,1.6357369422912598,49,1.0,2 +57049,18,1.0,0,1.3747403621673584,50,1.0,2 +57050,18,1.0,0,1.5007387399673462,51,1.0,2 +57051,18,1.0,0,1.3557405471801758,52,1.0,2 +57052,18,1.0,0,1.622737169265747,53,1.0,2 +57053,18,1.0,0,1.3037409782409668,54,1.0,2 +57054,18,1.0,0,1.9127334356307983,55,1.0,2 +57055,18,1.0,0,1.9177334308624268,56,1.0,2 +57056,18,0.0,0,2.181736469268799,57,0.0,2 +57057,18,1.0,0,1.4287396669387817,58,1.0,2 +57058,18,1.0,0,1.6797363758087158,59,1.0,2 +57059,18,1.0,0,1.3937400579452515,60,0.0,2 +57060,18,0.0,0,1.6557366847991943,61,0.0,2 +57061,18,1.0,0,2.184736728668213,62,1.0,2 +57062,18,1.0,0,1.8937337398529053,63,1.0,2 +57063,18,1.0,0,1.6767364740371704,64,1.0,2 +57064,18,0.0,0,1.3817402124404907,65,0.0,2 +57065,18,1.0,0,1.8767338991165161,66,1.0,2 +57066,18,0.0,0,1.4497393369674683,67,1.0,2 +57067,18,0.0,0,2.045731782913208,68,0.0,2 +57068,18,0.0,0,1.3717403411865234,69,0.0,2 +57069,18,1.0,0,1.413739800453186,70,1.0,2 +57070,18,1.0,0,1.3937400579452515,71,1.0,2 +57071,18,1.0,0,2.2757411003112793,72,1.0,2 +57072,18,1.0,0,1.4997386932373047,73,1.0,2 +57073,18,0.0,0,1.2837409973144531,74,0.0,2 +57074,18,1.0,0,1.4857388734817505,75,1.0,2 +57075,18,1.0,0,1.4767390489578247,76,1.0,2 +57076,18,1.0,0,1.259740948677063,77,1.0,2 +57077,18,1.0,0,1.3587405681610107,78,1.0,2 +57078,18,0.0,0,2.0287318229675293,79,0.0,2 +57079,18,1.0,0,1.7827351093292236,80,1.0,2 +57080,18,0.0,0,2.1307342052459717,81,0.0,2 +57081,18,1.0,0,1.3777402639389038,82,1.0,2 +57082,18,1.0,0,1.3747403621673584,83,1.0,2 +57083,18,0.0,0,1.7947349548339844,84,0.0,2 +57084,18,1.0,0,1.3777402639389038,85,0.0,2 +57085,18,0.0,0,1.6947362422943115,86,0.0,2 +57086,18,0.0,0,1.226740837097168,87,0.0,2 +57087,18,1.0,0,1.6667366027832031,88,1.0,2 +57088,18,1.0,0,1.5997374057769775,89,1.0,2 +57089,18,1.0,0,1.4897388219833374,90,1.0,2 +57090,18,1.0,0,1.4697390794754028,91,1.0,2 +57091,18,1.0,0,2.0907323360443115,92,0.0,2 +57092,18,0.0,0,1.4187397956848145,93,0.0,2 +57093,18,1.0,0,1.648736834526062,94,1.0,2 +57094,18,1.0,0,1.6477367877960205,95,1.0,2 +57095,18,1.0,0,1.6647366285324097,96,1.0,2 +57096,18,1.0,0,1.3347408771514893,97,1.0,2 +57097,18,1.0,0,1.4697390794754028,98,1.0,2 +57098,18,1.0,0,1.9117333889007568,99,1.0,2 +57099,18,0.0,0,1.250740885734558,100,0.0,2 +57100,18,1.0,0,1.7047361135482788,101,1.0,2 +57101,18,0.0,0,2.004732131958008,102,0.0,2 +57102,18,1.0,0,1.625737190246582,103,0.0,2 +57103,18,0.0,0,1.2137408256530762,104,0.0,2 +57104,18,1.0,0,1.5067386627197266,105,1.0,2 +57105,18,1.0,0,1.7377357482910156,106,1.0,2 +57106,18,1.0,0,2.0277318954467773,107,1.0,2 +57107,18,1.0,0,1.2417408227920532,108,1.0,2 +57108,18,1.0,0,1.162740707397461,109,1.0,2 +57109,18,1.0,0,1.5997374057769775,110,1.0,2 +57110,18,1.0,0,2.1397347450256348,111,1.0,2 +57111,18,1.0,0,1.6127372980117798,112,1.0,2 +57112,18,1.0,0,2.0557315349578857,113,1.0,2 +57113,18,0.0,0,1.7867350578308105,114,0.0,2 +57114,18,1.0,0,1.4317395687103271,115,1.0,2 +57115,18,1.0,0,2.0337319374084473,116,1.0,2 +57116,18,1.0,0,1.72273588180542,117,1.0,2 +57117,18,0.0,0,1.7817351818084717,118,0.0,2 +57118,18,1.0,0,1.3757402896881104,119,1.0,2 +57119,18,1.0,0,2.457749366760254,120,0.0,2 +57120,18,0.0,0,1.3447407484054565,121,1.0,2 +57121,18,0.0,0,1.2687408924102783,122,0.0,2 +57122,18,1.0,0,2.1157336235046387,123,1.0,2 +57123,18,1.0,0,1.6987361907958984,124,1.0,2 +57124,18,1.0,0,1.5987374782562256,125,1.0,2 +57125,18,1.0,0,1.3587405681610107,126,1.0,2 +57126,18,1.0,0,1.5867376327514648,127,0.0,2 +57127,18,1.0,0,2.5417532920837402,128,1.0,2 +57128,18,1.0,0,2.3887462615966797,129,1.0,2 +57129,18,1.0,0,1.5657378435134888,130,1.0,2 +57130,18,1.0,0,1.9267332553863525,131,1.0,2 +57131,18,1.0,0,1.3457406759262085,132,1.0,2 +57132,18,1.0,0,1.4667391777038574,133,1.0,2 +57133,18,1.0,0,1.4887388944625854,134,1.0,2 +57134,18,0.0,0,2.044731616973877,135,0.0,2 +57135,18,1.0,0,2.210737943649292,136,0.0,2 +57136,18,1.0,0,1.290740966796875,137,1.0,2 +57137,18,0.0,0,1.535738229751587,138,0.0,2 +57138,18,1.0,0,2.5617542266845703,139,1.0,2 +57139,18,1.0,0,1.4447394609451294,140,1.0,2 +57140,18,0.0,0,1.3177410364151,141,0.0,2 +57141,18,1.0,0,1.3797402381896973,142,1.0,2 +57142,18,1.0,0,1.5457381010055542,143,1.0,2 +57143,18,1.0,0,1.413739800453186,144,1.0,2 +57144,18,1.0,0,1.5967375040054321,145,1.0,2 +57145,18,1.0,0,1.412739872932434,146,1.0,2 +57146,18,1.0,0,1.2457408905029297,147,1.0,2 +57147,18,1.0,0,1.296741008758545,148,1.0,2 +57148,18,0.0,0,1.4407395124435425,149,1.0,2 +57149,18,1.0,0,1.7457356452941895,150,1.0,2 +57150,18,1.0,0,2.0687313079833984,151,1.0,2 +57151,18,1.0,0,2.0177321434020996,152,1.0,2 +57152,18,0.0,0,1.3017410039901733,153,1.0,2 +57153,18,1.0,0,1.5867376327514648,154,1.0,2 +57154,18,0.0,0,1.4377394914627075,155,0.0,2 +57155,18,1.0,0,1.2797409296035767,156,1.0,2 +57156,18,0.0,0,1.8487342596054077,157,0.0,2 +57157,18,1.0,0,1.8307344913482666,158,1.0,2 +57158,18,1.0,0,1.4977387189865112,159,0.0,2 +57159,18,1.0,0,1.556738018989563,160,1.0,2 +57160,18,0.0,0,1.552738070487976,161,0.0,2 +57161,18,1.0,0,1.3547406196594238,162,1.0,2 +57162,18,1.0,0,1.909733533859253,163,0.0,2 +57163,18,1.0,0,1.7097361087799072,164,0.0,2 +57164,18,1.0,0,1.5987374782562256,165,1.0,2 +57165,18,0.0,0,2.499751567840576,166,0.0,2 +57166,18,1.0,0,1.6847363710403442,167,1.0,2 +57167,18,1.0,0,1.7937350273132324,168,1.0,2 +57168,18,0.0,0,2.191737174987793,169,0.0,2 +57169,18,1.0,0,2.265740394592285,170,1.0,2 +57170,18,1.0,0,1.3327409029006958,171,0.0,2 +57171,18,0.0,0,1.5487381219863892,172,0.0,2 +57172,18,0.0,0,1.259740948677063,173,1.0,2 +57173,18,0.0,0,1.4377394914627075,174,0.0,2 +57174,18,0.0,0,1.324741005897522,175,0.0,2 +57175,18,0.0,0,1.995732307434082,176,0.0,2 +57176,18,0.0,0,1.767735242843628,177,0.0,2 +57177,18,0.0,0,1.9487329721450806,178,0.0,2 +57178,18,1.0,0,1.9677326679229736,179,1.0,2 +57179,18,1.0,0,1.5657378435134888,180,1.0,2 +57180,18,1.0,0,1.3767403364181519,181,1.0,2 +57181,18,1.0,0,1.4237396717071533,182,1.0,2 +57182,18,1.0,0,1.2447408437728882,183,1.0,2 +57183,18,1.0,0,1.3807402849197388,184,1.0,2 +57184,18,1.0,0,2.18273663520813,185,1.0,2 +57185,18,1.0,0,1.4597392082214355,186,0.0,2 +57186,18,0.0,0,1.2517409324645996,187,0.0,2 +57187,18,0.0,0,1.9307332038879395,188,1.0,2 +57188,18,0.0,0,1.5377382040023804,189,0.0,2 +57189,18,0.0,0,1.3377407789230347,190,0.0,2 +57190,18,1.0,0,1.8787338733673096,191,1.0,2 +57191,18,0.0,0,1.4797389507293701,192,0.0,2 +57192,18,1.0,0,1.7017362117767334,193,1.0,2 +57193,18,1.0,0,1.600737452507019,194,0.0,2 +57194,18,1.0,0,1.2837409973144531,195,1.0,2 +57195,18,0.0,0,1.4477393627166748,196,0.0,2 +57196,18,1.0,0,1.3977400064468384,197,1.0,2 +57197,18,1.0,0,1.5417381525039673,198,1.0,2 +57198,18,1.0,0,1.2647409439086914,199,1.0,2 +57199,18,1.0,0,1.4497393369674683,200,1.0,2 +57200,18,1.0,0,1.770735263824463,201,1.0,2 +57201,18,1.0,0,1.5247384309768677,202,1.0,2 +57202,18,1.0,0,1.9307332038879395,203,1.0,2 +57203,18,1.0,0,1.7207359075546265,204,1.0,2 +57204,18,1.0,0,2.0247321128845215,205,1.0,2 +57205,18,0.0,0,1.765735387802124,206,0.0,2 +57206,18,1.0,0,1.534738302230835,207,1.0,2 +57207,18,1.0,0,1.412739872932434,208,1.0,2 +57208,18,0.0,0,1.3447407484054565,209,0.0,2 +57209,18,1.0,0,1.438739538192749,210,0.0,2 +57210,18,0.0,0,1.997732400894165,211,0.0,2 +57211,18,0.0,0,1.1797407865524292,212,0.0,2 +57212,18,0.0,0,1.7827351093292236,213,1.0,2 +57213,18,0.0,0,1.677736520767212,214,0.0,2 +57214,18,1.0,0,1.8457343578338623,215,1.0,2 +57215,18,1.0,0,2.6587588787078857,216,1.0,2 +57216,18,0.0,0,1.2687408924102783,217,0.0,2 +57217,18,1.0,0,1.6437368392944336,218,0.0,2 +57218,18,0.0,0,2.1277341842651367,219,1.0,2 +57219,18,0.0,0,1.4117398262023926,220,0.0,2 +57220,18,0.0,0,2.727762222290039,221,1.0,2 +57221,18,0.0,0,1.457739233970642,222,0.0,2 +57222,18,0.0,0,1.5377382040023804,223,0.0,2 +57223,18,1.0,0,2.043731689453125,224,1.0,2 +57224,18,1.0,0,1.8897337913513184,225,1.0,2 +57225,18,0.0,0,1.3597404956817627,226,0.0,2 +57226,18,1.0,0,1.4037399291992188,227,0.0,2 +57227,18,1.0,0,1.6417369842529297,228,1.0,2 +57228,18,1.0,0,1.2157407999038696,229,1.0,2 +57229,18,1.0,0,2.0857319831848145,230,1.0,2 +57230,18,1.0,0,1.5017386674880981,231,1.0,2 +57231,18,1.0,0,1.7717351913452148,232,1.0,2 +57232,18,1.0,0,1.4487394094467163,233,0.0,2 +57233,18,1.0,0,1.928733229637146,234,1.0,2 +57234,18,1.0,0,1.5677378177642822,235,1.0,2 +57235,18,0.0,0,2.0157320499420166,236,0.0,2 +57236,18,1.0,0,2.3427441120147705,237,1.0,2 +57237,18,1.0,0,1.644736886024475,238,1.0,2 +57238,18,1.0,0,1.3827402591705322,239,0.0,2 +57239,18,1.0,0,2.226738691329956,240,1.0,2 +57240,18,1.0,0,1.5167385339736938,241,1.0,2 +57241,18,1.0,0,1.486738920211792,242,1.0,2 +57242,18,1.0,0,2.036731719970703,243,0.0,2 +57243,18,1.0,0,1.3897401094436646,244,1.0,2 +57244,18,1.0,0,1.4307396411895752,245,1.0,2 +57245,18,1.0,0,1.3767403364181519,246,1.0,2 +57246,18,1.0,0,1.3227410316467285,247,1.0,2 +57247,18,1.0,0,1.4787390232086182,248,1.0,2 +57248,18,1.0,0,2.2917418479919434,249,1.0,2 +57249,18,1.0,0,1.4017399549484253,250,1.0,2 +57250,18,0.0,0,1.2077407836914062,251,0.0,2 +57251,18,1.0,0,1.4597392082214355,252,1.0,2 +57252,18,1.0,0,1.2897409200668335,253,1.0,2 +57253,18,0.0,0,1.4597392082214355,254,0.0,2 +57254,18,1.0,0,1.7297358512878418,255,1.0,2 +57255,18,0.0,0,1.4307396411895752,256,0.0,2 +57256,18,1.0,0,1.7947349548339844,257,1.0,2 +57257,18,1.0,0,1.3077410459518433,258,1.0,2 +57258,18,1.0,0,1.4767390489578247,259,1.0,2 +57259,18,1.0,0,1.3307409286499023,260,1.0,2 +57260,18,1.0,0,1.5547380447387695,261,1.0,2 +57261,18,1.0,0,2.006732225418091,262,1.0,2 +57262,18,1.0,0,1.4087399244308472,263,1.0,2 +57263,18,1.0,0,1.5497380495071411,264,1.0,2 +57264,18,0.0,0,1.3007409572601318,265,0.0,2 +57265,18,0.0,0,1.627737045288086,266,1.0,2 +57266,18,1.0,0,1.4687391519546509,267,1.0,2 +57267,18,0.0,0,1.6937363147735596,268,0.0,2 +57268,18,1.0,0,1.4477393627166748,269,1.0,2 +57269,18,1.0,0,1.7077360153198242,270,0.0,2 +57270,18,1.0,0,1.5297383069992065,271,0.0,2 +57271,18,0.0,0,1.8387343883514404,272,0.0,2 +57272,18,1.0,0,1.412739872932434,273,1.0,2 +57273,18,1.0,0,1.443739414215088,274,1.0,2 +57274,18,1.0,0,1.5987374782562256,275,1.0,2 +57275,18,1.0,0,1.625737190246582,276,1.0,2 +57276,18,1.0,0,1.8697340488433838,277,1.0,2 +57277,18,1.0,0,1.3107409477233887,278,1.0,2 +57278,18,1.0,0,1.552738070487976,279,1.0,2 +57279,18,1.0,0,1.1837407350540161,280,1.0,2 +57280,18,1.0,0,1.6107373237609863,281,1.0,2 +57281,18,0.0,0,1.286741018295288,282,0.0,2 +57282,18,1.0,0,1.4067399501800537,283,1.0,2 +57283,18,1.0,0,1.4537392854690552,284,1.0,2 +57284,18,1.0,0,1.5837376117706299,285,1.0,2 +57285,18,1.0,0,1.619737148284912,286,1.0,2 +57286,18,1.0,0,1.3837401866912842,287,1.0,2 +57287,18,0.0,0,1.3587405681610107,288,0.0,2 +57288,18,1.0,0,1.4527393579483032,289,1.0,2 +57289,18,1.0,0,2.22273850440979,290,1.0,2 +57290,18,1.0,0,1.4107398986816406,291,1.0,2 +57291,18,1.0,0,1.6657366752624512,292,1.0,2 +57292,18,0.0,0,1.6127372980117798,293,0.0,2 +57293,18,1.0,0,1.674736499786377,294,1.0,2 +57294,18,0.0,0,1.674736499786377,295,0.0,2 +57295,18,0.0,0,2.256740093231201,296,0.0,2 +57296,18,1.0,0,1.7737352848052979,297,1.0,2 +57297,18,1.0,0,1.5657378435134888,298,1.0,2 +57298,18,1.0,0,1.3107409477233887,299,1.0,2 +57299,18,0.0,0,1.8277344703674316,300,0.0,2 +57300,18,1.0,0,1.2457408905029297,301,0.0,2 +57301,18,1.0,0,1.3777402639389038,302,1.0,2 +57302,18,1.0,0,1.232740879058838,303,0.0,2 +57303,18,1.0,0,1.3447407484054565,304,1.0,2 +57304,18,1.0,0,1.7437355518341064,305,0.0,2 +57305,18,1.0,0,2.049731731414795,306,1.0,2 +57306,18,1.0,0,1.627737045288086,307,1.0,2 +57307,18,1.0,0,1.9777326583862305,308,1.0,2 +57308,18,1.0,0,1.557737946510315,309,1.0,2 +57309,18,1.0,0,2.0847320556640625,310,0.0,2 +57310,18,0.0,0,1.3377407789230347,311,0.0,2 +57311,18,1.0,0,1.7247358560562134,312,0.0,2 +57312,18,0.0,0,2.051731586456299,313,1.0,2 +57313,18,0.0,0,1.2977409362792969,314,0.0,2 +57314,18,0.0,0,1.7867350578308105,315,0.0,2 +57315,18,1.0,0,1.3057409524917603,316,1.0,2 +57316,18,1.0,0,1.769735336303711,317,1.0,2 +57317,18,0.0,0,1.5297383069992065,318,0.0,2 +57318,18,1.0,0,1.8667340278625488,319,1.0,2 +57319,18,1.0,0,1.4497393369674683,320,1.0,2 +57320,18,1.0,0,1.53173828125,321,1.0,2 +57321,18,1.0,0,1.5177384614944458,322,1.0,2 +57322,18,1.0,0,1.8637340068817139,323,1.0,2 +57323,18,1.0,0,1.5387382507324219,324,1.0,2 +57324,18,0.0,0,1.3637404441833496,325,0.0,2 +57325,18,1.0,0,2.035731792449951,326,0.0,2 +57326,18,1.0,0,1.56073796749115,327,1.0,2 +57327,18,1.0,0,1.1977407932281494,328,1.0,2 +57328,18,1.0,0,1.6187372207641602,329,1.0,2 +57329,18,1.0,0,1.4157397747039795,330,1.0,2 +57330,18,1.0,0,2.0187320709228516,331,0.0,2 +57331,18,1.0,0,2.1237339973449707,332,0.0,2 +57332,18,1.0,0,1.9857325553894043,333,1.0,2 +57333,18,1.0,0,1.2377408742904663,334,1.0,2 +57334,18,1.0,0,1.4807389974594116,335,1.0,2 +57335,18,0.0,0,1.250740885734558,336,0.0,2 +57336,18,1.0,0,1.4797389507293701,337,1.0,2 +57337,18,1.0,0,1.644736886024475,338,1.0,2 +57338,18,1.0,0,1.5487381219863892,339,1.0,2 +57339,18,0.0,0,1.2277408838272095,340,0.0,2 +57340,18,1.0,0,1.9297332763671875,341,1.0,2 +57341,18,1.0,0,2.0277318954467773,342,1.0,2 +57342,18,1.0,0,2.0977325439453125,343,1.0,2 +57343,18,1.0,0,2.3397440910339355,344,0.0,2 +57344,18,0.0,0,1.219740867614746,345,1.0,2 +57345,18,0.0,0,1.253740906715393,346,0.0,2 +57346,18,0.0,0,1.4757390022277832,347,1.0,2 +57347,18,0.0,0,1.4567393064498901,348,0.0,2 +57348,18,1.0,0,2.1067330837249756,349,1.0,2 +57349,18,1.0,0,1.4767390489578247,350,1.0,2 +57350,18,1.0,0,1.3887401819229126,351,1.0,2 +57351,18,0.0,0,1.7607353925704956,352,0.0,2 +57352,18,1.0,0,1.3357408046722412,353,1.0,2 +57353,18,1.0,0,1.9817326068878174,354,1.0,2 +57354,18,1.0,0,1.9697327613830566,355,1.0,2 +57355,18,0.0,0,1.4447394609451294,356,1.0,2 +57356,18,0.0,0,2.042731761932373,357,1.0,2 +57357,18,0.0,0,1.3157410621643066,358,1.0,2 +57358,18,0.0,0,1.836734414100647,359,0.0,2 +57359,18,1.0,0,1.7417356967926025,360,1.0,2 +57360,18,1.0,0,1.7287358045578003,361,1.0,2 +57361,18,1.0,0,1.442739486694336,362,1.0,2 +57362,18,1.0,0,1.6917362213134766,363,1.0,2 +57363,18,1.0,0,1.9307332038879395,364,1.0,2 +57364,18,1.0,0,1.4327396154403687,365,1.0,2 +57365,18,1.0,0,2.190737009048462,366,1.0,2 +57366,18,1.0,0,1.6247371435165405,367,1.0,2 +57367,18,0.0,0,1.4707391262054443,368,0.0,2 +57368,18,1.0,0,1.2997410297393799,369,1.0,2 +57369,18,1.0,0,1.3627405166625977,370,1.0,2 +57370,18,1.0,0,1.7527354955673218,371,1.0,2 +57371,18,1.0,0,1.2427408695220947,372,1.0,2 +57372,18,0.0,0,1.2357409000396729,373,0.0,2 +57373,18,1.0,0,1.8237345218658447,374,1.0,2 +57374,18,1.0,0,1.4507393836975098,375,1.0,2 +57375,18,1.0,0,1.4897388219833374,376,1.0,2 +57376,18,1.0,0,2.3377437591552734,377,1.0,2 +57377,18,1.0,0,1.3607405424118042,378,1.0,2 +57378,18,0.0,0,1.901733636856079,379,0.0,2 +57379,18,1.0,0,1.365740418434143,380,1.0,2 +57380,18,1.0,0,1.7537355422973633,381,1.0,2 +57381,18,1.0,0,1.4717390537261963,382,1.0,2 +57382,18,1.0,0,1.4237396717071533,383,1.0,2 +57383,18,0.0,0,1.8637340068817139,384,0.0,2 +57384,18,1.0,0,1.8307344913482666,385,0.0,2 +57385,18,1.0,0,1.574737787246704,386,1.0,2 +57386,18,1.0,0,1.8977336883544922,387,1.0,2 +57387,18,1.0,0,1.3587405681610107,388,1.0,2 +57388,18,0.0,0,1.3487406969070435,389,0.0,2 +57389,18,1.0,0,1.2617409229278564,390,1.0,2 +57390,18,1.0,0,1.903733491897583,391,1.0,2 +57391,18,0.0,0,1.9347331523895264,392,0.0,2 +57392,18,1.0,0,2.3007421493530273,393,1.0,2 +57393,18,1.0,0,2.0927324295043945,394,1.0,2 +57394,18,1.0,0,1.7317357063293457,395,1.0,2 +57395,18,1.0,0,1.3317408561706543,396,0.0,2 +57396,18,1.0,0,1.3067409992218018,397,1.0,2 +57397,18,1.0,0,1.8447343111038208,398,0.0,2 +57398,18,0.0,0,1.8497343063354492,399,0.0,2 +57399,18,1.0,0,1.585737705230713,400,1.0,2 +57400,18,1.0,0,1.5687378644943237,401,0.0,2 +57401,18,0.0,0,1.4247397184371948,402,0.0,2 +57402,18,0.0,0,1.6657366752624512,403,0.0,2 +57403,18,0.0,0,1.4287396669387817,404,0.0,2 +57404,18,0.0,0,1.5247384309768677,405,1.0,2 +57405,18,0.0,0,1.7257359027862549,406,0.0,2 +57406,18,1.0,0,1.717736005783081,407,1.0,2 +57407,18,1.0,0,1.6607366800308228,408,1.0,2 +57408,18,1.0,0,1.677736520767212,409,0.0,2 +57409,18,1.0,0,2.1217336654663086,410,1.0,2 +57410,18,1.0,0,1.6807364225387573,411,1.0,2 +57411,18,1.0,0,1.7957348823547363,412,1.0,2 +57412,18,1.0,0,1.8857338428497314,413,1.0,2 +57413,18,1.0,0,2.5637545585632324,414,1.0,2 +57414,18,1.0,0,1.6957361698150635,415,1.0,2 +57415,18,1.0,0,1.3927401304244995,416,1.0,2 +57416,18,1.0,0,1.6497368812561035,417,0.0,2 +57417,18,0.0,0,1.4257396459579468,418,0.0,2 +57418,18,0.0,0,1.2557408809661865,419,0.0,2 +57419,18,0.0,0,1.4147398471832275,420,0.0,2 +57420,18,0.0,0,1.8637340068817139,421,0.0,2 +57421,18,0.0,0,1.2307407855987549,422,0.0,2 +57422,18,1.0,0,2.156735420227051,423,1.0,2 +57423,18,0.0,0,1.465739130973816,424,0.0,2 +57424,18,0.0,0,1.8957335948944092,425,1.0,2 +57425,18,1.0,0,2.241739273071289,426,1.0,2 +57426,18,0.0,0,1.7477355003356934,427,0.0,2 +57427,18,1.0,0,1.5227384567260742,428,1.0,2 +57428,18,1.0,0,2.214738130569458,429,1.0,2 +57429,18,1.0,0,1.5247384309768677,430,1.0,2 +57430,18,1.0,0,1.372740387916565,431,1.0,2 +57431,18,1.0,0,1.4557392597198486,432,1.0,2 +57432,18,1.0,0,1.667736530303955,433,1.0,2 +57433,18,1.0,0,1.9607328176498413,434,1.0,2 +57434,18,1.0,0,1.8517341613769531,435,1.0,2 +57435,18,1.0,0,1.3127410411834717,436,1.0,2 +57436,18,1.0,0,1.5997374057769775,437,1.0,2 +57437,18,1.0,0,3.049777030944824,438,1.0,2 +57438,18,1.0,0,1.80973482131958,439,1.0,2 +57439,18,1.0,0,1.5267384052276611,440,1.0,2 +57440,18,1.0,0,1.2707409858703613,441,1.0,2 +57441,18,1.0,0,2.189736843109131,442,1.0,2 +57442,18,0.0,0,1.2667409181594849,443,0.0,2 +57443,18,0.0,0,1.4627392292022705,444,0.0,2 +57444,18,1.0,0,1.6147372722625732,445,1.0,2 +57445,18,1.0,0,1.3527406454086304,446,1.0,2 +57446,18,1.0,0,1.483738899230957,447,1.0,2 +57447,18,1.0,0,1.648736834526062,448,1.0,2 +57448,18,0.0,0,1.3767403364181519,449,0.0,2 +57449,18,0.0,0,1.7867350578308105,450,0.0,2 +57450,18,1.0,0,1.7067360877990723,451,1.0,2 +57451,18,1.0,0,1.438739538192749,452,1.0,2 +57452,18,1.0,0,1.6727365255355835,453,1.0,2 +57453,18,1.0,0,1.294740915298462,454,1.0,2 +57454,18,1.0,0,1.718735933303833,455,1.0,2 +57455,18,1.0,0,1.5707378387451172,456,1.0,2 +57456,18,0.0,0,2.52175235748291,457,0.0,2 +57457,18,1.0,0,2.043731689453125,458,1.0,2 +57458,18,1.0,0,1.581737756729126,459,1.0,2 +57459,18,1.0,0,2.3547446727752686,460,1.0,2 +57460,18,0.0,0,1.905733585357666,461,0.0,2 +57461,18,1.0,0,1.3457406759262085,462,1.0,2 +57462,18,1.0,0,1.9717326164245605,463,0.0,2 +57463,18,1.0,0,1.4747390747070312,464,1.0,2 +57464,18,1.0,0,1.3847402334213257,465,1.0,2 +57465,18,1.0,0,1.3967400789260864,466,1.0,2 +57466,18,0.0,0,1.8477342128753662,467,0.0,2 +57467,18,0.0,0,1.674736499786377,468,0.0,2 +57468,18,1.0,0,1.4327396154403687,469,1.0,2 +57469,18,1.0,0,1.509738564491272,470,1.0,2 +57470,18,1.0,0,1.4687391519546509,471,0.0,2 +57471,18,1.0,0,1.5037386417388916,472,0.0,2 +57472,18,0.0,0,1.5737378597259521,473,0.0,2 +57473,18,0.0,0,1.4947388172149658,474,0.0,2 +57474,18,1.0,0,1.29374098777771,475,0.0,2 +57475,18,1.0,0,1.7287358045578003,476,1.0,2 +57476,18,1.0,0,1.2157407999038696,477,1.0,2 +57477,18,0.0,0,1.373740315437317,478,0.0,2 +57478,18,1.0,0,1.769735336303711,479,1.0,2 +57479,18,1.0,0,1.7547354698181152,480,0.0,2 +57480,18,0.0,0,1.483738899230957,481,0.0,2 +57481,18,0.0,0,1.487738847732544,482,0.0,2 +57482,18,1.0,0,2.1527352333068848,483,1.0,2 +57483,18,1.0,0,1.5027387142181396,484,1.0,2 +57484,18,1.0,0,1.765735387802124,485,1.0,2 +57485,18,1.0,0,1.579737663269043,486,1.0,2 +57486,18,1.0,0,1.7957348823547363,487,1.0,2 +57487,18,1.0,0,1.2677409648895264,488,1.0,2 +57488,18,1.0,0,1.5707378387451172,489,1.0,2 +57489,18,1.0,0,1.6057374477386475,490,1.0,2 +57490,18,1.0,0,1.443739414215088,491,1.0,2 +57491,18,1.0,0,1.5557379722595215,492,1.0,2 +57492,18,1.0,0,1.9317331314086914,493,1.0,2 +57493,18,1.0,0,1.3057409524917603,494,1.0,2 +57494,18,1.0,0,1.395740032196045,495,1.0,2 +57495,18,1.0,0,1.7297358512878418,496,1.0,2 +57496,18,1.0,0,1.3827402591705322,497,0.0,2 +57497,18,0.0,0,1.2957409620285034,498,0.0,2 +57498,18,0.0,0,1.8317344188690186,499,1.0,2 +57499,18,1.0,0,1.8247345685958862,500,0.0,2 +57500,18,0.0,1,2.3557448387145996,1,1.0,2 +57501,18,0.0,1,2.1037330627441406,2,1.0,2 +57502,18,0.0,1,1.8057348728179932,3,0.0,2 +57503,18,0.0,1,1.5847376585006714,4,0.0,2 +57504,18,0.0,1,1.3167409896850586,5,0.0,2 +57505,18,1.0,1,2.1627357006073,6,1.0,2 +57506,18,1.0,1,1.3787403106689453,7,0.0,2 +57507,18,0.0,1,1.4497393369674683,8,0.0,2 +57508,18,0.0,1,1.4817389249801636,9,0.0,2 +57509,18,1.0,1,2.0207319259643555,10,1.0,2 +57510,18,1.0,1,1.6557366847991943,11,1.0,2 +57511,18,1.0,1,1.3157410621643066,12,0.0,2 +57512,18,0.0,1,1.2997410297393799,13,0.0,2 +57513,18,0.0,1,1.6957361698150635,14,0.0,2 +57514,18,1.0,1,1.9387331008911133,15,0.0,2 +57515,18,0.0,1,1.3517405986785889,16,0.0,2 +57516,18,0.0,1,1.5457381010055542,17,1.0,2 +57517,18,0.0,1,1.4687391519546509,18,1.0,2 +57518,18,0.0,1,1.8027348518371582,19,0.0,2 +57519,18,0.0,1,2.0957326889038086,20,0.0,2 +57520,18,0.0,1,1.759735345840454,21,0.0,2 +57521,18,1.0,1,1.50873863697052,22,1.0,2 +57522,18,1.0,1,1.5807377099990845,23,1.0,2 +57523,18,1.0,1,2.281741142272949,24,1.0,2 +57524,18,1.0,1,1.6667366027832031,25,0.0,2 +57525,18,1.0,1,1.6547367572784424,26,1.0,2 +57526,18,1.0,1,1.6877362728118896,27,0.0,2 +57527,18,0.0,1,1.505738615989685,28,0.0,2 +57528,18,0.0,1,2.184736728668213,29,1.0,2 +57529,18,0.0,1,1.2857409715652466,30,0.0,2 +57530,18,1.0,1,1.7897350788116455,31,1.0,2 +57531,18,1.0,1,1.6357369422912598,32,1.0,2 +57532,18,0.0,1,2.0887322425842285,33,0.0,2 +57533,18,0.0,1,1.3407407999038696,34,0.0,2 +57534,18,1.0,1,1.2817409038543701,35,0.0,2 +57535,18,1.0,1,1.5837376117706299,36,1.0,2 +57536,18,1.0,1,2.0737314224243164,37,1.0,2 +57537,18,1.0,1,1.3997399806976318,38,0.0,2 +57538,18,0.0,1,2.478750467300415,39,1.0,2 +57539,18,0.0,1,1.294740915298462,40,0.0,2 +57540,18,0.0,1,1.2317408323287964,41,0.0,2 +57541,18,1.0,1,1.811734676361084,42,1.0,2 +57542,18,0.0,1,1.4987387657165527,43,0.0,2 +57543,18,1.0,1,1.2617409229278564,44,1.0,2 +57544,18,1.0,1,1.5397381782531738,45,1.0,2 +57545,18,1.0,1,1.5737378597259521,46,0.0,2 +57546,18,0.0,1,1.2467408180236816,47,0.0,2 +57547,18,1.0,1,1.2787408828735352,48,1.0,2 +57548,18,1.0,1,1.553737998008728,49,1.0,2 +57549,18,1.0,1,1.8867337703704834,50,1.0,2 +57550,18,0.0,1,1.7097361087799072,51,0.0,2 +57551,18,0.0,1,1.2997410297393799,52,1.0,2 +57552,18,1.0,1,1.6847363710403442,53,1.0,2 +57553,18,0.0,1,1.5337382555007935,54,0.0,2 +57554,18,1.0,1,2.0927324295043945,55,0.0,2 +57555,18,0.0,1,1.623737096786499,56,1.0,2 +57556,18,0.0,1,1.1547406911849976,57,0.0,2 +57557,18,1.0,1,2.655758857727051,58,1.0,2 +57558,18,1.0,1,2.5557541847229004,59,1.0,2 +57559,18,1.0,1,1.5807377099990845,60,1.0,2 +57560,18,1.0,1,1.8007348775863647,61,1.0,2 +57561,18,1.0,1,1.2817409038543701,62,1.0,2 +57562,18,1.0,1,1.2027407884597778,63,1.0,2 +57563,18,1.0,1,1.3857401609420776,64,0.0,2 +57564,18,0.0,1,1.2047407627105713,65,1.0,2 +57565,18,0.0,1,1.284740924835205,66,0.0,2 +57566,18,1.0,1,1.556738018989563,67,1.0,2 +57567,18,1.0,1,1.5417381525039673,68,0.0,2 +57568,18,1.0,1,1.3797402381896973,69,1.0,2 +57569,18,1.0,1,1.6207371950149536,70,1.0,2 +57570,18,1.0,1,1.3997399806976318,71,1.0,2 +57571,18,1.0,1,1.7567354440689087,72,0.0,2 +57572,18,0.0,1,2.2987420558929443,73,1.0,2 +57573,18,0.0,1,1.9407330751419067,74,0.0,2 +57574,18,1.0,1,2.006732225418091,75,1.0,2 +57575,18,0.0,1,2.7957653999328613,76,0.0,2 +57576,18,1.0,1,1.4407395124435425,77,1.0,2 +57577,18,1.0,1,1.365740418434143,78,1.0,2 +57578,18,1.0,1,1.6457369327545166,79,0.0,2 +57579,18,1.0,1,1.6377370357513428,80,1.0,2 +57580,18,1.0,1,1.3887401819229126,81,1.0,2 +57581,18,1.0,1,1.8527342081069946,82,1.0,2 +57582,18,1.0,1,1.6167372465133667,83,1.0,2 +57583,18,1.0,1,1.435739517211914,84,1.0,2 +57584,18,0.0,1,1.413739800453186,85,0.0,2 +57585,18,1.0,1,1.4517393112182617,86,1.0,2 +57586,18,1.0,1,1.5687378644943237,87,0.0,2 +57587,18,0.0,1,1.6617367267608643,88,1.0,2 +57588,18,0.0,1,1.1827406883239746,89,0.0,2 +57589,18,0.0,1,2.443748950958252,90,1.0,2 +57590,18,0.0,1,1.5917375087738037,91,1.0,2 +57591,18,0.0,1,2.158735513687134,92,0.0,2 +57592,18,1.0,1,1.619737148284912,93,1.0,2 +57593,18,1.0,1,1.3017410039901733,94,0.0,2 +57594,18,0.0,1,1.6657366752624512,95,0.0,2 +57595,18,1.0,1,1.9047335386276245,96,1.0,2 +57596,18,1.0,1,2.1157336235046387,97,1.0,2 +57597,18,0.0,1,1.8907337188720703,98,1.0,2 +57598,18,0.0,1,1.6157371997833252,99,0.0,2 +57599,18,1.0,1,1.5257383584976196,100,1.0,2 +57600,18,1.0,1,2.0687313079833984,101,1.0,2 +57601,18,1.0,1,1.7857351303100586,102,1.0,2 +57602,18,1.0,1,1.3297408819198608,103,1.0,2 +57603,18,1.0,1,1.7777352333068848,104,1.0,2 +57604,18,1.0,1,2.04673171043396,105,1.0,2 +57605,18,1.0,1,1.8017349243164062,106,0.0,2 +57606,18,1.0,1,1.3137409687042236,107,1.0,2 +57607,18,1.0,1,1.5927375555038452,108,0.0,2 +57608,18,1.0,1,2.044731616973877,109,1.0,2 +57609,18,0.0,1,1.9937324523925781,110,0.0,2 +57610,18,1.0,1,1.2727409601211548,111,1.0,2 +57611,18,1.0,1,1.5997374057769775,112,0.0,2 +57612,18,1.0,1,1.3887401819229126,113,1.0,2 +57613,18,0.0,1,1.6667366027832031,114,1.0,2 +57614,18,0.0,1,1.2807409763336182,115,0.0,2 +57615,18,0.0,1,1.6417369842529297,116,0.0,2 +57616,18,1.0,1,2.0907323360443115,117,1.0,2 +57617,18,1.0,1,1.622737169265747,118,0.0,2 +57618,18,0.0,1,2.423748016357422,119,0.0,2 +57619,18,1.0,1,1.7357356548309326,120,1.0,2 +57620,18,0.0,1,1.8537342548370361,121,0.0,2 +57621,18,1.0,1,1.7517354488372803,122,1.0,2 +57622,18,0.0,1,1.5717377662658691,123,1.0,2 +57623,18,1.0,1,1.836734414100647,124,1.0,2 +57624,18,1.0,1,1.9587328433990479,125,1.0,2 +57625,18,0.0,1,2.216738224029541,126,0.0,2 +57626,18,1.0,1,1.7867350578308105,127,0.0,2 +57627,18,0.0,1,1.2287408113479614,128,0.0,2 +57628,18,1.0,1,1.368740439414978,129,1.0,2 +57629,18,1.0,1,1.3307409286499023,130,1.0,2 +57630,18,0.0,1,1.3707404136657715,131,1.0,2 +57631,18,0.0,1,1.5957374572753906,132,0.0,2 +57632,18,0.0,1,1.2667409181594849,133,0.0,2 +57633,18,1.0,1,1.7537355422973633,134,1.0,2 +57634,18,1.0,1,1.4027400016784668,135,1.0,2 +57635,18,1.0,1,1.6077373027801514,136,0.0,2 +57636,18,1.0,1,1.527738332748413,137,1.0,2 +57637,18,1.0,1,1.4547393321990967,138,0.0,2 +57638,18,1.0,1,1.6127372980117798,139,1.0,2 +57639,18,1.0,1,1.5077385902404785,140,1.0,2 +57640,18,1.0,1,1.7377357482910156,141,1.0,2 +57641,18,1.0,1,1.368740439414978,142,0.0,2 +57642,18,0.0,1,1.7467355728149414,143,0.0,2 +57643,18,0.0,1,2.3937463760375977,144,0.0,2 +57644,18,0.0,1,1.7557353973388672,145,0.0,2 +57645,18,1.0,1,1.854734182357788,146,1.0,2 +57646,18,1.0,1,2.1197338104248047,147,1.0,2 +57647,18,1.0,1,1.4797389507293701,148,1.0,2 +57648,18,1.0,1,1.8507342338562012,149,1.0,2 +57649,18,1.0,1,1.623737096786499,150,1.0,2 +57650,18,1.0,1,2.0187320709228516,151,0.0,2 +57651,18,0.0,1,1.721735954284668,152,1.0,2 +57652,18,0.0,1,1.7967349290847778,153,0.0,2 +57653,18,1.0,1,1.765735387802124,154,1.0,2 +57654,18,1.0,1,1.4987387657165527,155,1.0,2 +57655,18,1.0,1,1.7527354955673218,156,1.0,2 +57656,18,1.0,1,2.3567447662353516,157,1.0,2 +57657,18,1.0,1,1.391740083694458,158,0.0,2 +57658,18,1.0,1,1.815734624862671,159,0.0,2 +57659,18,1.0,1,1.3927401304244995,160,1.0,2 +57660,18,1.0,1,1.9197332859039307,161,1.0,2 +57661,18,1.0,1,1.9887324571609497,162,0.0,2 +57662,18,1.0,1,1.4367395639419556,163,1.0,2 +57663,18,0.0,1,1.2787408828735352,164,0.0,2 +57664,18,1.0,1,1.6397368907928467,165,1.0,2 +57665,18,1.0,1,1.4417394399642944,166,1.0,2 +57666,18,1.0,1,1.8957335948944092,167,0.0,2 +57667,18,1.0,1,2.237739086151123,168,1.0,2 +57668,18,1.0,1,1.5427381992340088,169,1.0,2 +57669,18,1.0,1,1.3357408046722412,170,1.0,2 +57670,18,1.0,1,1.6017374992370605,171,1.0,2 +57671,18,1.0,1,1.2387409210205078,172,1.0,2 +57672,18,1.0,1,1.6497368812561035,173,0.0,2 +57673,18,1.0,1,1.8567341566085815,174,1.0,2 +57674,18,1.0,1,2.3607449531555176,175,1.0,2 +57675,18,1.0,1,1.3847402334213257,176,1.0,2 +57676,18,1.0,1,1.464739203453064,177,1.0,2 +57677,18,1.0,1,1.6617367267608643,178,0.0,2 +57678,18,1.0,1,1.8437342643737793,179,0.0,2 +57679,18,0.0,1,1.504738688468933,180,0.0,2 +57680,18,1.0,1,1.3347408771514893,181,1.0,2 +57681,18,1.0,1,1.5737378597259521,182,0.0,2 +57682,18,1.0,1,2.044731616973877,183,0.0,2 +57683,18,0.0,1,1.8027348518371582,184,0.0,2 +57684,18,0.0,1,1.6797363758087158,185,0.0,2 +57685,18,0.0,1,1.4727391004562378,186,1.0,2 +57686,18,0.0,1,1.6187372207641602,187,1.0,2 +57687,18,0.0,1,1.3137409687042236,188,0.0,2 +57688,18,0.0,1,2.256740093231201,189,0.0,2 +57689,18,0.0,1,1.3527406454086304,190,0.0,2 +57690,18,1.0,1,1.5557379722595215,191,1.0,2 +57691,18,1.0,1,1.8037347793579102,192,1.0,2 +57692,18,0.0,1,1.7487355470657349,193,1.0,2 +57693,18,1.0,1,1.6287370920181274,194,0.0,2 +57694,18,0.0,1,1.347740650177002,195,0.0,2 +57695,18,0.0,1,1.372740387916565,196,0.0,2 +57696,18,1.0,1,1.320741057395935,197,0.0,2 +57697,18,1.0,1,2.48175048828125,198,1.0,2 +57698,18,1.0,1,1.3197410106658936,199,1.0,2 +57699,18,1.0,1,2.3697452545166016,200,0.0,2 +57700,18,0.0,1,2.0587315559387207,201,0.0,2 +57701,18,1.0,1,2.039731740951538,202,0.0,2 +57702,18,0.0,1,1.490738868713379,203,1.0,2 +57703,18,0.0,1,1.443739414215088,204,0.0,2 +57704,18,0.0,1,1.7797350883483887,205,1.0,2 +57705,18,0.0,1,1.8207346200942993,206,0.0,2 +57706,18,1.0,1,2.0257320404052734,207,0.0,2 +57707,18,0.0,1,1.6797363758087158,208,1.0,2 +57708,18,0.0,1,1.6417369842529297,209,1.0,2 +57709,18,0.0,1,1.7117359638214111,210,0.0,2 +57710,18,0.0,1,1.9437329769134521,211,0.0,2 +57711,18,1.0,1,1.7207359075546265,212,0.0,2 +57712,18,0.0,1,1.5287383794784546,213,1.0,2 +57713,18,1.0,1,2.6737594604492188,214,0.0,2 +57714,18,0.0,1,1.5167385339736938,215,0.0,2 +57715,18,0.0,1,1.457739233970642,216,0.0,2 +57716,18,0.0,1,1.604737401008606,217,0.0,2 +57717,18,0.0,1,1.3197410106658936,218,1.0,2 +57718,18,0.0,1,1.4117398262023926,219,0.0,2 +57719,18,1.0,1,1.5867376327514648,220,1.0,2 +57720,18,1.0,1,1.325740933418274,221,1.0,2 +57721,18,1.0,1,1.5417381525039673,222,1.0,2 +57722,18,1.0,1,1.8737339973449707,223,1.0,2 +57723,18,1.0,1,1.5257383584976196,224,0.0,2 +57724,18,0.0,1,2.659759044647217,225,0.0,2 +57725,18,1.0,1,1.4217396974563599,226,1.0,2 +57726,18,1.0,1,1.5207384824752808,227,1.0,2 +57727,18,1.0,1,1.557737946510315,228,1.0,2 +57728,18,1.0,1,1.6727365255355835,229,0.0,2 +57729,18,0.0,1,2.3647451400756836,230,0.0,2 +57730,18,1.0,1,1.438739538192749,231,0.0,2 +57731,18,1.0,1,1.7277357578277588,232,1.0,2 +57732,18,0.0,1,2.8577680587768555,233,0.0,2 +57733,18,1.0,1,1.99473237991333,234,1.0,2 +57734,18,1.0,1,2.251739978790283,235,1.0,2 +57735,18,1.0,1,1.575737714767456,236,0.0,2 +57736,18,0.0,1,2.1487350463867188,237,0.0,2 +57737,18,1.0,1,2.200737476348877,238,1.0,2 +57738,18,1.0,1,2.0177321434020996,239,0.0,2 +57739,18,0.0,1,2.0817317962646484,240,1.0,2 +57740,18,0.0,1,1.4987387657165527,241,0.0,2 +57741,18,1.0,1,2.7747642993927,242,0.0,2 +57742,18,0.0,1,1.85573410987854,243,0.0,2 +57743,18,0.0,1,1.3787403106689453,244,0.0,2 +57744,18,1.0,1,1.3367408514022827,245,1.0,2 +57745,18,1.0,1,2.2787411212921143,246,1.0,2 +57746,18,0.0,1,1.3177410364151,247,0.0,2 +57747,18,1.0,1,1.2927409410476685,248,0.0,2 +57748,18,1.0,1,1.6837363243103027,249,1.0,2 +57749,18,1.0,1,1.7207359075546265,250,1.0,2 +57750,18,1.0,1,1.714735984802246,251,0.0,2 +57751,18,0.0,1,1.6017374992370605,252,0.0,2 +57752,18,0.0,1,1.3397407531738281,253,0.0,2 +57753,18,1.0,1,1.4297395944595337,254,1.0,2 +57754,18,1.0,1,1.788735032081604,255,1.0,2 +57755,18,0.0,1,1.4727391004562378,256,0.0,2 +57756,18,1.0,1,1.8307344913482666,257,1.0,2 +57757,18,1.0,1,1.4587392807006836,258,1.0,2 +57758,18,1.0,1,2.5477538108825684,259,1.0,2 +57759,18,1.0,1,1.2137408256530762,260,0.0,2 +57760,18,1.0,1,1.770735263824463,261,1.0,2 +57761,18,1.0,1,1.6347370147705078,262,0.0,2 +57762,18,1.0,1,1.3927401304244995,263,0.0,2 +57763,18,0.0,1,1.577737808227539,264,0.0,2 +57764,18,0.0,1,1.8797338008880615,265,1.0,2 +57765,18,0.0,1,1.2337408065795898,266,0.0,2 +57766,18,1.0,1,2.195737361907959,267,1.0,2 +57767,18,1.0,1,2.3167428970336914,268,0.0,2 +57768,18,0.0,1,2.1447348594665527,269,0.0,2 +57769,18,1.0,1,1.630737066268921,270,0.0,2 +57770,18,1.0,1,1.4807389974594116,271,1.0,2 +57771,18,1.0,1,1.7547354698181152,272,0.0,2 +57772,18,1.0,1,1.6807364225387573,273,0.0,2 +57773,18,0.0,1,2.712761402130127,274,0.0,2 +57774,18,1.0,1,2.1157336235046387,275,1.0,2 +57775,18,1.0,1,1.6057374477386475,276,1.0,2 +57776,18,1.0,1,1.5147385597229004,277,1.0,2 +57777,18,1.0,1,1.767735242843628,278,1.0,2 +57778,18,1.0,1,1.2917410135269165,279,0.0,2 +57779,18,0.0,1,1.7087360620498657,280,1.0,2 +57780,18,0.0,1,2.236739158630371,281,0.0,2 +57781,18,0.0,1,1.5287383794784546,282,0.0,2 +57782,18,0.0,1,1.3147410154342651,283,0.0,2 +57783,18,1.0,1,1.6337370872497559,284,1.0,2 +57784,18,1.0,1,2.20273756980896,285,0.0,2 +57785,18,0.0,1,1.3227410316467285,286,0.0,2 +57786,18,1.0,1,1.3227410316467285,287,1.0,2 +57787,18,0.0,1,1.1497406959533691,288,0.0,2 +57788,18,1.0,1,1.5397381782531738,289,0.0,2 +57789,18,0.0,1,1.6767364740371704,290,1.0,2 +57790,18,0.0,1,2.436748504638672,291,0.0,2 +57791,18,1.0,1,2.249739646911621,292,1.0,2 +57792,18,1.0,1,1.857734203338623,293,1.0,2 +57793,18,1.0,1,1.9157333374023438,294,1.0,2 +57794,18,1.0,1,1.4637391567230225,295,0.0,2 +57795,18,0.0,1,1.5137385129928589,296,0.0,2 +57796,18,1.0,1,2.445748805999756,297,1.0,2 +57797,18,1.0,1,1.7997348308563232,298,0.0,2 +57798,18,0.0,1,1.3767403364181519,299,1.0,2 +57799,18,0.0,1,1.5687378644943237,300,0.0,2 +57800,18,1.0,1,1.9677326679229736,301,1.0,2 +57801,18,1.0,1,1.4967387914657593,302,1.0,2 +57802,18,1.0,1,1.439739465713501,303,1.0,2 +57803,18,1.0,1,1.2057408094406128,304,0.0,2 +57804,18,1.0,1,1.575737714767456,305,1.0,2 +57805,18,1.0,1,1.9837324619293213,306,0.0,2 +57806,18,1.0,1,2.0777316093444824,307,0.0,2 +57807,18,0.0,1,1.250740885734558,308,0.0,2 +57808,18,0.0,1,1.6097373962402344,309,0.0,2 +57809,18,0.0,1,1.7257359027862549,310,1.0,2 +57810,18,0.0,1,1.5657378435134888,311,1.0,2 +57811,18,0.0,1,1.5007387399673462,312,0.0,2 +57812,18,0.0,1,1.630737066268921,313,0.0,2 +57813,18,1.0,1,2.3417439460754395,314,0.0,2 +57814,18,0.0,1,1.260740876197815,315,1.0,2 +57815,18,0.0,1,1.3397407531738281,316,0.0,2 +57816,18,0.0,1,1.394740104675293,317,0.0,2 +57817,18,0.0,1,1.72273588180542,318,1.0,2 +57818,18,0.0,1,1.192740797996521,319,0.0,2 +57819,18,0.0,1,1.3937400579452515,320,0.0,2 +57820,18,0.0,1,1.6787364482879639,321,1.0,2 +57821,18,1.0,1,1.86173415184021,322,1.0,2 +57822,18,1.0,1,1.5017386674880981,323,1.0,2 +57823,18,0.0,1,1.2387409210205078,324,0.0,2 +57824,18,1.0,1,2.0307319164276123,325,1.0,2 +57825,18,1.0,1,1.557737946510315,326,1.0,2 +57826,18,0.0,1,2.41574764251709,327,1.0,2 +57827,18,0.0,1,1.260740876197815,328,1.0,2 +57828,18,1.0,1,1.7967349290847778,329,1.0,2 +57829,18,1.0,1,1.553737998008728,330,1.0,2 +57830,18,0.0,1,2.053731679916382,331,0.0,2 +57831,18,1.0,1,1.9217333793640137,332,1.0,2 +57832,18,0.0,1,1.5447381734848022,333,0.0,2 +57833,18,1.0,1,1.1797407865524292,334,1.0,2 +57834,18,1.0,1,1.4377394914627075,335,1.0,2 +57835,18,1.0,1,1.8457343578338623,336,1.0,2 +57836,18,0.0,1,1.5137385129928589,337,0.0,2 +57837,18,0.0,1,1.8127347230911255,338,0.0,2 +57838,18,1.0,1,1.5337382555007935,339,1.0,2 +57839,18,1.0,1,1.7717351913452148,340,1.0,2 +57840,18,1.0,1,1.6427369117736816,341,1.0,2 +57841,18,0.0,1,1.7277357578277588,342,0.0,2 +57842,18,1.0,1,2.2977418899536133,343,1.0,2 +57843,18,1.0,1,1.714735984802246,344,1.0,2 +57844,18,1.0,1,1.4947388172149658,345,0.0,2 +57845,18,1.0,1,1.99473237991333,346,1.0,2 +57846,18,0.0,1,2.0897321701049805,347,1.0,2 +57847,18,0.0,1,1.4407395124435425,348,0.0,2 +57848,18,1.0,1,1.4247397184371948,349,1.0,2 +57849,18,1.0,1,1.5467381477355957,350,0.0,2 +57850,18,0.0,1,1.4367395639419556,351,1.0,2 +57851,18,0.0,1,1.324741005897522,352,0.0,2 +57852,18,1.0,1,2.3337435722351074,353,1.0,2 +57853,18,1.0,1,1.8647340536117554,354,1.0,2 +57854,18,1.0,1,1.2817409038543701,355,1.0,2 +57855,18,1.0,1,1.5167385339736938,356,1.0,2 +57856,18,1.0,1,1.3367408514022827,357,1.0,2 +57857,18,1.0,1,1.6287370920181274,358,1.0,2 +57858,18,1.0,1,1.6427369117736816,359,1.0,2 +57859,18,0.0,1,1.7127360105514526,360,1.0,2 +57860,18,0.0,1,1.3197410106658936,361,0.0,2 +57861,18,1.0,1,2.3747456073760986,362,0.0,2 +57862,18,0.0,1,1.4107398986816406,363,0.0,2 +57863,18,0.0,1,1.9697327613830566,364,0.0,2 +57864,18,1.0,1,1.7037360668182373,365,0.0,2 +57865,18,0.0,1,1.5137385129928589,366,0.0,2 +57866,18,1.0,1,1.8347344398498535,367,0.0,2 +57867,18,1.0,1,2.0817317962646484,368,1.0,2 +57868,18,1.0,1,1.4987387657165527,369,1.0,2 +57869,18,1.0,1,1.6357369422912598,370,1.0,2 +57870,18,1.0,1,1.972732663154602,371,1.0,2 +57871,18,1.0,1,2.2757411003112793,372,1.0,2 +57872,18,1.0,1,1.3167409896850586,373,0.0,2 +57873,18,0.0,1,2.0847320556640625,374,1.0,2 +57874,18,1.0,1,2.3247432708740234,375,1.0,2 +57875,18,0.0,1,2.042731761932373,376,0.0,2 +57876,18,1.0,1,1.8037347793579102,377,1.0,2 +57877,18,0.0,1,2.0717315673828125,378,0.0,2 +57878,18,0.0,1,1.7977349758148193,379,0.0,2 +57879,18,1.0,1,1.4587392807006836,380,1.0,2 +57880,18,1.0,1,2.3577446937561035,381,0.0,2 +57881,18,1.0,1,1.5807377099990845,382,1.0,2 +57882,18,1.0,1,2.71476149559021,383,1.0,2 +57883,18,1.0,1,1.7517354488372803,384,0.0,2 +57884,18,1.0,1,1.3037409782409668,385,1.0,2 +57885,18,1.0,1,2.3207430839538574,386,1.0,2 +57886,18,1.0,1,1.3307409286499023,387,0.0,2 +57887,18,0.0,1,2.005732297897339,388,0.0,2 +57888,18,1.0,1,1.7117359638214111,389,1.0,2 +57889,18,1.0,1,2.054731607437134,390,1.0,2 +57890,18,1.0,1,1.6637365818023682,391,1.0,2 +57891,18,1.0,1,1.581737756729126,392,0.0,2 +57892,18,0.0,1,1.7297358512878418,393,0.0,2 +57893,18,1.0,1,1.8277344703674316,394,1.0,2 +57894,18,1.0,1,1.2757409811019897,395,0.0,2 +57895,18,0.0,1,2.1357345581054688,396,0.0,2 +57896,18,0.0,1,1.5697377920150757,397,0.0,2 +57897,18,1.0,1,1.7917349338531494,398,1.0,2 +57898,18,1.0,1,1.7467355728149414,399,1.0,2 +57899,18,1.0,1,1.4667391777038574,400,1.0,2 +57900,18,1.0,1,1.2617409229278564,401,0.0,2 +57901,18,1.0,1,1.9877324104309082,402,0.0,2 +57902,18,0.0,1,1.5367382764816284,403,1.0,2 +57903,18,1.0,1,2.052731513977051,404,0.0,2 +57904,18,0.0,1,1.1827406883239746,405,0.0,2 +57905,18,0.0,1,1.7427356243133545,406,1.0,2 +57906,18,0.0,1,1.1797407865524292,407,1.0,2 +57907,18,1.0,1,1.9757325649261475,408,1.0,2 +57908,18,0.0,1,1.2657408714294434,409,0.0,2 +57909,18,1.0,1,1.4537392854690552,410,1.0,2 +57910,18,1.0,1,1.5717377662658691,411,1.0,2 +57911,18,1.0,1,1.6337370872497559,412,0.0,2 +57912,18,0.0,1,1.5847376585006714,413,0.0,2 +57913,18,1.0,1,1.5407382249832153,414,1.0,2 +57914,18,0.0,1,1.162740707397461,415,1.0,2 +57915,18,0.0,1,2.0757317543029785,416,0.0,2 +57916,18,1.0,1,2.179736614227295,417,0.0,2 +57917,18,1.0,1,1.3897401094436646,418,1.0,2 +57918,18,1.0,1,1.420739769935608,419,1.0,2 +57919,18,1.0,1,1.9227333068847656,420,0.0,2 +57920,18,0.0,1,1.9917323589324951,421,0.0,2 +57921,18,1.0,1,1.482738971710205,422,1.0,2 +57922,18,1.0,1,1.4807389974594116,423,0.0,2 +57923,18,0.0,1,1.7127360105514526,424,0.0,2 +57924,18,1.0,1,1.669736623764038,425,1.0,2 +57925,18,0.0,1,1.3587405681610107,426,0.0,2 +57926,18,1.0,1,1.6077373027801514,427,0.0,2 +57927,18,1.0,1,2.003732204437256,428,1.0,2 +57928,18,1.0,1,1.5027387142181396,429,0.0,2 +57929,18,0.0,1,2.3537445068359375,430,1.0,2 +57930,18,0.0,1,1.217740774154663,431,0.0,2 +57931,18,0.0,1,1.2807409763336182,432,1.0,2 +57932,18,0.0,1,1.3187410831451416,433,0.0,2 +57933,18,1.0,1,2.1187336444854736,434,0.0,2 +57934,18,0.0,1,1.7997348308563232,435,0.0,2 +57935,18,1.0,1,1.253740906715393,436,1.0,2 +57936,18,1.0,1,1.6667366027832031,437,0.0,2 +57937,18,0.0,1,1.815734624862671,438,0.0,2 +57938,18,1.0,1,1.5437381267547607,439,0.0,2 +57939,18,1.0,1,1.8067348003387451,440,1.0,2 +57940,18,1.0,1,1.4307396411895752,441,1.0,2 +57941,18,0.0,1,1.9827325344085693,442,0.0,2 +57942,18,1.0,1,1.2727409601211548,443,1.0,2 +57943,18,1.0,1,2.0847320556640625,444,0.0,2 +57944,18,0.0,1,2.442748785018921,445,1.0,2 +57945,18,0.0,1,2.196737289428711,446,0.0,2 +57946,18,0.0,1,1.8307344913482666,447,0.0,2 +57947,18,1.0,1,2.3797459602355957,448,1.0,2 +57948,18,1.0,1,1.2827409505844116,449,1.0,2 +57949,18,1.0,1,1.9597327709197998,450,1.0,2 +57950,18,1.0,1,1.4467394351959229,451,0.0,2 +57951,18,1.0,1,2.1107332706451416,452,0.0,2 +57952,18,1.0,1,2.231739044189453,453,1.0,2 +57953,18,1.0,1,1.83273446559906,454,1.0,2 +57954,18,1.0,1,1.8867337703704834,455,0.0,2 +57955,18,1.0,1,1.582737684249878,456,0.0,2 +57956,18,1.0,1,1.7937350273132324,457,1.0,2 +57957,18,1.0,1,2.008732318878174,458,1.0,2 +57958,18,0.0,1,1.2837409973144531,459,1.0,2 +57959,18,1.0,1,2.6377577781677246,460,1.0,2 +57960,18,1.0,1,2.747763156890869,461,1.0,2 +57961,18,1.0,1,1.5377382040023804,462,1.0,2 +57962,18,0.0,1,1.5337382555007935,463,1.0,2 +57963,18,1.0,1,1.6107373237609863,464,1.0,2 +57964,18,1.0,1,1.7877349853515625,465,0.0,2 +57965,18,0.0,1,1.4587392807006836,466,0.0,2 +57966,18,0.0,1,2.0147321224212646,467,1.0,2 +57967,18,0.0,1,1.6687365770339966,468,0.0,2 +57968,18,0.0,1,1.50873863697052,469,1.0,2 +57969,18,0.0,1,1.4047399759292603,470,1.0,2 +57970,18,0.0,1,1.5327383279800415,471,0.0,2 +57971,18,0.0,1,1.677736520767212,472,0.0,2 +57972,18,0.0,1,1.460739254951477,473,0.0,2 +57973,18,1.0,1,1.9167333841323853,474,0.0,2 +57974,18,1.0,1,1.530738353729248,475,1.0,2 +57975,18,1.0,1,1.6937363147735596,476,1.0,2 +57976,18,0.0,1,1.4927388429641724,477,0.0,2 +57977,18,1.0,1,1.3077410459518433,478,0.0,2 +57978,18,1.0,1,2.169735908508301,479,1.0,2 +57979,18,1.0,1,1.3887401819229126,480,1.0,2 +57980,18,1.0,1,1.4507393836975098,481,0.0,2 +57981,18,1.0,1,1.3007409572601318,482,1.0,2 +57982,18,1.0,1,1.6177372932434082,483,1.0,2 +57983,18,1.0,1,1.7037360668182373,484,1.0,2 +57984,18,1.0,1,2.0807318687438965,485,1.0,2 +57985,18,1.0,1,1.2987409830093384,486,1.0,2 +57986,18,1.0,1,1.4797389507293701,487,1.0,2 +57987,18,1.0,1,2.048731803894043,488,0.0,2 +57988,18,1.0,1,1.29374098777771,489,0.0,2 +57989,18,1.0,1,2.0997328758239746,490,1.0,2 +57990,18,1.0,1,2.217738151550293,491,1.0,2 +57991,18,1.0,1,1.8537342548370361,492,1.0,2 +57992,18,0.0,1,1.574737787246704,493,0.0,2 +57993,18,1.0,1,1.6387369632720947,494,0.0,2 +57994,18,1.0,1,1.6347370147705078,495,1.0,2 +57995,18,0.0,1,1.4277396202087402,496,1.0,2 +57996,18,0.0,1,1.457739233970642,497,0.0,2 +57997,18,1.0,1,1.4897388219833374,498,1.0,2 +57998,18,1.0,1,1.6457369327545166,499,1.0,2 +57999,18,1.0,1,2.1017327308654785,500,1.0,2 +58000,18,1.0,2,2.3747456073760986,1,0.0,2 +58001,18,0.0,2,1.4147398471832275,2,0.0,2 +58002,18,0.0,2,2.6287574768066406,3,0.0,2 +58003,18,0.0,2,1.1987407207489014,4,0.0,2 +58004,18,1.0,2,1.5077385902404785,5,0.0,2 +58005,18,1.0,2,2.6227571964263916,6,0.0,2 +58006,18,0.0,2,2.0877323150634766,7,0.0,2 +58007,18,0.0,2,1.2337408065795898,8,0.0,2 +58008,18,0.0,2,2.500751495361328,9,0.0,2 +58009,18,0.0,2,1.3547406196594238,10,0.0,2 +58010,18,0.0,2,2.1147334575653076,11,0.0,2 +58011,18,1.0,2,1.7997348308563232,12,0.0,2 +58012,18,1.0,2,2.3827459812164307,13,1.0,2 +58013,18,1.0,2,1.744735598564148,14,0.0,2 +58014,18,1.0,2,1.7087360620498657,15,1.0,2 +58015,18,1.0,2,1.3357408046722412,16,0.0,2 +58016,18,1.0,2,1.719735860824585,17,0.0,2 +58017,18,0.0,2,1.3757402896881104,18,0.0,2 +58018,18,1.0,2,1.5187385082244873,19,1.0,2 +58019,18,1.0,2,1.8387343883514404,20,1.0,2 +58020,18,1.0,2,2.502751588821411,21,1.0,2 +58021,18,1.0,2,1.8297345638275146,22,1.0,2 +58022,18,1.0,2,1.9677326679229736,23,1.0,2 +58023,18,1.0,2,1.3967400789260864,24,0.0,2 +58024,18,0.0,2,1.3867402076721191,25,1.0,2 +58025,18,0.0,2,1.1947407722473145,26,0.0,2 +58026,18,0.0,2,1.193740725517273,27,0.0,2 +58027,18,1.0,2,1.527738332748413,28,1.0,2 +58028,18,1.0,2,1.784735083580017,29,1.0,2 +58029,18,0.0,2,1.2037408351898193,30,0.0,2 +58030,18,1.0,2,1.4537392854690552,31,1.0,2 +58031,18,1.0,2,1.619737148284912,32,1.0,2 +58032,18,1.0,2,1.557737946510315,33,1.0,2 +58033,18,1.0,2,2.466749906539917,34,1.0,2 +58034,18,1.0,2,1.556738018989563,35,1.0,2 +58035,18,1.0,2,1.8227345943450928,36,0.0,2 +58036,18,1.0,2,1.5997374057769775,37,1.0,2 +58037,18,0.0,2,1.585737705230713,38,0.0,2 +58038,18,1.0,2,1.6807364225387573,39,0.0,2 +58039,18,0.0,2,1.217740774154663,40,0.0,2 +58040,18,0.0,2,1.9047335386276245,41,0.0,2 +58041,18,1.0,2,2.0787317752838135,42,0.0,2 +58042,18,0.0,2,2.0777316093444824,43,0.0,2 +58043,18,0.0,2,1.3857401609420776,44,0.0,2 +58044,18,1.0,2,1.717736005783081,45,1.0,2 +58045,18,1.0,2,1.998732328414917,46,0.0,2 +58046,18,0.0,2,1.8927336931228638,47,0.0,2 +58047,18,0.0,2,1.2337408065795898,48,1.0,2 +58048,18,0.0,2,1.2677409648895264,49,0.0,2 +58049,18,0.0,2,1.4597392082214355,50,0.0,2 +58050,18,0.0,2,1.7867350578308105,51,0.0,2 +58051,18,0.0,2,1.9387331008911133,52,1.0,2 +58052,18,0.0,2,1.4147398471832275,53,1.0,2 +58053,18,0.0,2,1.6347370147705078,54,0.0,2 +58054,18,1.0,2,1.9587328433990479,55,0.0,2 +58055,18,0.0,2,2.0797319412231445,56,1.0,2 +58056,18,0.0,2,2.187736988067627,57,0.0,2 +58057,18,0.0,2,1.250740885734558,58,0.0,2 +58058,18,0.0,2,1.193740725517273,59,1.0,2 +58059,18,0.0,2,1.368740439414978,60,0.0,2 +58060,18,1.0,2,1.4807389974594116,61,1.0,2 +58061,18,1.0,2,1.2087408304214478,62,0.0,2 +58062,18,0.0,2,1.629737138748169,63,1.0,2 +58063,18,0.0,2,1.4267396926879883,64,0.0,2 +58064,18,0.0,2,1.792734980583191,65,1.0,2 +58065,18,0.0,2,1.259740948677063,66,0.0,2 +58066,18,0.0,2,1.9667327404022217,67,0.0,2 +58067,18,0.0,2,1.953732967376709,68,1.0,2 +58068,18,0.0,2,1.3377407789230347,69,0.0,2 +58069,18,0.0,2,1.2997410297393799,70,1.0,2 +58070,18,0.0,2,1.1717407703399658,71,0.0,2 +58071,18,1.0,2,1.6637365818023682,72,0.0,2 +58072,18,1.0,2,2.0797319412231445,73,1.0,2 +58073,18,1.0,2,1.3447407484054565,74,0.0,2 +58074,18,0.0,2,2.204737663269043,75,1.0,2 +58075,18,0.0,2,1.3637404441833496,76,0.0,2 +58076,18,0.0,2,1.3797402381896973,77,0.0,2 +58077,18,0.0,2,1.7267358303070068,78,0.0,2 +58078,18,1.0,2,2.0797319412231445,79,0.0,2 +58079,18,1.0,2,2.3927464485168457,80,0.0,2 +58080,18,0.0,2,1.8967336416244507,81,1.0,2 +58081,18,0.0,2,1.2737408876419067,82,0.0,2 +58082,18,0.0,2,2.3197431564331055,83,0.0,2 +58083,18,0.0,2,1.9107334613800049,84,0.0,2 +58084,18,1.0,2,1.8817338943481445,85,0.0,2 +58085,18,1.0,2,1.8497343063354492,86,1.0,2 +58086,18,1.0,2,1.4567393064498901,87,1.0,2 +58087,18,0.0,2,1.700736165046692,88,0.0,2 +58088,18,0.0,2,1.630737066268921,89,1.0,2 +58089,18,0.0,2,1.284740924835205,90,1.0,2 +58090,18,0.0,2,1.350740671157837,91,1.0,2 +58091,18,0.0,2,2.707761287689209,92,0.0,2 +58092,18,1.0,2,1.4897388219833374,93,0.0,2 +58093,18,0.0,2,1.6337370872497559,94,0.0,2 +58094,18,1.0,2,1.2527408599853516,95,0.0,2 +58095,18,0.0,2,2.239739418029785,96,1.0,2 +58096,18,0.0,2,1.7107360363006592,97,0.0,2 +58097,18,0.0,2,1.648736834526062,98,0.0,2 +58098,18,0.0,2,1.395740032196045,99,0.0,2 +58099,18,1.0,2,1.4327396154403687,100,0.0,2 +58100,18,1.0,2,2.1327342987060547,101,1.0,2 +58101,18,1.0,2,1.623737096786499,102,1.0,2 +58102,18,1.0,2,2.3937463760375977,103,1.0,2 +58103,18,1.0,2,2.8057656288146973,104,1.0,2 +58104,18,1.0,2,1.810734748840332,105,1.0,2 +58105,18,1.0,2,1.9117333889007568,106,0.0,2 +58106,18,0.0,2,1.4697390794754028,107,0.0,2 +58107,18,0.0,2,1.2367408275604248,108,0.0,2 +58108,18,1.0,2,2.3447442054748535,109,0.0,2 +58109,18,1.0,2,1.9797325134277344,110,1.0,2 +58110,18,1.0,2,1.465739130973816,111,1.0,2 +58111,18,1.0,2,1.5187385082244873,112,1.0,2 +58112,18,1.0,2,1.3487406969070435,113,0.0,2 +58113,18,0.0,2,1.4117398262023926,114,1.0,2 +58114,18,0.0,2,2.26274037361145,115,1.0,2 +58115,18,0.0,2,1.4327396154403687,116,1.0,2 +58116,18,0.0,2,1.7537355422973633,117,0.0,2 +58117,18,1.0,2,1.6097373962402344,118,0.0,2 +58118,18,0.0,2,1.3447407484054565,119,0.0,2 +58119,18,1.0,2,1.9867324829101562,120,0.0,2 +58120,18,1.0,2,1.7017362117767334,121,1.0,2 +58121,18,1.0,2,1.5977375507354736,122,0.0,2 +58122,18,1.0,2,1.6347370147705078,123,0.0,2 +58123,18,0.0,2,1.5287383794784546,124,0.0,2 +58124,18,0.0,2,1.2787408828735352,125,1.0,2 +58125,18,0.0,2,1.1987407207489014,126,0.0,2 +58126,18,1.0,2,2.1497349739074707,127,1.0,2 +58127,18,1.0,2,1.7507355213165283,128,1.0,2 +58128,18,1.0,2,1.7017362117767334,129,0.0,2 +58129,18,0.0,2,1.6857364177703857,130,1.0,2 +58130,18,1.0,2,1.7317357063293457,131,0.0,2 +58131,18,0.0,2,1.189740777015686,132,0.0,2 +58132,18,0.0,2,1.8027348518371582,133,0.0,2 +58133,18,0.0,2,1.2587409019470215,134,0.0,2 +58134,18,0.0,2,1.321740984916687,135,0.0,2 +58135,18,1.0,2,1.6137373447418213,136,0.0,2 +58136,18,0.0,2,1.5717377662658691,137,0.0,2 +58137,18,1.0,2,1.420739769935608,138,0.0,2 +58138,18,0.0,2,2.0577316284179688,139,0.0,2 +58139,18,0.0,2,2.6397581100463867,140,0.0,2 +58140,18,0.0,2,1.7127360105514526,141,0.0,2 +58141,18,1.0,2,2.478750467300415,142,1.0,2 +58142,18,1.0,2,1.4487394094467163,143,1.0,2 +58143,18,1.0,2,1.7417356967926025,144,0.0,2 +58144,18,0.0,2,1.3767403364181519,145,1.0,2 +58145,18,1.0,2,1.6957361698150635,146,0.0,2 +58146,18,0.0,2,1.2087408304214478,147,1.0,2 +58147,18,0.0,2,1.2027407884597778,148,0.0,2 +58148,18,0.0,2,1.4757390022277832,149,0.0,2 +58149,18,1.0,2,2.006732225418091,150,0.0,2 +58150,18,1.0,2,1.8517341613769531,151,0.0,2 +58151,18,0.0,2,1.902733564376831,152,1.0,2 +58152,18,0.0,2,1.2017407417297363,153,1.0,2 +58153,18,0.0,2,1.6977362632751465,154,0.0,2 +58154,18,0.0,2,1.9747326374053955,155,0.0,2 +58155,18,0.0,2,1.7247358560562134,156,0.0,2 +58156,18,0.0,2,1.8007348775863647,157,0.0,2 +58157,18,0.0,2,1.3497406244277954,158,1.0,2 +58158,18,0.0,2,1.3757402896881104,159,0.0,2 +58159,18,1.0,2,1.9847325086593628,160,0.0,2 +58160,18,1.0,2,1.6907362937927246,161,1.0,2 +58161,18,1.0,2,1.976732611656189,162,0.0,2 +58162,18,1.0,2,1.7067360877990723,163,1.0,2 +58163,18,1.0,2,1.3647404909133911,164,0.0,2 +58164,18,0.0,2,1.6057374477386475,165,0.0,2 +58165,18,1.0,2,1.5447381734848022,166,1.0,2 +58166,18,1.0,2,1.4267396926879883,167,1.0,2 +58167,18,1.0,2,1.3637404441833496,168,1.0,2 +58168,18,0.0,2,1.7747352123260498,169,0.0,2 +58169,18,1.0,2,1.5897376537322998,170,1.0,2 +58170,18,1.0,2,1.4817389249801636,171,1.0,2 +58171,18,1.0,2,1.700736165046692,172,1.0,2 +58172,18,1.0,2,1.3537405729293823,173,0.0,2 +58173,18,0.0,2,2.232738971710205,174,1.0,2 +58174,18,0.0,2,1.9227333068847656,175,1.0,2 +58175,18,0.0,2,1.9307332038879395,176,0.0,2 +58176,18,0.0,2,1.83273446559906,177,0.0,2 +58177,18,1.0,2,2.0597314834594727,178,0.0,2 +58178,18,1.0,2,1.4857388734817505,179,0.0,2 +58179,18,1.0,2,1.9187333583831787,180,0.0,2 +58180,18,0.0,2,1.6907362937927246,181,0.0,2 +58181,18,1.0,2,2.1277341842651367,182,1.0,2 +58182,18,1.0,2,1.2087408304214478,183,1.0,2 +58183,18,1.0,2,1.534738302230835,184,0.0,2 +58184,18,0.0,2,2.1147334575653076,185,0.0,2 +58185,18,1.0,2,1.4187397956848145,186,0.0,2 +58186,18,1.0,2,1.7137360572814941,187,0.0,2 +58187,18,1.0,2,2.2767410278320312,188,1.0,2 +58188,18,1.0,2,1.619737148284912,189,1.0,2 +58189,18,1.0,2,1.4007400274276733,190,1.0,2 +58190,18,1.0,2,2.0107321739196777,191,1.0,2 +58191,18,1.0,2,1.6617367267608643,192,1.0,2 +58192,18,1.0,2,1.2457408905029297,193,1.0,2 +58193,18,1.0,2,1.2467408180236816,194,1.0,2 +58194,18,1.0,2,1.391740083694458,195,1.0,2 +58195,18,0.0,2,1.5227384567260742,196,0.0,2 +58196,18,1.0,2,1.5367382764816284,197,1.0,2 +58197,18,1.0,2,1.854734182357788,198,1.0,2 +58198,18,1.0,2,1.4927388429641724,199,0.0,2 +58199,18,0.0,2,1.3407407999038696,200,1.0,2 +58200,18,0.0,2,2.3017420768737793,201,0.0,2 +58201,18,0.0,2,1.5557379722595215,202,0.0,2 +58202,18,1.0,2,2.503751754760742,203,1.0,2 +58203,18,1.0,2,1.792734980583191,204,1.0,2 +58204,18,0.0,2,1.3517405986785889,205,0.0,2 +58205,18,1.0,2,1.901733636856079,206,0.0,2 +58206,18,0.0,2,1.5497380495071411,207,1.0,2 +58207,18,0.0,2,1.4267396926879883,208,1.0,2 +58208,18,0.0,2,2.264740467071533,209,1.0,2 +58209,18,0.0,2,1.3867402076721191,210,0.0,2 +58210,18,0.0,2,1.80973482131958,211,1.0,2 +58211,18,1.0,2,1.4017399549484253,212,1.0,2 +58212,18,0.0,2,1.5177384614944458,213,0.0,2 +58213,18,1.0,2,2.0777316093444824,214,1.0,2 +58214,18,1.0,2,1.2737408876419067,215,1.0,2 +58215,18,1.0,2,1.6027374267578125,216,0.0,2 +58216,18,0.0,2,2.037731885910034,217,1.0,2 +58217,18,0.0,2,1.3667404651641846,218,0.0,2 +58218,18,1.0,2,2.177736282348633,219,0.0,2 +58219,18,0.0,2,1.5077385902404785,220,0.0,2 +58220,18,0.0,2,1.2957409620285034,221,0.0,2 +58221,18,1.0,2,1.86173415184021,222,0.0,2 +58222,18,1.0,2,2.164735794067383,223,1.0,2 +58223,18,1.0,2,1.8937337398529053,224,1.0,2 +58224,18,1.0,2,1.8187346458435059,225,1.0,2 +58225,18,1.0,2,1.5397381782531738,226,0.0,2 +58226,18,0.0,2,1.905733585357666,227,0.0,2 +58227,18,0.0,2,1.6127372980117798,228,1.0,2 +58228,18,0.0,2,1.7837350368499756,229,0.0,2 +58229,18,0.0,2,1.7987349033355713,230,1.0,2 +58230,18,0.0,2,1.286741018295288,231,0.0,2 +58231,18,1.0,2,2.194737195968628,232,0.0,2 +58232,18,0.0,2,1.5167385339736938,233,0.0,2 +58233,18,0.0,2,2.1617355346679688,234,1.0,2 +58234,18,0.0,2,1.4737390279769897,235,0.0,2 +58235,18,0.0,2,1.8307344913482666,236,1.0,2 +58236,18,0.0,2,1.3547406196594238,237,0.0,2 +58237,18,1.0,2,1.8987336158752441,238,1.0,2 +58238,18,1.0,2,1.3157410621643066,239,1.0,2 +58239,18,1.0,2,1.2807409763336182,240,0.0,2 +58240,18,1.0,2,1.7347357273101807,241,0.0,2 +58241,18,1.0,2,2.1497349739074707,242,1.0,2 +58242,18,1.0,2,2.6697592735290527,243,0.0,2 +58243,18,0.0,2,1.253740906715393,244,0.0,2 +58244,18,0.0,2,1.4567393064498901,245,1.0,2 +58245,18,0.0,2,1.1707407236099243,246,1.0,2 +58246,18,1.0,2,1.744735598564148,247,0.0,2 +58247,18,0.0,2,1.5167385339736938,248,1.0,2 +58248,18,0.0,2,1.4637391567230225,249,0.0,2 +58249,18,0.0,2,1.4307396411895752,250,1.0,2 +58250,18,0.0,2,1.8717339038848877,251,1.0,2 +58251,18,0.0,2,1.9877324104309082,252,0.0,2 +58252,18,1.0,2,1.8937337398529053,253,0.0,2 +58253,18,0.0,2,2.260740280151367,254,0.0,2 +58254,18,1.0,2,1.534738302230835,255,0.0,2 +58255,18,0.0,2,1.320741057395935,256,1.0,2 +58256,18,0.0,2,1.220740795135498,257,1.0,2 +58257,18,0.0,2,1.3277409076690674,258,0.0,2 +58258,18,1.0,2,1.648736834526062,259,0.0,2 +58259,18,0.0,2,2.003732204437256,260,0.0,2 +58260,18,0.0,2,2.006732225418091,261,1.0,2 +58261,18,0.0,2,1.1497406959533691,262,0.0,2 +58262,18,0.0,2,1.7767351865768433,263,1.0,2 +58263,18,0.0,2,1.4477393627166748,264,0.0,2 +58264,18,1.0,2,1.259740948677063,265,0.0,2 +58265,18,0.0,2,1.3647404909133911,266,1.0,2 +58266,18,0.0,2,2.0637314319610596,267,1.0,2 +58267,18,0.0,2,1.7137360572814941,268,0.0,2 +58268,18,0.0,2,1.2167408466339111,269,0.0,2 +58269,18,0.0,2,1.7957348823547363,270,1.0,2 +58270,18,0.0,2,1.6877362728118896,271,0.0,2 +58271,18,0.0,2,1.3317408561706543,272,0.0,2 +58272,18,0.0,2,1.3887401819229126,273,0.0,2 +58273,18,0.0,2,1.4007400274276733,274,1.0,2 +58274,18,0.0,2,1.509738564491272,275,1.0,2 +58275,18,0.0,2,1.8007348775863647,276,1.0,2 +58276,18,0.0,2,1.124740719795227,277,0.0,2 +58277,18,1.0,2,1.4337395429611206,278,1.0,2 +58278,18,1.0,2,2.1057329177856445,279,0.0,2 +58279,18,1.0,2,1.4477393627166748,280,0.0,2 +58280,18,1.0,2,1.3067409992218018,281,0.0,2 +58281,18,1.0,2,1.9897325038909912,282,1.0,2 +58282,18,1.0,2,1.836734414100647,283,0.0,2 +58283,18,0.0,2,1.3287409543991089,284,0.0,2 +58284,18,0.0,2,1.1847407817840576,285,0.0,2 +58285,18,1.0,2,1.5447381734848022,286,0.0,2 +58286,18,1.0,2,1.1757407188415527,287,0.0,2 +58287,18,0.0,2,1.3077410459518433,288,1.0,2 +58288,18,0.0,2,1.250740885734558,289,0.0,2 +58289,18,0.0,2,1.4557392597198486,290,1.0,2 +58290,18,0.0,2,1.4727391004562378,291,0.0,2 +58291,18,1.0,2,1.387740135192871,292,1.0,2 +58292,18,0.0,2,1.1987407207489014,293,0.0,2 +58293,18,1.0,2,1.347740650177002,294,0.0,2 +58294,18,0.0,2,1.465739130973816,295,1.0,2 +58295,18,0.0,2,1.2977409362792969,296,0.0,2 +58296,18,0.0,2,2.051731586456299,297,0.0,2 +58297,18,0.0,2,1.9927324056625366,298,0.0,2 +58298,18,0.0,2,1.2407408952713013,299,0.0,2 +58299,18,0.0,2,1.509738564491272,300,1.0,2 +58300,18,0.0,2,2.1347343921661377,301,1.0,2 +58301,18,1.0,2,1.5707378387451172,302,0.0,2 +58302,18,0.0,2,1.2617409229278564,303,0.0,2 +58303,18,0.0,2,2.212738037109375,304,1.0,2 +58304,18,0.0,2,1.1417406797409058,305,0.0,2 +58305,18,0.0,2,1.3817402124404907,306,1.0,2 +58306,18,0.0,2,1.2437409162521362,307,0.0,2 +58307,18,0.0,2,2.0167322158813477,308,0.0,2 +58308,18,1.0,2,1.8437342643737793,309,0.0,2 +58309,18,1.0,2,1.417739748954773,310,0.0,2 +58310,18,1.0,2,1.3527406454086304,311,1.0,2 +58311,18,1.0,2,1.6727365255355835,312,0.0,2 +58312,18,0.0,2,1.854734182357788,313,0.0,2 +58313,18,0.0,2,1.4947388172149658,314,0.0,2 +58314,18,0.0,2,1.8887337446212769,315,1.0,2 +58315,18,0.0,2,1.26374089717865,316,0.0,2 +58316,18,0.0,2,2.044731616973877,317,0.0,2 +58317,18,1.0,2,2.449748992919922,318,1.0,2 +58318,18,1.0,2,1.766735315322876,319,1.0,2 +58319,18,1.0,2,1.6667366027832031,320,0.0,2 +58320,18,1.0,2,1.5497380495071411,321,0.0,2 +58321,18,1.0,2,1.9307332038879395,322,1.0,2 +58322,18,1.0,2,1.6847363710403442,323,1.0,2 +58323,18,1.0,2,1.4417394399642944,324,0.0,2 +58324,18,0.0,2,1.7767351865768433,325,0.0,2 +58325,18,0.0,2,1.253740906715393,326,0.0,2 +58326,18,1.0,2,1.2247408628463745,327,1.0,2 +58327,18,1.0,2,1.2777409553527832,328,0.0,2 +58328,18,1.0,2,2.6377577781677246,329,1.0,2 +58329,18,1.0,2,1.342740774154663,330,0.0,2 +58330,18,1.0,2,1.3767403364181519,331,0.0,2 +58331,18,0.0,2,2.472750186920166,332,0.0,2 +58332,18,0.0,2,1.9757325649261475,333,1.0,2 +58333,18,0.0,2,1.7067360877990723,334,1.0,2 +58334,18,0.0,2,1.1987407207489014,335,1.0,2 +58335,18,0.0,2,1.465739130973816,336,1.0,2 +58336,18,0.0,2,1.2347408533096313,337,0.0,2 +58337,18,0.0,2,1.5377382040023804,338,0.0,2 +58338,18,0.0,2,1.7427356243133545,339,1.0,2 +58339,18,0.0,2,1.2547409534454346,340,0.0,2 +58340,18,0.0,2,1.6977362632751465,341,1.0,2 +58341,18,0.0,2,1.9387331008911133,342,1.0,2 +58342,18,0.0,2,1.413739800453186,343,0.0,2 +58343,18,0.0,2,1.9317331314086914,344,0.0,2 +58344,18,0.0,2,1.9277331829071045,345,1.0,2 +58345,18,0.0,2,2.039731740951538,346,1.0,2 +58346,18,0.0,2,1.7787351608276367,347,0.0,2 +58347,18,0.0,2,2.1267340183258057,348,0.0,2 +58348,18,0.0,2,1.5497380495071411,349,0.0,2 +58349,18,0.0,2,1.3167409896850586,350,1.0,2 +58350,18,1.0,2,1.6357369422912598,351,1.0,2 +58351,18,0.0,2,1.6017374992370605,352,1.0,2 +58352,18,0.0,2,1.6207371950149536,353,0.0,2 +58353,18,1.0,2,2.2717409133911133,354,0.0,2 +58354,18,0.0,2,1.9797325134277344,355,0.0,2 +58355,18,0.0,2,1.4297395944595337,356,0.0,2 +58356,18,1.0,2,1.3177410364151,357,0.0,2 +58357,18,0.0,2,2.203737735748291,358,1.0,2 +58358,18,0.0,2,1.8187346458435059,359,0.0,2 +58359,18,1.0,2,2.6067564487457275,360,0.0,2 +58360,18,0.0,2,1.3097410202026367,361,0.0,2 +58361,18,1.0,2,1.3087409734725952,362,0.0,2 +58362,18,0.0,2,2.3837461471557617,363,1.0,2 +58363,18,0.0,2,1.3117409944534302,364,0.0,2 +58364,18,1.0,2,2.038731813430786,365,0.0,2 +58365,18,0.0,2,1.5597379207611084,366,0.0,2 +58366,18,1.0,2,2.8667685985565186,367,1.0,2 +58367,18,0.0,2,1.3647404909133911,368,1.0,2 +58368,18,1.0,2,1.3487406969070435,369,1.0,2 +58369,18,1.0,2,1.5977375507354736,370,0.0,2 +58370,18,1.0,2,1.5387382507324219,371,0.0,2 +58371,18,0.0,2,2.502751588821411,372,1.0,2 +58372,18,1.0,2,1.8197345733642578,373,1.0,2 +58373,18,0.0,2,2.2807412147521973,374,1.0,2 +58374,18,0.0,2,1.4237396717071533,375,0.0,2 +58375,18,1.0,2,1.8427343368530273,376,1.0,2 +58376,18,1.0,2,1.3967400789260864,377,0.0,2 +58377,18,0.0,2,2.0217320919036865,378,0.0,2 +58378,18,1.0,2,1.765735387802124,379,1.0,2 +58379,18,1.0,2,2.484750747680664,380,0.0,2 +58380,18,1.0,2,1.7777352333068848,381,1.0,2 +58381,18,1.0,2,1.5157384872436523,382,1.0,2 +58382,18,1.0,2,1.2367408275604248,383,1.0,2 +58383,18,0.0,2,1.4277396202087402,384,1.0,2 +58384,18,1.0,2,2.143734931945801,385,0.0,2 +58385,18,0.0,2,1.9047335386276245,386,0.0,2 +58386,18,0.0,2,1.6497368812561035,387,1.0,2 +58387,18,0.0,2,1.3497406244277954,388,0.0,2 +58388,18,0.0,2,1.8387343883514404,389,0.0,2 +58389,18,1.0,2,1.7057361602783203,390,0.0,2 +58390,18,1.0,2,1.6397368907928467,391,0.0,2 +58391,18,1.0,2,1.4957387447357178,392,1.0,2 +58392,18,1.0,2,1.439739465713501,393,1.0,2 +58393,18,1.0,2,1.4697390794754028,394,1.0,2 +58394,18,1.0,2,1.700736165046692,395,1.0,2 +58395,18,1.0,2,1.3497406244277954,396,1.0,2 +58396,18,1.0,2,1.8797338008880615,397,0.0,2 +58397,18,1.0,2,1.909733533859253,398,0.0,2 +58398,18,0.0,2,1.1757407188415527,399,0.0,2 +58399,18,1.0,2,1.8947336673736572,400,1.0,2 +58400,18,0.0,2,1.3087409734725952,401,1.0,2 +58401,18,0.0,2,1.5167385339736938,402,0.0,2 +58402,18,1.0,2,1.8637340068817139,403,0.0,2 +58403,18,1.0,2,2.0267319679260254,404,1.0,2 +58404,18,1.0,2,2.188736915588379,405,1.0,2 +58405,18,1.0,2,1.8727339506149292,406,0.0,2 +58406,18,0.0,2,1.321740984916687,407,1.0,2 +58407,18,0.0,2,1.6167372465133667,408,1.0,2 +58408,18,0.0,2,1.4197397232055664,409,0.0,2 +58409,18,0.0,2,1.9487329721450806,410,0.0,2 +58410,18,0.0,2,1.3517405986785889,411,0.0,2 +58411,18,1.0,2,1.9817326068878174,412,0.0,2 +58412,18,0.0,2,1.4717390537261963,413,0.0,2 +58413,18,0.0,2,1.5027387142181396,414,0.0,2 +58414,18,0.0,2,1.2257407903671265,415,0.0,2 +58415,18,0.0,2,1.290740966796875,416,0.0,2 +58416,18,0.0,2,2.0557315349578857,417,0.0,2 +58417,18,0.0,2,2.194737195968628,418,1.0,2 +58418,18,0.0,2,1.439739465713501,419,0.0,2 +58419,18,0.0,2,1.2357409000396729,420,0.0,2 +58420,18,0.0,2,2.1347343921661377,421,0.0,2 +58421,18,0.0,2,1.1887407302856445,422,0.0,2 +58422,18,0.0,2,1.482738971710205,423,0.0,2 +58423,18,1.0,2,1.721735954284668,424,1.0,2 +58424,18,1.0,2,1.4787390232086182,425,1.0,2 +58425,18,1.0,2,1.4007400274276733,426,1.0,2 +58426,18,0.0,2,1.740735650062561,427,0.0,2 +58427,18,1.0,2,1.714735984802246,428,0.0,2 +58428,18,1.0,2,1.8017349243164062,429,0.0,2 +58429,18,1.0,2,2.1077332496643066,430,1.0,2 +58430,18,1.0,2,1.5447381734848022,431,1.0,2 +58431,18,0.0,2,1.575737714767456,432,0.0,2 +58432,18,1.0,2,1.3047410249710083,433,1.0,2 +58433,18,1.0,2,1.8207346200942993,434,0.0,2 +58434,18,0.0,2,1.644736886024475,435,1.0,2 +58435,18,0.0,2,1.3617404699325562,436,0.0,2 +58436,18,0.0,2,1.3347408771514893,437,0.0,2 +58437,18,1.0,2,1.8497343063354492,438,0.0,2 +58438,18,1.0,2,1.4677391052246094,439,0.0,2 +58439,18,0.0,2,1.7317357063293457,440,0.0,2 +58440,18,1.0,2,1.5177384614944458,441,0.0,2 +58441,18,0.0,2,1.2147407531738281,442,0.0,2 +58442,18,0.0,2,1.2247408628463745,443,1.0,2 +58443,18,0.0,2,1.3547406196594238,444,1.0,2 +58444,18,0.0,2,1.4157397747039795,445,0.0,2 +58445,18,0.0,2,2.0777316093444824,446,0.0,2 +58446,18,0.0,2,1.373740315437317,447,0.0,2 +58447,18,1.0,2,1.3547406196594238,448,1.0,2 +58448,18,1.0,2,1.675736427307129,449,0.0,2 +58449,18,1.0,2,2.191737174987793,450,1.0,2 +58450,18,1.0,2,1.535738229751587,451,1.0,2 +58451,18,1.0,2,1.581737756729126,452,0.0,2 +58452,18,0.0,2,1.7507355213165283,453,0.0,2 +58453,18,0.0,2,1.67073655128479,454,0.0,2 +58454,18,0.0,2,1.3107409477233887,455,1.0,2 +58455,18,0.0,2,1.2317408323287964,456,0.0,2 +58456,18,1.0,2,2.045731782913208,457,1.0,2 +58457,18,0.0,2,1.3637404441833496,458,0.0,2 +58458,18,1.0,2,1.2887409925460815,459,1.0,2 +58459,18,0.0,2,1.4697390794754028,460,1.0,2 +58460,18,0.0,2,1.9737327098846436,461,0.0,2 +58461,18,1.0,2,1.3487406969070435,462,1.0,2 +58462,18,1.0,2,1.6597366333007812,463,1.0,2 +58463,18,1.0,2,1.320741057395935,464,1.0,2 +58464,18,1.0,2,1.4857388734817505,465,1.0,2 +58465,18,1.0,2,2.1057329177856445,466,1.0,2 +58466,18,1.0,2,1.625737190246582,467,1.0,2 +58467,18,1.0,2,2.3167428970336914,468,1.0,2 +58468,18,1.0,2,1.3057409524917603,469,0.0,2 +58469,18,1.0,2,1.8987336158752441,470,1.0,2 +58470,18,1.0,2,1.34674072265625,471,0.0,2 +58471,18,0.0,2,1.4727391004562378,472,0.0,2 +58472,18,0.0,2,1.226740837097168,473,1.0,2 +58473,18,0.0,2,1.217740774154663,474,1.0,2 +58474,18,0.0,2,1.3087409734725952,475,0.0,2 +58475,18,1.0,2,1.648736834526062,476,1.0,2 +58476,18,1.0,2,1.8217346668243408,477,1.0,2 +58477,18,1.0,2,1.718735933303833,478,1.0,2 +58478,18,0.0,2,1.4197397232055664,479,1.0,2 +58479,18,0.0,2,1.6937363147735596,480,1.0,2 +58480,18,1.0,2,1.947732925415039,481,1.0,2 +58481,18,1.0,2,1.6857364177703857,482,0.0,2 +58482,18,0.0,2,1.7067360877990723,483,0.0,2 +58483,18,1.0,2,1.8427343368530273,484,1.0,2 +58484,18,1.0,2,1.7377357482910156,485,0.0,2 +58485,18,1.0,2,1.6827363967895508,486,1.0,2 +58486,18,0.0,2,1.8637340068817139,487,0.0,2 +58487,18,1.0,2,1.6157371997833252,488,1.0,2 +58488,18,1.0,2,1.9847325086593628,489,0.0,2 +58489,18,0.0,2,1.579737663269043,490,0.0,2 +58490,18,0.0,2,1.4597392082214355,491,0.0,2 +58491,18,1.0,2,1.2987409830093384,492,1.0,2 +58492,18,1.0,2,1.4667391777038574,493,0.0,2 +58493,18,0.0,2,2.5537538528442383,494,1.0,2 +58494,18,0.0,2,1.435739517211914,495,1.0,2 +58495,18,0.0,2,1.8067348003387451,496,1.0,2 +58496,18,0.0,2,1.6547367572784424,497,1.0,2 +58497,18,0.0,2,1.4587392807006836,498,0.0,2 +58498,18,1.0,2,2.22273850440979,499,1.0,2 +58499,18,1.0,2,1.8957335948944092,500,0.0,2 +58500,19,1.0,0,1.8845185041427612,1,1.0,2 +58501,19,1.0,0,1.433524250984192,2,1.0,2 +58502,19,1.0,0,1.4225244522094727,3,0.0,2 +58503,19,0.0,0,1.2415250539779663,4,0.0,2 +58504,19,0.0,0,1.992517113685608,5,0.0,2 +58505,19,0.0,0,1.569522500038147,6,0.0,2 +58506,19,0.0,0,1.4495240449905396,7,0.0,2 +58507,19,1.0,0,1.6925209760665894,8,0.0,2 +58508,19,1.0,0,1.6155219078063965,9,1.0,2 +58509,19,1.0,0,1.54252290725708,10,1.0,2 +58510,19,1.0,0,2.0805158615112305,11,1.0,2 +58511,19,1.0,0,1.550522804260254,12,1.0,2 +58512,19,1.0,0,1.3735250234603882,13,0.0,2 +58513,19,0.0,0,1.4245244264602661,14,0.0,2 +58514,19,1.0,0,1.4675238132476807,15,1.0,2 +58515,19,1.0,0,1.5665225982666016,16,1.0,2 +58516,19,0.0,0,1.3725250959396362,17,0.0,2 +58517,19,1.0,0,2.0345165729522705,18,1.0,2 +58518,19,1.0,0,1.871518611907959,19,1.0,2 +58519,19,1.0,0,1.992517113685608,20,1.0,2 +58520,19,1.0,0,1.3685251474380493,21,1.0,2 +58521,19,1.0,0,1.3235251903533936,22,1.0,2 +58522,19,1.0,0,1.7725199460983276,23,1.0,2 +58523,19,1.0,0,1.447524070739746,24,0.0,2 +58524,19,0.0,0,1.7865197658538818,25,0.0,2 +58525,19,1.0,0,1.3945248126983643,26,0.0,2 +58526,19,1.0,0,1.7215206623077393,27,1.0,2 +58527,19,1.0,0,2.345526933670044,28,1.0,2 +58528,19,1.0,0,2.1735188961029053,29,0.0,2 +58529,19,1.0,0,2.019516706466675,30,1.0,2 +58530,19,1.0,0,1.4875235557556152,31,0.0,2 +58531,19,1.0,0,2.119516372680664,32,0.0,2 +58532,19,0.0,0,1.8245192766189575,33,0.0,2 +58533,19,1.0,0,1.4585239887237549,34,1.0,2 +58534,19,1.0,0,1.5075232982635498,35,1.0,2 +58535,19,1.0,0,1.3705251216888428,36,0.0,2 +58536,19,1.0,0,1.8325191736221313,37,1.0,2 +58537,19,1.0,0,1.233525037765503,38,1.0,2 +58538,19,1.0,0,1.8345191478729248,39,1.0,2 +58539,19,0.0,0,1.8405190706253052,40,0.0,2 +58540,19,1.0,0,1.4245244264602661,41,1.0,2 +58541,19,1.0,0,1.6535215377807617,42,1.0,2 +58542,19,1.0,0,1.9135181903839111,43,1.0,2 +58543,19,0.0,0,1.8015196323394775,44,0.0,2 +58544,19,1.0,0,1.712520718574524,45,1.0,2 +58545,19,1.0,0,2.002516984939575,46,1.0,2 +58546,19,1.0,0,1.4115245342254639,47,1.0,2 +58547,19,1.0,0,1.5665225982666016,48,1.0,2 +58548,19,1.0,0,1.5935221910476685,49,0.0,2 +58549,19,0.0,0,2.4855334758758545,50,0.0,2 +58550,19,1.0,0,1.3035252094268799,51,1.0,2 +58551,19,1.0,0,2.331526279449463,52,1.0,2 +58552,19,1.0,0,1.8985183238983154,53,1.0,2 +58553,19,1.0,0,1.3365252017974854,54,1.0,2 +58554,19,1.0,0,1.7015209197998047,55,1.0,2 +58555,19,1.0,0,1.914518117904663,56,0.0,2 +58556,19,0.0,0,2.6905431747436523,57,0.0,2 +58557,19,1.0,0,2.2415220737457275,58,1.0,2 +58558,19,1.0,0,2.0845160484313965,59,1.0,2 +58559,19,1.0,0,1.6305217742919922,60,1.0,2 +58560,19,1.0,0,1.5005234479904175,61,1.0,2 +58561,19,1.0,0,1.8565188646316528,62,1.0,2 +58562,19,1.0,0,1.4845236539840698,63,1.0,2 +58563,19,1.0,0,1.4145245552062988,64,1.0,2 +58564,19,1.0,0,1.8055195808410645,65,1.0,2 +58565,19,1.0,0,1.447524070739746,66,1.0,2 +58566,19,1.0,0,1.3915247917175293,67,1.0,2 +58567,19,1.0,0,1.8355190753936768,68,1.0,2 +58568,19,1.0,0,1.5065233707427979,69,1.0,2 +58569,19,1.0,0,1.7105207443237305,70,1.0,2 +58570,19,1.0,0,1.4165245294570923,71,1.0,2 +58571,19,1.0,0,1.4245244264602661,72,1.0,2 +58572,19,1.0,0,1.9975171089172363,73,1.0,2 +58573,19,1.0,0,1.708520770072937,74,0.0,2 +58574,19,0.0,0,1.8435189723968506,75,0.0,2 +58575,19,1.0,0,1.4345242977142334,76,0.0,2 +58576,19,0.0,0,1.5545227527618408,77,0.0,2 +58577,19,1.0,0,1.525523066520691,78,1.0,2 +58578,19,1.0,0,1.6215219497680664,79,1.0,2 +58579,19,1.0,0,1.2755250930786133,80,1.0,2 +58580,19,1.0,0,1.664521336555481,81,1.0,2 +58581,19,1.0,0,2.062516212463379,82,0.0,2 +58582,19,0.0,0,1.3195252418518066,83,0.0,2 +58583,19,1.0,0,2.133517026901245,84,1.0,2 +58584,19,0.0,0,1.3545253276824951,85,0.0,2 +58585,19,1.0,0,1.8885184526443481,86,0.0,2 +58586,19,1.0,0,1.3905248641967773,87,1.0,2 +58587,19,1.0,0,1.616521954536438,88,1.0,2 +58588,19,1.0,0,1.6175220012664795,89,0.0,2 +58589,19,1.0,0,1.473523736000061,90,1.0,2 +58590,19,1.0,0,1.8985183238983154,91,1.0,2 +58591,19,1.0,0,1.3325252532958984,92,1.0,2 +58592,19,1.0,0,1.5495227575302124,93,1.0,2 +58593,19,0.0,0,1.7535202503204346,94,1.0,2 +58594,19,0.0,0,1.5005234479904175,95,0.0,2 +58595,19,1.0,0,1.5225231647491455,96,1.0,2 +58596,19,1.0,0,1.3095252513885498,97,1.0,2 +58597,19,1.0,0,1.6615214347839355,98,1.0,2 +58598,19,1.0,0,1.7405203580856323,99,1.0,2 +58599,19,1.0,0,1.8325191736221313,100,1.0,2 +58600,19,1.0,0,1.5135232210159302,101,1.0,2 +58601,19,1.0,0,1.6055221557617188,102,1.0,2 +58602,19,1.0,0,1.3955247402191162,103,1.0,2 +58603,19,1.0,0,1.6565214395523071,104,1.0,2 +58604,19,1.0,0,1.6115219593048096,105,1.0,2 +58605,19,1.0,0,1.4435241222381592,106,1.0,2 +58606,19,1.0,0,2.0705161094665527,107,1.0,2 +58607,19,1.0,0,1.6085220575332642,108,1.0,2 +58608,19,1.0,0,2.069516181945801,109,0.0,2 +58609,19,1.0,0,1.6045221090316772,110,1.0,2 +58610,19,1.0,0,2.052516460418701,111,1.0,2 +58611,19,1.0,0,2.164518356323242,112,1.0,2 +58612,19,1.0,0,1.2345250844955444,113,1.0,2 +58613,19,1.0,0,1.4705238342285156,114,1.0,2 +58614,19,1.0,0,1.5195231437683105,115,1.0,2 +58615,19,1.0,0,1.5005234479904175,116,1.0,2 +58616,19,1.0,0,1.40352463722229,117,1.0,2 +58617,19,1.0,0,1.3995246887207031,118,1.0,2 +58618,19,1.0,0,1.5225231647491455,119,1.0,2 +58619,19,1.0,0,1.550522804260254,120,1.0,2 +58620,19,1.0,0,1.6805211305618286,121,1.0,2 +58621,19,1.0,0,1.642521619796753,122,1.0,2 +58622,19,1.0,0,1.5895222425460815,123,1.0,2 +58623,19,1.0,0,1.2835251092910767,124,1.0,2 +58624,19,1.0,0,1.4675238132476807,125,1.0,2 +58625,19,0.0,0,1.6325217485427856,126,0.0,2 +58626,19,0.0,0,1.5805224180221558,127,0.0,2 +58627,19,1.0,0,1.8325191736221313,128,1.0,2 +58628,19,1.0,0,1.5105233192443848,129,1.0,2 +58629,19,1.0,0,1.6775212287902832,130,1.0,2 +58630,19,1.0,0,1.3215252161026,131,1.0,2 +58631,19,1.0,0,1.9875171184539795,132,1.0,2 +58632,19,1.0,0,2.1815192699432373,133,1.0,2 +58633,19,1.0,0,1.450524091720581,134,1.0,2 +58634,19,1.0,0,1.5455228090286255,135,1.0,2 +58635,19,1.0,0,1.6525214910507202,136,0.0,2 +58636,19,1.0,0,1.5965222120285034,137,1.0,2 +58637,19,1.0,0,1.358525276184082,138,1.0,2 +58638,19,1.0,0,1.4305243492126465,139,1.0,2 +58639,19,1.0,0,1.9555175304412842,140,1.0,2 +58640,19,1.0,0,1.7135207653045654,141,1.0,2 +58641,19,1.0,0,1.5375229120254517,142,1.0,2 +58642,19,1.0,0,1.331525206565857,143,1.0,2 +58643,19,1.0,0,1.5745224952697754,144,1.0,2 +58644,19,1.0,0,1.8115193843841553,145,0.0,2 +58645,19,0.0,0,1.8495190143585205,146,0.0,2 +58646,19,1.0,0,1.59452223777771,147,1.0,2 +58647,19,1.0,0,1.6035220623016357,148,1.0,2 +58648,19,1.0,0,1.5195231437683105,149,1.0,2 +58649,19,1.0,0,1.6465215682983398,150,1.0,2 +58650,19,1.0,0,1.3085252046585083,151,1.0,2 +58651,19,1.0,0,1.3365252017974854,152,0.0,2 +58652,19,1.0,0,1.433524250984192,153,1.0,2 +58653,19,1.0,0,1.4305243492126465,154,1.0,2 +58654,19,1.0,0,1.362525224685669,155,1.0,2 +58655,19,1.0,0,1.4705238342285156,156,1.0,2 +58656,19,1.0,0,1.521523118019104,157,1.0,2 +58657,19,1.0,0,1.3765250444412231,158,1.0,2 +58658,19,1.0,0,1.5965222120285034,159,1.0,2 +58659,19,1.0,0,1.8795185089111328,160,1.0,2 +58660,19,1.0,0,1.3185251951217651,161,1.0,2 +58661,19,1.0,0,1.433524250984192,162,1.0,2 +58662,19,1.0,0,1.569522500038147,163,1.0,2 +58663,19,1.0,0,1.3895248174667358,164,1.0,2 +58664,19,0.0,0,1.3905248641967773,165,0.0,2 +58665,19,1.0,0,1.472523808479309,166,1.0,2 +58666,19,1.0,0,1.3355252742767334,167,1.0,2 +58667,19,1.0,0,2.341526746749878,168,0.0,2 +58668,19,1.0,0,2.371528148651123,169,1.0,2 +58669,19,1.0,0,1.6685212850570679,170,1.0,2 +58670,19,1.0,0,1.4895235300064087,171,1.0,2 +58671,19,1.0,0,1.5185232162475586,172,1.0,2 +58672,19,1.0,0,1.4425241947174072,173,1.0,2 +58673,19,1.0,0,1.664521336555481,174,1.0,2 +58674,19,1.0,0,1.3535252809524536,175,1.0,2 +58675,19,1.0,0,1.5925222635269165,176,1.0,2 +58676,19,1.0,0,1.6155219078063965,177,0.0,2 +58677,19,0.0,0,1.5305230617523193,178,0.0,2 +58678,19,0.0,0,1.9285179376602173,179,0.0,2 +58679,19,1.0,0,1.8085194826126099,180,0.0,2 +58680,19,0.0,0,1.2285250425338745,181,0.0,2 +58681,19,0.0,0,2.7185444831848145,182,0.0,2 +58682,19,0.0,0,1.9305179119110107,183,0.0,2 +58683,19,1.0,0,2.378528594970703,184,0.0,2 +58684,19,0.0,0,1.8285192251205444,185,0.0,2 +58685,19,0.0,0,1.4415241479873657,186,1.0,2 +58686,19,0.0,0,1.2495250701904297,187,0.0,2 +58687,19,1.0,0,1.6225218772888184,188,1.0,2 +58688,19,1.0,0,1.5155231952667236,189,1.0,2 +58689,19,1.0,0,1.3535252809524536,190,1.0,2 +58690,19,1.0,0,1.800519585609436,191,0.0,2 +58691,19,1.0,0,2.319525718688965,192,0.0,2 +58692,19,0.0,0,1.4645239114761353,193,0.0,2 +58693,19,1.0,0,1.6805211305618286,194,1.0,2 +58694,19,1.0,0,1.257525086402893,195,1.0,2 +58695,19,1.0,0,1.9345178604125977,196,1.0,2 +58696,19,1.0,0,1.3415253162384033,197,1.0,2 +58697,19,1.0,0,1.45552396774292,198,1.0,2 +58698,19,1.0,0,1.4905235767364502,199,0.0,2 +58699,19,1.0,0,1.7115206718444824,200,1.0,2 +58700,19,1.0,0,1.6235218048095703,201,1.0,2 +58701,19,1.0,0,1.965517520904541,202,1.0,2 +58702,19,1.0,0,1.9895172119140625,203,1.0,2 +58703,19,1.0,0,1.5335229635238647,204,0.0,2 +58704,19,0.0,0,1.4315242767333984,205,1.0,2 +58705,19,1.0,0,1.5325230360031128,206,0.0,2 +58706,19,0.0,0,1.331525206565857,207,0.0,2 +58707,19,0.0,0,1.3445253372192383,208,0.0,2 +58708,19,1.0,0,1.4385242462158203,209,1.0,2 +58709,19,1.0,0,1.472523808479309,210,1.0,2 +58710,19,1.0,0,1.5455228090286255,211,1.0,2 +58711,19,1.0,0,1.4405242204666138,212,1.0,2 +58712,19,1.0,0,1.3745250701904297,213,1.0,2 +58713,19,0.0,0,1.7245205640792847,214,0.0,2 +58714,19,1.0,0,1.4635238647460938,215,1.0,2 +58715,19,1.0,0,1.7455203533172607,216,1.0,2 +58716,19,1.0,0,1.2735251188278198,217,1.0,2 +58717,19,1.0,0,1.7505202293395996,218,0.0,2 +58718,19,1.0,0,1.4425241947174072,219,0.0,2 +58719,19,0.0,0,2.7755470275878906,220,0.0,2 +58720,19,1.0,0,2.4895336627960205,221,1.0,2 +58721,19,1.0,0,2.1795191764831543,222,1.0,2 +58722,19,1.0,0,1.4875235557556152,223,1.0,2 +58723,19,0.0,0,1.543522834777832,224,0.0,2 +58724,19,1.0,0,1.4155244827270508,225,1.0,2 +58725,19,1.0,0,1.407524585723877,226,1.0,2 +58726,19,0.0,0,1.7195205688476562,227,0.0,2 +58727,19,1.0,0,1.8635187149047852,228,1.0,2 +58728,19,1.0,0,1.2555251121520996,229,1.0,2 +58729,19,1.0,0,1.4875235557556152,230,1.0,2 +58730,19,1.0,0,1.6465215682983398,231,0.0,2 +58731,19,0.0,0,2.0935158729553223,232,0.0,2 +58732,19,0.0,0,1.331525206565857,233,0.0,2 +58733,19,0.0,0,1.402524709701538,234,0.0,2 +58734,19,0.0,0,1.4345242977142334,235,0.0,2 +58735,19,0.0,0,1.4715237617492676,236,0.0,2 +58736,19,0.0,0,2.059516191482544,237,0.0,2 +58737,19,0.0,0,1.6445215940475464,238,0.0,2 +58738,19,1.0,0,1.381524920463562,239,1.0,2 +58739,19,1.0,0,1.637521743774414,240,1.0,2 +58740,19,1.0,0,1.358525276184082,241,1.0,2 +58741,19,1.0,0,1.3725250959396362,242,1.0,2 +58742,19,1.0,0,1.4085246324539185,243,1.0,2 +58743,19,1.0,0,1.406524658203125,244,1.0,2 +58744,19,1.0,0,1.7165206670761108,245,1.0,2 +58745,19,1.0,0,1.4565240144729614,246,1.0,2 +58746,19,1.0,0,1.9455177783966064,247,1.0,2 +58747,19,1.0,0,1.494523525238037,248,1.0,2 +58748,19,1.0,0,1.3605252504348755,249,1.0,2 +58749,19,1.0,0,1.5565227270126343,250,1.0,2 +58750,19,1.0,0,1.3225252628326416,251,1.0,2 +58751,19,1.0,0,1.3765250444412231,252,1.0,2 +58752,19,1.0,0,1.5925222635269165,253,1.0,2 +58753,19,1.0,0,1.3425252437591553,254,1.0,2 +58754,19,1.0,0,1.5605226755142212,255,0.0,2 +58755,19,0.0,0,1.43252432346344,256,1.0,2 +58756,19,0.0,0,1.2485251426696777,257,1.0,2 +58757,19,0.0,0,1.7025208473205566,258,0.0,2 +58758,19,1.0,0,1.3465253114700317,259,1.0,2 +58759,19,1.0,0,2.049516439437866,260,1.0,2 +58760,19,1.0,0,1.777519941329956,261,1.0,2 +58761,19,1.0,0,1.4315242767333984,262,1.0,2 +58762,19,1.0,0,1.7495203018188477,263,1.0,2 +58763,19,1.0,0,1.4125245809555054,264,1.0,2 +58764,19,1.0,0,2.2325215339660645,265,0.0,2 +58765,19,1.0,0,1.7225205898284912,266,0.0,2 +58766,19,1.0,0,1.331525206565857,267,1.0,2 +58767,19,1.0,0,1.5935221910476685,268,1.0,2 +58768,19,1.0,0,1.334525227546692,269,1.0,2 +58769,19,1.0,0,1.4085246324539185,270,1.0,2 +58770,19,1.0,0,1.967517375946045,271,1.0,2 +58771,19,1.0,0,1.5565227270126343,272,1.0,2 +58772,19,1.0,0,1.495523452758789,273,1.0,2 +58773,19,1.0,0,1.5135232210159302,274,1.0,2 +58774,19,1.0,0,1.7885197401046753,275,0.0,2 +58775,19,1.0,0,1.7635200023651123,276,1.0,2 +58776,19,1.0,0,1.3495253324508667,277,1.0,2 +58777,19,1.0,0,1.8025195598602295,278,1.0,2 +58778,19,1.0,0,1.6405216455459595,279,1.0,2 +58779,19,0.0,0,1.3225252628326416,280,0.0,2 +58780,19,1.0,0,1.4485241174697876,281,1.0,2 +58781,19,1.0,0,1.4235243797302246,282,1.0,2 +58782,19,1.0,0,1.7995195388793945,283,0.0,2 +58783,19,0.0,0,1.2485251426696777,284,0.0,2 +58784,19,1.0,0,1.6155219078063965,285,1.0,2 +58785,19,1.0,0,1.8505189418792725,286,1.0,2 +58786,19,1.0,0,1.5055233240127563,287,1.0,2 +58787,19,1.0,0,1.9245179891586304,288,1.0,2 +58788,19,1.0,0,1.263525128364563,289,1.0,2 +58789,19,1.0,0,1.4095245599746704,290,1.0,2 +58790,19,1.0,0,1.6595213413238525,291,1.0,2 +58791,19,1.0,0,1.7165206670761108,292,1.0,2 +58792,19,1.0,0,1.3615251779556274,293,1.0,2 +58793,19,1.0,0,1.4195244312286377,294,1.0,2 +58794,19,1.0,0,1.6815211772918701,295,1.0,2 +58795,19,1.0,0,1.6985208988189697,296,0.0,2 +58796,19,0.0,0,1.6155219078063965,297,1.0,2 +58797,19,0.0,0,1.330525279045105,298,0.0,2 +58798,19,0.0,0,1.5885223150253296,299,0.0,2 +58799,19,0.0,0,1.7095208168029785,300,0.0,2 +58800,19,1.0,0,1.8365191221237183,301,1.0,2 +58801,19,1.0,0,1.40352463722229,302,1.0,2 +58802,19,1.0,0,2.128516674041748,303,1.0,2 +58803,19,1.0,0,1.5095232725143433,304,0.0,2 +58804,19,0.0,0,1.3215252161026,305,0.0,2 +58805,19,1.0,0,1.4655238389968872,306,1.0,2 +58806,19,1.0,0,1.2615251541137695,307,1.0,2 +58807,19,1.0,0,2.099515676498413,308,1.0,2 +58808,19,1.0,0,2.007516860961914,309,1.0,2 +58809,19,1.0,0,1.56552255153656,310,1.0,2 +58810,19,0.0,0,1.8935184478759766,311,0.0,2 +58811,19,1.0,0,1.7735199928283691,312,0.0,2 +58812,19,1.0,0,1.6565214395523071,313,0.0,2 +58813,19,0.0,0,1.7455203533172607,314,0.0,2 +58814,19,1.0,0,1.4305243492126465,315,1.0,2 +58815,19,1.0,0,1.2725250720977783,316,1.0,2 +58816,19,1.0,0,1.634521722793579,317,1.0,2 +58817,19,1.0,0,1.2715251445770264,318,1.0,2 +58818,19,1.0,0,2.5005340576171875,319,1.0,2 +58819,19,1.0,0,1.358525276184082,320,1.0,2 +58820,19,1.0,0,1.6025221347808838,321,1.0,2 +58821,19,1.0,0,1.5045233964920044,322,1.0,2 +58822,19,1.0,0,1.2745251655578613,323,1.0,2 +58823,19,1.0,0,1.9825172424316406,324,1.0,2 +58824,19,0.0,0,1.3155251741409302,325,1.0,2 +58825,19,0.0,0,1.6925209760665894,326,0.0,2 +58826,19,1.0,0,1.4855235815048218,327,1.0,2 +58827,19,1.0,0,2.064516067504883,328,1.0,2 +58828,19,1.0,0,1.6275217533111572,329,1.0,2 +58829,19,1.0,0,1.6945209503173828,330,1.0,2 +58830,19,1.0,0,1.495523452758789,331,0.0,2 +58831,19,0.0,0,1.6595213413238525,332,0.0,2 +58832,19,0.0,0,1.2355250120162964,333,0.0,2 +58833,19,0.0,0,2.0295166969299316,334,0.0,2 +58834,19,1.0,0,1.6695213317871094,335,1.0,2 +58835,19,1.0,0,2.399529457092285,336,1.0,2 +58836,19,1.0,0,1.645521640777588,337,1.0,2 +58837,19,1.0,0,1.5815223455429077,338,1.0,2 +58838,19,1.0,0,1.3785250186920166,339,1.0,2 +58839,19,1.0,0,1.91851806640625,340,1.0,2 +58840,19,1.0,0,1.4435241222381592,341,1.0,2 +58841,19,1.0,0,1.3165252208709717,342,1.0,2 +58842,19,1.0,0,1.569522500038147,343,1.0,2 +58843,19,1.0,0,1.6195218563079834,344,1.0,2 +58844,19,1.0,0,1.4235243797302246,345,1.0,2 +58845,19,1.0,0,1.4615238904953003,346,1.0,2 +58846,19,1.0,0,1.3955247402191162,347,1.0,2 +58847,19,1.0,0,1.5615226030349731,348,1.0,2 +58848,19,1.0,0,1.3915247917175293,349,1.0,2 +58849,19,1.0,0,1.4585239887237549,350,1.0,2 +58850,19,1.0,0,1.3145252466201782,351,1.0,2 +58851,19,1.0,0,1.5665225982666016,352,0.0,2 +58852,19,1.0,0,1.6445215940475464,353,0.0,2 +58853,19,1.0,0,1.472523808479309,354,1.0,2 +58854,19,1.0,0,1.4165245294570923,355,1.0,2 +58855,19,1.0,0,1.660521388053894,356,1.0,2 +58856,19,1.0,0,1.7655200958251953,357,1.0,2 +58857,19,1.0,0,1.3355252742767334,358,1.0,2 +58858,19,1.0,0,1.407524585723877,359,1.0,2 +58859,19,1.0,0,1.3925248384475708,360,1.0,2 +58860,19,1.0,0,1.3795249462127686,361,0.0,2 +58861,19,0.0,0,1.5315229892730713,362,1.0,2 +58862,19,0.0,0,1.5125232934951782,363,0.0,2 +58863,19,0.0,0,1.3835248947143555,364,0.0,2 +58864,19,1.0,0,2.362527847290039,365,1.0,2 +58865,19,1.0,0,1.5165232419967651,366,1.0,2 +58866,19,1.0,0,1.5445228815078735,367,1.0,2 +58867,19,1.0,0,2.2005200386047363,368,1.0,2 +58868,19,1.0,0,1.5395228862762451,369,1.0,2 +58869,19,1.0,0,1.7145206928253174,370,1.0,2 +58870,19,1.0,0,1.331525206565857,371,1.0,2 +58871,19,1.0,0,1.823519229888916,372,1.0,2 +58872,19,1.0,0,1.3745250701904297,373,1.0,2 +58873,19,1.0,0,1.4145245552062988,374,1.0,2 +58874,19,1.0,0,1.6275217533111572,375,1.0,2 +58875,19,1.0,0,1.5795223712921143,376,1.0,2 +58876,19,1.0,0,1.8635187149047852,377,1.0,2 +58877,19,1.0,0,1.5045233964920044,378,1.0,2 +58878,19,1.0,0,1.9785172939300537,379,1.0,2 +58879,19,1.0,0,1.3375252485275269,380,1.0,2 +58880,19,1.0,0,1.7985196113586426,381,1.0,2 +58881,19,1.0,0,1.6035220623016357,382,1.0,2 +58882,19,1.0,0,1.4755237102508545,383,1.0,2 +58883,19,1.0,0,1.7695200443267822,384,1.0,2 +58884,19,1.0,0,1.7865197658538818,385,0.0,2 +58885,19,1.0,0,1.7135207653045654,386,1.0,2 +58886,19,1.0,0,1.3505252599716187,387,0.0,2 +58887,19,0.0,0,1.5965222120285034,388,0.0,2 +58888,19,1.0,0,1.521523118019104,389,1.0,2 +58889,19,1.0,0,1.7075207233428955,390,0.0,2 +58890,19,0.0,0,1.232525110244751,391,1.0,2 +58891,19,0.0,0,1.5835223197937012,392,0.0,2 +58892,19,0.0,0,1.6845210790634155,393,1.0,2 +58893,19,0.0,0,1.2765251398086548,394,0.0,2 +58894,19,1.0,0,1.3235251903533936,395,1.0,2 +58895,19,1.0,0,1.8935184478759766,396,1.0,2 +58896,19,0.0,0,1.3255252838134766,397,1.0,2 +58897,19,1.0,0,1.8615188598632812,398,1.0,2 +58898,19,1.0,0,1.988517165184021,399,1.0,2 +58899,19,0.0,0,2.2625231742858887,400,0.0,2 +58900,19,1.0,0,1.4195244312286377,401,0.0,2 +58901,19,0.0,0,2.0455164909362793,402,0.0,2 +58902,19,1.0,0,2.124516487121582,403,1.0,2 +58903,19,1.0,0,1.9585175514221191,404,0.0,2 +58904,19,0.0,0,1.4175244569778442,405,0.0,2 +58905,19,1.0,0,2.1925196647644043,406,1.0,2 +58906,19,1.0,0,1.3325252532958984,407,1.0,2 +58907,19,1.0,0,1.3935247659683228,408,0.0,2 +58908,19,0.0,0,1.3565253019332886,409,0.0,2 +58909,19,1.0,0,1.3915247917175293,410,1.0,2 +58910,19,1.0,0,1.3155251741409302,411,1.0,2 +58911,19,1.0,0,1.324525237083435,412,1.0,2 +58912,19,1.0,0,2.132516860961914,413,0.0,2 +58913,19,1.0,0,1.5415228605270386,414,0.0,2 +58914,19,0.0,0,1.2745251655578613,415,0.0,2 +58915,19,1.0,0,2.403529644012451,416,1.0,2 +58916,19,1.0,0,1.3905248641967773,417,1.0,2 +58917,19,1.0,0,1.4685238599777222,418,1.0,2 +58918,19,1.0,0,1.690521001815796,419,1.0,2 +58919,19,1.0,0,1.359525203704834,420,1.0,2 +58920,19,1.0,0,1.9585175514221191,421,1.0,2 +58921,19,1.0,0,1.4425241947174072,422,1.0,2 +58922,19,1.0,0,1.4655238389968872,423,1.0,2 +58923,19,1.0,0,1.2955251932144165,424,0.0,2 +58924,19,0.0,0,1.7845197916030884,425,0.0,2 +58925,19,1.0,0,1.5285230875015259,426,0.0,2 +58926,19,0.0,0,1.7645200490951538,427,0.0,2 +58927,19,0.0,0,1.6815211772918701,428,0.0,2 +58928,19,1.0,0,1.6135220527648926,429,1.0,2 +58929,19,1.0,0,1.3945248126983643,430,1.0,2 +58930,19,1.0,0,1.3405252695083618,431,1.0,2 +58931,19,1.0,0,1.3075251579284668,432,1.0,2 +58932,19,1.0,0,1.3085252046585083,433,1.0,2 +58933,19,1.0,0,1.2215250730514526,434,1.0,2 +58934,19,1.0,0,1.499523401260376,435,1.0,2 +58935,19,1.0,0,1.8365191221237183,436,1.0,2 +58936,19,0.0,0,1.5535227060317993,437,0.0,2 +58937,19,1.0,0,1.4185245037078857,438,1.0,2 +58938,19,1.0,0,1.3445253372192383,439,1.0,2 +58939,19,1.0,0,1.4695237874984741,440,1.0,2 +58940,19,1.0,0,1.4415241479873657,441,1.0,2 +58941,19,1.0,0,1.3145252466201782,442,1.0,2 +58942,19,1.0,0,1.825519323348999,443,1.0,2 +58943,19,1.0,0,1.3945248126983643,444,1.0,2 +58944,19,1.0,0,2.0395164489746094,445,1.0,2 +58945,19,1.0,0,1.2815251350402832,446,1.0,2 +58946,19,1.0,0,1.3535252809524536,447,1.0,2 +58947,19,1.0,0,1.5895222425460815,448,1.0,2 +58948,19,1.0,0,1.3375252485275269,449,1.0,2 +58949,19,1.0,0,1.4565240144729614,450,1.0,2 +58950,19,1.0,0,1.4215244054794312,451,0.0,2 +58951,19,0.0,0,2.1835193634033203,452,0.0,2 +58952,19,1.0,0,1.8475189208984375,453,1.0,2 +58953,19,1.0,0,1.3915247917175293,454,1.0,2 +58954,19,1.0,0,1.777519941329956,455,1.0,2 +58955,19,1.0,0,1.5535227060317993,456,1.0,2 +58956,19,1.0,0,1.7945196628570557,457,1.0,2 +58957,19,1.0,0,1.3325252532958984,458,1.0,2 +58958,19,1.0,0,1.4465241432189941,459,1.0,2 +58959,19,0.0,0,1.9045182466506958,460,0.0,2 +58960,19,1.0,0,1.6105220317840576,461,1.0,2 +58961,19,1.0,0,1.32752525806427,462,1.0,2 +58962,19,1.0,0,1.3415253162384033,463,1.0,2 +58963,19,0.0,0,1.969517469406128,464,1.0,2 +58964,19,0.0,0,2.113516092300415,465,0.0,2 +58965,19,0.0,0,1.5485228300094604,466,0.0,2 +58966,19,1.0,0,2.340526580810547,467,1.0,2 +58967,19,1.0,0,1.300525188446045,468,1.0,2 +58968,19,1.0,0,1.4585239887237549,469,1.0,2 +58969,19,1.0,0,1.9035181999206543,470,1.0,2 +58970,19,1.0,0,1.5365229845046997,471,1.0,2 +58971,19,1.0,0,1.1925249099731445,472,1.0,2 +58972,19,1.0,0,1.447524070739746,473,1.0,2 +58973,19,1.0,0,1.4375241994857788,474,1.0,2 +58974,19,1.0,0,1.520523190498352,475,1.0,2 +58975,19,1.0,0,1.334525227546692,476,1.0,2 +58976,19,1.0,0,1.735520362854004,477,1.0,2 +58977,19,1.0,0,1.6915209293365479,478,1.0,2 +58978,19,1.0,0,1.7235205173492432,479,1.0,2 +58979,19,1.0,0,1.3475252389907837,480,1.0,2 +58980,19,1.0,0,1.827519178390503,481,1.0,2 +58981,19,1.0,0,1.4445241689682007,482,1.0,2 +58982,19,1.0,0,1.4405242204666138,483,1.0,2 +58983,19,1.0,0,1.9045182466506958,484,1.0,2 +58984,19,1.0,0,1.2435250282287598,485,1.0,2 +58985,19,1.0,0,1.8065195083618164,486,1.0,2 +58986,19,1.0,0,1.3465253114700317,487,1.0,2 +58987,19,1.0,0,1.2175250053405762,488,1.0,2 +58988,19,0.0,0,1.5015233755111694,489,0.0,2 +58989,19,0.0,0,1.2455251216888428,490,0.0,2 +58990,19,0.0,0,1.6055221557617188,491,0.0,2 +58991,19,1.0,0,1.4535239934921265,492,0.0,2 +58992,19,1.0,0,1.495523452758789,493,1.0,2 +58993,19,1.0,0,1.4655238389968872,494,1.0,2 +58994,19,1.0,0,1.4005247354507446,495,1.0,2 +58995,19,1.0,0,1.6635212898254395,496,1.0,2 +58996,19,1.0,0,1.5275230407714844,497,1.0,2 +58997,19,1.0,0,1.3025251626968384,498,1.0,2 +58998,19,1.0,0,1.3865249156951904,499,1.0,2 +58999,19,1.0,0,1.7025208473205566,500,1.0,2 +59000,19,1.0,1,2.56253719329834,1,1.0,2 +59001,19,1.0,1,1.5135232210159302,2,0.0,2 +59002,19,0.0,1,1.683521032333374,3,0.0,2 +59003,19,0.0,1,2.1545181274414062,4,0.0,2 +59004,19,0.0,1,1.965517520904541,5,1.0,2 +59005,19,0.0,1,1.2355250120162964,6,0.0,2 +59006,19,1.0,1,1.4305243492126465,7,1.0,2 +59007,19,1.0,1,1.428524374961853,8,1.0,2 +59008,19,1.0,1,1.6335217952728271,9,1.0,2 +59009,19,1.0,1,1.428524374961853,10,1.0,2 +59010,19,1.0,1,2.392529010772705,11,1.0,2 +59011,19,1.0,1,1.4675238132476807,12,1.0,2 +59012,19,1.0,1,1.3495253324508667,13,1.0,2 +59013,19,1.0,1,1.7665200233459473,14,1.0,2 +59014,19,1.0,1,1.7805198431015015,15,0.0,2 +59015,19,1.0,1,1.9915170669555664,16,1.0,2 +59016,19,1.0,1,1.6185219287872314,17,1.0,2 +59017,19,1.0,1,1.5965222120285034,18,0.0,2 +59018,19,1.0,1,1.7635200023651123,19,0.0,2 +59019,19,1.0,1,1.8855185508728027,20,1.0,2 +59020,19,0.0,1,2.365527868270874,21,0.0,2 +59021,19,1.0,1,1.4675238132476807,22,1.0,2 +59022,19,0.0,1,2.138517379760742,23,0.0,2 +59023,19,1.0,1,1.38052499294281,24,1.0,2 +59024,19,1.0,1,1.3535252809524536,25,1.0,2 +59025,19,1.0,1,1.7515201568603516,26,1.0,2 +59026,19,1.0,1,1.8585188388824463,27,0.0,2 +59027,19,1.0,1,1.5615226030349731,28,1.0,2 +59028,19,1.0,1,1.425524353981018,29,1.0,2 +59029,19,1.0,1,2.0885157585144043,30,1.0,2 +59030,19,1.0,1,1.8325191736221313,31,1.0,2 +59031,19,1.0,1,1.4395241737365723,32,1.0,2 +59032,19,1.0,1,1.2445250749588013,33,0.0,2 +59033,19,1.0,1,1.6925209760665894,34,1.0,2 +59034,19,1.0,1,1.6045221090316772,35,0.0,2 +59035,19,1.0,1,2.653541326522827,36,0.0,2 +59036,19,0.0,1,2.2415220737457275,37,1.0,2 +59037,19,0.0,1,1.4225244522094727,38,1.0,2 +59038,19,0.0,1,1.8245192766189575,39,0.0,2 +59039,19,0.0,1,1.4385242462158203,40,0.0,2 +59040,19,1.0,1,2.5115346908569336,41,1.0,2 +59041,19,1.0,1,1.9085181951522827,42,1.0,2 +59042,19,1.0,1,1.5165232419967651,43,1.0,2 +59043,19,1.0,1,1.288525104522705,44,1.0,2 +59044,19,1.0,1,1.546522855758667,45,1.0,2 +59045,19,1.0,1,1.4815236330032349,46,1.0,2 +59046,19,1.0,1,1.4015246629714966,47,1.0,2 +59047,19,1.0,1,1.4745237827301025,48,0.0,2 +59048,19,1.0,1,1.9235179424285889,49,1.0,2 +59049,19,1.0,1,1.8125194311141968,50,1.0,2 +59050,19,1.0,1,1.591522216796875,51,1.0,2 +59051,19,1.0,1,1.3985247611999512,52,1.0,2 +59052,19,1.0,1,1.550522804260254,53,1.0,2 +59053,19,1.0,1,1.4635238647460938,54,1.0,2 +59054,19,1.0,1,1.9435176849365234,55,1.0,2 +59055,19,1.0,1,1.679521083831787,56,0.0,2 +59056,19,0.0,1,1.43252432346344,57,0.0,2 +59057,19,0.0,1,1.2345250844955444,58,0.0,2 +59058,19,1.0,1,1.685521125793457,59,1.0,2 +59059,19,1.0,1,1.3085252046585083,60,1.0,2 +59060,19,1.0,1,1.3295252323150635,61,1.0,2 +59061,19,1.0,1,1.8495190143585205,62,1.0,2 +59062,19,1.0,1,1.6935210227966309,63,1.0,2 +59063,19,1.0,1,1.498523473739624,64,0.0,2 +59064,19,0.0,1,1.43252432346344,65,0.0,2 +59065,19,1.0,1,1.4615238904953003,66,1.0,2 +59066,19,1.0,1,1.4445241689682007,67,1.0,2 +59067,19,1.0,1,1.5845223665237427,68,1.0,2 +59068,19,1.0,1,1.8095195293426514,69,1.0,2 +59069,19,1.0,1,1.473523736000061,70,1.0,2 +59070,19,1.0,1,1.2895251512527466,71,0.0,2 +59071,19,1.0,1,1.72752046585083,72,1.0,2 +59072,19,1.0,1,2.0705161094665527,73,0.0,2 +59073,19,0.0,1,1.6625213623046875,74,0.0,2 +59074,19,0.0,1,1.4905235767364502,75,0.0,2 +59075,19,0.0,1,2.048516273498535,76,0.0,2 +59076,19,0.0,1,1.4885236024856567,77,0.0,2 +59077,19,1.0,1,1.2005250453948975,78,1.0,2 +59078,19,1.0,1,2.298524856567383,79,1.0,2 +59079,19,1.0,1,2.613539457321167,80,1.0,2 +59080,19,1.0,1,1.664521336555481,81,1.0,2 +59081,19,1.0,1,1.5015233755111694,82,1.0,2 +59082,19,1.0,1,1.8165193796157837,83,1.0,2 +59083,19,1.0,1,1.8505189418792725,84,1.0,2 +59084,19,1.0,1,1.3675251007080078,85,1.0,2 +59085,19,1.0,1,1.4195244312286377,86,1.0,2 +59086,19,1.0,1,1.8055195808410645,87,1.0,2 +59087,19,1.0,1,1.4975234270095825,88,0.0,2 +59088,19,0.0,1,1.5585227012634277,89,0.0,2 +59089,19,0.0,1,1.236525058746338,90,0.0,2 +59090,19,0.0,1,1.8645187616348267,91,1.0,2 +59091,19,0.0,1,1.7935197353363037,92,0.0,2 +59092,19,0.0,1,1.503523349761963,93,0.0,2 +59093,19,0.0,1,1.5545227527618408,94,0.0,2 +59094,19,1.0,1,2.1945199966430664,95,1.0,2 +59095,19,1.0,1,1.3655251264572144,96,1.0,2 +59096,19,1.0,1,1.3965247869491577,97,0.0,2 +59097,19,1.0,1,1.3535252809524536,98,1.0,2 +59098,19,1.0,1,1.4615238904953003,99,1.0,2 +59099,19,1.0,1,2.2255213260650635,100,0.0,2 +59100,19,0.0,1,1.2505251169204712,101,0.0,2 +59101,19,0.0,1,1.472523808479309,102,1.0,2 +59102,19,0.0,1,1.3725250959396362,103,0.0,2 +59103,19,1.0,1,1.355525255203247,104,1.0,2 +59104,19,1.0,1,1.7385203838348389,105,1.0,2 +59105,19,1.0,1,1.4865236282348633,106,1.0,2 +59106,19,1.0,1,1.331525206565857,107,1.0,2 +59107,19,1.0,1,1.5785224437713623,108,1.0,2 +59108,19,1.0,1,1.4695237874984741,109,1.0,2 +59109,19,1.0,1,1.3615251779556274,110,0.0,2 +59110,19,1.0,1,1.4355242252349854,111,1.0,2 +59111,19,1.0,1,1.6235218048095703,112,1.0,2 +59112,19,1.0,1,1.3505252599716187,113,1.0,2 +59113,19,1.0,1,1.4155244827270508,114,0.0,2 +59114,19,0.0,1,1.4455240964889526,115,0.0,2 +59115,19,1.0,1,1.451524019241333,116,0.0,2 +59116,19,1.0,1,2.2365217208862305,117,1.0,2 +59117,19,1.0,1,1.6805211305618286,118,0.0,2 +59118,19,1.0,1,1.8915183544158936,119,1.0,2 +59119,19,1.0,1,1.7265205383300781,120,1.0,2 +59120,19,1.0,1,2.020516872406006,121,1.0,2 +59121,19,1.0,1,1.4445241689682007,122,1.0,2 +59122,19,1.0,1,1.5495227575302124,123,1.0,2 +59123,19,1.0,1,1.8155193328857422,124,0.0,2 +59124,19,1.0,1,1.7385203838348389,125,1.0,2 +59125,19,1.0,1,2.0675160884857178,126,0.0,2 +59126,19,0.0,1,1.2755250930786133,127,0.0,2 +59127,19,1.0,1,1.8505189418792725,128,0.0,2 +59128,19,0.0,1,1.3885248899459839,129,0.0,2 +59129,19,1.0,1,2.0735161304473877,130,1.0,2 +59130,19,1.0,1,1.4055246114730835,131,0.0,2 +59131,19,0.0,1,1.5625226497650146,132,0.0,2 +59132,19,0.0,1,1.922518014907837,133,1.0,2 +59133,19,0.0,1,1.5665225982666016,134,1.0,2 +59134,19,0.0,1,1.5815223455429077,135,1.0,2 +59135,19,0.0,1,1.5015233755111694,136,0.0,2 +59136,19,0.0,1,1.969517469406128,137,0.0,2 +59137,19,1.0,1,1.9025182723999023,138,0.0,2 +59138,19,0.0,1,2.2105207443237305,139,1.0,2 +59139,19,0.0,1,1.3165252208709717,140,0.0,2 +59140,19,1.0,1,2.316525459289551,141,0.0,2 +59141,19,0.0,1,1.8355190753936768,142,0.0,2 +59142,19,1.0,1,1.8975183963775635,143,1.0,2 +59143,19,1.0,1,1.4815236330032349,144,1.0,2 +59144,19,1.0,1,1.2195249795913696,145,1.0,2 +59145,19,1.0,1,1.3415253162384033,146,1.0,2 +59146,19,0.0,1,2.172518730163574,147,1.0,2 +59147,19,0.0,1,1.499523401260376,148,0.0,2 +59148,19,1.0,1,1.3795249462127686,149,1.0,2 +59149,19,1.0,1,1.5085233449935913,150,1.0,2 +59150,19,1.0,1,1.543522834777832,151,1.0,2 +59151,19,1.0,1,1.4115245342254639,152,1.0,2 +59152,19,1.0,1,2.5345358848571777,153,1.0,2 +59153,19,1.0,1,1.830519199371338,154,1.0,2 +59154,19,1.0,1,1.3015252351760864,155,0.0,2 +59155,19,0.0,1,1.2795251607894897,156,0.0,2 +59156,19,1.0,1,1.9315178394317627,157,0.0,2 +59157,19,0.0,1,1.3055251836776733,158,1.0,2 +59158,19,0.0,1,1.2495250701904297,159,1.0,2 +59159,19,0.0,1,1.5715224742889404,160,0.0,2 +59160,19,0.0,1,1.40352463722229,161,0.0,2 +59161,19,1.0,1,2.2175209522247314,162,1.0,2 +59162,19,1.0,1,1.686521053314209,163,1.0,2 +59163,19,1.0,1,1.6925209760665894,164,1.0,2 +59164,19,1.0,1,2.2155208587646484,165,1.0,2 +59165,19,1.0,1,1.4925235509872437,166,1.0,2 +59166,19,1.0,1,1.3895248174667358,167,0.0,2 +59167,19,0.0,1,1.7425203323364258,168,0.0,2 +59168,19,1.0,1,1.229525089263916,169,1.0,2 +59169,19,1.0,1,1.4855235815048218,170,1.0,2 +59170,19,1.0,1,1.7465202808380127,171,1.0,2 +59171,19,1.0,1,2.2085204124450684,172,0.0,2 +59172,19,0.0,1,1.4365242719650269,173,0.0,2 +59173,19,0.0,1,1.735520362854004,174,1.0,2 +59174,19,0.0,1,1.6185219287872314,175,0.0,2 +59175,19,0.0,1,1.6065220832824707,176,1.0,2 +59176,19,0.0,1,1.2875251770019531,177,1.0,2 +59177,19,0.0,1,1.407524585723877,178,1.0,2 +59178,19,0.0,1,1.8795185089111328,179,0.0,2 +59179,19,0.0,1,1.5095232725143433,180,0.0,2 +59180,19,0.0,1,1.7915196418762207,181,1.0,2 +59181,19,0.0,1,2.0345165729522705,182,0.0,2 +59182,19,0.0,1,1.8885184526443481,183,0.0,2 +59183,19,1.0,1,1.4615238904953003,184,1.0,2 +59184,19,1.0,1,1.8405190706253052,185,1.0,2 +59185,19,1.0,1,1.4005247354507446,186,1.0,2 +59186,19,1.0,1,1.2925251722335815,187,1.0,2 +59187,19,1.0,1,1.546522855758667,188,1.0,2 +59188,19,1.0,1,1.3955247402191162,189,0.0,2 +59189,19,0.0,1,2.0735161304473877,190,0.0,2 +59190,19,1.0,1,1.6535215377807617,191,1.0,2 +59191,19,1.0,1,1.635521650314331,192,1.0,2 +59192,19,1.0,1,1.7575201988220215,193,0.0,2 +59193,19,0.0,1,2.4705328941345215,194,1.0,2 +59194,19,0.0,1,1.5925222635269165,195,0.0,2 +59195,19,0.0,1,1.4625239372253418,196,0.0,2 +59196,19,1.0,1,2.2055203914642334,197,1.0,2 +59197,19,1.0,1,2.2735235691070557,198,1.0,2 +59198,19,1.0,1,1.525523066520691,199,1.0,2 +59199,19,1.0,1,1.4425241947174072,200,1.0,2 +59200,19,1.0,1,2.129516839981079,201,1.0,2 +59201,19,1.0,1,1.6625213623046875,202,0.0,2 +59202,19,0.0,1,1.2515250444412231,203,0.0,2 +59203,19,1.0,1,1.6025221347808838,204,1.0,2 +59204,19,1.0,1,1.3795249462127686,205,1.0,2 +59205,19,1.0,1,1.919517993927002,206,0.0,2 +59206,19,1.0,1,1.6045221090316772,207,1.0,2 +59207,19,1.0,1,2.105515718460083,208,1.0,2 +59208,19,1.0,1,1.8685187101364136,209,1.0,2 +59209,19,0.0,1,1.5185232162475586,210,1.0,2 +59210,19,1.0,1,1.6305217742919922,211,1.0,2 +59211,19,1.0,1,1.5525227785110474,212,1.0,2 +59212,19,1.0,1,1.6335217952728271,213,1.0,2 +59213,19,1.0,1,1.8585188388824463,214,1.0,2 +59214,19,0.0,1,1.6595213413238525,215,1.0,2 +59215,19,0.0,1,1.637521743774414,216,0.0,2 +59216,19,1.0,1,1.9735174179077148,217,0.0,2 +59217,19,0.0,1,1.4185245037078857,218,1.0,2 +59218,19,0.0,1,1.2865251302719116,219,0.0,2 +59219,19,0.0,1,1.8085194826126099,220,0.0,2 +59220,19,1.0,1,1.9875171184539795,221,1.0,2 +59221,19,1.0,1,1.3265252113342285,222,1.0,2 +59222,19,1.0,1,1.2175250053405762,223,1.0,2 +59223,19,1.0,1,1.5155231952667236,224,1.0,2 +59224,19,1.0,1,1.6555213928222656,225,1.0,2 +59225,19,1.0,1,1.2505251169204712,226,1.0,2 +59226,19,1.0,1,1.5005234479904175,227,1.0,2 +59227,19,1.0,1,1.4875235557556152,228,1.0,2 +59228,19,1.0,1,1.3885248899459839,229,0.0,2 +59229,19,0.0,1,2.3085250854492188,230,0.0,2 +59230,19,0.0,1,1.7135207653045654,231,0.0,2 +59231,19,0.0,1,1.5415228605270386,232,0.0,2 +59232,19,1.0,1,1.498523473739624,233,0.0,2 +59233,19,0.0,1,1.473523736000061,234,1.0,2 +59234,19,0.0,1,1.260525107383728,235,0.0,2 +59235,19,0.0,1,1.6045221090316772,236,0.0,2 +59236,19,0.0,1,1.3455252647399902,237,0.0,2 +59237,19,1.0,1,2.0355165004730225,238,1.0,2 +59238,19,1.0,1,1.9855172634124756,239,1.0,2 +59239,19,1.0,1,1.2345250844955444,240,1.0,2 +59240,19,1.0,1,1.4445241689682007,241,1.0,2 +59241,19,1.0,1,1.451524019241333,242,1.0,2 +59242,19,1.0,1,2.121516466140747,243,1.0,2 +59243,19,1.0,1,1.5975221395492554,244,1.0,2 +59244,19,1.0,1,1.233525037765503,245,1.0,2 +59245,19,1.0,1,1.4195244312286377,246,0.0,2 +59246,19,0.0,1,1.9515175819396973,247,0.0,2 +59247,19,0.0,1,2.3015248775482178,248,1.0,2 +59248,19,0.0,1,1.9385178089141846,249,0.0,2 +59249,19,1.0,1,1.731520414352417,250,1.0,2 +59250,19,1.0,1,1.8985183238983154,251,1.0,2 +59251,19,1.0,1,1.3285253047943115,252,0.0,2 +59252,19,1.0,1,1.5865223407745361,253,1.0,2 +59253,19,1.0,1,2.2515225410461426,254,0.0,2 +59254,19,0.0,1,2.2215211391448975,255,0.0,2 +59255,19,0.0,1,2.4765329360961914,256,0.0,2 +59256,19,0.0,1,1.2755250930786133,257,0.0,2 +59257,19,0.0,1,1.9385178089141846,258,0.0,2 +59258,19,0.0,1,2.148517608642578,259,0.0,2 +59259,19,0.0,1,1.425524353981018,260,0.0,2 +59260,19,1.0,1,2.0875158309936523,261,0.0,2 +59261,19,1.0,1,1.9375178813934326,262,0.0,2 +59262,19,0.0,1,2.5255353450775146,263,0.0,2 +59263,19,1.0,1,1.4465241432189941,264,1.0,2 +59264,19,1.0,1,1.8895184993743896,265,0.0,2 +59265,19,0.0,1,2.168518543243408,266,1.0,2 +59266,19,0.0,1,1.502523422241211,267,0.0,2 +59267,19,0.0,1,2.0905158519744873,268,1.0,2 +59268,19,0.0,1,1.6765211820602417,269,1.0,2 +59269,19,0.0,1,1.729520559310913,270,0.0,2 +59270,19,0.0,1,2.13051700592041,271,1.0,2 +59271,19,0.0,1,1.7495203018188477,272,1.0,2 +59272,19,0.0,1,1.2015249729156494,273,0.0,2 +59273,19,0.0,1,1.355525255203247,274,0.0,2 +59274,19,0.0,1,1.7155206203460693,275,0.0,2 +59275,19,0.0,1,1.9455177783966064,276,0.0,2 +59276,19,1.0,1,2.064516067504883,277,1.0,2 +59277,19,1.0,1,1.3925248384475708,278,1.0,2 +59278,19,1.0,1,1.3495253324508667,279,1.0,2 +59279,19,1.0,1,1.6175220012664795,280,1.0,2 +59280,19,1.0,1,1.5045233964920044,281,1.0,2 +59281,19,1.0,1,1.2355250120162964,282,1.0,2 +59282,19,1.0,1,1.8855185508728027,283,0.0,2 +59283,19,0.0,1,1.7235205173492432,284,0.0,2 +59284,19,0.0,1,1.4115245342254639,285,1.0,2 +59285,19,0.0,1,1.4135245084762573,286,1.0,2 +59286,19,0.0,1,1.43252432346344,287,0.0,2 +59287,19,0.0,1,2.1755189895629883,288,0.0,2 +59288,19,1.0,1,1.7255206108093262,289,1.0,2 +59289,19,1.0,1,1.6005221605300903,290,1.0,2 +59290,19,1.0,1,1.3475252389907837,291,0.0,2 +59291,19,0.0,1,1.5305230617523193,292,0.0,2 +59292,19,1.0,1,2.858551025390625,293,1.0,2 +59293,19,1.0,1,1.2465250492095947,294,0.0,2 +59294,19,0.0,1,1.407524585723877,295,0.0,2 +59295,19,0.0,1,1.940517783164978,296,0.0,2 +59296,19,0.0,1,1.6755211353302002,297,0.0,2 +59297,19,1.0,1,1.940517783164978,298,1.0,2 +59298,19,1.0,1,1.477523684501648,299,0.0,2 +59299,19,1.0,1,1.8385190963745117,300,0.0,2 +59300,19,1.0,1,2.2125205993652344,301,1.0,2 +59301,19,1.0,1,1.38052499294281,302,0.0,2 +59302,19,0.0,1,1.4935234785079956,303,0.0,2 +59303,19,1.0,1,2.103515625,304,0.0,2 +59304,19,0.0,1,1.8155193328857422,305,0.0,2 +59305,19,1.0,1,1.9295179843902588,306,1.0,2 +59306,19,1.0,1,1.637521743774414,307,0.0,2 +59307,19,1.0,1,2.2615230083465576,308,1.0,2 +59308,19,1.0,1,1.7585201263427734,309,1.0,2 +59309,19,1.0,1,1.8585188388824463,310,1.0,2 +59310,19,1.0,1,1.9585175514221191,311,1.0,2 +59311,19,1.0,1,2.379528522491455,312,1.0,2 +59312,19,1.0,1,1.3375252485275269,313,1.0,2 +59313,19,1.0,1,1.3835248947143555,314,1.0,2 +59314,19,1.0,1,2.1615183353424072,315,1.0,2 +59315,19,0.0,1,1.428524374961853,316,0.0,2 +59316,19,1.0,1,1.4005247354507446,317,1.0,2 +59317,19,1.0,1,1.3165252208709717,318,1.0,2 +59318,19,1.0,1,1.7245205640792847,319,1.0,2 +59319,19,1.0,1,1.521523118019104,320,1.0,2 +59320,19,0.0,1,1.9555175304412842,321,0.0,2 +59321,19,0.0,1,1.4855235815048218,322,0.0,2 +59322,19,1.0,1,1.6185219287872314,323,1.0,2 +59323,19,1.0,1,1.914518117904663,324,0.0,2 +59324,19,1.0,1,2.4095299243927,325,1.0,2 +59325,19,1.0,1,1.4015246629714966,326,0.0,2 +59326,19,0.0,1,1.3655251264572144,327,1.0,2 +59327,19,0.0,1,1.6885210275650024,328,1.0,2 +59328,19,0.0,1,1.190524935722351,329,1.0,2 +59329,19,0.0,1,1.7635200023651123,330,0.0,2 +59330,19,1.0,1,1.5975221395492554,331,0.0,2 +59331,19,1.0,1,1.3265252113342285,332,1.0,2 +59332,19,1.0,1,1.5885223150253296,333,0.0,2 +59333,19,1.0,1,1.9055182933807373,334,1.0,2 +59334,19,1.0,1,1.7845197916030884,335,1.0,2 +59335,19,1.0,1,2.0705161094665527,336,1.0,2 +59336,19,1.0,1,1.5375229120254517,337,0.0,2 +59337,19,0.0,1,1.3885248899459839,338,0.0,2 +59338,19,0.0,1,1.196524977684021,339,0.0,2 +59339,19,0.0,1,1.6315217018127441,340,1.0,2 +59340,19,0.0,1,1.3125252723693848,341,0.0,2 +59341,19,0.0,1,1.777519941329956,342,1.0,2 +59342,19,0.0,1,1.8405190706253052,343,0.0,2 +59343,19,1.0,1,1.3205251693725586,344,1.0,2 +59344,19,1.0,1,1.634521722793579,345,0.0,2 +59345,19,1.0,1,2.4275307655334473,346,1.0,2 +59346,19,1.0,1,1.616521954536438,347,1.0,2 +59347,19,1.0,1,1.3515253067016602,348,1.0,2 +59348,19,1.0,1,1.6045221090316772,349,1.0,2 +59349,19,1.0,1,1.4455240964889526,350,1.0,2 +59350,19,1.0,1,1.5135232210159302,351,0.0,2 +59351,19,0.0,1,1.9395177364349365,352,0.0,2 +59352,19,0.0,1,1.6775212287902832,353,0.0,2 +59353,19,0.0,1,2.0365166664123535,354,1.0,2 +59354,19,0.0,1,1.4825236797332764,355,0.0,2 +59355,19,1.0,1,2.059516191482544,356,1.0,2 +59356,19,1.0,1,1.4615238904953003,357,0.0,2 +59357,19,1.0,1,1.8365191221237183,358,1.0,2 +59358,19,1.0,1,2.1775190830230713,359,0.0,2 +59359,19,1.0,1,1.2845251560211182,360,1.0,2 +59360,19,1.0,1,1.5155231952667236,361,0.0,2 +59361,19,1.0,1,1.9045182466506958,362,1.0,2 +59362,19,1.0,1,1.5135232210159302,363,1.0,2 +59363,19,1.0,1,1.6005221605300903,364,1.0,2 +59364,19,1.0,1,1.4405242204666138,365,1.0,2 +59365,19,1.0,1,1.4175244569778442,366,0.0,2 +59366,19,0.0,1,1.3605252504348755,367,0.0,2 +59367,19,1.0,1,1.568522572517395,368,1.0,2 +59368,19,1.0,1,1.362525224685669,369,1.0,2 +59369,19,1.0,1,1.3655251264572144,370,1.0,2 +59370,19,1.0,1,1.3885248899459839,371,1.0,2 +59371,19,1.0,1,1.5595226287841797,372,1.0,2 +59372,19,1.0,1,1.451524019241333,373,1.0,2 +59373,19,1.0,1,2.0805158615112305,374,0.0,2 +59374,19,1.0,1,1.825519323348999,375,1.0,2 +59375,19,1.0,1,1.5115232467651367,376,1.0,2 +59376,19,1.0,1,1.2625250816345215,377,1.0,2 +59377,19,1.0,1,1.33352530002594,378,1.0,2 +59378,19,1.0,1,2.2745237350463867,379,0.0,2 +59379,19,1.0,1,1.8805185556411743,380,1.0,2 +59380,19,1.0,1,1.7675199508666992,381,1.0,2 +59381,19,0.0,1,1.4085246324539185,382,0.0,2 +59382,19,1.0,1,1.8685187101364136,383,1.0,2 +59383,19,1.0,1,1.4705238342285156,384,1.0,2 +59384,19,1.0,1,1.5185232162475586,385,1.0,2 +59385,19,1.0,1,1.2465250492095947,386,1.0,2 +59386,19,1.0,1,1.5075232982635498,387,1.0,2 +59387,19,1.0,1,1.6915209293365479,388,1.0,2 +59388,19,1.0,1,1.2745251655578613,389,0.0,2 +59389,19,1.0,1,1.4465241432189941,390,0.0,2 +59390,19,0.0,1,2.2615230083465576,391,1.0,2 +59391,19,0.0,1,2.0845160484313965,392,0.0,2 +59392,19,0.0,1,2.149517774581909,393,0.0,2 +59393,19,0.0,1,1.3185251951217651,394,0.0,2 +59394,19,1.0,1,1.4965234994888306,395,1.0,2 +59395,19,1.0,1,1.4585239887237549,396,1.0,2 +59396,19,1.0,1,1.3835248947143555,397,0.0,2 +59397,19,0.0,1,1.4115245342254639,398,1.0,2 +59398,19,0.0,1,2.0315165519714355,399,0.0,2 +59399,19,0.0,1,1.4275243282318115,400,0.0,2 +59400,19,1.0,1,1.29752516746521,401,1.0,2 +59401,19,0.0,1,1.638521671295166,402,1.0,2 +59402,19,1.0,1,1.499523401260376,403,0.0,2 +59403,19,0.0,1,1.8495190143585205,404,0.0,2 +59404,19,0.0,1,1.6815211772918701,405,1.0,2 +59405,19,0.0,1,1.8465189933776855,406,0.0,2 +59406,19,1.0,1,1.9815173149108887,407,0.0,2 +59407,19,0.0,1,1.9905171394348145,408,0.0,2 +59408,19,0.0,1,1.6955208778381348,409,0.0,2 +59409,19,0.0,1,1.8135194778442383,410,0.0,2 +59410,19,0.0,1,1.3035252094268799,411,1.0,2 +59411,19,0.0,1,1.334525227546692,412,1.0,2 +59412,19,0.0,1,1.3405252695083618,413,1.0,2 +59413,19,0.0,1,1.3535252809524536,414,0.0,2 +59414,19,0.0,1,1.477523684501648,415,0.0,2 +59415,19,0.0,1,1.9235179424285889,416,0.0,2 +59416,19,0.0,1,1.5405229330062866,417,0.0,2 +59417,19,1.0,1,1.7285205125808716,418,1.0,2 +59418,19,1.0,1,1.9295179843902588,419,1.0,2 +59419,19,1.0,1,1.7455203533172607,420,1.0,2 +59420,19,1.0,1,1.7205206155776978,421,1.0,2 +59421,19,1.0,1,1.4845236539840698,422,0.0,2 +59422,19,1.0,1,1.6055221557617188,423,1.0,2 +59423,19,1.0,1,1.9955170154571533,424,1.0,2 +59424,19,1.0,1,1.5935221910476685,425,0.0,2 +59425,19,0.0,1,2.0265166759490967,426,0.0,2 +59426,19,0.0,1,1.4015246629714966,427,0.0,2 +59427,19,1.0,1,1.844519019126892,428,1.0,2 +59428,19,1.0,1,1.5935221910476685,429,0.0,2 +59429,19,1.0,1,1.5325230360031128,430,0.0,2 +59430,19,0.0,1,1.3085252046585083,431,0.0,2 +59431,19,0.0,1,2.5425362586975098,432,0.0,2 +59432,19,0.0,1,1.6685212850570679,433,0.0,2 +59433,19,1.0,1,1.3935247659683228,434,0.0,2 +59434,19,0.0,1,1.4245244264602661,435,0.0,2 +59435,19,0.0,1,2.053516387939453,436,0.0,2 +59436,19,1.0,1,2.068516254425049,437,1.0,2 +59437,19,1.0,1,1.966517448425293,438,1.0,2 +59438,19,1.0,1,1.3985247611999512,439,1.0,2 +59439,19,1.0,1,1.6255218982696533,440,1.0,2 +59440,19,1.0,1,1.4345242977142334,441,1.0,2 +59441,19,1.0,1,1.4535239934921265,442,1.0,2 +59442,19,1.0,1,1.3435252904891968,443,0.0,2 +59443,19,0.0,1,1.2625250816345215,444,1.0,2 +59444,19,0.0,1,1.9585175514221191,445,1.0,2 +59445,19,0.0,1,1.5625226497650146,446,1.0,2 +59446,19,0.0,1,1.5855222940444946,447,0.0,2 +59447,19,1.0,1,1.9005182981491089,448,1.0,2 +59448,19,1.0,1,1.5635225772857666,449,0.0,2 +59449,19,1.0,1,1.454524040222168,450,1.0,2 +59450,19,1.0,1,1.6975209712982178,451,1.0,2 +59451,19,1.0,1,1.4365242719650269,452,1.0,2 +59452,19,0.0,1,1.2105250358581543,453,0.0,2 +59453,19,0.0,1,1.9505176544189453,454,1.0,2 +59454,19,0.0,1,1.7135207653045654,455,1.0,2 +59455,19,1.0,1,1.7075207233428955,456,0.0,2 +59456,19,0.0,1,1.43252432346344,457,1.0,2 +59457,19,0.0,1,1.5745224952697754,458,0.0,2 +59458,19,0.0,1,1.6065220832824707,459,0.0,2 +59459,19,0.0,1,2.325525999069214,460,1.0,2 +59460,19,0.0,1,1.6915209293365479,461,0.0,2 +59461,19,1.0,1,2.094515800476074,462,1.0,2 +59462,19,1.0,1,2.4065299034118652,463,1.0,2 +59463,19,1.0,1,1.7455203533172607,464,1.0,2 +59464,19,1.0,1,1.3185251951217651,465,1.0,2 +59465,19,1.0,1,1.3755249977111816,466,1.0,2 +59466,19,1.0,1,1.6325217485427856,467,1.0,2 +59467,19,1.0,1,1.5665225982666016,468,0.0,2 +59468,19,0.0,1,2.0885157585144043,469,0.0,2 +59469,19,0.0,1,1.3505252599716187,470,0.0,2 +59470,19,1.0,1,1.4585239887237549,471,1.0,2 +59471,19,1.0,1,1.6005221605300903,472,1.0,2 +59472,19,1.0,1,1.6565214395523071,473,1.0,2 +59473,19,1.0,1,1.447524070739746,474,0.0,2 +59474,19,0.0,1,1.3535252809524536,475,0.0,2 +59475,19,1.0,1,1.5615226030349731,476,0.0,2 +59476,19,0.0,1,1.7985196113586426,477,0.0,2 +59477,19,0.0,1,2.4365310668945312,478,1.0,2 +59478,19,0.0,1,1.8475189208984375,479,0.0,2 +59479,19,0.0,1,1.4785237312316895,480,0.0,2 +59480,19,1.0,1,1.6485215425491333,481,1.0,2 +59481,19,1.0,1,1.7235205173492432,482,0.0,2 +59482,19,1.0,1,1.8175194263458252,483,1.0,2 +59483,19,1.0,1,1.6285218000411987,484,1.0,2 +59484,19,1.0,1,2.140517234802246,485,1.0,2 +59485,19,0.0,1,1.2715251445770264,486,1.0,2 +59486,19,0.0,1,1.2465250492095947,487,0.0,2 +59487,19,1.0,1,1.6555213928222656,488,1.0,2 +59488,19,1.0,1,2.061516284942627,489,1.0,2 +59489,19,1.0,1,1.6245218515396118,490,1.0,2 +59490,19,0.0,1,1.5835223197937012,491,0.0,2 +59491,19,1.0,1,1.3995246887207031,492,1.0,2 +59492,19,1.0,1,1.7115206718444824,493,1.0,2 +59493,19,0.0,1,1.7555201053619385,494,0.0,2 +59494,19,1.0,1,1.7915196418762207,495,1.0,2 +59495,19,1.0,1,1.3655251264572144,496,0.0,2 +59496,19,1.0,1,1.9495177268981934,497,0.0,2 +59497,19,0.0,1,2.104515552520752,498,1.0,2 +59498,19,0.0,1,1.6925209760665894,499,0.0,2 +59499,19,0.0,1,1.4215244054794312,500,0.0,2 +59500,19,0.0,2,1.2855252027511597,1,0.0,2 +59501,19,0.0,2,1.6845210790634155,2,0.0,2 +59502,19,0.0,2,1.2415250539779663,3,0.0,2 +59503,19,0.0,2,1.690521001815796,4,0.0,2 +59504,19,1.0,2,1.4975234270095825,5,0.0,2 +59505,19,0.0,2,1.6695213317871094,6,0.0,2 +59506,19,1.0,2,1.294525146484375,7,1.0,2 +59507,19,0.0,2,1.9365178346633911,8,1.0,2 +59508,19,1.0,2,1.3615251779556274,9,1.0,2 +59509,19,0.0,2,1.966517448425293,10,0.0,2 +59510,19,1.0,2,1.257525086402893,11,1.0,2 +59511,19,1.0,2,1.2535251379013062,12,0.0,2 +59512,19,0.0,2,1.4675238132476807,13,0.0,2 +59513,19,1.0,2,1.543522834777832,14,0.0,2 +59514,19,0.0,2,1.7905197143554688,15,1.0,2 +59515,19,0.0,2,2.0245165824890137,16,0.0,2 +59516,19,0.0,2,1.6015220880508423,17,0.0,2 +59517,19,0.0,2,1.4645239114761353,18,1.0,2 +59518,19,0.0,2,1.294525146484375,19,0.0,2 +59519,19,0.0,2,1.6915209293365479,20,0.0,2 +59520,19,1.0,2,1.5415228605270386,21,0.0,2 +59521,19,0.0,2,1.5925222635269165,22,0.0,2 +59522,19,0.0,2,1.9545176029205322,23,0.0,2 +59523,19,1.0,2,1.5785224437713623,24,1.0,2 +59524,19,1.0,2,1.6785211563110352,25,1.0,2 +59525,19,1.0,2,1.6065220832824707,26,0.0,2 +59526,19,1.0,2,1.494523525238037,27,1.0,2 +59527,19,1.0,2,1.3385252952575684,28,1.0,2 +59528,19,1.0,2,1.520523190498352,29,0.0,2 +59529,19,1.0,2,2.114516258239746,30,1.0,2 +59530,19,1.0,2,2.063516139984131,31,1.0,2 +59531,19,1.0,2,1.377524971961975,32,1.0,2 +59532,19,1.0,2,1.9525176286697388,33,0.0,2 +59533,19,1.0,2,1.384524941444397,34,1.0,2 +59534,19,1.0,2,1.5445228815078735,35,1.0,2 +59535,19,1.0,2,1.5185232162475586,36,1.0,2 +59536,19,1.0,2,1.6025221347808838,37,0.0,2 +59537,19,0.0,2,2.5045342445373535,38,0.0,2 +59538,19,0.0,2,1.8535189628601074,39,0.0,2 +59539,19,1.0,2,1.635521650314331,40,0.0,2 +59540,19,0.0,2,1.2705250978469849,41,0.0,2 +59541,19,1.0,2,1.8815186023712158,42,0.0,2 +59542,19,1.0,2,2.5305356979370117,43,0.0,2 +59543,19,1.0,2,1.4785237312316895,44,1.0,2 +59544,19,1.0,2,1.3725250959396362,45,1.0,2 +59545,19,1.0,2,1.4465241432189941,46,0.0,2 +59546,19,0.0,2,1.9865171909332275,47,1.0,2 +59547,19,0.0,2,1.2755250930786133,48,0.0,2 +59548,19,0.0,2,1.3735250234603882,49,0.0,2 +59549,19,1.0,2,1.5355229377746582,50,0.0,2 +59550,19,1.0,2,2.2175209522247314,51,1.0,2 +59551,19,1.0,2,1.6305217742919922,52,1.0,2 +59552,19,1.0,2,1.477523684501648,53,1.0,2 +59553,19,1.0,2,2.4275307655334473,54,1.0,2 +59554,19,1.0,2,1.6225218772888184,55,0.0,2 +59555,19,0.0,2,1.6365216970443726,56,1.0,2 +59556,19,0.0,2,1.7895197868347168,57,0.0,2 +59557,19,1.0,2,1.4925235509872437,58,0.0,2 +59558,19,0.0,2,1.8865184783935547,59,1.0,2 +59559,19,0.0,2,1.402524709701538,60,1.0,2 +59560,19,0.0,2,1.3615251779556274,61,1.0,2 +59561,19,0.0,2,1.6085220575332642,62,0.0,2 +59562,19,0.0,2,1.5805224180221558,63,0.0,2 +59563,19,0.0,2,1.9295179843902588,64,1.0,2 +59564,19,0.0,2,1.3895248174667358,65,0.0,2 +59565,19,0.0,2,1.4125245809555054,66,0.0,2 +59566,19,0.0,2,1.5445228815078735,67,0.0,2 +59567,19,1.0,2,1.503523349761963,68,1.0,2 +59568,19,0.0,2,1.363525152206421,69,1.0,2 +59569,19,1.0,2,1.6805211305618286,70,1.0,2 +59570,19,1.0,2,2.002516984939575,71,1.0,2 +59571,19,1.0,2,1.4795236587524414,72,1.0,2 +59572,19,0.0,2,1.8545188903808594,73,1.0,2 +59573,19,1.0,2,2.172518730163574,74,1.0,2 +59574,19,0.0,2,1.6985208988189697,75,1.0,2 +59575,19,0.0,2,1.4915235042572021,76,1.0,2 +59576,19,1.0,2,1.6885210275650024,77,0.0,2 +59577,19,0.0,2,1.3125252723693848,78,1.0,2 +59578,19,0.0,2,1.734520435333252,79,0.0,2 +59579,19,1.0,2,1.406524658203125,80,1.0,2 +59580,19,0.0,2,1.3175252676010132,81,1.0,2 +59581,19,1.0,2,1.3665251731872559,82,0.0,2 +59582,19,0.0,2,1.477523684501648,83,0.0,2 +59583,19,0.0,2,1.7985196113586426,84,1.0,2 +59584,19,0.0,2,1.227524995803833,85,1.0,2 +59585,19,0.0,2,1.5295230150222778,86,1.0,2 +59586,19,0.0,2,1.3115252256393433,87,0.0,2 +59587,19,0.0,2,1.6545214653015137,88,1.0,2 +59588,19,0.0,2,1.2435250282287598,89,1.0,2 +59589,19,0.0,2,1.3235251903533936,90,1.0,2 +59590,19,0.0,2,1.429524302482605,91,0.0,2 +59591,19,0.0,2,1.8855185508728027,92,1.0,2 +59592,19,0.0,2,1.494523525238037,93,1.0,2 +59593,19,0.0,2,1.8115193843841553,94,1.0,2 +59594,19,0.0,2,1.5595226287841797,95,1.0,2 +59595,19,0.0,2,1.2895251512527466,96,1.0,2 +59596,19,0.0,2,1.9025182723999023,97,0.0,2 +59597,19,0.0,2,2.108515739440918,98,0.0,2 +59598,19,0.0,2,1.3355252742767334,99,1.0,2 +59599,19,0.0,2,1.1805249452590942,100,0.0,2 +59600,19,0.0,2,1.6315217018127441,101,0.0,2 +59601,19,0.0,2,1.5415228605270386,102,1.0,2 +59602,19,0.0,2,1.3935247659683228,103,1.0,2 +59603,19,0.0,2,1.4825236797332764,104,1.0,2 +59604,19,0.0,2,1.2655251026153564,105,0.0,2 +59605,19,0.0,2,1.7095208168029785,106,1.0,2 +59606,19,0.0,2,1.3225252628326416,107,0.0,2 +59607,19,0.0,2,1.7925196886062622,108,1.0,2 +59608,19,0.0,2,1.358525276184082,109,0.0,2 +59609,19,0.0,2,1.686521053314209,110,0.0,2 +59610,19,1.0,2,2.2615230083465576,111,0.0,2 +59611,19,0.0,2,2.2055203914642334,112,0.0,2 +59612,19,1.0,2,1.5885223150253296,113,1.0,2 +59613,19,1.0,2,1.4975234270095825,114,0.0,2 +59614,19,1.0,2,1.735520362854004,115,0.0,2 +59615,19,0.0,2,1.3645251989364624,116,0.0,2 +59616,19,0.0,2,1.4415241479873657,117,1.0,2 +59617,19,0.0,2,1.3685251474380493,118,0.0,2 +59618,19,1.0,2,1.4675238132476807,119,0.0,2 +59619,19,1.0,2,1.3365252017974854,120,0.0,2 +59620,19,1.0,2,2.5375359058380127,121,1.0,2 +59621,19,1.0,2,1.9775173664093018,122,1.0,2 +59622,19,0.0,2,1.8375191688537598,123,0.0,2 +59623,19,0.0,2,2.133517026901245,124,1.0,2 +59624,19,1.0,2,2.7425456047058105,125,0.0,2 +59625,19,0.0,2,1.5785224437713623,126,1.0,2 +59626,19,0.0,2,1.524523138999939,127,1.0,2 +59627,19,0.0,2,1.236525058746338,128,1.0,2 +59628,19,0.0,2,1.6625213623046875,129,1.0,2 +59629,19,0.0,2,1.1985249519348145,130,1.0,2 +59630,19,0.0,2,1.4585239887237549,131,0.0,2 +59631,19,0.0,2,1.5975221395492554,132,0.0,2 +59632,19,0.0,2,1.6935210227966309,133,0.0,2 +59633,19,0.0,2,2.1885194778442383,134,1.0,2 +59634,19,0.0,2,1.612522006034851,135,1.0,2 +59635,19,0.0,2,1.4575239419937134,136,1.0,2 +59636,19,0.0,2,1.3465253114700317,137,0.0,2 +59637,19,0.0,2,2.0405163764953613,138,0.0,2 +59638,19,0.0,2,2.334526538848877,139,1.0,2 +59639,19,0.0,2,1.8205193281173706,140,0.0,2 +59640,19,0.0,2,1.547522783279419,141,0.0,2 +59641,19,1.0,2,1.3235251903533936,142,1.0,2 +59642,19,1.0,2,1.875518560409546,143,0.0,2 +59643,19,1.0,2,1.6925209760665894,144,1.0,2 +59644,19,1.0,2,1.572522521018982,145,1.0,2 +59645,19,1.0,2,1.3055251836776733,146,0.0,2 +59646,19,0.0,2,2.6835427284240723,147,1.0,2 +59647,19,0.0,2,1.2485251426696777,148,1.0,2 +59648,19,0.0,2,1.660521388053894,149,0.0,2 +59649,19,0.0,2,1.429524302482605,150,1.0,2 +59650,19,0.0,2,1.4145245552062988,151,0.0,2 +59651,19,1.0,2,2.290524482727051,152,1.0,2 +59652,19,1.0,2,1.4875235557556152,153,0.0,2 +59653,19,1.0,2,1.6695213317871094,154,0.0,2 +59654,19,1.0,2,1.6745212078094482,155,1.0,2 +59655,19,1.0,2,2.2115206718444824,156,0.0,2 +59656,19,0.0,2,1.8515188694000244,157,1.0,2 +59657,19,0.0,2,1.6325217485427856,158,0.0,2 +59658,19,1.0,2,1.7435202598571777,159,1.0,2 +59659,19,1.0,2,1.59452223777771,160,0.0,2 +59660,19,0.0,2,1.9605175256729126,161,0.0,2 +59661,19,1.0,2,1.4045246839523315,162,0.0,2 +59662,19,1.0,2,1.4715237617492676,163,0.0,2 +59663,19,1.0,2,1.5285230875015259,164,1.0,2 +59664,19,1.0,2,1.2705250978469849,165,1.0,2 +59665,19,1.0,2,1.8825185298919678,166,0.0,2 +59666,19,0.0,2,1.568522572517395,167,1.0,2 +59667,19,0.0,2,1.3655251264572144,168,1.0,2 +59668,19,0.0,2,1.6175220012664795,169,1.0,2 +59669,19,0.0,2,1.3285253047943115,170,1.0,2 +59670,19,0.0,2,1.679521083831787,171,1.0,2 +59671,19,0.0,2,1.4645239114761353,172,0.0,2 +59672,19,0.0,2,1.3905248641967773,173,1.0,2 +59673,19,0.0,2,1.8915183544158936,174,0.0,2 +59674,19,1.0,2,1.4155244827270508,175,1.0,2 +59675,19,1.0,2,1.29152512550354,176,0.0,2 +59676,19,0.0,2,1.2585251331329346,177,0.0,2 +59677,19,1.0,2,2.2275214195251465,178,0.0,2 +59678,19,0.0,2,1.5345230102539062,179,1.0,2 +59679,19,0.0,2,1.4825236797332764,180,0.0,2 +59680,19,1.0,2,1.821519374847412,181,0.0,2 +59681,19,0.0,2,1.7165206670761108,182,0.0,2 +59682,19,0.0,2,1.9855172634124756,183,1.0,2 +59683,19,0.0,2,1.8385190963745117,184,1.0,2 +59684,19,0.0,2,1.730520486831665,185,0.0,2 +59685,19,0.0,2,1.3195252418518066,186,1.0,2 +59686,19,0.0,2,1.6365216970443726,187,0.0,2 +59687,19,0.0,2,2.066516160964966,188,1.0,2 +59688,19,0.0,2,1.3905248641967773,189,0.0,2 +59689,19,0.0,2,1.5705225467681885,190,0.0,2 +59690,19,1.0,2,1.5765224695205688,191,1.0,2 +59691,19,1.0,2,1.4535239934921265,192,0.0,2 +59692,19,1.0,2,1.639521598815918,193,1.0,2 +59693,19,1.0,2,1.5355229377746582,194,0.0,2 +59694,19,0.0,2,1.4175244569778442,195,1.0,2 +59695,19,0.0,2,1.5085233449935913,196,1.0,2 +59696,19,0.0,2,1.294525146484375,197,0.0,2 +59697,19,0.0,2,1.7095208168029785,198,1.0,2 +59698,19,0.0,2,2.326526165008545,199,0.0,2 +59699,19,0.0,2,1.385524868965149,200,1.0,2 +59700,19,0.0,2,1.524523138999939,201,0.0,2 +59701,19,1.0,2,1.6005221605300903,202,0.0,2 +59702,19,1.0,2,1.3875248432159424,203,0.0,2 +59703,19,0.0,2,1.359525203704834,204,1.0,2 +59704,19,0.0,2,1.5525227785110474,205,0.0,2 +59705,19,0.0,2,1.4695237874984741,206,0.0,2 +59706,19,0.0,2,1.7585201263427734,207,0.0,2 +59707,19,1.0,2,1.778519868850708,208,1.0,2 +59708,19,0.0,2,1.7115206718444824,209,0.0,2 +59709,19,1.0,2,1.4235243797302246,210,1.0,2 +59710,19,1.0,2,1.5575226545333862,211,1.0,2 +59711,19,1.0,2,1.4875235557556152,212,0.0,2 +59712,19,0.0,2,1.3925248384475708,213,1.0,2 +59713,19,0.0,2,1.4465241432189941,214,0.0,2 +59714,19,1.0,2,1.6585214138031006,215,1.0,2 +59715,19,1.0,2,1.2455251216888428,216,1.0,2 +59716,19,1.0,2,1.3825249671936035,217,0.0,2 +59717,19,1.0,2,1.821519374847412,218,1.0,2 +59718,19,1.0,2,1.4415241479873657,219,0.0,2 +59719,19,1.0,2,2.064516067504883,220,1.0,2 +59720,19,1.0,2,1.873518705368042,221,1.0,2 +59721,19,1.0,2,2.5195350646972656,222,1.0,2 +59722,19,1.0,2,1.6535215377807617,223,1.0,2 +59723,19,1.0,2,1.712520718574524,224,0.0,2 +59724,19,0.0,2,1.4265244007110596,225,0.0,2 +59725,19,0.0,2,1.6335217952728271,226,1.0,2 +59726,19,0.0,2,1.5765224695205688,227,1.0,2 +59727,19,0.0,2,1.269525170326233,228,1.0,2 +59728,19,0.0,2,1.6555213928222656,229,1.0,2 +59729,19,0.0,2,1.29152512550354,230,1.0,2 +59730,19,0.0,2,1.2595250606536865,231,1.0,2 +59731,19,0.0,2,1.3355252742767334,232,1.0,2 +59732,19,0.0,2,1.679521083831787,233,1.0,2 +59733,19,0.0,2,1.679521083831787,234,1.0,2 +59734,19,0.0,2,1.3135251998901367,235,0.0,2 +59735,19,0.0,2,1.4435241222381592,236,0.0,2 +59736,19,1.0,2,1.4145245552062988,237,0.0,2 +59737,19,0.0,2,1.296525239944458,238,0.0,2 +59738,19,0.0,2,1.7595200538635254,239,0.0,2 +59739,19,0.0,2,1.8365191221237183,240,1.0,2 +59740,19,0.0,2,2.38952898979187,241,1.0,2 +59741,19,0.0,2,1.543522834777832,242,0.0,2 +59742,19,1.0,2,2.142517566680908,243,1.0,2 +59743,19,1.0,2,1.503523349761963,244,1.0,2 +59744,19,1.0,2,1.4315242767333984,245,1.0,2 +59745,19,1.0,2,1.3325252532958984,246,1.0,2 +59746,19,1.0,2,1.406524658203125,247,0.0,2 +59747,19,1.0,2,2.372528076171875,248,0.0,2 +59748,19,1.0,2,1.3265252113342285,249,0.0,2 +59749,19,0.0,2,1.8285192251205444,250,0.0,2 +59750,19,0.0,2,1.3895248174667358,251,1.0,2 +59751,19,0.0,2,1.223525047302246,252,0.0,2 +59752,19,0.0,2,1.355525255203247,253,0.0,2 +59753,19,1.0,2,1.263525128364563,254,1.0,2 +59754,19,1.0,2,1.3475252389907837,255,1.0,2 +59755,19,1.0,2,1.5135232210159302,256,1.0,2 +59756,19,1.0,2,1.3865249156951904,257,0.0,2 +59757,19,0.0,2,1.8395190238952637,258,0.0,2 +59758,19,0.0,2,1.543522834777832,259,0.0,2 +59759,19,0.0,2,1.7365204095840454,260,0.0,2 +59760,19,1.0,2,1.362525224685669,261,1.0,2 +59761,19,1.0,2,1.6945209503173828,262,0.0,2 +59762,19,0.0,2,1.2955251932144165,263,0.0,2 +59763,19,0.0,2,1.2425251007080078,264,1.0,2 +59764,19,0.0,2,1.2105250358581543,265,0.0,2 +59765,19,1.0,2,1.870518684387207,266,1.0,2 +59766,19,0.0,2,1.5145232677459717,267,1.0,2 +59767,19,0.0,2,1.2875251770019531,268,0.0,2 +59768,19,1.0,2,1.4275243282318115,269,0.0,2 +59769,19,0.0,2,1.4425241947174072,270,0.0,2 +59770,19,1.0,2,2.7075438499450684,271,1.0,2 +59771,19,1.0,2,2.2825241088867188,272,0.0,2 +59772,19,0.0,2,1.2565250396728516,273,1.0,2 +59773,19,0.0,2,1.433524250984192,274,0.0,2 +59774,19,0.0,2,1.595522165298462,275,0.0,2 +59775,19,0.0,2,1.2955251932144165,276,1.0,2 +59776,19,0.0,2,1.4925235509872437,277,0.0,2 +59777,19,1.0,2,1.4455240964889526,278,1.0,2 +59778,19,0.0,2,1.9605175256729126,279,0.0,2 +59779,19,0.0,2,2.100515842437744,280,1.0,2 +59780,19,0.0,2,1.447524070739746,281,0.0,2 +59781,19,1.0,2,1.8405190706253052,282,0.0,2 +59782,19,0.0,2,1.4115245342254639,283,1.0,2 +59783,19,0.0,2,1.9565175771713257,284,0.0,2 +59784,19,0.0,2,2.0935158729553223,285,1.0,2 +59785,19,1.0,2,1.5145232677459717,286,0.0,2 +59786,19,0.0,2,1.359525203704834,287,1.0,2 +59787,19,0.0,2,1.9795172214508057,288,1.0,2 +59788,19,0.0,2,1.3185251951217651,289,1.0,2 +59789,19,0.0,2,1.7335205078125,290,0.0,2 +59790,19,0.0,2,2.5605368614196777,291,0.0,2 +59791,19,0.0,2,1.4605239629745483,292,1.0,2 +59792,19,0.0,2,1.4275243282318115,293,0.0,2 +59793,19,0.0,2,1.5735224485397339,294,1.0,2 +59794,19,0.0,2,1.3475252389907837,295,1.0,2 +59795,19,0.0,2,1.2395250797271729,296,1.0,2 +59796,19,0.0,2,1.5275230407714844,297,1.0,2 +59797,19,0.0,2,1.2175250053405762,298,0.0,2 +59798,19,1.0,2,1.4245244264602661,299,1.0,2 +59799,19,1.0,2,1.6975209712982178,300,1.0,2 +59800,19,1.0,2,1.7395203113555908,301,0.0,2 +59801,19,0.0,2,1.9275178909301758,302,1.0,2 +59802,19,0.0,2,1.7805198431015015,303,1.0,2 +59803,19,0.0,2,1.26752507686615,304,0.0,2 +59804,19,1.0,2,1.7015209197998047,305,1.0,2 +59805,19,1.0,2,1.6815211772918701,306,0.0,2 +59806,19,1.0,2,1.2535251379013062,307,1.0,2 +59807,19,1.0,2,1.8985183238983154,308,0.0,2 +59808,19,1.0,2,1.875518560409546,309,0.0,2 +59809,19,0.0,2,1.8855185508728027,310,0.0,2 +59810,19,0.0,2,1.6985208988189697,311,1.0,2 +59811,19,0.0,2,1.9075181484222412,312,0.0,2 +59812,19,0.0,2,1.7095208168029785,313,0.0,2 +59813,19,1.0,2,1.775519847869873,314,1.0,2 +59814,19,1.0,2,1.473523736000061,315,0.0,2 +59815,19,1.0,2,1.8325191736221313,316,1.0,2 +59816,19,1.0,2,1.4665238857269287,317,1.0,2 +59817,19,1.0,2,1.3135251998901367,318,1.0,2 +59818,19,1.0,2,1.6365216970443726,319,1.0,2 +59819,19,1.0,2,1.4405242204666138,320,1.0,2 +59820,19,1.0,2,1.543522834777832,321,1.0,2 +59821,19,1.0,2,1.3965247869491577,322,1.0,2 +59822,19,1.0,2,1.2995251417160034,323,1.0,2 +59823,19,1.0,2,1.9075181484222412,324,1.0,2 +59824,19,1.0,2,1.4465241432189941,325,0.0,2 +59825,19,0.0,2,1.1815249919891357,326,0.0,2 +59826,19,1.0,2,1.6505215167999268,327,1.0,2 +59827,19,1.0,2,1.637521743774414,328,0.0,2 +59828,19,0.0,2,2.0765161514282227,329,0.0,2 +59829,19,1.0,2,1.7075207233428955,330,0.0,2 +59830,19,0.0,2,1.6095221042633057,331,0.0,2 +59831,19,0.0,2,2.2075204849243164,332,0.0,2 +59832,19,1.0,2,2.4095299243927,333,1.0,2 +59833,19,0.0,2,1.7065207958221436,334,0.0,2 +59834,19,1.0,2,1.7995195388793945,335,0.0,2 +59835,19,1.0,2,1.6635212898254395,336,1.0,2 +59836,19,1.0,2,1.8155193328857422,337,1.0,2 +59837,19,1.0,2,1.4415241479873657,338,0.0,2 +59838,19,0.0,2,1.5805224180221558,339,0.0,2 +59839,19,0.0,2,1.77951979637146,340,1.0,2 +59840,19,0.0,2,1.3545253276824951,341,0.0,2 +59841,19,1.0,2,1.473523736000061,342,1.0,2 +59842,19,1.0,2,1.6105220317840576,343,0.0,2 +59843,19,1.0,2,1.6155219078063965,344,0.0,2 +59844,19,0.0,2,1.7175207138061523,345,0.0,2 +59845,19,0.0,2,1.8845185041427612,346,0.0,2 +59846,19,1.0,2,1.8025195598602295,347,1.0,2 +59847,19,1.0,2,1.587522268295288,348,0.0,2 +59848,19,0.0,2,1.690521001815796,349,1.0,2 +59849,19,0.0,2,1.3515253067016602,350,1.0,2 +59850,19,0.0,2,1.3415253162384033,351,1.0,2 +59851,19,0.0,2,2.2155208587646484,352,1.0,2 +59852,19,0.0,2,1.3985247611999512,353,0.0,2 +59853,19,1.0,2,1.967517375946045,354,1.0,2 +59854,19,1.0,2,1.384524941444397,355,1.0,2 +59855,19,1.0,2,1.3605252504348755,356,1.0,2 +59856,19,0.0,2,1.7905197143554688,357,1.0,2 +59857,19,1.0,2,1.9775173664093018,358,1.0,2 +59858,19,1.0,2,1.777519941329956,359,1.0,2 +59859,19,0.0,2,1.3295252323150635,360,0.0,2 +59860,19,1.0,2,1.4825236797332764,361,0.0,2 +59861,19,0.0,2,2.6965432167053223,362,0.0,2 +59862,19,1.0,2,1.381524920463562,363,0.0,2 +59863,19,0.0,2,1.5525227785110474,364,0.0,2 +59864,19,0.0,2,2.0245165824890137,365,0.0,2 +59865,19,1.0,2,1.9385178089141846,366,1.0,2 +59866,19,1.0,2,1.6145219802856445,367,1.0,2 +59867,19,1.0,2,1.4715237617492676,368,0.0,2 +59868,19,1.0,2,1.822519302368164,369,0.0,2 +59869,19,0.0,2,1.8875184059143066,370,1.0,2 +59870,19,0.0,2,1.3195252418518066,371,1.0,2 +59871,19,0.0,2,1.2565250396728516,372,0.0,2 +59872,19,0.0,2,1.5445228815078735,373,0.0,2 +59873,19,1.0,2,1.9095182418823242,374,1.0,2 +59874,19,1.0,2,1.7705199718475342,375,1.0,2 +59875,19,1.0,2,1.5575226545333862,376,0.0,2 +59876,19,0.0,2,1.2175250053405762,377,0.0,2 +59877,19,0.0,2,1.7445203065872192,378,0.0,2 +59878,19,1.0,2,1.3735250234603882,379,1.0,2 +59879,19,1.0,2,1.568522572517395,380,0.0,2 +59880,19,1.0,2,1.6695213317871094,381,0.0,2 +59881,19,0.0,2,1.3405252695083618,382,0.0,2 +59882,19,0.0,2,1.2865251302719116,383,1.0,2 +59883,19,0.0,2,1.730520486831665,384,0.0,2 +59884,19,0.0,2,1.3165252208709717,385,0.0,2 +59885,19,0.0,2,1.4615238904953003,386,0.0,2 +59886,19,1.0,2,1.8205193281173706,387,1.0,2 +59887,19,1.0,2,1.3885248899459839,388,0.0,2 +59888,19,1.0,2,1.6915209293365479,389,1.0,2 +59889,19,0.0,2,1.3295252323150635,390,1.0,2 +59890,19,0.0,2,2.011516809463501,391,1.0,2 +59891,19,0.0,2,2.047516345977783,392,0.0,2 +59892,19,1.0,2,1.5075232982635498,393,0.0,2 +59893,19,0.0,2,1.5265231132507324,394,1.0,2 +59894,19,0.0,2,1.4665238857269287,395,1.0,2 +59895,19,0.0,2,1.8385190963745117,396,0.0,2 +59896,19,0.0,2,1.45552396774292,397,0.0,2 +59897,19,0.0,2,1.587522268295288,398,1.0,2 +59898,19,0.0,2,1.3545253276824951,399,1.0,2 +59899,19,0.0,2,1.5055233240127563,400,1.0,2 +59900,19,0.0,2,1.4865236282348633,401,0.0,2 +59901,19,1.0,2,1.9955170154571533,402,1.0,2 +59902,19,1.0,2,1.6305217742919922,403,0.0,2 +59903,19,1.0,2,2.2775237560272217,404,1.0,2 +59904,19,1.0,2,1.377524971961975,405,1.0,2 +59905,19,1.0,2,1.752520203590393,406,1.0,2 +59906,19,1.0,2,1.6305217742919922,407,1.0,2 +59907,19,1.0,2,1.254525065422058,408,1.0,2 +59908,19,1.0,2,1.4605239629745483,409,1.0,2 +59909,19,1.0,2,1.5635225772857666,410,0.0,2 +59910,19,1.0,2,1.294525146484375,411,0.0,2 +59911,19,1.0,2,2.148517608642578,412,1.0,2 +59912,19,1.0,2,2.2825241088867188,413,0.0,2 +59913,19,0.0,2,1.473523736000061,414,0.0,2 +59914,19,1.0,2,1.3875248432159424,415,0.0,2 +59915,19,1.0,2,1.8595187664031982,416,1.0,2 +59916,19,1.0,2,1.4875235557556152,417,0.0,2 +59917,19,1.0,2,1.645521640777588,418,1.0,2 +59918,19,1.0,2,1.8805185556411743,419,1.0,2 +59919,19,1.0,2,1.6055221557617188,420,0.0,2 +59920,19,1.0,2,2.2665233612060547,421,0.0,2 +59921,19,0.0,2,1.4345242977142334,422,0.0,2 +59922,19,0.0,2,1.7595200538635254,423,1.0,2 +59923,19,0.0,2,1.4085246324539185,424,1.0,2 +59924,19,0.0,2,1.3565253019332886,425,1.0,2 +59925,19,0.0,2,1.2345250844955444,426,0.0,2 +59926,19,0.0,2,1.2705250978469849,427,1.0,2 +59927,19,0.0,2,1.3045251369476318,428,1.0,2 +59928,19,0.0,2,1.3925248384475708,429,0.0,2 +59929,19,0.0,2,1.2055250406265259,430,0.0,2 +59930,19,0.0,2,1.6275217533111572,431,0.0,2 +59931,19,1.0,2,1.524523138999939,432,1.0,2 +59932,19,1.0,2,1.568522572517395,433,1.0,2 +59933,19,0.0,2,1.4245244264602661,434,0.0,2 +59934,19,1.0,2,1.6135220527648926,435,1.0,2 +59935,19,1.0,2,1.3165252208709717,436,0.0,2 +59936,19,1.0,2,1.2685251235961914,437,1.0,2 +59937,19,1.0,2,1.5355229377746582,438,1.0,2 +59938,19,1.0,2,1.5115232467651367,439,1.0,2 +59939,19,1.0,2,1.359525203704834,440,0.0,2 +59940,19,0.0,2,1.5065233707427979,441,0.0,2 +59941,19,1.0,2,1.2625250816345215,442,0.0,2 +59942,19,0.0,2,1.7465202808380127,443,1.0,2 +59943,19,0.0,2,1.3995246887207031,444,1.0,2 +59944,19,0.0,2,1.454524040222168,445,1.0,2 +59945,19,0.0,2,1.683521032333374,446,0.0,2 +59946,19,0.0,2,1.6545214653015137,447,1.0,2 +59947,19,0.0,2,1.5105233192443848,448,1.0,2 +59948,19,0.0,2,1.5925222635269165,449,1.0,2 +59949,19,0.0,2,1.1705249547958374,450,1.0,2 +59950,19,0.0,2,1.4815236330032349,451,0.0,2 +59951,19,0.0,2,1.3975247144699097,452,1.0,2 +59952,19,0.0,2,2.009516954421997,453,0.0,2 +59953,19,1.0,2,1.550522804260254,454,1.0,2 +59954,19,1.0,2,1.867518663406372,455,0.0,2 +59955,19,1.0,2,1.844519019126892,456,0.0,2 +59956,19,0.0,2,1.5855222940444946,457,1.0,2 +59957,19,0.0,2,1.2525250911712646,458,1.0,2 +59958,19,0.0,2,1.9645174741744995,459,1.0,2 +59959,19,0.0,2,1.2045249938964844,460,1.0,2 +59960,19,0.0,2,1.2315250635147095,461,0.0,2 +59961,19,0.0,2,1.6145219802856445,462,1.0,2 +59962,19,0.0,2,1.2225250005722046,463,1.0,2 +59963,19,0.0,2,1.3655251264572144,464,0.0,2 +59964,19,0.0,2,1.8015196323394775,465,0.0,2 +59965,19,0.0,2,2.0845160484313965,466,1.0,2 +59966,19,0.0,2,1.4355242252349854,467,1.0,2 +59967,19,0.0,2,1.4365242719650269,468,0.0,2 +59968,19,0.0,2,1.9385178089141846,469,1.0,2 +59969,19,0.0,2,1.3465253114700317,470,0.0,2 +59970,19,1.0,2,2.4555320739746094,471,0.0,2 +59971,19,1.0,2,1.5115232467651367,472,1.0,2 +59972,19,0.0,2,1.5665225982666016,473,1.0,2 +59973,19,0.0,2,2.147517681121826,474,0.0,2 +59974,19,1.0,2,1.5935221910476685,475,0.0,2 +59975,19,0.0,2,1.6775212287902832,476,0.0,2 +59976,19,1.0,2,1.6085220575332642,477,1.0,2 +59977,19,1.0,2,1.6045221090316772,478,1.0,2 +59978,19,0.0,2,1.2465250492095947,479,1.0,2 +59979,19,1.0,2,1.591522216796875,480,1.0,2 +59980,19,0.0,2,1.6015220880508423,481,1.0,2 +59981,19,0.0,2,1.712520718574524,482,0.0,2 +59982,19,1.0,2,1.5675225257873535,483,1.0,2 +59983,19,1.0,2,1.5235230922698975,484,0.0,2 +59984,19,0.0,2,1.363525152206421,485,0.0,2 +59985,19,0.0,2,1.4115245342254639,486,0.0,2 +59986,19,0.0,2,1.5385229587554932,487,1.0,2 +59987,19,0.0,2,1.3015252351760864,488,0.0,2 +59988,19,0.0,2,1.5575226545333862,489,0.0,2 +59989,19,1.0,2,1.9705173969268799,490,1.0,2 +59990,19,1.0,2,1.4275243282318115,491,0.0,2 +59991,19,0.0,2,2.364527702331543,492,0.0,2 +59992,19,1.0,2,1.7965196371078491,493,0.0,2 +59993,19,0.0,2,1.7115206718444824,494,0.0,2 +59994,19,1.0,2,1.502523422241211,495,0.0,2 +59995,19,0.0,2,1.3765250444412231,496,0.0,2 +59996,19,1.0,2,1.3965247869491577,497,1.0,2 +59997,19,1.0,2,1.4565240144729614,498,1.0,2 +59998,19,1.0,2,1.7865197658538818,499,0.0,2 +59999,19,0.0,2,1.193524956703186,500,0.0,2 +60000,0,1.0,0,1.9182707071304321,1,0.0,3 +60001,0,0.0,0,1.437276840209961,2,0.0,3 +60002,0,1.0,0,2.128270149230957,3,1.0,3 +60003,0,1.0,0,1.5832749605178833,4,1.0,3 +60004,0,0.0,0,1.5662752389907837,5,0.0,3 +60005,0,1.0,0,1.5402755737304688,6,1.0,3 +60006,0,1.0,0,1.6082746982574463,7,1.0,3 +60007,0,1.0,0,1.34427809715271,8,0.0,3 +60008,0,1.0,0,2.2782773971557617,9,1.0,3 +60009,0,1.0,0,1.4722764492034912,10,1.0,3 +60010,0,1.0,0,1.826271891593933,11,1.0,3 +60011,0,1.0,0,1.3792775869369507,12,1.0,3 +60012,0,1.0,0,2.0102696418762207,13,0.0,3 +60013,0,1.0,0,1.5922749042510986,14,0.0,3 +60014,0,0.0,0,1.760272741317749,15,1.0,3 +60015,0,0.0,0,1.203277826309204,16,0.0,3 +60016,0,0.0,0,1.7262731790542603,17,1.0,3 +60017,0,0.0,0,1.510275959968567,18,0.0,3 +60018,0,0.0,0,1.4492766857147217,19,0.0,3 +60019,0,0.0,0,1.273277997970581,20,0.0,3 +60020,0,1.0,0,1.8462716341018677,21,1.0,3 +60021,0,1.0,0,1.4632765054702759,22,1.0,3 +60022,0,0.0,0,1.4822763204574585,23,0.0,3 +60023,0,1.0,0,1.8942710161209106,24,1.0,3 +60024,0,1.0,0,1.52927565574646,25,1.0,3 +60025,0,1.0,0,1.88227117061615,26,1.0,3 +60026,0,1.0,0,1.7142733335494995,27,1.0,3 +60027,0,1.0,0,1.9022709131240845,28,1.0,3 +60028,0,1.0,0,1.6742738485336304,29,0.0,3 +60029,0,0.0,0,1.5432754755020142,30,0.0,3 +60030,0,1.0,0,1.9282705783843994,31,1.0,3 +60031,0,1.0,0,1.8362717628479004,32,1.0,3 +60032,0,0.0,0,1.414277195930481,33,0.0,3 +60033,0,1.0,0,1.345278024673462,34,1.0,3 +60034,0,1.0,0,1.5632752180099487,35,1.0,3 +60035,0,1.0,0,1.4452767372131348,36,1.0,3 +60036,0,1.0,0,1.411277174949646,37,1.0,3 +60037,0,1.0,0,1.5362756252288818,38,1.0,3 +60038,0,1.0,0,1.5442755222320557,39,1.0,3 +60039,0,1.0,0,1.414277195930481,40,0.0,3 +60040,0,0.0,0,1.6932735443115234,41,1.0,3 +60041,0,0.0,0,1.5702751874923706,42,0.0,3 +60042,0,0.0,0,1.7252731323242188,43,0.0,3 +60043,0,0.0,0,1.6872737407684326,44,0.0,3 +60044,0,1.0,0,1.7702726125717163,45,1.0,3 +60045,0,1.0,0,1.6262744665145874,46,1.0,3 +60046,0,1.0,0,1.4702764749526978,47,0.0,3 +60047,0,0.0,0,1.2562779188156128,48,0.0,3 +60048,0,1.0,0,1.4932761192321777,49,1.0,3 +60049,0,1.0,0,1.2952780723571777,50,1.0,3 +60050,0,1.0,0,1.6622740030288696,51,1.0,3 +60051,0,1.0,0,1.4412767887115479,52,1.0,3 +60052,0,1.0,0,1.5262757539749146,53,1.0,3 +60053,0,1.0,0,1.671273946762085,54,1.0,3 +60054,0,1.0,0,1.899271011352539,55,1.0,3 +60055,0,1.0,0,1.2662780284881592,56,1.0,3 +60056,0,1.0,0,1.5622752904891968,57,1.0,3 +60057,0,1.0,0,1.8192720413208008,58,1.0,3 +60058,0,1.0,0,1.7802724838256836,59,1.0,3 +60059,0,1.0,0,1.7452728748321533,60,1.0,3 +60060,0,0.0,0,1.2312779426574707,61,0.0,3 +60061,0,1.0,0,1.484276294708252,62,0.0,3 +60062,0,0.0,0,1.8372716903686523,63,0.0,3 +60063,0,1.0,0,1.9152708053588867,64,1.0,3 +60064,0,1.0,0,1.711273431777954,65,1.0,3 +60065,0,1.0,0,1.5392755270004272,66,1.0,3 +60066,0,1.0,0,1.5092759132385254,67,1.0,3 +60067,0,1.0,0,1.8702713251113892,68,1.0,3 +60068,0,0.0,0,1.4482767581939697,69,0.0,3 +60069,0,1.0,0,1.4452767372131348,70,1.0,3 +60070,0,1.0,0,1.5842750072479248,71,1.0,3 +60071,0,1.0,0,1.5452754497528076,72,1.0,3 +60072,0,1.0,0,1.8832712173461914,73,1.0,3 +60073,0,1.0,0,1.389277458190918,74,1.0,3 +60074,0,1.0,0,1.7082734107971191,75,0.0,3 +60075,0,0.0,0,1.7932722568511963,76,0.0,3 +60076,0,1.0,0,1.7302731275558472,77,1.0,3 +60077,0,0.0,0,1.2272778749465942,78,0.0,3 +60078,0,1.0,0,1.907270908355713,79,1.0,3 +60079,0,1.0,0,1.5152758359909058,80,1.0,3 +60080,0,1.0,0,1.7072734832763672,81,1.0,3 +60081,0,1.0,0,1.4282770156860352,82,0.0,3 +60082,0,1.0,0,1.5612752437591553,83,1.0,3 +60083,0,1.0,0,1.5132758617401123,84,0.0,3 +60084,0,1.0,0,1.7512729167938232,85,1.0,3 +60085,0,1.0,0,1.5152758359909058,86,1.0,3 +60086,0,1.0,0,1.5232757329940796,87,1.0,3 +60087,0,1.0,0,1.280277967453003,88,0.0,3 +60088,0,0.0,0,1.2892780303955078,89,0.0,3 +60089,0,1.0,0,1.6782737970352173,90,0.0,3 +60090,0,0.0,0,1.2562779188156128,91,0.0,3 +60091,0,1.0,0,1.458276629447937,92,1.0,3 +60092,0,1.0,0,2.033269166946411,93,0.0,3 +60093,0,1.0,0,1.4892761707305908,94,0.0,3 +60094,0,0.0,0,1.2292778491973877,95,0.0,3 +60095,0,1.0,0,1.2252779006958008,96,1.0,3 +60096,0,1.0,0,1.459276556968689,97,1.0,3 +60097,0,1.0,0,2.408283233642578,98,1.0,3 +60098,0,0.0,0,2.089268445968628,99,0.0,3 +60099,0,1.0,0,1.6662739515304565,100,0.0,3 +60100,0,1.0,0,1.3192781209945679,101,1.0,3 +60101,0,1.0,0,1.8842711448669434,102,0.0,3 +60102,0,0.0,0,1.50627601146698,103,0.0,3 +60103,0,0.0,0,1.6952736377716064,104,0.0,3 +60104,0,0.0,0,1.8902710676193237,105,0.0,3 +60105,0,0.0,0,1.7272732257843018,106,0.0,3 +60106,0,1.0,0,1.8792712688446045,107,1.0,3 +60107,0,1.0,0,1.458276629447937,108,1.0,3 +60108,0,1.0,0,1.4612765312194824,109,1.0,3 +60109,0,1.0,0,1.580275058746338,110,0.0,3 +60110,0,1.0,0,1.5682752132415771,111,1.0,3 +60111,0,1.0,0,2.105269193649292,112,0.0,3 +60112,0,0.0,0,1.6372742652893066,113,0.0,3 +60113,0,0.0,0,1.2542779445648193,114,0.0,3 +60114,0,0.0,0,1.3872774839401245,115,1.0,3 +60115,0,0.0,0,1.340278148651123,116,0.0,3 +60116,0,1.0,0,1.9282705783843994,117,1.0,3 +60117,0,1.0,0,1.7932722568511963,118,1.0,3 +60118,0,1.0,0,1.8432717323303223,119,1.0,3 +60119,0,1.0,0,1.9672701358795166,120,1.0,3 +60120,0,0.0,0,1.2842780351638794,121,0.0,3 +60121,0,1.0,0,1.7482728958129883,122,0.0,3 +60122,0,1.0,0,1.4982761144638062,123,0.0,3 +60123,0,0.0,0,1.7942723035812378,124,0.0,3 +60124,0,1.0,0,1.786272406578064,125,1.0,3 +60125,0,1.0,0,1.7202732563018799,126,1.0,3 +60126,0,1.0,0,1.576275110244751,127,1.0,3 +60127,0,1.0,0,1.2592779397964478,128,1.0,3 +60128,0,1.0,0,1.6052746772766113,129,1.0,3 +60129,0,1.0,0,1.6822737455368042,130,1.0,3 +60130,0,1.0,0,1.8642714023590088,131,1.0,3 +60131,0,1.0,0,1.8392717838287354,132,1.0,3 +60132,0,1.0,0,1.3532779216766357,133,1.0,3 +60133,0,1.0,0,1.5962748527526855,134,1.0,3 +60134,0,1.0,0,1.5952749252319336,135,0.0,3 +60135,0,1.0,0,1.5342756509780884,136,1.0,3 +60136,0,1.0,0,1.8662713766098022,137,1.0,3 +60137,0,1.0,0,1.2262778282165527,138,1.0,3 +60138,0,1.0,0,1.3772776126861572,139,1.0,3 +60139,0,1.0,0,2.1902732849121094,140,0.0,3 +60140,0,1.0,0,1.5632752180099487,141,1.0,3 +60141,0,1.0,0,1.484276294708252,142,1.0,3 +60142,0,1.0,0,1.851271629333496,143,1.0,3 +60143,0,1.0,0,1.8702713251113892,144,1.0,3 +60144,0,0.0,0,1.5092759132385254,145,1.0,3 +60145,0,1.0,0,1.5562753677368164,146,1.0,3 +60146,0,1.0,0,1.7142733335494995,147,1.0,3 +60147,0,1.0,0,1.7622727155685425,148,1.0,3 +60148,0,0.0,0,1.5742751359939575,149,0.0,3 +60149,0,0.0,0,1.6932735443115234,150,0.0,3 +60150,0,1.0,0,1.8282718658447266,151,1.0,3 +60151,0,1.0,0,1.503275990486145,152,1.0,3 +60152,0,1.0,0,1.856271505355835,153,1.0,3 +60153,0,0.0,0,1.6322743892669678,154,0.0,3 +60154,0,1.0,0,1.2472779750823975,155,1.0,3 +60155,0,1.0,0,1.4982761144638062,156,1.0,3 +60156,0,1.0,0,1.4732763767242432,157,1.0,3 +60157,0,1.0,0,1.4502767324447632,158,1.0,3 +60158,0,1.0,0,1.4902762174606323,159,1.0,3 +60159,0,1.0,0,1.88227117061615,160,1.0,3 +60160,0,1.0,0,1.8622714281082153,161,0.0,3 +60161,0,0.0,0,1.9582701921463013,162,0.0,3 +60162,0,0.0,0,1.3122780323028564,163,0.0,3 +60163,0,1.0,0,1.7262731790542603,164,1.0,3 +60164,0,0.0,0,2.0222692489624023,165,0.0,3 +60165,0,1.0,0,1.8242719173431396,166,1.0,3 +60166,0,1.0,0,1.874271273612976,167,1.0,3 +60167,0,1.0,0,1.6012747287750244,168,1.0,3 +60168,0,1.0,0,1.642274260520935,169,1.0,3 +60169,0,1.0,0,1.9712700843811035,170,1.0,3 +60170,0,1.0,0,1.4742764234542847,171,1.0,3 +60171,0,1.0,0,1.4522767066955566,172,1.0,3 +60172,0,0.0,0,1.5142759084701538,173,0.0,3 +60173,0,1.0,0,1.3062779903411865,174,1.0,3 +60174,0,1.0,0,1.3522779941558838,175,0.0,3 +60175,0,1.0,0,1.6052746772766113,176,1.0,3 +60176,0,1.0,0,1.455276608467102,177,1.0,3 +60177,0,1.0,0,1.5182758569717407,178,1.0,3 +60178,0,1.0,0,1.4062772989273071,179,1.0,3 +60179,0,1.0,0,1.4432767629623413,180,1.0,3 +60180,0,1.0,0,1.999269723892212,181,0.0,3 +60181,0,0.0,0,1.277277946472168,182,0.0,3 +60182,0,1.0,0,1.809272050857544,183,1.0,3 +60183,0,1.0,0,1.3482780456542969,184,1.0,3 +60184,0,1.0,0,1.6892735958099365,185,1.0,3 +60185,0,1.0,0,1.2972780466079712,186,1.0,3 +60186,0,1.0,0,1.3972773551940918,187,1.0,3 +60187,0,0.0,0,1.951270341873169,188,0.0,3 +60188,0,0.0,0,1.9192707538604736,189,0.0,3 +60189,0,1.0,0,1.7362730503082275,190,1.0,3 +60190,0,1.0,0,1.576275110244751,191,0.0,3 +60191,0,1.0,0,1.5172758102416992,192,1.0,3 +60192,0,0.0,0,1.4452767372131348,193,0.0,3 +60193,0,1.0,0,1.3872774839401245,194,0.0,3 +60194,0,1.0,0,1.4672764539718628,195,1.0,3 +60195,0,1.0,0,1.4182771444320679,196,1.0,3 +60196,0,1.0,0,1.2262778282165527,197,1.0,3 +60197,0,1.0,0,1.3982774019241333,198,1.0,3 +60198,0,1.0,0,1.5392755270004272,199,1.0,3 +60199,0,1.0,0,1.440276861190796,200,1.0,3 +60200,0,1.0,0,2.002269744873047,201,1.0,3 +60201,0,1.0,0,1.4082772731781006,202,1.0,3 +60202,0,1.0,0,1.3752776384353638,203,1.0,3 +60203,0,1.0,0,1.619274616241455,204,1.0,3 +60204,0,1.0,0,1.767272710800171,205,1.0,3 +60205,0,1.0,0,1.5352755784988403,206,1.0,3 +60206,0,1.0,0,1.3962774276733398,207,0.0,3 +60207,0,1.0,0,2.152271270751953,208,1.0,3 +60208,0,1.0,0,1.717273235321045,209,1.0,3 +60209,0,1.0,0,1.5302757024765015,210,1.0,3 +60210,0,1.0,0,1.3982774019241333,211,1.0,3 +60211,0,1.0,0,1.411277174949646,212,1.0,3 +60212,0,1.0,0,1.6132745742797852,213,0.0,3 +60213,0,1.0,0,1.7282731533050537,214,1.0,3 +60214,0,1.0,0,1.7542728185653687,215,0.0,3 +60215,0,0.0,0,1.410277247428894,216,0.0,3 +60216,0,1.0,0,1.433276891708374,217,1.0,3 +60217,0,1.0,0,2.0052695274353027,218,1.0,3 +60218,0,1.0,0,1.6002748012542725,219,0.0,3 +60219,0,0.0,0,1.3152780532836914,220,1.0,3 +60220,0,0.0,0,1.9822698831558228,221,0.0,3 +60221,0,1.0,0,1.617274522781372,222,1.0,3 +60222,0,1.0,0,1.8612713813781738,223,1.0,3 +60223,0,0.0,0,2.051269054412842,224,0.0,3 +60224,0,1.0,0,1.8132719993591309,225,0.0,3 +60225,0,1.0,0,1.80727219581604,226,1.0,3 +60226,0,1.0,0,1.6812736988067627,227,1.0,3 +60227,0,1.0,0,1.3812775611877441,228,1.0,3 +60228,0,1.0,0,1.458276629447937,229,1.0,3 +60229,0,1.0,0,1.6112747192382812,230,0.0,3 +60230,0,0.0,0,1.213277816772461,231,0.0,3 +60231,0,1.0,0,1.7482728958129883,232,0.0,3 +60232,0,0.0,0,1.948270320892334,233,0.0,3 +60233,0,0.0,0,1.4782763719558716,234,0.0,3 +60234,0,1.0,0,1.4742764234542847,235,0.0,3 +60235,0,0.0,0,1.411277174949646,236,0.0,3 +60236,0,1.0,0,1.8802711963653564,237,1.0,3 +60237,0,0.0,0,1.4192770719528198,238,0.0,3 +60238,0,1.0,0,1.7702726125717163,239,1.0,3 +60239,0,1.0,0,1.3832775354385376,240,1.0,3 +60240,0,1.0,0,1.4662765264511108,241,1.0,3 +60241,0,1.0,0,1.3392781019210815,242,1.0,3 +60242,0,0.0,0,1.878271222114563,243,0.0,3 +60243,0,1.0,0,2.106269359588623,244,0.0,3 +60244,0,1.0,0,1.9732699394226074,245,1.0,3 +60245,0,1.0,0,1.5142759084701538,246,1.0,3 +60246,0,0.0,0,1.384277582168579,247,0.0,3 +60247,0,0.0,0,1.5002760887145996,248,1.0,3 +60248,0,0.0,0,2.146271228790283,249,0.0,3 +60249,0,1.0,0,1.5302757024765015,250,1.0,3 +60250,0,1.0,0,1.7292730808258057,251,1.0,3 +60251,0,1.0,0,1.4632765054702759,252,1.0,3 +60252,0,1.0,0,1.3652777671813965,253,1.0,3 +60253,0,1.0,0,1.4652764797210693,254,1.0,3 +60254,0,1.0,0,1.5872749090194702,255,1.0,3 +60255,0,1.0,0,1.307278037071228,256,1.0,3 +60256,0,1.0,0,1.624274492263794,257,1.0,3 +60257,0,0.0,0,1.9802699089050293,258,0.0,3 +60258,0,1.0,0,1.5442755222320557,259,1.0,3 +60259,0,1.0,0,1.3212780952453613,260,1.0,3 +60260,0,1.0,0,1.6342743635177612,261,1.0,3 +60261,0,1.0,0,1.5352755784988403,262,1.0,3 +60262,0,0.0,0,1.388277530670166,263,0.0,3 +60263,0,1.0,0,1.9372704029083252,264,0.0,3 +60264,0,0.0,0,2.111269474029541,265,0.0,3 +60265,0,1.0,0,1.3652777671813965,266,1.0,3 +60266,0,1.0,0,1.5842750072479248,267,1.0,3 +60267,0,1.0,0,1.5592752695083618,268,1.0,3 +60268,0,1.0,0,1.5182758569717407,269,1.0,3 +60269,0,1.0,0,1.6302744150161743,270,1.0,3 +60270,0,1.0,0,1.4792762994766235,271,1.0,3 +60271,0,1.0,0,1.5672751665115356,272,1.0,3 +60272,0,1.0,0,1.9502702951431274,273,1.0,3 +60273,0,1.0,0,1.5302757024765015,274,1.0,3 +60274,0,1.0,0,1.4212770462036133,275,1.0,3 +60275,0,0.0,0,1.3312780857086182,276,0.0,3 +60276,0,1.0,0,1.903270959854126,277,1.0,3 +60277,0,0.0,0,1.4442768096923828,278,1.0,3 +60278,0,0.0,0,1.2712780237197876,279,0.0,3 +60279,0,1.0,0,1.3152780532836914,280,0.0,3 +60280,0,1.0,0,1.7852723598480225,281,1.0,3 +60281,0,1.0,0,1.5932748317718506,282,1.0,3 +60282,0,1.0,0,1.7082734107971191,283,1.0,3 +60283,0,1.0,0,1.218277931213379,284,1.0,3 +60284,0,1.0,0,1.80727219581604,285,1.0,3 +60285,0,0.0,0,1.9642701148986816,286,0.0,3 +60286,0,1.0,0,1.2482779026031494,287,1.0,3 +60287,0,1.0,0,1.9402704238891602,288,1.0,3 +60288,0,1.0,0,2.081268548965454,289,1.0,3 +60289,0,1.0,0,1.627274513244629,290,1.0,3 +60290,0,1.0,0,1.3912774324417114,291,1.0,3 +60291,0,1.0,0,1.437276840209961,292,1.0,3 +60292,0,0.0,0,1.5742751359939575,293,1.0,3 +60293,0,1.0,0,1.340278148651123,294,1.0,3 +60294,0,1.0,0,1.8752713203430176,295,1.0,3 +60295,0,0.0,0,1.50627601146698,296,0.0,3 +60296,0,0.0,0,1.2672779560089111,297,1.0,3 +60297,0,1.0,0,1.5352755784988403,298,1.0,3 +60298,0,0.0,0,1.2952780723571777,299,0.0,3 +60299,0,1.0,0,1.6092746257781982,300,1.0,3 +60300,0,1.0,0,1.388277530670166,301,1.0,3 +60301,0,0.0,0,1.5122759342193604,302,0.0,3 +60302,0,1.0,0,1.5642752647399902,303,1.0,3 +60303,0,1.0,0,1.410277247428894,304,1.0,3 +60304,0,1.0,0,1.4202771186828613,305,1.0,3 +60305,0,1.0,0,1.5602753162384033,306,1.0,3 +60306,0,0.0,0,1.363277792930603,307,1.0,3 +60307,0,1.0,0,1.366277813911438,308,0.0,3 +60308,0,0.0,0,1.7432730197906494,309,0.0,3 +60309,0,1.0,0,1.999269723892212,310,1.0,3 +60310,0,1.0,0,1.4212770462036133,311,1.0,3 +60311,0,1.0,0,1.6032748222351074,312,1.0,3 +60312,0,0.0,0,1.4062772989273071,313,0.0,3 +60313,0,1.0,0,1.6112747192382812,314,1.0,3 +60314,0,1.0,0,1.502276062965393,315,1.0,3 +60315,0,1.0,0,1.7142733335494995,316,1.0,3 +60316,0,1.0,0,1.2782779932022095,317,1.0,3 +60317,0,1.0,0,1.9402704238891602,318,1.0,3 +60318,0,1.0,0,1.7772724628448486,319,1.0,3 +60319,0,1.0,0,1.3572778701782227,320,0.0,3 +60320,0,1.0,0,2.078268527984619,321,1.0,3 +60321,0,1.0,0,1.433276891708374,322,1.0,3 +60322,0,1.0,0,1.623274564743042,323,1.0,3 +60323,0,1.0,0,1.805272102355957,324,1.0,3 +60324,0,1.0,0,1.4202771186828613,325,1.0,3 +60325,0,1.0,0,1.4462767839431763,326,1.0,3 +60326,0,1.0,0,1.4692764282226562,327,1.0,3 +60327,0,1.0,0,1.3602778911590576,328,1.0,3 +60328,0,1.0,0,1.8832712173461914,329,1.0,3 +60329,0,1.0,0,1.5892748832702637,330,1.0,3 +60330,0,1.0,0,1.547275424003601,331,0.0,3 +60331,0,0.0,0,1.239277958869934,332,0.0,3 +60332,0,1.0,0,2.119269847869873,333,1.0,3 +60333,0,1.0,0,1.2962779998779297,334,0.0,3 +60334,0,0.0,0,1.6282744407653809,335,0.0,3 +60335,0,0.0,0,1.6772737503051758,336,0.0,3 +60336,0,0.0,0,1.8382717370986938,337,0.0,3 +60337,0,0.0,0,1.569275140762329,338,0.0,3 +60338,0,1.0,0,1.4222770929336548,339,0.0,3 +60339,0,0.0,0,1.6792738437652588,340,0.0,3 +60340,0,0.0,0,1.6042747497558594,341,0.0,3 +60341,0,0.0,0,1.341278076171875,342,0.0,3 +60342,0,1.0,0,1.8222719430923462,343,0.0,3 +60343,0,1.0,0,2.2142744064331055,344,1.0,3 +60344,0,1.0,0,1.499276041984558,345,1.0,3 +60345,0,1.0,0,1.6622740030288696,346,1.0,3 +60346,0,1.0,0,1.280277967453003,347,1.0,3 +60347,0,0.0,0,1.9572701454162598,348,0.0,3 +60348,0,0.0,0,1.7042734622955322,349,0.0,3 +60349,0,1.0,0,1.384277582168579,350,1.0,3 +60350,0,1.0,0,1.481276273727417,351,1.0,3 +60351,0,1.0,0,1.4652764797210693,352,1.0,3 +60352,0,1.0,0,1.4652764797210693,353,1.0,3 +60353,0,1.0,0,1.4502767324447632,354,1.0,3 +60354,0,0.0,0,1.9132707118988037,355,0.0,3 +60355,0,1.0,0,1.407277226448059,356,1.0,3 +60356,0,1.0,0,2.2592763900756836,357,1.0,3 +60357,0,1.0,0,1.2602779865264893,358,1.0,3 +60358,0,0.0,0,1.4442768096923828,359,0.0,3 +60359,0,1.0,0,1.6852736473083496,360,1.0,3 +60360,0,1.0,0,1.4032772779464722,361,1.0,3 +60361,0,1.0,0,1.6052746772766113,362,1.0,3 +60362,0,0.0,0,1.2642779350280762,363,0.0,3 +60363,0,1.0,0,1.5152758359909058,364,1.0,3 +60364,0,1.0,0,1.279278039932251,365,0.0,3 +60365,0,0.0,0,1.33827805519104,366,0.0,3 +60366,0,1.0,0,1.5452754497528076,367,0.0,3 +60367,0,0.0,0,1.665273904800415,368,0.0,3 +60368,0,1.0,0,1.5482754707336426,369,1.0,3 +60369,0,1.0,0,1.4532766342163086,370,1.0,3 +60370,0,1.0,0,1.5922749042510986,371,1.0,3 +60371,0,0.0,0,2.4482851028442383,372,0.0,3 +60372,0,1.0,0,1.388277530670166,373,1.0,3 +60373,0,1.0,0,1.4902762174606323,374,1.0,3 +60374,0,1.0,0,1.948270320892334,375,1.0,3 +60375,0,1.0,0,1.2452778816223145,376,0.0,3 +60376,0,1.0,0,1.8732712268829346,377,1.0,3 +60377,0,1.0,0,1.6892735958099365,378,1.0,3 +60378,0,1.0,0,1.2522779703140259,379,1.0,3 +60379,0,1.0,0,1.304278016090393,380,1.0,3 +60380,0,1.0,0,1.436276912689209,381,1.0,3 +60381,0,1.0,0,1.8432717323303223,382,1.0,3 +60382,0,0.0,0,1.2452778816223145,383,0.0,3 +60383,0,1.0,0,1.4002773761749268,384,1.0,3 +60384,0,1.0,0,1.4432767629623413,385,0.0,3 +60385,0,1.0,0,2.2322750091552734,386,1.0,3 +60386,0,0.0,0,1.8862711191177368,387,0.0,3 +60387,0,0.0,0,1.4442768096923828,388,1.0,3 +60388,0,1.0,0,1.3642778396606445,389,1.0,3 +60389,0,1.0,0,1.7062734365463257,390,1.0,3 +60390,0,1.0,0,1.6312744617462158,391,1.0,3 +60391,0,1.0,0,1.6322743892669678,392,1.0,3 +60392,0,1.0,0,2.085268497467041,393,1.0,3 +60393,0,0.0,0,2.2042737007141113,394,1.0,3 +60394,0,0.0,0,1.4872761964797974,395,0.0,3 +60395,0,1.0,0,1.4752763509750366,396,1.0,3 +60396,0,1.0,0,1.525275707244873,397,1.0,3 +60397,0,1.0,0,1.742272973060608,398,0.0,3 +60398,0,1.0,0,1.502276062965393,399,1.0,3 +60399,0,1.0,0,1.598274827003479,400,1.0,3 +60400,0,1.0,0,1.5822750329971313,401,1.0,3 +60401,0,1.0,0,1.4232770204544067,402,1.0,3 +60402,0,1.0,0,1.627274513244629,403,0.0,3 +60403,0,0.0,0,1.3872774839401245,404,0.0,3 +60404,0,1.0,0,1.484276294708252,405,1.0,3 +60405,0,1.0,0,1.8212718963623047,406,1.0,3 +60406,0,1.0,0,1.834271788597107,407,1.0,3 +60407,0,1.0,0,1.3942774534225464,408,1.0,3 +60408,0,1.0,0,1.7042734622955322,409,1.0,3 +60409,0,1.0,0,1.3982774019241333,410,1.0,3 +60410,0,1.0,0,1.4752763509750366,411,1.0,3 +60411,0,0.0,0,1.5872749090194702,412,1.0,3 +60412,0,1.0,0,2.001269578933716,413,1.0,3 +60413,0,0.0,0,1.7082734107971191,414,0.0,3 +60414,0,1.0,0,1.8252718448638916,415,0.0,3 +60415,0,0.0,0,1.5852749347686768,416,1.0,3 +60416,0,0.0,0,1.485276222229004,417,1.0,3 +60417,0,0.0,0,1.2272778749465942,418,1.0,3 +60418,0,0.0,0,1.808272123336792,419,0.0,3 +60419,0,0.0,0,1.8792712688446045,420,0.0,3 +60420,0,1.0,0,1.3432780504226685,421,1.0,3 +60421,0,0.0,0,1.277277946472168,422,1.0,3 +60422,0,0.0,0,1.3002780675888062,423,0.0,3 +60423,0,0.0,0,2.133270502090454,424,1.0,3 +60424,0,0.0,0,1.5652751922607422,425,0.0,3 +60425,0,0.0,0,1.8482716083526611,426,0.0,3 +60426,0,1.0,0,1.8892710208892822,427,0.0,3 +60427,0,0.0,0,1.7702726125717163,428,0.0,3 +60428,0,0.0,0,1.3952773809432983,429,1.0,3 +60429,0,0.0,0,1.2292778491973877,430,0.0,3 +60430,0,1.0,0,1.2872780561447144,431,1.0,3 +60431,0,1.0,0,1.4272769689559937,432,1.0,3 +60432,0,1.0,0,1.4832762479782104,433,1.0,3 +60433,0,1.0,0,2.004269599914551,434,1.0,3 +60434,0,1.0,0,1.3482780456542969,435,1.0,3 +60435,0,1.0,0,1.4882762432098389,436,1.0,3 +60436,0,1.0,0,1.510275959968567,437,1.0,3 +60437,0,1.0,0,1.6612739562988281,438,1.0,3 +60438,0,1.0,0,2.0132694244384766,439,1.0,3 +60439,0,1.0,0,1.598274827003479,440,0.0,3 +60440,0,0.0,0,1.4092772006988525,441,1.0,3 +60441,0,0.0,0,1.6062747240066528,442,1.0,3 +60442,0,0.0,0,1.3422781229019165,443,0.0,3 +60443,0,0.0,0,1.2592779397964478,444,0.0,3 +60444,0,1.0,0,1.9632701873779297,445,1.0,3 +60445,0,1.0,0,1.8662713766098022,446,1.0,3 +60446,0,1.0,0,1.9632701873779297,447,1.0,3 +60447,0,1.0,0,1.3282780647277832,448,1.0,3 +60448,0,1.0,0,1.811272144317627,449,1.0,3 +60449,0,1.0,0,1.627274513244629,450,1.0,3 +60450,0,1.0,0,1.966270089149475,451,0.0,3 +60451,0,1.0,0,1.4512766599655151,452,1.0,3 +60452,0,1.0,0,1.4912761449813843,453,1.0,3 +60453,0,1.0,0,1.340278148651123,454,0.0,3 +60454,0,1.0,0,1.4982761144638062,455,1.0,3 +60455,0,1.0,0,1.8252718448638916,456,1.0,3 +60456,0,1.0,0,1.2992780208587646,457,1.0,3 +60457,0,1.0,0,1.5912749767303467,458,1.0,3 +60458,0,1.0,0,1.6522741317749023,459,1.0,3 +60459,0,1.0,0,1.3712776899337769,460,0.0,3 +60460,0,0.0,0,1.7252731323242188,461,0.0,3 +60461,0,1.0,0,1.7942723035812378,462,1.0,3 +60462,0,1.0,0,1.2222778797149658,463,1.0,3 +60463,0,1.0,0,1.7532727718353271,464,1.0,3 +60464,0,1.0,0,1.7022734880447388,465,0.0,3 +60465,0,1.0,0,1.5622752904891968,466,1.0,3 +60466,0,0.0,0,1.3532779216766357,467,0.0,3 +60467,0,1.0,0,1.5582753419876099,468,0.0,3 +60468,0,0.0,0,1.7492728233337402,469,1.0,3 +60469,0,0.0,0,1.9582701921463013,470,0.0,3 +60470,0,1.0,0,1.6962735652923584,471,1.0,3 +60471,0,0.0,0,1.5852749347686768,472,0.0,3 +60472,0,1.0,0,2.0092694759368896,473,0.0,3 +60473,0,1.0,0,1.991269826889038,474,1.0,3 +60474,0,0.0,0,2.5102882385253906,475,0.0,3 +60475,0,1.0,0,2.395282745361328,476,1.0,3 +60476,0,1.0,0,1.4242770671844482,477,0.0,3 +60477,0,1.0,0,1.4092772006988525,478,1.0,3 +60478,0,1.0,0,1.7462729215621948,479,1.0,3 +60479,0,1.0,0,1.3552778959274292,480,1.0,3 +60480,0,1.0,0,1.9602701663970947,481,1.0,3 +60481,0,1.0,0,1.6592741012573242,482,1.0,3 +60482,0,1.0,0,1.7402729988098145,483,1.0,3 +60483,0,1.0,0,1.5092759132385254,484,0.0,3 +60484,0,0.0,0,1.6432743072509766,485,0.0,3 +60485,0,0.0,0,1.2582778930664062,486,1.0,3 +60486,0,0.0,0,1.3352781534194946,487,0.0,3 +60487,0,0.0,0,1.2642779350280762,488,0.0,3 +60488,0,0.0,0,1.2992780208587646,489,0.0,3 +60489,0,1.0,0,1.4262770414352417,490,0.0,3 +60490,0,1.0,0,1.455276608467102,491,1.0,3 +60491,0,1.0,0,1.2982780933380127,492,1.0,3 +60492,0,1.0,0,1.2652779817581177,493,1.0,3 +60493,0,1.0,0,1.3792775869369507,494,1.0,3 +60494,0,1.0,0,1.3462780714035034,495,0.0,3 +60495,0,0.0,0,2.042269229888916,496,0.0,3 +60496,0,0.0,0,1.4782763719558716,497,0.0,3 +60497,0,0.0,0,2.114269733428955,498,1.0,3 +60498,0,0.0,0,1.4942761659622192,499,0.0,3 +60499,0,0.0,0,1.5672751665115356,500,0.0,3 +60500,0,1.0,1,1.8662713766098022,1,1.0,3 +60501,0,0.0,1,1.410277247428894,2,1.0,3 +60502,0,0.0,1,1.2632780075073242,3,0.0,3 +60503,0,0.0,1,1.2112778425216675,4,1.0,3 +60504,0,1.0,1,1.3932774066925049,5,1.0,3 +60505,0,1.0,1,1.3332780599594116,6,1.0,3 +60506,0,1.0,1,1.3692777156829834,7,1.0,3 +60507,0,0.0,1,1.5612752437591553,8,0.0,3 +60508,0,1.0,1,1.941270351409912,9,1.0,3 +60509,0,1.0,1,1.760272741317749,10,1.0,3 +60510,0,1.0,1,1.576275110244751,11,0.0,3 +60511,0,1.0,1,1.2682780027389526,12,0.0,3 +60512,0,0.0,1,2.5152883529663086,13,0.0,3 +60513,0,1.0,1,1.4682765007019043,14,0.0,3 +60514,0,0.0,1,1.8892710208892822,15,1.0,3 +60515,0,0.0,1,1.5742751359939575,16,0.0,3 +60516,0,1.0,1,2.120269775390625,17,1.0,3 +60517,0,1.0,1,1.7322731018066406,18,0.0,3 +60518,0,0.0,1,1.2482779026031494,19,0.0,3 +60519,0,0.0,1,1.5812749862670898,20,0.0,3 +60520,0,1.0,1,1.9542702436447144,21,0.0,3 +60521,0,0.0,1,1.7922723293304443,22,0.0,3 +60522,0,0.0,1,1.6452741622924805,23,0.0,3 +60523,0,1.0,1,1.8912711143493652,24,0.0,3 +60524,0,0.0,1,1.8062721490859985,25,0.0,3 +60525,0,0.0,1,1.7362730503082275,26,1.0,3 +60526,0,0.0,1,1.2642779350280762,27,0.0,3 +60527,0,1.0,1,1.3982774019241333,28,1.0,3 +60528,0,1.0,1,1.4912761449813843,29,1.0,3 +60529,0,1.0,1,1.4882762432098389,30,0.0,3 +60530,0,1.0,1,1.3762776851654053,31,1.0,3 +60531,0,1.0,1,1.966270089149475,32,1.0,3 +60532,0,1.0,1,1.5652751922607422,33,1.0,3 +60533,0,1.0,1,1.5232757329940796,34,1.0,3 +60534,0,1.0,1,1.4482767581939697,35,1.0,3 +60535,0,1.0,1,1.3232780694961548,36,1.0,3 +60536,0,0.0,1,1.366277813911438,37,1.0,3 +60537,0,1.0,1,1.857271432876587,38,1.0,3 +60538,0,1.0,1,2.033269166946411,39,1.0,3 +60539,0,1.0,1,1.4712764024734497,40,1.0,3 +60540,0,0.0,1,1.6752738952636719,41,1.0,3 +60541,0,1.0,1,1.279278039932251,42,1.0,3 +60542,0,1.0,1,1.8182719945907593,43,1.0,3 +60543,0,0.0,1,1.2522779703140259,44,1.0,3 +60544,0,0.0,1,1.5382755994796753,45,0.0,3 +60545,0,1.0,1,1.4602766036987305,46,1.0,3 +60546,0,1.0,1,1.7792725563049316,47,1.0,3 +60547,0,1.0,1,1.5912749767303467,48,1.0,3 +60548,0,1.0,1,1.5182758569717407,49,1.0,3 +60549,0,1.0,1,2.087268590927124,50,1.0,3 +60550,0,1.0,1,1.719273328781128,51,1.0,3 +60551,0,1.0,1,1.9242706298828125,52,0.0,3 +60552,0,0.0,1,1.7012734413146973,53,0.0,3 +60553,0,1.0,1,1.6082746982574463,54,1.0,3 +60554,0,1.0,1,1.717273235321045,55,0.0,3 +60555,0,1.0,1,1.9142707586288452,56,1.0,3 +60556,0,1.0,1,1.502276062965393,57,1.0,3 +60557,0,0.0,1,1.857271432876587,58,0.0,3 +60558,0,1.0,1,1.4782763719558716,59,1.0,3 +60559,0,1.0,1,1.2872780561447144,60,1.0,3 +60560,0,1.0,1,1.273277997970581,61,1.0,3 +60561,0,1.0,1,1.3152780532836914,62,1.0,3 +60562,0,1.0,1,1.52927565574646,63,1.0,3 +60563,0,1.0,1,1.274277925491333,64,0.0,3 +60564,0,0.0,1,1.3592778444290161,65,1.0,3 +60565,0,0.0,1,1.4422768354415894,66,0.0,3 +60566,0,1.0,1,1.7052733898162842,67,1.0,3 +60567,0,1.0,1,1.6162745952606201,68,1.0,3 +60568,0,1.0,1,1.6812736988067627,69,0.0,3 +60569,0,0.0,1,1.3942774534225464,70,0.0,3 +60570,0,0.0,1,1.2222778797149658,71,0.0,3 +60571,0,0.0,1,1.9152708053588867,72,0.0,3 +60572,0,1.0,1,1.3962774276733398,73,1.0,3 +60573,0,1.0,1,1.4832762479782104,74,1.0,3 +60574,0,1.0,1,1.280277967453003,75,1.0,3 +60575,0,1.0,1,1.4062772989273071,76,0.0,3 +60576,0,0.0,1,1.6762738227844238,77,1.0,3 +60577,0,1.0,1,1.555275321006775,78,1.0,3 +60578,0,1.0,1,1.5392755270004272,79,0.0,3 +60579,0,0.0,1,1.4212770462036133,80,0.0,3 +60580,0,1.0,1,1.5822750329971313,81,1.0,3 +60581,0,0.0,1,1.5992748737335205,82,0.0,3 +60582,0,1.0,1,1.3282780647277832,83,0.0,3 +60583,0,1.0,1,1.667273998260498,84,1.0,3 +60584,0,1.0,1,1.4512766599655151,85,0.0,3 +60585,0,0.0,1,1.5462754964828491,86,0.0,3 +60586,0,1.0,1,1.279278039932251,87,1.0,3 +60587,0,0.0,1,1.2522779703140259,88,0.0,3 +60588,0,0.0,1,1.274277925491333,89,1.0,3 +60589,0,0.0,1,2.086268424987793,90,1.0,3 +60590,0,0.0,1,2.122270107269287,91,1.0,3 +60591,0,1.0,1,1.8442716598510742,92,0.0,3 +60592,0,0.0,1,1.2322778701782227,93,1.0,3 +60593,0,0.0,1,1.4752763509750366,94,0.0,3 +60594,0,0.0,1,1.6112747192382812,95,0.0,3 +60595,0,0.0,1,2.03826904296875,96,0.0,3 +60596,0,0.0,1,2.39628267288208,97,0.0,3 +60597,0,0.0,1,2.1912732124328613,98,1.0,3 +60598,0,1.0,1,1.5232757329940796,99,1.0,3 +60599,0,0.0,1,1.6592741012573242,100,1.0,3 +60600,0,0.0,1,1.3972773551940918,101,1.0,3 +60601,0,0.0,1,1.3202780485153198,102,0.0,3 +60602,0,0.0,1,1.9822698831558228,103,0.0,3 +60603,0,1.0,1,1.6872737407684326,104,0.0,3 +60604,0,0.0,1,1.642274260520935,105,0.0,3 +60605,0,1.0,1,1.2312779426574707,106,1.0,3 +60606,0,1.0,1,1.3912774324417114,107,1.0,3 +60607,0,1.0,1,1.279278039932251,108,0.0,3 +60608,0,1.0,1,1.384277582168579,109,1.0,3 +60609,0,1.0,1,1.36727774143219,110,1.0,3 +60610,0,0.0,1,1.625274419784546,111,1.0,3 +60611,0,1.0,1,1.4702764749526978,112,1.0,3 +60612,0,1.0,1,1.66827392578125,113,1.0,3 +60613,0,0.0,1,1.249277949333191,114,0.0,3 +60614,0,1.0,1,1.45427668094635,115,0.0,3 +60615,0,1.0,1,1.2842780351638794,116,1.0,3 +60616,0,1.0,1,1.782272458076477,117,1.0,3 +60617,0,1.0,1,1.4222770929336548,118,0.0,3 +60618,0,0.0,1,1.4182771444320679,119,0.0,3 +60619,0,0.0,1,1.5882749557495117,120,0.0,3 +60620,0,1.0,1,1.4892761707305908,121,1.0,3 +60621,0,1.0,1,1.3562779426574707,122,0.0,3 +60622,0,1.0,1,2.128270149230957,123,0.0,3 +60623,0,0.0,1,2.2992782592773438,124,0.0,3 +60624,0,0.0,1,1.826271891593933,125,0.0,3 +60625,0,1.0,1,1.4282770156860352,126,1.0,3 +60626,0,0.0,1,1.6182745695114136,127,0.0,3 +60627,0,1.0,1,1.6102746725082397,128,1.0,3 +60628,0,1.0,1,1.80727219581604,129,0.0,3 +60629,0,1.0,1,1.5092759132385254,130,0.0,3 +60630,0,0.0,1,1.4562766551971436,131,0.0,3 +60631,0,1.0,1,1.3572778701782227,132,0.0,3 +60632,0,0.0,1,1.7082734107971191,133,0.0,3 +60633,0,0.0,1,2.1982736587524414,134,0.0,3 +60634,0,1.0,1,1.9552702903747559,135,1.0,3 +60635,0,0.0,1,1.3122780323028564,136,0.0,3 +60636,0,1.0,1,1.5272756814956665,137,1.0,3 +60637,0,0.0,1,1.4472767114639282,138,0.0,3 +60638,0,1.0,1,1.5742751359939575,139,1.0,3 +60639,0,1.0,1,1.4652764797210693,140,1.0,3 +60640,0,1.0,1,1.3802776336669922,141,0.0,3 +60641,0,1.0,1,1.6472742557525635,142,1.0,3 +60642,0,1.0,1,1.4602766036987305,143,1.0,3 +60643,0,1.0,1,1.2752779722213745,144,1.0,3 +60644,0,1.0,1,1.4572765827178955,145,0.0,3 +60645,0,1.0,1,2.0642688274383545,146,1.0,3 +60646,0,1.0,1,2.2352752685546875,147,1.0,3 +60647,0,1.0,1,1.310278058052063,148,0.0,3 +60648,0,0.0,1,1.8452715873718262,149,0.0,3 +60649,0,0.0,1,1.3002780675888062,150,0.0,3 +60650,0,0.0,1,1.7202732563018799,151,0.0,3 +60651,0,0.0,1,1.2982780933380127,152,0.0,3 +60652,0,0.0,1,1.5782750844955444,153,0.0,3 +60653,0,1.0,1,1.3292781114578247,154,0.0,3 +60654,0,1.0,1,1.7022734880447388,155,0.0,3 +60655,0,1.0,1,2.1982736587524414,156,1.0,3 +60656,0,1.0,1,1.270277976989746,157,1.0,3 +60657,0,1.0,1,1.6832737922668457,158,1.0,3 +60658,0,1.0,1,1.7232732772827148,159,1.0,3 +60659,0,0.0,1,1.8682713508605957,160,0.0,3 +60660,0,1.0,1,2.1702723503112793,161,0.0,3 +60661,0,0.0,1,1.3582779169082642,162,0.0,3 +60662,0,1.0,1,1.5462754964828491,163,0.0,3 +60663,0,0.0,1,2.0542688369750977,164,0.0,3 +60664,0,1.0,1,2.0162694454193115,165,0.0,3 +60665,0,1.0,1,1.2022778987884521,166,1.0,3 +60666,0,0.0,1,1.4962761402130127,167,1.0,3 +60667,0,0.0,1,1.2692779302597046,168,0.0,3 +60668,0,1.0,1,1.8412716388702393,169,1.0,3 +60669,0,1.0,1,1.8882710933685303,170,1.0,3 +60670,0,1.0,1,1.851271629333496,171,1.0,3 +60671,0,1.0,1,1.974269986152649,172,1.0,3 +60672,0,1.0,1,1.3592778444290161,173,1.0,3 +60673,0,0.0,1,1.9502702951431274,174,0.0,3 +60674,0,1.0,1,1.4832762479782104,175,1.0,3 +60675,0,1.0,1,1.3952773809432983,176,1.0,3 +60676,0,1.0,1,1.5862749814987183,177,1.0,3 +60677,0,1.0,1,1.4782763719558716,178,0.0,3 +60678,0,0.0,1,1.667273998260498,179,1.0,3 +60679,0,0.0,1,1.3062779903411865,180,0.0,3 +60680,0,0.0,1,1.5192757844924927,181,0.0,3 +60681,0,0.0,1,1.8442716598510742,182,0.0,3 +60682,0,1.0,1,2.089268445968628,183,1.0,3 +60683,0,1.0,1,1.6432743072509766,184,1.0,3 +60684,0,1.0,1,1.6352744102478027,185,1.0,3 +60685,0,1.0,1,1.3532779216766357,186,0.0,3 +60686,0,0.0,1,1.4412767887115479,187,1.0,3 +60687,0,0.0,1,1.6962735652923584,188,0.0,3 +60688,0,0.0,1,1.459276556968689,189,0.0,3 +60689,0,1.0,1,2.0612688064575195,190,1.0,3 +60690,0,1.0,1,1.3282780647277832,191,1.0,3 +60691,0,1.0,1,1.2612779140472412,192,0.0,3 +60692,0,0.0,1,1.6082746982574463,193,0.0,3 +60693,0,0.0,1,1.502276062965393,194,0.0,3 +60694,0,1.0,1,2.1782727241516113,195,1.0,3 +60695,0,1.0,1,1.573275089263916,196,1.0,3 +60696,0,1.0,1,1.4422768354415894,197,1.0,3 +60697,0,1.0,1,1.6882736682891846,198,0.0,3 +60698,0,0.0,1,1.313278079032898,199,0.0,3 +60699,0,0.0,1,1.7662726640701294,200,0.0,3 +60700,0,0.0,1,1.8102720975875854,201,0.0,3 +60701,0,1.0,1,1.6352744102478027,202,1.0,3 +60702,0,1.0,1,1.407277226448059,203,1.0,3 +60703,0,1.0,1,1.3692777156829834,204,1.0,3 +60704,0,1.0,1,1.9602701663970947,205,0.0,3 +60705,0,0.0,1,1.4612765312194824,206,0.0,3 +60706,0,0.0,1,1.7722725868225098,207,0.0,3 +60707,0,0.0,1,2.371281623840332,208,1.0,3 +60708,0,0.0,1,1.3472779989242554,209,0.0,3 +60709,0,0.0,1,1.4732763767242432,210,0.0,3 +60710,0,0.0,1,1.3602778911590576,211,0.0,3 +60711,0,1.0,1,1.8982709646224976,212,1.0,3 +60712,0,1.0,1,1.7402729988098145,213,1.0,3 +60713,0,1.0,1,1.3792775869369507,214,0.0,3 +60714,0,0.0,1,1.310278058052063,215,0.0,3 +60715,0,1.0,1,1.3552778959274292,216,1.0,3 +60716,0,0.0,1,1.974269986152649,217,1.0,3 +60717,0,1.0,1,1.237277865409851,218,1.0,3 +60718,0,0.0,1,1.313278079032898,219,0.0,3 +60719,0,1.0,1,1.6002748012542725,220,1.0,3 +60720,0,1.0,1,1.555275321006775,221,1.0,3 +60721,0,1.0,1,1.3532779216766357,222,1.0,3 +60722,0,1.0,1,1.5912749767303467,223,1.0,3 +60723,0,1.0,1,1.4192770719528198,224,1.0,3 +60724,0,1.0,1,1.8102720975875854,225,1.0,3 +60725,0,1.0,1,1.6922736167907715,226,1.0,3 +60726,0,0.0,1,1.3432780504226685,227,1.0,3 +60727,0,1.0,1,1.7102733850479126,228,1.0,3 +60728,0,0.0,1,1.6892735958099365,229,1.0,3 +60729,0,0.0,1,1.7252731323242188,230,0.0,3 +60730,0,1.0,1,1.8282718658447266,231,0.0,3 +60731,0,1.0,1,1.34427809715271,232,1.0,3 +60732,0,0.0,1,1.4082772731781006,233,1.0,3 +60733,0,0.0,1,1.4732763767242432,234,0.0,3 +60734,0,1.0,1,1.5162758827209473,235,1.0,3 +60735,0,1.0,1,1.7472729682922363,236,1.0,3 +60736,0,0.0,1,1.620274543762207,237,0.0,3 +60737,0,0.0,1,1.580275058746338,238,0.0,3 +60738,0,1.0,1,1.5152758359909058,239,0.0,3 +60739,0,1.0,1,1.502276062965393,240,1.0,3 +60740,0,1.0,1,1.9432704448699951,241,1.0,3 +60741,0,1.0,1,1.4442768096923828,242,1.0,3 +60742,0,1.0,1,1.4122772216796875,243,1.0,3 +60743,0,1.0,1,1.6402742862701416,244,1.0,3 +60744,0,1.0,1,1.4632765054702759,245,0.0,3 +60745,0,0.0,1,1.9272706508636475,246,0.0,3 +60746,0,0.0,1,1.2892780303955078,247,0.0,3 +60747,0,1.0,1,1.4462767839431763,248,1.0,3 +60748,0,1.0,1,1.3202780485153198,249,0.0,3 +60749,0,0.0,1,1.8152720928192139,250,1.0,3 +60750,0,0.0,1,1.5082759857177734,251,1.0,3 +60751,0,0.0,1,1.5092759132385254,252,0.0,3 +60752,0,1.0,1,1.672273874282837,253,0.0,3 +60753,0,1.0,1,1.3152780532836914,254,0.0,3 +60754,0,0.0,1,1.3222780227661133,255,1.0,3 +60755,0,0.0,1,1.2862780094146729,256,0.0,3 +60756,0,1.0,1,1.8882710933685303,257,1.0,3 +60757,0,1.0,1,1.6332743167877197,258,1.0,3 +60758,0,1.0,1,1.3352781534194946,259,1.0,3 +60759,0,1.0,1,1.2282779216766357,260,0.0,3 +60760,0,0.0,1,1.8672714233398438,261,0.0,3 +60761,0,0.0,1,1.8762712478637695,262,1.0,3 +60762,0,0.0,1,1.366277813911438,263,1.0,3 +60763,0,0.0,1,1.6102746725082397,264,0.0,3 +60764,0,1.0,1,1.2262778282165527,265,0.0,3 +60765,0,1.0,1,1.598274827003479,266,1.0,3 +60766,0,1.0,1,1.274277925491333,267,0.0,3 +60767,0,0.0,1,1.4052772521972656,268,0.0,3 +60768,0,1.0,1,1.9722700119018555,269,1.0,3 +60769,0,1.0,1,1.4912761449813843,270,0.0,3 +60770,0,0.0,1,1.6282744407653809,271,0.0,3 +60771,0,1.0,1,1.6472742557525635,272,1.0,3 +60772,0,1.0,1,1.3722777366638184,273,0.0,3 +60773,0,0.0,1,1.3692777156829834,274,0.0,3 +60774,0,0.0,1,1.3212780952453613,275,1.0,3 +60775,0,0.0,1,1.437276840209961,276,0.0,3 +60776,0,0.0,1,1.2302778959274292,277,0.0,3 +60777,0,1.0,1,1.9122707843780518,278,1.0,3 +60778,0,1.0,1,2.0702686309814453,279,1.0,3 +60779,0,1.0,1,1.341278076171875,280,1.0,3 +60780,0,0.0,1,1.6532740592956543,281,0.0,3 +60781,0,1.0,1,1.2562779188156128,282,1.0,3 +60782,0,1.0,1,1.8632714748382568,283,1.0,3 +60783,0,0.0,1,2.089268445968628,284,1.0,3 +60784,0,0.0,1,2.0762686729431152,285,0.0,3 +60785,0,1.0,1,1.9462703466415405,286,1.0,3 +60786,0,0.0,1,1.45427668094635,287,1.0,3 +60787,0,0.0,1,1.88227117061615,288,0.0,3 +60788,0,0.0,1,1.237277865409851,289,1.0,3 +60789,0,1.0,1,1.2422778606414795,290,1.0,3 +60790,0,0.0,1,1.4872761964797974,291,1.0,3 +60791,0,0.0,1,1.4662765264511108,292,0.0,3 +60792,0,1.0,1,1.274277925491333,293,1.0,3 +60793,0,1.0,1,1.3002780675888062,294,1.0,3 +60794,0,1.0,1,2.2072739601135254,295,1.0,3 +60795,0,1.0,1,1.362277865409851,296,1.0,3 +60796,0,0.0,1,1.7912724018096924,297,0.0,3 +60797,0,1.0,1,1.502276062965393,298,1.0,3 +60798,0,1.0,1,1.5172758102416992,299,1.0,3 +60799,0,1.0,1,1.5752750635147095,300,0.0,3 +60800,0,1.0,1,1.410277247428894,301,1.0,3 +60801,0,0.0,1,1.4672764539718628,302,0.0,3 +60802,0,1.0,1,1.7762725353240967,303,1.0,3 +60803,0,1.0,1,1.3142781257629395,304,1.0,3 +60804,0,1.0,1,1.47727632522583,305,0.0,3 +60805,0,0.0,1,1.7462729215621948,306,0.0,3 +60806,0,0.0,1,1.2782779932022095,307,0.0,3 +60807,0,1.0,1,1.6102746725082397,308,1.0,3 +60808,0,1.0,1,1.5852749347686768,309,0.0,3 +60809,0,1.0,1,1.5012760162353516,310,1.0,3 +60810,0,1.0,1,2.2492759227752686,311,0.0,3 +60811,0,1.0,1,2.0232694149017334,312,1.0,3 +60812,0,1.0,1,1.5782750844955444,313,1.0,3 +60813,0,1.0,1,1.2992780208587646,314,1.0,3 +60814,0,1.0,1,1.2552779912948608,315,1.0,3 +60815,0,1.0,1,1.502276062965393,316,1.0,3 +60816,0,1.0,1,1.6552741527557373,317,0.0,3 +60817,0,0.0,1,1.7372729778289795,318,0.0,3 +60818,0,0.0,1,1.218277931213379,319,1.0,3 +60819,0,0.0,1,1.4452767372131348,320,0.0,3 +60820,0,0.0,1,1.3752776384353638,321,0.0,3 +60821,0,1.0,1,1.4422768354415894,322,1.0,3 +60822,0,1.0,1,1.8272719383239746,323,0.0,3 +60823,0,1.0,1,2.048269033432007,324,1.0,3 +60824,0,1.0,1,1.2442779541015625,325,0.0,3 +60825,0,0.0,1,2.0602688789367676,326,0.0,3 +60826,0,0.0,1,1.6832737922668457,327,0.0,3 +60827,0,0.0,1,1.6732738018035889,328,0.0,3 +60828,0,0.0,1,1.3912774324417114,329,0.0,3 +60829,0,0.0,1,1.9332704544067383,330,1.0,3 +60830,0,0.0,1,1.7202732563018799,331,0.0,3 +60831,0,1.0,1,1.602274775505066,332,1.0,3 +60832,0,1.0,1,1.414277195930481,333,1.0,3 +60833,0,0.0,1,1.1912778615951538,334,0.0,3 +60834,0,1.0,1,1.341278076171875,335,1.0,3 +60835,0,1.0,1,1.5432754755020142,336,1.0,3 +60836,0,1.0,1,1.4562766551971436,337,1.0,3 +60837,0,0.0,1,1.4692764282226562,338,1.0,3 +60838,0,0.0,1,1.594274878501892,339,0.0,3 +60839,0,0.0,1,1.8182719945907593,340,0.0,3 +60840,0,1.0,1,1.3932774066925049,341,1.0,3 +60841,0,1.0,1,1.3812775611877441,342,1.0,3 +60842,0,0.0,1,1.3482780456542969,343,1.0,3 +60843,0,1.0,1,1.7442729473114014,344,1.0,3 +60844,0,1.0,1,1.3832775354385376,345,0.0,3 +60845,0,0.0,1,1.6762738227844238,346,0.0,3 +60846,0,0.0,1,1.3522779941558838,347,0.0,3 +60847,0,0.0,1,1.7032735347747803,348,0.0,3 +60848,0,1.0,1,1.7702726125717163,349,1.0,3 +60849,0,1.0,1,1.620274543762207,350,0.0,3 +60850,0,0.0,1,1.9152708053588867,351,1.0,3 +60851,0,0.0,1,1.8652713298797607,352,0.0,3 +60852,0,0.0,1,1.5012760162353516,353,0.0,3 +60853,0,0.0,1,1.212277889251709,354,0.0,3 +60854,0,0.0,1,1.481276273727417,355,0.0,3 +60855,0,1.0,1,1.5232757329940796,356,1.0,3 +60856,0,1.0,1,1.8062721490859985,357,1.0,3 +60857,0,1.0,1,1.6372742652893066,358,1.0,3 +60858,0,1.0,1,1.8862711191177368,359,1.0,3 +60859,0,1.0,1,1.459276556968689,360,0.0,3 +60860,0,0.0,1,1.4682765007019043,361,0.0,3 +60861,0,1.0,1,1.283277988433838,362,1.0,3 +60862,0,1.0,1,1.742272973060608,363,1.0,3 +60863,0,1.0,1,1.3502780199050903,364,1.0,3 +60864,0,1.0,1,1.713273286819458,365,1.0,3 +60865,0,0.0,1,1.6282744407653809,366,0.0,3 +60866,0,1.0,1,1.2722779512405396,367,1.0,3 +60867,0,1.0,1,1.429276943206787,368,1.0,3 +60868,0,1.0,1,1.9312705993652344,369,1.0,3 +60869,0,1.0,1,1.9132707118988037,370,1.0,3 +60870,0,1.0,1,1.388277530670166,371,0.0,3 +60871,0,0.0,1,1.7922723293304443,372,0.0,3 +60872,0,0.0,1,1.899271011352539,373,0.0,3 +60873,0,1.0,1,1.8772711753845215,374,1.0,3 +60874,0,1.0,1,1.6612739562988281,375,1.0,3 +60875,0,1.0,1,1.3302781581878662,376,0.0,3 +60876,0,1.0,1,1.6892735958099365,377,1.0,3 +60877,0,1.0,1,1.8952710628509521,378,1.0,3 +60878,0,1.0,1,1.3992773294448853,379,1.0,3 +60879,0,1.0,1,1.4172770977020264,380,0.0,3 +60880,0,0.0,1,1.7782725095748901,381,0.0,3 +60881,0,0.0,1,1.2902779579162598,382,0.0,3 +60882,0,1.0,1,1.8862711191177368,383,0.0,3 +60883,0,1.0,1,1.8032722473144531,384,0.0,3 +60884,0,0.0,1,1.6482741832733154,385,0.0,3 +60885,0,0.0,1,1.995269775390625,386,0.0,3 +60886,0,1.0,1,1.3202780485153198,387,1.0,3 +60887,0,1.0,1,1.6482741832733154,388,1.0,3 +60888,0,1.0,1,1.6592741012573242,389,1.0,3 +60889,0,0.0,1,1.2592779397964478,390,0.0,3 +60890,0,1.0,1,1.5372755527496338,391,0.0,3 +60891,0,0.0,1,1.276278018951416,392,0.0,3 +60892,0,0.0,1,1.4682765007019043,393,1.0,3 +60893,0,0.0,1,1.2552779912948608,394,1.0,3 +60894,0,0.0,1,1.2362779378890991,395,0.0,3 +60895,0,1.0,1,1.249277949333191,396,0.0,3 +60896,0,0.0,1,1.4972760677337646,397,0.0,3 +60897,0,0.0,1,1.2952780723571777,398,0.0,3 +60898,0,0.0,1,2.412283420562744,399,0.0,3 +60899,0,1.0,1,2.1782727241516113,400,1.0,3 +60900,0,0.0,1,1.4022773504257202,401,0.0,3 +60901,0,1.0,1,2.2002735137939453,402,1.0,3 +60902,0,0.0,1,1.1852778196334839,403,0.0,3 +60903,0,1.0,1,1.9632701873779297,404,1.0,3 +60904,0,1.0,1,1.6612739562988281,405,1.0,3 +60905,0,0.0,1,2.105269193649292,406,0.0,3 +60906,0,1.0,1,1.4052772521972656,407,1.0,3 +60907,0,0.0,1,2.322279453277588,408,0.0,3 +60908,0,1.0,1,1.341278076171875,409,1.0,3 +60909,0,1.0,1,1.458276629447937,410,1.0,3 +60910,0,1.0,1,1.2272778749465942,411,0.0,3 +60911,0,1.0,1,1.4682765007019043,412,0.0,3 +60912,0,0.0,1,1.5422755479812622,413,1.0,3 +60913,0,0.0,1,1.5052759647369385,414,1.0,3 +60914,0,0.0,1,1.3812775611877441,415,0.0,3 +60915,0,0.0,1,1.1982778310775757,416,0.0,3 +60916,0,1.0,1,2.1542716026306152,417,1.0,3 +60917,0,1.0,1,1.5852749347686768,418,1.0,3 +60918,0,1.0,1,1.3722777366638184,419,1.0,3 +60919,0,1.0,1,1.8692712783813477,420,1.0,3 +60920,0,1.0,1,2.0692687034606934,421,1.0,3 +60921,0,1.0,1,1.6182745695114136,422,1.0,3 +60922,0,1.0,1,1.3812775611877441,423,0.0,3 +60923,0,0.0,1,1.9082708358764648,424,0.0,3 +60924,0,0.0,1,1.47727632522583,425,0.0,3 +60925,0,0.0,1,2.2112741470336914,426,1.0,3 +60926,0,0.0,1,1.7452728748321533,427,0.0,3 +60927,0,0.0,1,1.237277865409851,428,1.0,3 +60928,0,0.0,1,1.5702751874923706,429,1.0,3 +60929,0,0.0,1,2.037269115447998,430,0.0,3 +60930,0,0.0,1,1.3002780675888062,431,0.0,3 +60931,0,0.0,1,1.4182771444320679,432,0.0,3 +60932,0,0.0,1,2.140270709991455,433,0.0,3 +60933,0,1.0,1,2.087268590927124,434,1.0,3 +60934,0,1.0,1,1.8222719430923462,435,1.0,3 +60935,0,1.0,1,1.7902723550796509,436,1.0,3 +60936,0,1.0,1,1.4202771186828613,437,1.0,3 +60937,0,1.0,1,1.851271629333496,438,1.0,3 +60938,0,1.0,1,1.3462780714035034,439,1.0,3 +60939,0,1.0,1,1.694273591041565,440,1.0,3 +60940,0,1.0,1,1.4862762689590454,441,1.0,3 +60941,0,1.0,1,1.5872749090194702,442,1.0,3 +60942,0,1.0,1,1.5232757329940796,443,0.0,3 +60943,0,1.0,1,1.484276294708252,444,0.0,3 +60944,0,0.0,1,2.001269578933716,445,0.0,3 +60945,0,0.0,1,1.9832699298858643,446,1.0,3 +60946,0,0.0,1,1.3252780437469482,447,1.0,3 +60947,0,0.0,1,1.3332780599594116,448,0.0,3 +60948,0,1.0,1,2.037269115447998,449,1.0,3 +60949,0,1.0,1,1.4392768144607544,450,1.0,3 +60950,0,1.0,1,1.3212780952453613,451,1.0,3 +60951,0,0.0,1,1.5932748317718506,452,0.0,3 +60952,0,1.0,1,1.6332743167877197,453,1.0,3 +60953,0,1.0,1,1.6972734928131104,454,0.0,3 +60954,0,0.0,1,2.085268497467041,455,1.0,3 +60955,0,0.0,1,1.3302781581878662,456,0.0,3 +60956,0,0.0,1,1.4782763719558716,457,1.0,3 +60957,0,0.0,1,1.212277889251709,458,1.0,3 +60958,0,0.0,1,1.4252769947052002,459,0.0,3 +60959,0,1.0,1,2.0182695388793945,460,0.0,3 +60960,0,0.0,1,1.47727632522583,461,0.0,3 +60961,0,1.0,1,1.6592741012573242,462,1.0,3 +60962,0,0.0,1,2.082268714904785,463,0.0,3 +60963,0,1.0,1,1.366277813911438,464,0.0,3 +60964,0,0.0,1,1.690273642539978,465,1.0,3 +60965,0,0.0,1,1.3052780628204346,466,0.0,3 +60966,0,0.0,1,1.2582778930664062,467,1.0,3 +60967,0,0.0,1,1.6812736988067627,468,1.0,3 +60968,0,1.0,1,1.970270037651062,469,0.0,3 +60969,0,0.0,1,1.6562740802764893,470,0.0,3 +60970,0,0.0,1,1.6002748012542725,471,0.0,3 +60971,0,0.0,1,1.4032772779464722,472,0.0,3 +60972,0,1.0,1,1.3222780227661133,473,1.0,3 +60973,0,1.0,1,1.5112758874893188,474,0.0,3 +60974,0,1.0,1,1.6002748012542725,475,0.0,3 +60975,0,0.0,1,1.3312780857086182,476,1.0,3 +60976,0,0.0,1,1.5202758312225342,477,1.0,3 +60977,0,0.0,1,1.3262780904769897,478,0.0,3 +60978,0,0.0,1,1.6222745180130005,479,0.0,3 +60979,0,1.0,1,1.455276608467102,480,1.0,3 +60980,0,0.0,1,1.8162720203399658,481,1.0,3 +60981,0,1.0,1,1.3772776126861572,482,1.0,3 +60982,0,1.0,1,1.6092746257781982,483,1.0,3 +60983,0,1.0,1,1.852271556854248,484,1.0,3 +60984,0,0.0,1,1.6592741012573242,485,0.0,3 +60985,0,0.0,1,1.2282779216766357,486,0.0,3 +60986,0,1.0,1,2.106269359588623,487,1.0,3 +60987,0,1.0,1,1.3692777156829834,488,0.0,3 +60988,0,0.0,1,1.6812736988067627,489,1.0,3 +60989,0,0.0,1,1.6262744665145874,490,0.0,3 +60990,0,1.0,1,1.9542702436447144,491,1.0,3 +60991,0,1.0,1,2.1822729110717773,492,0.0,3 +60992,0,0.0,1,1.2652779817581177,493,0.0,3 +60993,0,0.0,1,1.7352731227874756,494,1.0,3 +60994,0,0.0,1,1.3472779989242554,495,0.0,3 +60995,0,1.0,1,1.7722725868225098,496,1.0,3 +60996,0,1.0,1,1.4742764234542847,497,1.0,3 +60997,0,1.0,1,1.5182758569717407,498,0.0,3 +60998,0,0.0,1,1.345278024673462,499,1.0,3 +60999,0,1.0,1,2.140270709991455,500,1.0,3 +61000,0,0.0,2,2.086268424987793,1,1.0,3 +61001,0,1.0,2,1.5962748527526855,2,1.0,3 +61002,0,0.0,2,1.947270393371582,3,1.0,3 +61003,0,1.0,2,1.6002748012542725,4,1.0,3 +61004,0,0.0,2,1.6182745695114136,5,1.0,3 +61005,0,0.0,2,1.642274260520935,6,0.0,3 +61006,0,1.0,2,1.709273338317871,7,1.0,3 +61007,0,0.0,2,1.550275444984436,8,1.0,3 +61008,0,1.0,2,1.3912774324417114,9,1.0,3 +61009,0,0.0,2,1.363277792930603,10,1.0,3 +61010,0,0.0,2,2.2182745933532715,11,1.0,3 +61011,0,1.0,2,1.2672779560089111,12,0.0,3 +61012,0,0.0,2,1.642274260520935,13,0.0,3 +61013,0,1.0,2,1.9862698316574097,14,1.0,3 +61014,0,0.0,2,1.3982774019241333,15,0.0,3 +61015,0,1.0,2,1.3302781581878662,16,0.0,3 +61016,0,0.0,2,1.206277847290039,17,0.0,3 +61017,0,0.0,2,1.2282779216766357,18,1.0,3 +61018,0,1.0,2,1.3792775869369507,19,0.0,3 +61019,0,0.0,2,1.7722725868225098,20,1.0,3 +61020,0,0.0,2,1.1942777633666992,21,0.0,3 +61021,0,0.0,2,1.7922723293304443,22,1.0,3 +61022,0,0.0,2,1.2932779788970947,23,0.0,3 +61023,0,1.0,2,1.5652751922607422,24,1.0,3 +61024,0,1.0,2,1.554275393486023,25,1.0,3 +61025,0,1.0,2,1.8352718353271484,26,1.0,3 +61026,0,1.0,2,1.5852749347686768,27,0.0,3 +61027,0,0.0,2,1.8672714233398438,28,0.0,3 +61028,0,0.0,2,1.5782750844955444,29,1.0,3 +61029,0,0.0,2,1.812272071838379,30,0.0,3 +61030,0,0.0,2,2.0522689819335938,31,0.0,3 +61031,0,0.0,2,1.617274522781372,32,1.0,3 +61032,0,0.0,2,1.713273286819458,33,0.0,3 +61033,0,1.0,2,1.6492741107940674,34,0.0,3 +61034,0,1.0,2,1.642274260520935,35,1.0,3 +61035,0,1.0,2,1.7872724533081055,36,0.0,3 +61036,0,0.0,2,1.5112758874893188,37,0.0,3 +61037,0,1.0,2,1.7052733898162842,38,0.0,3 +61038,0,0.0,2,1.4872761964797974,39,0.0,3 +61039,0,1.0,2,2.0312693119049072,40,0.0,3 +61040,0,1.0,2,1.3092780113220215,41,1.0,3 +61041,0,1.0,2,1.712273359298706,42,1.0,3 +61042,0,1.0,2,1.481276273727417,43,1.0,3 +61043,0,1.0,2,1.5152758359909058,44,1.0,3 +61044,0,1.0,2,1.4182771444320679,45,0.0,3 +61045,0,1.0,2,1.4922761917114258,46,1.0,3 +61046,0,1.0,2,1.8712713718414307,47,0.0,3 +61047,0,1.0,2,1.4042773246765137,48,0.0,3 +61048,0,1.0,2,1.6282744407653809,49,1.0,3 +61049,0,1.0,2,1.6302744150161743,50,1.0,3 +61050,0,1.0,2,1.4422768354415894,51,1.0,3 +61051,0,1.0,2,1.3152780532836914,52,1.0,3 +61052,0,1.0,2,1.2882779836654663,53,0.0,3 +61053,0,1.0,2,1.5612752437591553,54,1.0,3 +61054,0,0.0,2,1.808272123336792,55,0.0,3 +61055,0,0.0,2,1.8162720203399658,56,0.0,3 +61056,0,1.0,2,2.093268632888794,57,0.0,3 +61057,0,0.0,2,1.576275110244751,58,0.0,3 +61058,0,0.0,2,1.2872780561447144,59,0.0,3 +61059,0,0.0,2,1.995269775390625,60,1.0,3 +61060,0,0.0,2,1.2252779006958008,61,0.0,3 +61061,0,1.0,2,1.782272458076477,62,0.0,3 +61062,0,0.0,2,1.9812698364257812,63,1.0,3 +61063,0,0.0,2,1.440276861190796,64,0.0,3 +61064,0,1.0,2,1.9192707538604736,65,0.0,3 +61065,0,0.0,2,1.6832737922668457,66,0.0,3 +61066,0,0.0,2,1.6142746210098267,67,0.0,3 +61067,0,0.0,2,1.2592779397964478,68,0.0,3 +61068,0,1.0,2,1.3062779903411865,69,1.0,3 +61069,0,1.0,2,1.4032772779464722,70,1.0,3 +61070,0,1.0,2,1.6182745695114136,71,0.0,3 +61071,0,1.0,2,1.45427668094635,72,0.0,3 +61072,0,1.0,2,2.2352752685546875,73,1.0,3 +61073,0,0.0,2,1.433276891708374,74,1.0,3 +61074,0,1.0,2,1.9692699909210205,75,0.0,3 +61075,0,1.0,2,1.9592702388763428,76,1.0,3 +61076,0,0.0,2,1.9802699089050293,77,1.0,3 +61077,0,1.0,2,1.7832725048065186,78,0.0,3 +61078,0,0.0,2,1.5642752647399902,79,1.0,3 +61079,0,0.0,2,1.3192781209945679,80,1.0,3 +61080,0,0.0,2,1.6842737197875977,81,0.0,3 +61081,0,0.0,2,1.4662765264511108,82,1.0,3 +61082,0,1.0,2,1.4762763977050781,83,0.0,3 +61083,0,0.0,2,1.1862778663635254,84,0.0,3 +61084,0,1.0,2,1.5682752132415771,85,0.0,3 +61085,0,0.0,2,1.2952780723571777,86,1.0,3 +61086,0,0.0,2,1.2842780351638794,87,1.0,3 +61087,0,0.0,2,1.206277847290039,88,1.0,3 +61088,0,0.0,2,1.547275424003601,89,0.0,3 +61089,0,0.0,2,1.4442768096923828,90,0.0,3 +61090,0,0.0,2,1.2542779445648193,91,0.0,3 +61091,0,1.0,2,1.313278079032898,92,1.0,3 +61092,0,0.0,2,1.573275089263916,93,0.0,3 +61093,0,1.0,2,1.532275676727295,94,1.0,3 +61094,0,0.0,2,1.4032772779464722,95,1.0,3 +61095,0,0.0,2,1.8442716598510742,96,0.0,3 +61096,0,1.0,2,1.9242706298828125,97,1.0,3 +61097,0,1.0,2,1.4262770414352417,98,0.0,3 +61098,0,0.0,2,2.351280689239502,99,0.0,3 +61099,0,1.0,2,1.9782699346542358,100,1.0,3 +61100,0,1.0,2,1.6362743377685547,101,1.0,3 +61101,0,1.0,2,1.4062772989273071,102,1.0,3 +61102,0,1.0,2,1.550275444984436,103,1.0,3 +61103,0,1.0,2,1.437276840209961,104,1.0,3 +61104,0,1.0,2,1.851271629333496,105,1.0,3 +61105,0,1.0,2,1.555275321006775,106,1.0,3 +61106,0,1.0,2,1.572275161743164,107,0.0,3 +61107,0,1.0,2,1.3092780113220215,108,1.0,3 +61108,0,1.0,2,1.2642779350280762,109,1.0,3 +61109,0,1.0,2,1.9812698364257812,110,1.0,3 +61110,0,1.0,2,1.8542715311050415,111,1.0,3 +61111,0,1.0,2,1.4052772521972656,112,0.0,3 +61112,0,1.0,2,2.1792726516723633,113,1.0,3 +61113,0,1.0,2,1.2332779169082642,114,1.0,3 +61114,0,0.0,2,1.270277976989746,115,1.0,3 +61115,0,0.0,2,1.7322731018066406,116,0.0,3 +61116,0,1.0,2,1.669273853302002,117,1.0,3 +61117,0,0.0,2,2.05026912689209,118,1.0,3 +61118,0,0.0,2,1.4702764749526978,119,0.0,3 +61119,0,1.0,2,1.7542728185653687,120,1.0,3 +61120,0,1.0,2,1.8442716598510742,121,0.0,3 +61121,0,0.0,2,1.6532740592956543,122,1.0,3 +61122,0,0.0,2,1.6142746210098267,123,1.0,3 +61123,0,0.0,2,1.5152758359909058,124,0.0,3 +61124,0,0.0,2,1.7182732820510864,125,0.0,3 +61125,0,1.0,2,2.001269578933716,126,0.0,3 +61126,0,1.0,2,1.9192707538604736,127,1.0,3 +61127,0,1.0,2,1.389277458190918,128,0.0,3 +61128,0,0.0,2,1.4302769899368286,129,0.0,3 +61129,0,0.0,2,1.458276629447937,130,0.0,3 +61130,0,0.0,2,1.8382717370986938,131,1.0,3 +61131,0,0.0,2,1.3062779903411865,132,0.0,3 +61132,0,0.0,2,1.6562740802764893,133,1.0,3 +61133,0,0.0,2,1.4732763767242432,134,1.0,3 +61134,0,0.0,2,1.3332780599594116,135,1.0,3 +61135,0,0.0,2,1.4022773504257202,136,0.0,3 +61136,0,0.0,2,1.576275110244751,137,1.0,3 +61137,0,0.0,2,1.669273853302002,138,1.0,3 +61138,0,0.0,2,1.5232757329940796,139,0.0,3 +61139,0,0.0,2,1.3462780714035034,140,0.0,3 +61140,0,0.0,2,1.5162758827209473,141,1.0,3 +61141,0,0.0,2,1.3462780714035034,142,1.0,3 +61142,0,1.0,2,1.5572752952575684,143,1.0,3 +61143,0,0.0,2,1.3642778396606445,144,1.0,3 +61144,0,0.0,2,1.279278039932251,145,0.0,3 +61145,0,1.0,2,1.4182771444320679,146,0.0,3 +61146,0,0.0,2,1.4762763977050781,147,0.0,3 +61147,0,0.0,2,1.4122772216796875,148,0.0,3 +61148,0,1.0,2,1.273277997970581,149,1.0,3 +61149,0,1.0,2,1.5182758569717407,150,1.0,3 +61150,0,1.0,2,1.481276273727417,151,0.0,3 +61151,0,0.0,2,1.7782725095748901,152,0.0,3 +61152,0,1.0,2,1.6292743682861328,153,1.0,3 +61153,0,1.0,2,1.4232770204544067,154,0.0,3 +61154,0,0.0,2,1.3152780532836914,155,1.0,3 +61155,0,0.0,2,1.4762763977050781,156,1.0,3 +61156,0,0.0,2,2.1702723503112793,157,0.0,3 +61157,0,0.0,2,1.9882698059082031,158,1.0,3 +61158,0,0.0,2,1.572275161743164,159,0.0,3 +61159,0,0.0,2,1.4132771492004395,160,0.0,3 +61160,0,1.0,2,1.4052772521972656,161,0.0,3 +61161,0,0.0,2,1.5232757329940796,162,0.0,3 +61162,0,1.0,2,1.5422755479812622,163,0.0,3 +61163,0,0.0,2,2.2112741470336914,164,1.0,3 +61164,0,0.0,2,1.4342769384384155,165,0.0,3 +61165,0,0.0,2,1.5092759132385254,166,0.0,3 +61166,0,0.0,2,2.093268632888794,167,1.0,3 +61167,0,0.0,2,1.694273591041565,168,0.0,3 +61168,0,0.0,2,1.2912780046463013,169,1.0,3 +61169,0,0.0,2,1.2382779121398926,170,0.0,3 +61170,0,0.0,2,1.3022780418395996,171,1.0,3 +61171,0,0.0,2,1.4902762174606323,172,0.0,3 +61172,0,0.0,2,1.7012734413146973,173,0.0,3 +61173,0,0.0,2,1.5662752389907837,174,0.0,3 +61174,0,1.0,2,2.0552690029144287,175,1.0,3 +61175,0,1.0,2,1.3352781534194946,176,1.0,3 +61176,0,1.0,2,1.3192781209945679,177,1.0,3 +61177,0,1.0,2,1.760272741317749,178,0.0,3 +61178,0,0.0,2,1.9712700843811035,179,1.0,3 +61179,0,0.0,2,1.6742738485336304,180,0.0,3 +61180,0,0.0,2,1.6622740030288696,181,1.0,3 +61181,0,0.0,2,1.5222758054733276,182,0.0,3 +61182,0,0.0,2,1.3352781534194946,183,0.0,3 +61183,0,1.0,2,1.7292730808258057,184,0.0,3 +61184,0,0.0,2,1.4462767839431763,185,1.0,3 +61185,0,0.0,2,1.5172758102416992,186,0.0,3 +61186,0,1.0,2,1.4692764282226562,187,1.0,3 +61187,0,1.0,2,1.8852710723876953,188,1.0,3 +61188,0,1.0,2,1.6832737922668457,189,0.0,3 +61189,0,1.0,2,1.623274564743042,190,1.0,3 +61190,0,1.0,2,1.4882762432098389,191,0.0,3 +61191,0,0.0,2,1.2712780237197876,192,0.0,3 +61192,0,1.0,2,1.896270990371704,193,0.0,3 +61193,0,0.0,2,1.5922749042510986,194,0.0,3 +61194,0,1.0,2,1.5862749814987183,195,0.0,3 +61195,0,1.0,2,1.2562779188156128,196,0.0,3 +61196,0,1.0,2,1.8062721490859985,197,1.0,3 +61197,0,1.0,2,1.5642752647399902,198,1.0,3 +61198,0,1.0,2,1.388277530670166,199,1.0,3 +61199,0,1.0,2,1.900270938873291,200,1.0,3 +61200,0,1.0,2,1.316278100013733,201,0.0,3 +61201,0,0.0,2,1.3542779684066772,202,1.0,3 +61202,0,0.0,2,1.5352755784988403,203,0.0,3 +61203,0,0.0,2,1.4042773246765137,204,1.0,3 +61204,0,0.0,2,1.2592779397964478,205,1.0,3 +61205,0,0.0,2,1.4652764797210693,206,0.0,3 +61206,0,1.0,2,1.3062779903411865,207,0.0,3 +61207,0,1.0,2,2.113269567489624,208,1.0,3 +61208,0,0.0,2,1.3952773809432983,209,1.0,3 +61209,0,1.0,2,1.66827392578125,210,0.0,3 +61210,0,0.0,2,1.525275707244873,211,1.0,3 +61211,0,0.0,2,1.4052772521972656,212,1.0,3 +61212,0,0.0,2,1.3462780714035034,213,0.0,3 +61213,0,0.0,2,1.440276861190796,214,1.0,3 +61214,0,0.0,2,1.4872761964797974,215,0.0,3 +61215,0,1.0,2,2.099268913269043,216,1.0,3 +61216,0,0.0,2,1.3182780742645264,217,1.0,3 +61217,0,0.0,2,1.274277925491333,218,0.0,3 +61218,0,1.0,2,1.5262757539749146,219,1.0,3 +61219,0,0.0,2,1.6582740545272827,220,1.0,3 +61220,0,1.0,2,2.140270709991455,221,0.0,3 +61221,0,0.0,2,1.9882698059082031,222,0.0,3 +61222,0,0.0,2,1.4962761402130127,223,0.0,3 +61223,0,1.0,2,1.5442755222320557,224,0.0,3 +61224,0,1.0,2,1.7942723035812378,225,1.0,3 +61225,0,0.0,2,1.2942780256271362,226,0.0,3 +61226,0,0.0,2,2.143270969390869,227,1.0,3 +61227,0,0.0,2,2.0212693214416504,228,0.0,3 +61228,0,0.0,2,1.760272741317749,229,1.0,3 +61229,0,0.0,2,1.6782737970352173,230,0.0,3 +61230,0,0.0,2,1.719273328781128,231,1.0,3 +61231,0,0.0,2,1.307278037071228,232,0.0,3 +61232,0,1.0,2,1.7522728443145752,233,1.0,3 +61233,0,1.0,2,1.949270248413086,234,0.0,3 +61234,0,0.0,2,1.507275938987732,235,0.0,3 +61235,0,1.0,2,1.5812749862670898,236,0.0,3 +61236,0,0.0,2,1.5642752647399902,237,1.0,3 +61237,0,0.0,2,1.239277958869934,238,1.0,3 +61238,0,0.0,2,1.2342779636383057,239,1.0,3 +61239,0,0.0,2,1.3392781019210815,240,0.0,3 +61240,0,1.0,2,1.415277123451233,241,1.0,3 +61241,0,1.0,2,1.9572701454162598,242,0.0,3 +61242,0,1.0,2,1.903270959854126,243,0.0,3 +61243,0,1.0,2,1.5792750120162964,244,0.0,3 +61244,0,1.0,2,1.7002735137939453,245,0.0,3 +61245,0,0.0,2,1.8312718868255615,246,1.0,3 +61246,0,0.0,2,1.3232780694961548,247,0.0,3 +61247,0,0.0,2,1.9842698574066162,248,0.0,3 +61248,0,0.0,2,1.646274209022522,249,0.0,3 +61249,0,0.0,2,1.7022734880447388,250,0.0,3 +61250,0,0.0,2,1.4462767839431763,251,1.0,3 +61251,0,0.0,2,1.2692779302597046,252,1.0,3 +61252,0,0.0,2,1.34427809715271,253,0.0,3 +61253,0,1.0,2,2.118269920349121,254,1.0,3 +61254,0,1.0,2,1.4282770156860352,255,1.0,3 +61255,0,1.0,2,1.4872761964797974,256,0.0,3 +61256,0,0.0,2,1.6132745742797852,257,0.0,3 +61257,0,0.0,2,2.314279079437256,258,1.0,3 +61258,0,0.0,2,1.1622776985168457,259,1.0,3 +61259,0,0.0,2,1.625274419784546,260,1.0,3 +61260,0,0.0,2,1.5372755527496338,261,0.0,3 +61261,0,0.0,2,1.7312731742858887,262,0.0,3 +61262,0,0.0,2,1.3932774066925049,263,1.0,3 +61263,0,0.0,2,1.5082759857177734,264,0.0,3 +61264,0,1.0,2,1.5462754964828491,265,1.0,3 +61265,0,1.0,2,1.5402755737304688,266,0.0,3 +61266,0,1.0,2,1.7352731227874756,267,1.0,3 +61267,0,0.0,2,1.2842780351638794,268,0.0,3 +61268,0,1.0,2,1.502276062965393,269,1.0,3 +61269,0,1.0,2,1.5572752952575684,270,1.0,3 +61270,0,1.0,2,1.9792699813842773,271,0.0,3 +61271,0,1.0,2,1.7262731790542603,272,1.0,3 +61272,0,1.0,2,1.9182707071304321,273,0.0,3 +61273,0,1.0,2,1.484276294708252,274,1.0,3 +61274,0,1.0,2,2.0702686309814453,275,0.0,3 +61275,0,0.0,2,1.765272617340088,276,1.0,3 +61276,0,0.0,2,1.2722779512405396,277,1.0,3 +61277,0,0.0,2,1.709273338317871,278,0.0,3 +61278,0,1.0,2,1.5432754755020142,279,1.0,3 +61279,0,1.0,2,1.3982774019241333,280,1.0,3 +61280,0,0.0,2,1.4232770204544067,281,1.0,3 +61281,0,0.0,2,1.9862698316574097,282,0.0,3 +61282,0,1.0,2,1.856271505355835,283,0.0,3 +61283,0,0.0,2,1.2672779560089111,284,1.0,3 +61284,0,0.0,2,1.5852749347686768,285,1.0,3 +61285,0,0.0,2,1.2972780466079712,286,1.0,3 +61286,0,0.0,2,1.4882762432098389,287,0.0,3 +61287,0,1.0,2,1.6752738952636719,288,0.0,3 +61288,0,0.0,2,1.5262757539749146,289,1.0,3 +61289,0,1.0,2,1.4002773761749268,290,0.0,3 +61290,0,0.0,2,1.4442768096923828,291,0.0,3 +61291,0,0.0,2,2.1802725791931152,292,0.0,3 +61292,0,1.0,2,2.003269672393799,293,0.0,3 +61293,0,0.0,2,1.9332704544067383,294,0.0,3 +61294,0,1.0,2,2.294278144836426,295,1.0,3 +61295,0,1.0,2,1.5962748527526855,296,0.0,3 +61296,0,0.0,2,2.002269744873047,297,1.0,3 +61297,0,0.0,2,1.2932779788970947,298,1.0,3 +61298,0,0.0,2,1.366277813911438,299,1.0,3 +61299,0,0.0,2,1.3832775354385376,300,0.0,3 +61300,0,0.0,2,2.0192694664001465,301,0.0,3 +61301,0,1.0,2,1.4692764282226562,302,0.0,3 +61302,0,0.0,2,1.2672779560089111,303,0.0,3 +61303,0,0.0,2,1.212277889251709,304,1.0,3 +61304,0,0.0,2,2.13727068901062,305,1.0,3 +61305,0,0.0,2,1.3542779684066772,306,0.0,3 +61306,0,0.0,2,1.3612778186798096,307,1.0,3 +61307,0,0.0,2,1.34427809715271,308,0.0,3 +61308,0,1.0,2,1.7582727670669556,309,1.0,3 +61309,0,1.0,2,1.621274471282959,310,0.0,3 +61310,0,0.0,2,1.664273977279663,311,0.0,3 +61311,0,1.0,2,1.4042773246765137,312,1.0,3 +61312,0,0.0,2,1.8622714281082153,313,1.0,3 +61313,0,0.0,2,1.5742751359939575,314,0.0,3 +61314,0,0.0,2,1.337278127670288,315,1.0,3 +61315,0,0.0,2,2.337280035018921,316,0.0,3 +61316,0,1.0,2,1.36727774143219,317,1.0,3 +61317,0,1.0,2,1.3832775354385376,318,0.0,3 +61318,0,0.0,2,1.8102720975875854,319,1.0,3 +61319,0,0.0,2,1.672273874282837,320,1.0,3 +61320,0,0.0,2,1.370277762413025,321,0.0,3 +61321,0,1.0,2,1.5382755994796753,322,1.0,3 +61322,0,1.0,2,1.6892735958099365,323,0.0,3 +61323,0,0.0,2,1.528275728225708,324,0.0,3 +61324,0,1.0,2,1.45427668094635,325,1.0,3 +61325,0,1.0,2,1.5412755012512207,326,1.0,3 +61326,0,1.0,2,1.734273076057434,327,1.0,3 +61327,0,1.0,2,1.3642778396606445,328,0.0,3 +61328,0,1.0,2,1.2302778959274292,329,0.0,3 +61329,0,0.0,2,1.388277530670166,330,0.0,3 +61330,0,0.0,2,1.385277509689331,331,0.0,3 +61331,0,0.0,2,2.1712722778320312,332,0.0,3 +61332,0,0.0,2,1.3312780857086182,333,1.0,3 +61333,0,0.0,2,1.4742764234542847,334,0.0,3 +61334,0,1.0,2,1.6362743377685547,335,0.0,3 +61335,0,1.0,2,1.3172780275344849,336,0.0,3 +61336,0,0.0,2,1.619274616241455,337,0.0,3 +61337,0,0.0,2,1.4442768096923828,338,0.0,3 +61338,0,0.0,2,1.8482716083526611,339,0.0,3 +61339,0,1.0,2,1.3902775049209595,340,1.0,3 +61340,0,1.0,2,1.665273904800415,341,0.0,3 +61341,0,1.0,2,1.805272102355957,342,0.0,3 +61342,0,1.0,2,1.3752776384353638,343,1.0,3 +61343,0,1.0,2,1.5912749767303467,344,1.0,3 +61344,0,1.0,2,1.6452741622924805,345,1.0,3 +61345,0,1.0,2,1.2612779140472412,346,1.0,3 +61346,0,1.0,2,1.6112747192382812,347,0.0,3 +61347,0,1.0,2,1.6112747192382812,348,0.0,3 +61348,0,0.0,2,2.091268539428711,349,0.0,3 +61349,0,1.0,2,1.811272144317627,350,1.0,3 +61350,0,1.0,2,1.8932709693908691,351,1.0,3 +61351,0,1.0,2,2.0712687969207764,352,1.0,3 +61352,0,1.0,2,1.4192770719528198,353,0.0,3 +61353,0,0.0,2,1.5912749767303467,354,0.0,3 +61354,0,0.0,2,1.6002748012542725,355,0.0,3 +61355,0,0.0,2,1.4642765522003174,356,0.0,3 +61356,0,1.0,2,1.6302744150161743,357,0.0,3 +61357,0,1.0,2,1.786272406578064,358,1.0,3 +61358,0,0.0,2,1.3292781114578247,359,0.0,3 +61359,0,1.0,2,1.7232732772827148,360,0.0,3 +61360,0,0.0,2,1.8602714538574219,361,1.0,3 +61361,0,0.0,2,1.7032735347747803,362,1.0,3 +61362,0,0.0,2,1.3182780742645264,363,0.0,3 +61363,0,0.0,2,1.5922749042510986,364,1.0,3 +61364,0,0.0,2,1.363277792930603,365,0.0,3 +61365,0,1.0,2,1.6182745695114136,366,1.0,3 +61366,0,1.0,2,1.9122707843780518,367,0.0,3 +61367,0,0.0,2,1.6922736167907715,368,1.0,3 +61368,0,0.0,2,1.7552728652954102,369,0.0,3 +61369,0,0.0,2,1.8432717323303223,370,0.0,3 +61370,0,1.0,2,1.7542728185653687,371,0.0,3 +61371,0,0.0,2,1.411277174949646,372,1.0,3 +61372,0,0.0,2,1.2962779998779297,373,0.0,3 +61373,0,1.0,2,1.4672764539718628,374,1.0,3 +61374,0,1.0,2,1.6482741832733154,375,0.0,3 +61375,0,1.0,2,1.738273024559021,376,1.0,3 +61376,0,0.0,2,1.9882698059082031,377,0.0,3 +61377,0,1.0,2,1.6182745695114136,378,1.0,3 +61378,0,1.0,2,1.429276943206787,379,1.0,3 +61379,0,1.0,2,1.6912736892700195,380,1.0,3 +61380,0,0.0,2,1.5532753467559814,381,0.0,3 +61381,0,1.0,2,1.664273977279663,382,0.0,3 +61382,0,0.0,2,1.4242770671844482,383,0.0,3 +61383,0,0.0,2,1.9462703466415405,384,1.0,3 +61384,0,0.0,2,1.3772776126861572,385,0.0,3 +61385,0,0.0,2,1.279278039932251,386,1.0,3 +61386,0,1.0,2,1.4392768144607544,387,1.0,3 +61387,0,0.0,2,1.6812736988067627,388,1.0,3 +61388,0,0.0,2,1.4242770671844482,389,1.0,3 +61389,0,1.0,2,1.9312705993652344,390,0.0,3 +61390,0,0.0,2,1.5092759132385254,391,0.0,3 +61391,0,1.0,2,1.8332717418670654,392,1.0,3 +61392,0,1.0,2,1.5432754755020142,393,1.0,3 +61393,0,1.0,2,1.672273874282837,394,0.0,3 +61394,0,0.0,2,1.3962774276733398,395,0.0,3 +61395,0,1.0,2,1.8322718143463135,396,1.0,3 +61396,0,1.0,2,1.6532740592956543,397,0.0,3 +61397,0,1.0,2,1.429276943206787,398,0.0,3 +61398,0,0.0,2,1.951270341873169,399,1.0,3 +61399,0,0.0,2,1.3522779941558838,400,1.0,3 +61400,0,0.0,2,1.3112781047821045,401,0.0,3 +61401,0,0.0,2,1.3312780857086182,402,0.0,3 +61402,0,1.0,2,1.33827805519104,403,0.0,3 +61403,0,1.0,2,1.6782737970352173,404,1.0,3 +61404,0,1.0,2,1.547275424003601,405,0.0,3 +61405,0,0.0,2,2.384282112121582,406,1.0,3 +61406,0,0.0,2,1.6062747240066528,407,1.0,3 +61407,0,0.0,2,1.2682780027389526,408,1.0,3 +61408,0,0.0,2,1.4282770156860352,409,0.0,3 +61409,0,0.0,2,2.142271041870117,410,0.0,3 +61410,0,0.0,2,1.900270938873291,411,0.0,3 +61411,0,1.0,2,1.4522767066955566,412,1.0,3 +61412,0,1.0,2,1.5822750329971313,413,0.0,3 +61413,0,0.0,2,1.4122772216796875,414,1.0,3 +61414,0,0.0,2,1.2352778911590576,415,0.0,3 +61415,0,1.0,2,1.903270959854126,416,0.0,3 +61416,0,0.0,2,1.6882736682891846,417,0.0,3 +61417,0,0.0,2,1.1992778778076172,418,0.0,3 +61418,0,0.0,2,1.4352768659591675,419,0.0,3 +61419,0,1.0,2,1.6872737407684326,420,1.0,3 +61420,0,1.0,2,1.8652713298797607,421,1.0,3 +61421,0,1.0,2,1.569275140762329,422,1.0,3 +61422,0,1.0,2,1.5582753419876099,423,1.0,3 +61423,0,1.0,2,1.4062772989273071,424,0.0,3 +61424,0,1.0,2,1.8022722005844116,425,0.0,3 +61425,0,1.0,2,1.4172770977020264,426,1.0,3 +61426,0,1.0,2,1.3502780199050903,427,1.0,3 +61427,0,1.0,2,1.4062772989273071,428,1.0,3 +61428,0,1.0,2,1.5212757587432861,429,1.0,3 +61429,0,1.0,2,1.3792775869369507,430,1.0,3 +61430,0,1.0,2,1.7072734832763672,431,0.0,3 +61431,0,1.0,2,1.6442742347717285,432,1.0,3 +61432,0,1.0,2,1.4262770414352417,433,0.0,3 +61433,0,0.0,2,1.6862736940383911,434,1.0,3 +61434,0,0.0,2,1.627274513244629,435,0.0,3 +61435,0,1.0,2,1.550275444984436,436,0.0,3 +61436,0,0.0,2,1.6182745695114136,437,1.0,3 +61437,0,1.0,2,1.6782737970352173,438,1.0,3 +61438,0,0.0,2,1.3732776641845703,439,0.0,3 +61439,0,0.0,2,1.4912761449813843,440,0.0,3 +61440,0,0.0,2,1.6922736167907715,441,0.0,3 +61441,0,0.0,2,1.432276964187622,442,1.0,3 +61442,0,0.0,2,1.2332779169082642,443,1.0,3 +61443,0,1.0,2,1.757272720336914,444,0.0,3 +61444,0,0.0,2,1.33827805519104,445,0.0,3 +61445,0,1.0,2,1.8982709646224976,446,1.0,3 +61446,0,1.0,2,1.4512766599655151,447,1.0,3 +61447,0,1.0,2,1.3282780647277832,448,1.0,3 +61448,0,0.0,2,1.8682713508605957,449,0.0,3 +61449,0,1.0,2,1.392277479171753,450,1.0,3 +61450,0,1.0,2,1.480276346206665,451,1.0,3 +61451,0,1.0,2,1.362277865409851,452,1.0,3 +61452,0,1.0,2,1.370277762413025,453,0.0,3 +61453,0,0.0,2,1.3782776594161987,454,0.0,3 +61454,0,0.0,2,1.366277813911438,455,0.0,3 +61455,0,0.0,2,1.7052733898162842,456,0.0,3 +61456,0,0.0,2,1.7762725353240967,457,1.0,3 +61457,0,0.0,2,1.274277925491333,458,1.0,3 +61458,0,0.0,2,1.9242706298828125,459,1.0,3 +61459,0,0.0,2,1.8252718448638916,460,0.0,3 +61460,0,1.0,2,1.5682752132415771,461,1.0,3 +61461,0,1.0,2,1.9462703466415405,462,0.0,3 +61462,0,1.0,2,1.7202732563018799,463,0.0,3 +61463,0,0.0,2,1.5372755527496338,464,0.0,3 +61464,0,0.0,2,1.3782776594161987,465,1.0,3 +61465,0,0.0,2,1.3392781019210815,466,1.0,3 +61466,0,0.0,2,1.6812736988067627,467,0.0,3 +61467,0,0.0,2,1.761272668838501,468,1.0,3 +61468,0,0.0,2,1.6602740287780762,469,0.0,3 +61469,0,0.0,2,1.3642778396606445,470,0.0,3 +61470,0,0.0,2,1.8062721490859985,471,0.0,3 +61471,0,0.0,2,1.2782779932022095,472,0.0,3 +61472,0,1.0,2,1.2812780141830444,473,1.0,3 +61473,0,1.0,2,1.2552779912948608,474,1.0,3 +61474,0,1.0,2,1.4282770156860352,475,0.0,3 +61475,0,0.0,2,1.3352781534194946,476,0.0,3 +61476,0,0.0,2,1.7292730808258057,477,1.0,3 +61477,0,0.0,2,1.5822750329971313,478,0.0,3 +61478,0,0.0,2,1.6262744665145874,479,1.0,3 +61479,0,1.0,2,1.3732776641845703,480,0.0,3 +61480,0,0.0,2,1.3362780809402466,481,0.0,3 +61481,0,0.0,2,1.429276943206787,482,0.0,3 +61482,0,0.0,2,1.341278076171875,483,1.0,3 +61483,0,0.0,2,1.3972773551940918,484,0.0,3 +61484,0,0.0,2,1.2252779006958008,485,0.0,3 +61485,0,1.0,2,2.294278144836426,486,1.0,3 +61486,0,1.0,2,1.279278039932251,487,1.0,3 +61487,0,0.0,2,1.2502779960632324,488,1.0,3 +61488,0,0.0,2,1.4192770719528198,489,0.0,3 +61489,0,1.0,2,1.246277928352356,490,0.0,3 +61490,0,0.0,2,1.4082772731781006,491,0.0,3 +61491,0,1.0,2,1.8132719993591309,492,0.0,3 +61492,0,1.0,2,1.7552728652954102,493,0.0,3 +61493,0,0.0,2,1.3252780437469482,494,1.0,3 +61494,0,0.0,2,1.5462754964828491,495,1.0,3 +61495,0,0.0,2,1.384277582168579,496,1.0,3 +61496,0,0.0,2,1.6062747240066528,497,0.0,3 +61497,0,1.0,2,1.85927152633667,498,0.0,3 +61498,0,0.0,2,1.3432780504226685,499,1.0,3 +61499,0,0.0,2,1.572275161743164,500,0.0,3 +61500,1,1.0,0,1.6913738250732422,1,1.0,3 +61501,1,1.0,0,1.908371090888977,2,1.0,3 +61502,1,1.0,0,1.6753740310668945,3,1.0,3 +61503,1,1.0,0,1.4943764209747314,4,1.0,3 +61504,1,1.0,0,1.3113787174224854,5,1.0,3 +61505,1,1.0,0,1.8563717603683472,6,1.0,3 +61506,1,1.0,0,1.6793739795684814,7,1.0,3 +61507,1,1.0,0,1.3133786916732788,8,1.0,3 +61508,1,1.0,0,1.353378176689148,9,1.0,3 +61509,1,0.0,0,1.515376091003418,10,0.0,3 +61510,1,1.0,0,1.33137845993042,11,1.0,3 +61511,1,1.0,0,1.3733779191970825,12,1.0,3 +61512,1,1.0,0,1.8273720741271973,13,1.0,3 +61513,1,1.0,0,2.0943703651428223,14,1.0,3 +61514,1,1.0,0,1.6333746910095215,15,0.0,3 +61515,1,1.0,0,1.3193786144256592,16,1.0,3 +61516,1,1.0,0,1.795372486114502,17,1.0,3 +61517,1,1.0,0,1.728373408317566,18,1.0,3 +61518,1,1.0,0,1.6383745670318604,19,0.0,3 +61519,1,1.0,0,1.4113774299621582,20,1.0,3 +61520,1,1.0,0,1.5573755502700806,21,1.0,3 +61521,1,1.0,0,1.4543769359588623,22,1.0,3 +61522,1,1.0,0,1.4433770179748535,23,1.0,3 +61523,1,1.0,0,1.2453784942626953,24,1.0,3 +61524,1,1.0,0,1.5123761892318726,25,1.0,3 +61525,1,1.0,0,1.6333746910095215,26,1.0,3 +61526,1,1.0,0,1.3283785581588745,27,1.0,3 +61527,1,1.0,0,1.7323733568191528,28,1.0,3 +61528,1,1.0,0,1.199378490447998,29,1.0,3 +61529,1,1.0,0,1.2823786735534668,30,1.0,3 +61530,1,1.0,0,1.6913738250732422,31,1.0,3 +61531,1,1.0,0,1.3813778162002563,32,0.0,3 +61532,1,1.0,0,1.7233734130859375,33,0.0,3 +61533,1,0.0,0,1.2483785152435303,34,1.0,3 +61534,1,1.0,0,1.4743766784667969,35,1.0,3 +61535,1,0.0,0,1.3503782749176025,36,0.0,3 +61536,1,1.0,0,1.4683767557144165,37,1.0,3 +61537,1,1.0,0,1.8613717555999756,38,1.0,3 +61538,1,1.0,0,1.5423758029937744,39,1.0,3 +61539,1,1.0,0,1.426377296447754,40,1.0,3 +61540,1,1.0,0,1.4493769407272339,41,1.0,3 +61541,1,1.0,0,1.8403719663619995,42,1.0,3 +61542,1,1.0,0,1.3403784036636353,43,1.0,3 +61543,1,1.0,0,1.2323784828186035,44,1.0,3 +61544,1,1.0,0,1.348378300666809,45,0.0,3 +61545,1,1.0,0,1.3443783521652222,46,1.0,3 +61546,1,1.0,0,1.2433785200119019,47,1.0,3 +61547,1,1.0,0,1.2323784828186035,48,0.0,3 +61548,1,1.0,0,1.9103710651397705,49,0.0,3 +61549,1,1.0,0,2.1033706665039062,50,1.0,3 +61550,1,1.0,0,1.6333746910095215,51,1.0,3 +61551,1,1.0,0,1.4423770904541016,52,1.0,3 +61552,1,1.0,0,1.5603755712509155,53,1.0,3 +61553,1,1.0,0,1.609375,54,1.0,3 +61554,1,1.0,0,2.1033706665039062,55,1.0,3 +61555,1,1.0,0,1.5523756742477417,56,0.0,3 +61556,1,0.0,0,1.6123749017715454,57,0.0,3 +61557,1,1.0,0,1.3643780946731567,58,1.0,3 +61558,1,1.0,0,1.3883777856826782,59,0.0,3 +61559,1,0.0,0,1.423377275466919,60,0.0,3 +61560,1,0.0,0,1.3873777389526367,61,0.0,3 +61561,1,0.0,0,1.3373783826828003,62,0.0,3 +61562,1,0.0,0,1.3123786449432373,63,0.0,3 +61563,1,1.0,0,1.6673741340637207,64,1.0,3 +61564,1,1.0,0,1.609375,65,1.0,3 +61565,1,1.0,0,1.6153748035430908,66,0.0,3 +61566,1,0.0,0,1.1833784580230713,67,0.0,3 +61567,1,1.0,0,2.1083710193634033,68,0.0,3 +61568,1,1.0,0,1.9403706789016724,69,0.0,3 +61569,1,1.0,0,1.7413733005523682,70,1.0,3 +61570,1,1.0,0,1.3543782234191895,71,1.0,3 +61571,1,1.0,0,1.2323784828186035,72,1.0,3 +61572,1,1.0,0,1.5063762664794922,73,1.0,3 +61573,1,1.0,0,1.3843778371810913,74,1.0,3 +61574,1,1.0,0,1.3913776874542236,75,1.0,3 +61575,1,1.0,0,1.2353785037994385,76,1.0,3 +61576,1,1.0,0,1.203378438949585,77,0.0,3 +61577,1,1.0,0,1.8253722190856934,78,1.0,3 +61578,1,1.0,0,2.3493824005126953,79,0.0,3 +61579,1,0.0,0,1.3943777084350586,80,0.0,3 +61580,1,0.0,0,1.7873725891113281,81,0.0,3 +61581,1,0.0,0,1.7553730010986328,82,0.0,3 +61582,1,0.0,0,1.8253722190856934,83,0.0,3 +61583,1,0.0,0,1.868371605873108,84,0.0,3 +61584,1,1.0,0,1.9983699321746826,85,1.0,3 +61585,1,0.0,0,1.4423770904541016,86,1.0,3 +61586,1,1.0,0,2.030369520187378,87,1.0,3 +61587,1,0.0,0,1.9913699626922607,88,0.0,3 +61588,1,1.0,0,1.6333746910095215,89,1.0,3 +61589,1,1.0,0,1.4513769149780273,90,1.0,3 +61590,1,0.0,0,2.0153696537017822,91,1.0,3 +61591,1,0.0,0,1.5023763179779053,92,0.0,3 +61592,1,0.0,0,1.2323784828186035,93,0.0,3 +61593,1,1.0,0,1.7963725328445435,94,1.0,3 +61594,1,1.0,0,1.2653785943984985,95,1.0,3 +61595,1,1.0,0,1.397377610206604,96,1.0,3 +61596,1,1.0,0,1.7263734340667725,97,1.0,3 +61597,1,1.0,0,2.1003706455230713,98,1.0,3 +61598,1,1.0,0,2.0013699531555176,99,1.0,3 +61599,1,1.0,0,1.300378680229187,100,1.0,3 +61600,1,1.0,0,1.2753785848617554,101,1.0,3 +61601,1,1.0,0,1.4303772449493408,102,1.0,3 +61602,1,1.0,0,1.563375473022461,103,1.0,3 +61603,1,1.0,0,1.4913763999938965,104,1.0,3 +61604,1,1.0,0,1.2743785381317139,105,1.0,3 +61605,1,1.0,0,1.20037841796875,106,1.0,3 +61606,1,0.0,0,2.234376907348633,107,0.0,3 +61607,1,1.0,0,1.3223786354064941,108,0.0,3 +61608,1,1.0,0,1.5223760604858398,109,1.0,3 +61609,1,1.0,0,1.400377631187439,110,1.0,3 +61610,1,1.0,0,1.6153748035430908,111,1.0,3 +61611,1,1.0,0,1.4783766269683838,112,1.0,3 +61612,1,1.0,0,1.537375807762146,113,1.0,3 +61613,1,1.0,0,1.5913751125335693,114,1.0,3 +61614,1,1.0,0,1.2953786849975586,115,1.0,3 +61615,1,1.0,0,1.4063775539398193,116,1.0,3 +61616,1,1.0,0,1.9103710651397705,117,1.0,3 +61617,1,1.0,0,1.6263747215270996,118,1.0,3 +61618,1,1.0,0,1.5303759574890137,119,1.0,3 +61619,1,1.0,0,1.7333734035491943,120,1.0,3 +61620,1,1.0,0,1.4643768072128296,121,1.0,3 +61621,1,0.0,0,1.6813740730285645,122,0.0,3 +61622,1,1.0,0,1.1983784437179565,123,1.0,3 +61623,1,1.0,0,1.9223709106445312,124,1.0,3 +61624,1,1.0,0,1.4723767042160034,125,1.0,3 +61625,1,1.0,0,1.6193747520446777,126,1.0,3 +61626,1,1.0,0,1.885371446609497,127,1.0,3 +61627,1,1.0,0,1.379377841949463,128,0.0,3 +61628,1,1.0,0,1.7693729400634766,129,1.0,3 +61629,1,1.0,0,1.609375,130,0.0,3 +61630,1,1.0,0,1.4973763227462769,131,1.0,3 +61631,1,1.0,0,1.8753714561462402,132,1.0,3 +61632,1,1.0,0,1.3243786096572876,133,1.0,3 +61633,1,1.0,0,1.4593768119812012,134,1.0,3 +61634,1,1.0,0,1.4313771724700928,135,1.0,3 +61635,1,1.0,0,1.7693729400634766,136,1.0,3 +61636,1,1.0,0,1.2963786125183105,137,1.0,3 +61637,1,1.0,0,1.3453782796859741,138,1.0,3 +61638,1,1.0,0,1.4323772192001343,139,1.0,3 +61639,1,0.0,0,1.8213722705841064,140,0.0,3 +61640,1,1.0,0,1.1873784065246582,141,1.0,3 +61641,1,1.0,0,1.264378547668457,142,1.0,3 +61642,1,0.0,0,1.2473785877227783,143,0.0,3 +61643,1,1.0,0,2.035369396209717,144,1.0,3 +61644,1,1.0,0,1.6423745155334473,145,1.0,3 +61645,1,1.0,0,1.6783740520477295,146,0.0,3 +61646,1,0.0,0,1.706373691558838,147,1.0,3 +61647,1,0.0,0,1.3903777599334717,148,0.0,3 +61648,1,1.0,0,2.1653738021850586,149,1.0,3 +61649,1,0.0,0,1.868371605873108,150,0.0,3 +61650,1,1.0,0,1.7633728981018066,151,1.0,3 +61651,1,1.0,0,1.7613730430603027,152,1.0,3 +61652,1,1.0,0,1.2603785991668701,153,1.0,3 +61653,1,1.0,0,1.1953784227371216,154,1.0,3 +61654,1,1.0,0,1.4643768072128296,155,1.0,3 +61655,1,1.0,0,1.7353732585906982,156,1.0,3 +61656,1,1.0,0,1.3063786029815674,157,1.0,3 +61657,1,0.0,0,1.584375262260437,158,0.0,3 +61658,1,1.0,0,1.3983776569366455,159,1.0,3 +61659,1,1.0,0,1.4163774251937866,160,1.0,3 +61660,1,0.0,0,1.2263784408569336,161,0.0,3 +61661,1,1.0,0,1.258378505706787,162,1.0,3 +61662,1,1.0,0,1.2213784456253052,163,0.0,3 +61663,1,1.0,0,1.2913786172866821,164,1.0,3 +61664,1,1.0,0,1.3503782749176025,165,1.0,3 +61665,1,1.0,0,1.4503769874572754,166,1.0,3 +61666,1,1.0,0,1.3983776569366455,167,1.0,3 +61667,1,1.0,0,1.541375756263733,168,1.0,3 +61668,1,1.0,0,1.3333784341812134,169,1.0,3 +61669,1,1.0,0,1.2843786478042603,170,1.0,3 +61670,1,1.0,0,1.9513704776763916,171,1.0,3 +61671,1,1.0,0,1.3393783569335938,172,1.0,3 +61672,1,1.0,0,1.9733703136444092,173,1.0,3 +61673,1,1.0,0,1.6613743305206299,174,1.0,3 +61674,1,1.0,0,1.4333771467208862,175,1.0,3 +61675,1,1.0,0,1.4303772449493408,176,1.0,3 +61676,1,1.0,0,1.3163787126541138,177,1.0,3 +61677,1,1.0,0,1.2423784732818604,178,1.0,3 +61678,1,1.0,0,1.6403745412826538,179,1.0,3 +61679,1,1.0,0,1.3663780689239502,180,1.0,3 +61680,1,1.0,0,1.5493756532669067,181,1.0,3 +61681,1,1.0,0,1.6623742580413818,182,1.0,3 +61682,1,1.0,0,1.6643742322921753,183,1.0,3 +61683,1,1.0,0,1.4253772497177124,184,1.0,3 +61684,1,1.0,0,1.4323772192001343,185,1.0,3 +61685,1,1.0,0,1.5643755197525024,186,1.0,3 +61686,1,1.0,0,1.3623781204223633,187,1.0,3 +61687,1,1.0,0,1.3053786754608154,188,1.0,3 +61688,1,1.0,0,1.3383784294128418,189,1.0,3 +61689,1,1.0,0,1.5443757772445679,190,1.0,3 +61690,1,1.0,0,1.353378176689148,191,1.0,3 +61691,1,1.0,0,1.444377064704895,192,1.0,3 +61692,1,1.0,0,1.2383785247802734,193,1.0,3 +61693,1,1.0,0,1.3693779706954956,194,0.0,3 +61694,1,0.0,0,1.699373722076416,195,0.0,3 +61695,1,1.0,0,1.7553730010986328,196,1.0,3 +61696,1,1.0,0,1.4993762969970703,197,1.0,3 +61697,1,1.0,0,1.7623729705810547,198,1.0,3 +61698,1,1.0,0,1.4033775329589844,199,1.0,3 +61699,1,1.0,0,1.588375210762024,200,1.0,3 +61700,1,1.0,0,1.3853777647018433,201,0.0,3 +61701,1,1.0,0,1.422377347946167,202,1.0,3 +61702,1,1.0,0,1.7673728466033936,203,1.0,3 +61703,1,1.0,0,1.4553768634796143,204,1.0,3 +61704,1,1.0,0,1.6173748970031738,205,1.0,3 +61705,1,1.0,0,1.2903785705566406,206,0.0,3 +61706,1,0.0,0,1.8223721981048584,207,0.0,3 +61707,1,1.0,0,1.511376142501831,208,1.0,3 +61708,1,1.0,0,1.7043737173080444,209,1.0,3 +61709,1,1.0,0,1.611374855041504,210,1.0,3 +61710,1,1.0,0,1.374377965927124,211,1.0,3 +61711,1,1.0,0,1.4153773784637451,212,1.0,3 +61712,1,1.0,0,1.3603781461715698,213,1.0,3 +61713,1,1.0,0,2.063369035720825,214,1.0,3 +61714,1,1.0,0,1.3463783264160156,215,1.0,3 +61715,1,0.0,0,1.7693729400634766,216,0.0,3 +61716,1,1.0,0,1.650374412536621,217,1.0,3 +61717,1,1.0,0,1.2463785409927368,218,1.0,3 +61718,1,1.0,0,1.750373125076294,219,1.0,3 +61719,1,1.0,0,1.3373783826828003,220,1.0,3 +61720,1,1.0,0,1.5003763437271118,221,1.0,3 +61721,1,1.0,0,1.7443732023239136,222,1.0,3 +61722,1,1.0,0,1.3383784294128418,223,1.0,3 +61723,1,1.0,0,1.2433785200119019,224,1.0,3 +61724,1,1.0,0,1.3083786964416504,225,1.0,3 +61725,1,1.0,0,1.4723767042160034,226,1.0,3 +61726,1,1.0,0,1.4173773527145386,227,0.0,3 +61727,1,1.0,0,1.6003750562667847,228,1.0,3 +61728,1,1.0,0,1.5163761377334595,229,0.0,3 +61729,1,1.0,0,1.3883777856826782,230,0.0,3 +61730,1,0.0,0,2.313380718231201,231,0.0,3 +61731,1,1.0,0,1.2543785572052002,232,1.0,3 +61732,1,1.0,0,1.2503786087036133,233,1.0,3 +61733,1,1.0,0,1.3463783264160156,234,1.0,3 +61734,1,1.0,0,1.6673741340637207,235,1.0,3 +61735,1,1.0,0,1.3913776874542236,236,1.0,3 +61736,1,1.0,0,1.4463770389556885,237,1.0,3 +61737,1,1.0,0,1.5673754215240479,238,0.0,3 +61738,1,0.0,0,1.3293784856796265,239,0.0,3 +61739,1,1.0,0,1.397377610206604,240,1.0,3 +61740,1,1.0,0,1.7573730945587158,241,0.0,3 +61741,1,1.0,0,1.6423745155334473,242,1.0,3 +61742,1,1.0,0,1.2503786087036133,243,1.0,3 +61743,1,1.0,0,1.8763715028762817,244,1.0,3 +61744,1,1.0,0,1.536375880241394,245,1.0,3 +61745,1,1.0,0,1.4833765029907227,246,1.0,3 +61746,1,1.0,0,1.5903751850128174,247,1.0,3 +61747,1,1.0,0,1.3183786869049072,248,1.0,3 +61748,1,1.0,0,1.2803785800933838,249,1.0,3 +61749,1,1.0,0,1.3903777599334717,250,1.0,3 +61750,1,1.0,0,1.3293784856796265,251,1.0,3 +61751,1,1.0,0,1.3163787126541138,252,1.0,3 +61752,1,1.0,0,1.2383785247802734,253,0.0,3 +61753,1,1.0,0,1.2513785362243652,254,1.0,3 +61754,1,0.0,0,1.4423770904541016,255,0.0,3 +61755,1,1.0,0,1.5523756742477417,256,1.0,3 +61756,1,1.0,0,1.8503718376159668,257,0.0,3 +61757,1,0.0,0,1.5613754987716675,258,0.0,3 +61758,1,1.0,0,1.3893777132034302,259,1.0,3 +61759,1,0.0,0,1.3723779916763306,260,0.0,3 +61760,1,1.0,0,1.5643755197525024,261,1.0,3 +61761,1,1.0,0,1.4973763227462769,262,0.0,3 +61762,1,1.0,0,2.2013754844665527,263,1.0,3 +61763,1,1.0,0,1.6373746395111084,264,1.0,3 +61764,1,1.0,0,1.6883739233016968,265,1.0,3 +61765,1,1.0,0,1.7543730735778809,266,1.0,3 +61766,1,0.0,0,1.297378659248352,267,1.0,3 +61767,1,0.0,0,1.5643755197525024,268,0.0,3 +61768,1,1.0,0,1.5713753700256348,269,1.0,3 +61769,1,0.0,0,1.7713727951049805,270,0.0,3 +61770,1,1.0,0,1.4533768892288208,271,0.0,3 +61771,1,1.0,0,1.6303746700286865,272,1.0,3 +61772,1,1.0,0,1.2623785734176636,273,1.0,3 +61773,1,1.0,0,1.1743783950805664,274,1.0,3 +61774,1,1.0,0,1.4133774042129517,275,1.0,3 +61775,1,1.0,0,1.3403784036636353,276,1.0,3 +61776,1,1.0,0,1.3333784341812134,277,1.0,3 +61777,1,1.0,0,1.4333771467208862,278,1.0,3 +61778,1,1.0,0,1.5313758850097656,279,0.0,3 +61779,1,0.0,0,1.5473756790161133,280,1.0,3 +61780,1,0.0,0,1.5543756484985352,281,0.0,3 +61781,1,1.0,0,1.4553768634796143,282,0.0,3 +61782,1,1.0,0,1.3253785371780396,283,1.0,3 +61783,1,1.0,0,1.4103775024414062,284,1.0,3 +61784,1,1.0,0,1.3113787174224854,285,1.0,3 +61785,1,1.0,0,1.7613730430603027,286,1.0,3 +61786,1,1.0,0,1.3163787126541138,287,1.0,3 +61787,1,1.0,0,1.4573768377304077,288,1.0,3 +61788,1,1.0,0,1.294378638267517,289,0.0,3 +61789,1,1.0,0,1.746373176574707,290,1.0,3 +61790,1,1.0,0,1.2283785343170166,291,1.0,3 +61791,1,1.0,0,1.2853785753250122,292,1.0,3 +61792,1,1.0,0,1.5573755502700806,293,1.0,3 +61793,1,1.0,0,1.2853785753250122,294,0.0,3 +61794,1,0.0,0,1.1683783531188965,295,0.0,3 +61795,1,0.0,0,2.030369520187378,296,0.0,3 +61796,1,0.0,0,1.3883777856826782,297,0.0,3 +61797,1,1.0,0,1.4903764724731445,298,1.0,3 +61798,1,1.0,0,1.2563785314559937,299,1.0,3 +61799,1,1.0,0,1.4733766317367554,300,1.0,3 +61800,1,0.0,0,1.2603785991668701,301,0.0,3 +61801,1,1.0,0,1.1763783693313599,302,1.0,3 +61802,1,1.0,0,1.3363784551620483,303,1.0,3 +61803,1,1.0,0,1.4303772449493408,304,1.0,3 +61804,1,0.0,0,1.6123749017715454,305,0.0,3 +61805,1,1.0,0,1.5513756275177002,306,1.0,3 +61806,1,1.0,0,1.4423770904541016,307,1.0,3 +61807,1,1.0,0,1.33137845993042,308,1.0,3 +61808,1,1.0,0,1.4983763694763184,309,1.0,3 +61809,1,1.0,0,1.540375828742981,310,0.0,3 +61810,1,1.0,0,1.426377296447754,311,1.0,3 +61811,1,0.0,0,1.4783766269683838,312,0.0,3 +61812,1,1.0,0,1.3293784856796265,313,1.0,3 +61813,1,1.0,0,1.5083762407302856,314,1.0,3 +61814,1,1.0,0,1.5253759622573853,315,1.0,3 +61815,1,1.0,0,1.4023776054382324,316,1.0,3 +61816,1,1.0,0,1.3203786611557007,317,1.0,3 +61817,1,0.0,0,1.197378396987915,318,0.0,3 +61818,1,1.0,0,1.6823740005493164,319,1.0,3 +61819,1,0.0,0,1.2913786172866821,320,0.0,3 +61820,1,0.0,0,1.3823778629302979,321,0.0,3 +61821,1,1.0,0,2.0553691387176514,322,0.0,3 +61822,1,0.0,0,1.5673754215240479,323,0.0,3 +61823,1,1.0,0,1.4623768329620361,324,1.0,3 +61824,1,1.0,0,1.4303772449493408,325,1.0,3 +61825,1,1.0,0,1.3613780736923218,326,1.0,3 +61826,1,1.0,0,1.5603755712509155,327,0.0,3 +61827,1,0.0,0,1.4993762969970703,328,0.0,3 +61828,1,0.0,0,1.511376142501831,329,0.0,3 +61829,1,1.0,0,1.4293771982192993,330,1.0,3 +61830,1,1.0,0,1.4733766317367554,331,1.0,3 +61831,1,1.0,0,1.1703784465789795,332,1.0,3 +61832,1,1.0,0,1.3773778676986694,333,1.0,3 +61833,1,1.0,0,1.2143784761428833,334,1.0,3 +61834,1,1.0,0,1.5043762922286987,335,1.0,3 +61835,1,1.0,0,1.374377965927124,336,1.0,3 +61836,1,1.0,0,1.5863752365112305,337,1.0,3 +61837,1,1.0,0,1.2763786315917969,338,1.0,3 +61838,1,0.0,0,1.6463744640350342,339,0.0,3 +61839,1,1.0,0,1.4323772192001343,340,1.0,3 +61840,1,1.0,0,1.536375880241394,341,1.0,3 +61841,1,1.0,0,1.5453757047653198,342,1.0,3 +61842,1,1.0,0,1.9483705759048462,343,1.0,3 +61843,1,1.0,0,1.267378568649292,344,0.0,3 +61844,1,0.0,0,2.2113757133483887,345,0.0,3 +61845,1,0.0,0,1.8743715286254883,346,0.0,3 +61846,1,0.0,0,1.4653767347335815,347,0.0,3 +61847,1,1.0,0,1.4463770389556885,348,1.0,3 +61848,1,1.0,0,1.3613780736923218,349,1.0,3 +61849,1,1.0,0,1.6753740310668945,350,1.0,3 +61850,1,1.0,0,1.3203786611557007,351,1.0,3 +61851,1,1.0,0,1.3143787384033203,352,1.0,3 +61852,1,1.0,0,1.5943751335144043,353,1.0,3 +61853,1,1.0,0,1.4763766527175903,354,1.0,3 +61854,1,1.0,0,1.3993775844573975,355,1.0,3 +61855,1,1.0,0,1.419377326965332,356,1.0,3 +61856,1,1.0,0,1.6123749017715454,357,1.0,3 +61857,1,1.0,0,1.2833786010742188,358,1.0,3 +61858,1,1.0,0,1.396377682685852,359,0.0,3 +61859,1,1.0,0,1.5023763179779053,360,1.0,3 +61860,1,1.0,0,1.610374927520752,361,0.0,3 +61861,1,0.0,0,1.8313720226287842,362,0.0,3 +61862,1,1.0,0,1.5573755502700806,363,1.0,3 +61863,1,1.0,0,1.697373867034912,364,1.0,3 +61864,1,1.0,0,1.3613780736923218,365,1.0,3 +61865,1,1.0,0,1.4373770952224731,366,0.0,3 +61866,1,1.0,0,1.5923751592636108,367,1.0,3 +61867,1,1.0,0,1.5943751335144043,368,1.0,3 +61868,1,1.0,0,1.3453782796859741,369,1.0,3 +61869,1,1.0,0,1.4213773012161255,370,1.0,3 +61870,1,1.0,0,1.4583768844604492,371,1.0,3 +61871,1,1.0,0,1.3283785581588745,372,1.0,3 +61872,1,1.0,0,1.1853784322738647,373,1.0,3 +61873,1,1.0,0,1.7333734035491943,374,1.0,3 +61874,1,1.0,0,1.2873786687850952,375,1.0,3 +61875,1,1.0,0,1.3903777599334717,376,0.0,3 +61876,1,1.0,0,1.2083784341812134,377,1.0,3 +61877,1,1.0,0,1.2693785429000854,378,1.0,3 +61878,1,1.0,0,1.264378547668457,379,1.0,3 +61879,1,1.0,0,1.3193786144256592,380,1.0,3 +61880,1,1.0,0,1.374377965927124,381,1.0,3 +61881,1,1.0,0,1.5563756227493286,382,0.0,3 +61882,1,1.0,0,1.5223760604858398,383,1.0,3 +61883,1,1.0,0,1.839371919631958,384,1.0,3 +61884,1,1.0,0,1.8743715286254883,385,1.0,3 +61885,1,1.0,0,1.750373125076294,386,0.0,3 +61886,1,1.0,0,1.378377914428711,387,1.0,3 +61887,1,1.0,0,1.9643703699111938,388,0.0,3 +61888,1,1.0,0,1.7003737688064575,389,1.0,3 +61889,1,1.0,0,1.5933752059936523,390,1.0,3 +61890,1,1.0,0,1.4243773221969604,391,1.0,3 +61891,1,1.0,0,1.199378490447998,392,1.0,3 +61892,1,1.0,0,1.5723754167556763,393,1.0,3 +61893,1,1.0,0,1.4253772497177124,394,1.0,3 +61894,1,1.0,0,1.2423784732818604,395,1.0,3 +61895,1,1.0,0,1.753373146057129,396,1.0,3 +61896,1,1.0,0,2.0163698196411133,397,1.0,3 +61897,1,1.0,0,1.2233785390853882,398,1.0,3 +61898,1,1.0,0,1.6753740310668945,399,1.0,3 +61899,1,1.0,0,1.3473782539367676,400,1.0,3 +61900,1,1.0,0,1.2513785362243652,401,1.0,3 +61901,1,1.0,0,1.258378505706787,402,0.0,3 +61902,1,1.0,0,1.3803778886795044,403,0.0,3 +61903,1,0.0,0,1.33137845993042,404,0.0,3 +61904,1,1.0,0,1.6693742275238037,405,1.0,3 +61905,1,1.0,0,1.4283772706985474,406,1.0,3 +61906,1,1.0,0,1.41837739944458,407,1.0,3 +61907,1,1.0,0,1.2623785734176636,408,0.0,3 +61908,1,1.0,0,1.4903764724731445,409,0.0,3 +61909,1,1.0,0,1.2233785390853882,410,1.0,3 +61910,1,1.0,0,1.705373764038086,411,1.0,3 +61911,1,1.0,0,1.3213785886764526,412,1.0,3 +61912,1,1.0,0,1.2473785877227783,413,1.0,3 +61913,1,1.0,0,1.304378628730774,414,1.0,3 +61914,1,1.0,0,1.1803784370422363,415,1.0,3 +61915,1,1.0,0,1.4833765029907227,416,1.0,3 +61916,1,1.0,0,1.5483757257461548,417,1.0,3 +61917,1,1.0,0,1.5243760347366333,418,1.0,3 +61918,1,1.0,0,1.348378300666809,419,1.0,3 +61919,1,1.0,0,1.3173786401748657,420,1.0,3 +61920,1,1.0,0,1.4753766059875488,421,1.0,3 +61921,1,1.0,0,1.5323759317398071,422,1.0,3 +61922,1,1.0,0,1.7623729705810547,423,1.0,3 +61923,1,1.0,0,1.2823786735534668,424,1.0,3 +61924,1,1.0,0,1.352378249168396,425,1.0,3 +61925,1,1.0,0,1.6473743915557861,426,0.0,3 +61926,1,1.0,0,1.9063711166381836,427,1.0,3 +61927,1,1.0,0,1.199378490447998,428,0.0,3 +61928,1,0.0,0,1.135378360748291,429,0.0,3 +61929,1,0.0,0,1.563375473022461,430,1.0,3 +61930,1,0.0,0,1.2253785133361816,431,0.0,3 +61931,1,0.0,0,1.7623729705810547,432,0.0,3 +61932,1,0.0,0,1.4833765029907227,433,0.0,3 +61933,1,1.0,0,2.0103697776794434,434,1.0,3 +61934,1,1.0,0,1.3633780479431152,435,1.0,3 +61935,1,1.0,0,1.3883777856826782,436,1.0,3 +61936,1,1.0,0,1.58037531375885,437,1.0,3 +61937,1,1.0,0,1.3613780736923218,438,1.0,3 +61938,1,1.0,0,1.304378628730774,439,1.0,3 +61939,1,1.0,0,1.5453757047653198,440,0.0,3 +61940,1,0.0,0,1.2783786058425903,441,0.0,3 +61941,1,1.0,0,1.5613754987716675,442,1.0,3 +61942,1,1.0,0,1.7823727130889893,443,1.0,3 +61943,1,0.0,0,1.2873786687850952,444,1.0,3 +61944,1,1.0,0,1.7373733520507812,445,1.0,3 +61945,1,1.0,0,1.3083786964416504,446,1.0,3 +61946,1,0.0,0,1.5263760089874268,447,0.0,3 +61947,1,1.0,0,1.4743766784667969,448,1.0,3 +61948,1,1.0,0,1.3613780736923218,449,1.0,3 +61949,1,1.0,0,1.701373815536499,450,1.0,3 +61950,1,1.0,0,1.2053784132003784,451,1.0,3 +61951,1,1.0,0,1.4973763227462769,452,1.0,3 +61952,1,1.0,0,1.7843726873397827,453,1.0,3 +61953,1,1.0,0,1.4793765544891357,454,1.0,3 +61954,1,1.0,0,1.6913738250732422,455,1.0,3 +61955,1,1.0,0,1.3213785886764526,456,0.0,3 +61956,1,0.0,0,1.9713702201843262,457,0.0,3 +61957,1,1.0,0,1.720373511314392,458,0.0,3 +61958,1,1.0,0,2.6583967208862305,459,1.0,3 +61959,1,1.0,0,1.2573785781860352,460,1.0,3 +61960,1,1.0,0,1.8093724250793457,461,1.0,3 +61961,1,1.0,0,1.326378583908081,462,1.0,3 +61962,1,1.0,0,1.2263784408569336,463,1.0,3 +61963,1,1.0,0,1.2103784084320068,464,1.0,3 +61964,1,1.0,0,1.467376708984375,465,1.0,3 +61965,1,1.0,0,1.400377631187439,466,1.0,3 +61966,1,1.0,0,1.2553786039352417,467,1.0,3 +61967,1,1.0,0,1.5483757257461548,468,0.0,3 +61968,1,1.0,0,1.6353745460510254,469,1.0,3 +61969,1,1.0,0,1.489376425743103,470,1.0,3 +61970,1,1.0,0,1.515376091003418,471,1.0,3 +61971,1,1.0,0,1.7543730735778809,472,1.0,3 +61972,1,1.0,0,1.4093774557113647,473,0.0,3 +61973,1,0.0,0,1.658374309539795,474,0.0,3 +61974,1,1.0,0,1.9393706321716309,475,1.0,3 +61975,1,1.0,0,1.8403719663619995,476,1.0,3 +61976,1,1.0,0,1.1933784484863281,477,1.0,3 +61977,1,0.0,0,1.2853785753250122,478,0.0,3 +61978,1,1.0,0,1.2873786687850952,479,1.0,3 +61979,1,1.0,0,1.202378511428833,480,0.0,3 +61980,1,0.0,0,1.1653783321380615,481,0.0,3 +61981,1,1.0,0,1.6023750305175781,482,1.0,3 +61982,1,1.0,0,1.3503782749176025,483,0.0,3 +61983,1,0.0,0,1.353378176689148,484,0.0,3 +61984,1,1.0,0,1.4613767862319946,485,1.0,3 +61985,1,1.0,0,1.938370704650879,486,1.0,3 +61986,1,1.0,0,1.4423770904541016,487,1.0,3 +61987,1,1.0,0,1.4903764724731445,488,1.0,3 +61988,1,1.0,0,1.4033775329589844,489,1.0,3 +61989,1,1.0,0,1.3433783054351807,490,1.0,3 +61990,1,1.0,0,1.2193784713745117,491,1.0,3 +61991,1,1.0,0,2.0113697052001953,492,1.0,3 +61992,1,1.0,0,1.6273746490478516,493,1.0,3 +61993,1,1.0,0,1.3423783779144287,494,1.0,3 +61994,1,1.0,0,1.2053784132003784,495,0.0,3 +61995,1,0.0,0,1.4603768587112427,496,0.0,3 +61996,1,0.0,0,1.4323772192001343,497,0.0,3 +61997,1,1.0,0,2.0623691082000732,498,1.0,3 +61998,1,1.0,0,1.9733703136444092,499,1.0,3 +61999,1,1.0,0,1.5563756227493286,500,1.0,3 +62000,1,1.0,1,1.7543730735778809,1,1.0,3 +62001,1,1.0,1,1.515376091003418,2,1.0,3 +62002,1,1.0,1,1.4913763999938965,3,1.0,3 +62003,1,1.0,1,2.025369644165039,4,1.0,3 +62004,1,0.0,1,1.2503786087036133,5,1.0,3 +62005,1,1.0,1,1.697373867034912,6,1.0,3 +62006,1,1.0,1,2.1983752250671387,7,1.0,3 +62007,1,0.0,1,1.2773785591125488,8,0.0,3 +62008,1,1.0,1,1.3453782796859741,9,1.0,3 +62009,1,0.0,1,1.2053784132003784,10,0.0,3 +62010,1,1.0,1,1.294378638267517,11,1.0,3 +62011,1,1.0,1,1.5943751335144043,12,1.0,3 +62012,1,1.0,1,1.4573768377304077,13,1.0,3 +62013,1,1.0,1,2.072369337081909,14,1.0,3 +62014,1,1.0,1,1.5283759832382202,15,1.0,3 +62015,1,1.0,1,1.3413783311843872,16,1.0,3 +62016,1,1.0,1,1.2183785438537598,17,1.0,3 +62017,1,1.0,1,1.3473782539367676,18,1.0,3 +62018,1,1.0,1,1.2343785762786865,19,1.0,3 +62019,1,1.0,1,1.6643742322921753,20,1.0,3 +62020,1,1.0,1,1.768372893333435,21,0.0,3 +62021,1,1.0,1,1.6013751029968262,22,0.0,3 +62022,1,0.0,1,1.401377558708191,23,1.0,3 +62023,1,0.0,1,1.2073785066604614,24,0.0,3 +62024,1,0.0,1,1.2823786735534668,25,0.0,3 +62025,1,0.0,1,1.3243786096572876,26,0.0,3 +62026,1,0.0,1,1.3133786916732788,27,0.0,3 +62027,1,1.0,1,2.0423693656921387,28,1.0,3 +62028,1,1.0,1,1.3883777856826782,29,1.0,3 +62029,1,1.0,1,1.374377965927124,30,1.0,3 +62030,1,1.0,1,1.3153786659240723,31,1.0,3 +62031,1,1.0,1,1.4313771724700928,32,1.0,3 +62032,1,0.0,1,1.3413783311843872,33,0.0,3 +62033,1,1.0,1,1.6173748970031738,34,1.0,3 +62034,1,1.0,1,1.908371090888977,35,1.0,3 +62035,1,1.0,1,1.2143784761428833,36,1.0,3 +62036,1,1.0,1,1.5863752365112305,37,0.0,3 +62037,1,1.0,1,1.651374340057373,38,1.0,3 +62038,1,1.0,1,1.2323784828186035,39,0.0,3 +62039,1,0.0,1,1.768372893333435,40,1.0,3 +62040,1,0.0,1,1.2163784503936768,41,0.0,3 +62041,1,0.0,1,2.2153759002685547,42,0.0,3 +62042,1,1.0,1,2.524390459060669,43,1.0,3 +62043,1,1.0,1,1.426377296447754,44,1.0,3 +62044,1,1.0,1,1.4983763694763184,45,1.0,3 +62045,1,1.0,1,1.3153786659240723,46,1.0,3 +62046,1,1.0,1,1.9873700141906738,47,1.0,3 +62047,1,1.0,1,1.3803778886795044,48,1.0,3 +62048,1,1.0,1,1.4093774557113647,49,0.0,3 +62049,1,0.0,1,1.3343784809112549,50,1.0,3 +62050,1,0.0,1,1.6193747520446777,51,1.0,3 +62051,1,0.0,1,1.3293784856796265,52,0.0,3 +62052,1,0.0,1,1.4523769617080688,53,0.0,3 +62053,1,1.0,1,2.023369550704956,54,1.0,3 +62054,1,1.0,1,1.533375859260559,55,1.0,3 +62055,1,1.0,1,1.5023763179779053,56,0.0,3 +62056,1,1.0,1,1.8763715028762817,57,1.0,3 +62057,1,1.0,1,1.303378701210022,58,1.0,3 +62058,1,1.0,1,1.2803785800933838,59,1.0,3 +62059,1,1.0,1,1.323378562927246,60,1.0,3 +62060,1,1.0,1,1.2483785152435303,61,0.0,3 +62061,1,0.0,1,1.4323772192001343,62,1.0,3 +62062,1,0.0,1,1.3473782539367676,63,1.0,3 +62063,1,0.0,1,1.5073761940002441,64,0.0,3 +62064,1,0.0,1,1.9653704166412354,65,0.0,3 +62065,1,1.0,1,1.6173748970031738,66,1.0,3 +62066,1,1.0,1,1.5223760604858398,67,1.0,3 +62067,1,1.0,1,1.9693703651428223,68,0.0,3 +62068,1,0.0,1,1.5003763437271118,69,0.0,3 +62069,1,1.0,1,1.6693742275238037,70,1.0,3 +62070,1,1.0,1,1.3633780479431152,71,0.0,3 +62071,1,1.0,1,1.5033762454986572,72,0.0,3 +62072,1,0.0,1,1.2963786125183105,73,0.0,3 +62073,1,1.0,1,1.7693729400634766,74,1.0,3 +62074,1,1.0,1,1.4533768892288208,75,1.0,3 +62075,1,1.0,1,1.297378659248352,76,0.0,3 +62076,1,0.0,1,1.233378529548645,77,1.0,3 +62077,1,0.0,1,1.5253759622573853,78,1.0,3 +62078,1,0.0,1,1.3123786449432373,79,0.0,3 +62079,1,1.0,1,1.820372223854065,80,1.0,3 +62080,1,1.0,1,1.676374077796936,81,0.0,3 +62081,1,1.0,1,1.6683741807937622,82,1.0,3 +62082,1,1.0,1,1.5083762407302856,83,0.0,3 +62083,1,0.0,1,1.4113774299621582,84,0.0,3 +62084,1,0.0,1,1.6563743352890015,85,1.0,3 +62085,1,0.0,1,1.7413733005523682,86,0.0,3 +62086,1,0.0,1,1.4523769617080688,87,0.0,3 +62087,1,0.0,1,1.9793701171875,88,1.0,3 +62088,1,0.0,1,1.6923738718032837,89,1.0,3 +62089,1,0.0,1,1.4313771724700928,90,0.0,3 +62090,1,1.0,1,1.4433770179748535,91,1.0,3 +62091,1,0.0,1,2.1073708534240723,92,0.0,3 +62092,1,1.0,1,1.559375524520874,93,1.0,3 +62093,1,0.0,1,1.1953784227371216,94,1.0,3 +62094,1,0.0,1,1.5343759059906006,95,1.0,3 +62095,1,1.0,1,1.6693742275238037,96,1.0,3 +62096,1,0.0,1,1.7563730478286743,97,0.0,3 +62097,1,1.0,1,1.8563717603683472,98,1.0,3 +62098,1,1.0,1,1.7123736143112183,99,0.0,3 +62099,1,0.0,1,1.4393770694732666,100,0.0,3 +62100,1,0.0,1,1.6923738718032837,101,0.0,3 +62101,1,1.0,1,1.9453706741333008,102,1.0,3 +62102,1,1.0,1,1.47037672996521,103,1.0,3 +62103,1,1.0,1,1.7043737173080444,104,1.0,3 +62104,1,1.0,1,1.7073736190795898,105,1.0,3 +62105,1,1.0,1,1.237378478050232,106,1.0,3 +62106,1,0.0,1,1.4433770179748535,107,1.0,3 +62107,1,0.0,1,1.9933700561523438,108,0.0,3 +62108,1,1.0,1,1.7043737173080444,109,0.0,3 +62109,1,0.0,1,1.2443785667419434,110,0.0,3 +62110,1,1.0,1,2.3533825874328613,111,1.0,3 +62111,1,1.0,1,1.2433785200119019,112,1.0,3 +62112,1,1.0,1,1.3633780479431152,113,0.0,3 +62113,1,0.0,1,1.400377631187439,114,1.0,3 +62114,1,0.0,1,1.2323784828186035,115,0.0,3 +62115,1,0.0,1,1.2163784503936768,116,0.0,3 +62116,1,0.0,1,1.7093737125396729,117,0.0,3 +62117,1,0.0,1,1.6833739280700684,118,0.0,3 +62118,1,0.0,1,1.267378568649292,119,1.0,3 +62119,1,0.0,1,1.2283785343170166,120,1.0,3 +62120,1,0.0,1,1.1873784065246582,121,1.0,3 +62121,1,0.0,1,1.2343785762786865,122,0.0,3 +62122,1,0.0,1,1.7593729496002197,123,0.0,3 +62123,1,0.0,1,1.5763753652572632,124,0.0,3 +62124,1,0.0,1,1.658374309539795,125,0.0,3 +62125,1,1.0,1,2.068369150161743,126,0.0,3 +62126,1,0.0,1,2.338381767272949,127,1.0,3 +62127,1,0.0,1,1.3363784551620483,128,1.0,3 +62128,1,0.0,1,1.396377682685852,129,1.0,3 +62129,1,0.0,1,1.349378228187561,130,0.0,3 +62130,1,1.0,1,1.1813783645629883,131,1.0,3 +62131,1,1.0,1,1.2883785963058472,132,1.0,3 +62132,1,1.0,1,1.890371322631836,133,0.0,3 +62133,1,0.0,1,1.6263747215270996,134,0.0,3 +62134,1,0.0,1,1.706373691558838,135,0.0,3 +62135,1,0.0,1,1.8263721466064453,136,0.0,3 +62136,1,1.0,1,1.6253747940063477,137,0.0,3 +62137,1,0.0,1,1.3733779191970825,138,0.0,3 +62138,1,0.0,1,1.197378396987915,139,0.0,3 +62139,1,0.0,1,1.326378583908081,140,1.0,3 +62140,1,0.0,1,1.4763766527175903,141,0.0,3 +62141,1,1.0,1,1.2953786849975586,142,1.0,3 +62142,1,1.0,1,1.753373146057129,143,1.0,3 +62143,1,0.0,1,1.3693779706954956,144,1.0,3 +62144,1,0.0,1,1.7873725891113281,145,0.0,3 +62145,1,1.0,1,1.6293747425079346,146,1.0,3 +62146,1,1.0,1,1.5933752059936523,147,0.0,3 +62147,1,0.0,1,1.3583781719207764,148,1.0,3 +62148,1,0.0,1,1.2353785037994385,149,1.0,3 +62149,1,0.0,1,1.2843786478042603,150,0.0,3 +62150,1,1.0,1,1.58037531375885,151,0.0,3 +62151,1,1.0,1,1.6223747730255127,152,1.0,3 +62152,1,1.0,1,1.562375545501709,153,1.0,3 +62153,1,1.0,1,1.233378529548645,154,0.0,3 +62154,1,0.0,1,2.1663737297058105,155,0.0,3 +62155,1,1.0,1,1.7213735580444336,156,1.0,3 +62156,1,1.0,1,1.3133786916732788,157,0.0,3 +62157,1,0.0,1,1.4953763484954834,158,0.0,3 +62158,1,1.0,1,1.2753785848617554,159,0.0,3 +62159,1,1.0,1,1.3333784341812134,160,1.0,3 +62160,1,1.0,1,1.4793765544891357,161,1.0,3 +62161,1,1.0,1,1.4123774766921997,162,1.0,3 +62162,1,1.0,1,1.3883777856826782,163,0.0,3 +62163,1,0.0,1,1.9253709316253662,164,1.0,3 +62164,1,0.0,1,1.7833726406097412,165,0.0,3 +62165,1,0.0,1,1.8303720951080322,166,0.0,3 +62166,1,1.0,1,1.651374340057373,167,0.0,3 +62167,1,1.0,1,1.650374412536621,168,1.0,3 +62168,1,1.0,1,1.240378499031067,169,1.0,3 +62169,1,1.0,1,1.9993698596954346,170,1.0,3 +62170,1,1.0,1,1.47037672996521,171,1.0,3 +62171,1,1.0,1,1.294378638267517,172,1.0,3 +62172,1,1.0,1,1.6733741760253906,173,1.0,3 +62173,1,1.0,1,1.3773778676986694,174,1.0,3 +62174,1,1.0,1,1.4253772497177124,175,1.0,3 +62175,1,1.0,1,1.6373746395111084,176,0.0,3 +62176,1,0.0,1,1.5683754682540894,177,0.0,3 +62177,1,1.0,1,1.9963699579238892,178,1.0,3 +62178,1,1.0,1,1.4533768892288208,179,1.0,3 +62179,1,1.0,1,1.4243773221969604,180,1.0,3 +62180,1,1.0,1,1.323378562927246,181,1.0,3 +62181,1,1.0,1,1.3093786239624023,182,0.0,3 +62182,1,0.0,1,1.267378568649292,183,0.0,3 +62183,1,0.0,1,1.2563785314559937,184,0.0,3 +62184,1,1.0,1,2.071369171142578,185,1.0,3 +62185,1,1.0,1,1.4813765287399292,186,1.0,3 +62186,1,1.0,1,1.4173773527145386,187,1.0,3 +62187,1,1.0,1,1.4583768844604492,188,0.0,3 +62188,1,0.0,1,2.06636905670166,189,1.0,3 +62189,1,0.0,1,1.4293771982192993,190,0.0,3 +62190,1,0.0,1,1.5793752670288086,191,1.0,3 +62191,1,0.0,1,1.2843786478042603,192,1.0,3 +62192,1,0.0,1,1.2093784809112549,193,0.0,3 +62193,1,0.0,1,1.3923777341842651,194,0.0,3 +62194,1,1.0,1,1.4143774509429932,195,1.0,3 +62195,1,1.0,1,1.5973751544952393,196,1.0,3 +62196,1,1.0,1,1.7443732023239136,197,0.0,3 +62197,1,0.0,1,1.8333721160888672,198,0.0,3 +62198,1,1.0,1,2.3293814659118652,199,0.0,3 +62199,1,1.0,1,1.3723779916763306,200,1.0,3 +62200,1,1.0,1,1.5043762922286987,201,1.0,3 +62201,1,0.0,1,1.2153785228729248,202,0.0,3 +62202,1,1.0,1,1.4463770389556885,203,0.0,3 +62203,1,1.0,1,1.9693703651428223,204,0.0,3 +62204,1,0.0,1,1.8733716011047363,205,0.0,3 +62205,1,1.0,1,2.1303720474243164,206,1.0,3 +62206,1,1.0,1,1.3403784036636353,207,0.0,3 +62207,1,0.0,1,1.5383758544921875,208,0.0,3 +62208,1,0.0,1,1.745373249053955,209,0.0,3 +62209,1,1.0,1,1.6653742790222168,210,0.0,3 +62210,1,1.0,1,1.4533768892288208,211,0.0,3 +62211,1,0.0,1,1.5723754167556763,212,1.0,3 +62212,1,0.0,1,1.7263734340667725,213,0.0,3 +62213,1,0.0,1,2.1093711853027344,214,0.0,3 +62214,1,0.0,1,1.4423770904541016,215,0.0,3 +62215,1,1.0,1,1.5823752880096436,216,0.0,3 +62216,1,0.0,1,2.1593732833862305,217,1.0,3 +62217,1,0.0,1,1.4243773221969604,218,0.0,3 +62218,1,0.0,1,1.1583783626556396,219,1.0,3 +62219,1,0.0,1,1.3283785581588745,220,0.0,3 +62220,1,0.0,1,1.3543782234191895,221,0.0,3 +62221,1,1.0,1,1.4563769102096558,222,0.0,3 +62222,1,1.0,1,1.7103736400604248,223,1.0,3 +62223,1,1.0,1,1.5013762712478638,224,1.0,3 +62224,1,1.0,1,1.353378176689148,225,1.0,3 +62225,1,1.0,1,1.4043775796890259,226,1.0,3 +62226,1,1.0,1,1.2483785152435303,227,0.0,3 +62227,1,0.0,1,2.296379804611206,228,1.0,3 +62228,1,0.0,1,1.2683786153793335,229,0.0,3 +62229,1,0.0,1,1.9003711938858032,230,1.0,3 +62230,1,0.0,1,1.5913751125335693,231,0.0,3 +62231,1,1.0,1,2.0023698806762695,232,0.0,3 +62232,1,0.0,1,1.4203773736953735,233,0.0,3 +62233,1,1.0,1,1.4603768587112427,234,0.0,3 +62234,1,1.0,1,1.9203709363937378,235,1.0,3 +62235,1,1.0,1,1.4283772706985474,236,1.0,3 +62236,1,1.0,1,1.489376425743103,237,1.0,3 +62237,1,1.0,1,1.2713786363601685,238,1.0,3 +62238,1,1.0,1,1.4163774251937866,239,1.0,3 +62239,1,1.0,1,1.5563756227493286,240,1.0,3 +62240,1,1.0,1,1.2233785390853882,241,1.0,3 +62241,1,1.0,1,1.7853727340698242,242,1.0,3 +62242,1,1.0,1,1.4103775024414062,243,1.0,3 +62243,1,1.0,1,1.651374340057373,244,0.0,3 +62244,1,0.0,1,1.49337637424469,245,1.0,3 +62245,1,1.0,1,1.3983776569366455,246,1.0,3 +62246,1,0.0,1,2.0903701782226562,247,0.0,3 +62247,1,1.0,1,1.4123774766921997,248,1.0,3 +62248,1,0.0,1,1.7593729496002197,249,1.0,3 +62249,1,0.0,1,1.93337082862854,250,1.0,3 +62250,1,0.0,1,2.289379596710205,251,0.0,3 +62251,1,1.0,1,1.6423745155334473,252,0.0,3 +62252,1,0.0,1,1.653374433517456,253,0.0,3 +62253,1,1.0,1,1.7613730430603027,254,1.0,3 +62254,1,1.0,1,1.9293708801269531,255,1.0,3 +62255,1,1.0,1,1.4273772239685059,256,1.0,3 +62256,1,1.0,1,1.5163761377334595,257,0.0,3 +62257,1,0.0,1,1.3763779401779175,258,1.0,3 +62258,1,0.0,1,1.3993775844573975,259,1.0,3 +62259,1,0.0,1,1.2043784856796265,260,1.0,3 +62260,1,0.0,1,1.8063724040985107,261,1.0,3 +62261,1,0.0,1,1.3823778629302979,262,1.0,3 +62262,1,0.0,1,1.3463783264160156,263,0.0,3 +62263,1,1.0,1,1.448377013206482,264,1.0,3 +62264,1,0.0,1,1.3543782234191895,265,0.0,3 +62265,1,1.0,1,1.5653754472732544,266,0.0,3 +62266,1,1.0,1,1.7253735065460205,267,1.0,3 +62267,1,1.0,1,1.1703784465789795,268,1.0,3 +62268,1,1.0,1,1.2933785915374756,269,1.0,3 +62269,1,1.0,1,1.7823727130889893,270,0.0,3 +62270,1,1.0,1,1.6753740310668945,271,0.0,3 +62271,1,1.0,1,1.3903777599334717,272,1.0,3 +62272,1,1.0,1,1.5613754987716675,273,1.0,3 +62273,1,1.0,1,1.2543785572052002,274,1.0,3 +62274,1,1.0,1,1.4503769874572754,275,1.0,3 +62275,1,1.0,1,1.9113709926605225,276,1.0,3 +62276,1,1.0,1,1.4433770179748535,277,1.0,3 +62277,1,1.0,1,1.3463783264160156,278,0.0,3 +62278,1,1.0,1,1.3353784084320068,279,0.0,3 +62279,1,0.0,1,1.4043775796890259,280,1.0,3 +62280,1,0.0,1,1.466376781463623,281,0.0,3 +62281,1,1.0,1,1.6343746185302734,282,0.0,3 +62282,1,1.0,1,1.793372631072998,283,1.0,3 +62283,1,1.0,1,2.304380178451538,284,1.0,3 +62284,1,1.0,1,1.768372893333435,285,1.0,3 +62285,1,1.0,1,1.4803766012191772,286,0.0,3 +62286,1,1.0,1,1.2763786315917969,287,0.0,3 +62287,1,1.0,1,1.885371446609497,288,1.0,3 +62288,1,1.0,1,1.2573785781860352,289,1.0,3 +62289,1,0.0,1,1.3553781509399414,290,0.0,3 +62290,1,1.0,1,1.3903777599334717,291,1.0,3 +62291,1,1.0,1,1.5173760652542114,292,1.0,3 +62292,1,1.0,1,1.233378529548645,293,0.0,3 +62293,1,1.0,1,1.8293721675872803,294,0.0,3 +62294,1,1.0,1,2.1923749446868896,295,1.0,3 +62295,1,1.0,1,1.2713786363601685,296,1.0,3 +62296,1,1.0,1,1.7253735065460205,297,1.0,3 +62297,1,1.0,1,1.3373783826828003,298,0.0,3 +62298,1,0.0,1,1.2883785963058472,299,1.0,3 +62299,1,1.0,1,1.4813765287399292,300,1.0,3 +62300,1,1.0,1,1.4993762969970703,301,1.0,3 +62301,1,0.0,1,1.540375828742981,302,0.0,3 +62302,1,1.0,1,1.606374979019165,303,1.0,3 +62303,1,1.0,1,1.3633780479431152,304,1.0,3 +62304,1,1.0,1,1.3213785886764526,305,0.0,3 +62305,1,1.0,1,1.4503769874572754,306,0.0,3 +62306,1,0.0,1,1.2223784923553467,307,1.0,3 +62307,1,0.0,1,1.2783786058425903,308,0.0,3 +62308,1,0.0,1,1.7333734035491943,309,0.0,3 +62309,1,1.0,1,1.466376781463623,310,1.0,3 +62310,1,1.0,1,1.8343720436096191,311,1.0,3 +62311,1,1.0,1,1.5253759622573853,312,1.0,3 +62312,1,1.0,1,1.4103775024414062,313,1.0,3 +62313,1,1.0,1,1.379377841949463,314,1.0,3 +62314,1,1.0,1,1.4843765497207642,315,1.0,3 +62315,1,1.0,1,1.588375210762024,316,1.0,3 +62316,1,1.0,1,1.4783766269683838,317,0.0,3 +62317,1,0.0,1,1.5983750820159912,318,1.0,3 +62318,1,0.0,1,1.584375262260437,319,0.0,3 +62319,1,1.0,1,1.4743766784667969,320,0.0,3 +62320,1,0.0,1,1.496376395225525,321,1.0,3 +62321,1,0.0,1,1.3103786706924438,322,0.0,3 +62322,1,0.0,1,2.1243717670440674,323,0.0,3 +62323,1,0.0,1,1.2323784828186035,324,1.0,3 +62324,1,0.0,1,1.2653785943984985,325,1.0,3 +62325,1,0.0,1,1.202378511428833,326,0.0,3 +62326,1,1.0,1,1.9263708591461182,327,1.0,3 +62327,1,1.0,1,1.2233785390853882,328,1.0,3 +62328,1,1.0,1,1.47037672996521,329,1.0,3 +62329,1,1.0,1,2.0053699016571045,330,1.0,3 +62330,1,1.0,1,1.7633728981018066,331,1.0,3 +62331,1,1.0,1,1.1613783836364746,332,1.0,3 +62332,1,1.0,1,1.489376425743103,333,1.0,3 +62333,1,1.0,1,1.8733716011047363,334,1.0,3 +62334,1,1.0,1,1.4783766269683838,335,1.0,3 +62335,1,1.0,1,1.676374077796936,336,1.0,3 +62336,1,1.0,1,1.2313785552978516,337,1.0,3 +62337,1,1.0,1,1.371377944946289,338,0.0,3 +62338,1,0.0,1,2.230376720428467,339,1.0,3 +62339,1,0.0,1,1.8243721723556519,340,1.0,3 +62340,1,0.0,1,1.7323733568191528,341,0.0,3 +62341,1,0.0,1,2.3683831691741943,342,0.0,3 +62342,1,1.0,1,1.5193760395050049,343,1.0,3 +62343,1,1.0,1,1.7173736095428467,344,1.0,3 +62344,1,1.0,1,1.4783766269683838,345,1.0,3 +62345,1,1.0,1,1.7183735370635986,346,1.0,3 +62346,1,1.0,1,1.8763715028762817,347,1.0,3 +62347,1,1.0,1,1.4253772497177124,348,1.0,3 +62348,1,1.0,1,1.3393783569335938,349,0.0,3 +62349,1,1.0,1,1.749373197555542,350,0.0,3 +62350,1,1.0,1,1.8993711471557617,351,1.0,3 +62351,1,1.0,1,1.3843778371810913,352,1.0,3 +62352,1,1.0,1,1.5973751544952393,353,1.0,3 +62353,1,1.0,1,1.326378583908081,354,0.0,3 +62354,1,1.0,1,1.4853764772415161,355,1.0,3 +62355,1,1.0,1,1.4133774042129517,356,1.0,3 +62356,1,1.0,1,1.4373770952224731,357,0.0,3 +62357,1,0.0,1,1.2653785943984985,358,1.0,3 +62358,1,0.0,1,1.2203785181045532,359,0.0,3 +62359,1,0.0,1,1.1983784437179565,360,0.0,3 +62360,1,1.0,1,1.5783753395080566,361,0.0,3 +62361,1,0.0,1,1.393377661705017,362,0.0,3 +62362,1,0.0,1,1.6173748970031738,363,1.0,3 +62363,1,1.0,1,1.3133786916732788,364,1.0,3 +62364,1,0.0,1,1.7623729705810547,365,0.0,3 +62365,1,1.0,1,1.7883726358413696,366,1.0,3 +62366,1,1.0,1,1.4603768587112427,367,0.0,3 +62367,1,0.0,1,1.3373783826828003,368,1.0,3 +62368,1,0.0,1,1.3693779706954956,369,0.0,3 +62369,1,1.0,1,1.3943777084350586,370,1.0,3 +62370,1,1.0,1,1.845371961593628,371,0.0,3 +62371,1,1.0,1,1.5463757514953613,372,1.0,3 +62372,1,1.0,1,1.4143774509429932,373,1.0,3 +62373,1,1.0,1,1.4063775539398193,374,1.0,3 +62374,1,1.0,1,1.588375210762024,375,1.0,3 +62375,1,1.0,1,1.227378487586975,376,1.0,3 +62376,1,1.0,1,1.5813753604888916,377,0.0,3 +62377,1,1.0,1,1.611374855041504,378,1.0,3 +62378,1,0.0,1,1.791372537612915,379,0.0,3 +62379,1,1.0,1,1.3513782024383545,380,1.0,3 +62380,1,0.0,1,1.301378607749939,381,0.0,3 +62381,1,1.0,1,2.076369524002075,382,1.0,3 +62382,1,1.0,1,1.5893752574920654,383,1.0,3 +62383,1,1.0,1,1.4743766784667969,384,1.0,3 +62384,1,1.0,1,1.3143787384033203,385,1.0,3 +62385,1,1.0,1,1.5513756275177002,386,0.0,3 +62386,1,0.0,1,1.540375828742981,387,0.0,3 +62387,1,1.0,1,1.4783766269683838,388,1.0,3 +62388,1,1.0,1,1.952370524406433,389,1.0,3 +62389,1,1.0,1,1.3243786096572876,390,1.0,3 +62390,1,1.0,1,1.301378607749939,391,1.0,3 +62391,1,1.0,1,1.4283772706985474,392,0.0,3 +62392,1,1.0,1,2.264378309249878,393,1.0,3 +62393,1,1.0,1,1.8693716526031494,394,1.0,3 +62394,1,1.0,1,1.6853740215301514,395,1.0,3 +62395,1,1.0,1,1.3923777341842651,396,1.0,3 +62396,1,1.0,1,1.379377841949463,397,1.0,3 +62397,1,1.0,1,1.2833786010742188,398,1.0,3 +62398,1,1.0,1,1.3723779916763306,399,1.0,3 +62399,1,1.0,1,1.3243786096572876,400,1.0,3 +62400,1,1.0,1,1.2103784084320068,401,0.0,3 +62401,1,1.0,1,1.2683786153793335,402,1.0,3 +62402,1,1.0,1,1.273378610610962,403,1.0,3 +62403,1,1.0,1,1.9033710956573486,404,1.0,3 +62404,1,1.0,1,1.6243747472763062,405,1.0,3 +62405,1,1.0,1,1.960370421409607,406,1.0,3 +62406,1,1.0,1,1.613374948501587,407,0.0,3 +62407,1,1.0,1,2.1053709983825684,408,1.0,3 +62408,1,1.0,1,1.5133761167526245,409,1.0,3 +62409,1,1.0,1,1.4723767042160034,410,1.0,3 +62410,1,1.0,1,1.349378228187561,411,1.0,3 +62411,1,1.0,1,1.2213784456253052,412,1.0,3 +62412,1,1.0,1,1.5813753604888916,413,1.0,3 +62413,1,1.0,1,1.3383784294128418,414,1.0,3 +62414,1,1.0,1,1.393377661705017,415,0.0,3 +62415,1,1.0,1,1.6693742275238037,416,1.0,3 +62416,1,1.0,1,1.4423770904541016,417,1.0,3 +62417,1,1.0,1,1.609375,418,1.0,3 +62418,1,1.0,1,1.2683786153793335,419,1.0,3 +62419,1,1.0,1,1.3333784341812134,420,1.0,3 +62420,1,1.0,1,1.400377631187439,421,1.0,3 +62421,1,1.0,1,1.5723754167556763,422,0.0,3 +62422,1,1.0,1,1.4033775329589844,423,1.0,3 +62423,1,1.0,1,1.8953711986541748,424,0.0,3 +62424,1,1.0,1,1.7923725843429565,425,0.0,3 +62425,1,0.0,1,1.488376498222351,426,0.0,3 +62426,1,0.0,1,1.5433757305145264,427,0.0,3 +62427,1,1.0,1,1.6343746185302734,428,1.0,3 +62428,1,1.0,1,1.9733703136444092,429,1.0,3 +62429,1,1.0,1,1.2343785762786865,430,0.0,3 +62430,1,1.0,1,1.3503782749176025,431,1.0,3 +62431,1,1.0,1,1.4033775329589844,432,1.0,3 +62432,1,1.0,1,2.0923702716827393,433,1.0,3 +62433,1,1.0,1,1.864371657371521,434,1.0,3 +62434,1,1.0,1,1.4823765754699707,435,1.0,3 +62435,1,1.0,1,1.3223786354064941,436,1.0,3 +62436,1,1.0,1,1.5983750820159912,437,1.0,3 +62437,1,1.0,1,1.728373408317566,438,1.0,3 +62438,1,1.0,1,1.3203786611557007,439,1.0,3 +62439,1,1.0,1,1.263378620147705,440,0.0,3 +62440,1,0.0,1,1.7083736658096313,441,0.0,3 +62441,1,0.0,1,1.3723779916763306,442,0.0,3 +62442,1,1.0,1,1.6903738975524902,443,1.0,3 +62443,1,1.0,1,1.3143787384033203,444,1.0,3 +62444,1,1.0,1,1.3553781509399414,445,1.0,3 +62445,1,1.0,1,1.2853785753250122,446,1.0,3 +62446,1,1.0,1,1.5003763437271118,447,0.0,3 +62447,1,1.0,1,1.5493756532669067,448,0.0,3 +62448,1,0.0,1,1.2623785734176636,449,0.0,3 +62449,1,0.0,1,1.4983763694763184,450,0.0,3 +62450,1,1.0,1,1.4603768587112427,451,1.0,3 +62451,1,1.0,1,1.4863765239715576,452,0.0,3 +62452,1,0.0,1,1.680374026298523,453,0.0,3 +62453,1,0.0,1,1.2533785104751587,454,0.0,3 +62454,1,1.0,1,1.9013712406158447,455,1.0,3 +62455,1,1.0,1,1.4433770179748535,456,1.0,3 +62456,1,1.0,1,1.49337637424469,457,1.0,3 +62457,1,1.0,1,1.488376498222351,458,1.0,3 +62458,1,1.0,1,1.2383785247802734,459,1.0,3 +62459,1,1.0,1,1.7043737173080444,460,1.0,3 +62460,1,1.0,1,1.2713786363601685,461,1.0,3 +62461,1,1.0,1,1.239378571510315,462,1.0,3 +62462,1,0.0,1,1.2963786125183105,463,0.0,3 +62463,1,1.0,1,1.6603742837905884,464,0.0,3 +62464,1,0.0,1,1.3293784856796265,465,1.0,3 +62465,1,0.0,1,2.0903701782226562,466,0.0,3 +62466,1,0.0,1,1.7923725843429565,467,1.0,3 +62467,1,0.0,1,1.651374340057373,468,0.0,3 +62468,1,0.0,1,1.3423783779144287,469,0.0,3 +62469,1,1.0,1,1.2743785381317139,470,1.0,3 +62470,1,1.0,1,1.3723779916763306,471,1.0,3 +62471,1,1.0,1,1.540375828742981,472,1.0,3 +62472,1,1.0,1,1.5243760347366333,473,1.0,3 +62473,1,0.0,1,1.8773715496063232,474,0.0,3 +62474,1,1.0,1,1.5853753089904785,475,1.0,3 +62475,1,1.0,1,1.4823765754699707,476,0.0,3 +62476,1,1.0,1,1.8563717603683472,477,1.0,3 +62477,1,1.0,1,1.5193760395050049,478,0.0,3 +62478,1,1.0,1,1.7873725891113281,479,1.0,3 +62479,1,1.0,1,1.5273759365081787,480,1.0,3 +62480,1,0.0,1,1.400377631187439,481,1.0,3 +62481,1,1.0,1,1.3433783054351807,482,1.0,3 +62482,1,0.0,1,1.5083762407302856,483,0.0,3 +62483,1,1.0,1,1.6753740310668945,484,0.0,3 +62484,1,0.0,1,1.8143723011016846,485,1.0,3 +62485,1,0.0,1,1.378377914428711,486,1.0,3 +62486,1,0.0,1,1.426377296447754,487,1.0,3 +62487,1,0.0,1,1.378377914428711,488,0.0,3 +62488,1,0.0,1,1.2233785390853882,489,1.0,3 +62489,1,0.0,1,1.374377965927124,490,0.0,3 +62490,1,0.0,1,2.4303860664367676,491,1.0,3 +62491,1,0.0,1,1.352378249168396,492,0.0,3 +62492,1,1.0,1,1.445376992225647,493,1.0,3 +62493,1,1.0,1,1.6723741292953491,494,1.0,3 +62494,1,1.0,1,1.3383784294128418,495,0.0,3 +62495,1,1.0,1,1.49337637424469,496,1.0,3 +62496,1,1.0,1,1.2893786430358887,497,0.0,3 +62497,1,1.0,1,1.4343771934509277,498,1.0,3 +62498,1,1.0,1,1.4423770904541016,499,1.0,3 +62499,1,1.0,1,1.3603781461715698,500,1.0,3 +62500,1,1.0,2,1.5353758335113525,1,0.0,3 +62501,1,0.0,2,1.2323784828186035,2,1.0,3 +62502,1,0.0,2,1.2433785200119019,3,1.0,3 +62503,1,0.0,2,1.197378396987915,4,0.0,3 +62504,1,0.0,2,1.2783786058425903,5,1.0,3 +62505,1,0.0,2,1.5423758029937744,6,0.0,3 +62506,1,0.0,2,1.6413745880126953,7,1.0,3 +62507,1,0.0,2,1.2773785591125488,8,0.0,3 +62508,1,1.0,2,1.4733766317367554,9,0.0,3 +62509,1,1.0,2,1.7523730993270874,10,1.0,3 +62510,1,1.0,2,1.2463785409927368,11,1.0,3 +62511,1,1.0,2,1.6003750562667847,12,0.0,3 +62512,1,1.0,2,1.9243708848953247,13,1.0,3 +62513,1,1.0,2,1.3863778114318848,14,1.0,3 +62514,1,1.0,2,1.444377064704895,15,0.0,3 +62515,1,0.0,2,1.5133761167526245,16,1.0,3 +62516,1,0.0,2,1.3193786144256592,17,0.0,3 +62517,1,0.0,2,1.6683741807937622,18,1.0,3 +62518,1,0.0,2,1.4053775072097778,19,0.0,3 +62519,1,0.0,2,1.3323785066604614,20,0.0,3 +62520,1,0.0,2,1.7813727855682373,21,0.0,3 +62521,1,1.0,2,1.7673728466033936,22,1.0,3 +62522,1,1.0,2,1.3733779191970825,23,1.0,3 +62523,1,1.0,2,1.370378017425537,24,0.0,3 +62524,1,1.0,2,1.371377944946289,25,0.0,3 +62525,1,0.0,2,1.8143723011016846,26,1.0,3 +62526,1,0.0,2,1.588375210762024,27,1.0,3 +62527,1,0.0,2,1.5223760604858398,28,1.0,3 +62528,1,0.0,2,1.4173773527145386,29,0.0,3 +62529,1,0.0,2,2.3683831691741943,30,1.0,3 +62530,1,0.0,2,1.3433783054351807,31,0.0,3 +62531,1,0.0,2,1.5613754987716675,32,1.0,3 +62532,1,0.0,2,1.4253772497177124,33,1.0,3 +62533,1,0.0,2,1.4423770904541016,34,0.0,3 +62534,1,0.0,2,1.4743766784667969,35,0.0,3 +62535,1,1.0,2,1.5493756532669067,36,0.0,3 +62536,1,0.0,2,1.8633716106414795,37,0.0,3 +62537,1,0.0,2,1.2283785343170166,38,0.0,3 +62538,1,1.0,2,1.264378547668457,39,0.0,3 +62539,1,1.0,2,1.5723754167556763,40,0.0,3 +62540,1,1.0,2,1.3723779916763306,41,1.0,3 +62541,1,1.0,2,1.327378511428833,42,0.0,3 +62542,1,1.0,2,1.7403732538223267,43,0.0,3 +62543,1,0.0,2,1.2873786687850952,44,1.0,3 +62544,1,0.0,2,1.2343785762786865,45,0.0,3 +62545,1,0.0,2,1.2343785762786865,46,1.0,3 +62546,1,0.0,2,1.1523783206939697,47,0.0,3 +62547,1,0.0,2,1.2623785734176636,48,0.0,3 +62548,1,0.0,2,2.217376232147217,49,0.0,3 +62549,1,1.0,2,1.6003750562667847,50,1.0,3 +62550,1,1.0,2,1.4583768844604492,51,1.0,3 +62551,1,1.0,2,1.5023763179779053,52,1.0,3 +62552,1,1.0,2,1.393377661705017,53,1.0,3 +62553,1,1.0,2,1.4273772239685059,54,1.0,3 +62554,1,1.0,2,1.4053775072097778,55,0.0,3 +62555,1,1.0,2,1.5903751850128174,56,1.0,3 +62556,1,1.0,2,2.1553730964660645,57,1.0,3 +62557,1,1.0,2,1.3763779401779175,58,1.0,3 +62558,1,1.0,2,1.2853785753250122,59,1.0,3 +62559,1,1.0,2,1.563375473022461,60,1.0,3 +62560,1,1.0,2,1.5053762197494507,61,1.0,3 +62561,1,1.0,2,1.375377893447876,62,0.0,3 +62562,1,1.0,2,1.8233721256256104,63,0.0,3 +62563,1,0.0,2,2.0083699226379395,64,1.0,3 +62564,1,0.0,2,1.58037531375885,65,0.0,3 +62565,1,0.0,2,1.5213760137557983,66,0.0,3 +62566,1,0.0,2,1.3883777856826782,67,0.0,3 +62567,1,0.0,2,1.5083762407302856,68,1.0,3 +62568,1,0.0,2,1.5303759574890137,69,0.0,3 +62569,1,0.0,2,1.6473743915557861,70,0.0,3 +62570,1,1.0,2,1.8063724040985107,71,1.0,3 +62571,1,1.0,2,1.563375473022461,72,1.0,3 +62572,1,1.0,2,1.4463770389556885,73,1.0,3 +62573,1,1.0,2,1.8483718633651733,74,0.0,3 +62574,1,1.0,2,1.2933785915374756,75,0.0,3 +62575,1,0.0,2,1.8843713998794556,76,0.0,3 +62576,1,1.0,2,2.1863746643066406,77,1.0,3 +62577,1,1.0,2,1.706373691558838,78,1.0,3 +62578,1,1.0,2,1.5933752059936523,79,1.0,3 +62579,1,1.0,2,1.2783786058425903,80,0.0,3 +62580,1,1.0,2,2.1443727016448975,81,1.0,3 +62581,1,1.0,2,1.2743785381317139,82,1.0,3 +62582,1,1.0,2,1.2293784618377686,83,1.0,3 +62583,1,1.0,2,1.4323772192001343,84,1.0,3 +62584,1,0.0,2,1.3613780736923218,85,1.0,3 +62585,1,0.0,2,1.5233759880065918,86,0.0,3 +62586,1,1.0,2,1.2233785390853882,87,0.0,3 +62587,1,1.0,2,1.7263734340667725,88,1.0,3 +62588,1,1.0,2,1.7993724346160889,89,1.0,3 +62589,1,1.0,2,1.5293759107589722,90,1.0,3 +62590,1,1.0,2,1.3093786239624023,91,0.0,3 +62591,1,0.0,2,1.1463782787322998,92,0.0,3 +62592,1,0.0,2,1.65537428855896,93,0.0,3 +62593,1,1.0,2,1.5463757514953613,94,0.0,3 +62594,1,1.0,2,1.7483731508255005,95,1.0,3 +62595,1,1.0,2,1.300378680229187,96,1.0,3 +62596,1,1.0,2,1.26637864112854,97,0.0,3 +62597,1,1.0,2,1.8623716831207275,98,1.0,3 +62598,1,1.0,2,1.356378197669983,99,0.0,3 +62599,1,1.0,2,1.9003711938858032,100,0.0,3 +62600,1,0.0,2,1.1743783950805664,101,0.0,3 +62601,1,0.0,2,1.8333721160888672,102,0.0,3 +62602,1,1.0,2,1.9893701076507568,103,0.0,3 +62603,1,1.0,2,2.316380739212036,104,1.0,3 +62604,1,1.0,2,1.330378532409668,105,1.0,3 +62605,1,1.0,2,1.8723715543746948,106,1.0,3 +62606,1,1.0,2,1.751373052597046,107,0.0,3 +62607,1,0.0,2,1.5903751850128174,108,0.0,3 +62608,1,1.0,2,1.4063775539398193,109,0.0,3 +62609,1,1.0,2,2.289379596710205,110,1.0,3 +62610,1,1.0,2,1.3763779401779175,111,1.0,3 +62611,1,1.0,2,1.2293784618377686,112,1.0,3 +62612,1,1.0,2,1.4863765239715576,113,0.0,3 +62613,1,1.0,2,1.6433744430541992,114,0.0,3 +62614,1,0.0,2,1.706373691558838,115,0.0,3 +62615,1,0.0,2,1.7403732538223267,116,0.0,3 +62616,1,0.0,2,1.2243784666061401,117,1.0,3 +62617,1,0.0,2,1.610374927520752,118,0.0,3 +62618,1,0.0,2,2.075369358062744,119,1.0,3 +62619,1,0.0,2,1.4553768634796143,120,1.0,3 +62620,1,0.0,2,1.2433785200119019,121,0.0,3 +62621,1,1.0,2,1.5443757772445679,122,1.0,3 +62622,1,1.0,2,1.5483757257461548,123,1.0,3 +62623,1,1.0,2,1.227378487586975,124,1.0,3 +62624,1,1.0,2,1.2983787059783936,125,1.0,3 +62625,1,1.0,2,1.2873786687850952,126,1.0,3 +62626,1,1.0,2,1.5433757305145264,127,1.0,3 +62627,1,1.0,2,1.488376498222351,128,1.0,3 +62628,1,1.0,2,1.2883785963058472,129,1.0,3 +62629,1,1.0,2,1.2313785552978516,130,1.0,3 +62630,1,1.0,2,1.9103710651397705,131,1.0,3 +62631,1,1.0,2,1.79437255859375,132,1.0,3 +62632,1,1.0,2,1.6813740730285645,133,0.0,3 +62633,1,1.0,2,1.5263760089874268,134,1.0,3 +62634,1,1.0,2,1.3513782024383545,135,1.0,3 +62635,1,1.0,2,1.5083762407302856,136,0.0,3 +62636,1,0.0,2,1.1843783855438232,137,0.0,3 +62637,1,0.0,2,1.4043775796890259,138,0.0,3 +62638,1,1.0,2,1.8703715801239014,139,1.0,3 +62639,1,1.0,2,1.4493769407272339,140,1.0,3 +62640,1,1.0,2,1.7623729705810547,141,0.0,3 +62641,1,1.0,2,1.3863778114318848,142,1.0,3 +62642,1,1.0,2,1.348378300666809,143,0.0,3 +62643,1,0.0,2,1.4423770904541016,144,1.0,3 +62644,1,0.0,2,1.4593768119812012,145,0.0,3 +62645,1,1.0,2,1.2443785667419434,146,1.0,3 +62646,1,0.0,2,1.3443783521652222,147,0.0,3 +62647,1,0.0,2,1.2923786640167236,148,0.0,3 +62648,1,1.0,2,1.3363784551620483,149,1.0,3 +62649,1,1.0,2,1.7393732070922852,150,1.0,3 +62650,1,1.0,2,1.273378610610962,151,0.0,3 +62651,1,1.0,2,1.6833739280700684,152,0.0,3 +62652,1,1.0,2,1.9393706321716309,153,0.0,3 +62653,1,0.0,2,1.463376760482788,154,1.0,3 +62654,1,0.0,2,1.1463782787322998,155,0.0,3 +62655,1,0.0,2,1.2083784341812134,156,1.0,3 +62656,1,0.0,2,1.1893783807754517,157,0.0,3 +62657,1,1.0,2,1.4533768892288208,158,0.0,3 +62658,1,0.0,2,1.2743785381317139,159,1.0,3 +62659,1,0.0,2,1.6613743305206299,160,1.0,3 +62660,1,0.0,2,1.5543756484985352,161,0.0,3 +62661,1,0.0,2,1.3333784341812134,162,0.0,3 +62662,1,1.0,2,1.353378176689148,163,1.0,3 +62663,1,1.0,2,1.5203760862350464,164,1.0,3 +62664,1,1.0,2,1.2213784456253052,165,1.0,3 +62665,1,1.0,2,1.5273759365081787,166,1.0,3 +62666,1,1.0,2,1.3593780994415283,167,1.0,3 +62667,1,1.0,2,1.4603768587112427,168,1.0,3 +62668,1,1.0,2,1.653374433517456,169,1.0,3 +62669,1,0.0,2,1.2563785314559937,170,0.0,3 +62670,1,1.0,2,1.79437255859375,171,0.0,3 +62671,1,0.0,2,1.1523783206939697,172,0.0,3 +62672,1,1.0,2,1.5273759365081787,173,0.0,3 +62673,1,1.0,2,1.3903777599334717,174,1.0,3 +62674,1,1.0,2,1.4853764772415161,175,1.0,3 +62675,1,1.0,2,1.3863778114318848,176,1.0,3 +62676,1,1.0,2,1.3053786754608154,177,0.0,3 +62677,1,0.0,2,2.0923702716827393,178,1.0,3 +62678,1,0.0,2,1.4343771934509277,179,1.0,3 +62679,1,1.0,2,2.1623735427856445,180,0.0,3 +62680,1,0.0,2,1.2243784666061401,181,1.0,3 +62681,1,0.0,2,1.2263784408569336,182,1.0,3 +62682,1,0.0,2,1.41837739944458,183,1.0,3 +62683,1,0.0,2,1.300378680229187,184,1.0,3 +62684,1,0.0,2,1.199378490447998,185,0.0,3 +62685,1,1.0,2,1.489376425743103,186,0.0,3 +62686,1,0.0,2,1.6153748035430908,187,1.0,3 +62687,1,1.0,2,2.1123712062835693,188,1.0,3 +62688,1,1.0,2,1.4793765544891357,189,0.0,3 +62689,1,0.0,2,1.606374979019165,190,1.0,3 +62690,1,0.0,2,2.1553730964660645,191,1.0,3 +62691,1,0.0,2,1.2843786478042603,192,0.0,3 +62692,1,0.0,2,1.7923725843429565,193,1.0,3 +62693,1,0.0,2,1.23637855052948,194,0.0,3 +62694,1,0.0,2,1.2883785963058472,195,0.0,3 +62695,1,0.0,2,2.251377582550049,196,1.0,3 +62696,1,1.0,2,1.4303772449493408,197,1.0,3 +62697,1,1.0,2,1.7273733615875244,198,0.0,3 +62698,1,0.0,2,1.3223786354064941,199,1.0,3 +62699,1,0.0,2,1.6463744640350342,200,0.0,3 +62700,1,0.0,2,1.3113787174224854,201,0.0,3 +62701,1,1.0,2,1.3633780479431152,202,1.0,3 +62702,1,1.0,2,1.4383771419525146,203,1.0,3 +62703,1,1.0,2,1.2923786640167236,204,1.0,3 +62704,1,1.0,2,1.6563743352890015,205,0.0,3 +62705,1,1.0,2,2.31238055229187,206,1.0,3 +62706,1,1.0,2,1.7893726825714111,207,0.0,3 +62707,1,1.0,2,1.4153773784637451,208,1.0,3 +62708,1,1.0,2,1.448377013206482,209,1.0,3 +62709,1,1.0,2,1.2903785705566406,210,1.0,3 +62710,1,1.0,2,1.3603781461715698,211,1.0,3 +62711,1,1.0,2,1.3083786964416504,212,1.0,3 +62712,1,1.0,2,1.6403745412826538,213,0.0,3 +62713,1,1.0,2,1.7113735675811768,214,0.0,3 +62714,1,0.0,2,1.3943777084350586,215,1.0,3 +62715,1,0.0,2,1.636374592781067,216,1.0,3 +62716,1,0.0,2,1.4123774766921997,217,0.0,3 +62717,1,0.0,2,1.838371992111206,218,0.0,3 +62718,1,0.0,2,2.6133947372436523,219,0.0,3 +62719,1,1.0,2,1.4623768329620361,220,1.0,3 +62720,1,1.0,2,1.3413783311843872,221,1.0,3 +62721,1,1.0,2,1.297378659248352,222,0.0,3 +62722,1,1.0,2,1.6023750305175781,223,1.0,3 +62723,1,1.0,2,1.2323784828186035,224,0.0,3 +62724,1,1.0,2,1.658374309539795,225,1.0,3 +62725,1,1.0,2,1.9473705291748047,226,1.0,3 +62726,1,1.0,2,1.8033723831176758,227,1.0,3 +62727,1,1.0,2,1.6183748245239258,228,0.0,3 +62728,1,1.0,2,1.697373867034912,229,1.0,3 +62729,1,1.0,2,1.7133736610412598,230,1.0,3 +62730,1,1.0,2,1.327378511428833,231,1.0,3 +62731,1,1.0,2,1.6843739748001099,232,0.0,3 +62732,1,0.0,2,1.6023750305175781,233,0.0,3 +62733,1,0.0,2,1.2853785753250122,234,0.0,3 +62734,1,1.0,2,1.6263747215270996,235,1.0,3 +62735,1,1.0,2,1.2553786039352417,236,0.0,3 +62736,1,0.0,2,1.6273746490478516,237,1.0,3 +62737,1,0.0,2,1.3863778114318848,238,1.0,3 +62738,1,0.0,2,1.5263760089874268,239,0.0,3 +62739,1,0.0,2,1.5963751077651978,240,1.0,3 +62740,1,0.0,2,1.3173786401748657,241,1.0,3 +62741,1,0.0,2,1.240378499031067,242,1.0,3 +62742,1,0.0,2,1.3513782024383545,243,0.0,3 +62743,1,1.0,2,1.7163735628128052,244,0.0,3 +62744,1,0.0,2,1.3993775844573975,245,0.0,3 +62745,1,0.0,2,1.393377661705017,246,0.0,3 +62746,1,0.0,2,1.326378583908081,247,0.0,3 +62747,1,1.0,2,1.2603785991668701,248,1.0,3 +62748,1,1.0,2,1.7663729190826416,249,1.0,3 +62749,1,1.0,2,1.7893726825714111,250,0.0,3 +62750,1,0.0,2,2.070369243621826,251,0.0,3 +62751,1,0.0,2,1.3663780689239502,252,1.0,3 +62752,1,0.0,2,1.2833786010742188,253,0.0,3 +62753,1,1.0,2,1.7003737688064575,254,0.0,3 +62754,1,0.0,2,1.5273759365081787,255,0.0,3 +62755,1,1.0,2,1.6723741292953491,256,1.0,3 +62756,1,1.0,2,2.0093698501586914,257,1.0,3 +62757,1,1.0,2,1.3923777341842651,258,0.0,3 +62758,1,1.0,2,1.3993775844573975,259,1.0,3 +62759,1,1.0,2,1.912371039390564,260,1.0,3 +62760,1,1.0,2,1.5483757257461548,261,0.0,3 +62761,1,1.0,2,1.7753727436065674,262,1.0,3 +62762,1,1.0,2,1.6223747730255127,263,0.0,3 +62763,1,0.0,2,1.4573768377304077,264,1.0,3 +62764,1,0.0,2,1.440377116203308,265,1.0,3 +62765,1,0.0,2,1.6623742580413818,266,0.0,3 +62766,1,0.0,2,2.1423726081848145,267,1.0,3 +62767,1,0.0,2,1.2423784732818604,268,0.0,3 +62768,1,1.0,2,1.584375262260437,269,0.0,3 +62769,1,0.0,2,1.8733716011047363,270,0.0,3 +62770,1,0.0,2,1.3453782796859741,271,1.0,3 +62771,1,0.0,2,1.2813786268234253,272,0.0,3 +62772,1,1.0,2,1.7253735065460205,273,1.0,3 +62773,1,1.0,2,1.7383732795715332,274,1.0,3 +62774,1,1.0,2,1.6173748970031738,275,0.0,3 +62775,1,0.0,2,1.9723702669143677,276,0.0,3 +62776,1,0.0,2,2.1043708324432373,277,0.0,3 +62777,1,1.0,2,1.7993724346160889,278,0.0,3 +62778,1,1.0,2,1.5683754682540894,279,1.0,3 +62779,1,1.0,2,1.378377914428711,280,1.0,3 +62780,1,1.0,2,1.3923777341842651,281,1.0,3 +62781,1,1.0,2,1.423377275466919,282,1.0,3 +62782,1,1.0,2,1.3213785886764526,283,1.0,3 +62783,1,1.0,2,1.5383758544921875,284,1.0,3 +62784,1,1.0,2,1.5873751640319824,285,0.0,3 +62785,1,1.0,2,1.5383758544921875,286,1.0,3 +62786,1,1.0,2,1.5723754167556763,287,0.0,3 +62787,1,1.0,2,1.9983699321746826,288,0.0,3 +62788,1,1.0,2,1.7003737688064575,289,0.0,3 +62789,1,0.0,2,1.2693785429000854,290,0.0,3 +62790,1,1.0,2,1.930370807647705,291,1.0,3 +62791,1,1.0,2,1.6663742065429688,292,1.0,3 +62792,1,1.0,2,1.3923777341842651,293,0.0,3 +62793,1,0.0,2,2.2033753395080566,294,1.0,3 +62794,1,0.0,2,1.1343783140182495,295,1.0,3 +62795,1,0.0,2,1.3923777341842651,296,1.0,3 +62796,1,0.0,2,2.1413726806640625,297,1.0,3 +62797,1,0.0,2,1.1713783740997314,298,0.0,3 +62798,1,1.0,2,1.6253747940063477,299,0.0,3 +62799,1,0.0,2,1.4993762969970703,300,1.0,3 +62800,1,0.0,2,1.20037841796875,301,1.0,3 +62801,1,0.0,2,1.2953786849975586,302,0.0,3 +62802,1,0.0,2,1.3423783779144287,303,0.0,3 +62803,1,0.0,2,1.6663742065429688,304,1.0,3 +62804,1,0.0,2,1.3383784294128418,305,1.0,3 +62805,1,0.0,2,1.2503786087036133,306,1.0,3 +62806,1,0.0,2,1.2553786039352417,307,1.0,3 +62807,1,0.0,2,1.2563785314559937,308,0.0,3 +62808,1,0.0,2,1.701373815536499,309,1.0,3 +62809,1,0.0,2,1.5003763437271118,310,1.0,3 +62810,1,0.0,2,1.227378487586975,311,1.0,3 +62811,1,0.0,2,1.263378620147705,312,0.0,3 +62812,1,1.0,2,1.9173710346221924,313,1.0,3 +62813,1,1.0,2,1.4803766012191772,314,0.0,3 +62814,1,0.0,2,1.353378176689148,315,1.0,3 +62815,1,0.0,2,1.3683780431747437,316,0.0,3 +62816,1,0.0,2,1.511376142501831,317,1.0,3 +62817,1,0.0,2,1.4283772706985474,318,0.0,3 +62818,1,0.0,2,1.166378378868103,319,1.0,3 +62819,1,0.0,2,1.4813765287399292,320,1.0,3 +62820,1,0.0,2,1.2153785228729248,321,0.0,3 +62821,1,0.0,2,1.845371961593628,322,0.0,3 +62822,1,0.0,2,1.7363733053207397,323,1.0,3 +62823,1,0.0,2,1.7143735885620117,324,0.0,3 +62824,1,1.0,2,1.2083784341812134,325,0.0,3 +62825,1,0.0,2,1.653374433517456,326,0.0,3 +62826,1,1.0,2,1.3983776569366455,327,0.0,3 +62827,1,0.0,2,1.8693716526031494,328,1.0,3 +62828,1,0.0,2,1.8093724250793457,329,0.0,3 +62829,1,0.0,2,1.5093761682510376,330,0.0,3 +62830,1,0.0,2,2.321381092071533,331,0.0,3 +62831,1,0.0,2,1.658374309539795,332,1.0,3 +62832,1,0.0,2,1.5223760604858398,333,0.0,3 +62833,1,0.0,2,1.3443783521652222,334,0.0,3 +62834,1,0.0,2,1.7193734645843506,335,1.0,3 +62835,1,0.0,2,1.5283759832382202,336,0.0,3 +62836,1,1.0,2,1.6723741292953491,337,1.0,3 +62837,1,1.0,2,1.7253735065460205,338,0.0,3 +62838,1,1.0,2,1.8023724555969238,339,1.0,3 +62839,1,1.0,2,1.6343746185302734,340,0.0,3 +62840,1,1.0,2,2.0053699016571045,341,1.0,3 +62841,1,1.0,2,1.4203773736953735,342,0.0,3 +62842,1,0.0,2,2.0053699016571045,343,1.0,3 +62843,1,0.0,2,1.132378339767456,344,0.0,3 +62844,1,0.0,2,1.3093786239624023,345,1.0,3 +62845,1,0.0,2,1.4363771677017212,346,1.0,3 +62846,1,0.0,2,1.2183785438537598,347,0.0,3 +62847,1,0.0,2,1.5973751544952393,348,0.0,3 +62848,1,1.0,2,2.075369358062744,349,0.0,3 +62849,1,0.0,2,1.1873784065246582,350,1.0,3 +62850,1,0.0,2,1.273378610610962,351,1.0,3 +62851,1,0.0,2,1.3573781251907349,352,1.0,3 +62852,1,0.0,2,1.3073786497116089,353,1.0,3 +62853,1,0.0,2,1.3103786706924438,354,1.0,3 +62854,1,0.0,2,1.1933784484863281,355,1.0,3 +62855,1,0.0,2,1.3953776359558105,356,1.0,3 +62856,1,0.0,2,1.845371961593628,357,1.0,3 +62857,1,0.0,2,1.9793701171875,358,1.0,3 +62858,1,0.0,2,1.2173784971237183,359,0.0,3 +62859,1,0.0,2,1.7183735370635986,360,1.0,3 +62860,1,0.0,2,1.1523783206939697,361,1.0,3 +62861,1,0.0,2,1.7843726873397827,362,0.0,3 +62862,1,0.0,2,1.5323759317398071,363,1.0,3 +62863,1,0.0,2,1.3443783521652222,364,0.0,3 +62864,1,1.0,2,1.8523718118667603,365,1.0,3 +62865,1,1.0,2,1.23037850856781,366,1.0,3 +62866,1,1.0,2,2.030369520187378,367,0.0,3 +62867,1,0.0,2,1.4943764209747314,368,0.0,3 +62868,1,1.0,2,1.860371708869934,369,1.0,3 +62869,1,1.0,2,1.4023776054382324,370,1.0,3 +62870,1,1.0,2,1.5013762712478638,371,1.0,3 +62871,1,1.0,2,1.3363784551620483,372,1.0,3 +62872,1,1.0,2,1.8743715286254883,373,0.0,3 +62873,1,1.0,2,1.6923738718032837,374,0.0,3 +62874,1,0.0,2,2.0963704586029053,375,1.0,3 +62875,1,0.0,2,1.4023776054382324,376,0.0,3 +62876,1,0.0,2,1.8693716526031494,377,0.0,3 +62877,1,0.0,2,1.3873777389526367,378,1.0,3 +62878,1,0.0,2,1.3333784341812134,379,1.0,3 +62879,1,0.0,2,1.518376111984253,380,0.0,3 +62880,1,0.0,2,1.2353785037994385,381,0.0,3 +62881,1,1.0,2,1.6373746395111084,382,0.0,3 +62882,1,1.0,2,1.3903777599334717,383,1.0,3 +62883,1,1.0,2,1.9043711423873901,384,1.0,3 +62884,1,1.0,2,1.6143748760223389,385,0.0,3 +62885,1,1.0,2,1.6483744382858276,386,1.0,3 +62886,1,1.0,2,1.3953776359558105,387,1.0,3 +62887,1,1.0,2,1.3813778162002563,388,0.0,3 +62888,1,0.0,2,1.3383784294128418,389,0.0,3 +62889,1,1.0,2,1.297378659248352,390,1.0,3 +62890,1,1.0,2,1.374377965927124,391,1.0,3 +62891,1,1.0,2,1.3633780479431152,392,1.0,3 +62892,1,1.0,2,1.3543782234191895,393,0.0,3 +62893,1,0.0,2,1.4083775281906128,394,0.0,3 +62894,1,0.0,2,1.563375473022461,395,1.0,3 +62895,1,0.0,2,1.5433757305145264,396,1.0,3 +62896,1,0.0,2,1.8003724813461304,397,1.0,3 +62897,1,0.0,2,1.5443757772445679,398,0.0,3 +62898,1,0.0,2,1.6293747425079346,399,1.0,3 +62899,1,0.0,2,1.2863786220550537,400,0.0,3 +62900,1,1.0,2,1.9163709878921509,401,1.0,3 +62901,1,1.0,2,1.9423706531524658,402,1.0,3 +62902,1,1.0,2,1.4563769102096558,403,0.0,3 +62903,1,0.0,2,1.5773754119873047,404,1.0,3 +62904,1,0.0,2,1.445376992225647,405,1.0,3 +62905,1,0.0,2,1.613374948501587,406,0.0,3 +62906,1,0.0,2,1.728373408317566,407,1.0,3 +62907,1,0.0,2,1.4563769102096558,408,0.0,3 +62908,1,1.0,2,1.7813727855682373,409,0.0,3 +62909,1,0.0,2,1.5513756275177002,410,1.0,3 +62910,1,0.0,2,1.3083786964416504,411,0.0,3 +62911,1,0.0,2,1.348378300666809,412,1.0,3 +62912,1,0.0,2,1.6463744640350342,413,1.0,3 +62913,1,0.0,2,1.33137845993042,414,1.0,3 +62914,1,0.0,2,1.2843786478042603,415,0.0,3 +62915,1,0.0,2,1.4473769664764404,416,1.0,3 +62916,1,0.0,2,1.326378583908081,417,1.0,3 +62917,1,0.0,2,1.3323785066604614,418,0.0,3 +62918,1,0.0,2,1.5303759574890137,419,1.0,3 +62919,1,1.0,2,1.6773741245269775,420,0.0,3 +62920,1,1.0,2,1.7153735160827637,421,0.0,3 +62921,1,0.0,2,1.2463785409927368,422,0.0,3 +62922,1,0.0,2,1.2913786172866821,423,0.0,3 +62923,1,0.0,2,1.5933752059936523,424,0.0,3 +62924,1,1.0,2,1.9453706741333008,425,0.0,3 +62925,1,0.0,2,1.4023776054382324,426,1.0,3 +62926,1,0.0,2,1.41837739944458,427,1.0,3 +62927,1,0.0,2,1.263378620147705,428,0.0,3 +62928,1,0.0,2,1.352378249168396,429,0.0,3 +62929,1,1.0,2,2.258378028869629,430,0.0,3 +62930,1,0.0,2,1.2903785705566406,431,0.0,3 +62931,1,0.0,2,1.4353771209716797,432,0.0,3 +62932,1,1.0,2,1.7413733005523682,433,1.0,3 +62933,1,1.0,2,1.651374340057373,434,0.0,3 +62934,1,1.0,2,1.6413745880126953,435,1.0,3 +62935,1,1.0,2,1.6843739748001099,436,0.0,3 +62936,1,0.0,2,1.2653785943984985,437,0.0,3 +62937,1,0.0,2,1.2183785438537598,438,0.0,3 +62938,1,0.0,2,1.4173773527145386,439,0.0,3 +62939,1,0.0,2,1.294378638267517,440,0.0,3 +62940,1,0.0,2,2.4743881225585938,441,0.0,3 +62941,1,0.0,2,1.4393770694732666,442,0.0,3 +62942,1,0.0,2,1.6453745365142822,443,0.0,3 +62943,1,0.0,2,1.4603768587112427,444,0.0,3 +62944,1,1.0,2,1.4683767557144165,445,0.0,3 +62945,1,0.0,2,1.300378680229187,446,1.0,3 +62946,1,0.0,2,1.463376760482788,447,1.0,3 +62947,1,0.0,2,1.5293759107589722,448,1.0,3 +62948,1,0.0,2,1.5453757047653198,449,0.0,3 +62949,1,0.0,2,1.3803778886795044,450,1.0,3 +62950,1,0.0,2,1.4173773527145386,451,1.0,3 +62951,1,0.0,2,1.8273720741271973,452,0.0,3 +62952,1,1.0,2,1.4903764724731445,453,1.0,3 +62953,1,1.0,2,1.1883784532546997,454,0.0,3 +62954,1,1.0,2,1.2803785800933838,455,1.0,3 +62955,1,1.0,2,1.843371868133545,456,0.0,3 +62956,1,0.0,2,1.3893777132034302,457,1.0,3 +62957,1,0.0,2,1.3083786964416504,458,0.0,3 +62958,1,0.0,2,1.4063775539398193,459,0.0,3 +62959,1,0.0,2,1.7293734550476074,460,0.0,3 +62960,1,0.0,2,1.4513769149780273,461,1.0,3 +62961,1,0.0,2,2.1533732414245605,462,0.0,3 +62962,1,0.0,2,1.2053784132003784,463,0.0,3 +62963,1,1.0,2,1.444377064704895,464,0.0,3 +62964,1,1.0,2,1.6153748035430908,465,1.0,3 +62965,1,1.0,2,1.4783766269683838,466,0.0,3 +62966,1,1.0,2,1.4753766059875488,467,1.0,3 +62967,1,1.0,2,1.4053775072097778,468,0.0,3 +62968,1,0.0,2,1.3473782539367676,469,1.0,3 +62969,1,0.0,2,2.0983705520629883,470,1.0,3 +62970,1,0.0,2,1.6123749017715454,471,0.0,3 +62971,1,0.0,2,1.270378589630127,472,0.0,3 +62972,1,0.0,2,1.2483785152435303,473,0.0,3 +62973,1,0.0,2,1.203378438949585,474,0.0,3 +62974,1,1.0,2,1.1793783903121948,475,1.0,3 +62975,1,1.0,2,1.4273772239685059,476,0.0,3 +62976,1,1.0,2,1.7993724346160889,477,1.0,3 +62977,1,1.0,2,1.2443785667419434,478,1.0,3 +62978,1,1.0,2,1.3083786964416504,479,1.0,3 +62979,1,1.0,2,1.3913776874542236,480,1.0,3 +62980,1,1.0,2,1.2263784408569336,481,1.0,3 +62981,1,1.0,2,1.6683741807937622,482,0.0,3 +62982,1,0.0,2,1.3373783826828003,483,0.0,3 +62983,1,0.0,2,1.7873725891113281,484,0.0,3 +62984,1,1.0,2,1.5953750610351562,485,0.0,3 +62985,1,0.0,2,1.5893752574920654,486,0.0,3 +62986,1,1.0,2,2.1233716011047363,487,1.0,3 +62987,1,1.0,2,1.2513785362243652,488,0.0,3 +62988,1,0.0,2,1.79437255859375,489,1.0,3 +62989,1,1.0,2,1.8993711471557617,490,0.0,3 +62990,1,0.0,2,1.166378378868103,491,1.0,3 +62991,1,0.0,2,1.7833726406097412,492,0.0,3 +62992,1,0.0,2,1.496376395225525,493,0.0,3 +62993,1,0.0,2,1.3763779401779175,494,1.0,3 +62994,1,0.0,2,1.356378197669983,495,0.0,3 +62995,1,0.0,2,1.423377275466919,496,1.0,3 +62996,1,0.0,2,1.3093786239624023,497,0.0,3 +62997,1,0.0,2,1.2553786039352417,498,1.0,3 +62998,1,0.0,2,1.3393783569335938,499,1.0,3 +62999,1,0.0,2,1.7603729963302612,500,1.0,3 +63000,2,0.0,0,1.4748231172561646,1,0.0,3 +63001,2,1.0,0,1.520822525024414,2,1.0,3 +63002,2,1.0,0,1.4458235502243042,3,1.0,3 +63003,2,1.0,0,1.472823143005371,4,1.0,3 +63004,2,1.0,0,1.3928241729736328,5,1.0,3 +63005,2,1.0,0,1.519822597503662,6,1.0,3 +63006,2,1.0,0,1.3038253784179688,7,1.0,3 +63007,2,1.0,0,1.5148226022720337,8,1.0,3 +63008,2,1.0,0,1.335824966430664,9,1.0,3 +63009,2,1.0,0,1.3238251209259033,10,1.0,3 +63010,2,1.0,0,1.4598233699798584,11,1.0,3 +63011,2,0.0,0,1.8378185033798218,12,1.0,3 +63012,2,1.0,0,1.2488256692886353,13,1.0,3 +63013,2,1.0,0,1.273825764656067,14,1.0,3 +63014,2,1.0,0,1.9048175811767578,15,0.0,3 +63015,2,0.0,0,2.212824821472168,16,0.0,3 +63016,2,0.0,0,1.2468256950378418,17,1.0,3 +63017,2,0.0,0,1.4898229837417603,18,0.0,3 +63018,2,0.0,0,1.2408256530761719,19,0.0,3 +63019,2,1.0,0,1.8658181428909302,20,1.0,3 +63020,2,1.0,0,1.4418236017227173,21,0.0,3 +63021,2,0.0,0,1.520822525024414,22,0.0,3 +63022,2,1.0,0,1.5788218975067139,23,1.0,3 +63023,2,1.0,0,1.6928203105926514,24,1.0,3 +63024,2,1.0,0,1.6408209800720215,25,1.0,3 +63025,2,1.0,0,1.4308236837387085,26,1.0,3 +63026,2,1.0,0,1.5608220100402832,27,1.0,3 +63027,2,1.0,0,1.4688231945037842,28,1.0,3 +63028,2,1.0,0,1.4028240442276,29,1.0,3 +63029,2,1.0,0,1.3078253269195557,30,1.0,3 +63030,2,1.0,0,1.2628257274627686,31,1.0,3 +63031,2,1.0,0,1.59382164478302,32,1.0,3 +63032,2,1.0,0,1.5148226022720337,33,1.0,3 +63033,2,1.0,0,1.476823091506958,34,1.0,3 +63034,2,1.0,0,1.5178226232528687,35,1.0,3 +63035,2,1.0,0,1.2938255071640015,36,1.0,3 +63036,2,1.0,0,1.237825632095337,37,1.0,3 +63037,2,1.0,0,1.2228256464004517,38,1.0,3 +63038,2,1.0,0,1.361824631690979,39,1.0,3 +63039,2,1.0,0,1.3938242197036743,40,0.0,3 +63040,2,1.0,0,1.8818179368972778,41,0.0,3 +63041,2,0.0,0,1.1578254699707031,42,0.0,3 +63042,2,0.0,0,1.193825602531433,43,0.0,3 +63043,2,0.0,0,1.2658257484436035,44,1.0,3 +63044,2,0.0,0,1.1578254699707031,45,0.0,3 +63045,2,1.0,0,1.756819486618042,46,1.0,3 +63046,2,1.0,0,1.4168238639831543,47,0.0,3 +63047,2,0.0,0,1.6868205070495605,48,0.0,3 +63048,2,1.0,0,2.0058164596557617,49,1.0,3 +63049,2,1.0,0,1.3978241682052612,50,1.0,3 +63050,2,1.0,0,1.758819580078125,51,1.0,3 +63051,2,1.0,0,1.2048256397247314,52,1.0,3 +63052,2,1.0,0,1.9038176536560059,53,0.0,3 +63053,2,1.0,0,1.2088255882263184,54,1.0,3 +63054,2,1.0,0,1.2868255376815796,55,0.0,3 +63055,2,1.0,0,1.2688257694244385,56,1.0,3 +63056,2,1.0,0,1.361824631690979,57,1.0,3 +63057,2,1.0,0,1.2828255891799927,58,1.0,3 +63058,2,1.0,0,1.5258225202560425,59,1.0,3 +63059,2,1.0,0,1.4138239622116089,60,1.0,3 +63060,2,1.0,0,1.7418197393417358,61,1.0,3 +63061,2,1.0,0,1.2728257179260254,62,1.0,3 +63062,2,1.0,0,1.4388235807418823,63,1.0,3 +63063,2,1.0,0,1.2568256855010986,64,1.0,3 +63064,2,1.0,0,1.1958255767822266,65,1.0,3 +63065,2,1.0,0,1.3668245077133179,66,0.0,3 +63066,2,0.0,0,1.169825553894043,67,0.0,3 +63067,2,0.0,0,1.3098253011703491,68,0.0,3 +63068,2,0.0,0,1.6518208980560303,69,0.0,3 +63069,2,1.0,0,1.5188225507736206,70,1.0,3 +63070,2,1.0,0,1.4938229322433472,71,1.0,3 +63071,2,1.0,0,1.1458255052566528,72,1.0,3 +63072,2,1.0,0,1.4778231382369995,73,0.0,3 +63073,2,1.0,0,1.762819528579712,74,1.0,3 +63074,2,1.0,0,1.64582097530365,75,1.0,3 +63075,2,1.0,0,1.520822525024414,76,1.0,3 +63076,2,1.0,0,1.5968215465545654,77,1.0,3 +63077,2,1.0,0,1.2748256921768188,78,1.0,3 +63078,2,1.0,0,1.567821979522705,79,1.0,3 +63079,2,1.0,0,1.1898255348205566,80,0.0,3 +63080,2,0.0,0,1.7918190956115723,81,0.0,3 +63081,2,0.0,0,1.4608232975006104,82,1.0,3 +63082,2,0.0,0,1.1928255558013916,83,0.0,3 +63083,2,0.0,0,1.615821361541748,84,0.0,3 +63084,2,0.0,0,2.0828189849853516,85,0.0,3 +63085,2,1.0,0,1.6428210735321045,86,1.0,3 +63086,2,1.0,0,1.3248250484466553,87,1.0,3 +63087,2,1.0,0,1.8388185501098633,88,1.0,3 +63088,2,1.0,0,1.2628257274627686,89,0.0,3 +63089,2,1.0,0,1.4248237609863281,90,1.0,3 +63090,2,1.0,0,1.175825595855713,91,1.0,3 +63091,2,1.0,0,1.2448257207870483,92,1.0,3 +63092,2,1.0,0,1.7018202543258667,93,1.0,3 +63093,2,1.0,0,1.7678194046020508,94,1.0,3 +63094,2,1.0,0,1.5598220825195312,95,1.0,3 +63095,2,1.0,0,1.670820713043213,96,0.0,3 +63096,2,0.0,0,1.9858165979385376,97,0.0,3 +63097,2,0.0,0,1.2078256607055664,98,1.0,3 +63098,2,0.0,0,1.2498257160186768,99,0.0,3 +63099,2,0.0,0,1.2688257694244385,100,0.0,3 +63100,2,1.0,0,1.3708244562149048,101,1.0,3 +63101,2,1.0,0,1.3928241729736328,102,1.0,3 +63102,2,1.0,0,1.4258238077163696,103,1.0,3 +63103,2,1.0,0,1.5108226537704468,104,1.0,3 +63104,2,1.0,0,1.712820053100586,105,1.0,3 +63105,2,1.0,0,1.618821382522583,106,1.0,3 +63106,2,1.0,0,1.3058253526687622,107,1.0,3 +63107,2,0.0,0,1.2578257322311401,108,1.0,3 +63108,2,0.0,0,2.15482234954834,109,0.0,3 +63109,2,1.0,0,1.5918216705322266,110,1.0,3 +63110,2,1.0,0,1.273825764656067,111,1.0,3 +63111,2,1.0,0,1.9688167572021484,112,1.0,3 +63112,2,1.0,0,2.0718183517456055,113,1.0,3 +63113,2,1.0,0,1.3608245849609375,114,0.0,3 +63114,2,1.0,0,1.707820177078247,115,1.0,3 +63115,2,1.0,0,1.5668220520019531,116,1.0,3 +63116,2,0.0,0,1.7928190231323242,117,0.0,3 +63117,2,1.0,0,1.3228250741958618,118,0.0,3 +63118,2,0.0,0,1.9648168087005615,119,0.0,3 +63119,2,0.0,0,1.5008227825164795,120,0.0,3 +63120,2,1.0,0,2.230825901031494,121,1.0,3 +63121,2,1.0,0,1.5958216190338135,122,1.0,3 +63122,2,1.0,0,1.160825490951538,123,1.0,3 +63123,2,1.0,0,1.2468256950378418,124,1.0,3 +63124,2,1.0,0,1.4648232460021973,125,0.0,3 +63125,2,1.0,0,1.3678245544433594,126,1.0,3 +63126,2,1.0,0,1.5428223609924316,127,1.0,3 +63127,2,1.0,0,1.5998215675354004,128,1.0,3 +63128,2,1.0,0,1.80781888961792,129,1.0,3 +63129,2,1.0,0,1.409824013710022,130,1.0,3 +63130,2,1.0,0,1.3308249711990356,131,1.0,3 +63131,2,1.0,0,1.6438210010528564,132,1.0,3 +63132,2,1.0,0,1.6358211040496826,133,1.0,3 +63133,2,1.0,0,1.196825623512268,134,1.0,3 +63134,2,1.0,0,1.4738231897354126,135,1.0,3 +63135,2,1.0,0,1.4348236322402954,136,1.0,3 +63136,2,1.0,0,1.8728179931640625,137,1.0,3 +63137,2,1.0,0,1.3708244562149048,138,0.0,3 +63138,2,1.0,0,2.192823886871338,139,1.0,3 +63139,2,1.0,0,1.2498257160186768,140,1.0,3 +63140,2,1.0,0,1.3558247089385986,141,1.0,3 +63141,2,1.0,0,1.6768205165863037,142,1.0,3 +63142,2,1.0,0,1.6688206195831299,143,1.0,3 +63143,2,1.0,0,1.7348198890686035,144,0.0,3 +63144,2,1.0,0,1.7878191471099854,145,0.0,3 +63145,2,1.0,0,1.388824224472046,146,1.0,3 +63146,2,1.0,0,1.4698232412338257,147,1.0,3 +63147,2,1.0,0,1.1528254747390747,148,1.0,3 +63148,2,1.0,0,1.287825584411621,149,1.0,3 +63149,2,1.0,0,1.1528254747390747,150,1.0,3 +63150,2,1.0,0,1.8058189153671265,151,1.0,3 +63151,2,1.0,0,1.2778257131576538,152,1.0,3 +63152,2,1.0,0,1.4788230657577515,153,1.0,3 +63153,2,1.0,0,1.3028253316879272,154,0.0,3 +63154,2,1.0,0,1.9588170051574707,155,1.0,3 +63155,2,1.0,0,1.2208256721496582,156,1.0,3 +63156,2,1.0,0,1.3768243789672852,157,1.0,3 +63157,2,1.0,0,1.5378223657608032,158,1.0,3 +63158,2,1.0,0,1.6508209705352783,159,1.0,3 +63159,2,1.0,0,1.62282133102417,160,1.0,3 +63160,2,1.0,0,1.1848255395889282,161,1.0,3 +63161,2,1.0,0,1.358824610710144,162,0.0,3 +63162,2,0.0,0,1.3338249921798706,163,0.0,3 +63163,2,1.0,0,1.3978241682052612,164,1.0,3 +63164,2,1.0,0,1.4848229885101318,165,0.0,3 +63165,2,1.0,0,1.5228224992752075,166,1.0,3 +63166,2,1.0,0,1.3118252754211426,167,1.0,3 +63167,2,1.0,0,1.9728167057037354,168,1.0,3 +63168,2,1.0,0,1.318825125694275,169,1.0,3 +63169,2,1.0,0,1.4658232927322388,170,1.0,3 +63170,2,1.0,0,1.641821026802063,171,1.0,3 +63171,2,1.0,0,1.2428256273269653,172,1.0,3 +63172,2,1.0,0,1.5258225202560425,173,1.0,3 +63173,2,1.0,0,1.4998228549957275,174,1.0,3 +63174,2,1.0,0,1.3198251724243164,175,1.0,3 +63175,2,1.0,0,1.2828255891799927,176,1.0,3 +63176,2,1.0,0,1.5178226232528687,177,1.0,3 +63177,2,0.0,0,1.4018241167068481,178,0.0,3 +63178,2,1.0,0,1.3568246364593506,179,1.0,3 +63179,2,1.0,0,1.2148256301879883,180,1.0,3 +63180,2,1.0,0,1.2688257694244385,181,1.0,3 +63181,2,1.0,0,2.2918286323547363,182,1.0,3 +63182,2,1.0,0,1.2548257112503052,183,1.0,3 +63183,2,1.0,0,1.501822829246521,184,1.0,3 +63184,2,1.0,0,1.3748244047164917,185,1.0,3 +63185,2,1.0,0,1.4228237867355347,186,1.0,3 +63186,2,1.0,0,1.2728257179260254,187,1.0,3 +63187,2,1.0,0,1.5518221855163574,188,1.0,3 +63188,2,1.0,0,1.6018215417861938,189,1.0,3 +63189,2,1.0,0,1.4158239364624023,190,1.0,3 +63190,2,1.0,0,1.4298237562179565,191,0.0,3 +63191,2,0.0,0,1.3258250951766968,192,0.0,3 +63192,2,0.0,0,1.6518208980560303,193,0.0,3 +63193,2,1.0,0,1.8888177871704102,194,1.0,3 +63194,2,1.0,0,1.527822494506836,195,1.0,3 +63195,2,1.0,0,1.5828218460083008,196,1.0,3 +63196,2,1.0,0,1.4118239879608154,197,1.0,3 +63197,2,1.0,0,1.3638246059417725,198,1.0,3 +63198,2,1.0,0,1.2778257131576538,199,1.0,3 +63199,2,1.0,0,1.2528257369995117,200,1.0,3 +63200,2,1.0,0,1.9728167057037354,201,1.0,3 +63201,2,1.0,0,1.43182373046875,202,1.0,3 +63202,2,1.0,0,1.3128252029418945,203,1.0,3 +63203,2,1.0,0,1.4248237609863281,204,1.0,3 +63204,2,1.0,0,1.4438235759735107,205,1.0,3 +63205,2,1.0,0,1.4148238897323608,206,1.0,3 +63206,2,1.0,0,1.2638256549835205,207,1.0,3 +63207,2,1.0,0,1.3238251209259033,208,1.0,3 +63208,2,0.0,0,1.4518234729766846,209,0.0,3 +63209,2,1.0,0,1.310825228691101,210,0.0,3 +63210,2,0.0,0,1.4388235807418823,211,1.0,3 +63211,2,0.0,0,1.3938242197036743,212,0.0,3 +63212,2,0.0,0,1.614821434020996,213,0.0,3 +63213,2,0.0,0,1.4388235807418823,214,0.0,3 +63214,2,0.0,0,1.8308186531066895,215,0.0,3 +63215,2,0.0,0,1.6238212585449219,216,0.0,3 +63216,2,0.0,0,1.5038228034973145,217,1.0,3 +63217,2,0.0,0,1.5868217945098877,218,0.0,3 +63218,2,0.0,0,1.4628232717514038,219,0.0,3 +63219,2,0.0,0,1.1598255634307861,220,0.0,3 +63220,2,0.0,0,1.6498209238052368,221,0.0,3 +63221,2,1.0,0,1.1888256072998047,222,1.0,3 +63222,2,1.0,0,1.267825722694397,223,1.0,3 +63223,2,1.0,0,1.4928228855133057,224,0.0,3 +63224,2,1.0,0,1.5918216705322266,225,1.0,3 +63225,2,1.0,0,1.5528221130371094,226,1.0,3 +63226,2,1.0,0,1.2948254346847534,227,1.0,3 +63227,2,1.0,0,1.892817735671997,228,1.0,3 +63228,2,1.0,0,2.0428171157836914,229,1.0,3 +63229,2,1.0,0,1.2098256349563599,230,0.0,3 +63230,2,1.0,0,1.6578208208084106,231,1.0,3 +63231,2,1.0,0,1.9188175201416016,232,1.0,3 +63232,2,1.0,0,1.3268250226974487,233,1.0,3 +63233,2,0.0,0,1.317825198173523,234,0.0,3 +63234,2,0.0,0,1.9488170146942139,235,1.0,3 +63235,2,1.0,0,1.707820177078247,236,1.0,3 +63236,2,0.0,0,1.22782564163208,237,0.0,3 +63237,2,1.0,0,1.2728257179260254,238,1.0,3 +63238,2,1.0,0,1.20382559299469,239,1.0,3 +63239,2,1.0,0,1.5368223190307617,240,1.0,3 +63240,2,1.0,0,2.0188162326812744,241,1.0,3 +63241,2,1.0,0,1.5398223400115967,242,1.0,3 +63242,2,1.0,0,1.6008214950561523,243,1.0,3 +63243,2,1.0,0,1.708820104598999,244,0.0,3 +63244,2,0.0,0,1.3318250179290771,245,0.0,3 +63245,2,0.0,0,1.2058255672454834,246,0.0,3 +63246,2,1.0,0,1.762819528579712,247,1.0,3 +63247,2,1.0,0,1.1138254404067993,248,1.0,3 +63248,2,1.0,0,1.172825574874878,249,1.0,3 +63249,2,1.0,0,1.4178239107131958,250,1.0,3 +63250,2,1.0,0,1.2808256149291992,251,1.0,3 +63251,2,1.0,0,1.3918242454528809,252,0.0,3 +63252,2,0.0,0,1.3678245544433594,253,0.0,3 +63253,2,1.0,0,1.8648180961608887,254,1.0,3 +63254,2,1.0,0,1.2328256368637085,255,0.0,3 +63255,2,0.0,0,1.480823040008545,256,0.0,3 +63256,2,1.0,0,1.4438235759735107,257,1.0,3 +63257,2,1.0,0,1.3508247137069702,258,0.0,3 +63258,2,1.0,0,1.7788193225860596,259,1.0,3 +63259,2,1.0,0,1.5958216190338135,260,1.0,3 +63260,2,1.0,0,1.3348249197006226,261,1.0,3 +63261,2,1.0,0,1.3748244047164917,262,0.0,3 +63262,2,1.0,0,1.4158239364624023,263,0.0,3 +63263,2,0.0,0,1.5338224172592163,264,0.0,3 +63264,2,0.0,0,1.3978241682052612,265,0.0,3 +63265,2,0.0,0,1.9678168296813965,266,0.0,3 +63266,2,0.0,0,1.3158252239227295,267,0.0,3 +63267,2,1.0,0,1.3908241987228394,268,0.0,3 +63268,2,1.0,0,1.4848229885101318,269,1.0,3 +63269,2,1.0,0,1.3258250951766968,270,1.0,3 +63270,2,1.0,0,1.4198238849639893,271,1.0,3 +63271,2,1.0,0,1.2448257207870483,272,1.0,3 +63272,2,0.0,0,1.237825632095337,273,0.0,3 +63273,2,1.0,0,1.5378223657608032,274,1.0,3 +63274,2,1.0,0,1.3278250694274902,275,0.0,3 +63275,2,1.0,0,1.825818657875061,276,1.0,3 +63276,2,1.0,0,1.3318250179290771,277,1.0,3 +63277,2,1.0,0,1.6218212842941284,278,1.0,3 +63278,2,1.0,0,1.4238238334655762,279,1.0,3 +63279,2,1.0,0,1.2498257160186768,280,1.0,3 +63280,2,1.0,0,1.4478235244750977,281,1.0,3 +63281,2,1.0,0,1.4948228597640991,282,1.0,3 +63282,2,1.0,0,1.4298237562179565,283,1.0,3 +63283,2,1.0,0,1.4048240184783936,284,1.0,3 +63284,2,1.0,0,1.2998254299163818,285,1.0,3 +63285,2,1.0,0,1.2728257179260254,286,1.0,3 +63286,2,1.0,0,1.8648180961608887,287,1.0,3 +63287,2,1.0,0,1.2138255834579468,288,1.0,3 +63288,2,1.0,0,1.2668256759643555,289,1.0,3 +63289,2,1.0,0,1.5508222579956055,290,1.0,3 +63290,2,1.0,0,1.3978241682052612,291,0.0,3 +63291,2,1.0,0,1.6008214950561523,292,1.0,3 +63292,2,1.0,0,1.4148238897323608,293,1.0,3 +63293,2,1.0,0,1.2978254556655884,294,1.0,3 +63294,2,1.0,0,1.8118188381195068,295,1.0,3 +63295,2,1.0,0,1.432823657989502,296,1.0,3 +63296,2,1.0,0,1.5798218250274658,297,1.0,3 +63297,2,1.0,0,1.1868255138397217,298,1.0,3 +63298,2,1.0,0,1.3908241987228394,299,1.0,3 +63299,2,1.0,0,1.258825659751892,300,1.0,3 +63300,2,1.0,0,2.5228395462036133,301,0.0,3 +63301,2,1.0,0,1.990816593170166,302,1.0,3 +63302,2,1.0,0,1.947817087173462,303,1.0,3 +63303,2,1.0,0,1.5108226537704468,304,1.0,3 +63304,2,1.0,0,1.332824945449829,305,1.0,3 +63305,2,1.0,0,1.1158254146575928,306,0.0,3 +63306,2,1.0,0,1.3778244256973267,307,1.0,3 +63307,2,1.0,0,1.7798192501068115,308,1.0,3 +63308,2,1.0,0,1.2518256902694702,309,1.0,3 +63309,2,1.0,0,1.3318250179290771,310,1.0,3 +63310,2,1.0,0,1.1988255977630615,311,1.0,3 +63311,2,1.0,0,1.520822525024414,312,1.0,3 +63312,2,1.0,0,1.7358198165893555,313,1.0,3 +63313,2,1.0,0,1.5928215980529785,314,1.0,3 +63314,2,1.0,0,1.5908217430114746,315,1.0,3 +63315,2,1.0,0,1.5338224172592163,316,1.0,3 +63316,2,1.0,0,1.6118214130401611,317,0.0,3 +63317,2,1.0,0,1.5298224687576294,318,1.0,3 +63318,2,1.0,0,1.5108226537704468,319,1.0,3 +63319,2,1.0,0,1.660820722579956,320,1.0,3 +63320,2,1.0,0,1.5518221855163574,321,1.0,3 +63321,2,1.0,0,1.230825662612915,322,1.0,3 +63322,2,1.0,0,1.362824559211731,323,0.0,3 +63323,2,0.0,0,1.877817988395691,324,0.0,3 +63324,2,1.0,0,2.208824634552002,325,1.0,3 +63325,2,1.0,0,1.4678232669830322,326,1.0,3 +63326,2,1.0,0,1.4828230142593384,327,1.0,3 +63327,2,1.0,0,1.3508247137069702,328,1.0,3 +63328,2,0.0,0,1.6848204135894775,329,1.0,3 +63329,2,0.0,0,1.8458184003829956,330,0.0,3 +63330,2,1.0,0,1.2548257112503052,331,1.0,3 +63331,2,1.0,0,1.160825490951538,332,1.0,3 +63332,2,1.0,0,1.5488221645355225,333,1.0,3 +63333,2,1.0,0,1.5318224430084229,334,1.0,3 +63334,2,1.0,0,1.568821907043457,335,1.0,3 +63335,2,1.0,0,1.4948228597640991,336,1.0,3 +63336,2,1.0,0,2.0478172302246094,337,0.0,3 +63337,2,1.0,0,1.6448209285736084,338,1.0,3 +63338,2,0.0,0,1.3748244047164917,339,0.0,3 +63339,2,1.0,0,1.335824966430664,340,0.0,3 +63340,2,1.0,0,2.142821788787842,341,1.0,3 +63341,2,1.0,0,1.3468247652053833,342,1.0,3 +63342,2,1.0,0,1.194825530052185,343,0.0,3 +63343,2,0.0,0,1.3868242502212524,344,0.0,3 +63344,2,1.0,0,1.4898229837417603,345,0.0,3 +63345,2,0.0,0,1.8348186016082764,346,0.0,3 +63346,2,1.0,0,1.7458196878433228,347,1.0,3 +63347,2,1.0,0,1.435823678970337,348,1.0,3 +63348,2,1.0,0,1.260825753211975,349,1.0,3 +63349,2,1.0,0,1.3088252544403076,350,1.0,3 +63350,2,1.0,0,1.4428235292434692,351,1.0,3 +63351,2,1.0,0,1.4458235502243042,352,1.0,3 +63352,2,1.0,0,1.3448247909545898,353,1.0,3 +63353,2,1.0,0,1.5668220520019531,354,1.0,3 +63354,2,1.0,0,1.3388248682022095,355,1.0,3 +63355,2,1.0,0,1.2238256931304932,356,1.0,3 +63356,2,1.0,0,1.3758244514465332,357,1.0,3 +63357,2,1.0,0,1.318825125694275,358,1.0,3 +63358,2,1.0,0,1.6618207693099976,359,1.0,3 +63359,2,1.0,0,1.4748231172561646,360,1.0,3 +63360,2,1.0,0,1.519822597503662,361,1.0,3 +63361,2,1.0,0,1.2808256149291992,362,1.0,3 +63362,2,1.0,0,1.2488256692886353,363,1.0,3 +63363,2,1.0,0,1.1858255863189697,364,1.0,3 +63364,2,1.0,0,1.270825743675232,365,1.0,3 +63365,2,1.0,0,1.2828255891799927,366,1.0,3 +63366,2,0.0,0,1.2148256301879883,367,0.0,3 +63367,2,1.0,0,1.3338249921798706,368,1.0,3 +63368,2,0.0,0,1.4628232717514038,369,0.0,3 +63369,2,1.0,0,1.291825532913208,370,1.0,3 +63370,2,1.0,0,1.497822880744934,371,0.0,3 +63371,2,1.0,0,1.8938177824020386,372,1.0,3 +63372,2,1.0,0,1.3048253059387207,373,0.0,3 +63373,2,1.0,0,1.4428235292434692,374,1.0,3 +63374,2,1.0,0,1.5168225765228271,375,1.0,3 +63375,2,1.0,0,1.2058255672454834,376,1.0,3 +63376,2,1.0,0,1.22782564163208,377,1.0,3 +63377,2,1.0,0,1.4848229885101318,378,1.0,3 +63378,2,1.0,0,1.3488247394561768,379,1.0,3 +63379,2,1.0,0,1.7328197956085205,380,1.0,3 +63380,2,1.0,0,1.2198256254196167,381,0.0,3 +63381,2,1.0,0,1.9518170356750488,382,1.0,3 +63382,2,1.0,0,1.3428248167037964,383,0.0,3 +63383,2,0.0,0,1.1218254566192627,384,0.0,3 +63384,2,1.0,0,1.2028255462646484,385,1.0,3 +63385,2,1.0,0,1.2658257484436035,386,1.0,3 +63386,2,1.0,0,1.3418248891830444,387,1.0,3 +63387,2,0.0,0,1.200825572013855,388,0.0,3 +63388,2,1.0,0,1.9348173141479492,389,1.0,3 +63389,2,1.0,0,1.2938255071640015,390,1.0,3 +63390,2,1.0,0,1.4178239107131958,391,1.0,3 +63391,2,1.0,0,1.5618220567703247,392,1.0,3 +63392,2,1.0,0,1.2938255071640015,393,1.0,3 +63393,2,1.0,0,1.662820816040039,394,1.0,3 +63394,2,1.0,0,1.3088252544403076,395,0.0,3 +63395,2,1.0,0,1.3168251514434814,396,0.0,3 +63396,2,0.0,0,1.4908229112625122,397,0.0,3 +63397,2,1.0,0,1.1458255052566528,398,1.0,3 +63398,2,1.0,0,1.5518221855163574,399,1.0,3 +63399,2,0.0,0,1.4148238897323608,400,0.0,3 +63400,2,1.0,0,1.3008253574371338,401,1.0,3 +63401,2,1.0,0,1.3318250179290771,402,0.0,3 +63402,2,0.0,0,1.4828230142593384,403,0.0,3 +63403,2,0.0,0,1.4698232412338257,404,0.0,3 +63404,2,1.0,0,1.3258250951766968,405,1.0,3 +63405,2,1.0,0,1.8338185548782349,406,1.0,3 +63406,2,1.0,0,1.3698245286941528,407,1.0,3 +63407,2,1.0,0,1.4458235502243042,408,1.0,3 +63408,2,1.0,0,1.2388256788253784,409,1.0,3 +63409,2,1.0,0,1.4148238897323608,410,1.0,3 +63410,2,1.0,0,1.313825249671936,411,1.0,3 +63411,2,1.0,0,1.3198251724243164,412,1.0,3 +63412,2,1.0,0,1.261825680732727,413,0.0,3 +63413,2,1.0,0,1.3568246364593506,414,1.0,3 +63414,2,1.0,0,1.3718245029449463,415,1.0,3 +63415,2,1.0,0,1.3558247089385986,416,1.0,3 +63416,2,1.0,0,1.5118227005004883,417,1.0,3 +63417,2,0.0,0,1.7688193321228027,418,0.0,3 +63418,2,1.0,0,1.5068227052688599,419,1.0,3 +63419,2,1.0,0,1.614821434020996,420,1.0,3 +63420,2,1.0,0,1.2248256206512451,421,0.0,3 +63421,2,1.0,0,2.0668182373046875,422,1.0,3 +63422,2,1.0,0,1.4498234987258911,423,1.0,3 +63423,2,1.0,0,1.5528221130371094,424,1.0,3 +63424,2,1.0,0,1.3638246059417725,425,1.0,3 +63425,2,1.0,0,1.545822262763977,426,1.0,3 +63426,2,1.0,0,1.6788206100463867,427,1.0,3 +63427,2,1.0,0,1.193825602531433,428,1.0,3 +63428,2,1.0,0,1.7408196926116943,429,1.0,3 +63429,2,0.0,0,1.105825424194336,430,1.0,3 +63430,2,0.0,0,1.2558257579803467,431,0.0,3 +63431,2,0.0,0,1.8668181896209717,432,0.0,3 +63432,2,1.0,0,1.575821876525879,433,1.0,3 +63433,2,1.0,0,1.6908204555511475,434,1.0,3 +63434,2,1.0,0,1.6078214645385742,435,1.0,3 +63435,2,1.0,0,1.4818230867385864,436,1.0,3 +63436,2,1.0,0,1.2088255882263184,437,1.0,3 +63437,2,1.0,0,1.5488221645355225,438,1.0,3 +63438,2,1.0,0,1.663820743560791,439,1.0,3 +63439,2,1.0,0,1.5618220567703247,440,1.0,3 +63440,2,1.0,0,1.3538247346878052,441,1.0,3 +63441,2,1.0,0,1.3688244819641113,442,1.0,3 +63442,2,1.0,0,1.2528257369995117,443,1.0,3 +63443,2,1.0,0,1.3198251724243164,444,1.0,3 +63444,2,1.0,0,1.2968254089355469,445,1.0,3 +63445,2,1.0,0,1.3098253011703491,446,1.0,3 +63446,2,1.0,0,1.670820713043213,447,0.0,3 +63447,2,0.0,0,1.5338224172592163,448,0.0,3 +63448,2,1.0,0,1.7348198890686035,449,1.0,3 +63449,2,1.0,0,1.2178256511688232,450,1.0,3 +63450,2,1.0,0,1.5988216400146484,451,1.0,3 +63451,2,1.0,0,1.1828255653381348,452,1.0,3 +63452,2,1.0,0,1.427823781967163,453,0.0,3 +63453,2,0.0,0,1.384824275970459,454,0.0,3 +63454,2,1.0,0,1.3458248376846313,455,1.0,3 +63455,2,1.0,0,1.8268187046051025,456,1.0,3 +63456,2,1.0,0,1.6538208723068237,457,1.0,3 +63457,2,1.0,0,1.1908255815505981,458,1.0,3 +63458,2,1.0,0,1.3668245077133179,459,1.0,3 +63459,2,1.0,0,1.2458256483078003,460,0.0,3 +63460,2,1.0,0,1.3948241472244263,461,1.0,3 +63461,2,1.0,0,1.5178226232528687,462,1.0,3 +63462,2,1.0,0,1.3258250951766968,463,1.0,3 +63463,2,1.0,0,1.335824966430664,464,1.0,3 +63464,2,1.0,0,1.3228250741958618,465,1.0,3 +63465,2,1.0,0,1.2498257160186768,466,1.0,3 +63466,2,1.0,0,1.1858255863189697,467,1.0,3 +63467,2,1.0,0,1.3078253269195557,468,1.0,3 +63468,2,1.0,0,1.4048240184783936,469,1.0,3 +63469,2,1.0,0,1.568821907043457,470,1.0,3 +63470,2,1.0,0,1.2248256206512451,471,1.0,3 +63471,2,1.0,0,1.5948216915130615,472,1.0,3 +63472,2,1.0,0,1.20382559299469,473,1.0,3 +63473,2,1.0,0,1.2448257207870483,474,0.0,3 +63474,2,1.0,0,1.4848229885101318,475,0.0,3 +63475,2,0.0,0,1.22782564163208,476,1.0,3 +63476,2,0.0,0,1.3898242712020874,477,1.0,3 +63477,2,0.0,0,1.4748231172561646,478,0.0,3 +63478,2,1.0,0,1.2998254299163818,479,1.0,3 +63479,2,1.0,0,1.4788230657577515,480,0.0,3 +63480,2,0.0,0,1.6078214645385742,481,0.0,3 +63481,2,0.0,0,1.6828205585479736,482,0.0,3 +63482,2,1.0,0,1.8348186016082764,483,1.0,3 +63483,2,1.0,0,1.457823395729065,484,1.0,3 +63484,2,1.0,0,1.666820764541626,485,1.0,3 +63485,2,1.0,0,1.479823112487793,486,1.0,3 +63486,2,1.0,0,1.3228250741958618,487,1.0,3 +63487,2,1.0,0,1.545822262763977,488,1.0,3 +63488,2,1.0,0,1.2868255376815796,489,1.0,3 +63489,2,1.0,0,1.1928255558013916,490,1.0,3 +63490,2,1.0,0,1.5038228034973145,491,1.0,3 +63491,2,1.0,0,1.2688257694244385,492,1.0,3 +63492,2,1.0,0,1.2048256397247314,493,1.0,3 +63493,2,0.0,0,1.1778255701065063,494,0.0,3 +63494,2,1.0,0,1.3988240957260132,495,0.0,3 +63495,2,1.0,0,1.6698206663131714,496,1.0,3 +63496,2,1.0,0,1.3558247089385986,497,1.0,3 +63497,2,1.0,0,1.29282546043396,498,1.0,3 +63498,2,1.0,0,1.2518256902694702,499,1.0,3 +63499,2,1.0,0,1.3278250694274902,500,1.0,3 +63500,2,0.0,1,1.314825177192688,1,0.0,3 +63501,2,0.0,1,1.4248237609863281,2,1.0,3 +63502,2,1.0,1,1.965816855430603,3,1.0,3 +63503,2,0.0,1,1.759819507598877,4,0.0,3 +63504,2,1.0,1,1.5738219022750854,5,1.0,3 +63505,2,1.0,1,1.9758167266845703,6,1.0,3 +63506,2,1.0,1,1.4868229627609253,7,1.0,3 +63507,2,1.0,1,1.8688180446624756,8,0.0,3 +63508,2,0.0,1,1.852818250656128,9,1.0,3 +63509,2,0.0,1,1.450823426246643,10,1.0,3 +63510,2,0.0,1,1.2468256950378418,11,1.0,3 +63511,2,0.0,1,1.1898255348205566,12,1.0,3 +63512,2,0.0,1,1.710820198059082,13,1.0,3 +63513,2,0.0,1,1.6328210830688477,14,1.0,3 +63514,2,0.0,1,1.457823395729065,15,1.0,3 +63515,2,1.0,1,1.8628182411193848,16,1.0,3 +63516,2,0.0,1,1.3418248891830444,17,0.0,3 +63517,2,1.0,1,1.5828218460083008,18,0.0,3 +63518,2,0.0,1,1.939817190170288,19,1.0,3 +63519,2,0.0,1,1.4788230657577515,20,1.0,3 +63520,2,0.0,1,1.1408255100250244,21,0.0,3 +63521,2,0.0,1,1.8588182926177979,22,0.0,3 +63522,2,1.0,1,2.26082706451416,23,1.0,3 +63523,2,1.0,1,1.406823992729187,24,1.0,3 +63524,2,1.0,1,1.6748206615447998,25,1.0,3 +63525,2,1.0,1,1.57082200050354,26,1.0,3 +63526,2,1.0,1,1.2438256740570068,27,1.0,3 +63527,2,1.0,1,1.5698219537734985,28,1.0,3 +63528,2,1.0,1,1.4908229112625122,29,0.0,3 +63529,2,1.0,1,1.9578169584274292,30,1.0,3 +63530,2,1.0,1,1.4368236064910889,31,1.0,3 +63531,2,1.0,1,1.237825632095337,32,1.0,3 +63532,2,1.0,1,1.5218225717544556,33,1.0,3 +63533,2,1.0,1,1.4938229322433472,34,1.0,3 +63534,2,1.0,1,1.7638194561004639,35,1.0,3 +63535,2,1.0,1,1.6308212280273438,36,1.0,3 +63536,2,1.0,1,1.432823657989502,37,1.0,3 +63537,2,1.0,1,1.2088255882263184,38,1.0,3 +63538,2,1.0,1,1.406823992729187,39,1.0,3 +63539,2,1.0,1,1.2298256158828735,40,1.0,3 +63540,2,1.0,1,1.804818868637085,41,1.0,3 +63541,2,1.0,1,1.7308199405670166,42,1.0,3 +63542,2,1.0,1,1.4018241167068481,43,1.0,3 +63543,2,1.0,1,1.3488247394561768,44,0.0,3 +63544,2,0.0,1,1.777819275856018,45,0.0,3 +63545,2,1.0,1,2.0168161392211914,46,1.0,3 +63546,2,1.0,1,1.2808256149291992,47,1.0,3 +63547,2,0.0,1,1.1808255910873413,48,0.0,3 +63548,2,1.0,1,1.2758257389068604,49,1.0,3 +63549,2,1.0,1,1.5258225202560425,50,1.0,3 +63550,2,1.0,1,1.2818256616592407,51,1.0,3 +63551,2,1.0,1,1.3038253784179688,52,0.0,3 +63552,2,0.0,1,1.704820156097412,53,0.0,3 +63553,2,0.0,1,1.8668181896209717,54,0.0,3 +63554,2,1.0,1,1.7978190183639526,55,0.0,3 +63555,2,0.0,1,1.9968163967132568,56,1.0,3 +63556,2,0.0,1,1.5348224639892578,57,1.0,3 +63557,2,0.0,1,1.7488195896148682,58,1.0,3 +63558,2,0.0,1,1.3498247861862183,59,0.0,3 +63559,2,0.0,1,1.6068215370178223,60,0.0,3 +63560,2,0.0,1,1.2988253831863403,61,0.0,3 +63561,2,1.0,1,1.7388198375701904,62,1.0,3 +63562,2,1.0,1,1.2058255672454834,63,1.0,3 +63563,2,1.0,1,1.5368223190307617,64,1.0,3 +63564,2,1.0,1,1.8638181686401367,65,1.0,3 +63565,2,1.0,1,1.2908254861831665,66,0.0,3 +63566,2,0.0,1,1.4488234519958496,67,1.0,3 +63567,2,0.0,1,1.5918216705322266,68,0.0,3 +63568,2,1.0,1,1.4168238639831543,69,0.0,3 +63569,2,0.0,1,1.166825532913208,70,1.0,3 +63570,2,0.0,1,1.2578257322311401,71,0.0,3 +63571,2,0.0,1,1.410823941230774,72,0.0,3 +63572,2,0.0,1,1.3268250226974487,73,0.0,3 +63573,2,1.0,1,2.1058199405670166,74,1.0,3 +63574,2,1.0,1,1.3708244562149048,75,1.0,3 +63575,2,1.0,1,1.317825198173523,76,1.0,3 +63576,2,1.0,1,1.2868255376815796,77,1.0,3 +63577,2,1.0,1,1.3348249197006226,78,1.0,3 +63578,2,1.0,1,1.4848229885101318,79,1.0,3 +63579,2,1.0,1,1.3718245029449463,80,1.0,3 +63580,2,1.0,1,1.1508255004882812,81,1.0,3 +63581,2,1.0,1,1.1898255348205566,82,1.0,3 +63582,2,1.0,1,1.7868192195892334,83,1.0,3 +63583,2,1.0,1,1.2188255786895752,84,1.0,3 +63584,2,1.0,1,1.2268255949020386,85,0.0,3 +63585,2,0.0,1,1.1358253955841064,86,0.0,3 +63586,2,1.0,1,1.899817705154419,87,1.0,3 +63587,2,1.0,1,1.2058255672454834,88,1.0,3 +63588,2,1.0,1,1.2328256368637085,89,1.0,3 +63589,2,1.0,1,1.5438222885131836,90,1.0,3 +63590,2,1.0,1,1.2118256092071533,91,1.0,3 +63591,2,1.0,1,1.3388248682022095,92,0.0,3 +63592,2,0.0,1,1.7368197441101074,93,0.0,3 +63593,2,1.0,1,1.7798192501068115,94,1.0,3 +63594,2,1.0,1,1.340824842453003,95,1.0,3 +63595,2,1.0,1,1.2798256874084473,96,1.0,3 +63596,2,1.0,1,1.5318224430084229,97,0.0,3 +63597,2,1.0,1,1.4468234777450562,98,1.0,3 +63598,2,1.0,1,1.4118239879608154,99,1.0,3 +63599,2,1.0,1,1.6778205633163452,100,1.0,3 +63600,2,1.0,1,1.267825722694397,101,0.0,3 +63601,2,0.0,1,2.3478312492370605,102,0.0,3 +63602,2,1.0,1,1.6948204040527344,103,1.0,3 +63603,2,1.0,1,1.712820053100586,104,1.0,3 +63604,2,1.0,1,1.2598257064819336,105,1.0,3 +63605,2,0.0,1,1.453823447227478,106,0.0,3 +63606,2,1.0,1,1.5368223190307617,107,1.0,3 +63607,2,1.0,1,1.432823657989502,108,1.0,3 +63608,2,1.0,1,1.9288172721862793,109,0.0,3 +63609,2,0.0,1,1.8498183488845825,110,1.0,3 +63610,2,0.0,1,1.1438255310058594,111,0.0,3 +63611,2,0.0,1,1.3928241729736328,112,0.0,3 +63612,2,0.0,1,1.1788254976272583,113,1.0,3 +63613,2,0.0,1,1.7758193016052246,114,0.0,3 +63614,2,0.0,1,1.3198251724243164,115,0.0,3 +63615,2,1.0,1,1.4698232412338257,116,0.0,3 +63616,2,1.0,1,1.9778167009353638,117,1.0,3 +63617,2,1.0,1,1.2078256607055664,118,0.0,3 +63618,2,1.0,1,2.0028164386749268,119,1.0,3 +63619,2,1.0,1,1.3298250436782837,120,1.0,3 +63620,2,1.0,1,1.3718245029449463,121,0.0,3 +63621,2,1.0,1,1.759819507598877,122,0.0,3 +63622,2,0.0,1,1.4038240909576416,123,0.0,3 +63623,2,0.0,1,1.8198187351226807,124,0.0,3 +63624,2,1.0,1,2.1348214149475098,125,1.0,3 +63625,2,0.0,1,1.8858178853988647,126,0.0,3 +63626,2,1.0,1,1.2968254089355469,127,1.0,3 +63627,2,1.0,1,1.7808191776275635,128,1.0,3 +63628,2,1.0,1,1.5528221130371094,129,1.0,3 +63629,2,1.0,1,1.4148238897323608,130,1.0,3 +63630,2,1.0,1,1.260825753211975,131,1.0,3 +63631,2,1.0,1,1.339824914932251,132,1.0,3 +63632,2,1.0,1,1.4388235807418823,133,1.0,3 +63633,2,1.0,1,1.5448222160339355,134,1.0,3 +63634,2,1.0,1,1.409824013710022,135,0.0,3 +63635,2,1.0,1,1.8158187866210938,136,1.0,3 +63636,2,1.0,1,1.4598233699798584,137,1.0,3 +63637,2,1.0,1,1.2828255891799927,138,1.0,3 +63638,2,1.0,1,1.4678232669830322,139,0.0,3 +63639,2,1.0,1,1.8098188638687134,140,0.0,3 +63640,2,1.0,1,1.273825764656067,141,1.0,3 +63641,2,1.0,1,1.288825511932373,142,1.0,3 +63642,2,1.0,1,1.410823941230774,143,1.0,3 +63643,2,1.0,1,1.273825764656067,144,0.0,3 +63644,2,1.0,1,1.7848191261291504,145,1.0,3 +63645,2,1.0,1,1.6118214130401611,146,0.0,3 +63646,2,0.0,1,2.204824447631836,147,0.0,3 +63647,2,1.0,1,2.0308165550231934,148,1.0,3 +63648,2,0.0,1,1.1828255653381348,149,0.0,3 +63649,2,1.0,1,1.6178213357925415,150,1.0,3 +63650,2,1.0,1,1.1658254861831665,151,1.0,3 +63651,2,1.0,1,1.1848255395889282,152,1.0,3 +63652,2,1.0,1,1.287825584411621,153,0.0,3 +63653,2,1.0,1,1.4938229322433472,154,0.0,3 +63654,2,0.0,1,1.361824631690979,155,1.0,3 +63655,2,0.0,1,1.2828255891799927,156,1.0,3 +63656,2,0.0,1,1.3538247346878052,157,0.0,3 +63657,2,0.0,1,1.4678232669830322,158,0.0,3 +63658,2,1.0,1,1.2358256578445435,159,0.0,3 +63659,2,0.0,1,1.9078176021575928,160,0.0,3 +63660,2,0.0,1,1.9098175764083862,161,0.0,3 +63661,2,0.0,1,1.3058253526687622,162,1.0,3 +63662,2,0.0,1,1.4868229627609253,163,1.0,3 +63663,2,0.0,1,1.3918242454528809,164,0.0,3 +63664,2,1.0,1,1.7518196105957031,165,0.0,3 +63665,2,0.0,1,2.0058164596557617,166,0.0,3 +63666,2,1.0,1,1.6358211040496826,167,0.0,3 +63667,2,1.0,1,1.387824296951294,168,1.0,3 +63668,2,0.0,1,1.1868255138397217,169,0.0,3 +63669,2,1.0,1,1.3558247089385986,170,0.0,3 +63670,2,1.0,1,1.7248198986053467,171,1.0,3 +63671,2,1.0,1,1.160825490951538,172,1.0,3 +63672,2,1.0,1,1.2088255882263184,173,1.0,3 +63673,2,1.0,1,1.5178226232528687,174,1.0,3 +63674,2,1.0,1,1.6408209800720215,175,0.0,3 +63675,2,1.0,1,1.8918178081512451,176,1.0,3 +63676,2,1.0,1,1.8128187656402588,177,1.0,3 +63677,2,1.0,1,1.1458255052566528,178,0.0,3 +63678,2,0.0,1,1.1988255977630615,179,0.0,3 +63679,2,1.0,1,2.202824592590332,180,1.0,3 +63680,2,1.0,1,1.4778231382369995,181,1.0,3 +63681,2,1.0,1,1.4598233699798584,182,0.0,3 +63682,2,1.0,1,1.313825249671936,183,1.0,3 +63683,2,1.0,1,1.4388235807418823,184,1.0,3 +63684,2,1.0,1,1.505822777748108,185,1.0,3 +63685,2,1.0,1,1.3758244514465332,186,1.0,3 +63686,2,1.0,1,1.3168251514434814,187,0.0,3 +63687,2,1.0,1,1.4868229627609253,188,0.0,3 +63688,2,1.0,1,1.3648245334625244,189,0.0,3 +63689,2,0.0,1,1.2428256273269653,190,0.0,3 +63690,2,0.0,1,1.9788167476654053,191,1.0,3 +63691,2,0.0,1,1.6068215370178223,192,0.0,3 +63692,2,1.0,1,1.6428210735321045,193,1.0,3 +63693,2,1.0,1,1.3068252801895142,194,1.0,3 +63694,2,1.0,1,1.5358223915100098,195,1.0,3 +63695,2,1.0,1,1.498822808265686,196,1.0,3 +63696,2,1.0,1,1.3868242502212524,197,1.0,3 +63697,2,1.0,1,1.1748255491256714,198,1.0,3 +63698,2,1.0,1,1.6218212842941284,199,0.0,3 +63699,2,0.0,1,1.200825572013855,200,0.0,3 +63700,2,1.0,1,2.165822744369507,201,1.0,3 +63701,2,1.0,1,1.343824863433838,202,0.0,3 +63702,2,0.0,1,1.6068215370178223,203,1.0,3 +63703,2,1.0,1,1.6778205633163452,204,0.0,3 +63704,2,0.0,1,1.5558221340179443,205,0.0,3 +63705,2,1.0,1,1.5788218975067139,206,1.0,3 +63706,2,1.0,1,1.6328210830688477,207,1.0,3 +63707,2,1.0,1,1.3778244256973267,208,1.0,3 +63708,2,1.0,1,1.4448235034942627,209,1.0,3 +63709,2,1.0,1,1.2658257484436035,210,1.0,3 +63710,2,1.0,1,1.1498254537582397,211,1.0,3 +63711,2,1.0,1,1.5468223094940186,212,1.0,3 +63712,2,1.0,1,1.1898255348205566,213,1.0,3 +63713,2,1.0,1,1.3298250436782837,214,1.0,3 +63714,2,1.0,1,1.9618169069290161,215,0.0,3 +63715,2,0.0,1,2.2848281860351562,216,1.0,3 +63716,2,0.0,1,1.2828255891799927,217,0.0,3 +63717,2,1.0,1,1.545822262763977,218,0.0,3 +63718,2,0.0,1,1.4878230094909668,219,0.0,3 +63719,2,0.0,1,1.3768243789672852,220,1.0,3 +63720,2,0.0,1,1.3378249406814575,221,0.0,3 +63721,2,0.0,1,2.0278162956237793,222,0.0,3 +63722,2,1.0,1,2.1398215293884277,223,1.0,3 +63723,2,1.0,1,1.3778244256973267,224,1.0,3 +63724,2,1.0,1,1.6748206615447998,225,1.0,3 +63725,2,1.0,1,1.850818395614624,226,1.0,3 +63726,2,1.0,1,1.5768218040466309,227,1.0,3 +63727,2,1.0,1,1.3028253316879272,228,0.0,3 +63728,2,1.0,1,1.6578208208084106,229,1.0,3 +63729,2,1.0,1,1.549822211265564,230,0.0,3 +63730,2,0.0,1,2.2678275108337402,231,1.0,3 +63731,2,0.0,1,1.6888203620910645,232,0.0,3 +63732,2,0.0,1,1.2428256273269653,233,1.0,3 +63733,2,0.0,1,1.480823040008545,234,0.0,3 +63734,2,0.0,1,1.2968254089355469,235,1.0,3 +63735,2,0.0,1,2.249826669692993,236,0.0,3 +63736,2,1.0,1,1.5788218975067139,237,0.0,3 +63737,2,1.0,1,2.1258208751678467,238,1.0,3 +63738,2,1.0,1,1.6058214902877808,239,1.0,3 +63739,2,1.0,1,1.5418223142623901,240,1.0,3 +63740,2,0.0,1,1.3008253574371338,241,0.0,3 +63741,2,1.0,1,1.362824559211731,242,1.0,3 +63742,2,1.0,1,1.1618255376815796,243,1.0,3 +63743,2,1.0,1,1.335824966430664,244,0.0,3 +63744,2,0.0,1,1.1798255443572998,245,0.0,3 +63745,2,0.0,1,1.6018215417861938,246,0.0,3 +63746,2,1.0,1,1.8308186531066895,247,0.0,3 +63747,2,0.0,1,1.7068202495574951,248,1.0,3 +63748,2,0.0,1,1.7788193225860596,249,1.0,3 +63749,2,0.0,1,1.4658232927322388,250,0.0,3 +63750,2,0.0,1,1.8938177824020386,251,1.0,3 +63751,2,0.0,1,1.5318224430084229,252,0.0,3 +63752,2,0.0,1,2.435835361480713,253,0.0,3 +63753,2,0.0,1,1.8878178596496582,254,1.0,3 +63754,2,0.0,1,1.6268212795257568,255,0.0,3 +63755,2,0.0,1,1.5178226232528687,256,1.0,3 +63756,2,0.0,1,1.5188225507736206,257,0.0,3 +63757,2,0.0,1,1.383824348449707,258,0.0,3 +63758,2,0.0,1,1.3298250436782837,259,1.0,3 +63759,2,0.0,1,1.6978203058242798,260,1.0,3 +63760,2,0.0,1,1.3058253526687622,261,0.0,3 +63761,2,0.0,1,2.1038198471069336,262,0.0,3 +63762,2,0.0,1,2.0368165969848633,263,0.0,3 +63763,2,0.0,1,1.5798218250274658,264,1.0,3 +63764,2,0.0,1,2.3078293800354004,265,0.0,3 +63765,2,0.0,1,1.5218225717544556,266,1.0,3 +63766,2,0.0,1,1.4228237867355347,267,1.0,3 +63767,2,0.0,1,1.4848229885101318,268,0.0,3 +63768,2,0.0,1,1.6568207740783691,269,1.0,3 +63769,2,0.0,1,1.1768255233764648,270,1.0,3 +63770,2,0.0,1,1.2238256931304932,271,0.0,3 +63771,2,0.0,1,1.8498183488845825,272,0.0,3 +63772,2,0.0,1,2.0378167629241943,273,0.0,3 +63773,2,0.0,1,1.663820743560791,274,1.0,3 +63774,2,0.0,1,1.295825481414795,275,0.0,3 +63775,2,0.0,1,1.6938203573226929,276,0.0,3 +63776,2,0.0,1,1.6558208465576172,277,1.0,3 +63777,2,0.0,1,1.3428248167037964,278,0.0,3 +63778,2,0.0,1,1.3968241214752197,279,1.0,3 +63779,2,0.0,1,1.2048256397247314,280,0.0,3 +63780,2,0.0,1,1.7398197650909424,281,1.0,3 +63781,2,0.0,1,1.4908229112625122,282,0.0,3 +63782,2,0.0,1,1.7178200483322144,283,0.0,3 +63783,2,0.0,1,1.4458235502243042,284,0.0,3 +63784,2,0.0,1,1.2638256549835205,285,1.0,3 +63785,2,0.0,1,1.4608232975006104,286,0.0,3 +63786,2,0.0,1,1.80781888961792,287,0.0,3 +63787,2,0.0,1,1.806818962097168,288,1.0,3 +63788,2,0.0,1,1.1738255023956299,289,1.0,3 +63789,2,0.0,1,1.384824275970459,290,1.0,3 +63790,2,0.0,1,1.2148256301879883,291,0.0,3 +63791,2,0.0,1,2.0288162231445312,292,1.0,3 +63792,2,0.0,1,2.198824405670166,293,1.0,3 +63793,2,0.0,1,1.5358223915100098,294,0.0,3 +63794,2,0.0,1,1.6238212585449219,295,0.0,3 +63795,2,1.0,1,1.9318172931671143,296,1.0,3 +63796,2,1.0,1,1.6698206663131714,297,1.0,3 +63797,2,1.0,1,1.3208250999450684,298,1.0,3 +63798,2,1.0,1,1.3668245077133179,299,0.0,3 +63799,2,1.0,1,1.5228224992752075,300,1.0,3 +63800,2,1.0,1,1.291825532913208,301,0.0,3 +63801,2,1.0,1,1.3918242454528809,302,0.0,3 +63802,2,0.0,1,1.615821361541748,303,0.0,3 +63803,2,0.0,1,1.825818657875061,304,0.0,3 +63804,2,1.0,1,2.0048162937164307,305,1.0,3 +63805,2,1.0,1,1.5988216400146484,306,0.0,3 +63806,2,0.0,1,1.3738244771957397,307,0.0,3 +63807,2,0.0,1,1.689820408821106,308,0.0,3 +63808,2,1.0,1,1.3078253269195557,309,1.0,3 +63809,2,1.0,1,1.6778205633163452,310,0.0,3 +63810,2,1.0,1,1.8088188171386719,311,0.0,3 +63811,2,0.0,1,1.2218255996704102,312,0.0,3 +63812,2,0.0,1,1.2018256187438965,313,1.0,3 +63813,2,0.0,1,1.2448257207870483,314,0.0,3 +63814,2,0.0,1,1.099825382232666,315,0.0,3 +63815,2,1.0,1,2.3528313636779785,316,0.0,3 +63816,2,0.0,1,1.5158226490020752,317,1.0,3 +63817,2,0.0,1,1.200825572013855,318,0.0,3 +63818,2,0.0,1,2.1498219966888428,319,1.0,3 +63819,2,0.0,1,1.3378249406814575,320,0.0,3 +63820,2,0.0,1,1.2628257274627686,321,0.0,3 +63821,2,0.0,1,1.5378223657608032,322,1.0,3 +63822,2,0.0,1,1.1778255701065063,323,0.0,3 +63823,2,1.0,1,1.3098253011703491,324,0.0,3 +63824,2,1.0,1,1.714820146560669,325,1.0,3 +63825,2,1.0,1,1.8618181943893433,326,1.0,3 +63826,2,1.0,1,1.5508222579956055,327,0.0,3 +63827,2,1.0,1,2.1228208541870117,328,1.0,3 +63828,2,1.0,1,1.5998215675354004,329,0.0,3 +63829,2,0.0,1,1.8538182973861694,330,1.0,3 +63830,2,0.0,1,1.3008253574371338,331,0.0,3 +63831,2,1.0,1,1.825818657875061,332,1.0,3 +63832,2,1.0,1,1.4148238897323608,333,1.0,3 +63833,2,1.0,1,1.3428248167037964,334,0.0,3 +63834,2,0.0,1,1.59382164478302,335,0.0,3 +63835,2,0.0,1,1.1908255815505981,336,0.0,3 +63836,2,1.0,1,1.7748193740844727,337,1.0,3 +63837,2,1.0,1,1.432823657989502,338,0.0,3 +63838,2,0.0,1,1.8378185033798218,339,0.0,3 +63839,2,1.0,1,1.689820408821106,340,1.0,3 +63840,2,0.0,1,2.0978195667266846,341,1.0,3 +63841,2,1.0,1,2.0148162841796875,342,1.0,3 +63842,2,1.0,1,1.6468210220336914,343,1.0,3 +63843,2,1.0,1,1.567821979522705,344,1.0,3 +63844,2,1.0,1,1.799818992614746,345,1.0,3 +63845,2,1.0,1,1.22782564163208,346,1.0,3 +63846,2,1.0,1,2.176823139190674,347,1.0,3 +63847,2,1.0,1,1.618821382522583,348,0.0,3 +63848,2,0.0,1,1.236825704574585,349,1.0,3 +63849,2,0.0,1,1.6878204345703125,350,0.0,3 +63850,2,0.0,1,1.2218255996704102,351,0.0,3 +63851,2,0.0,1,1.984816551208496,352,0.0,3 +63852,2,0.0,1,2.0558176040649414,353,1.0,3 +63853,2,0.0,1,2.2778279781341553,354,0.0,3 +63854,2,1.0,1,1.6348211765289307,355,1.0,3 +63855,2,1.0,1,1.6338211297988892,356,0.0,3 +63856,2,1.0,1,1.9708168506622314,357,1.0,3 +63857,2,1.0,1,1.2248256206512451,358,1.0,3 +63858,2,0.0,1,1.4128239154815674,359,0.0,3 +63859,2,1.0,1,1.4828230142593384,360,0.0,3 +63860,2,0.0,1,1.6078214645385742,361,0.0,3 +63861,2,1.0,1,1.667820692062378,362,1.0,3 +63862,2,1.0,1,1.3038253784179688,363,0.0,3 +63863,2,0.0,1,2.1108202934265137,364,1.0,3 +63864,2,0.0,1,1.5618220567703247,365,0.0,3 +63865,2,0.0,1,1.8578182458877563,366,0.0,3 +63866,2,0.0,1,1.7398197650909424,367,0.0,3 +63867,2,1.0,1,1.4908229112625122,368,1.0,3 +63868,2,1.0,1,1.1688255071640015,369,0.0,3 +63869,2,1.0,1,1.3548246622085571,370,1.0,3 +63870,2,1.0,1,1.781819224357605,371,0.0,3 +63871,2,0.0,1,1.2428256273269653,372,1.0,3 +63872,2,0.0,1,1.318825125694275,373,1.0,3 +63873,2,0.0,1,1.3008253574371338,374,0.0,3 +63874,2,1.0,1,1.310825228691101,375,0.0,3 +63875,2,0.0,1,1.528822422027588,376,0.0,3 +63876,2,0.0,1,1.3078253269195557,377,0.0,3 +63877,2,0.0,1,2.2708277702331543,378,0.0,3 +63878,2,1.0,1,1.9548170566558838,379,1.0,3 +63879,2,1.0,1,1.711820125579834,380,1.0,3 +63880,2,1.0,1,1.4378236532211304,381,1.0,3 +63881,2,1.0,1,1.5608220100402832,382,0.0,3 +63882,2,1.0,1,1.8458184003829956,383,1.0,3 +63883,2,1.0,1,1.800818920135498,384,0.0,3 +63884,2,0.0,1,1.8748180866241455,385,0.0,3 +63885,2,0.0,1,1.7938190698623657,386,0.0,3 +63886,2,1.0,1,2.191823959350586,387,1.0,3 +63887,2,1.0,1,1.3468247652053833,388,1.0,3 +63888,2,1.0,1,1.314825177192688,389,0.0,3 +63889,2,0.0,1,1.1688255071640015,390,0.0,3 +63890,2,0.0,1,1.2178256511688232,391,0.0,3 +63891,2,1.0,1,1.6018215417861938,392,1.0,3 +63892,2,1.0,1,1.260825753211975,393,0.0,3 +63893,2,1.0,1,1.3548246622085571,394,1.0,3 +63894,2,1.0,1,1.7428197860717773,395,0.0,3 +63895,2,1.0,1,2.0028164386749268,396,1.0,3 +63896,2,1.0,1,1.4148238897323608,397,0.0,3 +63897,2,1.0,1,1.3338249921798706,398,1.0,3 +63898,2,1.0,1,1.3608245849609375,399,0.0,3 +63899,2,1.0,1,1.5908217430114746,400,1.0,3 +63900,2,1.0,1,1.612821340560913,401,1.0,3 +63901,2,1.0,1,1.2778257131576538,402,1.0,3 +63902,2,1.0,1,1.4888229370117188,403,1.0,3 +63903,2,1.0,1,1.3448247909545898,404,1.0,3 +63904,2,1.0,1,1.3828243017196655,405,0.0,3 +63905,2,1.0,1,1.7468197345733643,406,1.0,3 +63906,2,1.0,1,1.5338224172592163,407,1.0,3 +63907,2,1.0,1,1.6888203620910645,408,1.0,3 +63908,2,1.0,1,1.3488247394561768,409,1.0,3 +63909,2,1.0,1,1.5788218975067139,410,0.0,3 +63910,2,1.0,1,2.0858190059661865,411,0.0,3 +63911,2,1.0,1,1.530822515487671,412,1.0,3 +63912,2,1.0,1,1.4818230867385864,413,1.0,3 +63913,2,1.0,1,1.362824559211731,414,1.0,3 +63914,2,1.0,1,1.2508256435394287,415,1.0,3 +63915,2,1.0,1,1.230825662612915,416,1.0,3 +63916,2,1.0,1,1.2898255586624146,417,1.0,3 +63917,2,1.0,1,1.5798218250274658,418,0.0,3 +63918,2,1.0,1,2.212824821472168,419,0.0,3 +63919,2,0.0,1,1.5098227262496948,420,1.0,3 +63920,2,0.0,1,1.175825595855713,421,1.0,3 +63921,2,0.0,1,1.1998255252838135,422,0.0,3 +63922,2,0.0,1,2.1058199405670166,423,0.0,3 +63923,2,1.0,1,1.7648193836212158,424,1.0,3 +63924,2,1.0,1,1.163825511932373,425,1.0,3 +63925,2,1.0,1,1.663820743560791,426,1.0,3 +63926,2,1.0,1,1.1458255052566528,427,1.0,3 +63927,2,1.0,1,1.5158226490020752,428,1.0,3 +63928,2,1.0,1,1.3608245849609375,429,0.0,3 +63929,2,1.0,1,1.729819893836975,430,0.0,3 +63930,2,1.0,1,1.7278199195861816,431,1.0,3 +63931,2,1.0,1,1.2328256368637085,432,1.0,3 +63932,2,1.0,1,1.365824580192566,433,0.0,3 +63933,2,1.0,1,1.313825249671936,434,1.0,3 +63934,2,0.0,1,1.261825680732727,435,1.0,3 +63935,2,1.0,1,1.64582097530365,436,1.0,3 +63936,2,1.0,1,1.942817211151123,437,1.0,3 +63937,2,0.0,1,1.9898165464401245,438,1.0,3 +63938,2,1.0,1,1.7068202495574951,439,1.0,3 +63939,2,0.0,1,2.24782657623291,440,1.0,3 +63940,2,0.0,1,1.5188225507736206,441,0.0,3 +63941,2,1.0,1,1.9578169584274292,442,1.0,3 +63942,2,1.0,1,1.5128226280212402,443,0.0,3 +63943,2,0.0,1,1.4848229885101318,444,0.0,3 +63944,2,1.0,1,2.257827043533325,445,1.0,3 +63945,2,1.0,1,1.4488234519958496,446,1.0,3 +63946,2,1.0,1,1.6068215370178223,447,1.0,3 +63947,2,1.0,1,1.6948204040527344,448,1.0,3 +63948,2,1.0,1,1.4598233699798584,449,1.0,3 +63949,2,1.0,1,1.6548209190368652,450,0.0,3 +63950,2,0.0,1,1.1578254699707031,451,0.0,3 +63951,2,0.0,1,1.3958241939544678,452,0.0,3 +63952,2,0.0,1,1.6098214387893677,453,0.0,3 +63953,2,1.0,1,1.7038202285766602,454,1.0,3 +63954,2,1.0,1,1.273825764656067,455,1.0,3 +63955,2,1.0,1,1.4298237562179565,456,1.0,3 +63956,2,1.0,1,1.6478209495544434,457,0.0,3 +63957,2,0.0,1,1.7238199710845947,458,1.0,3 +63958,2,0.0,1,1.3558247089385986,459,0.0,3 +63959,2,1.0,1,2.1058199405670166,460,1.0,3 +63960,2,1.0,1,1.6538208723068237,461,0.0,3 +63961,2,0.0,1,1.62282133102417,462,0.0,3 +63962,2,0.0,1,1.7248198986053467,463,0.0,3 +63963,2,1.0,1,1.7428197860717773,464,1.0,3 +63964,2,1.0,1,1.6828205585479736,465,1.0,3 +63965,2,1.0,1,1.7458196878433228,466,0.0,3 +63966,2,1.0,1,1.2848255634307861,467,0.0,3 +63967,2,0.0,1,1.2538256645202637,468,0.0,3 +63968,2,0.0,1,2.257827043533325,469,0.0,3 +63969,2,0.0,1,1.8148188591003418,470,1.0,3 +63970,2,0.0,1,1.2748256921768188,471,0.0,3 +63971,2,0.0,1,1.7438197135925293,472,1.0,3 +63972,2,0.0,1,1.2658257484436035,473,0.0,3 +63973,2,0.0,1,1.4698232412338257,474,0.0,3 +63974,2,1.0,1,1.8658181428909302,475,1.0,3 +63975,2,1.0,1,1.4748231172561646,476,1.0,3 +63976,2,1.0,1,1.3928241729736328,477,0.0,3 +63977,2,1.0,1,1.7018202543258667,478,1.0,3 +63978,2,1.0,1,1.549822211265564,479,0.0,3 +63979,2,0.0,1,1.62282133102417,480,1.0,3 +63980,2,0.0,1,1.2048256397247314,481,0.0,3 +63981,2,0.0,1,1.3568246364593506,482,0.0,3 +63982,2,1.0,1,1.4088239669799805,483,1.0,3 +63983,2,1.0,1,1.6928203105926514,484,1.0,3 +63984,2,1.0,1,1.4888229370117188,485,1.0,3 +63985,2,1.0,1,1.4878230094909668,486,0.0,3 +63986,2,0.0,1,1.8248186111450195,487,1.0,3 +63987,2,1.0,1,1.4898229837417603,488,0.0,3 +63988,2,0.0,1,1.9078176021575928,489,1.0,3 +63989,2,0.0,1,1.405824065208435,490,0.0,3 +63990,2,0.0,1,1.2158255577087402,491,0.0,3 +63991,2,1.0,1,1.9788167476654053,492,1.0,3 +63992,2,1.0,1,1.715820074081421,493,1.0,3 +63993,2,1.0,1,1.2968254089355469,494,0.0,3 +63994,2,0.0,1,1.258825659751892,495,0.0,3 +63995,2,1.0,1,1.5318224430084229,496,1.0,3 +63996,2,1.0,1,1.4418236017227173,497,1.0,3 +63997,2,1.0,1,1.2478256225585938,498,0.0,3 +63998,2,0.0,1,1.258825659751892,499,0.0,3 +63999,2,1.0,1,1.8398184776306152,500,0.0,3 +64000,2,1.0,2,1.855818271636963,1,1.0,3 +64001,2,1.0,2,1.2298256158828735,2,1.0,3 +64002,2,1.0,2,1.7518196105957031,3,0.0,3 +64003,2,0.0,2,1.3558247089385986,4,0.0,3 +64004,2,1.0,2,1.427823781967163,5,1.0,3 +64005,2,1.0,2,1.7368197441101074,6,1.0,3 +64006,2,1.0,2,1.5988216400146484,7,1.0,3 +64007,2,1.0,2,1.5618220567703247,8,1.0,3 +64008,2,1.0,2,1.9368171691894531,9,0.0,3 +64009,2,1.0,2,1.5408222675323486,10,0.0,3 +64010,2,1.0,2,1.9608168601989746,11,0.0,3 +64011,2,0.0,2,1.8348186016082764,12,0.0,3 +64012,2,0.0,2,2.0148162841796875,13,0.0,3 +64013,2,0.0,2,1.6038215160369873,14,0.0,3 +64014,2,1.0,2,2.1108202934265137,15,1.0,3 +64015,2,1.0,2,1.7018202543258667,16,1.0,3 +64016,2,1.0,2,1.3478248119354248,17,1.0,3 +64017,2,1.0,2,1.231825590133667,18,0.0,3 +64018,2,0.0,2,2.1378214359283447,19,0.0,3 +64019,2,0.0,2,1.2508256435394287,20,1.0,3 +64020,2,0.0,2,1.291825532913208,21,0.0,3 +64021,2,1.0,2,1.6018215417861938,22,1.0,3 +64022,2,1.0,2,1.9778167009353638,23,1.0,3 +64023,2,1.0,2,1.3098253011703491,24,1.0,3 +64024,2,1.0,2,1.5908217430114746,25,0.0,3 +64025,2,1.0,2,1.2558257579803467,26,0.0,3 +64026,2,1.0,2,2.1488218307495117,27,1.0,3 +64027,2,1.0,2,1.7738193273544312,28,0.0,3 +64028,2,0.0,2,2.2938287258148193,29,0.0,3 +64029,2,1.0,2,1.5608220100402832,30,1.0,3 +64030,2,1.0,2,1.2598257064819336,31,1.0,3 +64031,2,1.0,2,1.8568181991577148,32,1.0,3 +64032,2,1.0,2,1.236825704574585,33,1.0,3 +64033,2,1.0,2,1.8128187656402588,34,0.0,3 +64034,2,1.0,2,1.3928241729736328,35,0.0,3 +64035,2,1.0,2,1.6428210735321045,36,1.0,3 +64036,2,1.0,2,1.575821876525879,37,0.0,3 +64037,2,0.0,2,1.502822756767273,38,0.0,3 +64038,2,0.0,2,1.1488255262374878,39,0.0,3 +64039,2,1.0,2,2.1398215293884277,40,0.0,3 +64040,2,0.0,2,2.1028199195861816,41,1.0,3 +64041,2,0.0,2,1.2628257274627686,42,0.0,3 +64042,2,0.0,2,1.6528208255767822,43,0.0,3 +64043,2,0.0,2,1.3948241472244263,44,1.0,3 +64044,2,0.0,2,1.172825574874878,45,0.0,3 +64045,2,1.0,2,1.2818256616592407,46,1.0,3 +64046,2,1.0,2,1.4118239879608154,47,0.0,3 +64047,2,0.0,2,1.339824914932251,48,0.0,3 +64048,2,0.0,2,1.8868179321289062,49,1.0,3 +64049,2,0.0,2,1.1628254652023315,50,0.0,3 +64050,2,1.0,2,1.3698245286941528,51,1.0,3 +64051,2,1.0,2,1.715820074081421,52,1.0,3 +64052,2,1.0,2,1.358824610710144,53,1.0,3 +64053,2,1.0,2,1.472823143005371,54,0.0,3 +64054,2,1.0,2,1.5438222885131836,55,0.0,3 +64055,2,0.0,2,2.2628273963928223,56,1.0,3 +64056,2,0.0,2,1.3508247137069702,57,1.0,3 +64057,2,0.0,2,1.1208254098892212,58,0.0,3 +64058,2,0.0,2,1.361824631690979,59,0.0,3 +64059,2,0.0,2,1.3488247394561768,60,1.0,3 +64060,2,0.0,2,1.2968254089355469,61,1.0,3 +64061,2,0.0,2,1.261825680732727,62,0.0,3 +64062,2,0.0,2,1.2948254346847534,63,0.0,3 +64063,2,1.0,2,2.5578410625457764,64,0.0,3 +64064,2,1.0,2,1.7828192710876465,65,1.0,3 +64065,2,1.0,2,1.8228187561035156,66,0.0,3 +64066,2,1.0,2,1.9678168296813965,67,0.0,3 +64067,2,1.0,2,1.6138213872909546,68,1.0,3 +64068,2,1.0,2,1.2748256921768188,69,1.0,3 +64069,2,1.0,2,1.498822808265686,70,0.0,3 +64070,2,1.0,2,1.5868217945098877,71,0.0,3 +64071,2,0.0,2,1.9538170099258423,72,1.0,3 +64072,2,0.0,2,1.0728254318237305,73,0.0,3 +64073,2,0.0,2,1.1738255023956299,74,1.0,3 +64074,2,0.0,2,1.6448209285736084,75,1.0,3 +64075,2,0.0,2,1.2028255462646484,76,0.0,3 +64076,2,1.0,2,1.3698245286941528,77,1.0,3 +64077,2,1.0,2,1.193825602531433,78,1.0,3 +64078,2,1.0,2,1.4218238592147827,79,0.0,3 +64079,2,1.0,2,1.4618233442306519,80,1.0,3 +64080,2,1.0,2,1.6808204650878906,81,0.0,3 +64081,2,0.0,2,1.4128239154815674,82,0.0,3 +64082,2,1.0,2,1.479823112487793,83,1.0,3 +64083,2,1.0,2,1.2788256406784058,84,1.0,3 +64084,2,1.0,2,1.4118239879608154,85,0.0,3 +64085,2,0.0,2,1.2978254556655884,86,1.0,3 +64086,2,0.0,2,1.267825722694397,87,1.0,3 +64087,2,0.0,2,1.803818941116333,88,1.0,3 +64088,2,0.0,2,1.1828255653381348,89,0.0,3 +64089,2,1.0,2,2.213824987411499,90,0.0,3 +64090,2,0.0,2,1.133825421333313,91,0.0,3 +64091,2,0.0,2,1.273825764656067,92,0.0,3 +64092,2,1.0,2,1.4148238897323608,93,1.0,3 +64093,2,1.0,2,1.6868205070495605,94,1.0,3 +64094,2,1.0,2,1.4368236064910889,95,0.0,3 +64095,2,0.0,2,1.708820104598999,96,0.0,3 +64096,2,0.0,2,1.295825481414795,97,0.0,3 +64097,2,1.0,2,1.318825125694275,98,1.0,3 +64098,2,1.0,2,1.3748244047164917,99,1.0,3 +64099,2,1.0,2,2.0578176975250244,100,1.0,3 +64100,2,1.0,2,1.2938255071640015,101,0.0,3 +64101,2,0.0,2,2.263827323913574,102,1.0,3 +64102,2,0.0,2,2.0618178844451904,103,0.0,3 +64103,2,1.0,2,1.432823657989502,104,0.0,3 +64104,2,0.0,2,1.6778205633163452,105,1.0,3 +64105,2,0.0,2,1.4828230142593384,106,0.0,3 +64106,2,0.0,2,1.3908241987228394,107,0.0,3 +64107,2,0.0,2,1.428823709487915,108,0.0,3 +64108,2,0.0,2,1.5848217010498047,109,0.0,3 +64109,2,0.0,2,1.5318224430084229,110,0.0,3 +64110,2,1.0,2,1.524822473526001,111,0.0,3 +64111,2,0.0,2,1.3288249969482422,112,1.0,3 +64112,2,0.0,2,1.4478235244750977,113,1.0,3 +64113,2,0.0,2,1.2698256969451904,114,0.0,3 +64114,2,0.0,2,1.6238212585449219,115,1.0,3 +64115,2,0.0,2,1.4678232669830322,116,0.0,3 +64116,2,0.0,2,1.7218199968338013,117,1.0,3 +64117,2,0.0,2,1.6988203525543213,118,1.0,3 +64118,2,0.0,2,1.4008240699768066,119,0.0,3 +64119,2,0.0,2,1.136825442314148,120,0.0,3 +64120,2,1.0,2,1.8818179368972778,121,1.0,3 +64121,2,1.0,2,1.3918242454528809,122,1.0,3 +64122,2,1.0,2,1.3338249921798706,123,1.0,3 +64123,2,1.0,2,1.7618194818496704,124,0.0,3 +64124,2,0.0,2,1.258825659751892,125,0.0,3 +64125,2,1.0,2,1.3238251209259033,126,1.0,3 +64126,2,1.0,2,1.7438197135925293,127,0.0,3 +64127,2,1.0,2,1.498822808265686,128,0.0,3 +64128,2,1.0,2,1.8098188638687134,129,0.0,3 +64129,2,1.0,2,1.704820156097412,130,0.0,3 +64130,2,0.0,2,2.244826316833496,131,0.0,3 +64131,2,0.0,2,1.7948191165924072,132,1.0,3 +64132,2,0.0,2,1.206825613975525,133,0.0,3 +64133,2,0.0,2,1.5478222370147705,134,0.0,3 +64134,2,1.0,2,2.206824779510498,135,1.0,3 +64135,2,1.0,2,1.8818179368972778,136,1.0,3 +64136,2,1.0,2,1.8458184003829956,137,1.0,3 +64137,2,1.0,2,1.3928241729736328,138,1.0,3 +64138,2,0.0,2,1.1718255281448364,139,1.0,3 +64139,2,0.0,2,1.9078176021575928,140,0.0,3 +64140,2,1.0,2,1.3558247089385986,141,1.0,3 +64141,2,1.0,2,1.2568256855010986,142,1.0,3 +64142,2,1.0,2,1.990816593170166,143,1.0,3 +64143,2,1.0,2,1.3998241424560547,144,1.0,3 +64144,2,1.0,2,1.4788230657577515,145,0.0,3 +64145,2,1.0,2,1.2108255624771118,146,0.0,3 +64146,2,0.0,2,1.2948254346847534,147,0.0,3 +64147,2,1.0,2,1.5988216400146484,148,1.0,3 +64148,2,1.0,2,1.4818230867385864,149,1.0,3 +64149,2,1.0,2,1.3688244819641113,150,0.0,3 +64150,2,0.0,2,1.737819790840149,151,0.0,3 +64151,2,0.0,2,1.9138175249099731,152,1.0,3 +64152,2,0.0,2,1.7008202075958252,153,0.0,3 +64153,2,1.0,2,1.4708231687545776,154,0.0,3 +64154,2,0.0,2,1.5618220567703247,155,1.0,3 +64155,2,0.0,2,1.2298256158828735,156,0.0,3 +64156,2,0.0,2,1.2238256931304932,157,1.0,3 +64157,2,0.0,2,1.22782564163208,158,0.0,3 +64158,2,0.0,2,2.231825828552246,159,0.0,3 +64159,2,0.0,2,1.758819580078125,160,1.0,3 +64160,2,0.0,2,1.2568256855010986,161,0.0,3 +64161,2,1.0,2,1.458823323249817,162,0.0,3 +64162,2,1.0,2,1.3418248891830444,163,1.0,3 +64163,2,1.0,2,1.3268250226974487,164,1.0,3 +64164,2,1.0,2,1.2558257579803467,165,1.0,3 +64165,2,1.0,2,1.4388235807418823,166,0.0,3 +64166,2,0.0,2,1.9558169841766357,167,1.0,3 +64167,2,0.0,2,2.5358400344848633,168,0.0,3 +64168,2,0.0,2,1.310825228691101,169,0.0,3 +64169,2,0.0,2,1.8888177871704102,170,1.0,3 +64170,2,0.0,2,1.6988203525543213,171,1.0,3 +64171,2,0.0,2,1.1318254470825195,172,1.0,3 +64172,2,0.0,2,1.236825704574585,173,0.0,3 +64173,2,0.0,2,1.3568246364593506,174,0.0,3 +64174,2,1.0,2,1.4848229885101318,175,1.0,3 +64175,2,1.0,2,1.3568246364593506,176,1.0,3 +64176,2,1.0,2,1.6878204345703125,177,1.0,3 +64177,2,1.0,2,2.0748186111450195,178,1.0,3 +64178,2,1.0,2,1.3298250436782837,179,1.0,3 +64179,2,1.0,2,1.196825623512268,180,1.0,3 +64180,2,1.0,2,1.2528257369995117,181,0.0,3 +64181,2,0.0,2,1.405824065208435,182,1.0,3 +64182,2,0.0,2,1.475823163986206,183,1.0,3 +64183,2,0.0,2,1.193825602531433,184,0.0,3 +64184,2,0.0,2,1.3978241682052612,185,0.0,3 +64185,2,1.0,2,1.6308212280273438,186,1.0,3 +64186,2,1.0,2,1.166825532913208,187,1.0,3 +64187,2,1.0,2,1.2428256273269653,188,1.0,3 +64188,2,1.0,2,1.1878255605697632,189,1.0,3 +64189,2,1.0,2,1.2098256349563599,190,1.0,3 +64190,2,1.0,2,1.435823678970337,191,0.0,3 +64191,2,1.0,2,1.4438235759735107,192,1.0,3 +64192,2,1.0,2,1.5668220520019531,193,1.0,3 +64193,2,1.0,2,1.7448196411132812,194,1.0,3 +64194,2,1.0,2,1.2798256874084473,195,0.0,3 +64195,2,0.0,2,2.226825714111328,196,0.0,3 +64196,2,0.0,2,1.3038253784179688,197,1.0,3 +64197,2,0.0,2,1.1848255395889282,198,1.0,3 +64198,2,0.0,2,1.405824065208435,199,0.0,3 +64199,2,0.0,2,1.1788254976272583,200,1.0,3 +64200,2,0.0,2,1.4168238639831543,201,0.0,3 +64201,2,1.0,2,1.762819528579712,202,0.0,3 +64202,2,0.0,2,1.2168256044387817,203,0.0,3 +64203,2,0.0,2,1.2078256607055664,204,0.0,3 +64204,2,0.0,2,2.3628320693969727,205,1.0,3 +64205,2,0.0,2,1.1118254661560059,206,1.0,3 +64206,2,0.0,2,1.3548246622085571,207,0.0,3 +64207,2,1.0,2,2.414834499359131,208,1.0,3 +64208,2,1.0,2,1.3278250694274902,209,0.0,3 +64209,2,1.0,2,1.3218251466751099,210,1.0,3 +64210,2,0.0,2,1.1528254747390747,211,1.0,3 +64211,2,1.0,2,1.7368197441101074,212,1.0,3 +64212,2,1.0,2,1.8598182201385498,213,1.0,3 +64213,2,1.0,2,1.2118256092071533,214,0.0,3 +64214,2,0.0,2,1.2188255786895752,215,0.0,3 +64215,2,1.0,2,1.9288172721862793,216,0.0,3 +64216,2,0.0,2,1.23982572555542,217,0.0,3 +64217,2,1.0,2,1.163825511932373,218,1.0,3 +64218,2,1.0,2,1.8768179416656494,219,0.0,3 +64219,2,1.0,2,1.472823143005371,220,1.0,3 +64220,2,1.0,2,1.1528254747390747,221,1.0,3 +64221,2,1.0,2,1.5318224430084229,222,0.0,3 +64222,2,0.0,2,1.5438222885131836,223,0.0,3 +64223,2,1.0,2,1.2988253831863403,224,1.0,3 +64224,2,1.0,2,1.405824065208435,225,1.0,3 +64225,2,1.0,2,1.2228256464004517,226,0.0,3 +64226,2,0.0,2,1.4028240442276,227,1.0,3 +64227,2,0.0,2,1.4638233184814453,228,0.0,3 +64228,2,0.0,2,1.458823323249817,229,1.0,3 +64229,2,0.0,2,1.660820722579956,230,0.0,3 +64230,2,1.0,2,2.0048162937164307,231,1.0,3 +64231,2,1.0,2,2.238826274871826,232,0.0,3 +64232,2,1.0,2,1.5518221855163574,233,1.0,3 +64233,2,1.0,2,1.206825613975525,234,0.0,3 +64234,2,1.0,2,1.475823163986206,235,0.0,3 +64235,2,0.0,2,2.1438217163085938,236,1.0,3 +64236,2,0.0,2,1.662820816040039,237,0.0,3 +64237,2,0.0,2,1.8608181476593018,238,0.0,3 +64238,2,1.0,2,1.987816572189331,239,0.0,3 +64239,2,0.0,2,1.3088252544403076,240,1.0,3 +64240,2,0.0,2,1.133825421333313,241,0.0,3 +64241,2,0.0,2,1.6438210010528564,242,1.0,3 +64242,2,0.0,2,1.273825764656067,243,0.0,3 +64243,2,1.0,2,1.288825511932373,244,1.0,3 +64244,2,0.0,2,1.2858256101608276,245,0.0,3 +64245,2,1.0,2,1.1418254375457764,246,0.0,3 +64246,2,1.0,2,1.8098188638687134,247,0.0,3 +64247,2,0.0,2,1.7888190746307373,248,0.0,3 +64248,2,0.0,2,1.2598257064819336,249,1.0,3 +64249,2,0.0,2,1.5298224687576294,250,1.0,3 +64250,2,0.0,2,1.4018241167068481,251,1.0,3 +64251,2,0.0,2,1.2828255891799927,252,0.0,3 +64252,2,1.0,2,1.7888190746307373,253,1.0,3 +64253,2,1.0,2,1.7168200016021729,254,1.0,3 +64254,2,0.0,2,1.2468256950378418,255,1.0,3 +64255,2,1.0,2,1.2098256349563599,256,0.0,3 +64256,2,0.0,2,1.3418248891830444,257,0.0,3 +64257,2,0.0,2,1.343824863433838,258,1.0,3 +64258,2,0.0,2,1.2998254299163818,259,0.0,3 +64259,2,0.0,2,1.4208238124847412,260,1.0,3 +64260,2,0.0,2,1.458823323249817,261,1.0,3 +64261,2,0.0,2,1.4418236017227173,262,1.0,3 +64262,2,0.0,2,1.57082200050354,263,0.0,3 +64263,2,0.0,2,1.574821949005127,264,0.0,3 +64264,2,0.0,2,1.7408196926116943,265,1.0,3 +64265,2,0.0,2,1.2558257579803467,266,1.0,3 +64266,2,0.0,2,1.5658220052719116,267,1.0,3 +64267,2,0.0,2,1.6398210525512695,268,0.0,3 +64268,2,1.0,2,1.8838179111480713,269,0.0,3 +64269,2,0.0,2,1.3068252801895142,270,0.0,3 +64270,2,1.0,2,2.3088293075561523,271,0.0,3 +64271,2,1.0,2,1.7878191471099854,272,0.0,3 +64272,2,1.0,2,2.0798187255859375,273,0.0,3 +64273,2,1.0,2,1.6328210830688477,274,1.0,3 +64274,2,1.0,2,1.64582097530365,275,1.0,3 +64275,2,1.0,2,1.361824631690979,276,1.0,3 +64276,2,1.0,2,1.4438235759735107,277,1.0,3 +64277,2,1.0,2,1.4698232412338257,278,1.0,3 +64278,2,1.0,2,1.230825662612915,279,0.0,3 +64279,2,1.0,2,1.3518247604370117,280,1.0,3 +64280,2,1.0,2,1.2668256759643555,281,0.0,3 +64281,2,0.0,2,1.3858243227005005,282,1.0,3 +64282,2,1.0,2,1.8328185081481934,283,0.0,3 +64283,2,0.0,2,1.172825574874878,284,1.0,3 +64284,2,0.0,2,1.260825753211975,285,1.0,3 +64285,2,0.0,2,1.1768255233764648,286,1.0,3 +64286,2,0.0,2,1.3818243741989136,287,0.0,3 +64287,2,0.0,2,1.5448222160339355,288,0.0,3 +64288,2,1.0,2,1.1778255701065063,289,1.0,3 +64289,2,1.0,2,1.5258225202560425,290,0.0,3 +64290,2,1.0,2,1.7248198986053467,291,0.0,3 +64291,2,1.0,2,1.428823709487915,292,1.0,3 +64292,2,1.0,2,1.2168256044387817,293,1.0,3 +64293,2,1.0,2,1.427823781967163,294,1.0,3 +64294,2,1.0,2,1.4178239107131958,295,0.0,3 +64295,2,1.0,2,2.0548176765441895,296,1.0,3 +64296,2,1.0,2,1.6578208208084106,297,0.0,3 +64297,2,0.0,2,1.3158252239227295,298,1.0,3 +64298,2,0.0,2,1.9098175764083862,299,1.0,3 +64299,2,0.0,2,1.9518170356750488,300,0.0,3 +64300,2,0.0,2,1.340824842453003,301,1.0,3 +64301,2,0.0,2,1.2848255634307861,302,0.0,3 +64302,2,0.0,2,1.785819172859192,303,1.0,3 +64303,2,0.0,2,1.472823143005371,304,1.0,3 +64304,2,0.0,2,1.4138239622116089,305,1.0,3 +64305,2,0.0,2,1.715820074081421,306,1.0,3 +64306,2,0.0,2,1.3298250436782837,307,1.0,3 +64307,2,0.0,2,1.2898255586624146,308,0.0,3 +64308,2,0.0,2,1.825818657875061,309,0.0,3 +64309,2,1.0,2,1.4048240184783936,310,0.0,3 +64310,2,0.0,2,1.6578208208084106,311,1.0,3 +64311,2,0.0,2,1.5768218040466309,312,0.0,3 +64312,2,1.0,2,1.568821907043457,313,1.0,3 +64313,2,1.0,2,2.0868191719055176,314,1.0,3 +64314,2,1.0,2,1.4248237609863281,315,0.0,3 +64315,2,0.0,2,2.146821975708008,316,0.0,3 +64316,2,1.0,2,1.9208173751831055,317,1.0,3 +64317,2,1.0,2,1.7908191680908203,318,1.0,3 +64318,2,1.0,2,1.6758205890655518,319,1.0,3 +64319,2,1.0,2,1.3158252239227295,320,1.0,3 +64320,2,1.0,2,1.4868229627609253,321,1.0,3 +64321,2,1.0,2,1.6088213920593262,322,0.0,3 +64322,2,1.0,2,1.2688257694244385,323,1.0,3 +64323,2,1.0,2,2.196824073791504,324,0.0,3 +64324,2,1.0,2,2.5318398475646973,325,1.0,3 +64325,2,1.0,2,1.7098201513290405,326,0.0,3 +64326,2,0.0,2,1.3168251514434814,327,1.0,3 +64327,2,0.0,2,1.230825662612915,328,0.0,3 +64328,2,0.0,2,1.2408256530761719,329,0.0,3 +64329,2,0.0,2,2.0958194732666016,330,1.0,3 +64330,2,0.0,2,1.409824013710022,331,0.0,3 +64331,2,1.0,2,1.6498209238052368,332,1.0,3 +64332,2,1.0,2,1.6358211040496826,333,0.0,3 +64333,2,1.0,2,2.0038163661956787,334,0.0,3 +64334,2,0.0,2,2.0008163452148438,335,1.0,3 +64335,2,0.0,2,1.2478256225585938,336,0.0,3 +64336,2,1.0,2,1.4568233489990234,337,0.0,3 +64337,2,0.0,2,1.169825553894043,338,1.0,3 +64338,2,0.0,2,1.234825611114502,339,0.0,3 +64339,2,1.0,2,1.667820692062378,340,0.0,3 +64340,2,1.0,2,1.7578195333480835,341,0.0,3 +64341,2,0.0,2,1.2248256206512451,342,1.0,3 +64342,2,0.0,2,1.3008253574371338,343,0.0,3 +64343,2,0.0,2,1.5048227310180664,344,0.0,3 +64344,2,0.0,2,1.6318211555480957,345,0.0,3 +64345,2,0.0,2,1.1958255767822266,346,1.0,3 +64346,2,0.0,2,1.6238212585449219,347,1.0,3 +64347,2,0.0,2,1.3008253574371338,348,1.0,3 +64348,2,0.0,2,1.2758257389068604,349,0.0,3 +64349,2,0.0,2,1.3348249197006226,350,1.0,3 +64350,2,0.0,2,1.6798205375671387,351,0.0,3 +64351,2,0.0,2,1.711820125579834,352,1.0,3 +64352,2,0.0,2,1.457823395729065,353,1.0,3 +64353,2,0.0,2,1.2468256950378418,354,1.0,3 +64354,2,0.0,2,2.0298163890838623,355,0.0,3 +64355,2,0.0,2,1.3678245544433594,356,0.0,3 +64356,2,0.0,2,1.6298211812973022,357,1.0,3 +64357,2,0.0,2,1.5158226490020752,358,0.0,3 +64358,2,1.0,2,1.6988203525543213,359,1.0,3 +64359,2,1.0,2,1.8918178081512451,360,0.0,3 +64360,2,0.0,2,1.5668220520019531,361,0.0,3 +64361,2,0.0,2,1.479823112487793,362,0.0,3 +64362,2,0.0,2,1.1198253631591797,363,1.0,3 +64363,2,0.0,2,1.432823657989502,364,1.0,3 +64364,2,0.0,2,1.4228237867355347,365,1.0,3 +64365,2,0.0,2,1.2828255891799927,366,0.0,3 +64366,2,0.0,2,1.362824559211731,367,1.0,3 +64367,2,0.0,2,1.45482337474823,368,1.0,3 +64368,2,0.0,2,1.5258225202560425,369,0.0,3 +64369,2,1.0,2,1.7808191776275635,370,1.0,3 +64370,2,1.0,2,1.5778218507766724,371,1.0,3 +64371,2,1.0,2,1.939817190170288,372,1.0,3 +64372,2,1.0,2,1.8318185806274414,373,1.0,3 +64373,2,1.0,2,1.5668220520019531,374,0.0,3 +64374,2,1.0,2,1.6138213872909546,375,1.0,3 +64375,2,1.0,2,1.3288249969482422,376,1.0,3 +64376,2,1.0,2,1.3258250951766968,377,1.0,3 +64377,2,1.0,2,1.3448247909545898,378,0.0,3 +64378,2,0.0,2,1.2718257904052734,379,0.0,3 +64379,2,0.0,2,1.8888177871704102,380,0.0,3 +64380,2,1.0,2,2.0828189849853516,381,0.0,3 +64381,2,1.0,2,1.2698256969451904,382,1.0,3 +64382,2,1.0,2,1.7538195848464966,383,0.0,3 +64383,2,1.0,2,1.737819790840149,384,0.0,3 +64384,2,1.0,2,1.615821361541748,385,1.0,3 +64385,2,1.0,2,1.3308249711990356,386,1.0,3 +64386,2,1.0,2,1.7428197860717773,387,1.0,3 +64387,2,1.0,2,1.295825481414795,388,0.0,3 +64388,2,1.0,2,1.7188200950622559,389,0.0,3 +64389,2,0.0,2,1.3668245077133179,390,1.0,3 +64390,2,0.0,2,1.3248250484466553,391,1.0,3 +64391,2,0.0,2,1.7798192501068115,392,0.0,3 +64392,2,0.0,2,2.176823139190674,393,1.0,3 +64393,2,0.0,2,1.6518208980560303,394,0.0,3 +64394,2,0.0,2,1.4818230867385864,395,0.0,3 +64395,2,1.0,2,1.3548246622085571,396,0.0,3 +64396,2,1.0,2,1.2458256483078003,397,1.0,3 +64397,2,1.0,2,1.3668245077133179,398,0.0,3 +64398,2,1.0,2,1.8598182201385498,399,1.0,3 +64399,2,1.0,2,1.3228250741958618,400,0.0,3 +64400,2,0.0,2,2.5828423500061035,401,1.0,3 +64401,2,0.0,2,1.270825743675232,402,1.0,3 +64402,2,0.0,2,1.4968228340148926,403,1.0,3 +64403,2,0.0,2,1.093825340270996,404,1.0,3 +64404,2,0.0,2,1.139825463294983,405,0.0,3 +64405,2,0.0,2,1.7878191471099854,406,1.0,3 +64406,2,0.0,2,1.1878255605697632,407,1.0,3 +64407,2,0.0,2,1.3458248376846313,408,1.0,3 +64408,2,0.0,2,1.1748255491256714,409,0.0,3 +64409,2,0.0,2,1.6938203573226929,410,1.0,3 +64410,2,0.0,2,1.708820104598999,411,0.0,3 +64411,2,1.0,2,1.7738193273544312,412,1.0,3 +64412,2,1.0,2,1.1408255100250244,413,1.0,3 +64413,2,0.0,2,1.7488195896148682,414,1.0,3 +64414,2,0.0,2,1.6928203105926514,415,0.0,3 +64415,2,1.0,2,1.409824013710022,416,0.0,3 +64416,2,0.0,2,1.4238238334655762,417,0.0,3 +64417,2,0.0,2,1.194825530052185,418,0.0,3 +64418,2,1.0,2,2.2808279991149902,419,1.0,3 +64419,2,1.0,2,1.23982572555542,420,1.0,3 +64420,2,1.0,2,1.4488234519958496,421,1.0,3 +64421,2,1.0,2,1.9728167057037354,422,0.0,3 +64422,2,1.0,2,1.4598233699798584,423,0.0,3 +64423,2,1.0,2,1.3908241987228394,424,0.0,3 +64424,2,0.0,2,1.5488221645355225,425,0.0,3 +64425,2,0.0,2,1.332824945449829,426,1.0,3 +64426,2,1.0,2,2.0308165550231934,427,0.0,3 +64427,2,0.0,2,1.2838256359100342,428,1.0,3 +64428,2,0.0,2,1.5948216915130615,429,0.0,3 +64429,2,0.0,2,1.6618207693099976,430,0.0,3 +64430,2,1.0,2,2.0668182373046875,431,0.0,3 +64431,2,0.0,2,1.4148238897323608,432,1.0,3 +64432,2,0.0,2,1.5008227825164795,433,0.0,3 +64433,2,1.0,2,2.0488171577453613,434,1.0,3 +64434,2,1.0,2,1.4708231687545776,435,1.0,3 +64435,2,1.0,2,1.1628254652023315,436,0.0,3 +64436,2,0.0,2,1.6768205165863037,437,1.0,3 +64437,2,1.0,2,1.497822880744934,438,0.0,3 +64438,2,0.0,2,1.2688257694244385,439,0.0,3 +64439,2,0.0,2,1.9198174476623535,440,1.0,3 +64440,2,0.0,2,1.4748231172561646,441,1.0,3 +64441,2,0.0,2,1.2088255882263184,442,1.0,3 +64442,2,0.0,2,1.1468254327774048,443,0.0,3 +64443,2,0.0,2,1.852818250656128,444,0.0,3 +64444,2,1.0,2,1.7208199501037598,445,0.0,3 +64445,2,0.0,2,1.64582097530365,446,0.0,3 +64446,2,1.0,2,1.4498234987258911,447,1.0,3 +64447,2,1.0,2,1.519822597503662,448,1.0,3 +64448,2,1.0,2,1.3598246574401855,449,1.0,3 +64449,2,1.0,2,1.4638233184814453,450,1.0,3 +64450,2,1.0,2,1.5188225507736206,451,1.0,3 +64451,2,1.0,2,1.432823657989502,452,0.0,3 +64452,2,0.0,2,1.829818606376648,453,1.0,3 +64453,2,0.0,2,1.5628221035003662,454,1.0,3 +64454,2,0.0,2,1.2408256530761719,455,0.0,3 +64455,2,1.0,2,1.2688257694244385,456,1.0,3 +64456,2,1.0,2,1.6908204555511475,457,0.0,3 +64457,2,1.0,2,1.8788180351257324,458,1.0,3 +64458,2,1.0,2,1.476823091506958,459,1.0,3 +64459,2,1.0,2,1.2418256998062134,460,1.0,3 +64460,2,1.0,2,1.2188255786895752,461,1.0,3 +64461,2,0.0,2,1.1798255443572998,462,0.0,3 +64462,2,1.0,2,1.6078214645385742,463,1.0,3 +64463,2,1.0,2,1.3098253011703491,464,1.0,3 +64464,2,1.0,2,1.3498247861862183,465,1.0,3 +64465,2,1.0,2,2.3038291931152344,466,1.0,3 +64466,2,1.0,2,1.4478235244750977,467,0.0,3 +64467,2,1.0,2,1.571821928024292,468,0.0,3 +64468,2,1.0,2,1.9248173236846924,469,1.0,3 +64469,2,1.0,2,1.2968254089355469,470,0.0,3 +64470,2,0.0,2,1.7728192806243896,471,0.0,3 +64471,2,0.0,2,1.175825595855713,472,0.0,3 +64472,2,0.0,2,1.5128226280212402,473,0.0,3 +64473,2,1.0,2,1.5548222064971924,474,1.0,3 +64474,2,1.0,2,1.7988190650939941,475,0.0,3 +64475,2,1.0,2,1.387824296951294,476,1.0,3 +64476,2,1.0,2,1.3098253011703491,477,0.0,3 +64477,2,1.0,2,1.5378223657608032,478,1.0,3 +64478,2,1.0,2,1.236825704574585,479,0.0,3 +64479,2,1.0,2,1.9338172674179077,480,0.0,3 +64480,2,0.0,2,1.7718193531036377,481,1.0,3 +64481,2,0.0,2,1.476823091506958,482,0.0,3 +64482,2,0.0,2,2.5338399410247803,483,1.0,3 +64483,2,0.0,2,1.3058253526687622,484,0.0,3 +64484,2,1.0,2,1.505822777748108,485,0.0,3 +64485,2,0.0,2,1.3308249711990356,486,0.0,3 +64486,2,0.0,2,1.8358185291290283,487,0.0,3 +64487,2,0.0,2,1.7518196105957031,488,1.0,3 +64488,2,0.0,2,1.1248254776000977,489,0.0,3 +64489,2,0.0,2,1.2058255672454834,490,1.0,3 +64490,2,0.0,2,1.5378223657608032,491,0.0,3 +64491,2,0.0,2,1.3118252754211426,492,1.0,3 +64492,2,0.0,2,2.0008163452148438,493,1.0,3 +64493,2,0.0,2,1.2858256101608276,494,0.0,3 +64494,2,0.0,2,1.3688244819641113,495,0.0,3 +64495,2,0.0,2,1.5828218460083008,496,1.0,3 +64496,2,0.0,2,1.1488255262374878,497,0.0,3 +64497,2,0.0,2,1.1788254976272583,498,1.0,3 +64498,2,0.0,2,1.1998255252838135,499,1.0,3 +64499,2,0.0,2,1.1598255634307861,500,1.0,3 +64500,3,0.0,0,1.725631594657898,1,0.0,3 +64501,3,1.0,0,1.700631856918335,2,1.0,3 +64502,3,1.0,0,1.159637212753296,3,0.0,3 +64503,3,0.0,0,1.5206341743469238,4,0.0,3 +64504,3,0.0,0,1.1696373224258423,5,1.0,3 +64505,3,0.0,0,1.2636375427246094,6,0.0,3 +64506,3,1.0,0,1.9246289730072021,7,1.0,3 +64507,3,1.0,0,1.4586349725723267,8,1.0,3 +64508,3,1.0,0,1.2666374444961548,9,0.0,3 +64509,3,1.0,0,2.0936315059661865,10,1.0,3 +64510,3,1.0,0,1.5896333456039429,11,1.0,3 +64511,3,1.0,0,1.4536350965499878,12,1.0,3 +64512,3,1.0,0,1.3886358737945557,13,1.0,3 +64513,3,1.0,0,1.3416365385055542,14,1.0,3 +64514,3,1.0,0,1.4726347923278809,15,1.0,3 +64515,3,1.0,0,1.1776373386383057,16,1.0,3 +64516,3,1.0,0,1.4926345348358154,17,1.0,3 +64517,3,1.0,0,1.3486363887786865,18,1.0,3 +64518,3,1.0,0,1.3566362857818604,19,0.0,3 +64519,3,1.0,0,1.7626311779022217,20,1.0,3 +64520,3,1.0,0,1.6596324443817139,21,1.0,3 +64521,3,1.0,0,1.2726373672485352,22,1.0,3 +64522,3,1.0,0,1.884629487991333,23,0.0,3 +64523,3,0.0,0,2.0276284217834473,24,0.0,3 +64524,3,1.0,0,1.5306341648101807,25,1.0,3 +64525,3,1.0,0,1.566633701324463,26,1.0,3 +64526,3,1.0,0,1.445635199546814,27,1.0,3 +64527,3,1.0,0,1.3636362552642822,28,1.0,3 +64528,3,1.0,0,1.2676374912261963,29,1.0,3 +64529,3,1.0,0,1.1796373128890991,30,1.0,3 +64530,3,1.0,0,1.4616349935531616,31,1.0,3 +64531,3,1.0,0,1.48963463306427,32,1.0,3 +64532,3,1.0,0,1.346636414527893,33,1.0,3 +64533,3,1.0,0,1.3326365947723389,34,1.0,3 +64534,3,1.0,0,1.2876372337341309,35,1.0,3 +64535,3,1.0,0,1.3816360235214233,36,1.0,3 +64536,3,1.0,0,1.5676336288452148,37,1.0,3 +64537,3,1.0,0,1.2926371097564697,38,1.0,3 +64538,3,1.0,0,1.256637454032898,39,1.0,3 +64539,3,1.0,0,1.2946370840072632,40,1.0,3 +64540,3,1.0,0,1.158637285232544,41,1.0,3 +64541,3,1.0,0,1.3516364097595215,42,1.0,3 +64542,3,1.0,0,1.607633113861084,43,1.0,3 +64543,3,0.0,0,1.3216367959976196,44,0.0,3 +64544,3,1.0,0,2.0116279125213623,45,1.0,3 +64545,3,1.0,0,1.1456372737884521,46,1.0,3 +64546,3,1.0,0,1.3046369552612305,47,1.0,3 +64547,3,1.0,0,1.2426373958587646,48,1.0,3 +64548,3,1.0,0,1.5796334743499756,49,1.0,3 +64549,3,1.0,0,1.2306374311447144,50,1.0,3 +64550,3,1.0,0,1.5326340198516846,51,1.0,3 +64551,3,1.0,0,1.600633144378662,52,1.0,3 +64552,3,1.0,0,1.0966371297836304,53,1.0,3 +64553,3,1.0,0,2.200636386871338,54,1.0,3 +64554,3,1.0,0,1.463634967803955,55,1.0,3 +64555,3,1.0,0,2.1006317138671875,56,1.0,3 +64556,3,1.0,0,1.3526363372802734,57,0.0,3 +64557,3,0.0,0,1.2546374797821045,58,1.0,3 +64558,3,0.0,0,1.1136372089385986,59,0.0,3 +64559,3,0.0,0,1.2216373682022095,60,0.0,3 +64560,3,1.0,0,1.698632001876831,61,1.0,3 +64561,3,1.0,0,1.5006344318389893,62,0.0,3 +64562,3,1.0,0,2.1036319732666016,63,0.0,3 +64563,3,0.0,0,1.2966370582580566,64,0.0,3 +64564,3,0.0,0,2.0846309661865234,65,0.0,3 +64565,3,0.0,0,1.2406374216079712,66,0.0,3 +64566,3,0.0,0,1.6446325778961182,67,0.0,3 +64567,3,0.0,0,1.368636131286621,68,0.0,3 +64568,3,0.0,0,1.3816360235214233,69,0.0,3 +64569,3,0.0,0,1.2606375217437744,70,0.0,3 +64570,3,0.0,0,1.4086356163024902,71,0.0,3 +64571,3,1.0,0,1.934628963470459,72,1.0,3 +64572,3,1.0,0,1.3836359977722168,73,1.0,3 +64573,3,1.0,0,1.284637212753296,74,0.0,3 +64574,3,0.0,0,1.3856359720230103,75,0.0,3 +64575,3,1.0,0,1.3556363582611084,76,1.0,3 +64576,3,1.0,0,1.1846373081207275,77,0.0,3 +64577,3,1.0,0,1.5146342515945435,78,1.0,3 +64578,3,1.0,0,1.4436352252960205,79,1.0,3 +64579,3,1.0,0,1.7096318006515503,80,1.0,3 +64580,3,1.0,0,1.6286327838897705,81,1.0,3 +64581,3,1.0,0,1.5266342163085938,82,1.0,3 +64582,3,1.0,0,1.8196303844451904,83,1.0,3 +64583,3,1.0,0,1.2576375007629395,84,1.0,3 +64584,3,1.0,0,1.6136330366134644,85,1.0,3 +64585,3,0.0,0,2.0116279125213623,86,0.0,3 +64586,3,1.0,0,1.608633041381836,87,1.0,3 +64587,3,1.0,0,1.9196290969848633,88,1.0,3 +64588,3,1.0,0,1.305637001991272,89,1.0,3 +64589,3,1.0,0,1.486634612083435,90,1.0,3 +64590,3,1.0,0,1.2876372337341309,91,1.0,3 +64591,3,1.0,0,1.4316353797912598,92,1.0,3 +64592,3,1.0,0,1.3336366415023804,93,1.0,3 +64593,3,1.0,0,1.4576350450515747,94,1.0,3 +64594,3,1.0,0,1.563633680343628,95,1.0,3 +64595,3,1.0,0,1.4136356115341187,96,1.0,3 +64596,3,1.0,0,1.7636311054229736,97,0.0,3 +64597,3,0.0,0,2.3456432819366455,98,0.0,3 +64598,3,0.0,0,1.2436374425888062,99,1.0,3 +64599,3,0.0,0,1.1796373128890991,100,0.0,3 +64600,3,1.0,0,1.796630620956421,101,1.0,3 +64601,3,1.0,0,1.4356353282928467,102,1.0,3 +64602,3,1.0,0,1.6616324186325073,103,1.0,3 +64603,3,1.0,0,1.2666374444961548,104,1.0,3 +64604,3,0.0,0,1.611633062362671,105,0.0,3 +64605,3,1.0,0,1.4726347923278809,106,1.0,3 +64606,3,1.0,0,1.346636414527893,107,0.0,3 +64607,3,1.0,0,1.740631341934204,108,0.0,3 +64608,3,1.0,0,1.6466326713562012,109,1.0,3 +64609,3,1.0,0,1.3266366720199585,110,1.0,3 +64610,3,1.0,0,1.3346365690231323,111,1.0,3 +64611,3,1.0,0,1.416635513305664,112,1.0,3 +64612,3,1.0,0,1.3386365175247192,113,1.0,3 +64613,3,1.0,0,1.468634843826294,114,1.0,3 +64614,3,1.0,0,1.4926345348358154,115,1.0,3 +64615,3,1.0,0,1.3036370277404785,116,0.0,3 +64616,3,1.0,0,2.256639003753662,117,0.0,3 +64617,3,0.0,0,1.1976373195648193,118,0.0,3 +64618,3,1.0,0,1.9706284999847412,119,1.0,3 +64619,3,1.0,0,1.2436374425888062,120,0.0,3 +64620,3,0.0,0,2.214637279510498,121,0.0,3 +64621,3,1.0,0,1.9676284790039062,122,1.0,3 +64622,3,1.0,0,1.467634916305542,123,1.0,3 +64623,3,1.0,0,1.3376365900039673,124,1.0,3 +64624,3,1.0,0,1.2106373310089111,125,1.0,3 +64625,3,1.0,0,1.3856359720230103,126,1.0,3 +64626,3,1.0,0,1.2056373357772827,127,1.0,3 +64627,3,1.0,0,1.4666348695755005,128,1.0,3 +64628,3,1.0,0,1.2436374425888062,129,1.0,3 +64629,3,1.0,0,1.3966357707977295,130,1.0,3 +64630,3,1.0,0,1.2486374378204346,131,1.0,3 +64631,3,1.0,0,1.2426373958587646,132,1.0,3 +64632,3,1.0,0,1.3596363067626953,133,1.0,3 +64633,3,1.0,0,2.3056414127349854,134,1.0,3 +64634,3,0.0,0,1.9236290454864502,135,0.0,3 +64635,3,1.0,0,1.2516374588012695,136,1.0,3 +64636,3,1.0,0,2.2816402912139893,137,1.0,3 +64637,3,1.0,0,1.3476364612579346,138,1.0,3 +64638,3,1.0,0,1.4176355600357056,139,1.0,3 +64639,3,1.0,0,1.2096374034881592,140,1.0,3 +64640,3,0.0,0,1.8266303539276123,141,0.0,3 +64641,3,1.0,0,1.6406326293945312,142,1.0,3 +64642,3,1.0,0,1.8636298179626465,143,1.0,3 +64643,3,1.0,0,1.5506339073181152,144,1.0,3 +64644,3,1.0,0,1.2726373672485352,145,1.0,3 +64645,3,1.0,0,1.215637445449829,146,1.0,3 +64646,3,1.0,0,1.4036357402801514,147,1.0,3 +64647,3,1.0,0,1.1916372776031494,148,1.0,3 +64648,3,1.0,0,1.305637001991272,149,1.0,3 +64649,3,1.0,0,1.2996370792388916,150,1.0,3 +64650,3,1.0,0,1.4656349420547485,151,1.0,3 +64651,3,1.0,0,1.2636375427246094,152,1.0,3 +64652,3,1.0,0,1.658632516860962,153,1.0,3 +64653,3,1.0,0,1.563633680343628,154,1.0,3 +64654,3,1.0,0,1.1406372785568237,155,1.0,3 +64655,3,1.0,0,1.882629632949829,156,1.0,3 +64656,3,1.0,0,1.4336353540420532,157,1.0,3 +64657,3,1.0,0,1.1976373195648193,158,1.0,3 +64658,3,1.0,0,1.9176291227340698,159,1.0,3 +64659,3,1.0,0,1.2756373882293701,160,1.0,3 +64660,3,1.0,0,1.2106373310089111,161,0.0,3 +64661,3,1.0,0,1.9466288089752197,162,1.0,3 +64662,3,1.0,0,1.2996370792388916,163,1.0,3 +64663,3,1.0,0,1.2556374073028564,164,1.0,3 +64664,3,1.0,0,1.8276302814483643,165,1.0,3 +64665,3,1.0,0,1.1846373081207275,166,1.0,3 +64666,3,1.0,0,1.280637264251709,167,1.0,3 +64667,3,1.0,0,1.4606349468231201,168,1.0,3 +64668,3,1.0,0,1.79063081741333,169,1.0,3 +64669,3,1.0,0,1.8376301527023315,170,1.0,3 +64670,3,1.0,0,1.5646336078643799,171,1.0,3 +64671,3,1.0,0,1.419635534286499,172,1.0,3 +64672,3,1.0,0,1.249637484550476,173,1.0,3 +64673,3,1.0,0,1.3446364402770996,174,1.0,3 +64674,3,1.0,0,1.213637351989746,175,1.0,3 +64675,3,1.0,0,1.2276374101638794,176,1.0,3 +64676,3,0.0,0,1.2866371870040894,177,0.0,3 +64677,3,0.0,0,1.5396339893341064,178,0.0,3 +64678,3,1.0,0,1.252637505531311,179,1.0,3 +64679,3,1.0,0,1.4976345300674438,180,1.0,3 +64680,3,1.0,0,1.4506350755691528,181,1.0,3 +64681,3,1.0,0,1.2386374473571777,182,1.0,3 +64682,3,1.0,0,1.585633397102356,183,0.0,3 +64683,3,0.0,0,1.2016373872756958,184,0.0,3 +64684,3,0.0,0,1.6936320066452026,185,0.0,3 +64685,3,1.0,0,2.6116557121276855,186,1.0,3 +64686,3,1.0,0,1.2366374731063843,187,1.0,3 +64687,3,1.0,0,1.3046369552612305,188,0.0,3 +64688,3,1.0,0,2.0496294498443604,189,1.0,3 +64689,3,1.0,0,1.6426327228546143,190,1.0,3 +64690,3,1.0,0,1.438635230064392,191,1.0,3 +64691,3,1.0,0,1.486634612083435,192,0.0,3 +64692,3,1.0,0,1.773630976676941,193,1.0,3 +64693,3,1.0,0,1.5046343803405762,194,1.0,3 +64694,3,1.0,0,1.5076344013214111,195,0.0,3 +64695,3,1.0,0,1.8556299209594727,196,0.0,3 +64696,3,1.0,0,1.7126317024230957,197,0.0,3 +64697,3,1.0,0,1.9706284999847412,198,1.0,3 +64698,3,1.0,0,1.276637315750122,199,1.0,3 +64699,3,1.0,0,1.1796373128890991,200,1.0,3 +64700,3,1.0,0,1.1656372547149658,201,1.0,3 +64701,3,1.0,0,1.1996374130249023,202,1.0,3 +64702,3,1.0,0,1.2246373891830444,203,1.0,3 +64703,3,1.0,0,1.5676336288452148,204,1.0,3 +64704,3,1.0,0,1.5276341438293457,205,1.0,3 +64705,3,1.0,0,1.4546350240707397,206,1.0,3 +64706,3,1.0,0,1.4446351528167725,207,1.0,3 +64707,3,1.0,0,1.185637354850769,208,1.0,3 +64708,3,1.0,0,1.279637336730957,209,1.0,3 +64709,3,1.0,0,1.4996345043182373,210,1.0,3 +64710,3,1.0,0,1.4326353073120117,211,0.0,3 +64711,3,0.0,0,1.252637505531311,212,0.0,3 +64712,3,1.0,0,2.1096322536468506,213,1.0,3 +64713,3,1.0,0,1.8626298904418945,214,1.0,3 +64714,3,1.0,0,1.372636079788208,215,1.0,3 +64715,3,1.0,0,1.606633186340332,216,1.0,3 +64716,3,1.0,0,1.5516338348388672,217,0.0,3 +64717,3,0.0,0,1.8236303329467773,218,0.0,3 +64718,3,1.0,0,1.4256354570388794,219,1.0,3 +64719,3,1.0,0,1.4056357145309448,220,1.0,3 +64720,3,1.0,0,1.222637414932251,221,1.0,3 +64721,3,1.0,0,1.5646336078643799,222,1.0,3 +64722,3,1.0,0,1.3416365385055542,223,1.0,3 +64723,3,1.0,0,1.8946294784545898,224,1.0,3 +64724,3,1.0,0,1.3186367750167847,225,1.0,3 +64725,3,1.0,0,1.744631290435791,226,1.0,3 +64726,3,1.0,0,1.2366374731063843,227,1.0,3 +64727,3,1.0,0,1.4356353282928467,228,1.0,3 +64728,3,1.0,0,1.5276341438293457,229,0.0,3 +64729,3,0.0,0,1.353636384010315,230,1.0,3 +64730,3,0.0,0,1.2916371822357178,231,1.0,3 +64731,3,0.0,0,1.3486363887786865,232,1.0,3 +64732,3,0.0,0,1.1136372089385986,233,1.0,3 +64733,3,0.0,0,1.2426373958587646,234,0.0,3 +64734,3,0.0,0,1.2656375169754028,235,1.0,3 +64735,3,0.0,0,1.1716372966766357,236,0.0,3 +64736,3,1.0,0,1.935628890991211,237,1.0,3 +64737,3,1.0,0,1.2646374702453613,238,1.0,3 +64738,3,1.0,0,1.4786347150802612,239,1.0,3 +64739,3,1.0,0,1.259637475013733,240,1.0,3 +64740,3,1.0,0,1.284637212753296,241,0.0,3 +64741,3,1.0,0,1.5656336545944214,242,1.0,3 +64742,3,1.0,0,1.4046356678009033,243,1.0,3 +64743,3,1.0,0,1.2886371612548828,244,1.0,3 +64744,3,1.0,0,1.5216342210769653,245,1.0,3 +64745,3,1.0,0,1.6096330881118774,246,0.0,3 +64746,3,0.0,0,1.2406374216079712,247,0.0,3 +64747,3,0.0,0,2.725661039352417,248,0.0,3 +64748,3,1.0,0,1.8016306161880493,249,1.0,3 +64749,3,1.0,0,1.8106305599212646,250,1.0,3 +64750,3,1.0,0,1.284637212753296,251,0.0,3 +64751,3,0.0,0,1.6866321563720703,252,0.0,3 +64752,3,1.0,0,1.8996293544769287,253,1.0,3 +64753,3,1.0,0,1.3336366415023804,254,1.0,3 +64754,3,1.0,0,1.3086369037628174,255,0.0,3 +64755,3,0.0,0,1.3366365432739258,256,0.0,3 +64756,3,1.0,0,2.463648796081543,257,0.0,3 +64757,3,1.0,0,1.795630693435669,258,1.0,3 +64758,3,1.0,0,1.5526337623596191,259,1.0,3 +64759,3,1.0,0,1.1996374130249023,260,1.0,3 +64760,3,1.0,0,1.2396373748779297,261,1.0,3 +64761,3,1.0,0,1.7786309719085693,262,1.0,3 +64762,3,1.0,0,1.5706336498260498,263,1.0,3 +64763,3,1.0,0,1.222637414932251,264,1.0,3 +64764,3,1.0,0,1.7976306676864624,265,1.0,3 +64765,3,1.0,0,1.276637315750122,266,1.0,3 +64766,3,1.0,0,1.376636028289795,267,1.0,3 +64767,3,1.0,0,1.464634895324707,268,1.0,3 +64768,3,1.0,0,1.328636646270752,269,1.0,3 +64769,3,1.0,0,1.2296373844146729,270,1.0,3 +64770,3,1.0,0,1.1566373109817505,271,1.0,3 +64771,3,1.0,0,1.7806308269500732,272,1.0,3 +64772,3,1.0,0,1.3296366930007935,273,1.0,3 +64773,3,1.0,0,1.2016373872756958,274,1.0,3 +64774,3,1.0,0,1.4276354312896729,275,1.0,3 +64775,3,1.0,0,1.228637456893921,276,1.0,3 +64776,3,1.0,0,1.2896372079849243,277,0.0,3 +64777,3,1.0,0,1.7246315479278564,278,1.0,3 +64778,3,1.0,0,1.253637433052063,279,1.0,3 +64779,3,1.0,0,1.5746335983276367,280,1.0,3 +64780,3,1.0,0,1.424635410308838,281,0.0,3 +64781,3,0.0,0,1.5006344318389893,282,0.0,3 +64782,3,0.0,0,1.795630693435669,283,1.0,3 +64783,3,0.0,0,1.3606362342834473,284,0.0,3 +64784,3,0.0,0,1.3636362552642822,285,0.0,3 +64785,3,1.0,0,1.8226304054260254,286,0.0,3 +64786,3,0.0,0,2.3186421394348145,287,0.0,3 +64787,3,1.0,0,2.247638702392578,288,1.0,3 +64788,3,1.0,0,1.3266366720199585,289,1.0,3 +64789,3,1.0,0,1.604633092880249,290,1.0,3 +64790,3,1.0,0,1.2546374797821045,291,1.0,3 +64791,3,1.0,0,1.7816308736801147,292,1.0,3 +64792,3,1.0,0,1.7716310024261475,293,1.0,3 +64793,3,1.0,0,1.259637475013733,294,1.0,3 +64794,3,1.0,0,1.2206374406814575,295,0.0,3 +64795,3,0.0,0,1.3826359510421753,296,0.0,3 +64796,3,0.0,0,1.188637375831604,297,0.0,3 +64797,3,1.0,0,1.4336353540420532,298,1.0,3 +64798,3,1.0,0,1.253637433052063,299,1.0,3 +64799,3,1.0,0,1.3106368780136108,300,1.0,3 +64800,3,1.0,0,1.4266353845596313,301,1.0,3 +64801,3,1.0,0,1.3996357917785645,302,1.0,3 +64802,3,1.0,0,1.3386365175247192,303,1.0,3 +64803,3,1.0,0,1.4586349725723267,304,1.0,3 +64804,3,1.0,0,1.349636435508728,305,1.0,3 +64805,3,1.0,0,1.5576337575912476,306,1.0,3 +64806,3,1.0,0,1.79063081741333,307,1.0,3 +64807,3,1.0,0,1.4086356163024902,308,1.0,3 +64808,3,0.0,0,1.2476375102996826,309,0.0,3 +64809,3,1.0,0,1.1766372919082642,310,1.0,3 +64810,3,1.0,0,1.2946370840072632,311,1.0,3 +64811,3,1.0,0,1.3196368217468262,312,1.0,3 +64812,3,1.0,0,1.5416339635849,313,1.0,3 +64813,3,1.0,0,1.6026332378387451,314,1.0,3 +64814,3,1.0,0,1.5646336078643799,315,1.0,3 +64815,3,1.0,0,1.4966344833374023,316,1.0,3 +64816,3,1.0,0,1.305637001991272,317,1.0,3 +64817,3,1.0,0,1.625632882118225,318,1.0,3 +64818,3,1.0,0,1.279637336730957,319,1.0,3 +64819,3,1.0,0,1.6426327228546143,320,0.0,3 +64820,3,1.0,0,1.8926293849945068,321,1.0,3 +64821,3,1.0,0,1.1576372385025024,322,1.0,3 +64822,3,1.0,0,1.4216355085372925,323,1.0,3 +64823,3,1.0,0,1.4736348390579224,324,1.0,3 +64824,3,1.0,0,1.3106368780136108,325,1.0,3 +64825,3,1.0,0,1.3556363582611084,326,1.0,3 +64826,3,1.0,0,1.7136317491531372,327,0.0,3 +64827,3,0.0,0,1.5826334953308105,328,0.0,3 +64828,3,0.0,0,1.4076356887817383,329,0.0,3 +64829,3,0.0,0,1.6226329803466797,330,0.0,3 +64830,3,0.0,0,1.2026373147964478,331,0.0,3 +64831,3,0.0,0,1.305637001991272,332,0.0,3 +64832,3,0.0,0,1.8266303539276123,333,1.0,3 +64833,3,0.0,0,1.280637264251709,334,0.0,3 +64834,3,0.0,0,1.3956358432769775,335,0.0,3 +64835,3,1.0,0,1.4796347618103027,336,1.0,3 +64836,3,1.0,0,1.5946333408355713,337,1.0,3 +64837,3,1.0,0,1.2246373891830444,338,1.0,3 +64838,3,1.0,0,1.3996357917785645,339,1.0,3 +64839,3,1.0,0,1.5476338863372803,340,1.0,3 +64840,3,1.0,0,1.747631311416626,341,1.0,3 +64841,3,1.0,0,1.6026332378387451,342,1.0,3 +64842,3,1.0,0,1.1976373195648193,343,1.0,3 +64843,3,1.0,0,1.2556374073028564,344,1.0,3 +64844,3,1.0,0,1.1276371479034424,345,1.0,3 +64845,3,1.0,0,1.7086317539215088,346,1.0,3 +64846,3,1.0,0,1.3176368474960327,347,1.0,3 +64847,3,1.0,0,1.424635410308838,348,1.0,3 +64848,3,1.0,0,1.3006370067596436,349,1.0,3 +64849,3,1.0,0,1.4356353282928467,350,1.0,3 +64850,3,1.0,0,1.6376327276229858,351,0.0,3 +64851,3,0.0,0,1.3826359510421753,352,1.0,3 +64852,3,0.0,0,2.3646440505981445,353,0.0,3 +64853,3,1.0,0,1.9016293287277222,354,1.0,3 +64854,3,1.0,0,1.3476364612579346,355,1.0,3 +64855,3,1.0,0,1.6756322383880615,356,1.0,3 +64856,3,1.0,0,1.3376365900039673,357,1.0,3 +64857,3,1.0,0,1.2696374654769897,358,1.0,3 +64858,3,1.0,0,1.3226367235183716,359,1.0,3 +64859,3,1.0,0,1.1816372871398926,360,1.0,3 +64860,3,1.0,0,1.3456364870071411,361,1.0,3 +64861,3,1.0,0,1.1656372547149658,362,1.0,3 +64862,3,1.0,0,1.4176355600357056,363,1.0,3 +64863,3,1.0,0,1.5616337060928345,364,1.0,3 +64864,3,1.0,0,1.2956371307373047,365,1.0,3 +64865,3,1.0,0,1.2626374959945679,366,1.0,3 +64866,3,1.0,0,1.4006357192993164,367,1.0,3 +64867,3,1.0,0,1.5696336030960083,368,1.0,3 +64868,3,1.0,0,1.6276328563690186,369,1.0,3 +64869,3,1.0,0,1.2146373987197876,370,1.0,3 +64870,3,1.0,0,1.306636929512024,371,0.0,3 +64871,3,0.0,0,1.6976319551467896,372,0.0,3 +64872,3,1.0,0,1.3776360750198364,373,1.0,3 +64873,3,1.0,0,1.1776373386383057,374,1.0,3 +64874,3,1.0,0,1.2066373825073242,375,0.0,3 +64875,3,0.0,0,1.4326353073120117,376,0.0,3 +64876,3,1.0,0,1.3436365127563477,377,1.0,3 +64877,3,1.0,0,1.397635817527771,378,0.0,3 +64878,3,0.0,0,1.1306371688842773,379,0.0,3 +64879,3,0.0,0,1.5806334018707275,380,0.0,3 +64880,3,0.0,0,1.934628963470459,381,0.0,3 +64881,3,0.0,0,2.3156418800354004,382,0.0,3 +64882,3,0.0,0,1.0956370830535889,383,0.0,3 +64883,3,1.0,0,2.223637580871582,384,1.0,3 +64884,3,1.0,0,1.6206328868865967,385,1.0,3 +64885,3,1.0,0,1.2606375217437744,386,1.0,3 +64886,3,1.0,0,1.2486374378204346,387,1.0,3 +64887,3,1.0,0,1.742631435394287,388,1.0,3 +64888,3,1.0,0,2.0996317863464355,389,1.0,3 +64889,3,1.0,0,1.468634843826294,390,1.0,3 +64890,3,1.0,0,1.1846373081207275,391,1.0,3 +64891,3,1.0,0,1.3326365947723389,392,1.0,3 +64892,3,1.0,0,1.5646336078643799,393,1.0,3 +64893,3,1.0,0,1.4496351480484009,394,1.0,3 +64894,3,1.0,0,1.368636131286621,395,0.0,3 +64895,3,0.0,0,1.5246341228485107,396,0.0,3 +64896,3,1.0,0,1.4216355085372925,397,1.0,3 +64897,3,1.0,0,1.3816360235214233,398,1.0,3 +64898,3,1.0,0,1.1456372737884521,399,1.0,3 +64899,3,1.0,0,1.5046343803405762,400,0.0,3 +64900,3,1.0,0,1.4486351013183594,401,1.0,3 +64901,3,1.0,0,1.655632495880127,402,1.0,3 +64902,3,1.0,0,1.6926319599151611,403,1.0,3 +64903,3,1.0,0,1.7146317958831787,404,1.0,3 +64904,3,1.0,0,1.420635461807251,405,1.0,3 +64905,3,1.0,0,1.2456374168395996,406,1.0,3 +64906,3,1.0,0,1.6056331396102905,407,1.0,3 +64907,3,1.0,0,1.423635482788086,408,1.0,3 +64908,3,1.0,0,1.3666361570358276,409,0.0,3 +64909,3,0.0,0,1.3916358947753906,410,0.0,3 +64910,3,0.0,0,1.082637071609497,411,0.0,3 +64911,3,1.0,0,2.0316286087036133,412,0.0,3 +64912,3,0.0,0,1.838630199432373,413,0.0,3 +64913,3,1.0,0,1.3226367235183716,414,1.0,3 +64914,3,1.0,0,1.4316353797912598,415,0.0,3 +64915,3,0.0,0,1.2276374101638794,416,1.0,3 +64916,3,0.0,0,1.4946345090866089,417,0.0,3 +64917,3,0.0,0,1.3596363067626953,418,0.0,3 +64918,3,1.0,0,1.5136343240737915,419,1.0,3 +64919,3,1.0,0,1.306636929512024,420,1.0,3 +64920,3,1.0,0,1.2896372079849243,421,1.0,3 +64921,3,1.0,0,1.2296373844146729,422,1.0,3 +64922,3,1.0,0,1.3256367444992065,423,1.0,3 +64923,3,0.0,0,1.3616362810134888,424,1.0,3 +64924,3,0.0,0,1.6096330881118774,425,0.0,3 +64925,3,1.0,0,1.8706297874450684,426,1.0,3 +64926,3,1.0,0,1.4256354570388794,427,1.0,3 +64927,3,1.0,0,1.5506339073181152,428,1.0,3 +64928,3,1.0,0,1.8296302556991577,429,0.0,3 +64929,3,0.0,0,1.2086373567581177,430,0.0,3 +64930,3,0.0,0,1.1776373386383057,431,0.0,3 +64931,3,0.0,0,1.83663010597229,432,0.0,3 +64932,3,1.0,0,1.1986373662948608,433,0.0,3 +64933,3,0.0,0,1.2056373357772827,434,0.0,3 +64934,3,0.0,0,1.305637001991272,435,0.0,3 +64935,3,0.0,0,1.223637342453003,436,1.0,3 +64936,3,0.0,0,1.3616362810134888,437,0.0,3 +64937,3,1.0,0,1.9236290454864502,438,1.0,3 +64938,3,1.0,0,1.424635410308838,439,1.0,3 +64939,3,1.0,0,1.1786372661590576,440,1.0,3 +64940,3,1.0,0,1.1566373109817505,441,1.0,3 +64941,3,1.0,0,1.5026344060897827,442,1.0,3 +64942,3,1.0,0,1.4736348390579224,443,0.0,3 +64943,3,0.0,0,2.174635410308838,444,1.0,3 +64944,3,0.0,0,1.5196342468261719,445,0.0,3 +64945,3,0.0,0,1.607633113861084,446,0.0,3 +64946,3,1.0,0,1.3796360492706299,447,1.0,3 +64947,3,1.0,0,1.249637484550476,448,1.0,3 +64948,3,1.0,0,1.393635869026184,449,1.0,3 +64949,3,1.0,0,1.4786347150802612,450,1.0,3 +64950,3,1.0,0,1.1736372709274292,451,0.0,3 +64951,3,0.0,0,2.0446290969848633,452,0.0,3 +64952,3,1.0,0,1.8926293849945068,453,1.0,3 +64953,3,0.0,0,1.2816373109817505,454,0.0,3 +64954,3,1.0,0,1.3796360492706299,455,0.0,3 +64955,3,0.0,0,1.4776347875595093,456,1.0,3 +64956,3,0.0,0,1.3166368007659912,457,0.0,3 +64957,3,1.0,0,1.6856321096420288,458,1.0,3 +64958,3,1.0,0,1.2376374006271362,459,1.0,3 +64959,3,1.0,0,1.633632779121399,460,1.0,3 +64960,3,1.0,0,1.1706372499465942,461,1.0,3 +64961,3,1.0,0,1.581633448600769,462,1.0,3 +64962,3,1.0,0,1.249637484550476,463,1.0,3 +64963,3,1.0,0,1.2856372594833374,464,1.0,3 +64964,3,1.0,0,1.5046343803405762,465,1.0,3 +64965,3,1.0,0,1.2396373748779297,466,1.0,3 +64966,3,1.0,0,1.419635534286499,467,1.0,3 +64967,3,1.0,0,1.2886371612548828,468,1.0,3 +64968,3,1.0,0,1.4536350965499878,469,1.0,3 +64969,3,1.0,0,1.515634298324585,470,1.0,3 +64970,3,1.0,0,1.6906321048736572,471,1.0,3 +64971,3,1.0,0,1.4006357192993164,472,1.0,3 +64972,3,1.0,0,1.9526286125183105,473,1.0,3 +64973,3,1.0,0,1.2456374168395996,474,1.0,3 +64974,3,1.0,0,1.3376365900039673,475,1.0,3 +64975,3,1.0,0,1.5986332893371582,476,1.0,3 +64976,3,1.0,0,1.1956373453140259,477,1.0,3 +64977,3,1.0,0,1.3926358222961426,478,1.0,3 +64978,3,1.0,0,1.3596363067626953,479,1.0,3 +64979,3,1.0,0,1.8996293544769287,480,1.0,3 +64980,3,1.0,0,1.606633186340332,481,0.0,3 +64981,3,0.0,0,1.838630199432373,482,1.0,3 +64982,3,0.0,0,1.1146371364593506,483,0.0,3 +64983,3,0.0,0,1.6096330881118774,484,0.0,3 +64984,3,0.0,0,1.2216373682022095,485,0.0,3 +64985,3,1.0,0,1.8346302509307861,486,1.0,3 +64986,3,1.0,0,1.2736374139785767,487,1.0,3 +64987,3,1.0,0,1.5076344013214111,488,1.0,3 +64988,3,1.0,0,1.5296341180801392,489,0.0,3 +64989,3,1.0,0,1.698632001876831,490,1.0,3 +64990,3,1.0,0,1.5306341648101807,491,1.0,3 +64991,3,1.0,0,1.5396339893341064,492,0.0,3 +64992,3,0.0,0,1.1996374130249023,493,0.0,3 +64993,3,1.0,0,1.7266316413879395,494,1.0,3 +64994,3,1.0,0,1.4816347360610962,495,1.0,3 +64995,3,1.0,0,1.3596363067626953,496,1.0,3 +64996,3,1.0,0,1.1976373195648193,497,1.0,3 +64997,3,1.0,0,1.4266353845596313,498,1.0,3 +64998,3,1.0,0,1.1916372776031494,499,1.0,3 +64999,3,1.0,0,1.3736361265182495,500,1.0,3 +65000,3,0.0,1,1.725631594657898,1,0.0,3 +65001,3,1.0,1,1.581633448600769,2,1.0,3 +65002,3,1.0,1,1.323636770248413,3,0.0,3 +65003,3,1.0,1,1.2636375427246094,4,1.0,3 +65004,3,1.0,1,1.4276354312896729,5,1.0,3 +65005,3,1.0,1,1.3626362085342407,6,1.0,3 +65006,3,1.0,1,1.3306366205215454,7,1.0,3 +65007,3,1.0,1,1.1686372756958008,8,1.0,3 +65008,3,1.0,1,1.161637306213379,9,1.0,3 +65009,3,1.0,1,1.323636770248413,10,0.0,3 +65010,3,0.0,1,2.0826311111450195,11,0.0,3 +65011,3,0.0,1,1.371636152267456,12,0.0,3 +65012,3,1.0,1,1.4356353282928467,13,0.0,3 +65013,3,0.0,1,1.2426373958587646,14,0.0,3 +65014,3,1.0,1,1.354636311531067,15,1.0,3 +65015,3,1.0,1,1.2856372594833374,16,1.0,3 +65016,3,1.0,1,1.5436339378356934,17,0.0,3 +65017,3,1.0,1,1.9226291179656982,18,1.0,3 +65018,3,1.0,1,1.3926358222961426,19,1.0,3 +65019,3,1.0,1,1.3126368522644043,20,1.0,3 +65020,3,1.0,1,1.3216367959976196,21,0.0,3 +65021,3,1.0,1,1.658632516860962,22,0.0,3 +65022,3,1.0,1,1.3696361780166626,23,1.0,3 +65023,3,0.0,1,1.2416374683380127,24,0.0,3 +65024,3,1.0,1,1.3786360025405884,25,0.0,3 +65025,3,1.0,1,2.214637279510498,26,1.0,3 +65026,3,1.0,1,1.354636311531067,27,1.0,3 +65027,3,1.0,1,1.398635745048523,28,1.0,3 +65028,3,1.0,1,1.2246373891830444,29,1.0,3 +65029,3,1.0,1,1.6576324701309204,30,0.0,3 +65030,3,0.0,1,1.2106373310089111,31,1.0,3 +65031,3,0.0,1,1.3706361055374146,32,0.0,3 +65032,3,0.0,1,1.5476338863372803,33,0.0,3 +65033,3,0.0,1,2.0646300315856934,34,1.0,3 +65034,3,0.0,1,1.485634684562683,35,0.0,3 +65035,3,0.0,1,2.3136417865753174,36,0.0,3 +65036,3,0.0,1,1.3786360025405884,37,1.0,3 +65037,3,0.0,1,1.146637201309204,38,0.0,3 +65038,3,1.0,1,1.742631435394287,39,0.0,3 +65039,3,1.0,1,1.3806359767913818,40,0.0,3 +65040,3,1.0,1,2.0966315269470215,41,1.0,3 +65041,3,1.0,1,1.155637264251709,42,1.0,3 +65042,3,1.0,1,1.446635127067566,43,0.0,3 +65043,3,1.0,1,1.81363046169281,44,1.0,3 +65044,3,1.0,1,1.3786360025405884,45,1.0,3 +65045,3,1.0,1,1.5056344270706177,46,0.0,3 +65046,3,0.0,1,1.3526363372802734,47,0.0,3 +65047,3,0.0,1,1.1326372623443604,48,1.0,3 +65048,3,0.0,1,1.0806370973587036,49,0.0,3 +65049,3,0.0,1,2.0316286087036133,50,0.0,3 +65050,3,1.0,1,1.794630765914917,51,0.0,3 +65051,3,0.0,1,2.1206326484680176,52,0.0,3 +65052,3,1.0,1,1.7786309719085693,53,0.0,3 +65053,3,0.0,1,1.6686322689056396,54,1.0,3 +65054,3,0.0,1,1.4306353330612183,55,0.0,3 +65055,3,1.0,1,1.9516286849975586,56,1.0,3 +65056,3,1.0,1,1.3846359252929688,57,0.0,3 +65057,3,0.0,1,1.788630723953247,58,1.0,3 +65058,3,0.0,1,1.4916346073150635,59,0.0,3 +65059,3,0.0,1,1.909629225730896,60,0.0,3 +65060,3,0.0,1,1.280637264251709,61,0.0,3 +65061,3,0.0,1,1.4406352043151855,62,1.0,3 +65062,3,0.0,1,1.213637351989746,63,0.0,3 +65063,3,0.0,1,1.773630976676941,64,0.0,3 +65064,3,0.0,1,1.5366339683532715,65,0.0,3 +65065,3,0.0,1,2.0606298446655273,66,0.0,3 +65066,3,0.0,1,1.4506350755691528,67,1.0,3 +65067,3,0.0,1,1.1956373453140259,68,1.0,3 +65068,3,0.0,1,1.420635461807251,69,0.0,3 +65069,3,0.0,1,1.1546372175216675,70,1.0,3 +65070,3,1.0,1,1.9926280975341797,71,1.0,3 +65071,3,0.0,1,2.427647113800049,72,1.0,3 +65072,3,0.0,1,1.3896359205245972,73,0.0,3 +65073,3,1.0,1,1.6176329851150513,74,1.0,3 +65074,3,1.0,1,1.7756309509277344,75,0.0,3 +65075,3,1.0,1,1.4306353330612183,76,1.0,3 +65076,3,1.0,1,1.7546312808990479,77,1.0,3 +65077,3,1.0,1,1.2946370840072632,78,0.0,3 +65078,3,1.0,1,2.3096415996551514,79,1.0,3 +65079,3,1.0,1,1.4946345090866089,80,0.0,3 +65080,3,0.0,1,2.0196280479431152,81,1.0,3 +65081,3,0.0,1,1.3266366720199585,82,1.0,3 +65082,3,0.0,1,1.323636770248413,83,0.0,3 +65083,3,0.0,1,1.9906282424926758,84,1.0,3 +65084,3,0.0,1,1.5836334228515625,85,0.0,3 +65085,3,0.0,1,1.5896333456039429,86,0.0,3 +65086,3,0.0,1,2.1156325340270996,87,0.0,3 +65087,3,0.0,1,1.2326374053955078,88,0.0,3 +65088,3,0.0,1,2.191636085510254,89,1.0,3 +65089,3,0.0,1,1.4256354570388794,90,0.0,3 +65090,3,1.0,1,1.346636414527893,91,0.0,3 +65091,3,1.0,1,1.8316302299499512,92,1.0,3 +65092,3,1.0,1,1.4266353845596313,93,1.0,3 +65093,3,1.0,1,1.146637201309204,94,0.0,3 +65094,3,0.0,1,1.4096356630325317,95,1.0,3 +65095,3,0.0,1,1.1446372270584106,96,1.0,3 +65096,3,0.0,1,1.3846359252929688,97,1.0,3 +65097,3,0.0,1,1.4526350498199463,98,0.0,3 +65098,3,1.0,1,1.511634349822998,99,0.0,3 +65099,3,1.0,1,1.331636667251587,100,1.0,3 +65100,3,1.0,1,1.3796360492706299,101,0.0,3 +65101,3,1.0,1,1.5216342210769653,102,1.0,3 +65102,3,1.0,1,1.6376327276229858,103,0.0,3 +65103,3,0.0,1,1.4096356630325317,104,0.0,3 +65104,3,1.0,1,1.1986373662948608,105,0.0,3 +65105,3,0.0,1,1.9596285820007324,106,1.0,3 +65106,3,0.0,1,1.6386327743530273,107,0.0,3 +65107,3,0.0,1,1.585633397102356,108,0.0,3 +65108,3,0.0,1,1.8756296634674072,109,0.0,3 +65109,3,1.0,1,2.1556344032287598,110,0.0,3 +65110,3,1.0,1,1.51263427734375,111,1.0,3 +65111,3,0.0,1,1.1506372690200806,112,0.0,3 +65112,3,1.0,1,1.5576337575912476,113,0.0,3 +65113,3,0.0,1,1.508634328842163,114,0.0,3 +65114,3,0.0,1,2.0096278190612793,115,1.0,3 +65115,3,0.0,1,1.1306371688842773,116,0.0,3 +65116,3,0.0,1,1.4726347923278809,117,0.0,3 +65117,3,1.0,1,1.611633062362671,118,0.0,3 +65118,3,0.0,1,2.3456432819366455,119,0.0,3 +65119,3,1.0,1,1.725631594657898,120,1.0,3 +65120,3,1.0,1,1.216637372970581,121,1.0,3 +65121,3,1.0,1,1.5206341743469238,122,1.0,3 +65122,3,1.0,1,1.4926345348358154,123,1.0,3 +65123,3,1.0,1,1.2706373929977417,124,0.0,3 +65124,3,0.0,1,1.8146305084228516,125,0.0,3 +65125,3,1.0,1,1.7196316719055176,126,1.0,3 +65126,3,1.0,1,1.581633448600769,127,1.0,3 +65127,3,1.0,1,1.5246341228485107,128,1.0,3 +65128,3,1.0,1,1.2376374006271362,129,1.0,3 +65129,3,1.0,1,1.467634916305542,130,1.0,3 +65130,3,1.0,1,2.0256283283233643,131,1.0,3 +65131,3,1.0,1,1.3086369037628174,132,0.0,3 +65132,3,0.0,1,1.7936307191848755,133,0.0,3 +65133,3,1.0,1,1.7636311054229736,134,1.0,3 +65134,3,1.0,1,1.353636384010315,135,0.0,3 +65135,3,0.0,1,1.192637324333191,136,0.0,3 +65136,3,1.0,1,1.4066356420516968,137,1.0,3 +65137,3,1.0,1,1.328636646270752,138,0.0,3 +65138,3,0.0,1,1.2966370582580566,139,0.0,3 +65139,3,0.0,1,1.3776360750198364,140,0.0,3 +65140,3,1.0,1,1.5266342163085938,141,0.0,3 +65141,3,1.0,1,2.0406289100646973,142,1.0,3 +65142,3,1.0,1,1.1286371946334839,143,1.0,3 +65143,3,1.0,1,1.1386371850967407,144,0.0,3 +65144,3,0.0,1,1.8046305179595947,145,1.0,3 +65145,3,0.0,1,1.3376365900039673,146,0.0,3 +65146,3,1.0,1,2.256639003753662,147,0.0,3 +65147,3,1.0,1,1.5706336498260498,148,1.0,3 +65148,3,1.0,1,1.3516364097595215,149,1.0,3 +65149,3,1.0,1,1.2416374683380127,150,0.0,3 +65150,3,0.0,1,1.3836359977722168,151,0.0,3 +65151,3,0.0,1,1.5346341133117676,152,0.0,3 +65152,3,1.0,1,1.8216303586959839,153,0.0,3 +65153,3,1.0,1,1.6886320114135742,154,1.0,3 +65154,3,1.0,1,1.2756373882293701,155,0.0,3 +65155,3,1.0,1,2.5466527938842773,156,1.0,3 +65156,3,1.0,1,1.2186373472213745,157,1.0,3 +65157,3,1.0,1,1.189637303352356,158,1.0,3 +65158,3,1.0,1,1.2776373624801636,159,1.0,3 +65159,3,1.0,1,1.3596363067626953,160,1.0,3 +65160,3,1.0,1,1.2316374778747559,161,1.0,3 +65161,3,1.0,1,1.4346352815628052,162,1.0,3 +65162,3,1.0,1,1.699631929397583,163,1.0,3 +65163,3,1.0,1,1.2416374683380127,164,0.0,3 +65164,3,1.0,1,1.7236316204071045,165,1.0,3 +65165,3,1.0,1,2.0906314849853516,166,0.0,3 +65166,3,1.0,1,1.880629539489746,167,0.0,3 +65167,3,1.0,1,1.3126368522644043,168,1.0,3 +65168,3,1.0,1,1.6846320629119873,169,1.0,3 +65169,3,1.0,1,1.2376374006271362,170,0.0,3 +65170,3,1.0,1,1.7176316976547241,171,1.0,3 +65171,3,1.0,1,1.6706323623657227,172,0.0,3 +65172,3,0.0,1,1.4126355648040771,173,0.0,3 +65173,3,1.0,1,1.4186354875564575,174,1.0,3 +65174,3,1.0,1,1.3706361055374146,175,1.0,3 +65175,3,1.0,1,1.4256354570388794,176,1.0,3 +65176,3,1.0,1,1.188637375831604,177,0.0,3 +65177,3,0.0,1,2.460648536682129,178,1.0,3 +65178,3,0.0,1,1.5976332426071167,179,0.0,3 +65179,3,1.0,1,1.7646310329437256,180,0.0,3 +65180,3,1.0,1,1.3126368522644043,181,1.0,3 +65181,3,1.0,1,1.3896359205245972,182,1.0,3 +65182,3,1.0,1,1.6426327228546143,183,1.0,3 +65183,3,1.0,1,1.5276341438293457,184,1.0,3 +65184,3,1.0,1,1.4486351013183594,185,0.0,3 +65185,3,0.0,1,1.2926371097564697,186,0.0,3 +65186,3,0.0,1,1.4626349210739136,187,0.0,3 +65187,3,1.0,1,1.3216367959976196,188,1.0,3 +65188,3,1.0,1,1.2486374378204346,189,1.0,3 +65189,3,1.0,1,1.3926358222961426,190,0.0,3 +65190,3,0.0,1,1.5826334953308105,191,0.0,3 +65191,3,1.0,1,1.7636311054229736,192,0.0,3 +65192,3,0.0,1,1.6406326293945312,193,0.0,3 +65193,3,0.0,1,1.5146342515945435,194,1.0,3 +65194,3,0.0,1,1.2756373882293701,195,1.0,3 +65195,3,0.0,1,1.185637354850769,196,1.0,3 +65196,3,0.0,1,1.3636362552642822,197,0.0,3 +65197,3,1.0,1,1.9406287670135498,198,1.0,3 +65198,3,1.0,1,1.2336374521255493,199,1.0,3 +65199,3,1.0,1,1.2296373844146729,200,1.0,3 +65200,3,0.0,1,1.151637315750122,201,0.0,3 +65201,3,1.0,1,1.5056344270706177,202,1.0,3 +65202,3,1.0,1,1.648632526397705,203,1.0,3 +65203,3,1.0,1,1.368636131286621,204,0.0,3 +65204,3,0.0,1,1.485634684562683,205,0.0,3 +65205,3,0.0,1,1.7456313371658325,206,1.0,3 +65206,3,0.0,1,1.2126374244689941,207,0.0,3 +65207,3,1.0,1,1.633632779121399,208,1.0,3 +65208,3,0.0,1,1.2636375427246094,209,0.0,3 +65209,3,1.0,1,1.6126329898834229,210,1.0,3 +65210,3,1.0,1,1.2666374444961548,211,1.0,3 +65211,3,1.0,1,1.6146330833435059,212,1.0,3 +65212,3,1.0,1,1.3196368217468262,213,1.0,3 +65213,3,1.0,1,1.5436339378356934,214,1.0,3 +65214,3,1.0,1,1.3826359510421753,215,0.0,3 +65215,3,1.0,1,1.8666298389434814,216,1.0,3 +65216,3,1.0,1,1.650632619857788,217,1.0,3 +65217,3,1.0,1,1.2736374139785767,218,0.0,3 +65218,3,1.0,1,1.2606375217437744,219,0.0,3 +65219,3,0.0,1,2.236638069152832,220,0.0,3 +65220,3,1.0,1,1.533634066581726,221,0.0,3 +65221,3,1.0,1,1.2426373958587646,222,1.0,3 +65222,3,1.0,1,1.3146368265151978,223,0.0,3 +65223,3,0.0,1,1.3206367492675781,224,1.0,3 +65224,3,0.0,1,1.213637351989746,225,0.0,3 +65225,3,1.0,1,1.742631435394287,226,1.0,3 +65226,3,1.0,1,1.446635127067566,227,1.0,3 +65227,3,1.0,1,1.4926345348358154,228,1.0,3 +65228,3,1.0,1,1.884629487991333,229,0.0,3 +65229,3,1.0,1,1.3666361570358276,230,1.0,3 +65230,3,1.0,1,1.2716374397277832,231,1.0,3 +65231,3,1.0,1,1.3926358222961426,232,0.0,3 +65232,3,0.0,1,1.4496351480484009,233,1.0,3 +65233,3,0.0,1,1.4576350450515747,234,0.0,3 +65234,3,1.0,1,1.7636311054229736,235,1.0,3 +65235,3,1.0,1,1.259637475013733,236,1.0,3 +65236,3,1.0,1,1.1546372175216675,237,1.0,3 +65237,3,1.0,1,1.8146305084228516,238,1.0,3 +65238,3,1.0,1,1.86562979221344,239,0.0,3 +65239,3,0.0,1,1.2006373405456543,240,1.0,3 +65240,3,0.0,1,1.3576363325119019,241,0.0,3 +65241,3,0.0,1,1.2016373872756958,242,0.0,3 +65242,3,1.0,1,1.3486363887786865,243,0.0,3 +65243,3,0.0,1,1.562633752822876,244,1.0,3 +65244,3,0.0,1,1.6416326761245728,245,0.0,3 +65245,3,1.0,1,1.5446338653564453,246,0.0,3 +65246,3,1.0,1,1.8946294784545898,247,1.0,3 +65247,3,0.0,1,1.29863703250885,248,0.0,3 +65248,3,1.0,1,1.1396372318267822,249,1.0,3 +65249,3,1.0,1,1.3196368217468262,250,1.0,3 +65250,3,1.0,1,1.2686374187469482,251,1.0,3 +65251,3,1.0,1,1.7626311779022217,252,0.0,3 +65252,3,0.0,1,1.2086373567581177,253,0.0,3 +65253,3,1.0,1,1.9986281394958496,254,0.0,3 +65254,3,1.0,1,1.5176342725753784,255,0.0,3 +65255,3,0.0,1,1.677632212638855,256,0.0,3 +65256,3,0.0,1,1.5876333713531494,257,0.0,3 +65257,3,0.0,1,1.219637393951416,258,1.0,3 +65258,3,0.0,1,1.1696373224258423,259,0.0,3 +65259,3,0.0,1,1.4316353797912598,260,1.0,3 +65260,3,0.0,1,1.0986371040344238,261,0.0,3 +65261,3,0.0,1,1.6876320838928223,262,1.0,3 +65262,3,0.0,1,1.4106355905532837,263,0.0,3 +65263,3,0.0,1,1.7226316928863525,264,0.0,3 +65264,3,1.0,1,1.4336353540420532,265,1.0,3 +65265,3,0.0,1,1.2546374797821045,266,0.0,3 +65266,3,1.0,1,1.276637315750122,267,1.0,3 +65267,3,1.0,1,1.4026356935501099,268,1.0,3 +65268,3,1.0,1,1.2186373472213745,269,0.0,3 +65269,3,0.0,1,1.4296354055404663,270,0.0,3 +65270,3,0.0,1,1.3636362552642822,271,1.0,3 +65271,3,0.0,1,1.3886358737945557,272,0.0,3 +65272,3,0.0,1,1.5366339683532715,273,0.0,3 +65273,3,0.0,1,1.5726335048675537,274,1.0,3 +65274,3,0.0,1,1.5526337623596191,275,0.0,3 +65275,3,0.0,1,1.51863431930542,276,0.0,3 +65276,3,0.0,1,2.675658702850342,277,0.0,3 +65277,3,1.0,1,1.213637351989746,278,1.0,3 +65278,3,1.0,1,1.1976373195648193,279,0.0,3 +65279,3,0.0,1,1.3486363887786865,280,0.0,3 +65280,3,1.0,1,1.5076344013214111,281,0.0,3 +65281,3,0.0,1,1.7176316976547241,282,0.0,3 +65282,3,0.0,1,1.1786372661590576,283,1.0,3 +65283,3,0.0,1,1.3666361570358276,284,0.0,3 +65284,3,1.0,1,1.8466300964355469,285,1.0,3 +65285,3,1.0,1,1.3106368780136108,286,0.0,3 +65286,3,0.0,1,1.7136317491531372,287,1.0,3 +65287,3,0.0,1,1.2216373682022095,288,0.0,3 +65288,3,0.0,1,2.015627861022949,289,0.0,3 +65289,3,0.0,1,1.6386327743530273,290,1.0,3 +65290,3,0.0,1,1.3046369552612305,291,0.0,3 +65291,3,0.0,1,1.6386327743530273,292,1.0,3 +65292,3,0.0,1,1.6226329803466797,293,0.0,3 +65293,3,0.0,1,1.508634328842163,294,0.0,3 +65294,3,1.0,1,1.8816295862197876,295,0.0,3 +65295,3,0.0,1,1.4826346635818481,296,0.0,3 +65296,3,0.0,1,2.272639751434326,297,0.0,3 +65297,3,1.0,1,2.0616300106048584,298,0.0,3 +65298,3,1.0,1,1.6626324653625488,299,1.0,3 +65299,3,1.0,1,1.249637484550476,300,1.0,3 +65300,3,1.0,1,1.6126329898834229,301,1.0,3 +65301,3,1.0,1,1.468634843826294,302,1.0,3 +65302,3,1.0,1,1.4096356630325317,303,1.0,3 +65303,3,1.0,1,1.7206315994262695,304,0.0,3 +65304,3,0.0,1,1.3116369247436523,305,0.0,3 +65305,3,0.0,1,1.2316374778747559,306,0.0,3 +65306,3,0.0,1,1.4776347875595093,307,0.0,3 +65307,3,0.0,1,1.9586286544799805,308,0.0,3 +65308,3,1.0,1,1.2436374425888062,309,1.0,3 +65309,3,1.0,1,1.4106355905532837,310,1.0,3 +65310,3,1.0,1,1.765631079673767,311,1.0,3 +65311,3,0.0,1,1.4296354055404663,312,1.0,3 +65312,3,1.0,1,1.3866358995437622,313,1.0,3 +65313,3,0.0,1,1.1536372900009155,314,1.0,3 +65314,3,1.0,1,1.6536325216293335,315,1.0,3 +65315,3,0.0,1,1.4366352558135986,316,0.0,3 +65316,3,1.0,1,1.2096374034881592,317,1.0,3 +65317,3,1.0,1,1.8286302089691162,318,1.0,3 +65318,3,1.0,1,1.6616324186325073,319,1.0,3 +65319,3,1.0,1,1.250637412071228,320,1.0,3 +65320,3,1.0,1,1.215637445449829,321,1.0,3 +65321,3,1.0,1,1.4666348695755005,322,1.0,3 +65322,3,1.0,1,1.185637354850769,323,1.0,3 +65323,3,1.0,1,1.159637212753296,324,0.0,3 +65324,3,1.0,1,1.3586362600326538,325,1.0,3 +65325,3,1.0,1,1.372636079788208,326,1.0,3 +65326,3,1.0,1,1.3826359510421753,327,0.0,3 +65327,3,0.0,1,1.6176329851150513,328,0.0,3 +65328,3,1.0,1,1.7106318473815918,329,1.0,3 +65329,3,1.0,1,1.216637372970581,330,0.0,3 +65330,3,0.0,1,1.8306303024291992,331,0.0,3 +65331,3,0.0,1,1.2336374521255493,332,0.0,3 +65332,3,1.0,1,1.3826359510421753,333,1.0,3 +65333,3,1.0,1,1.2416374683380127,334,1.0,3 +65334,3,1.0,1,1.415635585784912,335,1.0,3 +65335,3,1.0,1,1.7016319036483765,336,1.0,3 +65336,3,1.0,1,1.2576375007629395,337,1.0,3 +65337,3,1.0,1,1.9156291484832764,338,1.0,3 +65338,3,1.0,1,1.7106318473815918,339,1.0,3 +65339,3,1.0,1,1.508634328842163,340,1.0,3 +65340,3,1.0,1,1.677632212638855,341,1.0,3 +65341,3,0.0,1,1.3166368007659912,342,1.0,3 +65342,3,0.0,1,1.5696336030960083,343,1.0,3 +65343,3,1.0,1,1.2186373472213745,344,1.0,3 +65344,3,1.0,1,1.438635230064392,345,1.0,3 +65345,3,0.0,1,1.1286371946334839,346,0.0,3 +65346,3,1.0,1,1.6656323671340942,347,0.0,3 +65347,3,1.0,1,1.8086304664611816,348,0.0,3 +65348,3,0.0,1,1.2466374635696411,349,0.0,3 +65349,3,0.0,1,1.4816347360610962,350,1.0,3 +65350,3,0.0,1,1.3776360750198364,351,1.0,3 +65351,3,0.0,1,1.2946370840072632,352,1.0,3 +65352,3,0.0,1,1.1776373386383057,353,1.0,3 +65353,3,0.0,1,1.161637306213379,354,0.0,3 +65354,3,1.0,1,1.8606297969818115,355,1.0,3 +65355,3,1.0,1,1.4606349468231201,356,1.0,3 +65356,3,1.0,1,1.323636770248413,357,1.0,3 +65357,3,1.0,1,1.7796308994293213,358,1.0,3 +65358,3,1.0,1,1.4266353845596313,359,1.0,3 +65359,3,1.0,1,1.5106343030929565,360,1.0,3 +65360,3,1.0,1,1.4066356420516968,361,1.0,3 +65361,3,1.0,1,1.6496325731277466,362,1.0,3 +65362,3,1.0,1,1.1966373920440674,363,0.0,3 +65363,3,1.0,1,1.6876320838928223,364,1.0,3 +65364,3,0.0,1,1.1816372871398926,365,0.0,3 +65365,3,1.0,1,1.283637285232544,366,1.0,3 +65366,3,1.0,1,1.7086317539215088,367,1.0,3 +65367,3,1.0,1,1.9516286849975586,368,0.0,3 +65368,3,0.0,1,1.7116317749023438,369,0.0,3 +65369,3,0.0,1,1.125637173652649,370,1.0,3 +65370,3,0.0,1,1.2906371355056763,371,1.0,3 +65371,3,0.0,1,1.5976332426071167,372,0.0,3 +65372,3,0.0,1,1.5466339588165283,373,0.0,3 +65373,3,0.0,1,1.3196368217468262,374,1.0,3 +65374,3,0.0,1,1.493634581565857,375,0.0,3 +65375,3,0.0,1,1.5316340923309326,376,0.0,3 +65376,3,0.0,1,1.7996306419372559,377,0.0,3 +65377,3,0.0,1,1.349636435508728,378,1.0,3 +65378,3,0.0,1,1.1786372661590576,379,1.0,3 +65379,3,0.0,1,1.3866358995437622,380,0.0,3 +65380,3,0.0,1,1.905629277229309,381,0.0,3 +65381,3,1.0,1,1.353636384010315,382,1.0,3 +65382,3,1.0,1,1.415635585784912,383,1.0,3 +65383,3,1.0,1,1.650632619857788,384,0.0,3 +65384,3,1.0,1,1.467634916305542,385,1.0,3 +65385,3,1.0,1,1.2036373615264893,386,0.0,3 +65386,3,0.0,1,1.695631980895996,387,0.0,3 +65387,3,0.0,1,1.2086373567581177,388,0.0,3 +65388,3,1.0,1,1.423635482788086,389,0.0,3 +65389,3,1.0,1,1.8576298952102661,390,1.0,3 +65390,3,1.0,1,1.1976373195648193,391,1.0,3 +65391,3,1.0,1,1.5696336030960083,392,1.0,3 +65392,3,1.0,1,1.3206367492675781,393,1.0,3 +65393,3,1.0,1,1.468634843826294,394,1.0,3 +65394,3,1.0,1,1.250637412071228,395,1.0,3 +65395,3,1.0,1,1.2546374797821045,396,0.0,3 +65396,3,0.0,1,1.2636375427246094,397,0.0,3 +65397,3,0.0,1,1.9196290969848633,398,0.0,3 +65398,3,0.0,1,1.8296302556991577,399,1.0,3 +65399,3,0.0,1,1.3446364402770996,400,1.0,3 +65400,3,0.0,1,1.4226354360580444,401,0.0,3 +65401,3,1.0,1,1.6536325216293335,402,1.0,3 +65402,3,1.0,1,1.3196368217468262,403,0.0,3 +65403,3,0.0,1,1.3426364660263062,404,0.0,3 +65404,3,0.0,1,1.6286327838897705,405,0.0,3 +65405,3,0.0,1,1.6686322689056396,406,1.0,3 +65406,3,0.0,1,1.2556374073028564,407,0.0,3 +65407,3,0.0,1,1.1876373291015625,408,1.0,3 +65408,3,0.0,1,1.4436352252960205,409,1.0,3 +65409,3,0.0,1,1.3336366415023804,410,1.0,3 +65410,3,0.0,1,1.32763671875,411,1.0,3 +65411,3,0.0,1,1.9106292724609375,412,0.0,3 +65412,3,0.0,1,1.3906358480453491,413,0.0,3 +65413,3,1.0,1,1.8046305179595947,414,1.0,3 +65414,3,1.0,1,1.4086356163024902,415,1.0,3 +65415,3,1.0,1,1.3696361780166626,416,1.0,3 +65416,3,1.0,1,1.3746360540390015,417,1.0,3 +65417,3,1.0,1,1.2756373882293701,418,0.0,3 +65418,3,0.0,1,1.3386365175247192,419,0.0,3 +65419,3,0.0,1,1.5016344785690308,420,0.0,3 +65420,3,0.0,1,1.215637445449829,421,1.0,3 +65421,3,0.0,1,1.1576372385025024,422,1.0,3 +65422,3,0.0,1,1.1686372756958008,423,0.0,3 +65423,3,0.0,1,1.4026356935501099,424,0.0,3 +65424,3,0.0,1,1.2376374006271362,425,0.0,3 +65425,3,1.0,1,1.283637285232544,426,1.0,3 +65426,3,1.0,1,1.1736372709274292,427,1.0,3 +65427,3,1.0,1,1.3476364612579346,428,1.0,3 +65428,3,1.0,1,1.3706361055374146,429,1.0,3 +65429,3,1.0,1,1.2466374635696411,430,1.0,3 +65430,3,1.0,1,1.3036370277404785,431,1.0,3 +65431,3,1.0,1,1.1656372547149658,432,1.0,3 +65432,3,1.0,1,1.3136368989944458,433,0.0,3 +65433,3,1.0,1,1.7076318264007568,434,0.0,3 +65434,3,0.0,1,1.213637351989746,435,1.0,3 +65435,3,0.0,1,1.4256354570388794,436,1.0,3 +65436,3,0.0,1,1.249637484550476,437,0.0,3 +65437,3,0.0,1,1.4226354360580444,438,0.0,3 +65438,3,1.0,1,1.226637363433838,439,1.0,3 +65439,3,1.0,1,1.3676362037658691,440,1.0,3 +65440,3,1.0,1,1.3816360235214233,441,1.0,3 +65441,3,1.0,1,1.259637475013733,442,1.0,3 +65442,3,1.0,1,1.250637412071228,443,0.0,3 +65443,3,0.0,1,2.447648048400879,444,0.0,3 +65444,3,1.0,1,1.655632495880127,445,1.0,3 +65445,3,1.0,1,1.302636981010437,446,0.0,3 +65446,3,1.0,1,2.512650966644287,447,0.0,3 +65447,3,0.0,1,1.9436287879943848,448,0.0,3 +65448,3,0.0,1,1.9676284790039062,449,0.0,3 +65449,3,1.0,1,1.5466339588165283,450,1.0,3 +65450,3,1.0,1,1.3846359252929688,451,1.0,3 +65451,3,1.0,1,1.7746310234069824,452,1.0,3 +65452,3,1.0,1,1.401635766029358,453,1.0,3 +65453,3,1.0,1,1.5276341438293457,454,1.0,3 +65454,3,1.0,1,1.9856282472610474,455,1.0,3 +65455,3,1.0,1,1.1776373386383057,456,1.0,3 +65456,3,1.0,1,1.2746373414993286,457,0.0,3 +65457,3,1.0,1,2.1036319732666016,458,0.0,3 +65458,3,0.0,1,1.471634864807129,459,0.0,3 +65459,3,0.0,1,2.0886311531066895,460,0.0,3 +65460,3,0.0,1,1.3256367444992065,461,0.0,3 +65461,3,0.0,1,1.3876359462738037,462,0.0,3 +65462,3,0.0,1,1.1906373500823975,463,0.0,3 +65463,3,1.0,1,1.5956332683563232,464,1.0,3 +65464,3,1.0,1,1.750631332397461,465,1.0,3 +65465,3,1.0,1,1.222637414932251,466,0.0,3 +65466,3,1.0,1,2.0326285362243652,467,1.0,3 +65467,3,1.0,1,1.2636375427246094,468,0.0,3 +65468,3,1.0,1,1.3806359767913818,469,1.0,3 +65469,3,1.0,1,1.6216329336166382,470,1.0,3 +65470,3,1.0,1,1.5296341180801392,471,1.0,3 +65471,3,1.0,1,1.302636981010437,472,1.0,3 +65472,3,1.0,1,1.2626374959945679,473,1.0,3 +65473,3,1.0,1,1.3896359205245972,474,1.0,3 +65474,3,1.0,1,1.5326340198516846,475,0.0,3 +65475,3,0.0,1,1.655632495880127,476,1.0,3 +65476,3,0.0,1,1.2976371049880981,477,0.0,3 +65477,3,0.0,1,1.3526363372802734,478,0.0,3 +65478,3,0.0,1,1.3866358995437622,479,1.0,3 +65479,3,0.0,1,1.3136368989944458,480,0.0,3 +65480,3,1.0,1,1.5466339588165283,481,1.0,3 +65481,3,1.0,1,1.222637414932251,482,1.0,3 +65482,3,1.0,1,1.6016331911087036,483,1.0,3 +65483,3,1.0,1,1.3426364660263062,484,1.0,3 +65484,3,1.0,1,1.2756373882293701,485,0.0,3 +65485,3,1.0,1,2.024628162384033,486,1.0,3 +65486,3,1.0,1,1.283637285232544,487,1.0,3 +65487,3,1.0,1,1.3616362810134888,488,1.0,3 +65488,3,1.0,1,1.223637342453003,489,0.0,3 +65489,3,1.0,1,1.3256367444992065,490,1.0,3 +65490,3,1.0,1,1.4046356678009033,491,0.0,3 +65491,3,0.0,1,1.4286353588104248,492,0.0,3 +65492,3,1.0,1,2.0926313400268555,493,1.0,3 +65493,3,1.0,1,1.2116373777389526,494,0.0,3 +65494,3,1.0,1,1.401635766029358,495,1.0,3 +65495,3,1.0,1,1.2446374893188477,496,1.0,3 +65496,3,1.0,1,1.249637484550476,497,0.0,3 +65497,3,0.0,1,1.8266303539276123,498,0.0,3 +65498,3,0.0,1,1.5476338863372803,499,0.0,3 +65499,3,1.0,1,1.8936294317245483,500,0.0,3 +65500,3,0.0,2,1.2376374006271362,1,0.0,3 +65501,3,1.0,2,1.3586362600326538,2,1.0,3 +65502,3,1.0,2,1.7206315994262695,3,1.0,3 +65503,3,1.0,2,1.2816373109817505,4,0.0,3 +65504,3,1.0,2,2.234638214111328,5,1.0,3 +65505,3,1.0,2,1.486634612083435,6,0.0,3 +65506,3,0.0,2,1.2746373414993286,7,0.0,3 +65507,3,0.0,2,1.4696348905563354,8,0.0,3 +65508,3,0.0,2,1.6156330108642578,9,0.0,3 +65509,3,0.0,2,1.2886371612548828,10,0.0,3 +65510,3,1.0,2,1.648632526397705,11,0.0,3 +65511,3,1.0,2,2.3556437492370605,12,0.0,3 +65512,3,1.0,2,2.3466434478759766,13,1.0,3 +65513,3,1.0,2,1.3966357707977295,14,0.0,3 +65514,3,1.0,2,1.3256367444992065,15,0.0,3 +65515,3,0.0,2,1.2676374912261963,16,1.0,3 +65516,3,0.0,2,1.5456339120864868,17,1.0,3 +65517,3,0.0,2,1.1276371479034424,18,1.0,3 +65518,3,0.0,2,1.3126368522644043,19,1.0,3 +65519,3,0.0,2,1.1716372966766357,20,1.0,3 +65520,3,0.0,2,1.8416301012039185,21,0.0,3 +65521,3,1.0,2,1.7366313934326172,22,0.0,3 +65522,3,0.0,2,1.3296366930007935,23,0.0,3 +65523,3,0.0,2,1.8556299209594727,24,0.0,3 +65524,3,0.0,2,1.8306303024291992,25,1.0,3 +65525,3,1.0,2,1.4526350498199463,26,1.0,3 +65526,3,1.0,2,2.0886311531066895,27,1.0,3 +65527,3,1.0,2,2.682659149169922,28,0.0,3 +65528,3,0.0,2,1.151637315750122,29,0.0,3 +65529,3,1.0,2,1.376636028289795,30,0.0,3 +65530,3,0.0,2,1.7076318264007568,31,0.0,3 +65531,3,0.0,2,1.5806334018707275,32,1.0,3 +65532,3,0.0,2,1.6846320629119873,33,0.0,3 +65533,3,0.0,2,2.0346288681030273,34,0.0,3 +65534,3,1.0,2,1.3876359462738037,35,1.0,3 +65535,3,1.0,2,1.4256354570388794,36,0.0,3 +65536,3,0.0,2,1.6976319551467896,37,0.0,3 +65537,3,0.0,2,1.2706373929977417,38,0.0,3 +65538,3,0.0,2,1.751631259918213,39,0.0,3 +65539,3,1.0,2,1.394635796546936,40,1.0,3 +65540,3,1.0,2,1.2666374444961548,41,0.0,3 +65541,3,1.0,2,2.169635057449341,42,0.0,3 +65542,3,1.0,2,1.6646323204040527,43,1.0,3 +65543,3,1.0,2,1.556633710861206,44,1.0,3 +65544,3,1.0,2,1.3476364612579346,45,1.0,3 +65545,3,1.0,2,1.5196342468261719,46,1.0,3 +65546,3,1.0,2,1.3306366205215454,47,0.0,3 +65547,3,0.0,2,1.1196372509002686,48,1.0,3 +65548,3,0.0,2,1.2646374702453613,49,1.0,3 +65549,3,0.0,2,1.3566362857818604,50,1.0,3 +65550,3,0.0,2,1.2546374797821045,51,1.0,3 +65551,3,0.0,2,1.1276371479034424,52,0.0,3 +65552,3,0.0,2,1.8196303844451904,53,1.0,3 +65553,3,0.0,2,1.3606362342834473,54,0.0,3 +65554,3,1.0,2,2.0056281089782715,55,1.0,3 +65555,3,1.0,2,1.3416365385055542,56,0.0,3 +65556,3,1.0,2,1.2996370792388916,57,0.0,3 +65557,3,0.0,2,1.1296372413635254,58,1.0,3 +65558,3,0.0,2,1.3256367444992065,59,1.0,3 +65559,3,0.0,2,1.4806346893310547,60,1.0,3 +65560,3,0.0,2,1.331636667251587,61,0.0,3 +65561,3,1.0,2,1.5306341648101807,62,0.0,3 +65562,3,1.0,2,1.839630126953125,63,0.0,3 +65563,3,1.0,2,1.2476375102996826,64,1.0,3 +65564,3,1.0,2,1.2426373958587646,65,1.0,3 +65565,3,1.0,2,1.747631311416626,66,1.0,3 +65566,3,1.0,2,1.213637351989746,67,1.0,3 +65567,3,1.0,2,1.5216342210769653,68,0.0,3 +65568,3,1.0,2,1.3386365175247192,69,0.0,3 +65569,3,0.0,2,1.8936294317245483,70,0.0,3 +65570,3,0.0,2,1.4816347360610962,71,1.0,3 +65571,3,0.0,2,1.2066373825073242,72,1.0,3 +65572,3,0.0,2,1.3356366157531738,73,0.0,3 +65573,3,0.0,2,1.3846359252929688,74,0.0,3 +65574,3,1.0,2,1.2786372900009155,75,1.0,3 +65575,3,1.0,2,1.4266353845596313,76,1.0,3 +65576,3,1.0,2,1.186637282371521,77,0.0,3 +65577,3,0.0,2,1.3416365385055542,78,1.0,3 +65578,3,0.0,2,1.376636028289795,79,0.0,3 +65579,3,1.0,2,1.8696297407150269,80,0.0,3 +65580,3,1.0,2,1.9716284275054932,81,1.0,3 +65581,3,1.0,2,1.4796347618103027,82,0.0,3 +65582,3,0.0,2,1.1296372413635254,83,1.0,3 +65583,3,0.0,2,1.1766372919082642,84,0.0,3 +65584,3,0.0,2,1.5756335258483887,85,1.0,3 +65585,3,0.0,2,1.441635251045227,86,1.0,3 +65586,3,0.0,2,1.3366365432739258,87,1.0,3 +65587,3,0.0,2,1.5576337575912476,88,0.0,3 +65588,3,0.0,2,1.2406374216079712,89,0.0,3 +65589,3,1.0,2,1.6866321563720703,90,0.0,3 +65590,3,1.0,2,1.607633113861084,91,0.0,3 +65591,3,1.0,2,1.1366372108459473,92,0.0,3 +65592,3,1.0,2,1.8116304874420166,93,1.0,3 +65593,3,1.0,2,1.3296366930007935,94,0.0,3 +65594,3,1.0,2,2.0186281204223633,95,1.0,3 +65595,3,1.0,2,1.3866358995437622,96,0.0,3 +65596,3,0.0,2,1.2726373672485352,97,1.0,3 +65597,3,0.0,2,1.3666361570358276,98,0.0,3 +65598,3,0.0,2,1.6316328048706055,99,1.0,3 +65599,3,0.0,2,1.3396365642547607,100,1.0,3 +65600,3,0.0,2,2.1396336555480957,101,0.0,3 +65601,3,0.0,2,1.5426340103149414,102,0.0,3 +65602,3,0.0,2,1.2316374778747559,103,1.0,3 +65603,3,0.0,2,1.302636981010437,104,1.0,3 +65604,3,0.0,2,1.279637336730957,105,1.0,3 +65605,3,0.0,2,1.305637001991272,106,1.0,3 +65606,3,0.0,2,1.5016344785690308,107,0.0,3 +65607,3,1.0,2,1.932628870010376,108,1.0,3 +65608,3,1.0,2,1.4526350498199463,109,1.0,3 +65609,3,1.0,2,1.744631290435791,110,1.0,3 +65610,3,1.0,2,1.8206303119659424,111,0.0,3 +65611,3,1.0,2,1.4286353588104248,112,1.0,3 +65612,3,1.0,2,1.3826359510421753,113,0.0,3 +65613,3,0.0,2,1.4176355600357056,114,1.0,3 +65614,3,0.0,2,1.4696348905563354,115,1.0,3 +65615,3,0.0,2,1.2976371049880981,116,1.0,3 +65616,3,0.0,2,1.4766347408294678,117,0.0,3 +65617,3,0.0,2,1.159637212753296,118,1.0,3 +65618,3,0.0,2,1.1366372108459473,119,0.0,3 +65619,3,0.0,2,2.428647041320801,120,1.0,3 +65620,3,0.0,2,1.2776373624801636,121,1.0,3 +65621,3,0.0,2,1.3446364402770996,122,1.0,3 +65622,3,0.0,2,1.249637484550476,123,0.0,3 +65623,3,0.0,2,1.9436287879943848,124,1.0,3 +65624,3,0.0,2,1.4046356678009033,125,0.0,3 +65625,3,1.0,2,2.237638235092163,126,1.0,3 +65626,3,1.0,2,1.604633092880249,127,1.0,3 +65627,3,1.0,2,1.5286340713500977,128,1.0,3 +65628,3,1.0,2,1.2816373109817505,129,0.0,3 +65629,3,0.0,2,1.2716374397277832,130,0.0,3 +65630,3,0.0,2,1.6056331396102905,131,0.0,3 +65631,3,1.0,2,1.7416313886642456,132,1.0,3 +65632,3,1.0,2,1.3776360750198364,133,1.0,3 +65633,3,1.0,2,2.0396289825439453,134,0.0,3 +65634,3,0.0,2,1.3076369762420654,135,1.0,3 +65635,3,0.0,2,1.259637475013733,136,0.0,3 +65636,3,0.0,2,1.4056357145309448,137,1.0,3 +65637,3,0.0,2,1.3816360235214233,138,1.0,3 +65638,3,0.0,2,1.2546374797821045,139,0.0,3 +65639,3,1.0,2,1.791630744934082,140,0.0,3 +65640,3,0.0,2,1.8546299934387207,141,0.0,3 +65641,3,0.0,2,1.559633731842041,142,0.0,3 +65642,3,0.0,2,1.2956371307373047,143,0.0,3 +65643,3,0.0,2,1.5226342678070068,144,0.0,3 +65644,3,1.0,2,1.4576350450515747,145,0.0,3 +65645,3,1.0,2,2.2756400108337402,146,0.0,3 +65646,3,0.0,2,1.6936320066452026,147,0.0,3 +65647,3,1.0,2,1.7726309299468994,148,0.0,3 +65648,3,1.0,2,1.796630620956421,149,1.0,3 +65649,3,1.0,2,1.446635127067566,150,1.0,3 +65650,3,1.0,2,1.4406352043151855,151,1.0,3 +65651,3,1.0,2,1.2146373987197876,152,1.0,3 +65652,3,1.0,2,1.5146342515945435,153,0.0,3 +65653,3,1.0,2,1.4226354360580444,154,0.0,3 +65654,3,1.0,2,1.655632495880127,155,0.0,3 +65655,3,0.0,2,1.376636028289795,156,1.0,3 +65656,3,0.0,2,1.4326353073120117,157,1.0,3 +65657,3,0.0,2,1.151637315750122,158,0.0,3 +65658,3,1.0,2,1.8166303634643555,159,1.0,3 +65659,3,1.0,2,1.537634015083313,160,1.0,3 +65660,3,1.0,2,1.2386374473571777,161,1.0,3 +65661,3,1.0,2,1.7056318521499634,162,1.0,3 +65662,3,1.0,2,1.3146368265151978,163,1.0,3 +65663,3,1.0,2,1.6266329288482666,164,0.0,3 +65664,3,0.0,2,2.0586299896240234,165,0.0,3 +65665,3,0.0,2,2.511651039123535,166,1.0,3 +65666,3,0.0,2,1.228637456893921,167,1.0,3 +65667,3,0.0,2,1.1456372737884521,168,1.0,3 +65668,3,0.0,2,1.6136330366134644,169,1.0,3 +65669,3,0.0,2,2.0376288890838623,170,0.0,3 +65670,3,1.0,2,2.2286376953125,171,0.0,3 +65671,3,1.0,2,1.9546287059783936,172,0.0,3 +65672,3,0.0,2,1.2276374101638794,173,1.0,3 +65673,3,0.0,2,1.3006370067596436,174,1.0,3 +65674,3,0.0,2,1.280637264251709,175,0.0,3 +65675,3,1.0,2,1.2296373844146729,176,0.0,3 +65676,3,1.0,2,1.8896294832229614,177,0.0,3 +65677,3,0.0,2,1.324636697769165,178,1.0,3 +65678,3,0.0,2,1.7676310539245605,179,0.0,3 +65679,3,1.0,2,2.0006279945373535,180,1.0,3 +65680,3,1.0,2,1.7586312294006348,181,0.0,3 +65681,3,1.0,2,1.4946345090866089,182,1.0,3 +65682,3,0.0,2,1.3336366415023804,183,0.0,3 +65683,3,1.0,2,1.3806359767913818,184,1.0,3 +65684,3,1.0,2,1.5616337060928345,185,1.0,3 +65685,3,0.0,2,1.3816360235214233,186,0.0,3 +65686,3,1.0,2,1.3476364612579346,187,0.0,3 +65687,3,1.0,2,1.913629174232483,188,1.0,3 +65688,3,1.0,2,1.2786372900009155,189,1.0,3 +65689,3,1.0,2,1.3396365642547607,190,0.0,3 +65690,3,1.0,2,1.9896281957626343,191,0.0,3 +65691,3,0.0,2,1.148637294769287,192,1.0,3 +65692,3,0.0,2,1.1736372709274292,193,0.0,3 +65693,3,0.0,2,1.253637433052063,194,1.0,3 +65694,3,0.0,2,1.3706361055374146,195,1.0,3 +65695,3,0.0,2,1.3606362342834473,196,1.0,3 +65696,3,0.0,2,1.3796360492706299,197,0.0,3 +65697,3,1.0,2,2.0706305503845215,198,1.0,3 +65698,3,1.0,2,1.4046356678009033,199,1.0,3 +65699,3,1.0,2,1.4086356163024902,200,1.0,3 +65700,3,1.0,2,1.9456287622451782,201,0.0,3 +65701,3,0.0,2,1.4916346073150635,202,1.0,3 +65702,3,0.0,2,1.5516338348388672,203,0.0,3 +65703,3,0.0,2,1.368636131286621,204,1.0,3 +65704,3,0.0,2,1.2476375102996826,205,0.0,3 +65705,3,1.0,2,1.556633710861206,206,1.0,3 +65706,3,1.0,2,1.216637372970581,207,0.0,3 +65707,3,0.0,2,1.1416372060775757,208,0.0,3 +65708,3,0.0,2,2.028628349304199,209,0.0,3 +65709,3,1.0,2,1.5696336030960083,210,1.0,3 +65710,3,1.0,2,1.3786360025405884,211,1.0,3 +65711,3,1.0,2,1.5516338348388672,212,0.0,3 +65712,3,0.0,2,1.29863703250885,213,0.0,3 +65713,3,0.0,2,1.2116373777389526,214,0.0,3 +65714,3,0.0,2,1.5106343030929565,215,1.0,3 +65715,3,0.0,2,1.2436374425888062,216,1.0,3 +65716,3,0.0,2,1.2016373872756958,217,1.0,3 +65717,3,0.0,2,1.2666374444961548,218,0.0,3 +65718,3,1.0,2,2.728661060333252,219,1.0,3 +65719,3,1.0,2,1.4996345043182373,220,1.0,3 +65720,3,1.0,2,1.2866371870040894,221,1.0,3 +65721,3,1.0,2,1.5276341438293457,222,0.0,3 +65722,3,0.0,2,1.5006344318389893,223,0.0,3 +65723,3,0.0,2,1.5496338605880737,224,1.0,3 +65724,3,0.0,2,1.1946372985839844,225,0.0,3 +65725,3,0.0,2,1.7896307706832886,226,1.0,3 +65726,3,0.0,2,1.1346372365951538,227,1.0,3 +65727,3,0.0,2,1.087637186050415,228,1.0,3 +65728,3,0.0,2,1.486634612083435,229,1.0,3 +65729,3,0.0,2,1.349636435508728,230,1.0,3 +65730,3,0.0,2,1.4516351222991943,231,1.0,3 +65731,3,0.0,2,1.1036372184753418,232,0.0,3 +65732,3,0.0,2,2.3096415996551514,233,1.0,3 +65733,3,0.0,2,1.1806373596191406,234,0.0,3 +65734,3,1.0,2,2.224637508392334,235,1.0,3 +65735,3,1.0,2,1.4996345043182373,236,1.0,3 +65736,3,1.0,2,1.1846373081207275,237,1.0,3 +65737,3,1.0,2,1.4146355390548706,238,1.0,3 +65738,3,1.0,2,1.6096330881118774,239,1.0,3 +65739,3,1.0,2,1.3226367235183716,240,1.0,3 +65740,3,0.0,2,1.1876373291015625,241,0.0,3 +65741,3,1.0,2,1.556633710861206,242,1.0,3 +65742,3,1.0,2,1.4356353282928467,243,0.0,3 +65743,3,1.0,2,1.7376314401626587,244,0.0,3 +65744,3,1.0,2,1.656632423400879,245,1.0,3 +65745,3,1.0,2,1.250637412071228,246,1.0,3 +65746,3,1.0,2,1.2606375217437744,247,1.0,3 +65747,3,1.0,2,1.1406372785568237,248,1.0,3 +65748,3,1.0,2,1.2486374378204346,249,0.0,3 +65749,3,0.0,2,1.082637071609497,250,0.0,3 +65750,3,0.0,2,1.3136368989944458,251,1.0,3 +65751,3,0.0,2,1.3916358947753906,252,1.0,3 +65752,3,0.0,2,1.222637414932251,253,0.0,3 +65753,3,1.0,2,1.743631362915039,254,0.0,3 +65754,3,1.0,2,2.3586440086364746,255,1.0,3 +65755,3,1.0,2,1.2906371355056763,256,0.0,3 +65756,3,0.0,2,2.0896313190460205,257,0.0,3 +65757,3,0.0,2,1.3736361265182495,258,0.0,3 +65758,3,0.0,2,2.4076461791992188,259,1.0,3 +65759,3,0.0,2,1.276637315750122,260,1.0,3 +65760,3,0.0,2,1.423635482788086,261,1.0,3 +65761,3,0.0,2,1.3616362810134888,262,1.0,3 +65762,3,0.0,2,1.423635482788086,263,0.0,3 +65763,3,1.0,2,1.65163254737854,264,0.0,3 +65764,3,0.0,2,1.2116373777389526,265,0.0,3 +65765,3,0.0,2,1.0896371603012085,266,1.0,3 +65766,3,0.0,2,1.6756322383880615,267,1.0,3 +65767,3,0.0,2,1.4766347408294678,268,0.0,3 +65768,3,0.0,2,1.2096374034881592,269,0.0,3 +65769,3,0.0,2,1.2306374311447144,270,0.0,3 +65770,3,0.0,2,2.16263484954834,271,1.0,3 +65771,3,0.0,2,1.213637351989746,272,1.0,3 +65772,3,0.0,2,1.3776360750198364,273,1.0,3 +65773,3,0.0,2,1.4366352558135986,274,0.0,3 +65774,3,0.0,2,1.5396339893341064,275,0.0,3 +65775,3,0.0,2,1.7626311779022217,276,1.0,3 +65776,3,0.0,2,1.516634225845337,277,0.0,3 +65777,3,1.0,2,1.9596285820007324,278,1.0,3 +65778,3,1.0,2,1.3926358222961426,279,0.0,3 +65779,3,0.0,2,1.936628818511963,280,0.0,3 +65780,3,0.0,2,2.0726304054260254,281,0.0,3 +65781,3,0.0,2,1.9466288089752197,282,1.0,3 +65782,3,0.0,2,1.3146368265151978,283,1.0,3 +65783,3,0.0,2,1.331636667251587,284,1.0,3 +65784,3,0.0,2,1.1366372108459473,285,1.0,3 +65785,3,0.0,2,1.2976371049880981,286,1.0,3 +65786,3,0.0,2,1.397635817527771,287,0.0,3 +65787,3,0.0,2,1.376636028289795,288,1.0,3 +65788,3,0.0,2,1.5496338605880737,289,0.0,3 +65789,3,1.0,2,1.978628396987915,290,0.0,3 +65790,3,1.0,2,1.5446338653564453,291,0.0,3 +65791,3,0.0,2,1.8446300029754639,292,1.0,3 +65792,3,0.0,2,1.305637001991272,293,1.0,3 +65793,3,0.0,2,1.3486363887786865,294,0.0,3 +65794,3,0.0,2,1.4976345300674438,295,1.0,3 +65795,3,0.0,2,1.655632495880127,296,0.0,3 +65796,3,1.0,2,1.8336302042007446,297,1.0,3 +65797,3,1.0,2,1.3186367750167847,298,1.0,3 +65798,3,1.0,2,1.3186367750167847,299,1.0,3 +65799,3,1.0,2,1.4256354570388794,300,1.0,3 +65800,3,1.0,2,1.2956371307373047,301,1.0,3 +65801,3,1.0,2,1.2386374473571777,302,1.0,3 +65802,3,1.0,2,1.4816347360610962,303,1.0,3 +65803,3,1.0,2,1.3386365175247192,304,1.0,3 +65804,3,1.0,2,1.6196329593658447,305,0.0,3 +65805,3,0.0,2,1.2316374778747559,306,1.0,3 +65806,3,0.0,2,1.4126355648040771,307,1.0,3 +65807,3,0.0,2,1.6796321868896484,308,0.0,3 +65808,3,0.0,2,1.2386374473571777,309,0.0,3 +65809,3,0.0,2,1.2276374101638794,310,1.0,3 +65810,3,0.0,2,1.6576324701309204,311,1.0,3 +65811,3,0.0,2,1.2346373796463013,312,0.0,3 +65812,3,0.0,2,1.6156330108642578,313,0.0,3 +65813,3,0.0,2,1.6766321659088135,314,0.0,3 +65814,3,1.0,2,1.4816347360610962,315,1.0,3 +65815,3,1.0,2,1.3076369762420654,316,1.0,3 +65816,3,1.0,2,1.2486374378204346,317,1.0,3 +65817,3,1.0,2,1.7276315689086914,318,1.0,3 +65818,3,1.0,2,1.3006370067596436,319,1.0,3 +65819,3,1.0,2,1.2736374139785767,320,1.0,3 +65820,3,1.0,2,1.6346328258514404,321,1.0,3 +65821,3,1.0,2,1.4226354360580444,322,0.0,3 +65822,3,0.0,2,1.324636697769165,323,0.0,3 +65823,3,0.0,2,2.3676443099975586,324,1.0,3 +65824,3,0.0,2,1.4096356630325317,325,0.0,3 +65825,3,0.0,2,1.606633186340332,326,0.0,3 +65826,3,0.0,2,1.5356340408325195,327,1.0,3 +65827,3,0.0,2,1.189637303352356,328,0.0,3 +65828,3,0.0,2,1.3346365690231323,329,1.0,3 +65829,3,0.0,2,1.146637201309204,330,1.0,3 +65830,3,0.0,2,1.2476375102996826,331,1.0,3 +65831,3,0.0,2,1.7126317024230957,332,0.0,3 +65832,3,0.0,2,1.398635745048523,333,0.0,3 +65833,3,0.0,2,1.7156317234039307,334,1.0,3 +65834,3,0.0,2,1.189637303352356,335,1.0,3 +65835,3,0.0,2,1.3636362552642822,336,0.0,3 +65836,3,1.0,2,2.1196327209472656,337,0.0,3 +65837,3,1.0,2,1.5996332168579102,338,0.0,3 +65838,3,0.0,2,2.465648889541626,339,0.0,3 +65839,3,0.0,2,1.1106371879577637,340,0.0,3 +65840,3,1.0,2,1.4286353588104248,341,1.0,3 +65841,3,1.0,2,1.9166290760040283,342,0.0,3 +65842,3,1.0,2,2.414646625518799,343,1.0,3 +65843,3,1.0,2,1.8736296892166138,344,0.0,3 +65844,3,0.0,2,1.4146355390548706,345,1.0,3 +65845,3,0.0,2,1.4026356935501099,346,1.0,3 +65846,3,0.0,2,2.0396289825439453,347,0.0,3 +65847,3,1.0,2,1.4966344833374023,348,1.0,3 +65848,3,1.0,2,1.2956371307373047,349,1.0,3 +65849,3,1.0,2,1.1436371803283691,350,0.0,3 +65850,3,1.0,2,2.3566436767578125,351,1.0,3 +65851,3,1.0,2,1.305637001991272,352,0.0,3 +65852,3,1.0,2,1.7176316976547241,353,0.0,3 +65853,3,0.0,2,1.765631079673767,354,0.0,3 +65854,3,0.0,2,1.9396288394927979,355,1.0,3 +65855,3,0.0,2,1.3566362857818604,356,1.0,3 +65856,3,0.0,2,1.4326353073120117,357,0.0,3 +65857,3,0.0,2,1.4026356935501099,358,0.0,3 +65858,3,0.0,2,1.353636384010315,359,1.0,3 +65859,3,0.0,2,1.372636079788208,360,0.0,3 +65860,3,0.0,2,1.375636100769043,361,0.0,3 +65861,3,0.0,2,1.328636646270752,362,0.0,3 +65862,3,0.0,2,2.0796308517456055,363,0.0,3 +65863,3,1.0,2,1.9496287107467651,364,1.0,3 +65864,3,1.0,2,1.2966370582580566,365,0.0,3 +65865,3,1.0,2,2.150634288787842,366,1.0,3 +65866,3,1.0,2,1.750631332397461,367,0.0,3 +65867,3,1.0,2,1.485634684562683,368,0.0,3 +65868,3,0.0,2,1.2826372385025024,369,1.0,3 +65869,3,0.0,2,1.2016373872756958,370,1.0,3 +65870,3,0.0,2,1.159637212753296,371,1.0,3 +65871,3,0.0,2,1.2386374473571777,372,1.0,3 +65872,3,0.0,2,1.838630199432373,373,0.0,3 +65873,3,1.0,2,1.6596324443817139,374,0.0,3 +65874,3,0.0,2,1.2146373987197876,375,0.0,3 +65875,3,0.0,2,1.4696348905563354,376,0.0,3 +65876,3,1.0,2,1.5466339588165283,377,0.0,3 +65877,3,0.0,2,1.4116356372833252,378,0.0,3 +65878,3,1.0,2,1.438635230064392,379,1.0,3 +65879,3,1.0,2,1.4656349420547485,380,0.0,3 +65880,3,0.0,2,2.0856311321258545,381,0.0,3 +65881,3,0.0,2,1.3856359720230103,382,1.0,3 +65882,3,0.0,2,1.7206315994262695,383,0.0,3 +65883,3,1.0,2,2.226637840270996,384,0.0,3 +65884,3,1.0,2,1.5546338558197021,385,1.0,3 +65885,3,1.0,2,1.3666361570358276,386,1.0,3 +65886,3,1.0,2,1.3516364097595215,387,1.0,3 +65887,3,1.0,2,1.3896359205245972,388,0.0,3 +65888,3,0.0,2,2.0056281089782715,389,1.0,3 +65889,3,0.0,2,1.2396373748779297,390,1.0,3 +65890,3,0.0,2,1.3796360492706299,391,0.0,3 +65891,3,0.0,2,1.9406287670135498,392,0.0,3 +65892,3,0.0,2,1.6646323204040527,393,0.0,3 +65893,3,0.0,2,1.1996374130249023,394,0.0,3 +65894,3,0.0,2,1.3396365642547607,395,0.0,3 +65895,3,0.0,2,2.478649616241455,396,0.0,3 +65896,3,0.0,2,1.8546299934387207,397,0.0,3 +65897,3,0.0,2,1.2816373109817505,398,1.0,3 +65898,3,0.0,2,1.0706371068954468,399,1.0,3 +65899,3,0.0,2,1.3086369037628174,400,0.0,3 +65900,3,0.0,2,1.8296302556991577,401,0.0,3 +65901,3,0.0,2,2.1016318798065186,402,1.0,3 +65902,3,0.0,2,2.163634777069092,403,1.0,3 +65903,3,0.0,2,1.471634864807129,404,1.0,3 +65904,3,0.0,2,1.464634895324707,405,0.0,3 +65905,3,0.0,2,2.1336333751678467,406,0.0,3 +65906,3,1.0,2,1.4516351222991943,407,0.0,3 +65907,3,1.0,2,1.5216342210769653,408,1.0,3 +65908,3,1.0,2,1.3826359510421753,409,0.0,3 +65909,3,0.0,2,1.6766321659088135,410,1.0,3 +65910,3,0.0,2,1.2956371307373047,411,0.0,3 +65911,3,0.0,2,1.5016344785690308,412,1.0,3 +65912,3,0.0,2,1.1196372509002686,413,0.0,3 +65913,3,1.0,2,1.6456326246261597,414,0.0,3 +65914,3,1.0,2,1.2406374216079712,415,1.0,3 +65915,3,1.0,2,1.4666348695755005,416,1.0,3 +65916,3,1.0,2,1.4366352558135986,417,1.0,3 +65917,3,1.0,2,1.2916371822357178,418,0.0,3 +65918,3,1.0,2,1.5736335515975952,419,0.0,3 +65919,3,0.0,2,1.1746373176574707,420,0.0,3 +65920,3,0.0,2,1.4136356115341187,421,1.0,3 +65921,3,0.0,2,1.1346372365951538,422,0.0,3 +65922,3,0.0,2,1.371636152267456,423,1.0,3 +65923,3,0.0,2,1.1946372985839844,424,0.0,3 +65924,3,0.0,2,1.4496351480484009,425,0.0,3 +65925,3,0.0,2,2.177635431289673,426,1.0,3 +65926,3,0.0,2,1.4436352252960205,427,1.0,3 +65927,3,0.0,2,1.3596363067626953,428,0.0,3 +65928,3,0.0,2,2.6256563663482666,429,1.0,3 +65929,3,0.0,2,1.650632619857788,430,1.0,3 +65930,3,0.0,2,1.1296372413635254,431,0.0,3 +65931,3,0.0,2,1.838630199432373,432,0.0,3 +65932,3,1.0,2,1.3186367750167847,433,1.0,3 +65933,3,1.0,2,1.2606375217437744,434,1.0,3 +65934,3,1.0,2,1.6356327533721924,435,1.0,3 +65935,3,1.0,2,1.81363046169281,436,1.0,3 +65936,3,1.0,2,1.2946370840072632,437,0.0,3 +65937,3,0.0,2,1.420635461807251,438,1.0,3 +65938,3,0.0,2,1.5096343755722046,439,0.0,3 +65939,3,0.0,2,1.5476338863372803,440,0.0,3 +65940,3,1.0,2,1.6846320629119873,441,1.0,3 +65941,3,1.0,2,1.3186367750167847,442,0.0,3 +65942,3,1.0,2,2.6106557846069336,443,1.0,3 +65943,3,1.0,2,1.4266353845596313,444,0.0,3 +65944,3,1.0,2,2.223637580871582,445,1.0,3 +65945,3,1.0,2,1.556633710861206,446,1.0,3 +65946,3,1.0,2,1.4786347150802612,447,0.0,3 +65947,3,1.0,2,1.226637363433838,448,1.0,3 +65948,3,1.0,2,1.3676362037658691,449,1.0,3 +65949,3,1.0,2,1.5196342468261719,450,1.0,3 +65950,3,1.0,2,1.2486374378204346,451,1.0,3 +65951,3,1.0,2,1.7296315431594849,452,0.0,3 +65952,3,1.0,2,1.1686372756958008,453,0.0,3 +65953,3,0.0,2,1.4616349935531616,454,0.0,3 +65954,3,1.0,2,2.1366333961486816,455,1.0,3 +65955,3,1.0,2,1.2626374959945679,456,1.0,3 +65956,3,1.0,2,1.5546338558197021,457,1.0,3 +65957,3,1.0,2,1.608633041381836,458,0.0,3 +65958,3,0.0,2,1.372636079788208,459,0.0,3 +65959,3,1.0,2,2.726661205291748,460,0.0,3 +65960,3,0.0,2,1.4266353845596313,461,1.0,3 +65961,3,0.0,2,1.2916371822357178,462,1.0,3 +65962,3,0.0,2,1.1546372175216675,463,0.0,3 +65963,3,0.0,2,1.3636362552642822,464,1.0,3 +65964,3,0.0,2,1.213637351989746,465,0.0,3 +65965,3,1.0,2,1.566633701324463,466,0.0,3 +65966,3,1.0,2,1.9616285562515259,467,0.0,3 +65967,3,0.0,2,1.7536312341690063,468,0.0,3 +65968,3,1.0,2,2.1006317138671875,469,0.0,3 +65969,3,0.0,2,1.8496299982070923,470,0.0,3 +65970,3,0.0,2,2.1326332092285156,471,1.0,3 +65971,3,0.0,2,1.7866308689117432,472,1.0,3 +65972,3,0.0,2,1.420635461807251,473,1.0,3 +65973,3,0.0,2,1.4656349420547485,474,0.0,3 +65974,3,1.0,2,1.6536325216293335,475,1.0,3 +65975,3,1.0,2,1.1746373176574707,476,1.0,3 +65976,3,0.0,2,1.2356374263763428,477,1.0,3 +65977,3,0.0,2,1.8786296844482422,478,1.0,3 +65978,3,0.0,2,1.249637484550476,479,1.0,3 +65979,3,0.0,2,1.3596363067626953,480,0.0,3 +65980,3,1.0,2,1.1906373500823975,481,1.0,3 +65981,3,1.0,2,1.2606375217437744,482,1.0,3 +65982,3,1.0,2,1.2736374139785767,483,0.0,3 +65983,3,1.0,2,1.3526363372802734,484,1.0,3 +65984,3,1.0,2,1.4546350240707397,485,1.0,3 +65985,3,1.0,2,1.368636131286621,486,1.0,3 +65986,3,1.0,2,1.654632568359375,487,1.0,3 +65987,3,1.0,2,1.225637435913086,488,0.0,3 +65988,3,1.0,2,1.5686335563659668,489,1.0,3 +65989,3,1.0,2,1.223637342453003,490,1.0,3 +65990,3,1.0,2,1.702631950378418,491,0.0,3 +65991,3,0.0,2,2.1226329803466797,492,0.0,3 +65992,3,0.0,2,1.3996357917785645,493,0.0,3 +65993,3,0.0,2,1.4956345558166504,494,0.0,3 +65994,3,0.0,2,1.9186291694641113,495,0.0,3 +65995,3,1.0,2,1.6236329078674316,496,1.0,3 +65996,3,1.0,2,1.2126374244689941,497,1.0,3 +65997,3,1.0,2,1.7286314964294434,498,0.0,3 +65998,3,0.0,2,1.471634864807129,499,1.0,3 +65999,3,0.0,2,2.267639636993408,500,1.0,3 +66000,4,0.0,0,1.259629249572754,1,0.0,3 +66001,4,1.0,0,1.8266229629516602,2,0.0,3 +66002,4,0.0,0,2.0376203060150146,3,0.0,3 +66003,4,1.0,0,1.3456292152404785,4,1.0,3 +66004,4,1.0,0,1.6866247653961182,5,1.0,3 +66005,4,1.0,0,1.5886261463165283,6,0.0,3 +66006,4,0.0,0,1.4926272630691528,7,1.0,3 +66007,4,0.0,0,1.5896260738372803,8,0.0,3 +66008,4,0.0,0,1.6336255073547363,9,0.0,3 +66009,4,0.0,0,1.3846286535263062,10,0.0,3 +66010,4,0.0,0,1.9436215162277222,11,1.0,3 +66011,4,0.0,0,1.3096294403076172,12,0.0,3 +66012,4,0.0,0,1.255629301071167,13,0.0,3 +66013,4,1.0,0,1.5076271295547485,14,1.0,3 +66014,4,1.0,0,1.3976285457611084,15,1.0,3 +66015,4,1.0,0,1.4906272888183594,16,1.0,3 +66016,4,1.0,0,1.1646291017532349,17,1.0,3 +66017,4,1.0,0,1.7016246318817139,18,1.0,3 +66018,4,1.0,0,1.2566293478012085,19,0.0,3 +66019,4,0.0,0,2.028620481491089,20,1.0,3 +66020,4,0.0,0,1.5596264600753784,21,0.0,3 +66021,4,1.0,0,1.7146244049072266,22,1.0,3 +66022,4,1.0,0,1.39262855052948,23,1.0,3 +66023,4,1.0,0,1.4206281900405884,24,1.0,3 +66024,4,1.0,0,1.457627773284912,25,1.0,3 +66025,4,1.0,0,1.3186293840408325,26,0.0,3 +66026,4,0.0,0,1.9936208724975586,27,0.0,3 +66027,4,1.0,0,1.4006284475326538,28,1.0,3 +66028,4,1.0,0,1.5266268253326416,29,0.0,3 +66029,4,1.0,0,1.9816210269927979,30,1.0,3 +66030,4,1.0,0,1.6586251258850098,31,1.0,3 +66031,4,1.0,0,1.600625991821289,32,1.0,3 +66032,4,1.0,0,1.509627103805542,33,0.0,3 +66033,4,1.0,0,1.5816261768341064,34,1.0,3 +66034,4,1.0,0,1.2876293659210205,35,1.0,3 +66035,4,1.0,0,1.6416254043579102,36,1.0,3 +66036,4,1.0,0,1.3556290864944458,37,1.0,3 +66037,4,1.0,0,1.5846261978149414,38,0.0,3 +66038,4,1.0,0,1.8356229066848755,39,1.0,3 +66039,4,1.0,0,1.6136257648468018,40,0.0,3 +66040,4,1.0,0,1.3796287775039673,41,1.0,3 +66041,4,1.0,0,1.313629388809204,42,0.0,3 +66042,4,0.0,0,1.830622911453247,43,0.0,3 +66043,4,1.0,0,1.8216230869293213,44,1.0,3 +66044,4,1.0,0,1.7816236019134521,45,1.0,3 +66045,4,1.0,0,1.5406266450881958,46,1.0,3 +66046,4,0.0,0,1.4726275205612183,47,1.0,3 +66047,4,0.0,0,1.2386292219161987,48,0.0,3 +66048,4,1.0,0,1.9386215209960938,49,1.0,3 +66049,4,1.0,0,1.535626769065857,50,1.0,3 +66050,4,1.0,0,1.1786291599273682,51,1.0,3 +66051,4,1.0,0,1.7246243953704834,52,1.0,3 +66052,4,1.0,0,1.5046271085739136,53,1.0,3 +66053,4,1.0,0,2.1846249103546143,54,1.0,3 +66054,4,1.0,0,1.3036293983459473,55,1.0,3 +66055,4,0.0,0,1.323629379272461,56,0.0,3 +66056,4,1.0,0,1.3186293840408325,57,1.0,3 +66057,4,0.0,0,1.3296294212341309,58,0.0,3 +66058,4,1.0,0,1.6766250133514404,59,0.0,3 +66059,4,1.0,0,2.33463191986084,60,1.0,3 +66060,4,1.0,0,1.4536278247833252,61,1.0,3 +66061,4,1.0,0,1.1726291179656982,62,1.0,3 +66062,4,1.0,0,1.5926260948181152,63,0.0,3 +66063,4,0.0,0,1.85562264919281,64,1.0,3 +66064,4,0.0,0,1.484627366065979,65,0.0,3 +66065,4,1.0,0,1.5126270055770874,66,1.0,3 +66066,4,1.0,0,1.414628267288208,67,1.0,3 +66067,4,1.0,0,1.4386279582977295,68,1.0,3 +66068,4,1.0,0,1.5926260948181152,69,1.0,3 +66069,4,1.0,0,2.0016207695007324,70,1.0,3 +66070,4,1.0,0,1.366628885269165,71,1.0,3 +66071,4,1.0,0,1.3606289625167847,72,1.0,3 +66072,4,1.0,0,1.6546251773834229,73,1.0,3 +66073,4,1.0,0,1.2946293354034424,74,1.0,3 +66074,4,1.0,0,1.5426266193389893,75,1.0,3 +66075,4,0.0,0,1.1566290855407715,76,0.0,3 +66076,4,1.0,0,1.2356293201446533,77,1.0,3 +66077,4,1.0,0,1.7966234683990479,78,0.0,3 +66078,4,0.0,0,1.6836248636245728,79,0.0,3 +66079,4,1.0,0,1.8756223917007446,80,0.0,3 +66080,4,0.0,0,1.4086283445358276,81,0.0,3 +66081,4,0.0,0,1.2266292572021484,82,0.0,3 +66082,4,0.0,0,1.4896273612976074,83,0.0,3 +66083,4,0.0,0,1.1696290969848633,84,0.0,3 +66084,4,0.0,0,1.4386279582977295,85,1.0,3 +66085,4,0.0,0,1.3756288290023804,86,0.0,3 +66086,4,0.0,0,2.4566376209259033,87,0.0,3 +66087,4,0.0,0,1.976621150970459,88,0.0,3 +66088,4,1.0,0,2.162623882293701,89,1.0,3 +66089,4,1.0,0,1.9606213569641113,90,1.0,3 +66090,4,1.0,0,2.154623508453369,91,1.0,3 +66091,4,1.0,0,1.157629132270813,92,1.0,3 +66092,4,1.0,0,1.4086283445358276,93,1.0,3 +66093,4,1.0,0,1.4606276750564575,94,1.0,3 +66094,4,0.0,0,1.4046283960342407,95,1.0,3 +66095,4,1.0,0,1.8646225929260254,96,1.0,3 +66096,4,0.0,0,1.9236217737197876,97,0.0,3 +66097,4,1.0,0,1.4976272583007812,98,1.0,3 +66098,4,1.0,0,1.2476292848587036,99,1.0,3 +66099,4,1.0,0,1.3276294469833374,100,1.0,3 +66100,4,1.0,0,1.3376293182373047,101,1.0,3 +66101,4,1.0,0,1.3896286487579346,102,1.0,3 +66102,4,1.0,0,1.316629409790039,103,0.0,3 +66103,4,0.0,0,1.838622808456421,104,1.0,3 +66104,4,0.0,0,1.3016294240951538,105,0.0,3 +66105,4,1.0,0,1.6296255588531494,106,1.0,3 +66106,4,1.0,0,1.3936285972595215,107,1.0,3 +66107,4,1.0,0,1.6366255283355713,108,1.0,3 +66108,4,1.0,0,1.4496278762817383,109,1.0,3 +66109,4,1.0,0,1.3786287307739258,110,1.0,3 +66110,4,1.0,0,1.6516252756118774,111,1.0,3 +66111,4,1.0,0,1.282629370689392,112,1.0,3 +66112,4,1.0,0,1.2306292057037354,113,1.0,3 +66113,4,1.0,0,1.3626289367675781,114,1.0,3 +66114,4,1.0,0,1.4456279277801514,115,1.0,3 +66115,4,1.0,0,1.6176257133483887,116,1.0,3 +66116,4,1.0,0,1.5626263618469238,117,1.0,3 +66117,4,1.0,0,1.3626289367675781,118,1.0,3 +66118,4,1.0,0,1.692624807357788,119,1.0,3 +66119,4,1.0,0,1.6296255588531494,120,1.0,3 +66120,4,1.0,0,1.3216294050216675,121,1.0,3 +66121,4,1.0,0,1.880622386932373,122,1.0,3 +66122,4,1.0,0,1.5676263570785522,123,1.0,3 +66123,4,1.0,0,2.0366203784942627,124,1.0,3 +66124,4,1.0,0,1.4016284942626953,125,1.0,3 +66125,4,0.0,0,1.4956272840499878,126,0.0,3 +66126,4,1.0,0,1.3496291637420654,127,1.0,3 +66127,4,1.0,0,1.922621726989746,128,1.0,3 +66128,4,1.0,0,1.258629322052002,129,1.0,3 +66129,4,1.0,0,1.9376215934753418,130,1.0,3 +66130,4,1.0,0,1.187629222869873,131,1.0,3 +66131,4,1.0,0,1.7066245079040527,132,0.0,3 +66132,4,1.0,0,2.5466418266296387,133,0.0,3 +66133,4,1.0,0,1.457627773284912,134,0.0,3 +66134,4,1.0,0,1.4956272840499878,135,0.0,3 +66135,4,0.0,0,2.091620445251465,136,0.0,3 +66136,4,1.0,0,2.0346202850341797,137,1.0,3 +66137,4,1.0,0,1.527626872062683,138,1.0,3 +66138,4,1.0,0,1.3366292715072632,139,1.0,3 +66139,4,1.0,0,1.6586251258850098,140,1.0,3 +66140,4,1.0,0,1.4756275415420532,141,1.0,3 +66141,4,1.0,0,1.3036293983459473,142,1.0,3 +66142,4,1.0,0,1.2626292705535889,143,1.0,3 +66143,4,1.0,0,1.7056245803833008,144,1.0,3 +66144,4,1.0,0,1.882622241973877,145,1.0,3 +66145,4,1.0,0,1.3806287050247192,146,1.0,3 +66146,4,1.0,0,1.7996233701705933,147,1.0,3 +66147,4,1.0,0,1.3366292715072632,148,1.0,3 +66148,4,1.0,0,1.391628623008728,149,1.0,3 +66149,4,1.0,0,1.3986284732818604,150,1.0,3 +66150,4,1.0,0,1.6106257438659668,151,0.0,3 +66151,4,0.0,0,1.2806293964385986,152,0.0,3 +66152,4,1.0,0,1.3896286487579346,153,1.0,3 +66153,4,1.0,0,1.3426291942596436,154,0.0,3 +66154,4,1.0,0,1.2316292524337769,155,0.0,3 +66155,4,0.0,0,1.6566252708435059,156,0.0,3 +66156,4,0.0,0,2.078619956970215,157,0.0,3 +66157,4,0.0,0,1.5996259450912476,158,0.0,3 +66158,4,1.0,0,2.060620069503784,159,1.0,3 +66159,4,1.0,0,1.6596251726150513,160,1.0,3 +66160,4,1.0,0,1.7056245803833008,161,0.0,3 +66161,4,1.0,0,1.4916273355484009,162,1.0,3 +66162,4,1.0,0,1.3016294240951538,163,1.0,3 +66163,4,1.0,0,1.653625249862671,164,0.0,3 +66164,4,1.0,0,2.2276268005371094,165,1.0,3 +66165,4,1.0,0,1.4046283960342407,166,1.0,3 +66166,4,0.0,0,1.8736224174499512,167,0.0,3 +66167,4,1.0,0,1.6256256103515625,168,1.0,3 +66168,4,1.0,0,1.690624713897705,169,1.0,3 +66169,4,1.0,0,1.5676263570785522,170,1.0,3 +66170,4,1.0,0,1.3776288032531738,171,1.0,3 +66171,4,1.0,0,1.4226281642913818,172,0.0,3 +66172,4,0.0,0,1.8986220359802246,173,0.0,3 +66173,4,0.0,0,1.4816274642944336,174,0.0,3 +66174,4,1.0,0,1.3726288080215454,175,0.0,3 +66175,4,0.0,0,1.6296255588531494,176,0.0,3 +66176,4,0.0,0,2.0426201820373535,177,1.0,3 +66177,4,0.0,0,1.2316292524337769,178,0.0,3 +66178,4,1.0,0,1.25162935256958,179,1.0,3 +66179,4,1.0,0,1.3866286277770996,180,1.0,3 +66180,4,1.0,0,1.5036271810531616,181,1.0,3 +66181,4,1.0,0,1.4086283445358276,182,1.0,3 +66182,4,1.0,0,1.2426292896270752,183,1.0,3 +66183,4,1.0,0,1.465627670288086,184,1.0,3 +66184,4,1.0,0,1.4256281852722168,185,0.0,3 +66185,4,0.0,0,1.2376292943954468,186,0.0,3 +66186,4,1.0,0,2.2616286277770996,187,1.0,3 +66187,4,1.0,0,1.488627314567566,188,1.0,3 +66188,4,1.0,0,1.3006293773651123,189,1.0,3 +66189,4,0.0,0,1.7606239318847656,190,0.0,3 +66190,4,1.0,0,1.4546277523040771,191,1.0,3 +66191,4,1.0,0,1.5376267433166504,192,1.0,3 +66192,4,1.0,0,1.3326293230056763,193,1.0,3 +66193,4,1.0,0,1.3856287002563477,194,0.0,3 +66194,4,0.0,0,1.509627103805542,195,1.0,3 +66195,4,0.0,0,1.3306293487548828,196,0.0,3 +66196,4,0.0,0,1.976621150970459,197,0.0,3 +66197,4,1.0,0,1.8196231126785278,198,0.0,3 +66198,4,1.0,0,1.513627052307129,199,1.0,3 +66199,4,1.0,0,1.5206269025802612,200,1.0,3 +66200,4,1.0,0,1.5036271810531616,201,0.0,3 +66201,4,1.0,0,1.3036293983459473,202,1.0,3 +66202,4,1.0,0,1.5036271810531616,203,0.0,3 +66203,4,0.0,0,1.9986207485198975,204,0.0,3 +66204,4,0.0,0,1.3276294469833374,205,1.0,3 +66205,4,0.0,0,1.484627366065979,206,0.0,3 +66206,4,0.0,0,1.8936221599578857,207,0.0,3 +66207,4,1.0,0,1.5236269235610962,208,1.0,3 +66208,4,1.0,0,1.439628005027771,209,1.0,3 +66209,4,1.0,0,1.3766287565231323,210,1.0,3 +66210,4,1.0,0,1.323629379272461,211,1.0,3 +66211,4,1.0,0,1.3866286277770996,212,1.0,3 +66212,4,1.0,0,1.7246243953704834,213,1.0,3 +66213,4,1.0,0,1.4606276750564575,214,1.0,3 +66214,4,1.0,0,1.5456266403198242,215,1.0,3 +66215,4,1.0,0,1.246629238128662,216,1.0,3 +66216,4,1.0,0,1.3896286487579346,217,1.0,3 +66217,4,1.0,0,1.2656292915344238,218,1.0,3 +66218,4,1.0,0,1.5376267433166504,219,1.0,3 +66219,4,1.0,0,1.6306254863739014,220,1.0,3 +66220,4,1.0,0,1.4916273355484009,221,1.0,3 +66221,4,1.0,0,1.6776249408721924,222,1.0,3 +66222,4,1.0,0,1.9416215419769287,223,1.0,3 +66223,4,1.0,0,1.69362473487854,224,1.0,3 +66224,4,1.0,0,1.947621464729309,225,1.0,3 +66225,4,0.0,0,1.4086283445358276,226,0.0,3 +66226,4,1.0,0,2.3166310787200928,227,1.0,3 +66227,4,1.0,0,1.2706292867660522,228,0.0,3 +66228,4,1.0,0,1.228629231452942,229,1.0,3 +66229,4,1.0,0,1.557626485824585,230,1.0,3 +66230,4,1.0,0,1.322629451751709,231,0.0,3 +66231,4,0.0,0,1.696624755859375,232,0.0,3 +66232,4,1.0,0,2.5756430625915527,233,1.0,3 +66233,4,1.0,0,1.6696250438690186,234,0.0,3 +66234,4,1.0,0,1.6616251468658447,235,1.0,3 +66235,4,1.0,0,1.3506290912628174,236,1.0,3 +66236,4,1.0,0,1.2726293802261353,237,0.0,3 +66237,4,0.0,0,1.652625322341919,238,0.0,3 +66238,4,1.0,0,1.6336255073547363,239,1.0,3 +66239,4,1.0,0,1.506627082824707,240,0.0,3 +66240,4,1.0,0,1.5656263828277588,241,1.0,3 +66241,4,1.0,0,1.4156283140182495,242,1.0,3 +66242,4,1.0,0,1.4516278505325317,243,1.0,3 +66243,4,1.0,0,1.4906272888183594,244,1.0,3 +66244,4,1.0,0,1.667625069618225,245,1.0,3 +66245,4,1.0,0,1.1776291131973267,246,1.0,3 +66246,4,1.0,0,1.5646263360977173,247,1.0,3 +66247,4,1.0,0,1.5556265115737915,248,0.0,3 +66248,4,0.0,0,1.3306293487548828,249,0.0,3 +66249,4,0.0,0,1.4016284942626953,250,1.0,3 +66250,4,0.0,0,1.348629117012024,251,0.0,3 +66251,4,1.0,0,2.331631660461426,252,0.0,3 +66252,4,1.0,0,1.877622365951538,253,1.0,3 +66253,4,1.0,0,1.7206244468688965,254,1.0,3 +66254,4,1.0,0,1.3646289110183716,255,1.0,3 +66255,4,1.0,0,1.2646293640136719,256,1.0,3 +66256,4,1.0,0,1.3766287565231323,257,1.0,3 +66257,4,1.0,0,1.3076293468475342,258,1.0,3 +66258,4,1.0,0,1.484627366065979,259,1.0,3 +66259,4,1.0,0,1.8696224689483643,260,1.0,3 +66260,4,1.0,0,1.7026245594024658,261,1.0,3 +66261,4,1.0,0,1.3906285762786865,262,1.0,3 +66262,4,1.0,0,1.719624400138855,263,0.0,3 +66263,4,1.0,0,1.5626263618469238,264,1.0,3 +66264,4,1.0,0,1.3336293697357178,265,1.0,3 +66265,4,1.0,0,1.9106218814849854,266,0.0,3 +66266,4,0.0,0,1.8716224431991577,267,0.0,3 +66267,4,0.0,0,1.4736275672912598,268,1.0,3 +66268,4,0.0,0,1.2196292877197266,269,1.0,3 +66269,4,0.0,0,1.602625846862793,270,0.0,3 +66270,4,0.0,0,1.575626254081726,271,0.0,3 +66271,4,0.0,0,1.8576226234436035,272,0.0,3 +66272,4,1.0,0,2.2826294898986816,273,1.0,3 +66273,4,1.0,0,1.6246256828308105,274,0.0,3 +66274,4,0.0,0,2.172624349594116,275,1.0,3 +66275,4,0.0,0,1.440627932548523,276,0.0,3 +66276,4,0.0,0,1.2666293382644653,277,0.0,3 +66277,4,0.0,0,1.6376254558563232,278,0.0,3 +66278,4,1.0,0,1.2656292915344238,279,0.0,3 +66279,4,0.0,0,1.671625018119812,280,0.0,3 +66280,4,1.0,0,1.6556252241134644,281,0.0,3 +66281,4,1.0,0,1.3986284732818604,282,1.0,3 +66282,4,1.0,0,1.2566293478012085,283,1.0,3 +66283,4,1.0,0,1.3856287002563477,284,1.0,3 +66284,4,1.0,0,1.6136257648468018,285,1.0,3 +66285,4,1.0,0,1.789623498916626,286,1.0,3 +66286,4,1.0,0,1.3006293773651123,287,0.0,3 +66287,4,1.0,0,1.8946220874786377,288,1.0,3 +66288,4,1.0,0,1.2356293201446533,289,1.0,3 +66289,4,1.0,0,1.5826261043548584,290,1.0,3 +66290,4,1.0,0,1.4276281595230103,291,1.0,3 +66291,4,1.0,0,1.4866273403167725,292,1.0,3 +66292,4,1.0,0,1.3996285200119019,293,0.0,3 +66293,4,1.0,0,2.135622501373291,294,0.0,3 +66294,4,1.0,0,1.3096294403076172,295,1.0,3 +66295,4,1.0,0,1.7876235246658325,296,1.0,3 +66296,4,1.0,0,1.319629430770874,297,1.0,3 +66297,4,1.0,0,1.5866260528564453,298,1.0,3 +66298,4,1.0,0,1.2356293201446533,299,1.0,3 +66299,4,1.0,0,1.3786287307739258,300,1.0,3 +66300,4,1.0,0,1.6646251678466797,301,0.0,3 +66301,4,0.0,0,1.4866273403167725,302,0.0,3 +66302,4,1.0,0,1.6606252193450928,303,0.0,3 +66303,4,0.0,0,1.4476279020309448,304,0.0,3 +66304,4,0.0,0,1.9376215934753418,305,0.0,3 +66305,4,1.0,0,1.6646251678466797,306,1.0,3 +66306,4,1.0,0,1.602625846862793,307,1.0,3 +66307,4,1.0,0,1.3996285200119019,308,1.0,3 +66308,4,1.0,0,1.2746293544769287,309,1.0,3 +66309,4,1.0,0,1.4516278505325317,310,1.0,3 +66310,4,1.0,0,1.465627670288086,311,1.0,3 +66311,4,1.0,0,1.2406293153762817,312,1.0,3 +66312,4,1.0,0,1.6916247606277466,313,1.0,3 +66313,4,1.0,0,1.3726288080215454,314,1.0,3 +66314,4,0.0,0,1.3026293516159058,315,1.0,3 +66315,4,0.0,0,2.2626285552978516,316,0.0,3 +66316,4,0.0,0,1.3416292667388916,317,0.0,3 +66317,4,1.0,0,1.4606276750564575,318,0.0,3 +66318,4,1.0,0,1.7076245546340942,319,1.0,3 +66319,4,1.0,0,1.922621726989746,320,1.0,3 +66320,4,1.0,0,1.3116294145584106,321,1.0,3 +66321,4,1.0,0,1.7546238899230957,322,1.0,3 +66322,4,1.0,0,1.292629361152649,323,1.0,3 +66323,4,1.0,0,1.7916234731674194,324,0.0,3 +66324,4,0.0,0,1.9846210479736328,325,0.0,3 +66325,4,1.0,0,1.2746293544769287,326,1.0,3 +66326,4,1.0,0,1.3606289625167847,327,1.0,3 +66327,4,1.0,0,2.079619884490967,328,1.0,3 +66328,4,1.0,0,1.225629210472107,329,0.0,3 +66329,4,1.0,0,1.6816248893737793,330,1.0,3 +66330,4,1.0,0,1.4376280307769775,331,1.0,3 +66331,4,1.0,0,1.4736275672912598,332,1.0,3 +66332,4,1.0,0,1.5606263875961304,333,1.0,3 +66333,4,1.0,0,1.5556265115737915,334,1.0,3 +66334,4,1.0,0,1.5456266403198242,335,1.0,3 +66335,4,0.0,0,1.608625888824463,336,0.0,3 +66336,4,1.0,0,1.2486293315887451,337,1.0,3 +66337,4,1.0,0,1.4386279582977295,338,1.0,3 +66338,4,1.0,0,1.2706292867660522,339,1.0,3 +66339,4,1.0,0,1.249629259109497,340,1.0,3 +66340,4,1.0,0,1.2996294498443604,341,1.0,3 +66341,4,1.0,0,1.3246294260025024,342,1.0,3 +66342,4,1.0,0,2.2616286277770996,343,1.0,3 +66343,4,1.0,0,1.9916208982467651,344,1.0,3 +66344,4,1.0,0,1.2636293172836304,345,1.0,3 +66345,4,1.0,0,1.5616264343261719,346,1.0,3 +66346,4,1.0,0,1.5916260480880737,347,1.0,3 +66347,4,0.0,0,1.4036284685134888,348,0.0,3 +66348,4,1.0,0,1.365628957748413,349,1.0,3 +66349,4,0.0,0,1.3836287260055542,350,0.0,3 +66350,4,1.0,0,1.7546238899230957,351,1.0,3 +66351,4,1.0,0,2.026620388031006,352,0.0,3 +66352,4,0.0,0,2.2276268005371094,353,0.0,3 +66353,4,0.0,0,1.5916260480880737,354,1.0,3 +66354,4,0.0,0,1.2716293334960938,355,0.0,3 +66355,4,1.0,0,1.483627438545227,356,1.0,3 +66356,4,1.0,0,1.2656292915344238,357,1.0,3 +66357,4,1.0,0,1.882622241973877,358,1.0,3 +66358,4,1.0,0,1.4156283140182495,359,1.0,3 +66359,4,1.0,0,1.4466278553009033,360,1.0,3 +66360,4,1.0,0,1.3176294565200806,361,1.0,3 +66361,4,1.0,0,1.6246256828308105,362,1.0,3 +66362,4,1.0,0,1.3876286745071411,363,0.0,3 +66363,4,0.0,0,1.3896286487579346,364,0.0,3 +66364,4,1.0,0,1.510627031326294,365,0.0,3 +66365,4,1.0,0,1.4856274127960205,366,1.0,3 +66366,4,1.0,0,1.388628602027893,367,1.0,3 +66367,4,1.0,0,1.3416292667388916,368,0.0,3 +66368,4,1.0,0,1.2996294498443604,369,1.0,3 +66369,4,0.0,0,1.258629322052002,370,0.0,3 +66370,4,1.0,0,2.018620491027832,371,1.0,3 +66371,4,1.0,0,1.513627052307129,372,1.0,3 +66372,4,1.0,0,1.4256281852722168,373,1.0,3 +66373,4,1.0,0,1.458627700805664,374,1.0,3 +66374,4,1.0,0,1.4606276750564575,375,1.0,3 +66375,4,1.0,0,1.4646276235580444,376,1.0,3 +66376,4,1.0,0,1.436627984046936,377,0.0,3 +66377,4,1.0,0,1.2706292867660522,378,1.0,3 +66378,4,1.0,0,1.7326242923736572,379,1.0,3 +66379,4,1.0,0,1.1816291809082031,380,1.0,3 +66380,4,1.0,0,1.8296229839324951,381,1.0,3 +66381,4,1.0,0,1.5736262798309326,382,1.0,3 +66382,4,1.0,0,1.3646289110183716,383,1.0,3 +66383,4,1.0,0,1.3746287822723389,384,1.0,3 +66384,4,1.0,0,1.413628339767456,385,1.0,3 +66385,4,1.0,0,1.1936291456222534,386,1.0,3 +66386,4,1.0,0,1.807623267173767,387,1.0,3 +66387,4,0.0,0,1.6096258163452148,388,0.0,3 +66388,4,1.0,0,1.7126245498657227,389,1.0,3 +66389,4,1.0,0,1.3636289834976196,390,1.0,3 +66390,4,1.0,0,1.9626212120056152,391,1.0,3 +66391,4,1.0,0,1.4426279067993164,392,1.0,3 +66392,4,1.0,0,1.2456293106079102,393,1.0,3 +66393,4,1.0,0,1.6216256618499756,394,1.0,3 +66394,4,1.0,0,1.6036258935928345,395,1.0,3 +66395,4,1.0,0,1.2236292362213135,396,1.0,3 +66396,4,1.0,0,1.3746287822723389,397,1.0,3 +66397,4,1.0,0,1.7476240396499634,398,1.0,3 +66398,4,1.0,0,2.058619976043701,399,1.0,3 +66399,4,1.0,0,1.6566252708435059,400,1.0,3 +66400,4,1.0,0,1.653625249862671,401,1.0,3 +66401,4,0.0,0,1.6206257343292236,402,0.0,3 +66402,4,1.0,0,1.6296255588531494,403,0.0,3 +66403,4,0.0,0,1.4076284170150757,404,0.0,3 +66404,4,0.0,0,1.3016294240951538,405,0.0,3 +66405,4,1.0,0,1.696624755859375,406,1.0,3 +66406,4,1.0,0,1.6726250648498535,407,1.0,3 +66407,4,1.0,0,1.5836261510849,408,1.0,3 +66408,4,1.0,0,1.5966260433197021,409,1.0,3 +66409,4,1.0,0,1.5006271600723267,410,1.0,3 +66410,4,1.0,0,1.4706275463104248,411,1.0,3 +66411,4,1.0,0,1.6446254253387451,412,0.0,3 +66412,4,0.0,0,1.1656291484832764,413,0.0,3 +66413,4,0.0,0,2.174624443054199,414,0.0,3 +66414,4,0.0,0,1.5246268510818481,415,0.0,3 +66415,4,0.0,0,1.4196282625198364,416,0.0,3 +66416,4,1.0,0,1.7586238384246826,417,1.0,3 +66417,4,1.0,0,1.487627387046814,418,1.0,3 +66418,4,1.0,0,2.103621006011963,419,1.0,3 +66419,4,1.0,0,1.439628005027771,420,1.0,3 +66420,4,1.0,0,1.3216294050216675,421,1.0,3 +66421,4,1.0,0,1.4416279792785645,422,1.0,3 +66422,4,1.0,0,1.4266281127929688,423,1.0,3 +66423,4,1.0,0,1.6336255073547363,424,1.0,3 +66424,4,1.0,0,1.3836287260055542,425,1.0,3 +66425,4,1.0,0,1.3246294260025024,426,1.0,3 +66426,4,1.0,0,1.4066283702850342,427,1.0,3 +66427,4,1.0,0,1.4236282110214233,428,1.0,3 +66428,4,1.0,0,1.2356293201446533,429,1.0,3 +66429,4,1.0,0,1.6146256923675537,430,1.0,3 +66430,4,1.0,0,1.3616290092468262,431,0.0,3 +66431,4,1.0,0,1.7756236791610718,432,1.0,3 +66432,4,1.0,0,1.605625867843628,433,0.0,3 +66433,4,1.0,0,1.4826273918151855,434,1.0,3 +66434,4,0.0,0,1.2426292896270752,435,0.0,3 +66435,4,1.0,0,1.1976292133331299,436,1.0,3 +66436,4,1.0,0,1.5666263103485107,437,1.0,3 +66437,4,0.0,0,1.3276294469833374,438,0.0,3 +66438,4,1.0,0,1.39262855052948,439,1.0,3 +66439,4,1.0,0,1.6146256923675537,440,1.0,3 +66440,4,1.0,0,1.4776275157928467,441,1.0,3 +66441,4,1.0,0,1.3046294450759888,442,1.0,3 +66442,4,1.0,0,1.3636289834976196,443,1.0,3 +66443,4,1.0,0,1.5206269025802612,444,1.0,3 +66444,4,1.0,0,1.289629340171814,445,1.0,3 +66445,4,1.0,0,1.7026245594024658,446,1.0,3 +66446,4,1.0,0,1.4246281385421753,447,1.0,3 +66447,4,1.0,0,1.5246268510818481,448,1.0,3 +66448,4,1.0,0,1.344629168510437,449,1.0,3 +66449,4,1.0,0,1.6136257648468018,450,1.0,3 +66450,4,1.0,0,1.5186269283294678,451,1.0,3 +66451,4,1.0,0,1.7916234731674194,452,1.0,3 +66452,4,1.0,0,1.719624400138855,453,1.0,3 +66453,4,1.0,0,1.439628005027771,454,1.0,3 +66454,4,1.0,0,1.5116270780563354,455,1.0,3 +66455,4,1.0,0,1.6266255378723145,456,1.0,3 +66456,4,1.0,0,1.3596290349960327,457,1.0,3 +66457,4,1.0,0,1.2946293354034424,458,1.0,3 +66458,4,1.0,0,1.3996285200119019,459,1.0,3 +66459,4,1.0,0,1.2996294498443604,460,1.0,3 +66460,4,1.0,0,1.4866273403167725,461,0.0,3 +66461,4,1.0,0,1.7246243953704834,462,1.0,3 +66462,4,1.0,0,1.6346254348754883,463,1.0,3 +66463,4,1.0,0,1.3216294050216675,464,1.0,3 +66464,4,1.0,0,1.3996285200119019,465,1.0,3 +66465,4,0.0,0,1.347629189491272,466,0.0,3 +66466,4,1.0,0,1.4996272325515747,467,1.0,3 +66467,4,1.0,0,1.4636276960372925,468,1.0,3 +66468,4,1.0,0,1.4536278247833252,469,1.0,3 +66469,4,1.0,0,1.4716275930404663,470,1.0,3 +66470,4,1.0,0,1.6346254348754883,471,1.0,3 +66471,4,1.0,0,1.815623164176941,472,1.0,3 +66472,4,1.0,0,1.5636264085769653,473,1.0,3 +66473,4,1.0,0,1.466627597808838,474,1.0,3 +66474,4,1.0,0,1.2696293592453003,475,0.0,3 +66475,4,0.0,0,1.7836235761642456,476,0.0,3 +66476,4,1.0,0,2.131622314453125,477,0.0,3 +66477,4,1.0,0,1.8166232109069824,478,0.0,3 +66478,4,1.0,0,1.9856209754943848,479,1.0,3 +66479,4,1.0,0,1.4696276187896729,480,1.0,3 +66480,4,1.0,0,1.3516291379928589,481,1.0,3 +66481,4,1.0,0,1.5086270570755005,482,1.0,3 +66482,4,1.0,0,1.5626263618469238,483,1.0,3 +66483,4,1.0,0,1.3526290655136108,484,1.0,3 +66484,4,1.0,0,1.3246294260025024,485,1.0,3 +66485,4,1.0,0,1.6576251983642578,486,0.0,3 +66486,4,1.0,0,1.5006271600723267,487,1.0,3 +66487,4,1.0,0,1.7326242923736572,488,1.0,3 +66488,4,1.0,0,1.414628267288208,489,1.0,3 +66489,4,1.0,0,1.9406216144561768,490,0.0,3 +66490,4,0.0,0,1.9096219539642334,491,0.0,3 +66491,4,1.0,0,1.815623164176941,492,1.0,3 +66492,4,1.0,0,1.396628499031067,493,1.0,3 +66493,4,1.0,0,1.8746223449707031,494,1.0,3 +66494,4,1.0,0,1.258629322052002,495,1.0,3 +66495,4,1.0,0,1.5416266918182373,496,1.0,3 +66496,4,1.0,0,1.344629168510437,497,1.0,3 +66497,4,0.0,0,1.218629240989685,498,0.0,3 +66498,4,1.0,0,1.480627417564392,499,1.0,3 +66499,4,1.0,0,1.4036284685134888,500,1.0,3 +66500,4,0.0,1,1.2966294288635254,1,1.0,3 +66501,4,1.0,1,1.7166244983673096,2,1.0,3 +66502,4,0.0,1,1.255629301071167,3,1.0,3 +66503,4,0.0,1,1.2906293869018555,4,1.0,3 +66504,4,1.0,1,2.142622947692871,5,1.0,3 +66505,4,0.0,1,1.6746249198913574,6,0.0,3 +66506,4,1.0,1,1.5386266708374023,7,1.0,3 +66507,4,1.0,1,1.487627387046814,8,0.0,3 +66508,4,0.0,1,1.313629388809204,9,0.0,3 +66509,4,0.0,1,1.785623550415039,10,0.0,3 +66510,4,1.0,1,1.3676289319992065,11,1.0,3 +66511,4,1.0,1,1.4946272373199463,12,1.0,3 +66512,4,1.0,1,1.2876293659210205,13,1.0,3 +66513,4,1.0,1,1.388628602027893,14,1.0,3 +66514,4,1.0,1,1.8456227779388428,15,0.0,3 +66515,4,1.0,1,1.6546251773834229,16,1.0,3 +66516,4,1.0,1,1.4236282110214233,17,0.0,3 +66517,4,0.0,1,1.7596238851547241,18,0.0,3 +66518,4,0.0,1,1.767623782157898,19,0.0,3 +66519,4,1.0,1,1.5256268978118896,20,1.0,3 +66520,4,1.0,1,1.410628318786621,21,1.0,3 +66521,4,1.0,1,1.4646276235580444,22,1.0,3 +66522,4,1.0,1,1.5366266965866089,23,0.0,3 +66523,4,1.0,1,1.667625069618225,24,1.0,3 +66524,4,1.0,1,1.25162935256958,25,0.0,3 +66525,4,1.0,1,1.8136231899261475,26,1.0,3 +66526,4,1.0,1,1.763623833656311,27,1.0,3 +66527,4,1.0,1,1.2716293334960938,28,1.0,3 +66528,4,1.0,1,1.5466265678405762,29,0.0,3 +66529,4,1.0,1,1.9586212635040283,30,1.0,3 +66530,4,1.0,1,1.7686238288879395,31,1.0,3 +66531,4,1.0,1,1.2276291847229004,32,1.0,3 +66532,4,1.0,1,1.6216256618499756,33,1.0,3 +66533,4,1.0,1,1.7586238384246826,34,1.0,3 +66534,4,1.0,1,1.2656292915344238,35,0.0,3 +66535,4,0.0,1,1.4376280307769775,36,0.0,3 +66536,4,1.0,1,1.4196282625198364,37,0.0,3 +66537,4,1.0,1,1.7506239414215088,38,1.0,3 +66538,4,1.0,1,1.4756275415420532,39,1.0,3 +66539,4,1.0,1,1.3606289625167847,40,1.0,3 +66540,4,1.0,1,1.395628571510315,41,1.0,3 +66541,4,1.0,1,1.2476292848587036,42,1.0,3 +66542,4,1.0,1,1.3676289319992065,43,1.0,3 +66543,4,1.0,1,1.7096245288848877,44,1.0,3 +66544,4,1.0,1,1.4206281900405884,45,1.0,3 +66545,4,0.0,1,1.4756275415420532,46,0.0,3 +66546,4,1.0,1,1.4636276960372925,47,1.0,3 +66547,4,1.0,1,1.4086283445358276,48,0.0,3 +66548,4,0.0,1,1.3566290140151978,49,1.0,3 +66549,4,0.0,1,1.575626254081726,50,1.0,3 +66550,4,0.0,1,1.4716275930404663,51,1.0,3 +66551,4,0.0,1,1.1936291456222534,52,0.0,3 +66552,4,1.0,1,1.7346241474151611,53,1.0,3 +66553,4,1.0,1,1.3996285200119019,54,0.0,3 +66554,4,0.0,1,1.5346267223358154,55,0.0,3 +66555,4,0.0,1,1.7116245031356812,56,1.0,3 +66556,4,0.0,1,1.4566277265548706,57,0.0,3 +66557,4,1.0,1,1.8676224946975708,58,1.0,3 +66558,4,1.0,1,1.4756275415420532,59,1.0,3 +66559,4,1.0,1,1.6136257648468018,60,1.0,3 +66560,4,1.0,1,2.3236312866210938,61,1.0,3 +66561,4,1.0,1,1.6616251468658447,62,1.0,3 +66562,4,1.0,1,1.6566252708435059,63,1.0,3 +66563,4,1.0,1,1.3496291637420654,64,1.0,3 +66564,4,1.0,1,1.466627597808838,65,1.0,3 +66565,4,1.0,1,1.2386292219161987,66,1.0,3 +66566,4,1.0,1,1.417628288269043,67,1.0,3 +66567,4,1.0,1,1.5456266403198242,68,0.0,3 +66568,4,0.0,1,1.2796293497085571,69,0.0,3 +66569,4,0.0,1,1.417628288269043,70,0.0,3 +66570,4,1.0,1,1.604625940322876,71,0.0,3 +66571,4,1.0,1,1.8246231079101562,72,1.0,3 +66572,4,1.0,1,1.4026284217834473,73,0.0,3 +66573,4,0.0,1,1.3786287307739258,74,0.0,3 +66574,4,0.0,1,1.34062922000885,75,0.0,3 +66575,4,0.0,1,2.1846249103546143,76,0.0,3 +66576,4,1.0,1,1.6586251258850098,77,0.0,3 +66577,4,0.0,1,1.6196256875991821,78,0.0,3 +66578,4,1.0,1,1.6346254348754883,79,0.0,3 +66579,4,0.0,1,1.4216282367706299,80,1.0,3 +66580,4,0.0,1,1.2736293077468872,81,0.0,3 +66581,4,0.0,1,1.222629189491272,82,1.0,3 +66582,4,0.0,1,1.2936294078826904,83,0.0,3 +66583,4,0.0,1,1.6266255378723145,84,0.0,3 +66584,4,0.0,1,1.1986291408538818,85,1.0,3 +66585,4,0.0,1,1.4126282930374146,86,0.0,3 +66586,4,0.0,1,2.2976303100585938,87,0.0,3 +66587,4,0.0,1,1.2726293802261353,88,0.0,3 +66588,4,0.0,1,1.792623519897461,89,1.0,3 +66589,4,0.0,1,1.3146294355392456,90,1.0,3 +66590,4,0.0,1,1.648625373840332,91,1.0,3 +66591,4,0.0,1,1.7206244468688965,92,0.0,3 +66592,4,1.0,1,1.5496265888214111,93,1.0,3 +66593,4,1.0,1,1.289629340171814,94,1.0,3 +66594,4,1.0,1,1.396628499031067,95,0.0,3 +66595,4,0.0,1,1.553626537322998,96,0.0,3 +66596,4,0.0,1,1.6116257905960083,97,0.0,3 +66597,4,1.0,1,1.653625249862671,98,0.0,3 +66598,4,0.0,1,2.2036256790161133,99,0.0,3 +66599,4,0.0,1,2.2216267585754395,100,1.0,3 +66600,4,0.0,1,1.2996294498443604,101,0.0,3 +66601,4,0.0,1,1.6436253786087036,102,0.0,3 +66602,4,0.0,1,1.642625331878662,103,0.0,3 +66603,4,1.0,1,1.4306280612945557,104,1.0,3 +66604,4,1.0,1,1.6096258163452148,105,1.0,3 +66605,4,1.0,1,1.2746293544769287,106,0.0,3 +66606,4,0.0,1,1.2996294498443604,107,1.0,3 +66607,4,0.0,1,1.4116283655166626,108,1.0,3 +66608,4,0.0,1,1.5466265678405762,109,1.0,3 +66609,4,0.0,1,1.4776275157928467,110,1.0,3 +66610,4,0.0,1,1.6996246576309204,111,1.0,3 +66611,4,0.0,1,1.286629319190979,112,0.0,3 +66612,4,0.0,1,1.5166269540786743,113,0.0,3 +66613,4,0.0,1,1.9676212072372437,114,1.0,3 +66614,4,0.0,1,1.2536293268203735,115,0.0,3 +66615,4,1.0,1,1.8756223917007446,116,1.0,3 +66616,4,1.0,1,1.528626799583435,117,1.0,3 +66617,4,1.0,1,1.187629222869873,118,1.0,3 +66618,4,1.0,1,1.6436253786087036,119,1.0,3 +66619,4,1.0,1,1.7276242971420288,120,1.0,3 +66620,4,1.0,1,1.343629240989685,121,1.0,3 +66621,4,1.0,1,1.3086293935775757,122,1.0,3 +66622,4,1.0,1,1.2506293058395386,123,1.0,3 +66623,4,1.0,1,1.5766263008117676,124,1.0,3 +66624,4,1.0,1,1.83262300491333,125,1.0,3 +66625,4,1.0,1,1.5646263360977173,126,1.0,3 +66626,4,1.0,1,1.6216256618499756,127,0.0,3 +66627,4,0.0,1,1.2716293334960938,128,0.0,3 +66628,4,0.0,1,1.3016294240951538,129,0.0,3 +66629,4,0.0,1,1.259629249572754,130,0.0,3 +66630,4,0.0,1,1.6336255073547363,131,1.0,3 +66631,4,0.0,1,1.3016294240951538,132,0.0,3 +66632,4,0.0,1,1.440627932548523,133,0.0,3 +66633,4,1.0,1,1.6386253833770752,134,0.0,3 +66634,4,0.0,1,1.6356254816055298,135,0.0,3 +66635,4,1.0,1,1.5596264600753784,136,1.0,3 +66636,4,1.0,1,1.224629282951355,137,1.0,3 +66637,4,1.0,1,1.4756275415420532,138,1.0,3 +66638,4,1.0,1,1.6546251773834229,139,1.0,3 +66639,4,0.0,1,1.53162682056427,140,0.0,3 +66640,4,1.0,1,1.7486240863800049,141,0.0,3 +66641,4,0.0,1,1.343629240989685,142,1.0,3 +66642,4,0.0,1,1.3056293725967407,143,1.0,3 +66643,4,0.0,1,1.7966234683990479,144,0.0,3 +66644,4,1.0,1,1.4026284217834473,145,1.0,3 +66645,4,1.0,1,1.5026271343231201,146,1.0,3 +66646,4,1.0,1,1.5386266708374023,147,0.0,3 +66647,4,0.0,1,1.4026284217834473,148,1.0,3 +66648,4,0.0,1,1.315629482269287,149,1.0,3 +66649,4,0.0,1,1.5646263360977173,150,0.0,3 +66650,4,1.0,1,1.6306254863739014,151,1.0,3 +66651,4,1.0,1,1.8466227054595947,152,0.0,3 +66652,4,0.0,1,1.5866260528564453,153,1.0,3 +66653,4,0.0,1,1.5366266965866089,154,0.0,3 +66654,4,1.0,1,1.5856261253356934,155,1.0,3 +66655,4,1.0,1,1.700624704360962,156,1.0,3 +66656,4,1.0,1,1.3186293840408325,157,1.0,3 +66657,4,1.0,1,1.4566277265548706,158,0.0,3 +66658,4,0.0,1,1.7116245031356812,159,0.0,3 +66659,4,1.0,1,1.3686288595199585,160,1.0,3 +66660,4,1.0,1,2.084620237350464,161,1.0,3 +66661,4,1.0,1,1.343629240989685,162,0.0,3 +66662,4,1.0,1,1.8056232929229736,163,0.0,3 +66663,4,0.0,1,1.8956221342086792,164,0.0,3 +66664,4,0.0,1,1.4216282367706299,165,1.0,3 +66665,4,0.0,1,1.2726293802261353,166,0.0,3 +66666,4,1.0,1,1.9586212635040283,167,0.0,3 +66667,4,0.0,1,1.6376254558563232,168,0.0,3 +66668,4,0.0,1,1.5256268978118896,169,0.0,3 +66669,4,1.0,1,1.8956221342086792,170,1.0,3 +66670,4,1.0,1,1.347629189491272,171,0.0,3 +66671,4,0.0,1,1.2026292085647583,172,0.0,3 +66672,4,1.0,1,1.4336280822753906,173,0.0,3 +66673,4,0.0,1,1.3836287260055542,174,0.0,3 +66674,4,0.0,1,1.1786291599273682,175,1.0,3 +66675,4,0.0,1,1.4926272630691528,176,1.0,3 +66676,4,0.0,1,1.9546213150024414,177,0.0,3 +66677,4,0.0,1,1.2066291570663452,178,0.0,3 +66678,4,0.0,1,1.8226230144500732,179,0.0,3 +66679,4,0.0,1,1.974621057510376,180,0.0,3 +66680,4,1.0,1,1.7746236324310303,181,1.0,3 +66681,4,1.0,1,1.4546277523040771,182,0.0,3 +66682,4,0.0,1,2.2086260318756104,183,1.0,3 +66683,4,0.0,1,1.6636251211166382,184,0.0,3 +66684,4,1.0,1,2.0056207180023193,185,0.0,3 +66685,4,1.0,1,2.058619976043701,186,1.0,3 +66686,4,1.0,1,1.344629168510437,187,1.0,3 +66687,4,1.0,1,1.5306267738342285,188,1.0,3 +66688,4,0.0,1,1.246629238128662,189,1.0,3 +66689,4,1.0,1,1.8166232109069824,190,1.0,3 +66690,4,0.0,1,1.6896247863769531,191,0.0,3 +66691,4,1.0,1,1.2506293058395386,192,0.0,3 +66692,4,0.0,1,1.833622932434082,193,0.0,3 +66693,4,1.0,1,1.6786248683929443,194,1.0,3 +66694,4,1.0,1,1.8966221809387207,195,0.0,3 +66695,4,1.0,1,1.6436253786087036,196,0.0,3 +66696,4,0.0,1,1.8566226959228516,197,1.0,3 +66697,4,0.0,1,1.1466290950775146,198,0.0,3 +66698,4,0.0,1,1.258629322052002,199,0.0,3 +66699,4,0.0,1,1.4496278762817383,200,0.0,3 +66700,4,1.0,1,1.4966272115707397,201,1.0,3 +66701,4,1.0,1,1.5616264343261719,202,1.0,3 +66702,4,1.0,1,1.4866273403167725,203,0.0,3 +66703,4,1.0,1,1.7126245498657227,204,0.0,3 +66704,4,1.0,1,1.2126291990280151,205,0.0,3 +66705,4,1.0,1,2.14862322807312,206,1.0,3 +66706,4,1.0,1,1.3426291942596436,207,1.0,3 +66707,4,1.0,1,1.3006293773651123,208,1.0,3 +66708,4,1.0,1,1.4506278038024902,209,0.0,3 +66709,4,0.0,1,1.249629259109497,210,0.0,3 +66710,4,0.0,1,2.014620542526245,211,0.0,3 +66711,4,1.0,1,1.2356293201446533,212,1.0,3 +66712,4,1.0,1,1.55462646484375,213,1.0,3 +66713,4,1.0,1,1.6706249713897705,214,1.0,3 +66714,4,0.0,1,1.2876293659210205,215,0.0,3 +66715,4,1.0,1,1.882622241973877,216,0.0,3 +66716,4,0.0,1,1.6396254301071167,217,0.0,3 +66717,4,0.0,1,1.550626516342163,218,0.0,3 +66718,4,0.0,1,1.6826248168945312,219,0.0,3 +66719,4,1.0,1,1.286629319190979,220,1.0,3 +66720,4,1.0,1,1.344629168510437,221,1.0,3 +66721,4,1.0,1,1.5686262845993042,222,1.0,3 +66722,4,1.0,1,1.2666293382644653,223,1.0,3 +66723,4,1.0,1,1.4266281127929688,224,1.0,3 +66724,4,1.0,1,1.2986294031143188,225,1.0,3 +66725,4,1.0,1,1.6996246576309204,226,0.0,3 +66726,4,1.0,1,1.8756223917007446,227,1.0,3 +66727,4,1.0,1,1.7596238851547241,228,1.0,3 +66728,4,1.0,1,1.5926260948181152,229,1.0,3 +66729,4,1.0,1,1.3386292457580566,230,1.0,3 +66730,4,1.0,1,1.4676276445388794,231,1.0,3 +66731,4,1.0,1,1.3186293840408325,232,1.0,3 +66732,4,1.0,1,1.39262855052948,233,1.0,3 +66733,4,1.0,1,1.5526264905929565,234,0.0,3 +66734,4,0.0,1,1.2736293077468872,235,1.0,3 +66735,4,0.0,1,1.2916293144226074,236,0.0,3 +66736,4,0.0,1,1.3066294193267822,237,0.0,3 +66737,4,1.0,1,1.7496240139007568,238,1.0,3 +66738,4,1.0,1,1.55462646484375,239,1.0,3 +66739,4,0.0,1,1.3126294612884521,240,1.0,3 +66740,4,1.0,1,1.9046220779418945,241,1.0,3 +66741,4,0.0,1,1.3636289834976196,242,0.0,3 +66742,4,1.0,1,1.2976293563842773,243,1.0,3 +66743,4,1.0,1,1.6736249923706055,244,1.0,3 +66744,4,1.0,1,1.4856274127960205,245,0.0,3 +66745,4,1.0,1,1.700624704360962,246,1.0,3 +66746,4,1.0,1,1.2176291942596436,247,1.0,3 +66747,4,1.0,1,1.5406266450881958,248,1.0,3 +66748,4,1.0,1,1.9576213359832764,249,1.0,3 +66749,4,0.0,1,1.8186230659484863,250,0.0,3 +66750,4,1.0,1,1.288629412651062,251,1.0,3 +66751,4,1.0,1,1.3496291637420654,252,0.0,3 +66752,4,0.0,1,1.2666293382644653,253,0.0,3 +66753,4,0.0,1,2.1866250038146973,254,0.0,3 +66754,4,0.0,1,1.2786293029785156,255,0.0,3 +66755,4,1.0,1,1.550626516342163,256,1.0,3 +66756,4,1.0,1,1.9156218767166138,257,1.0,3 +66757,4,1.0,1,1.5826261043548584,258,0.0,3 +66758,4,0.0,1,1.3606289625167847,259,0.0,3 +66759,4,1.0,1,1.9116219282150269,260,1.0,3 +66760,4,1.0,1,1.7146244049072266,261,1.0,3 +66761,4,1.0,1,1.5936260223388672,262,0.0,3 +66762,4,0.0,1,1.4376280307769775,263,0.0,3 +66763,4,0.0,1,1.4866273403167725,264,0.0,3 +66764,4,0.0,1,1.457627773284912,265,0.0,3 +66765,4,1.0,1,1.7516239881515503,266,1.0,3 +66766,4,1.0,1,1.391628623008728,267,0.0,3 +66767,4,0.0,1,1.5866260528564453,268,0.0,3 +66768,4,0.0,1,1.840622901916504,269,0.0,3 +66769,4,0.0,1,1.5936260223388672,270,0.0,3 +66770,4,1.0,1,1.3786287307739258,271,1.0,3 +66771,4,1.0,1,1.222629189491272,272,1.0,3 +66772,4,1.0,1,1.5666263103485107,273,1.0,3 +66773,4,1.0,1,1.255629301071167,274,1.0,3 +66774,4,1.0,1,1.373628854751587,275,1.0,3 +66775,4,1.0,1,1.598625898361206,276,1.0,3 +66776,4,1.0,1,1.600625991821289,277,1.0,3 +66777,4,1.0,1,1.373628854751587,278,0.0,3 +66778,4,0.0,1,1.4516278505325317,279,0.0,3 +66779,4,0.0,1,1.3006293773651123,280,0.0,3 +66780,4,1.0,1,1.8456227779388428,281,1.0,3 +66781,4,1.0,1,1.3866286277770996,282,1.0,3 +66782,4,1.0,1,1.4016284942626953,283,0.0,3 +66783,4,1.0,1,1.4776275157928467,284,1.0,3 +66784,4,1.0,1,1.2686293125152588,285,1.0,3 +66785,4,1.0,1,1.604625940322876,286,1.0,3 +66786,4,1.0,1,1.3176294565200806,287,0.0,3 +66787,4,0.0,1,1.8316229581832886,288,1.0,3 +66788,4,0.0,1,1.3456292152404785,289,0.0,3 +66789,4,0.0,1,1.1776291131973267,290,0.0,3 +66790,4,1.0,1,2.2176265716552734,291,0.0,3 +66791,4,0.0,1,2.335631847381592,292,1.0,3 +66792,4,0.0,1,1.2146291732788086,293,1.0,3 +66793,4,0.0,1,1.4966272115707397,294,0.0,3 +66794,4,1.0,1,1.6166257858276367,295,1.0,3 +66795,4,1.0,1,1.3426291942596436,296,1.0,3 +66796,4,1.0,1,1.3676289319992065,297,1.0,3 +66797,4,1.0,1,1.5446265935897827,298,1.0,3 +66798,4,1.0,1,1.3766287565231323,299,1.0,3 +66799,4,1.0,1,1.4466278553009033,300,1.0,3 +66800,4,1.0,1,1.5666263103485107,301,0.0,3 +66801,4,0.0,1,1.249629259109497,302,0.0,3 +66802,4,0.0,1,1.6836248636245728,303,0.0,3 +66803,4,0.0,1,1.366628885269165,304,0.0,3 +66804,4,0.0,1,1.315629482269287,305,0.0,3 +66805,4,0.0,1,1.8636225461959839,306,0.0,3 +66806,4,0.0,1,1.319629430770874,307,0.0,3 +66807,4,1.0,1,1.6076258420944214,308,1.0,3 +66808,4,1.0,1,1.8576226234436035,309,1.0,3 +66809,4,1.0,1,1.3686288595199585,310,1.0,3 +66810,4,1.0,1,1.2476292848587036,311,1.0,3 +66811,4,1.0,1,1.6656250953674316,312,1.0,3 +66812,4,1.0,1,1.7126245498657227,313,1.0,3 +66813,4,1.0,1,1.6166257858276367,314,1.0,3 +66814,4,1.0,1,1.4946272373199463,315,0.0,3 +66815,4,1.0,1,1.3876286745071411,316,0.0,3 +66816,4,0.0,1,1.1736291646957397,317,1.0,3 +66817,4,0.0,1,1.8446228504180908,318,1.0,3 +66818,4,0.0,1,1.249629259109497,319,0.0,3 +66819,4,1.0,1,1.7106244564056396,320,1.0,3 +66820,4,1.0,1,1.4476279020309448,321,1.0,3 +66821,4,1.0,1,2.2006256580352783,322,1.0,3 +66822,4,1.0,1,2.187624931335449,323,1.0,3 +66823,4,1.0,1,1.3616290092468262,324,1.0,3 +66824,4,1.0,1,1.3036293983459473,325,1.0,3 +66825,4,1.0,1,1.396628499031067,326,1.0,3 +66826,4,1.0,1,1.4746274948120117,327,1.0,3 +66827,4,1.0,1,1.2676293849945068,328,1.0,3 +66828,4,1.0,1,1.418628215789795,329,1.0,3 +66829,4,1.0,1,1.74562406539917,330,0.0,3 +66830,4,0.0,1,1.8956221342086792,331,1.0,3 +66831,4,0.0,1,1.4466278553009033,332,0.0,3 +66832,4,0.0,1,1.5846261978149414,333,0.0,3 +66833,4,0.0,1,1.6176257133483887,334,0.0,3 +66834,4,0.0,1,1.435628056526184,335,0.0,3 +66835,4,0.0,1,2.123621940612793,336,1.0,3 +66836,4,0.0,1,1.2316292524337769,337,1.0,3 +66837,4,0.0,1,1.21562922000885,338,1.0,3 +66838,4,0.0,1,1.5306267738342285,339,1.0,3 +66839,4,0.0,1,1.2796293497085571,340,0.0,3 +66840,4,0.0,1,1.366628885269165,341,0.0,3 +66841,4,0.0,1,1.535626769065857,342,1.0,3 +66842,4,0.0,1,1.6646251678466797,343,0.0,3 +66843,4,1.0,1,1.4776275157928467,344,0.0,3 +66844,4,0.0,1,1.4516278505325317,345,0.0,3 +66845,4,0.0,1,1.550626516342163,346,0.0,3 +66846,4,0.0,1,1.9626212120056152,347,0.0,3 +66847,4,1.0,1,1.6846249103546143,348,0.0,3 +66848,4,1.0,1,1.8266229629516602,349,1.0,3 +66849,4,1.0,1,1.4696276187896729,350,0.0,3 +66850,4,0.0,1,1.3866286277770996,351,0.0,3 +66851,4,1.0,1,1.7316242456436157,352,1.0,3 +66852,4,1.0,1,1.4306280612945557,353,1.0,3 +66853,4,1.0,1,1.2806293964385986,354,0.0,3 +66854,4,0.0,1,1.8646225929260254,355,1.0,3 +66855,4,0.0,1,1.4096283912658691,356,1.0,3 +66856,4,0.0,1,1.315629482269287,357,0.0,3 +66857,4,1.0,1,2.2036256790161133,358,1.0,3 +66858,4,1.0,1,1.5836261510849,359,1.0,3 +66859,4,1.0,1,1.316629409790039,360,0.0,3 +66860,4,1.0,1,2.5136404037475586,361,0.0,3 +66861,4,0.0,1,1.7766237258911133,362,0.0,3 +66862,4,1.0,1,1.5036271810531616,363,1.0,3 +66863,4,1.0,1,1.4976272583007812,364,1.0,3 +66864,4,1.0,1,1.2196292877197266,365,1.0,3 +66865,4,1.0,1,1.5746262073516846,366,1.0,3 +66866,4,1.0,1,1.461627721786499,367,1.0,3 +66867,4,1.0,1,1.8246231079101562,368,0.0,3 +66868,4,1.0,1,1.8616225719451904,369,1.0,3 +66869,4,1.0,1,1.366628885269165,370,0.0,3 +66870,4,0.0,1,1.3856287002563477,371,0.0,3 +66871,4,0.0,1,1.8926222324371338,372,1.0,3 +66872,4,0.0,1,1.1346290111541748,373,0.0,3 +66873,4,0.0,1,1.1386290788650513,374,1.0,3 +66874,4,0.0,1,1.5626263618469238,375,0.0,3 +66875,4,1.0,1,1.286629319190979,376,1.0,3 +66876,4,1.0,1,1.8096232414245605,377,1.0,3 +66877,4,1.0,1,1.4086283445358276,378,1.0,3 +66878,4,1.0,1,2.06961989402771,379,0.0,3 +66879,4,0.0,1,1.8036233186721802,380,0.0,3 +66880,4,1.0,1,1.6096258163452148,381,0.0,3 +66881,4,0.0,1,1.3506290912628174,382,1.0,3 +66882,4,0.0,1,1.5396267175674438,383,0.0,3 +66883,4,0.0,1,1.2646293640136719,384,0.0,3 +66884,4,0.0,1,1.8226230144500732,385,0.0,3 +66885,4,0.0,1,1.3246294260025024,386,0.0,3 +66886,4,0.0,1,1.184629201889038,387,1.0,3 +66887,4,0.0,1,1.2646293640136719,388,0.0,3 +66888,4,1.0,1,1.316629409790039,389,1.0,3 +66889,4,1.0,1,1.7056245803833008,390,1.0,3 +66890,4,0.0,1,2.2846295833587646,391,1.0,3 +66891,4,0.0,1,1.7016246318817139,392,0.0,3 +66892,4,1.0,1,1.4286280870437622,393,1.0,3 +66893,4,1.0,1,1.4166282415390015,394,0.0,3 +66894,4,0.0,1,1.286629319190979,395,1.0,3 +66895,4,0.0,1,1.2976293563842773,396,0.0,3 +66896,4,0.0,1,1.87862229347229,397,0.0,3 +66897,4,0.0,1,1.5816261768341064,398,0.0,3 +66898,4,1.0,1,1.5686262845993042,399,1.0,3 +66899,4,1.0,1,1.9336216449737549,400,1.0,3 +66900,4,1.0,1,1.6826248168945312,401,1.0,3 +66901,4,1.0,1,1.2656292915344238,402,1.0,3 +66902,4,1.0,1,1.4286280870437622,403,1.0,3 +66903,4,1.0,1,1.2376292943954468,404,1.0,3 +66904,4,1.0,1,1.3316293954849243,405,0.0,3 +66905,4,0.0,1,1.3176294565200806,406,0.0,3 +66906,4,1.0,1,1.6266255378723145,407,1.0,3 +66907,4,1.0,1,1.2906293869018555,408,1.0,3 +66908,4,1.0,1,1.922621726989746,409,0.0,3 +66909,4,1.0,1,2.0506200790405273,410,0.0,3 +66910,4,0.0,1,1.85562264919281,411,1.0,3 +66911,4,0.0,1,1.2196292877197266,412,0.0,3 +66912,4,1.0,1,2.2436275482177734,413,1.0,3 +66913,4,1.0,1,1.4166282415390015,414,1.0,3 +66914,4,1.0,1,1.5566264390945435,415,0.0,3 +66915,4,0.0,1,1.9336216449737549,416,0.0,3 +66916,4,0.0,1,1.9186217784881592,417,0.0,3 +66917,4,1.0,1,2.167623996734619,418,1.0,3 +66918,4,1.0,1,1.418628215789795,419,1.0,3 +66919,4,1.0,1,1.6856248378753662,420,1.0,3 +66920,4,1.0,1,1.932621717453003,421,1.0,3 +66921,4,1.0,1,1.4426279067993164,422,1.0,3 +66922,4,1.0,1,1.7056245803833008,423,0.0,3 +66923,4,0.0,1,1.2756292819976807,424,0.0,3 +66924,4,1.0,1,1.4246281385421753,425,0.0,3 +66925,4,0.0,1,2.025620460510254,426,0.0,3 +66926,4,0.0,1,1.3106293678283691,427,0.0,3 +66927,4,0.0,1,1.4856274127960205,428,1.0,3 +66928,4,0.0,1,1.3016294240951538,429,0.0,3 +66929,4,0.0,1,1.3776288032531738,430,0.0,3 +66930,4,1.0,1,1.5686262845993042,431,1.0,3 +66931,4,1.0,1,1.7016246318817139,432,1.0,3 +66932,4,1.0,1,1.2776293754577637,433,1.0,3 +66933,4,1.0,1,1.2846293449401855,434,1.0,3 +66934,4,1.0,1,1.7686238288879395,435,1.0,3 +66935,4,1.0,1,1.8186230659484863,436,0.0,3 +66936,4,1.0,1,2.0386202335357666,437,1.0,3 +66937,4,1.0,1,1.4646276235580444,438,0.0,3 +66938,4,0.0,1,2.1656241416931152,439,0.0,3 +66939,4,1.0,1,1.4546277523040771,440,1.0,3 +66940,4,1.0,1,1.6896247863769531,441,1.0,3 +66941,4,1.0,1,1.6596251726150513,442,1.0,3 +66942,4,1.0,1,1.365628957748413,443,1.0,3 +66943,4,1.0,1,1.3556290864944458,444,1.0,3 +66944,4,1.0,1,1.2126291990280151,445,0.0,3 +66945,4,0.0,1,1.5046271085739136,446,0.0,3 +66946,4,1.0,1,1.8266229629516602,447,0.0,3 +66947,4,0.0,1,1.2786293029785156,448,0.0,3 +66948,4,0.0,1,1.9566214084625244,449,1.0,3 +66949,4,0.0,1,1.2766293287277222,450,0.0,3 +66950,4,1.0,1,1.8766224384307861,451,1.0,3 +66951,4,1.0,1,1.7546238899230957,452,1.0,3 +66952,4,1.0,1,1.9216217994689941,453,1.0,3 +66953,4,1.0,1,1.5896260738372803,454,1.0,3 +66954,4,1.0,1,1.4256281852722168,455,1.0,3 +66955,4,1.0,1,1.5556265115737915,456,1.0,3 +66956,4,1.0,1,1.6286256313323975,457,1.0,3 +66957,4,1.0,1,1.5266268253326416,458,1.0,3 +66958,4,1.0,1,1.315629482269287,459,1.0,3 +66959,4,1.0,1,1.9206218719482422,460,0.0,3 +66960,4,0.0,1,1.3536291122436523,461,0.0,3 +66961,4,0.0,1,1.3146294355392456,462,0.0,3 +66962,4,1.0,1,1.4566277265548706,463,1.0,3 +66963,4,1.0,1,1.3746287822723389,464,1.0,3 +66964,4,1.0,1,1.462627649307251,465,1.0,3 +66965,4,1.0,1,1.793623447418213,466,1.0,3 +66966,4,1.0,1,1.3816287517547607,467,1.0,3 +66967,4,1.0,1,1.5006271600723267,468,1.0,3 +66968,4,1.0,1,1.343629240989685,469,0.0,3 +66969,4,1.0,1,1.2366292476654053,470,0.0,3 +66970,4,0.0,1,2.4616379737854004,471,0.0,3 +66971,4,0.0,1,1.8536226749420166,472,1.0,3 +66972,4,0.0,1,1.187629222869873,473,0.0,3 +66973,4,1.0,1,1.2486293315887451,474,0.0,3 +66974,4,1.0,1,1.7876235246658325,475,1.0,3 +66975,4,1.0,1,1.292629361152649,476,1.0,3 +66976,4,1.0,1,1.3176294565200806,477,0.0,3 +66977,4,0.0,1,1.600625991821289,478,0.0,3 +66978,4,0.0,1,1.3546290397644043,479,1.0,3 +66979,4,0.0,1,1.5736262798309326,480,0.0,3 +66980,4,0.0,1,1.6596251726150513,481,1.0,3 +66981,4,0.0,1,1.3276294469833374,482,0.0,3 +66982,4,0.0,1,2.068619966506958,483,0.0,3 +66983,4,0.0,1,1.7696237564086914,484,0.0,3 +66984,4,1.0,1,1.7776236534118652,485,1.0,3 +66985,4,1.0,1,1.602625846862793,486,0.0,3 +66986,4,1.0,1,1.39262855052948,487,1.0,3 +66987,4,1.0,1,1.929621696472168,488,1.0,3 +66988,4,1.0,1,1.3366292715072632,489,1.0,3 +66989,4,0.0,1,1.410628318786621,490,0.0,3 +66990,4,1.0,1,1.187629222869873,491,1.0,3 +66991,4,1.0,1,1.3206294775009155,492,1.0,3 +66992,4,1.0,1,1.3396292924880981,493,1.0,3 +66993,4,1.0,1,1.6796249151229858,494,0.0,3 +66994,4,0.0,1,1.6096258163452148,495,1.0,3 +66995,4,0.0,1,1.648625373840332,496,0.0,3 +66996,4,0.0,1,1.8536226749420166,497,0.0,3 +66997,4,1.0,1,1.652625322341919,498,1.0,3 +66998,4,1.0,1,1.4696276187896729,499,1.0,3 +66999,4,1.0,1,1.698624610900879,500,1.0,3 +67000,4,0.0,2,2.360633134841919,1,0.0,3 +67001,4,0.0,2,1.7076245546340942,2,1.0,3 +67002,4,0.0,2,1.484627366065979,3,1.0,3 +67003,4,0.0,2,1.5226268768310547,4,0.0,3 +67004,4,1.0,2,2.349632740020752,5,1.0,3 +67005,4,1.0,2,1.3546290397644043,6,1.0,3 +67006,4,1.0,2,1.3576290607452393,7,1.0,3 +67007,4,1.0,2,1.6836248636245728,8,1.0,3 +67008,4,1.0,2,1.3216294050216675,9,1.0,3 +67009,4,1.0,2,1.4256281852722168,10,1.0,3 +67010,4,1.0,2,1.4266281127929688,11,1.0,3 +67011,4,1.0,2,1.4266281127929688,12,1.0,3 +67012,4,1.0,2,1.5236269235610962,13,1.0,3 +67013,4,1.0,2,1.8516227006912231,14,1.0,3 +67014,4,1.0,2,1.5646263360977173,15,1.0,3 +67015,4,1.0,2,1.8006234169006348,16,0.0,3 +67016,4,0.0,2,1.790623426437378,17,1.0,3 +67017,4,0.0,2,1.5936260223388672,18,1.0,3 +67018,4,0.0,2,1.3216294050216675,19,1.0,3 +67019,4,0.0,2,2.061619997024536,20,0.0,3 +67020,4,1.0,2,1.2376292943954468,21,1.0,3 +67021,4,1.0,2,1.343629240989685,22,1.0,3 +67022,4,1.0,2,1.5246268510818481,23,0.0,3 +67023,4,0.0,2,1.323629379272461,24,0.0,3 +67024,4,0.0,2,1.969621181488037,25,1.0,3 +67025,4,0.0,2,1.3676289319992065,26,0.0,3 +67026,4,0.0,2,1.9196218252182007,27,0.0,3 +67027,4,0.0,2,1.414628267288208,28,1.0,3 +67028,4,0.0,2,1.2196292877197266,29,1.0,3 +67029,4,0.0,2,1.8876222372055054,30,1.0,3 +67030,4,0.0,2,1.2806293964385986,31,1.0,3 +67031,4,0.0,2,1.2236292362213135,32,1.0,3 +67032,4,0.0,2,1.4706275463104248,33,0.0,3 +67033,4,0.0,2,1.4696276187896729,34,0.0,3 +67034,4,0.0,2,1.9436215162277222,35,1.0,3 +67035,4,0.0,2,1.9096219539642334,36,1.0,3 +67036,4,0.0,2,1.435628056526184,37,0.0,3 +67037,4,1.0,2,1.882622241973877,38,0.0,3 +67038,4,0.0,2,1.6136257648468018,39,1.0,3 +67039,4,0.0,2,1.396628499031067,40,0.0,3 +67040,4,0.0,2,1.2786293029785156,41,0.0,3 +67041,4,0.0,2,1.7966234683990479,42,1.0,3 +67042,4,0.0,2,1.4316281080245972,43,1.0,3 +67043,4,0.0,2,1.4286280870437622,44,0.0,3 +67044,4,0.0,2,1.700624704360962,45,1.0,3 +67045,4,0.0,2,1.4826273918151855,46,0.0,3 +67046,4,0.0,2,1.741624116897583,47,1.0,3 +67047,4,0.0,2,2.064620018005371,48,0.0,3 +67048,4,0.0,2,1.9666211605072021,49,1.0,3 +67049,4,0.0,2,1.1976292133331299,50,0.0,3 +67050,4,0.0,2,1.4726275205612183,51,1.0,3 +67051,4,0.0,2,1.3566290140151978,52,0.0,3 +67052,4,0.0,2,1.5906260013580322,53,1.0,3 +67053,4,0.0,2,1.8976221084594727,54,0.0,3 +67054,4,0.0,2,1.5226268768310547,55,1.0,3 +67055,4,0.0,2,1.1806291341781616,56,1.0,3 +67056,4,0.0,2,1.2796293497085571,57,1.0,3 +67057,4,0.0,2,1.373628854751587,58,1.0,3 +67058,4,0.0,2,1.5726262331008911,59,0.0,3 +67059,4,1.0,2,1.7586238384246826,60,0.0,3 +67060,4,0.0,2,1.7026245594024658,61,1.0,3 +67061,4,0.0,2,1.2966294288635254,62,0.0,3 +67062,4,1.0,2,1.315629482269287,63,1.0,3 +67063,4,1.0,2,1.4826273918151855,64,1.0,3 +67064,4,0.0,2,2.322631359100342,65,1.0,3 +67065,4,0.0,2,1.5486265420913696,66,0.0,3 +67066,4,0.0,2,1.261629343032837,67,1.0,3 +67067,4,1.0,2,1.436627984046936,68,0.0,3 +67068,4,0.0,2,1.3126294612884521,69,1.0,3 +67069,4,0.0,2,1.579626202583313,70,0.0,3 +67070,4,1.0,2,1.6116257905960083,71,1.0,3 +67071,4,1.0,2,1.646625280380249,72,0.0,3 +67072,4,0.0,2,1.8936221599578857,73,0.0,3 +67073,4,0.0,2,1.5786261558532715,74,0.0,3 +67074,4,0.0,2,1.3096294403076172,75,0.0,3 +67075,4,1.0,2,1.597625970840454,76,0.0,3 +67076,4,0.0,2,1.3636289834976196,77,0.0,3 +67077,4,0.0,2,1.7136244773864746,78,0.0,3 +67078,4,0.0,2,1.3126294612884521,79,1.0,3 +67079,4,0.0,2,1.2386292219161987,80,0.0,3 +67080,4,1.0,2,1.6566252708435059,81,0.0,3 +67081,4,0.0,2,1.7346241474151611,82,0.0,3 +67082,4,1.0,2,1.3986284732818604,83,1.0,3 +67083,4,1.0,2,1.461627721786499,84,0.0,3 +67084,4,1.0,2,2.2936301231384277,85,1.0,3 +67085,4,1.0,2,1.3076293468475342,86,0.0,3 +67086,4,1.0,2,2.4646379947662354,87,1.0,3 +67087,4,1.0,2,1.259629249572754,88,0.0,3 +67088,4,0.0,2,1.5886261463165283,89,1.0,3 +67089,4,0.0,2,1.881622314453125,90,1.0,3 +67090,4,0.0,2,2.077620029449463,91,0.0,3 +67091,4,1.0,2,1.9666211605072021,92,0.0,3 +67092,4,1.0,2,1.8526227474212646,93,0.0,3 +67093,4,1.0,2,2.070619821548462,94,1.0,3 +67094,4,1.0,2,1.8716224431991577,95,0.0,3 +67095,4,1.0,2,1.436627984046936,96,1.0,3 +67096,4,1.0,2,1.2756292819976807,97,1.0,3 +67097,4,1.0,2,1.645625352859497,98,1.0,3 +67098,4,1.0,2,1.5226268768310547,99,0.0,3 +67099,4,0.0,2,1.604625940322876,100,1.0,3 +67100,4,0.0,2,1.2666293382644653,101,1.0,3 +67101,4,0.0,2,1.1796290874481201,102,1.0,3 +67102,4,0.0,2,1.6436253786087036,103,0.0,3 +67103,4,0.0,2,1.3836287260055542,104,1.0,3 +67104,4,0.0,2,1.3876286745071411,105,1.0,3 +67105,4,0.0,2,1.249629259109497,106,1.0,3 +67106,4,0.0,2,1.315629482269287,107,1.0,3 +67107,4,0.0,2,1.974621057510376,108,1.0,3 +67108,4,0.0,2,1.4456279277801514,109,1.0,3 +67109,4,0.0,2,1.3456292152404785,110,1.0,3 +67110,4,0.0,2,1.4066283702850342,111,1.0,3 +67111,4,0.0,2,1.3096294403076172,112,0.0,3 +67112,4,0.0,2,1.7476240396499634,113,1.0,3 +67113,4,0.0,2,1.5046271085739136,114,1.0,3 +67114,4,0.0,2,1.2296292781829834,115,1.0,3 +67115,4,0.0,2,1.373628854751587,116,0.0,3 +67116,4,0.0,2,1.1816291809082031,117,0.0,3 +67117,4,1.0,2,1.4776275157928467,118,0.0,3 +67118,4,0.0,2,1.316629409790039,119,0.0,3 +67119,4,0.0,2,1.2776293754577637,120,0.0,3 +67120,4,0.0,2,1.4896273612976074,121,0.0,3 +67121,4,1.0,2,1.4036284685134888,122,1.0,3 +67122,4,1.0,2,1.480627417564392,123,1.0,3 +67123,4,1.0,2,1.366628885269165,124,1.0,3 +67124,4,1.0,2,1.3646289110183716,125,1.0,3 +67125,4,1.0,2,1.7036246061325073,126,1.0,3 +67126,4,1.0,2,1.6666250228881836,127,1.0,3 +67127,4,1.0,2,2.1886250972747803,128,1.0,3 +67128,4,1.0,2,1.696624755859375,129,0.0,3 +67129,4,1.0,2,1.510627031326294,130,0.0,3 +67130,4,0.0,2,1.926621675491333,131,1.0,3 +67131,4,0.0,2,1.487627387046814,132,1.0,3 +67132,4,0.0,2,1.3536291122436523,133,1.0,3 +67133,4,0.0,2,1.2796293497085571,134,1.0,3 +67134,4,0.0,2,1.969621181488037,135,0.0,3 +67135,4,0.0,2,1.4566277265548706,136,1.0,3 +67136,4,0.0,2,1.4386279582977295,137,1.0,3 +67137,4,0.0,2,1.5196269750595093,138,1.0,3 +67138,4,0.0,2,1.1786291599273682,139,0.0,3 +67139,4,0.0,2,1.3076293468475342,140,0.0,3 +67140,4,0.0,2,1.4686275720596313,141,0.0,3 +67141,4,1.0,2,1.3076293468475342,142,0.0,3 +67142,4,1.0,2,2.082620143890381,143,0.0,3 +67143,4,0.0,2,1.4976272583007812,144,1.0,3 +67144,4,0.0,2,1.249629259109497,145,0.0,3 +67145,4,0.0,2,1.5236269235610962,146,1.0,3 +67146,4,0.0,2,1.5716263055801392,147,1.0,3 +67147,4,0.0,2,1.2196292877197266,148,1.0,3 +67148,4,0.0,2,1.5166269540786743,149,0.0,3 +67149,4,0.0,2,2.066619873046875,150,1.0,3 +67150,4,0.0,2,1.2766293287277222,151,1.0,3 +67151,4,0.0,2,1.2996294498443604,152,0.0,3 +67152,4,1.0,2,1.4466278553009033,153,1.0,3 +67153,4,1.0,2,1.373628854751587,154,1.0,3 +67154,4,1.0,2,1.697624683380127,155,1.0,3 +67155,4,1.0,2,1.5216269493103027,156,0.0,3 +67156,4,0.0,2,1.6626250743865967,157,0.0,3 +67157,4,0.0,2,1.7126245498657227,158,0.0,3 +67158,4,0.0,2,1.4006284475326538,159,0.0,3 +67159,4,0.0,2,1.34062922000885,160,0.0,3 +67160,4,1.0,2,1.969621181488037,161,1.0,3 +67161,4,1.0,2,1.5046271085739136,162,1.0,3 +67162,4,1.0,2,1.4976272583007812,163,0.0,3 +67163,4,0.0,2,1.2076292037963867,164,0.0,3 +67164,4,0.0,2,1.3636289834976196,165,1.0,3 +67165,4,0.0,2,1.601625919342041,166,1.0,3 +67166,4,0.0,2,1.326629400253296,167,0.0,3 +67167,4,1.0,2,1.3556290864944458,168,1.0,3 +67168,4,1.0,2,1.2816293239593506,169,1.0,3 +67169,4,1.0,2,1.605625867843628,170,1.0,3 +67170,4,1.0,2,1.5686262845993042,171,0.0,3 +67171,4,1.0,2,1.3336293697357178,172,1.0,3 +67172,4,1.0,2,1.8416228294372559,173,0.0,3 +67173,4,1.0,2,1.6246256828308105,174,1.0,3 +67174,4,1.0,2,1.3826286792755127,175,1.0,3 +67175,4,1.0,2,1.3906285762786865,176,0.0,3 +67176,4,0.0,2,1.5896260738372803,177,0.0,3 +67177,4,0.0,2,1.7276242971420288,178,0.0,3 +67178,4,0.0,2,1.4466278553009033,179,1.0,3 +67179,4,0.0,2,1.2976293563842773,180,0.0,3 +67180,4,1.0,2,1.5116270780563354,181,0.0,3 +67181,4,0.0,2,1.4016284942626953,182,1.0,3 +67182,4,0.0,2,1.2446292638778687,183,0.0,3 +67183,4,0.0,2,1.6636251211166382,184,0.0,3 +67184,4,0.0,2,1.4516278505325317,185,0.0,3 +67185,4,0.0,2,1.2536293268203735,186,0.0,3 +67186,4,0.0,2,1.289629340171814,187,0.0,3 +67187,4,0.0,2,1.6226255893707275,188,1.0,3 +67188,4,0.0,2,1.3066294193267822,189,0.0,3 +67189,4,1.0,2,1.7066245079040527,190,1.0,3 +67190,4,1.0,2,1.3466291427612305,191,0.0,3 +67191,4,0.0,2,1.4826273918151855,192,0.0,3 +67192,4,0.0,2,1.435628056526184,193,1.0,3 +67193,4,0.0,2,1.1656291484832764,194,1.0,3 +67194,4,0.0,2,1.286629319190979,195,0.0,3 +67195,4,0.0,2,1.5926260948181152,196,1.0,3 +67196,4,0.0,2,1.4716275930404663,197,0.0,3 +67197,4,1.0,2,2.2656288146972656,198,0.0,3 +67198,4,0.0,2,1.1996291875839233,199,0.0,3 +67199,4,0.0,2,1.4796274900436401,200,1.0,3 +67200,4,0.0,2,1.3896286487579346,201,0.0,3 +67201,4,0.0,2,1.313629388809204,202,1.0,3 +67202,4,0.0,2,1.3746287822723389,203,1.0,3 +67203,4,0.0,2,1.3566290140151978,204,0.0,3 +67204,4,0.0,2,1.439628005027771,205,0.0,3 +67205,4,0.0,2,1.2206292152404785,206,0.0,3 +67206,4,0.0,2,1.8396228551864624,207,1.0,3 +67207,4,0.0,2,1.288629412651062,208,0.0,3 +67208,4,0.0,2,1.2766293287277222,209,0.0,3 +67209,4,1.0,2,1.5176270008087158,210,1.0,3 +67210,4,1.0,2,1.2786293029785156,211,1.0,3 +67211,4,1.0,2,1.218629240989685,212,1.0,3 +67212,4,1.0,2,1.5226268768310547,213,0.0,3 +67213,4,0.0,2,2.2226266860961914,214,0.0,3 +67214,4,1.0,2,1.4996272325515747,215,1.0,3 +67215,4,1.0,2,1.4126282930374146,216,0.0,3 +67216,4,0.0,2,1.510627031326294,217,1.0,3 +67217,4,0.0,2,1.2266292572021484,218,1.0,3 +67218,4,0.0,2,1.347629189491272,219,0.0,3 +67219,4,1.0,2,2.0366203784942627,220,0.0,3 +67220,4,1.0,2,1.6386253833770752,221,1.0,3 +67221,4,1.0,2,1.742624044418335,222,0.0,3 +67222,4,0.0,2,1.3006293773651123,223,0.0,3 +67223,4,0.0,2,2.078619956970215,224,1.0,3 +67224,4,0.0,2,1.222629189491272,225,0.0,3 +67225,4,0.0,2,1.8236230611801147,226,0.0,3 +67226,4,1.0,2,1.3776288032531738,227,0.0,3 +67227,4,0.0,2,1.6786248683929443,228,0.0,3 +67228,4,1.0,2,2.6776480674743652,229,0.0,3 +67229,4,0.0,2,2.01762056350708,230,0.0,3 +67230,4,1.0,2,1.5726262331008911,231,1.0,3 +67231,4,1.0,2,1.4946272373199463,232,1.0,3 +67232,4,1.0,2,1.2776293754577637,233,1.0,3 +67233,4,1.0,2,1.7396241426467896,234,1.0,3 +67234,4,1.0,2,1.3416292667388916,235,0.0,3 +67235,4,0.0,2,1.509627103805542,236,0.0,3 +67236,4,0.0,2,1.461627721786499,237,0.0,3 +67237,4,1.0,2,1.8186230659484863,238,1.0,3 +67238,4,1.0,2,1.413628339767456,239,1.0,3 +67239,4,1.0,2,1.388628602027893,240,0.0,3 +67240,4,1.0,2,1.9566214084625244,241,1.0,3 +67241,4,1.0,2,1.5496265888214111,242,0.0,3 +67242,4,0.0,2,1.2446292638778687,243,1.0,3 +67243,4,0.0,2,1.2146291732788086,244,1.0,3 +67244,4,0.0,2,1.3036293983459473,245,1.0,3 +67245,4,0.0,2,1.2966294288635254,246,1.0,3 +67246,4,0.0,2,1.1706291437149048,247,0.0,3 +67247,4,0.0,2,1.3756288290023804,248,1.0,3 +67248,4,0.0,2,1.792623519897461,249,0.0,3 +67249,4,0.0,2,1.343629240989685,250,0.0,3 +67250,4,0.0,2,1.418628215789795,251,1.0,3 +67251,4,0.0,2,1.6186256408691406,252,1.0,3 +67252,4,0.0,2,1.2956293821334839,253,1.0,3 +67253,4,0.0,2,1.6316255331039429,254,0.0,3 +67254,4,0.0,2,1.8356229066848755,255,0.0,3 +67255,4,0.0,2,1.2696293592453003,256,0.0,3 +67256,4,0.0,2,1.4516278505325317,257,0.0,3 +67257,4,1.0,2,2.0016207695007324,258,1.0,3 +67258,4,0.0,2,1.3186293840408325,259,0.0,3 +67259,4,1.0,2,1.6146256923675537,260,0.0,3 +67260,4,0.0,2,1.4526277780532837,261,1.0,3 +67261,4,0.0,2,1.1866291761398315,262,0.0,3 +67262,4,0.0,2,1.1366291046142578,263,0.0,3 +67263,4,0.0,2,1.929621696472168,264,1.0,3 +67264,4,0.0,2,1.1906291246414185,265,0.0,3 +67265,4,0.0,2,1.8126232624053955,266,0.0,3 +67266,4,1.0,2,1.313629388809204,267,1.0,3 +67267,4,1.0,2,1.6746249198913574,268,0.0,3 +67268,4,0.0,2,1.6036258935928345,269,1.0,3 +67269,4,0.0,2,1.18562912940979,270,0.0,3 +67270,4,1.0,2,1.838622808456421,271,0.0,3 +67271,4,0.0,2,1.741624116897583,272,1.0,3 +67272,4,0.0,2,1.645625352859497,273,0.0,3 +67273,4,1.0,2,1.8686225414276123,274,1.0,3 +67274,4,1.0,2,1.3786287307739258,275,0.0,3 +67275,4,0.0,2,2.1896252632141113,276,0.0,3 +67276,4,0.0,2,1.6406254768371582,277,0.0,3 +67277,4,0.0,2,1.483627438545227,278,1.0,3 +67278,4,0.0,2,2.018620491027832,279,0.0,3 +67279,4,1.0,2,2.1926252841949463,280,0.0,3 +67280,4,1.0,2,1.513627052307129,281,0.0,3 +67281,4,0.0,2,1.2916293144226074,282,1.0,3 +67282,4,0.0,2,1.3006293773651123,283,1.0,3 +67283,4,0.0,2,1.8016233444213867,284,0.0,3 +67284,4,1.0,2,1.5396267175674438,285,1.0,3 +67285,4,1.0,2,1.4826273918151855,286,1.0,3 +67286,4,1.0,2,1.5826261043548584,287,1.0,3 +67287,4,1.0,2,1.815623164176941,288,0.0,3 +67288,4,1.0,2,1.8446228504180908,289,1.0,3 +67289,4,1.0,2,1.2316292524337769,290,1.0,3 +67290,4,1.0,2,1.436627984046936,291,1.0,3 +67291,4,1.0,2,1.462627649307251,292,1.0,3 +67292,4,1.0,2,1.3246294260025024,293,1.0,3 +67293,4,1.0,2,1.2766293287277222,294,1.0,3 +67294,4,1.0,2,1.3426291942596436,295,1.0,3 +67295,4,1.0,2,1.3676289319992065,296,1.0,3 +67296,4,1.0,2,1.343629240989685,297,1.0,3 +67297,4,1.0,2,1.7046246528625488,298,1.0,3 +67298,4,1.0,2,1.646625280380249,299,1.0,3 +67299,4,1.0,2,1.2716293334960938,300,1.0,3 +67300,4,1.0,2,1.5736262798309326,301,1.0,3 +67301,4,1.0,2,1.3376293182373047,302,1.0,3 +67302,4,1.0,2,1.5386266708374023,303,0.0,3 +67303,4,0.0,2,1.2006292343139648,304,0.0,3 +67304,4,1.0,2,1.5376267433166504,305,1.0,3 +67305,4,1.0,2,1.528626799583435,306,1.0,3 +67306,4,1.0,2,1.4786274433135986,307,0.0,3 +67307,4,1.0,2,2.123621940612793,308,0.0,3 +67308,4,1.0,2,1.7186243534088135,309,1.0,3 +67309,4,0.0,2,1.4346280097961426,310,1.0,3 +67310,4,0.0,2,1.5826261043548584,311,0.0,3 +67311,4,1.0,2,1.6136257648468018,312,1.0,3 +67312,4,1.0,2,1.344629168510437,313,1.0,3 +67313,4,1.0,2,1.7246243953704834,314,1.0,3 +67314,4,1.0,2,1.8136231899261475,315,0.0,3 +67315,4,1.0,2,1.2936294078826904,316,1.0,3 +67316,4,1.0,2,1.2876293659210205,317,0.0,3 +67317,4,0.0,2,1.5386266708374023,318,0.0,3 +67318,4,0.0,2,1.313629388809204,319,0.0,3 +67319,4,1.0,2,1.924621820449829,320,1.0,3 +67320,4,1.0,2,1.6206257343292236,321,1.0,3 +67321,4,1.0,2,1.7116245031356812,322,1.0,3 +67322,4,1.0,2,1.527626872062683,323,1.0,3 +67323,4,1.0,2,1.343629240989685,324,0.0,3 +67324,4,1.0,2,2.0456202030181885,325,1.0,3 +67325,4,1.0,2,1.7166244983673096,326,1.0,3 +67326,4,1.0,2,1.417628288269043,327,0.0,3 +67327,4,1.0,2,1.8246231079101562,328,0.0,3 +67328,4,0.0,2,1.5166269540786743,329,1.0,3 +67329,4,0.0,2,1.4956272840499878,330,1.0,3 +67330,4,0.0,2,1.528626799583435,331,1.0,3 +67331,4,0.0,2,1.458627700805664,332,0.0,3 +67332,4,0.0,2,1.675624966621399,333,0.0,3 +67333,4,0.0,2,1.1476290225982666,334,0.0,3 +67334,4,0.0,2,1.6956247091293335,335,1.0,3 +67335,4,0.0,2,1.8286230564117432,336,1.0,3 +67336,4,0.0,2,1.5166269540786743,337,1.0,3 +67337,4,0.0,2,1.4066283702850342,338,1.0,3 +67338,4,0.0,2,1.2676293849945068,339,0.0,3 +67339,4,0.0,2,1.597625970840454,340,1.0,3 +67340,4,0.0,2,1.3716288805007935,341,0.0,3 +67341,4,0.0,2,1.2846293449401855,342,0.0,3 +67342,4,0.0,2,1.4426279067993164,343,1.0,3 +67343,4,0.0,2,1.4466278553009033,344,0.0,3 +67344,4,0.0,2,1.4076284170150757,345,0.0,3 +67345,4,1.0,2,1.697624683380127,346,0.0,3 +67346,4,1.0,2,2.2436275482177734,347,1.0,3 +67347,4,1.0,2,1.3056293725967407,348,0.0,3 +67348,4,1.0,2,1.837622880935669,349,1.0,3 +67349,4,1.0,2,1.187629222869873,350,1.0,3 +67350,4,1.0,2,1.366628885269165,351,1.0,3 +67351,4,1.0,2,1.218629240989685,352,0.0,3 +67352,4,1.0,2,1.7726237773895264,353,1.0,3 +67353,4,1.0,2,1.87862229347229,354,0.0,3 +67354,4,1.0,2,2.08862042427063,355,1.0,3 +67355,4,1.0,2,1.2146291732788086,356,1.0,3 +67356,4,1.0,2,1.3386292457580566,357,1.0,3 +67357,4,1.0,2,1.316629409790039,358,0.0,3 +67358,4,0.0,2,1.8606226444244385,359,0.0,3 +67359,4,0.0,2,2.0536201000213623,360,1.0,3 +67360,4,0.0,2,1.4776275157928467,361,0.0,3 +67361,4,0.0,2,2.152623414993286,362,0.0,3 +67362,4,1.0,2,1.9866209030151367,363,1.0,3 +67363,4,1.0,2,1.4566277265548706,364,1.0,3 +67364,4,1.0,2,1.228629231452942,365,1.0,3 +67365,4,1.0,2,1.5186269283294678,366,1.0,3 +67366,4,0.0,2,1.2686293125152588,367,1.0,3 +67367,4,1.0,2,1.6836248636245728,368,1.0,3 +67368,4,1.0,2,1.2706292867660522,369,0.0,3 +67369,4,0.0,2,1.34062922000885,370,0.0,3 +67370,4,0.0,2,1.6036258935928345,371,1.0,3 +67371,4,1.0,2,1.5806262493133545,372,0.0,3 +67372,4,0.0,2,1.2806293964385986,373,1.0,3 +67373,4,0.0,2,1.3976285457611084,374,0.0,3 +67374,4,0.0,2,1.4116283655166626,375,0.0,3 +67375,4,1.0,2,1.7606239318847656,376,0.0,3 +67376,4,1.0,2,1.9656212329864502,377,0.0,3 +67377,4,0.0,2,1.2036292552947998,378,1.0,3 +67378,4,0.0,2,1.3846286535263062,379,1.0,3 +67379,4,0.0,2,1.5836261510849,380,0.0,3 +67380,4,0.0,2,1.8226230144500732,381,1.0,3 +67381,4,0.0,2,1.2366292476654053,382,0.0,3 +67382,4,1.0,2,1.9096219539642334,383,1.0,3 +67383,4,1.0,2,1.642625331878662,384,1.0,3 +67384,4,1.0,2,1.3616290092468262,385,1.0,3 +67385,4,1.0,2,1.5176270008087158,386,1.0,3 +67386,4,1.0,2,1.2956293821334839,387,0.0,3 +67387,4,1.0,2,1.7716237306594849,388,1.0,3 +67388,4,1.0,2,1.5476266145706177,389,1.0,3 +67389,4,1.0,2,1.2816293239593506,390,1.0,3 +67390,4,1.0,2,1.8196231126785278,391,1.0,3 +67391,4,1.0,2,1.2446292638778687,392,0.0,3 +67392,4,0.0,2,1.3046294450759888,393,1.0,3 +67393,4,0.0,2,1.182629108428955,394,1.0,3 +67394,4,1.0,2,1.6356254816055298,395,0.0,3 +67395,4,0.0,2,1.288629412651062,396,1.0,3 +67396,4,0.0,2,1.4566277265548706,397,0.0,3 +67397,4,0.0,2,1.4116283655166626,398,1.0,3 +67398,4,0.0,2,1.2066291570663452,399,1.0,3 +67399,4,0.0,2,1.2956293821334839,400,1.0,3 +67400,4,0.0,2,1.2206292152404785,401,0.0,3 +67401,4,0.0,2,1.1976292133331299,402,1.0,3 +67402,4,0.0,2,1.2296292781829834,403,0.0,3 +67403,4,1.0,2,1.5386266708374023,404,1.0,3 +67404,4,1.0,2,1.4126282930374146,405,1.0,3 +67405,4,1.0,2,1.282629370689392,406,1.0,3 +67406,4,1.0,2,1.2756292819976807,407,1.0,3 +67407,4,1.0,2,1.5076271295547485,408,0.0,3 +67408,4,0.0,2,1.2506293058395386,409,1.0,3 +67409,4,0.0,2,1.259629249572754,410,0.0,3 +67410,4,0.0,2,1.347629189491272,411,1.0,3 +67411,4,0.0,2,1.4756275415420532,412,0.0,3 +67412,4,0.0,2,1.8866221904754639,413,1.0,3 +67413,4,0.0,2,1.4966272115707397,414,0.0,3 +67414,4,1.0,2,1.5366266965866089,415,1.0,3 +67415,4,1.0,2,1.8696224689483643,416,1.0,3 +67416,4,1.0,2,1.6036258935928345,417,1.0,3 +67417,4,1.0,2,1.3396292924880981,418,0.0,3 +67418,4,0.0,2,1.5076271295547485,419,1.0,3 +67419,4,1.0,2,2.2476277351379395,420,1.0,3 +67420,4,1.0,2,1.9376215934753418,421,1.0,3 +67421,4,0.0,2,2.102621078491211,422,0.0,3 +67422,4,0.0,2,1.315629482269287,423,1.0,3 +67423,4,0.0,2,1.5646263360977173,424,1.0,3 +67424,4,1.0,2,1.4646276235580444,425,1.0,3 +67425,4,1.0,2,1.6996246576309204,426,1.0,3 +67426,4,1.0,2,1.4166282415390015,427,0.0,3 +67427,4,0.0,2,1.458627700805664,428,0.0,3 +67428,4,0.0,2,1.527626872062683,429,1.0,3 +67429,4,0.0,2,1.5116270780563354,430,0.0,3 +67430,4,0.0,2,1.3206294775009155,431,0.0,3 +67431,4,1.0,2,1.5426266193389893,432,0.0,3 +67432,4,1.0,2,1.7186243534088135,433,1.0,3 +67433,4,1.0,2,1.4026284217834473,434,0.0,3 +67434,4,1.0,2,1.8936221599578857,435,1.0,3 +67435,4,1.0,2,1.3556290864944458,436,1.0,3 +67436,4,1.0,2,1.598625898361206,437,1.0,3 +67437,4,1.0,2,1.2316292524337769,438,1.0,3 +67438,4,1.0,2,1.3356293439865112,439,1.0,3 +67439,4,1.0,2,1.255629301071167,440,1.0,3 +67440,4,1.0,2,1.4376280307769775,441,1.0,3 +67441,4,1.0,2,1.3676289319992065,442,1.0,3 +67442,4,1.0,2,1.8066232204437256,443,1.0,3 +67443,4,1.0,2,1.3346292972564697,444,1.0,3 +67444,4,1.0,2,1.2066291570663452,445,0.0,3 +67445,4,1.0,2,2.2026257514953613,446,1.0,3 +67446,4,1.0,2,1.653625249862671,447,1.0,3 +67447,4,1.0,2,1.2956293821334839,448,0.0,3 +67448,4,1.0,2,1.5476266145706177,449,0.0,3 +67449,4,0.0,2,1.3306293487548828,450,1.0,3 +67450,4,0.0,2,1.2686293125152588,451,1.0,3 +67451,4,0.0,2,1.2916293144226074,452,0.0,3 +67452,4,1.0,2,1.9386215209960938,453,1.0,3 +67453,4,0.0,2,1.365628957748413,454,0.0,3 +67454,4,1.0,2,1.4076284170150757,455,1.0,3 +67455,4,1.0,2,1.903622031211853,456,0.0,3 +67456,4,1.0,2,2.2076258659362793,457,1.0,3 +67457,4,1.0,2,1.2036292552947998,458,1.0,3 +67458,4,1.0,2,1.292629361152649,459,1.0,3 +67459,4,1.0,2,1.650625228881836,460,1.0,3 +67460,4,1.0,2,1.7096245288848877,461,1.0,3 +67461,4,1.0,2,1.4046283960342407,462,1.0,3 +67462,4,1.0,2,1.5666263103485107,463,1.0,3 +67463,4,1.0,2,1.4266281127929688,464,1.0,3 +67464,4,1.0,2,1.4546277523040771,465,1.0,3 +67465,4,1.0,2,1.457627773284912,466,0.0,3 +67466,4,0.0,2,2.135622501373291,467,1.0,3 +67467,4,0.0,2,1.285629391670227,468,0.0,3 +67468,4,1.0,2,2.075619697570801,469,0.0,3 +67469,4,0.0,2,1.4296281337738037,470,0.0,3 +67470,4,0.0,2,1.8456227779388428,471,1.0,3 +67471,4,0.0,2,1.2476292848587036,472,0.0,3 +67472,4,0.0,2,1.2776293754577637,473,0.0,3 +67473,4,0.0,2,1.6186256408691406,474,1.0,3 +67474,4,0.0,2,1.3096294403076172,475,0.0,3 +67475,4,0.0,2,1.8476227521896362,476,1.0,3 +67476,4,0.0,2,1.3626289367675781,477,0.0,3 +67477,4,0.0,2,1.6406254768371582,478,1.0,3 +67478,4,0.0,2,1.2606292963027954,479,0.0,3 +67479,4,0.0,2,1.5406266450881958,480,1.0,3 +67480,4,0.0,2,1.8956221342086792,481,1.0,3 +67481,4,0.0,2,1.6386253833770752,482,1.0,3 +67482,4,0.0,2,1.187629222869873,483,0.0,3 +67483,4,0.0,2,2.160623788833618,484,0.0,3 +67484,4,0.0,2,1.3046294450759888,485,1.0,3 +67485,4,0.0,2,1.2566293478012085,486,1.0,3 +67486,4,0.0,2,1.3826286792755127,487,1.0,3 +67487,4,0.0,2,1.3826286792755127,488,0.0,3 +67488,4,0.0,2,1.602625846862793,489,1.0,3 +67489,4,0.0,2,1.5646263360977173,490,0.0,3 +67490,4,0.0,2,1.8226230144500732,491,0.0,3 +67491,4,1.0,2,1.5716263055801392,492,1.0,3 +67492,4,1.0,2,1.4216282367706299,493,0.0,3 +67493,4,0.0,2,1.5146269798278809,494,0.0,3 +67494,4,0.0,2,2.2106261253356934,495,0.0,3 +67495,4,1.0,2,1.5216269493103027,496,1.0,3 +67496,4,1.0,2,1.3846286535263062,497,0.0,3 +67497,4,0.0,2,1.7296242713928223,498,1.0,3 +67498,4,0.0,2,1.8926222324371338,499,0.0,3 +67499,4,0.0,2,1.3106293678283691,500,1.0,3 +67500,5,1.0,0,2.4049935340881348,1,1.0,3 +67501,5,1.0,0,1.6909842491149902,2,1.0,3 +67502,5,1.0,0,1.5669857263565063,3,1.0,3 +67503,5,0.0,0,1.296988606452942,4,0.0,3 +67504,5,1.0,0,1.6389849185943604,5,1.0,3 +67505,5,1.0,0,1.9109814167022705,6,1.0,3 +67506,5,1.0,0,1.541986107826233,7,1.0,3 +67507,5,1.0,0,1.6979840993881226,8,1.0,3 +67508,5,1.0,0,1.3459886312484741,9,0.0,3 +67509,5,1.0,0,1.608985185623169,10,1.0,3 +67510,5,1.0,0,1.8309824466705322,11,1.0,3 +67511,5,1.0,0,1.321988582611084,12,0.0,3 +67512,5,0.0,0,1.5039865970611572,13,0.0,3 +67513,5,1.0,0,1.398987889289856,14,1.0,3 +67514,5,1.0,0,1.4259876012802124,15,1.0,3 +67515,5,1.0,0,1.7589833736419678,16,1.0,3 +67516,5,1.0,0,1.2809885740280151,17,1.0,3 +67517,5,1.0,0,1.5779856443405151,18,1.0,3 +67518,5,1.0,0,1.3129886388778687,19,1.0,3 +67519,5,0.0,0,2.200984001159668,20,0.0,3 +67520,5,1.0,0,1.375988245010376,21,1.0,3 +67521,5,1.0,0,1.750983476638794,22,1.0,3 +67522,5,1.0,0,1.256988525390625,23,1.0,3 +67523,5,1.0,0,1.747983455657959,24,1.0,3 +67524,5,1.0,0,1.3119885921478271,25,1.0,3 +67525,5,1.0,0,1.490986704826355,26,1.0,3 +67526,5,1.0,0,1.838982343673706,27,1.0,3 +67527,5,1.0,0,1.3549884557724,28,1.0,3 +67528,5,1.0,0,1.5099865198135376,29,0.0,3 +67529,5,0.0,0,1.8639819622039795,30,0.0,3 +67530,5,0.0,0,1.610985279083252,31,0.0,3 +67531,5,1.0,0,1.8189826011657715,32,1.0,3 +67532,5,1.0,0,1.695984125137329,33,1.0,3 +67533,5,1.0,0,1.3339886665344238,34,1.0,3 +67534,5,1.0,0,1.8749818801879883,35,1.0,3 +67535,5,1.0,0,1.769983172416687,36,1.0,3 +67536,5,1.0,0,1.368988275527954,37,0.0,3 +67537,5,1.0,0,1.4499872922897339,38,1.0,3 +67538,5,0.0,0,1.4929866790771484,39,0.0,3 +67539,5,1.0,0,1.4589871168136597,40,1.0,3 +67540,5,1.0,0,1.3629883527755737,41,1.0,3 +67541,5,0.0,0,2.231985569000244,42,0.0,3 +67542,5,1.0,0,2.3619916439056396,43,1.0,3 +67543,5,1.0,0,1.656984567642212,44,1.0,3 +67544,5,0.0,0,1.2069883346557617,45,0.0,3 +67545,5,1.0,0,1.2959885597229004,46,1.0,3 +67546,5,1.0,0,1.978980541229248,47,1.0,3 +67547,5,1.0,0,1.9639806747436523,48,1.0,3 +67548,5,0.0,0,1.773983120918274,49,0.0,3 +67549,5,1.0,0,1.7359836101531982,50,1.0,3 +67550,5,1.0,0,1.424987554550171,51,1.0,3 +67551,5,1.0,0,1.3589884042739868,52,1.0,3 +67552,5,1.0,0,1.2249884605407715,53,1.0,3 +67553,5,1.0,0,1.4849867820739746,54,0.0,3 +67554,5,0.0,0,1.2629884481430054,55,0.0,3 +67555,5,1.0,0,1.7429835796356201,56,0.0,3 +67556,5,0.0,0,1.7879829406738281,57,0.0,3 +67557,5,1.0,0,1.769983172416687,58,1.0,3 +67558,5,0.0,0,1.2859885692596436,59,0.0,3 +67559,5,1.0,0,1.6939841508865356,60,1.0,3 +67560,5,1.0,0,1.5229862928390503,61,0.0,3 +67561,5,0.0,0,1.607985258102417,62,0.0,3 +67562,5,1.0,0,1.3969879150390625,63,1.0,3 +67563,5,1.0,0,2.419994354248047,64,1.0,3 +67564,5,0.0,0,1.3199886083602905,65,1.0,3 +67565,5,0.0,0,1.5189863443374634,66,0.0,3 +67566,5,1.0,0,1.4309874773025513,67,1.0,3 +67567,5,1.0,0,2.176982879638672,68,1.0,3 +67568,5,1.0,0,1.3309886455535889,69,1.0,3 +67569,5,1.0,0,1.748983383178711,70,1.0,3 +67570,5,1.0,0,1.3199886083602905,71,0.0,3 +67571,5,0.0,0,1.2529884576797485,72,1.0,3 +67572,5,0.0,0,1.7339836359024048,73,1.0,3 +67573,5,0.0,0,1.4879868030548096,74,1.0,3 +67574,5,0.0,0,1.2259883880615234,75,1.0,3 +67575,5,0.0,0,1.2229883670806885,76,1.0,3 +67576,5,0.0,0,1.471987009048462,77,1.0,3 +67577,5,0.0,0,1.4859868288040161,78,0.0,3 +67578,5,1.0,0,1.7869830131530762,79,1.0,3 +67579,5,1.0,0,1.7059839963912964,80,1.0,3 +67580,5,1.0,0,1.5619858503341675,81,1.0,3 +67581,5,1.0,0,1.5259863138198853,82,0.0,3 +67582,5,0.0,0,2.204984188079834,83,1.0,3 +67583,5,0.0,0,1.2199883460998535,84,0.0,3 +67584,5,1.0,0,1.7139838933944702,85,1.0,3 +67585,5,0.0,0,1.6829843521118164,86,0.0,3 +67586,5,1.0,0,1.3319885730743408,87,1.0,3 +67587,5,1.0,0,2.189983606338501,88,0.0,3 +67588,5,1.0,0,1.9299811124801636,89,0.0,3 +67589,5,0.0,0,1.7169837951660156,90,0.0,3 +67590,5,0.0,0,1.3849880695343018,91,0.0,3 +67591,5,1.0,0,1.7019840478897095,92,1.0,3 +67592,5,0.0,0,2.0059800148010254,93,0.0,3 +67593,5,1.0,0,1.6809842586517334,94,1.0,3 +67594,5,1.0,0,1.5849854946136475,95,0.0,3 +67595,5,0.0,0,1.3969879150390625,96,1.0,3 +67596,5,0.0,0,1.3399887084960938,97,0.0,3 +67597,5,1.0,0,2.249986410140991,98,1.0,3 +67598,5,1.0,0,1.3999879360198975,99,1.0,3 +67599,5,1.0,0,1.6379848718643188,100,1.0,3 +67600,5,0.0,0,1.7849829196929932,101,0.0,3 +67601,5,1.0,0,1.6209850311279297,102,1.0,3 +67602,5,1.0,0,1.5409860610961914,103,1.0,3 +67603,5,1.0,0,1.3969879150390625,104,1.0,3 +67604,5,1.0,0,1.4089877605438232,105,1.0,3 +67605,5,1.0,0,1.393988013267517,106,0.0,3 +67606,5,1.0,0,1.4809868335723877,107,1.0,3 +67607,5,1.0,0,1.3059885501861572,108,1.0,3 +67608,5,1.0,0,1.9019814729690552,109,0.0,3 +67609,5,0.0,0,1.7239837646484375,110,0.0,3 +67610,5,0.0,0,2.030979871749878,111,1.0,3 +67611,5,0.0,0,1.4619871377944946,112,0.0,3 +67612,5,1.0,0,2.076979160308838,113,1.0,3 +67613,5,1.0,0,1.8309824466705322,114,1.0,3 +67614,5,1.0,0,1.442987322807312,115,1.0,3 +67615,5,1.0,0,1.4189876317977905,116,1.0,3 +67616,5,0.0,0,1.7279837131500244,117,0.0,3 +67617,5,0.0,0,2.032979726791382,118,0.0,3 +67618,5,1.0,0,1.511986494064331,119,1.0,3 +67619,5,0.0,0,1.7179838418960571,120,0.0,3 +67620,5,1.0,0,1.648984670639038,121,1.0,3 +67621,5,1.0,0,1.7979828119277954,122,1.0,3 +67622,5,1.0,0,1.6799843311309814,123,1.0,3 +67623,5,1.0,0,1.25998854637146,124,1.0,3 +67624,5,1.0,0,1.928981065750122,125,0.0,3 +67625,5,1.0,0,1.7189838886260986,126,1.0,3 +67626,5,1.0,0,1.9869804382324219,127,1.0,3 +67627,5,1.0,0,1.4769868850708008,128,1.0,3 +67628,5,1.0,0,1.5479860305786133,129,1.0,3 +67629,5,1.0,0,2.231985569000244,130,1.0,3 +67630,5,1.0,0,1.446987271308899,131,1.0,3 +67631,5,1.0,0,1.3489885330200195,132,1.0,3 +67632,5,1.0,0,1.796982765197754,133,1.0,3 +67633,5,1.0,0,2.3299901485443115,134,1.0,3 +67634,5,1.0,0,1.5189863443374634,135,0.0,3 +67635,5,0.0,0,1.936980962753296,136,0.0,3 +67636,5,1.0,0,1.4819868803024292,137,1.0,3 +67637,5,1.0,0,1.4109877347946167,138,0.0,3 +67638,5,1.0,0,1.9559807777404785,139,0.0,3 +67639,5,1.0,0,1.3579884767532349,140,0.0,3 +67640,5,0.0,0,1.3679883480072021,141,0.0,3 +67641,5,1.0,0,1.3269885778427124,142,1.0,3 +67642,5,1.0,0,1.8709819316864014,143,1.0,3 +67643,5,1.0,0,1.423987627029419,144,1.0,3 +67644,5,1.0,0,1.4359874725341797,145,1.0,3 +67645,5,1.0,0,1.9029815196990967,146,0.0,3 +67646,5,0.0,0,2.443995475769043,147,0.0,3 +67647,5,0.0,0,1.22398841381073,148,0.0,3 +67648,5,1.0,0,1.8859816789627075,149,1.0,3 +67649,5,1.0,0,1.284988522529602,150,1.0,3 +67650,5,1.0,0,2.229985475540161,151,1.0,3 +67651,5,1.0,0,1.4819868803024292,152,1.0,3 +67652,5,1.0,0,1.698984146118164,153,1.0,3 +67653,5,1.0,0,1.7199838161468506,154,1.0,3 +67654,5,1.0,0,1.3609883785247803,155,1.0,3 +67655,5,1.0,0,1.6639845371246338,156,1.0,3 +67656,5,1.0,0,1.3569884300231934,157,1.0,3 +67657,5,1.0,0,1.6239850521087646,158,1.0,3 +67658,5,1.0,0,1.5839855670928955,159,1.0,3 +67659,5,1.0,0,1.2279884815216064,160,1.0,3 +67660,5,1.0,0,1.5669857263565063,161,1.0,3 +67661,5,1.0,0,1.9529807567596436,162,1.0,3 +67662,5,1.0,0,1.7809829711914062,163,1.0,3 +67663,5,1.0,0,1.2779885530471802,164,0.0,3 +67664,5,1.0,0,1.2769885063171387,165,0.0,3 +67665,5,0.0,0,1.2809885740280151,166,0.0,3 +67666,5,1.0,0,1.8349823951721191,167,1.0,3 +67667,5,1.0,0,1.6699844598770142,168,1.0,3 +67668,5,1.0,0,2.193983793258667,169,1.0,3 +67669,5,1.0,0,1.6329848766326904,170,1.0,3 +67670,5,1.0,0,1.6209850311279297,171,1.0,3 +67671,5,0.0,0,1.467987060546875,172,0.0,3 +67672,5,1.0,0,1.8759818077087402,173,1.0,3 +67673,5,1.0,0,2.490997791290283,174,1.0,3 +67674,5,1.0,0,1.5269862413406372,175,1.0,3 +67675,5,1.0,0,1.7789831161499023,176,1.0,3 +67676,5,1.0,0,1.8239824771881104,177,0.0,3 +67677,5,1.0,0,1.6329848766326904,178,1.0,3 +67678,5,1.0,0,1.5549858808517456,179,1.0,3 +67679,5,1.0,0,1.7379835844039917,180,1.0,3 +67680,5,1.0,0,1.9669806957244873,181,1.0,3 +67681,5,0.0,0,2.227985382080078,182,0.0,3 +67682,5,1.0,0,1.4919867515563965,183,1.0,3 +67683,5,1.0,0,1.5309861898422241,184,1.0,3 +67684,5,1.0,0,1.8259824514389038,185,1.0,3 +67685,5,1.0,0,1.9399809837341309,186,1.0,3 +67686,5,1.0,0,1.5659857988357544,187,1.0,3 +67687,5,1.0,0,1.2709884643554688,188,1.0,3 +67688,5,1.0,0,1.5449860095977783,189,1.0,3 +67689,5,1.0,0,1.7359836101531982,190,1.0,3 +67690,5,1.0,0,1.3299885988235474,191,1.0,3 +67691,5,1.0,0,1.650984764099121,192,1.0,3 +67692,5,1.0,0,1.4189876317977905,193,0.0,3 +67693,5,0.0,0,1.2339884042739868,194,0.0,3 +67694,5,1.0,0,2.3919930458068848,195,1.0,3 +67695,5,1.0,0,2.214984893798828,196,1.0,3 +67696,5,1.0,0,1.750983476638794,197,1.0,3 +67697,5,1.0,0,1.2039883136749268,198,1.0,3 +67698,5,1.0,0,1.46498703956604,199,1.0,3 +67699,5,1.0,0,1.3619884252548218,200,1.0,3 +67700,5,1.0,0,1.4399874210357666,201,1.0,3 +67701,5,1.0,0,1.3999879360198975,202,1.0,3 +67702,5,1.0,0,1.564985752105713,203,1.0,3 +67703,5,1.0,0,1.5399861335754395,204,1.0,3 +67704,5,1.0,0,1.5779856443405151,205,1.0,3 +67705,5,1.0,0,1.7689831256866455,206,1.0,3 +67706,5,1.0,0,1.8499821424484253,207,1.0,3 +67707,5,1.0,0,1.6179851293563843,208,1.0,3 +67708,5,0.0,0,1.6239850521087646,209,0.0,3 +67709,5,1.0,0,1.4709869623184204,210,1.0,3 +67710,5,1.0,0,1.3749881982803345,211,1.0,3 +67711,5,1.0,0,1.5209863185882568,212,1.0,3 +67712,5,1.0,0,1.5629857778549194,213,0.0,3 +67713,5,0.0,0,1.350988507270813,214,1.0,3 +67714,5,0.0,0,1.446987271308899,215,0.0,3 +67715,5,0.0,0,1.5779856443405151,216,0.0,3 +67716,5,1.0,0,1.376988172531128,217,1.0,3 +67717,5,1.0,0,1.6319849491119385,218,0.0,3 +67718,5,0.0,0,1.254988431930542,219,0.0,3 +67719,5,0.0,0,1.446987271308899,220,0.0,3 +67720,5,1.0,0,1.4259876012802124,221,1.0,3 +67721,5,1.0,0,1.6099852323532104,222,1.0,3 +67722,5,0.0,0,1.2699885368347168,223,0.0,3 +67723,5,1.0,0,1.7659832239151,224,1.0,3 +67724,5,1.0,0,1.8019827604293823,225,0.0,3 +67725,5,0.0,0,2.0009801387786865,226,0.0,3 +67726,5,0.0,0,1.6199851036071777,227,0.0,3 +67727,5,0.0,0,1.2749885320663452,228,0.0,3 +67728,5,0.0,0,1.5029865503311157,229,0.0,3 +67729,5,0.0,0,1.7149839401245117,230,0.0,3 +67730,5,1.0,0,1.398987889289856,231,1.0,3 +67731,5,1.0,0,1.4929866790771484,232,1.0,3 +67732,5,1.0,0,1.5059865713119507,233,1.0,3 +67733,5,1.0,0,1.9239811897277832,234,0.0,3 +67734,5,0.0,0,1.3599884510040283,235,1.0,3 +67735,5,0.0,0,1.3409886360168457,236,0.0,3 +67736,5,0.0,0,1.586985468864441,237,0.0,3 +67737,5,0.0,0,1.2389883995056152,238,0.0,3 +67738,5,0.0,0,1.6749844551086426,239,0.0,3 +67739,5,0.0,0,2.074979305267334,240,1.0,3 +67740,5,0.0,0,1.4029878377914429,241,1.0,3 +67741,5,0.0,0,1.2949885129928589,242,1.0,3 +67742,5,0.0,0,1.4839868545532227,243,0.0,3 +67743,5,1.0,0,1.8609819412231445,244,1.0,3 +67744,5,1.0,0,1.8279824256896973,245,1.0,3 +67745,5,1.0,0,1.7359836101531982,246,1.0,3 +67746,5,0.0,0,1.489986777305603,247,1.0,3 +67747,5,0.0,0,1.324988603591919,248,0.0,3 +67748,5,1.0,0,1.3409886360168457,249,1.0,3 +67749,5,1.0,0,2.3539912700653076,250,1.0,3 +67750,5,0.0,0,1.3369886875152588,251,0.0,3 +67751,5,1.0,0,1.538986086845398,252,1.0,3 +67752,5,1.0,0,1.4029878377914429,253,1.0,3 +67753,5,1.0,0,1.4369874000549316,254,1.0,3 +67754,5,1.0,0,1.376988172531128,255,0.0,3 +67755,5,0.0,0,1.65598464012146,256,0.0,3 +67756,5,1.0,0,1.651984691619873,257,1.0,3 +67757,5,1.0,0,1.2279884815216064,258,1.0,3 +67758,5,1.0,0,1.5309861898422241,259,1.0,3 +67759,5,0.0,0,1.4139877557754517,260,0.0,3 +67760,5,1.0,0,2.491997718811035,261,1.0,3 +67761,5,1.0,0,1.9719805717468262,262,1.0,3 +67762,5,0.0,0,1.6949841976165771,263,0.0,3 +67763,5,1.0,0,1.5519859790802002,264,1.0,3 +67764,5,1.0,0,1.4589871168136597,265,1.0,3 +67765,5,1.0,0,1.5469859838485718,266,1.0,3 +67766,5,0.0,0,1.287988543510437,267,0.0,3 +67767,5,1.0,0,1.769983172416687,268,1.0,3 +67768,5,1.0,0,1.46498703956604,269,1.0,3 +67769,5,1.0,0,1.2869884967803955,270,1.0,3 +67770,5,1.0,0,2.251986503601074,271,1.0,3 +67771,5,1.0,0,1.3859881162643433,272,1.0,3 +67772,5,0.0,0,1.4369874000549316,273,0.0,3 +67773,5,1.0,0,1.6729843616485596,274,1.0,3 +67774,5,1.0,0,2.1099798679351807,275,1.0,3 +67775,5,1.0,0,2.0599794387817383,276,1.0,3 +67776,5,0.0,0,1.1759883165359497,277,0.0,3 +67777,5,1.0,0,1.467987060546875,278,0.0,3 +67778,5,1.0,0,1.3259886503219604,279,1.0,3 +67779,5,0.0,0,1.3459886312484741,280,0.0,3 +67780,5,1.0,0,2.211984634399414,281,1.0,3 +67781,5,1.0,0,1.65598464012146,282,1.0,3 +67782,5,1.0,0,1.346988558769226,283,1.0,3 +67783,5,1.0,0,1.4599871635437012,284,0.0,3 +67784,5,1.0,0,1.4799869060516357,285,1.0,3 +67785,5,1.0,0,1.3369886875152588,286,1.0,3 +67786,5,1.0,0,1.7429835796356201,287,1.0,3 +67787,5,1.0,0,1.5549858808517456,288,1.0,3 +67788,5,1.0,0,1.9269812107086182,289,1.0,3 +67789,5,1.0,0,2.143981456756592,290,1.0,3 +67790,5,0.0,0,1.5909854173660278,291,0.0,3 +67791,5,1.0,0,1.740983486175537,292,1.0,3 +67792,5,1.0,0,1.2699885368347168,293,1.0,3 +67793,5,0.0,0,1.2669885158538818,294,0.0,3 +67794,5,1.0,0,1.467987060546875,295,1.0,3 +67795,5,0.0,0,1.4099878072738647,296,0.0,3 +67796,5,0.0,0,1.2959885597229004,297,0.0,3 +67797,5,1.0,0,1.2329884767532349,298,1.0,3 +67798,5,0.0,0,1.6329848766326904,299,0.0,3 +67799,5,1.0,0,1.3369886875152588,300,1.0,3 +67800,5,1.0,0,1.3869880437850952,301,1.0,3 +67801,5,0.0,0,1.5949854850769043,302,0.0,3 +67802,5,1.0,0,1.3679883480072021,303,0.0,3 +67803,5,1.0,0,1.8509821891784668,304,1.0,3 +67804,5,0.0,0,1.4259876012802124,305,0.0,3 +67805,5,1.0,0,1.2949885129928589,306,1.0,3 +67806,5,1.0,0,1.2859885692596436,307,1.0,3 +67807,5,1.0,0,2.1359810829162598,308,0.0,3 +67808,5,1.0,0,1.4189876317977905,309,1.0,3 +67809,5,1.0,0,1.4029878377914429,310,1.0,3 +67810,5,1.0,0,1.4729869365692139,311,1.0,3 +67811,5,1.0,0,1.281988501548767,312,0.0,3 +67812,5,1.0,0,1.7999827861785889,313,1.0,3 +67813,5,1.0,0,1.9409809112548828,314,1.0,3 +67814,5,1.0,0,1.5779856443405151,315,1.0,3 +67815,5,1.0,0,1.5919854640960693,316,1.0,3 +67816,5,0.0,0,1.6409847736358643,317,0.0,3 +67817,5,1.0,0,1.5069864988327026,318,1.0,3 +67818,5,1.0,0,1.4049878120422363,319,0.0,3 +67819,5,0.0,0,1.4089877605438232,320,0.0,3 +67820,5,0.0,0,1.6649844646453857,321,0.0,3 +67821,5,0.0,0,1.5329861640930176,322,1.0,3 +67822,5,0.0,0,2.0419797897338867,323,0.0,3 +67823,5,0.0,0,2.034979820251465,324,0.0,3 +67824,5,0.0,0,1.3429886102676392,325,0.0,3 +67825,5,1.0,0,1.700984001159668,326,1.0,3 +67826,5,1.0,0,1.3349885940551758,327,1.0,3 +67827,5,1.0,0,1.5709856748580933,328,1.0,3 +67828,5,1.0,0,1.3919880390167236,329,1.0,3 +67829,5,1.0,0,1.3609883785247803,330,1.0,3 +67830,5,1.0,0,1.5499860048294067,331,1.0,3 +67831,5,1.0,0,1.5109864473342896,332,1.0,3 +67832,5,1.0,0,1.650984764099121,333,1.0,3 +67833,5,0.0,0,1.25998854637146,334,0.0,3 +67834,5,1.0,0,1.6009852886199951,335,1.0,3 +67835,5,1.0,0,1.6799843311309814,336,1.0,3 +67836,5,1.0,0,1.4519872665405273,337,1.0,3 +67837,5,1.0,0,2.14298152923584,338,0.0,3 +67838,5,0.0,0,1.318988561630249,339,0.0,3 +67839,5,1.0,0,1.5279862880706787,340,0.0,3 +67840,5,0.0,0,1.3029885292053223,341,1.0,3 +67841,5,0.0,0,1.346988558769226,342,1.0,3 +67842,5,0.0,0,1.5059865713119507,343,0.0,3 +67843,5,0.0,0,1.19398832321167,344,0.0,3 +67844,5,0.0,0,2.193983793258667,345,1.0,3 +67845,5,0.0,0,1.6639845371246338,346,0.0,3 +67846,5,1.0,0,1.7279837131500244,347,1.0,3 +67847,5,1.0,0,1.2099883556365967,348,0.0,3 +67848,5,1.0,0,2.3399906158447266,349,1.0,3 +67849,5,1.0,0,1.5769855976104736,350,1.0,3 +67850,5,1.0,0,1.5109864473342896,351,1.0,3 +67851,5,1.0,0,1.7999827861785889,352,1.0,3 +67852,5,1.0,0,1.327988624572754,353,0.0,3 +67853,5,0.0,0,2.024979829788208,354,0.0,3 +67854,5,0.0,0,1.8569819927215576,355,0.0,3 +67855,5,0.0,0,1.8189826011657715,356,0.0,3 +67856,5,0.0,0,1.3409886360168457,357,0.0,3 +67857,5,0.0,0,1.2359883785247803,358,0.0,3 +67858,5,0.0,0,1.2189884185791016,359,0.0,3 +67859,5,0.0,0,1.5049865245819092,360,0.0,3 +67860,5,0.0,0,1.3389886617660522,361,0.0,3 +67861,5,1.0,0,2.184983253479004,362,1.0,3 +67862,5,1.0,0,1.5219863653182983,363,1.0,3 +67863,5,0.0,0,1.564985752105713,364,0.0,3 +67864,5,1.0,0,1.2299884557724,365,1.0,3 +67865,5,1.0,0,1.3909879922866821,366,1.0,3 +67866,5,1.0,0,1.4329874515533447,367,1.0,3 +67867,5,0.0,0,1.4749869108200073,368,1.0,3 +67868,5,0.0,0,1.3919880390167236,369,0.0,3 +67869,5,1.0,0,1.625985026359558,370,1.0,3 +67870,5,1.0,0,1.3869880437850952,371,1.0,3 +67871,5,1.0,0,1.6729843616485596,372,1.0,3 +67872,5,1.0,0,1.5629857778549194,373,1.0,3 +67873,5,1.0,0,1.975980520248413,374,1.0,3 +67874,5,1.0,0,1.3649883270263672,375,1.0,3 +67875,5,1.0,0,1.5039865970611572,376,1.0,3 +67876,5,1.0,0,1.8079826831817627,377,1.0,3 +67877,5,1.0,0,1.4299875497817993,378,1.0,3 +67878,5,1.0,0,1.317988634109497,379,1.0,3 +67879,5,1.0,0,1.3369886875152588,380,1.0,3 +67880,5,1.0,0,1.2999885082244873,381,1.0,3 +67881,5,1.0,0,1.4519872665405273,382,0.0,3 +67882,5,1.0,0,1.7369835376739502,383,1.0,3 +67883,5,1.0,0,1.861981987953186,384,1.0,3 +67884,5,1.0,0,1.5299862623214722,385,1.0,3 +67885,5,1.0,0,1.6799843311309814,386,1.0,3 +67886,5,1.0,0,1.8589820861816406,387,1.0,3 +67887,5,1.0,0,1.3779882192611694,388,1.0,3 +67888,5,1.0,0,1.4599871635437012,389,1.0,3 +67889,5,1.0,0,1.4119877815246582,390,0.0,3 +67890,5,1.0,0,1.424987554550171,391,1.0,3 +67891,5,1.0,0,1.3899880647659302,392,1.0,3 +67892,5,1.0,0,1.5549858808517456,393,0.0,3 +67893,5,0.0,0,1.3109885454177856,394,0.0,3 +67894,5,0.0,0,1.1739883422851562,395,0.0,3 +67895,5,0.0,0,2.189983606338501,396,0.0,3 +67896,5,0.0,0,1.3589884042739868,397,0.0,3 +67897,5,0.0,0,1.6949841976165771,398,0.0,3 +67898,5,1.0,0,1.9719805717468262,399,0.0,3 +67899,5,0.0,0,1.8899816274642944,400,0.0,3 +67900,5,1.0,0,2.0599794387817383,401,1.0,3 +67901,5,1.0,0,1.3789881467819214,402,0.0,3 +67902,5,0.0,0,1.3009885549545288,403,0.0,3 +67903,5,0.0,0,1.8629820346832275,404,0.0,3 +67904,5,1.0,0,1.652984619140625,405,0.0,3 +67905,5,1.0,0,1.534986138343811,406,0.0,3 +67906,5,1.0,0,2.0549795627593994,407,0.0,3 +67907,5,1.0,0,1.7399835586547852,408,1.0,3 +67908,5,1.0,0,1.2709884643554688,409,1.0,3 +67909,5,1.0,0,1.5589858293533325,410,0.0,3 +67910,5,0.0,0,1.5899854898452759,411,0.0,3 +67911,5,1.0,0,1.5729856491088867,412,1.0,3 +67912,5,1.0,0,1.5669857263565063,413,1.0,3 +67913,5,1.0,0,1.4259876012802124,414,1.0,3 +67914,5,1.0,0,1.1859883069992065,415,1.0,3 +67915,5,0.0,0,1.3429886102676392,416,0.0,3 +67916,5,1.0,0,1.740983486175537,417,1.0,3 +67917,5,1.0,0,1.5259863138198853,418,1.0,3 +67918,5,1.0,0,1.6829843521118164,419,0.0,3 +67919,5,1.0,0,1.5359861850738525,420,1.0,3 +67920,5,1.0,0,1.6059852838516235,421,1.0,3 +67921,5,1.0,0,1.3379886150360107,422,1.0,3 +67922,5,1.0,0,1.3429886102676392,423,1.0,3 +67923,5,1.0,0,1.748983383178711,424,1.0,3 +67924,5,1.0,0,1.5359861850738525,425,1.0,3 +67925,5,0.0,0,1.5329861640930176,426,0.0,3 +67926,5,0.0,0,1.4179877042770386,427,1.0,3 +67927,5,0.0,0,1.8609819412231445,428,0.0,3 +67928,5,1.0,0,1.5099865198135376,429,1.0,3 +67929,5,1.0,0,1.6159851551055908,430,1.0,3 +67930,5,1.0,0,1.8449821472167969,431,1.0,3 +67931,5,1.0,0,1.2999885082244873,432,1.0,3 +67932,5,1.0,0,1.6789844036102295,433,1.0,3 +67933,5,0.0,0,2.065979480743408,434,0.0,3 +67934,5,1.0,0,1.2369884252548218,435,1.0,3 +67935,5,1.0,0,1.324988603591919,436,1.0,3 +67936,5,1.0,0,1.887981653213501,437,0.0,3 +67937,5,0.0,0,1.5899854898452759,438,1.0,3 +67938,5,0.0,0,1.22398841381073,439,0.0,3 +67939,5,1.0,0,1.790982961654663,440,1.0,3 +67940,5,1.0,0,1.346988558769226,441,1.0,3 +67941,5,1.0,0,1.7589833736419678,442,1.0,3 +67942,5,1.0,0,1.5179864168167114,443,1.0,3 +67943,5,1.0,0,1.6289849281311035,444,1.0,3 +67944,5,1.0,0,1.5099865198135376,445,1.0,3 +67945,5,1.0,0,1.7459834814071655,446,1.0,3 +67946,5,1.0,0,1.4229875802993774,447,1.0,3 +67947,5,0.0,0,1.3519885540008545,448,0.0,3 +67948,5,1.0,0,2.150981903076172,449,1.0,3 +67949,5,1.0,0,1.3809881210327148,450,1.0,3 +67950,5,1.0,0,1.376988172531128,451,0.0,3 +67951,5,1.0,0,2.42199444770813,452,1.0,3 +67952,5,0.0,0,1.5699857473373413,453,0.0,3 +67953,5,1.0,0,1.9119813442230225,454,0.0,3 +67954,5,0.0,0,1.8049826622009277,455,0.0,3 +67955,5,1.0,0,1.314988613128662,456,1.0,3 +67956,5,1.0,0,2.1009793281555176,457,1.0,3 +67957,5,1.0,0,1.555985927581787,458,1.0,3 +67958,5,1.0,0,1.8269824981689453,459,1.0,3 +67959,5,1.0,0,1.4809868335723877,460,1.0,3 +67960,5,1.0,0,1.6709845066070557,461,1.0,3 +67961,5,1.0,0,1.4279875755310059,462,1.0,3 +67962,5,1.0,0,1.7349836826324463,463,1.0,3 +67963,5,1.0,0,2.0409796237945557,464,1.0,3 +67964,5,1.0,0,1.5659857988357544,465,1.0,3 +67965,5,1.0,0,1.9159812927246094,466,1.0,3 +67966,5,1.0,0,1.4319875240325928,467,1.0,3 +67967,5,1.0,0,1.882981777191162,468,1.0,3 +67968,5,1.0,0,1.8669819831848145,469,1.0,3 +67969,5,0.0,0,1.1989883184432983,470,0.0,3 +67970,5,1.0,0,1.7149839401245117,471,1.0,3 +67971,5,1.0,0,1.7299836874008179,472,1.0,3 +67972,5,1.0,0,1.5319862365722656,473,1.0,3 +67973,5,1.0,0,1.5769855976104736,474,1.0,3 +67974,5,1.0,0,1.4729869365692139,475,1.0,3 +67975,5,1.0,0,1.4539872407913208,476,1.0,3 +67976,5,1.0,0,1.658984661102295,477,1.0,3 +67977,5,1.0,0,1.9979802370071411,478,1.0,3 +67978,5,1.0,0,1.3569884300231934,479,1.0,3 +67979,5,1.0,0,1.3669883012771606,480,1.0,3 +67980,5,0.0,0,1.4829868078231812,481,0.0,3 +67981,5,1.0,0,1.3449885845184326,482,1.0,3 +67982,5,1.0,0,1.97998046875,483,1.0,3 +67983,5,1.0,0,1.5769855976104736,484,0.0,3 +67984,5,0.0,0,1.4039878845214844,485,0.0,3 +67985,5,0.0,0,1.3669883012771606,486,1.0,3 +67986,5,0.0,0,1.4039878845214844,487,0.0,3 +67987,5,0.0,0,1.9909803867340088,488,0.0,3 +67988,5,1.0,0,1.5759856700897217,489,1.0,3 +67989,5,1.0,0,1.4129877090454102,490,1.0,3 +67990,5,1.0,0,1.512986421585083,491,1.0,3 +67991,5,1.0,0,1.4449872970581055,492,1.0,3 +67992,5,1.0,0,2.464996337890625,493,1.0,3 +67993,5,0.0,0,1.251988410949707,494,0.0,3 +67994,5,1.0,0,1.6919841766357422,495,0.0,3 +67995,5,1.0,0,1.284988522529602,496,0.0,3 +67996,5,0.0,0,1.376988172531128,497,0.0,3 +67997,5,0.0,0,1.8709819316864014,498,0.0,3 +67998,5,0.0,0,2.1319808959960938,499,0.0,3 +67999,5,0.0,0,1.2039883136749268,500,0.0,3 +68000,5,0.0,1,2.016979932785034,1,0.0,3 +68001,5,1.0,1,1.6759843826293945,2,0.0,3 +68002,5,0.0,1,1.6759843826293945,3,0.0,3 +68003,5,1.0,1,1.887981653213501,4,1.0,3 +68004,5,1.0,1,1.4789868593215942,5,1.0,3 +68005,5,1.0,1,1.5179864168167114,6,1.0,3 +68006,5,1.0,1,1.2749885320663452,7,0.0,3 +68007,5,1.0,1,1.953980803489685,8,1.0,3 +68008,5,1.0,1,1.4659870862960815,9,1.0,3 +68009,5,0.0,1,1.4099878072738647,10,0.0,3 +68010,5,1.0,1,1.7779830694198608,11,0.0,3 +68011,5,1.0,1,1.4809868335723877,12,0.0,3 +68012,5,1.0,1,1.4879868030548096,13,1.0,3 +68013,5,1.0,1,1.5489859580993652,14,1.0,3 +68014,5,1.0,1,1.5219863653182983,15,1.0,3 +68015,5,0.0,1,1.5439860820770264,16,1.0,3 +68016,5,0.0,1,1.607985258102417,17,1.0,3 +68017,5,0.0,1,1.9689805507659912,18,1.0,3 +68018,5,0.0,1,1.884981632232666,19,0.0,3 +68019,5,1.0,1,1.4349874258041382,20,0.0,3 +68020,5,0.0,1,1.6269850730895996,21,0.0,3 +68021,5,1.0,1,1.6209850311279297,22,1.0,3 +68022,5,1.0,1,1.4839868545532227,23,1.0,3 +68023,5,1.0,1,1.8509821891784668,24,1.0,3 +68024,5,1.0,1,1.891981601715088,25,1.0,3 +68025,5,1.0,1,1.6939841508865356,26,1.0,3 +68026,5,1.0,1,1.4229875802993774,27,1.0,3 +68027,5,1.0,1,1.2499884366989136,28,0.0,3 +68028,5,1.0,1,1.790982961654663,29,1.0,3 +68029,5,0.0,1,1.3599884510040283,30,0.0,3 +68030,5,1.0,1,1.3789881467819214,31,1.0,3 +68031,5,1.0,1,1.2699885368347168,32,1.0,3 +68032,5,1.0,1,2.454996109008789,33,1.0,3 +68033,5,1.0,1,1.420987606048584,34,1.0,3 +68034,5,1.0,1,1.5779856443405151,35,1.0,3 +68035,5,1.0,1,1.5149863958358765,36,1.0,3 +68036,5,1.0,1,1.3369886875152588,37,1.0,3 +68037,5,1.0,1,1.798982858657837,38,1.0,3 +68038,5,1.0,1,1.3099886178970337,39,1.0,3 +68039,5,1.0,1,1.3739882707595825,40,1.0,3 +68040,5,1.0,1,2.1049795150756836,41,1.0,3 +68041,5,1.0,1,1.6099852323532104,42,1.0,3 +68042,5,1.0,1,1.9499808549880981,43,0.0,3 +68043,5,0.0,1,1.5029865503311157,44,1.0,3 +68044,5,0.0,1,1.4559872150421143,45,0.0,3 +68045,5,0.0,1,1.3549884557724,46,0.0,3 +68046,5,1.0,1,1.6139851808547974,47,1.0,3 +68047,5,1.0,1,1.842982292175293,48,1.0,3 +68048,5,1.0,1,1.4879868030548096,49,1.0,3 +68049,5,1.0,1,1.4879868030548096,50,1.0,3 +68050,5,1.0,1,1.6179851293563843,51,0.0,3 +68051,5,1.0,1,1.5469859838485718,52,1.0,3 +68052,5,0.0,1,1.4349874258041382,53,0.0,3 +68053,5,1.0,1,1.4969866275787354,54,1.0,3 +68054,5,1.0,1,1.3349885940551758,55,1.0,3 +68055,5,0.0,1,1.3709882497787476,56,0.0,3 +68056,5,1.0,1,1.538986086845398,57,1.0,3 +68057,5,1.0,1,1.4589871168136597,58,1.0,3 +68058,5,1.0,1,1.5219863653182983,59,1.0,3 +68059,5,1.0,1,1.4929866790771484,60,1.0,3 +68060,5,1.0,1,1.7659832239151,61,1.0,3 +68061,5,1.0,1,1.3699883222579956,62,1.0,3 +68062,5,1.0,1,1.6329848766326904,63,0.0,3 +68063,5,0.0,1,1.7239837646484375,64,0.0,3 +68064,5,1.0,1,1.582985520362854,65,0.0,3 +68065,5,0.0,1,2.149981737136841,66,0.0,3 +68066,5,0.0,1,1.6309850215911865,67,0.0,3 +68067,5,1.0,1,1.4499872922897339,68,1.0,3 +68068,5,1.0,1,1.4889867305755615,69,0.0,3 +68069,5,0.0,1,1.3999879360198975,70,0.0,3 +68070,5,1.0,1,1.468986988067627,71,0.0,3 +68071,5,0.0,1,1.7309837341308594,72,0.0,3 +68072,5,0.0,1,1.438987374305725,73,0.0,3 +68073,5,0.0,1,1.398987889289856,74,0.0,3 +68074,5,0.0,1,1.3029885292053223,75,0.0,3 +68075,5,0.0,1,1.650984764099121,76,0.0,3 +68076,5,0.0,1,1.490986704826355,77,0.0,3 +68077,5,0.0,1,1.4509872198104858,78,0.0,3 +68078,5,0.0,1,1.3349885940551758,79,0.0,3 +68079,5,1.0,1,2.3189897537231445,80,1.0,3 +68080,5,1.0,1,1.6009852886199951,81,1.0,3 +68081,5,1.0,1,1.3999879360198975,82,1.0,3 +68082,5,1.0,1,1.2779885530471802,83,1.0,3 +68083,5,1.0,1,1.4879868030548096,84,1.0,3 +68084,5,1.0,1,1.3129886388778687,85,1.0,3 +68085,5,1.0,1,1.3059885501861572,86,1.0,3 +68086,5,1.0,1,1.4539872407913208,87,1.0,3 +68087,5,1.0,1,1.7249836921691895,88,0.0,3 +68088,5,1.0,1,1.9899803400039673,89,0.0,3 +68089,5,0.0,1,2.0129799842834473,90,1.0,3 +68090,5,0.0,1,1.2319884300231934,91,1.0,3 +68091,5,0.0,1,1.2459884881973267,92,0.0,3 +68092,5,0.0,1,1.4059878587722778,93,1.0,3 +68093,5,0.0,1,1.4379874467849731,94,0.0,3 +68094,5,1.0,1,1.4819868803024292,95,1.0,3 +68095,5,1.0,1,1.5879855155944824,96,1.0,3 +68096,5,1.0,1,1.6289849281311035,97,1.0,3 +68097,5,0.0,1,1.251988410949707,98,0.0,3 +68098,5,1.0,1,1.4839868545532227,99,1.0,3 +68099,5,1.0,1,1.3419886827468872,100,1.0,3 +68100,5,1.0,1,1.7369835376739502,101,1.0,3 +68101,5,1.0,1,1.4379874467849731,102,1.0,3 +68102,5,1.0,1,1.4279875755310059,103,1.0,3 +68103,5,1.0,1,1.3589884042739868,104,1.0,3 +68104,5,1.0,1,1.8969814777374268,105,1.0,3 +68105,5,1.0,1,1.7729830741882324,106,0.0,3 +68106,5,0.0,1,1.3119885921478271,107,1.0,3 +68107,5,0.0,1,1.560985803604126,108,0.0,3 +68108,5,0.0,1,1.976980447769165,109,1.0,3 +68109,5,0.0,1,1.8299823999404907,110,0.0,3 +68110,5,1.0,1,1.5929853916168213,111,0.0,3 +68111,5,1.0,1,1.494986653327942,112,1.0,3 +68112,5,1.0,1,1.4629870653152466,113,1.0,3 +68113,5,1.0,1,1.743983507156372,114,1.0,3 +68114,5,1.0,1,2.0979793071746826,115,1.0,3 +68115,5,1.0,1,1.4989866018295288,116,0.0,3 +68116,5,1.0,1,1.6759843826293945,117,1.0,3 +68117,5,1.0,1,1.7799830436706543,118,1.0,3 +68118,5,1.0,1,1.5439860820770264,119,1.0,3 +68119,5,1.0,1,1.5309861898422241,120,0.0,3 +68120,5,0.0,1,1.3959879875183105,121,0.0,3 +68121,5,0.0,1,1.9449808597564697,122,0.0,3 +68122,5,1.0,1,1.6919841766357422,123,0.0,3 +68123,5,1.0,1,1.9509809017181396,124,1.0,3 +68124,5,1.0,1,1.748983383178711,125,1.0,3 +68125,5,0.0,1,1.2019883394241333,126,1.0,3 +68126,5,0.0,1,1.6759843826293945,127,0.0,3 +68127,5,1.0,1,1.3079886436462402,128,0.0,3 +68128,5,1.0,1,1.6889841556549072,129,1.0,3 +68129,5,1.0,1,1.3839881420135498,130,1.0,3 +68130,5,0.0,1,2.1019794940948486,131,1.0,3 +68131,5,0.0,1,1.656984567642212,132,1.0,3 +68132,5,1.0,1,2.0089800357818604,133,0.0,3 +68133,5,0.0,1,1.3839881420135498,134,0.0,3 +68134,5,0.0,1,1.2369884252548218,135,1.0,3 +68135,5,0.0,1,1.3049886226654053,136,0.0,3 +68136,5,0.0,1,1.3329886198043823,137,0.0,3 +68137,5,0.0,1,1.8669819831848145,138,0.0,3 +68138,5,0.0,1,1.9849803447723389,139,0.0,3 +68139,5,1.0,1,1.2689884901046753,140,1.0,3 +68140,5,1.0,1,1.2689884901046753,141,1.0,3 +68141,5,1.0,1,2.0939791202545166,142,1.0,3 +68142,5,1.0,1,1.327988624572754,143,1.0,3 +68143,5,1.0,1,1.6189851760864258,144,1.0,3 +68144,5,1.0,1,1.6539846658706665,145,1.0,3 +68145,5,1.0,1,1.2219884395599365,146,1.0,3 +68146,5,0.0,1,1.8469822406768799,147,0.0,3 +68147,5,1.0,1,1.541986107826233,148,1.0,3 +68148,5,1.0,1,1.398987889289856,149,1.0,3 +68149,5,1.0,1,2.158982276916504,150,1.0,3 +68150,5,1.0,1,2.079979181289673,151,1.0,3 +68151,5,1.0,1,1.9159812927246094,152,0.0,3 +68152,5,1.0,1,1.4049878120422363,153,1.0,3 +68153,5,1.0,1,1.4519872665405273,154,1.0,3 +68154,5,1.0,1,1.3659883737564087,155,1.0,3 +68155,5,1.0,1,2.0009801387786865,156,1.0,3 +68156,5,0.0,1,1.3459886312484741,157,1.0,3 +68157,5,1.0,1,1.677984356880188,158,1.0,3 +68158,5,1.0,1,1.5739856958389282,159,1.0,3 +68159,5,0.0,1,1.371988296508789,160,1.0,3 +68160,5,1.0,1,1.8349823951721191,161,1.0,3 +68161,5,1.0,1,1.744983434677124,162,0.0,3 +68162,5,0.0,1,1.7279837131500244,163,1.0,3 +68163,5,0.0,1,1.2489885091781616,164,1.0,3 +68164,5,0.0,1,1.3409886360168457,165,0.0,3 +68165,5,1.0,1,1.4749869108200073,166,0.0,3 +68166,5,1.0,1,1.4099878072738647,167,1.0,3 +68167,5,1.0,1,1.652984619140625,168,0.0,3 +68168,5,0.0,1,2.208984375,169,1.0,3 +68169,5,0.0,1,1.4009878635406494,170,0.0,3 +68170,5,0.0,1,1.7879829406738281,171,0.0,3 +68171,5,0.0,1,1.5769855976104736,172,0.0,3 +68172,5,1.0,1,1.3349885940551758,173,1.0,3 +68173,5,1.0,1,1.538986086845398,174,0.0,3 +68174,5,0.0,1,1.4999866485595703,175,1.0,3 +68175,5,0.0,1,1.5359861850738525,176,0.0,3 +68176,5,1.0,1,1.9659806489944458,177,0.0,3 +68177,5,0.0,1,1.2309883832931519,178,0.0,3 +68178,5,0.0,1,1.9049813747406006,179,0.0,3 +68179,5,1.0,1,1.4879868030548096,180,1.0,3 +68180,5,1.0,1,1.416987657546997,181,1.0,3 +68181,5,1.0,1,1.8789818286895752,182,1.0,3 +68182,5,1.0,1,1.4379874467849731,183,1.0,3 +68183,5,1.0,1,1.604985237121582,184,1.0,3 +68184,5,1.0,1,1.6139851808547974,185,1.0,3 +68185,5,1.0,1,1.5179864168167114,186,0.0,3 +68186,5,0.0,1,1.4799869060516357,187,0.0,3 +68187,5,0.0,1,1.7659832239151,188,0.0,3 +68188,5,1.0,1,1.744983434677124,189,0.0,3 +68189,5,0.0,1,1.5539859533309937,190,0.0,3 +68190,5,0.0,1,1.3409886360168457,191,0.0,3 +68191,5,0.0,1,1.6419848203659058,192,0.0,3 +68192,5,0.0,1,2.233985662460327,193,0.0,3 +68193,5,0.0,1,1.3459886312484741,194,1.0,3 +68194,5,0.0,1,1.8729817867279053,195,1.0,3 +68195,5,0.0,1,2.063979387283325,196,0.0,3 +68196,5,0.0,1,1.2319884300231934,197,0.0,3 +68197,5,1.0,1,1.6379848718643188,198,0.0,3 +68198,5,1.0,1,1.6449847221374512,199,1.0,3 +68199,5,0.0,1,1.97998046875,200,0.0,3 +68200,5,1.0,1,1.5429860353469849,201,1.0,3 +68201,5,1.0,1,1.7269837856292725,202,1.0,3 +68202,5,1.0,1,1.6459847688674927,203,1.0,3 +68203,5,1.0,1,1.9569807052612305,204,1.0,3 +68204,5,1.0,1,1.699984073638916,205,1.0,3 +68205,5,1.0,1,1.839982271194458,206,1.0,3 +68206,5,1.0,1,1.610985279083252,207,0.0,3 +68207,5,0.0,1,1.3609883785247803,208,0.0,3 +68208,5,0.0,1,1.4789868593215942,209,0.0,3 +68209,5,1.0,1,1.2499884366989136,210,1.0,3 +68210,5,1.0,1,1.743983507156372,211,1.0,3 +68211,5,1.0,1,1.4929866790771484,212,1.0,3 +68212,5,0.0,1,2.210984706878662,213,0.0,3 +68213,5,0.0,1,1.6449847221374512,214,0.0,3 +68214,5,1.0,1,1.2499884366989136,215,1.0,3 +68215,5,1.0,1,1.318988561630249,216,0.0,3 +68216,5,0.0,1,1.2319884300231934,217,1.0,3 +68217,5,0.0,1,1.353988528251648,218,1.0,3 +68218,5,0.0,1,1.3059885501861572,219,0.0,3 +68219,5,1.0,1,2.156981945037842,220,1.0,3 +68220,5,1.0,1,1.2859885692596436,221,1.0,3 +68221,5,1.0,1,1.4129877090454102,222,1.0,3 +68222,5,1.0,1,1.586985468864441,223,0.0,3 +68223,5,0.0,1,1.7189838886260986,224,0.0,3 +68224,5,1.0,1,1.6169850826263428,225,0.0,3 +68225,5,0.0,1,1.2029883861541748,226,0.0,3 +68226,5,0.0,1,1.3549884557724,227,0.0,3 +68227,5,0.0,1,1.490986704826355,228,0.0,3 +68228,5,1.0,1,2.3659918308258057,229,1.0,3 +68229,5,1.0,1,1.7849829196929932,230,1.0,3 +68230,5,1.0,1,1.5729856491088867,231,1.0,3 +68231,5,1.0,1,1.4859868288040161,232,1.0,3 +68232,5,1.0,1,1.8499821424484253,233,0.0,3 +68233,5,1.0,1,2.386992931365967,234,0.0,3 +68234,5,1.0,1,1.8109827041625977,235,1.0,3 +68235,5,1.0,1,1.9859803915023804,236,1.0,3 +68236,5,1.0,1,1.5069864988327026,237,1.0,3 +68237,5,1.0,1,2.022979974746704,238,1.0,3 +68238,5,1.0,1,1.5279862880706787,239,0.0,3 +68239,5,1.0,1,1.4119877815246582,240,1.0,3 +68240,5,1.0,1,1.4479873180389404,241,0.0,3 +68241,5,0.0,1,1.216988444328308,242,1.0,3 +68242,5,0.0,1,1.2329884767532349,243,0.0,3 +68243,5,1.0,1,2.3189897537231445,244,0.0,3 +68244,5,1.0,1,1.5229862928390503,245,0.0,3 +68245,5,1.0,1,1.4509872198104858,246,1.0,3 +68246,5,1.0,1,1.424987554550171,247,1.0,3 +68247,5,1.0,1,2.075979232788086,248,0.0,3 +68248,5,0.0,1,1.3559885025024414,249,0.0,3 +68249,5,1.0,1,1.4189876317977905,250,1.0,3 +68250,5,1.0,1,1.7879829406738281,251,0.0,3 +68251,5,1.0,1,1.2449884414672852,252,0.0,3 +68252,5,1.0,1,1.9029815196990967,253,0.0,3 +68253,5,0.0,1,1.4409873485565186,254,0.0,3 +68254,5,1.0,1,1.8349823951721191,255,1.0,3 +68255,5,1.0,1,1.3379886150360107,256,1.0,3 +68256,5,1.0,1,1.5099865198135376,257,0.0,3 +68257,5,1.0,1,1.607985258102417,258,1.0,3 +68258,5,1.0,1,2.1129798889160156,259,1.0,3 +68259,5,1.0,1,1.6229851245880127,260,1.0,3 +68260,5,1.0,1,1.8959815502166748,261,0.0,3 +68261,5,0.0,1,1.2729885578155518,262,0.0,3 +68262,5,0.0,1,2.206984519958496,263,1.0,3 +68263,5,0.0,1,1.4529871940612793,264,0.0,3 +68264,5,0.0,1,1.8059827089309692,265,1.0,3 +68265,5,0.0,1,1.2719885110855103,266,1.0,3 +68266,5,0.0,1,1.3379886150360107,267,0.0,3 +68267,5,0.0,1,1.3969879150390625,268,1.0,3 +68268,5,0.0,1,1.3479886054992676,269,0.0,3 +68269,5,0.0,1,2.173982858657837,270,0.0,3 +68270,5,0.0,1,1.9949803352355957,271,0.0,3 +68271,5,0.0,1,2.145981550216675,272,0.0,3 +68272,5,0.0,1,1.7179838418960571,273,0.0,3 +68273,5,1.0,1,1.424987554550171,274,0.0,3 +68274,5,0.0,1,1.4039878845214844,275,0.0,3 +68275,5,0.0,1,1.4399874210357666,276,0.0,3 +68276,5,0.0,1,1.2989885807037354,277,0.0,3 +68277,5,0.0,1,2.216984748840332,278,1.0,3 +68278,5,1.0,1,1.5499860048294067,279,1.0,3 +68279,5,0.0,1,1.4929866790771484,280,0.0,3 +68280,5,1.0,1,2.152981758117676,281,1.0,3 +68281,5,1.0,1,2.5420000553131104,282,1.0,3 +68282,5,1.0,1,1.4499872922897339,283,1.0,3 +68283,5,1.0,1,1.4269875288009644,284,1.0,3 +68284,5,1.0,1,1.3579884767532349,285,1.0,3 +68285,5,1.0,1,1.3959879875183105,286,1.0,3 +68286,5,1.0,1,1.4849867820739746,287,1.0,3 +68287,5,1.0,1,1.611985206604004,288,0.0,3 +68288,5,0.0,1,1.3549884557724,289,0.0,3 +68289,5,1.0,1,1.5719857215881348,290,1.0,3 +68290,5,1.0,1,1.4789868593215942,291,1.0,3 +68291,5,1.0,1,1.8009827136993408,292,1.0,3 +68292,5,1.0,1,1.5669857263565063,293,1.0,3 +68293,5,1.0,1,1.7719831466674805,294,1.0,3 +68294,5,1.0,1,1.9049813747406006,295,1.0,3 +68295,5,1.0,1,1.3589884042739868,296,1.0,3 +68296,5,1.0,1,1.4329874515533447,297,1.0,3 +68297,5,1.0,1,1.4749869108200073,298,1.0,3 +68298,5,1.0,1,1.8189826011657715,299,1.0,3 +68299,5,1.0,1,1.2889885902404785,300,1.0,3 +68300,5,1.0,1,1.582985520362854,301,0.0,3 +68301,5,0.0,1,2.0179800987243652,302,1.0,3 +68302,5,1.0,1,1.5719857215881348,303,1.0,3 +68303,5,1.0,1,1.791982889175415,304,1.0,3 +68304,5,0.0,1,1.4989866018295288,305,1.0,3 +68305,5,0.0,1,1.7339836359024048,306,0.0,3 +68306,5,1.0,1,2.662005662918091,307,1.0,3 +68307,5,1.0,1,1.296988606452942,308,1.0,3 +68308,5,1.0,1,1.4109877347946167,309,0.0,3 +68309,5,1.0,1,1.442987322807312,310,1.0,3 +68310,5,1.0,1,1.8679819107055664,311,0.0,3 +68311,5,1.0,1,1.8189826011657715,312,0.0,3 +68312,5,1.0,1,1.424987554550171,313,1.0,3 +68313,5,1.0,1,1.6689844131469727,314,1.0,3 +68314,5,1.0,1,1.5399861335754395,315,1.0,3 +68315,5,0.0,1,1.4789868593215942,316,0.0,3 +68316,5,1.0,1,1.6729843616485596,317,0.0,3 +68317,5,0.0,1,2.178983211517334,318,1.0,3 +68318,5,0.0,1,1.6899842023849487,319,1.0,3 +68319,5,0.0,1,1.4819868803024292,320,1.0,3 +68320,5,0.0,1,1.445987343788147,321,1.0,3 +68321,5,0.0,1,1.721983790397644,322,0.0,3 +68322,5,0.0,1,1.2409884929656982,323,0.0,3 +68323,5,1.0,1,1.606985330581665,324,1.0,3 +68324,5,1.0,1,1.5679857730865479,325,1.0,3 +68325,5,1.0,1,1.700984001159668,326,1.0,3 +68326,5,1.0,1,2.166982650756836,327,1.0,3 +68327,5,1.0,1,1.320988655090332,328,1.0,3 +68328,5,1.0,1,1.6369848251342773,329,1.0,3 +68329,5,1.0,1,1.3589884042739868,330,1.0,3 +68330,5,1.0,1,1.7149839401245117,331,1.0,3 +68331,5,0.0,1,2.023979902267456,332,0.0,3 +68332,5,1.0,1,1.346988558769226,333,0.0,3 +68333,5,0.0,1,1.6029853820800781,334,0.0,3 +68334,5,1.0,1,1.4359874725341797,335,1.0,3 +68335,5,1.0,1,1.2799885272979736,336,0.0,3 +68336,5,0.0,1,1.6829843521118164,337,0.0,3 +68337,5,0.0,1,1.6949841976165771,338,0.0,3 +68338,5,0.0,1,1.6219850778579712,339,1.0,3 +68339,5,0.0,1,1.3609883785247803,340,0.0,3 +68340,5,0.0,1,1.3959879875183105,341,0.0,3 +68341,5,1.0,1,1.5029865503311157,342,0.0,3 +68342,5,0.0,1,1.790982961654663,343,1.0,3 +68343,5,0.0,1,2.179983139038086,344,0.0,3 +68344,5,0.0,1,2.0029802322387695,345,1.0,3 +68345,5,1.0,1,1.8549821376800537,346,1.0,3 +68346,5,1.0,1,1.3519885540008545,347,0.0,3 +68347,5,0.0,1,1.582985520362854,348,0.0,3 +68348,5,0.0,1,2.21598482131958,349,0.0,3 +68349,5,1.0,1,1.2859885692596436,350,1.0,3 +68350,5,1.0,1,1.7529833316802979,351,1.0,3 +68351,5,1.0,1,1.700984001159668,352,0.0,3 +68352,5,0.0,1,1.8189826011657715,353,0.0,3 +68353,5,1.0,1,1.4259876012802124,354,1.0,3 +68354,5,1.0,1,1.8529820442199707,355,1.0,3 +68355,5,1.0,1,1.9979802370071411,356,1.0,3 +68356,5,1.0,1,1.4729869365692139,357,0.0,3 +68357,5,1.0,1,1.321988582611084,358,1.0,3 +68358,5,1.0,1,1.2199883460998535,359,0.0,3 +68359,5,1.0,1,1.442987322807312,360,1.0,3 +68360,5,1.0,1,1.5729856491088867,361,0.0,3 +68361,5,1.0,1,1.6379848718643188,362,1.0,3 +68362,5,1.0,1,1.4629870653152466,363,1.0,3 +68363,5,1.0,1,2.3359904289245605,364,1.0,3 +68364,5,1.0,1,1.4889867305755615,365,0.0,3 +68365,5,0.0,1,1.25398850440979,366,0.0,3 +68366,5,0.0,1,1.533986210823059,367,0.0,3 +68367,5,1.0,1,2.24898624420166,368,1.0,3 +68368,5,1.0,1,1.3419886827468872,369,1.0,3 +68369,5,1.0,1,2.1019794940948486,370,1.0,3 +68370,5,1.0,1,1.4479873180389404,371,0.0,3 +68371,5,0.0,1,2.68800687789917,372,0.0,3 +68372,5,1.0,1,1.471987009048462,373,1.0,3 +68373,5,1.0,1,1.4449872970581055,374,1.0,3 +68374,5,1.0,1,1.2369884252548218,375,1.0,3 +68375,5,1.0,1,1.4609870910644531,376,1.0,3 +68376,5,1.0,1,1.2279884815216064,377,0.0,3 +68377,5,0.0,1,1.6169850826263428,378,0.0,3 +68378,5,1.0,1,1.9249811172485352,379,0.0,3 +68379,5,0.0,1,1.7689831256866455,380,1.0,3 +68380,5,0.0,1,1.938981056213379,381,0.0,3 +68381,5,0.0,1,1.4579871892929077,382,1.0,3 +68382,5,0.0,1,1.3959879875183105,383,0.0,3 +68383,5,0.0,1,1.6169850826263428,384,1.0,3 +68384,5,0.0,1,1.1949883699417114,385,1.0,3 +68385,5,1.0,1,1.5769855976104736,386,1.0,3 +68386,5,0.0,1,1.2329884767532349,387,0.0,3 +68387,5,1.0,1,1.7149839401245117,388,1.0,3 +68388,5,1.0,1,1.5039865970611572,389,1.0,3 +68389,5,1.0,1,1.284988522529602,390,0.0,3 +68390,5,0.0,1,1.8099826574325562,391,1.0,3 +68391,5,0.0,1,1.5249862670898438,392,0.0,3 +68392,5,1.0,1,1.7559833526611328,393,1.0,3 +68393,5,1.0,1,1.3439886569976807,394,0.0,3 +68394,5,0.0,1,1.1919883489608765,395,0.0,3 +68395,5,0.0,1,2.0469796657562256,396,0.0,3 +68396,5,0.0,1,2.0549795627593994,397,1.0,3 +68397,5,0.0,1,1.394987940788269,398,0.0,3 +68398,5,1.0,1,1.6179851293563843,399,0.0,3 +68399,5,1.0,1,1.5039865970611572,400,1.0,3 +68400,5,1.0,1,1.5619858503341675,401,0.0,3 +68401,5,0.0,1,1.7109839916229248,402,0.0,3 +68402,5,1.0,1,1.7139838933944702,403,1.0,3 +68403,5,0.0,1,1.2709884643554688,404,0.0,3 +68404,5,1.0,1,1.3629883527755737,405,1.0,3 +68405,5,1.0,1,1.7899829149246216,406,0.0,3 +68406,5,0.0,1,1.4349874258041382,407,1.0,3 +68407,5,0.0,1,2.243986129760742,408,0.0,3 +68408,5,0.0,1,1.2459884881973267,409,1.0,3 +68409,5,0.0,1,1.769983172416687,410,1.0,3 +68410,5,0.0,1,1.323988676071167,411,1.0,3 +68411,5,0.0,1,1.2059884071350098,412,0.0,3 +68412,5,0.0,1,1.8459821939468384,413,1.0,3 +68413,5,0.0,1,1.4439873695373535,414,0.0,3 +68414,5,1.0,1,2.435995101928711,415,1.0,3 +68415,5,1.0,1,1.5439860820770264,416,0.0,3 +68416,5,0.0,1,2.180983066558838,417,0.0,3 +68417,5,0.0,1,1.2499884366989136,418,0.0,3 +68418,5,0.0,1,1.654984712600708,419,0.0,3 +68419,5,0.0,1,1.813982605934143,420,1.0,3 +68420,5,0.0,1,1.2359883785247803,421,0.0,3 +68421,5,0.0,1,1.4919867515563965,422,0.0,3 +68422,5,0.0,1,1.2159883975982666,423,0.0,3 +68423,5,0.0,1,1.8089826107025146,424,0.0,3 +68424,5,0.0,1,1.5189863443374634,425,0.0,3 +68425,5,1.0,1,1.6249849796295166,426,0.0,3 +68426,5,0.0,1,1.8489820957183838,427,0.0,3 +68427,5,0.0,1,1.416987657546997,428,0.0,3 +68428,5,0.0,1,1.651984691619873,429,0.0,3 +68429,5,0.0,1,1.445987343788147,430,1.0,3 +68430,5,0.0,1,1.419987678527832,431,0.0,3 +68431,5,1.0,1,1.468986988067627,432,1.0,3 +68432,5,1.0,1,1.7789831161499023,433,1.0,3 +68433,5,1.0,1,1.9039814472198486,434,1.0,3 +68434,5,1.0,1,1.6399848461151123,435,1.0,3 +68435,5,1.0,1,1.3579884767532349,436,1.0,3 +68436,5,1.0,1,1.393988013267517,437,1.0,3 +68437,5,0.0,1,1.4159877300262451,438,0.0,3 +68438,5,1.0,1,1.6979840993881226,439,1.0,3 +68439,5,1.0,1,1.5899854898452759,440,0.0,3 +68440,5,0.0,1,1.982980489730835,441,0.0,3 +68441,5,0.0,1,1.8449821472167969,442,1.0,3 +68442,5,0.0,1,1.2459884881973267,443,1.0,3 +68443,5,0.0,1,1.3579884767532349,444,0.0,3 +68444,5,0.0,1,1.6939841508865356,445,0.0,3 +68445,5,1.0,1,1.6139851808547974,446,0.0,3 +68446,5,1.0,1,1.51698637008667,447,1.0,3 +68447,5,1.0,1,1.7799830436706543,448,1.0,3 +68448,5,1.0,1,1.5229862928390503,449,1.0,3 +68449,5,0.0,1,1.7359836101531982,450,0.0,3 +68450,5,1.0,1,1.654984712600708,451,0.0,3 +68451,5,1.0,1,1.4049878120422363,452,1.0,3 +68452,5,1.0,1,1.4329874515533447,453,1.0,3 +68453,5,1.0,1,1.6169850826263428,454,0.0,3 +68454,5,0.0,1,1.3059885501861572,455,0.0,3 +68455,5,0.0,1,1.3429886102676392,456,0.0,3 +68456,5,0.0,1,1.4579871892929077,457,0.0,3 +68457,5,0.0,1,1.3319885730743408,458,1.0,3 +68458,5,0.0,1,1.3269885778427124,459,0.0,3 +68459,5,0.0,1,2.0089800357818604,460,1.0,3 +68460,5,0.0,1,1.1949883699417114,461,0.0,3 +68461,5,1.0,1,1.9199812412261963,462,1.0,3 +68462,5,1.0,1,1.3329886198043823,463,0.0,3 +68463,5,0.0,1,2.1409811973571777,464,0.0,3 +68464,5,0.0,1,1.4659870862960815,465,1.0,3 +68465,5,0.0,1,1.8529820442199707,466,0.0,3 +68466,5,0.0,1,1.4859868288040161,467,1.0,3 +68467,5,1.0,1,1.4819868803024292,468,1.0,3 +68468,5,1.0,1,1.7939828634262085,469,0.0,3 +68469,5,0.0,1,1.4309874773025513,470,1.0,3 +68470,5,0.0,1,1.5329861640930176,471,0.0,3 +68471,5,0.0,1,1.3479886054992676,472,0.0,3 +68472,5,1.0,1,1.8629820346832275,473,1.0,3 +68473,5,1.0,1,2.1029796600341797,474,0.0,3 +68474,5,1.0,1,1.7659832239151,475,1.0,3 +68475,5,1.0,1,2.0429797172546387,476,1.0,3 +68476,5,1.0,1,1.4919867515563965,477,1.0,3 +68477,5,1.0,1,1.4779869318008423,478,1.0,3 +68478,5,1.0,1,1.4409873485565186,479,1.0,3 +68479,5,1.0,1,1.3929879665374756,480,1.0,3 +68480,5,0.0,1,1.315988540649414,481,0.0,3 +68481,5,1.0,1,1.4769868850708008,482,1.0,3 +68482,5,1.0,1,1.7209837436676025,483,1.0,3 +68483,5,1.0,1,1.2219884395599365,484,1.0,3 +68484,5,1.0,1,2.0919790267944336,485,1.0,3 +68485,5,1.0,1,1.9149813652038574,486,1.0,3 +68486,5,1.0,1,1.5239863395690918,487,0.0,3 +68487,5,0.0,1,1.5779856443405151,488,1.0,3 +68488,5,0.0,1,1.3629883527755737,489,0.0,3 +68489,5,0.0,1,1.324988603591919,490,0.0,3 +68490,5,0.0,1,1.6189851760864258,491,0.0,3 +68491,5,1.0,1,1.8099826574325562,492,1.0,3 +68492,5,1.0,1,1.5369861125946045,493,1.0,3 +68493,5,1.0,1,2.0499796867370605,494,1.0,3 +68494,5,1.0,1,1.4099878072738647,495,1.0,3 +68495,5,1.0,1,1.5239863395690918,496,0.0,3 +68496,5,0.0,1,1.3489885330200195,497,0.0,3 +68497,5,1.0,1,1.6859842538833618,498,1.0,3 +68498,5,1.0,1,1.3639883995056152,499,0.0,3 +68499,5,0.0,1,1.2659884691238403,500,0.0,3 +68500,5,0.0,2,1.6749844551086426,1,0.0,3 +68501,5,1.0,2,1.4379874467849731,2,0.0,3 +68502,5,0.0,2,1.2749885320663452,3,1.0,3 +68503,5,0.0,2,1.379988193511963,4,1.0,3 +68504,5,0.0,2,1.2289884090423584,5,1.0,3 +68505,5,0.0,2,1.442987322807312,6,0.0,3 +68506,5,0.0,2,1.7799830436706543,7,0.0,3 +68507,5,1.0,2,1.6979840993881226,8,1.0,3 +68508,5,1.0,2,1.7559833526611328,9,1.0,3 +68509,5,1.0,2,1.537986159324646,10,0.0,3 +68510,5,0.0,2,1.315988540649414,11,1.0,3 +68511,5,0.0,2,1.2789884805679321,12,1.0,3 +68512,5,0.0,2,1.254988431930542,13,0.0,3 +68513,5,1.0,2,1.3049886226654053,14,0.0,3 +68514,5,0.0,2,1.320988655090332,15,0.0,3 +68515,5,0.0,2,1.321988582611084,16,1.0,3 +68516,5,0.0,2,1.2799885272979736,17,0.0,3 +68517,5,0.0,2,1.3909879922866821,18,1.0,3 +68518,5,1.0,2,1.4669870138168335,19,0.0,3 +68519,5,0.0,2,1.7749831676483154,20,1.0,3 +68520,5,0.0,2,1.420987606048584,21,0.0,3 +68521,5,1.0,2,2.035979747772217,22,0.0,3 +68522,5,0.0,2,1.725983738899231,23,1.0,3 +68523,5,0.0,2,1.9239811897277832,24,1.0,3 +68524,5,0.0,2,1.3669883012771606,25,1.0,3 +68525,5,0.0,2,1.8029828071594238,26,1.0,3 +68526,5,0.0,2,1.6499847173690796,27,1.0,3 +68527,5,0.0,2,1.3999879360198975,28,0.0,3 +68528,5,1.0,2,1.564985752105713,29,0.0,3 +68529,5,1.0,2,2.0469796657562256,30,1.0,3 +68530,5,1.0,2,1.438987374305725,31,1.0,3 +68531,5,1.0,2,1.652984619140625,32,1.0,3 +68532,5,1.0,2,1.398987889289856,33,0.0,3 +68533,5,0.0,2,1.3229886293411255,34,0.0,3 +68534,5,1.0,2,2.079979181289673,35,1.0,3 +68535,5,1.0,2,1.44198739528656,36,0.0,3 +68536,5,1.0,2,1.5069864988327026,37,1.0,3 +68537,5,1.0,2,1.6979840993881226,38,0.0,3 +68538,5,0.0,2,2.2949886322021484,39,0.0,3 +68539,5,0.0,2,1.978980541229248,40,0.0,3 +68540,5,0.0,2,1.3049886226654053,41,0.0,3 +68541,5,1.0,2,1.700984001159668,42,1.0,3 +68542,5,1.0,2,1.3169885873794556,43,1.0,3 +68543,5,1.0,2,1.6539846658706665,44,1.0,3 +68544,5,1.0,2,1.5589858293533325,45,1.0,3 +68545,5,1.0,2,1.424987554550171,46,1.0,3 +68546,5,0.0,2,1.3879880905151367,47,0.0,3 +68547,5,1.0,2,1.9549808502197266,48,0.0,3 +68548,5,0.0,2,1.3419886827468872,49,0.0,3 +68549,5,0.0,2,1.2639884948730469,50,0.0,3 +68550,5,0.0,2,1.681984305381775,51,1.0,3 +68551,5,0.0,2,1.5209863185882568,52,0.0,3 +68552,5,0.0,2,1.6719844341278076,53,1.0,3 +68553,5,0.0,2,1.8189826011657715,54,0.0,3 +68554,5,0.0,2,1.3659883737564087,55,1.0,3 +68555,5,0.0,2,1.2999885082244873,56,1.0,3 +68556,5,0.0,2,1.3879880905151367,57,1.0,3 +68557,5,0.0,2,2.0079801082611084,58,1.0,3 +68558,5,0.0,2,1.3289886713027954,59,0.0,3 +68559,5,0.0,2,2.013979911804199,60,0.0,3 +68560,5,0.0,2,2.260986804962158,61,0.0,3 +68561,5,0.0,2,1.8419822454452515,62,0.0,3 +68562,5,1.0,2,1.9029815196990967,63,0.0,3 +68563,5,0.0,2,2.474997043609619,64,1.0,3 +68564,5,0.0,2,1.6179851293563843,65,0.0,3 +68565,5,1.0,2,1.5239863395690918,66,0.0,3 +68566,5,0.0,2,1.555985927581787,67,0.0,3 +68567,5,0.0,2,2.414994239807129,68,0.0,3 +68568,5,0.0,2,1.9699805974960327,69,1.0,3 +68569,5,0.0,2,1.4049878120422363,70,0.0,3 +68570,5,1.0,2,1.8159825801849365,71,1.0,3 +68571,5,1.0,2,1.3229886293411255,72,1.0,3 +68572,5,1.0,2,1.700984001159668,73,1.0,3 +68573,5,1.0,2,1.4819868803024292,74,0.0,3 +68574,5,0.0,2,1.930981159210205,75,0.0,3 +68575,5,0.0,2,1.4809868335723877,76,0.0,3 +68576,5,1.0,2,2.0469796657562256,77,0.0,3 +68577,5,1.0,2,2.160982131958008,78,1.0,3 +68578,5,1.0,2,2.0159800052642822,79,1.0,3 +68579,5,1.0,2,1.5099865198135376,80,1.0,3 +68580,5,1.0,2,1.60398530960083,81,0.0,3 +68581,5,1.0,2,1.371988296508789,82,0.0,3 +68582,5,0.0,2,1.254988431930542,83,1.0,3 +68583,5,0.0,2,1.6209850311279297,84,0.0,3 +68584,5,0.0,2,1.3699883222579956,85,1.0,3 +68585,5,0.0,2,1.3619884252548218,86,0.0,3 +68586,5,0.0,2,2.141981363296509,87,0.0,3 +68587,5,1.0,2,1.706984043121338,88,1.0,3 +68588,5,1.0,2,1.3519885540008545,89,1.0,3 +68589,5,1.0,2,1.564985752105713,90,0.0,3 +68590,5,1.0,2,1.401987910270691,91,0.0,3 +68591,5,1.0,2,1.1679883003234863,92,1.0,3 +68592,5,1.0,2,1.7159838676452637,93,0.0,3 +68593,5,0.0,2,1.9819804430007935,94,1.0,3 +68594,5,0.0,2,1.21798837184906,95,0.0,3 +68595,5,0.0,2,1.629984974861145,96,1.0,3 +68596,5,0.0,2,1.2199883460998535,97,0.0,3 +68597,5,0.0,2,1.296988606452942,98,0.0,3 +68598,5,1.0,2,1.4289875030517578,99,1.0,3 +68599,5,1.0,2,1.2839884757995605,100,0.0,3 +68600,5,1.0,2,1.3999879360198975,101,1.0,3 +68601,5,1.0,2,1.650984764099121,102,0.0,3 +68602,5,0.0,2,1.8119826316833496,103,0.0,3 +68603,5,1.0,2,1.5889854431152344,104,1.0,3 +68604,5,1.0,2,1.5009865760803223,105,1.0,3 +68605,5,1.0,2,1.5199863910675049,106,0.0,3 +68606,5,0.0,2,1.9749805927276611,107,0.0,3 +68607,5,1.0,2,1.6209850311279297,108,0.0,3 +68608,5,1.0,2,1.6829843521118164,109,1.0,3 +68609,5,0.0,2,1.2219884395599365,110,0.0,3 +68610,5,0.0,2,1.7229838371276855,111,1.0,3 +68611,5,1.0,2,1.650984764099121,112,1.0,3 +68612,5,0.0,2,1.5479860305786133,113,1.0,3 +68613,5,1.0,2,1.4749869108200073,114,0.0,3 +68614,5,0.0,2,1.5589858293533325,115,1.0,3 +68615,5,0.0,2,1.3029885292053223,116,0.0,3 +68616,5,1.0,2,2.0069801807403564,117,1.0,3 +68617,5,1.0,2,1.494986653327942,118,0.0,3 +68618,5,1.0,2,1.486986756324768,119,0.0,3 +68619,5,0.0,2,2.158982276916504,120,1.0,3 +68620,5,0.0,2,1.6679844856262207,121,0.0,3 +68621,5,0.0,2,1.5849854946136475,122,0.0,3 +68622,5,1.0,2,2.206984519958496,123,1.0,3 +68623,5,1.0,2,1.8649818897247314,124,0.0,3 +68624,5,1.0,2,1.5779856443405151,125,0.0,3 +68625,5,1.0,2,1.8769817352294922,126,1.0,3 +68626,5,0.0,2,1.4879868030548096,127,0.0,3 +68627,5,1.0,2,1.6249849796295166,128,1.0,3 +68628,5,1.0,2,1.7279837131500244,129,0.0,3 +68629,5,0.0,2,1.420987606048584,130,0.0,3 +68630,5,0.0,2,2.1339809894561768,131,0.0,3 +68631,5,0.0,2,1.2319884300231934,132,1.0,3 +68632,5,0.0,2,1.836982250213623,133,0.0,3 +68633,5,1.0,2,1.3339886665344238,134,1.0,3 +68634,5,1.0,2,1.5809855461120605,135,1.0,3 +68635,5,1.0,2,1.3829880952835083,136,0.0,3 +68636,5,1.0,2,1.9449808597564697,137,1.0,3 +68637,5,1.0,2,1.7229838371276855,138,0.0,3 +68638,5,1.0,2,1.81798255443573,139,1.0,3 +68639,5,1.0,2,1.5269862413406372,140,0.0,3 +68640,5,1.0,2,2.414994239807129,141,1.0,3 +68641,5,1.0,2,2.197983980178833,142,0.0,3 +68642,5,1.0,2,1.6699844598770142,143,1.0,3 +68643,5,1.0,2,1.5219863653182983,144,1.0,3 +68644,5,1.0,2,1.254988431930542,145,1.0,3 +68645,5,1.0,2,1.4149876832962036,146,1.0,3 +68646,5,1.0,2,1.7759830951690674,147,1.0,3 +68647,5,1.0,2,1.7559833526611328,148,1.0,3 +68648,5,1.0,2,1.8789818286895752,149,1.0,3 +68649,5,1.0,2,1.6169850826263428,150,1.0,3 +68650,5,1.0,2,1.393988013267517,151,1.0,3 +68651,5,1.0,2,1.7999827861785889,152,1.0,3 +68652,5,1.0,2,1.695984125137329,153,1.0,3 +68653,5,1.0,2,1.5239863395690918,154,0.0,3 +68654,5,0.0,2,1.3999879360198975,155,0.0,3 +68655,5,0.0,2,1.905981421470642,156,1.0,3 +68656,5,0.0,2,1.489986777305603,157,0.0,3 +68657,5,0.0,2,1.8479821681976318,158,0.0,3 +68658,5,0.0,2,1.3679883480072021,159,0.0,3 +68659,5,1.0,2,1.6309850215911865,160,1.0,3 +68660,5,1.0,2,1.7759830951690674,161,0.0,3 +68661,5,1.0,2,1.3709882497787476,162,0.0,3 +68662,5,1.0,2,2.030979871749878,163,0.0,3 +68663,5,0.0,2,1.4729869365692139,164,0.0,3 +68664,5,0.0,2,1.401987910270691,165,0.0,3 +68665,5,0.0,2,1.189988374710083,166,0.0,3 +68666,5,0.0,2,1.6009852886199951,167,0.0,3 +68667,5,0.0,2,1.4999866485595703,168,1.0,3 +68668,5,1.0,2,1.534986138343811,169,1.0,3 +68669,5,0.0,2,2.020979881286621,170,0.0,3 +68670,5,1.0,2,1.2759885787963867,171,0.0,3 +68671,5,1.0,2,2.130980968475342,172,1.0,3 +68672,5,1.0,2,2.0479795932769775,173,0.0,3 +68673,5,0.0,2,2.029979705810547,174,1.0,3 +68674,5,0.0,2,2.234985828399658,175,1.0,3 +68675,5,0.0,2,1.5889854431152344,176,0.0,3 +68676,5,1.0,2,1.2309883832931519,177,0.0,3 +68677,5,1.0,2,1.6639845371246338,178,0.0,3 +68678,5,0.0,2,1.3099886178970337,179,1.0,3 +68679,5,0.0,2,1.3169885873794556,180,1.0,3 +68680,5,0.0,2,1.2419884204864502,181,1.0,3 +68681,5,0.0,2,1.4669870138168335,182,1.0,3 +68682,5,0.0,2,1.2789884805679321,183,0.0,3 +68683,5,1.0,2,1.7269837856292725,184,1.0,3 +68684,5,1.0,2,1.349988579750061,185,1.0,3 +68685,5,1.0,2,1.5229862928390503,186,1.0,3 +68686,5,1.0,2,1.4339874982833862,187,1.0,3 +68687,5,1.0,2,1.5039865970611572,188,1.0,3 +68688,5,1.0,2,1.5049865245819092,189,1.0,3 +68689,5,1.0,2,1.353988528251648,190,0.0,3 +68690,5,1.0,2,1.8079826831817627,191,0.0,3 +68691,5,0.0,2,1.6949841976165771,192,1.0,3 +68692,5,0.0,2,1.5149863958358765,193,0.0,3 +68693,5,0.0,2,1.4609870910644531,194,0.0,3 +68694,5,1.0,2,1.6679844856262207,195,0.0,3 +68695,5,1.0,2,1.4499872922897339,196,1.0,3 +68696,5,1.0,2,1.3049886226654053,197,1.0,3 +68697,5,1.0,2,1.7019840478897095,198,1.0,3 +68698,5,1.0,2,1.890981674194336,199,1.0,3 +68699,5,1.0,2,1.3829880952835083,200,1.0,3 +68700,5,0.0,2,1.5969853401184082,201,1.0,3 +68701,5,0.0,2,1.2759885787963867,202,0.0,3 +68702,5,1.0,2,1.4569871425628662,203,1.0,3 +68703,5,1.0,2,1.3299885988235474,204,1.0,3 +68704,5,0.0,2,1.1659883260726929,205,0.0,3 +68705,5,1.0,2,1.750983476638794,206,1.0,3 +68706,5,1.0,2,1.4089877605438232,207,0.0,3 +68707,5,0.0,2,1.7499834299087524,208,0.0,3 +68708,5,1.0,2,1.886981725692749,209,1.0,3 +68709,5,1.0,2,1.1849883794784546,210,1.0,3 +68710,5,1.0,2,1.8519821166992188,211,1.0,3 +68711,5,1.0,2,2.0019803047180176,212,1.0,3 +68712,5,1.0,2,1.6619845628738403,213,0.0,3 +68713,5,0.0,2,1.468986988067627,214,1.0,3 +68714,5,1.0,2,1.9469809532165527,215,1.0,3 +68715,5,1.0,2,1.6439847946166992,216,1.0,3 +68716,5,0.0,2,1.3999879360198975,217,0.0,3 +68717,5,1.0,2,1.321988582611084,218,0.0,3 +68718,5,0.0,2,1.2249884605407715,219,0.0,3 +68719,5,1.0,2,1.5149863958358765,220,1.0,3 +68720,5,1.0,2,2.0969791412353516,221,0.0,3 +68721,5,1.0,2,1.5979853868484497,222,1.0,3 +68722,5,1.0,2,1.6499847173690796,223,1.0,3 +68723,5,1.0,2,1.3069885969161987,224,0.0,3 +68724,5,0.0,2,1.4159877300262451,225,1.0,3 +68725,5,0.0,2,1.2559884786605835,226,0.0,3 +68726,5,1.0,2,2.139981269836426,227,1.0,3 +68727,5,1.0,2,1.4969866275787354,228,1.0,3 +68728,5,1.0,2,2.0129799842834473,229,0.0,3 +68729,5,1.0,2,1.401987910270691,230,0.0,3 +68730,5,0.0,2,1.214988350868225,231,0.0,3 +68731,5,1.0,2,1.2919886112213135,232,1.0,3 +68732,5,1.0,2,2.7080078125,233,1.0,3 +68733,5,1.0,2,1.769983172416687,234,0.0,3 +68734,5,0.0,2,2.205984354019165,235,0.0,3 +68735,5,0.0,2,1.1829882860183716,236,0.0,3 +68736,5,0.0,2,1.3569884300231934,237,1.0,3 +68737,5,0.0,2,1.3919880390167236,238,1.0,3 +68738,5,0.0,2,1.2669885158538818,239,1.0,3 +68739,5,0.0,2,1.3359886407852173,240,1.0,3 +68740,5,0.0,2,1.4159877300262451,241,0.0,3 +68741,5,1.0,2,1.7499834299087524,242,0.0,3 +68742,5,0.0,2,1.7839829921722412,243,0.0,3 +68743,5,0.0,2,1.6949841976165771,244,1.0,3 +68744,5,0.0,2,1.648984670639038,245,0.0,3 +68745,5,1.0,2,1.3109885454177856,246,1.0,3 +68746,5,1.0,2,1.681984305381775,247,0.0,3 +68747,5,1.0,2,1.6889841556549072,248,1.0,3 +68748,5,1.0,2,1.3829880952835083,249,1.0,3 +68749,5,1.0,2,1.321988582611084,250,1.0,3 +68750,5,1.0,2,1.3389886617660522,251,1.0,3 +68751,5,1.0,2,1.7349836826324463,252,1.0,3 +68752,5,1.0,2,1.3649883270263672,253,0.0,3 +68753,5,0.0,2,1.4829868078231812,254,1.0,3 +68754,5,1.0,2,1.5909854173660278,255,0.0,3 +68755,5,0.0,2,1.323988676071167,256,1.0,3 +68756,5,0.0,2,1.4929866790771484,257,0.0,3 +68757,5,1.0,2,1.839982271194458,258,0.0,3 +68758,5,1.0,2,1.3679883480072021,259,0.0,3 +68759,5,0.0,2,1.9749805927276611,260,0.0,3 +68760,5,1.0,2,1.4699870347976685,261,0.0,3 +68761,5,0.0,2,1.9189813137054443,262,0.0,3 +68762,5,0.0,2,1.293988585472107,263,0.0,3 +68763,5,0.0,2,1.5059865713119507,264,0.0,3 +68764,5,0.0,2,1.7429835796356201,265,1.0,3 +68765,5,0.0,2,1.7169837951660156,266,0.0,3 +68766,5,1.0,2,1.8329823017120361,267,1.0,3 +68767,5,1.0,2,1.4779869318008423,268,1.0,3 +68768,5,1.0,2,1.4069877862930298,269,0.0,3 +68769,5,1.0,2,2.5790019035339355,270,1.0,3 +68770,5,1.0,2,1.582985520362854,271,0.0,3 +68771,5,1.0,2,1.5429860353469849,272,0.0,3 +68772,5,1.0,2,1.78898286819458,273,1.0,3 +68773,5,1.0,2,1.3589884042739868,274,0.0,3 +68774,5,0.0,2,1.5669857263565063,275,0.0,3 +68775,5,0.0,2,1.6449847221374512,276,0.0,3 +68776,5,0.0,2,1.744983434677124,277,1.0,3 +68777,5,0.0,2,1.7459834814071655,278,0.0,3 +68778,5,0.0,2,2.0179800987243652,279,0.0,3 +68779,5,1.0,2,2.172982692718506,280,0.0,3 +68780,5,0.0,2,1.3169885873794556,281,1.0,3 +68781,5,0.0,2,1.5179864168167114,282,0.0,3 +68782,5,1.0,2,1.6919841766357422,283,1.0,3 +68783,5,1.0,2,1.4759869575500488,284,0.0,3 +68784,5,1.0,2,1.467987060546875,285,1.0,3 +68785,5,1.0,2,1.4989866018295288,286,1.0,3 +68786,5,0.0,2,1.8529820442199707,287,0.0,3 +68787,5,0.0,2,1.3529884815216064,288,0.0,3 +68788,5,1.0,2,1.608985185623169,289,0.0,3 +68789,5,1.0,2,2.1359810829162598,290,1.0,3 +68790,5,1.0,2,1.379988193511963,291,0.0,3 +68791,5,1.0,2,1.8419822454452515,292,1.0,3 +68792,5,1.0,2,1.3169885873794556,293,1.0,3 +68793,5,1.0,2,1.4099878072738647,294,0.0,3 +68794,5,0.0,2,1.6619845628738403,295,0.0,3 +68795,5,0.0,2,1.2659884691238403,296,1.0,3 +68796,5,0.0,2,1.629984974861145,297,1.0,3 +68797,5,0.0,2,2.0859789848327637,298,0.0,3 +68798,5,0.0,2,2.247986316680908,299,1.0,3 +68799,5,0.0,2,1.6019853353500366,300,0.0,3 +68800,5,0.0,2,1.3439886569976807,301,0.0,3 +68801,5,1.0,2,1.6249849796295166,302,1.0,3 +68802,5,1.0,2,1.4929866790771484,303,0.0,3 +68803,5,0.0,2,1.508986473083496,304,1.0,3 +68804,5,0.0,2,1.5109864473342896,305,0.0,3 +68805,5,0.0,2,1.559985876083374,306,1.0,3 +68806,5,0.0,2,1.5899854898452759,307,1.0,3 +68807,5,0.0,2,1.22398841381073,308,1.0,3 +68808,5,0.0,2,1.349988579750061,309,0.0,3 +68809,5,0.0,2,1.3009885549545288,310,0.0,3 +68810,5,1.0,2,1.3349885940551758,311,1.0,3 +68811,5,1.0,2,1.4299875497817993,312,1.0,3 +68812,5,1.0,2,1.3589884042739868,313,1.0,3 +68813,5,1.0,2,1.9669806957244873,314,0.0,3 +68814,5,0.0,2,2.5840020179748535,315,0.0,3 +68815,5,1.0,2,1.4009878635406494,316,0.0,3 +68816,5,0.0,2,1.4609870910644531,317,1.0,3 +68817,5,0.0,2,1.6349849700927734,318,0.0,3 +68818,5,1.0,2,1.3889880180358887,319,0.0,3 +68819,5,0.0,2,1.60398530960083,320,1.0,3 +68820,5,0.0,2,1.9169812202453613,321,1.0,3 +68821,5,0.0,2,1.3819881677627563,322,0.0,3 +68822,5,0.0,2,1.5909854173660278,323,0.0,3 +68823,5,0.0,2,1.891981601715088,324,0.0,3 +68824,5,0.0,2,1.2839884757995605,325,1.0,3 +68825,5,0.0,2,1.3639883995056152,326,0.0,3 +68826,5,0.0,2,1.7309837341308594,327,1.0,3 +68827,5,0.0,2,2.3379905223846436,328,1.0,3 +68828,5,0.0,2,1.2809885740280151,329,0.0,3 +68829,5,0.0,2,1.7649831771850586,330,1.0,3 +68830,5,0.0,2,1.7339836359024048,331,1.0,3 +68831,5,0.0,2,1.260988473892212,332,0.0,3 +68832,5,1.0,2,1.7829830646514893,333,0.0,3 +68833,5,1.0,2,1.3069885969161987,334,0.0,3 +68834,5,0.0,2,2.2729873657226562,335,1.0,3 +68835,5,0.0,2,1.4309874773025513,336,0.0,3 +68836,5,1.0,2,1.7109839916229248,337,0.0,3 +68837,5,0.0,2,1.423987627029419,338,1.0,3 +68838,5,0.0,2,1.6059852838516235,339,1.0,3 +68839,5,0.0,2,1.2859885692596436,340,0.0,3 +68840,5,1.0,2,1.4609870910644531,341,1.0,3 +68841,5,1.0,2,1.6379848718643188,342,1.0,3 +68842,5,1.0,2,2.4049935340881348,343,1.0,3 +68843,5,1.0,2,1.3549884557724,344,0.0,3 +68844,5,0.0,2,1.9169812202453613,345,0.0,3 +68845,5,0.0,2,1.625985026359558,346,1.0,3 +68846,5,0.0,2,1.8449821472167969,347,1.0,3 +68847,5,0.0,2,2.146981716156006,348,1.0,3 +68848,5,0.0,2,2.1119799613952637,349,1.0,3 +68849,5,0.0,2,1.2489885091781616,350,0.0,3 +68850,5,0.0,2,1.511986494064331,351,0.0,3 +68851,5,1.0,2,1.2619885206222534,352,1.0,3 +68852,5,1.0,2,1.4549871683120728,353,1.0,3 +68853,5,1.0,2,1.4509872198104858,354,1.0,3 +68854,5,1.0,2,1.8529820442199707,355,0.0,3 +68855,5,1.0,2,2.249986410140991,356,0.0,3 +68856,5,0.0,2,1.2809885740280151,357,0.0,3 +68857,5,1.0,2,1.8109827041625977,358,1.0,3 +68858,5,1.0,2,1.7169837951660156,359,0.0,3 +68859,5,1.0,2,2.3029890060424805,360,1.0,3 +68860,5,1.0,2,1.2349884510040283,361,1.0,3 +68861,5,1.0,2,1.4629870653152466,362,0.0,3 +68862,5,0.0,2,1.7589833736419678,363,1.0,3 +68863,5,0.0,2,1.442987322807312,364,0.0,3 +68864,5,1.0,2,1.9009814262390137,365,1.0,3 +68865,5,1.0,2,1.5249862670898438,366,1.0,3 +68866,5,1.0,2,1.3069885969161987,367,0.0,3 +68867,5,0.0,2,2.3629918098449707,368,0.0,3 +68868,5,1.0,2,1.5589858293533325,369,1.0,3 +68869,5,1.0,2,1.5519859790802002,370,0.0,3 +68870,5,0.0,2,1.5259863138198853,371,1.0,3 +68871,5,0.0,2,2.1009793281555176,372,0.0,3 +68872,5,0.0,2,1.8009827136993408,373,1.0,3 +68873,5,0.0,2,1.3929879665374756,374,0.0,3 +68874,5,1.0,2,1.861981987953186,375,1.0,3 +68875,5,1.0,2,1.7349836826324463,376,1.0,3 +68876,5,1.0,2,1.5289862155914307,377,1.0,3 +68877,5,1.0,2,1.5849854946136475,378,0.0,3 +68878,5,0.0,2,1.3319885730743408,379,1.0,3 +68879,5,0.0,2,1.5799856185913086,380,0.0,3 +68880,5,1.0,2,1.5479860305786133,381,1.0,3 +68881,5,1.0,2,1.5019866228103638,382,0.0,3 +68882,5,0.0,2,1.2859885692596436,383,1.0,3 +68883,5,0.0,2,1.1989883184432983,384,0.0,3 +68884,5,0.0,2,1.8459821939468384,385,1.0,3 +68885,5,0.0,2,1.8749818801879883,386,1.0,3 +68886,5,0.0,2,1.1479883193969727,387,0.0,3 +68887,5,0.0,2,1.6199851036071777,388,0.0,3 +68888,5,1.0,2,1.7659832239151,389,0.0,3 +68889,5,1.0,2,1.2779885530471802,390,1.0,3 +68890,5,1.0,2,1.314988613128662,391,1.0,3 +68891,5,1.0,2,1.6769843101501465,392,1.0,3 +68892,5,1.0,2,1.6099852323532104,393,1.0,3 +68893,5,1.0,2,1.4229875802993774,394,1.0,3 +68894,5,1.0,2,2.173982858657837,395,1.0,3 +68895,5,1.0,2,1.515986442565918,396,1.0,3 +68896,5,1.0,2,1.5279862880706787,397,1.0,3 +68897,5,1.0,2,1.7389836311340332,398,0.0,3 +68898,5,1.0,2,1.6369848251342773,399,1.0,3 +68899,5,1.0,2,1.293988585472107,400,0.0,3 +68900,5,0.0,2,1.9609806537628174,401,0.0,3 +68901,5,0.0,2,1.2719885110855103,402,1.0,3 +68902,5,0.0,2,1.3339886665344238,403,0.0,3 +68903,5,1.0,2,2.1249804496765137,404,1.0,3 +68904,5,1.0,2,1.214988350868225,405,1.0,3 +68905,5,1.0,2,1.5809855461120605,406,1.0,3 +68906,5,1.0,2,1.7639832496643066,407,1.0,3 +68907,5,1.0,2,1.7669832706451416,408,1.0,3 +68908,5,1.0,2,1.2479884624481201,409,0.0,3 +68909,5,1.0,2,2.07797908782959,410,1.0,3 +68910,5,1.0,2,1.4709869623184204,411,1.0,3 +68911,5,0.0,2,1.2199883460998535,412,1.0,3 +68912,5,0.0,2,1.4489872455596924,413,1.0,3 +68913,5,1.0,2,1.882981777191162,414,1.0,3 +68914,5,0.0,2,1.2089884281158447,415,0.0,3 +68915,5,1.0,2,1.327988624572754,416,1.0,3 +68916,5,1.0,2,1.699984073638916,417,0.0,3 +68917,5,1.0,2,2.3119893074035645,418,1.0,3 +68918,5,0.0,2,1.9019814729690552,419,0.0,3 +68919,5,1.0,2,1.5049865245819092,420,0.0,3 +68920,5,1.0,2,1.4959867000579834,421,1.0,3 +68921,5,1.0,2,1.6099852323532104,422,1.0,3 +68922,5,1.0,2,1.2729885578155518,423,1.0,3 +68923,5,1.0,2,1.681984305381775,424,0.0,3 +68924,5,0.0,2,1.2129883766174316,425,0.0,3 +68925,5,1.0,2,1.4359874725341797,426,0.0,3 +68926,5,0.0,2,2.452995777130127,427,0.0,3 +68927,5,0.0,2,1.7369835376739502,428,1.0,3 +68928,5,0.0,2,1.748983383178711,429,1.0,3 +68929,5,0.0,2,1.534986138343811,430,0.0,3 +68930,5,0.0,2,1.983980417251587,431,0.0,3 +68931,5,1.0,2,1.5399861335754395,432,1.0,3 +68932,5,1.0,2,1.4819868803024292,433,1.0,3 +68933,5,1.0,2,1.8049826622009277,434,0.0,3 +68934,5,1.0,2,1.5679857730865479,435,0.0,3 +68935,5,1.0,2,1.650984764099121,436,0.0,3 +68936,5,0.0,2,1.2069883346557617,437,0.0,3 +68937,5,1.0,2,1.2329884767532349,438,1.0,3 +68938,5,1.0,2,1.6919841766357422,439,0.0,3 +68939,5,0.0,2,1.5469859838485718,440,0.0,3 +68940,5,0.0,2,1.9619807004928589,441,1.0,3 +68941,5,1.0,2,1.2919886112213135,442,1.0,3 +68942,5,1.0,2,1.3869880437850952,443,1.0,3 +68943,5,0.0,2,1.5679857730865479,444,0.0,3 +68944,5,1.0,2,2.227985382080078,445,1.0,3 +68945,5,1.0,2,1.445987343788147,446,0.0,3 +68946,5,0.0,2,1.5079865455627441,447,0.0,3 +68947,5,0.0,2,1.7139838933944702,448,0.0,3 +68948,5,0.0,2,1.508986473083496,449,1.0,3 +68949,5,0.0,2,1.7319836616516113,450,1.0,3 +68950,5,0.0,2,1.5029865503311157,451,0.0,3 +68951,5,0.0,2,1.3079886436462402,452,0.0,3 +68952,5,0.0,2,1.2779885530471802,453,1.0,3 +68953,5,0.0,2,1.260988473892212,454,1.0,3 +68954,5,0.0,2,1.3489885330200195,455,0.0,3 +68955,5,0.0,2,1.8039827346801758,456,1.0,3 +68956,5,0.0,2,1.314988613128662,457,0.0,3 +68957,5,0.0,2,1.4799869060516357,458,1.0,3 +68958,5,0.0,2,1.6609845161437988,459,0.0,3 +68959,5,0.0,2,1.3599884510040283,460,1.0,3 +68960,5,0.0,2,1.2949885129928589,461,1.0,3 +68961,5,0.0,2,1.490986704826355,462,1.0,3 +68962,5,0.0,2,1.3569884300231934,463,1.0,3 +68963,5,0.0,2,1.2789884805679321,464,1.0,3 +68964,5,0.0,2,1.5739856958389282,465,0.0,3 +68965,5,1.0,2,1.4349874258041382,466,1.0,3 +68966,5,1.0,2,1.2069883346557617,467,1.0,3 +68967,5,1.0,2,1.658984661102295,468,1.0,3 +68968,5,1.0,2,1.471987009048462,469,0.0,3 +68969,5,1.0,2,1.5469859838485718,470,1.0,3 +68970,5,1.0,2,1.4929866790771484,471,1.0,3 +68971,5,1.0,2,1.4129877090454102,472,0.0,3 +68972,5,0.0,2,1.220988392829895,473,1.0,3 +68973,5,0.0,2,1.3659883737564087,474,1.0,3 +68974,5,0.0,2,1.2929885387420654,475,1.0,3 +68975,5,0.0,2,1.376988172531128,476,1.0,3 +68976,5,0.0,2,1.7339836359024048,477,1.0,3 +68977,5,0.0,2,1.1969883441925049,478,0.0,3 +68978,5,1.0,2,1.2559884786605835,479,1.0,3 +68979,5,1.0,2,2.1279807090759277,480,1.0,3 +68980,5,1.0,2,1.3999879360198975,481,1.0,3 +68981,5,1.0,2,1.4559872150421143,482,0.0,3 +68982,5,0.0,2,1.6719844341278076,483,1.0,3 +68983,5,0.0,2,1.9119813442230225,484,1.0,3 +68984,5,0.0,2,1.2389883995056152,485,0.0,3 +68985,5,0.0,2,1.7199838161468506,486,0.0,3 +68986,5,1.0,2,1.3609883785247803,487,1.0,3 +68987,5,1.0,2,1.2999885082244873,488,0.0,3 +68988,5,0.0,2,1.4349874258041382,489,1.0,3 +68989,5,0.0,2,1.4229875802993774,490,0.0,3 +68990,5,0.0,2,2.505998373031616,491,0.0,3 +68991,5,0.0,2,1.2749885320663452,492,0.0,3 +68992,5,1.0,2,1.8329823017120361,493,1.0,3 +68993,5,1.0,2,1.836982250213623,494,0.0,3 +68994,5,0.0,2,1.2979885339736938,495,1.0,3 +68995,5,0.0,2,1.446987271308899,496,1.0,3 +68996,5,0.0,2,1.257988452911377,497,1.0,3 +68997,5,0.0,2,1.251988410949707,498,0.0,3 +68998,5,0.0,2,1.5709856748580933,499,1.0,3 +68999,5,0.0,2,1.5779856443405151,500,1.0,3 +69000,6,1.0,0,1.6966456174850464,1,1.0,3 +69001,6,1.0,0,1.8136441707611084,2,1.0,3 +69002,6,1.0,0,1.8326438665390015,3,1.0,3 +69003,6,1.0,0,1.6146466732025146,4,1.0,3 +69004,6,1.0,0,2.2166504859924316,5,1.0,3 +69005,6,1.0,0,1.318650484085083,6,1.0,3 +69006,6,1.0,0,1.3936494588851929,7,1.0,3 +69007,6,0.0,0,2.507664203643799,8,0.0,3 +69008,6,1.0,0,1.5656473636627197,9,1.0,3 +69009,6,0.0,0,1.3056505918502808,10,0.0,3 +69010,6,1.0,0,1.314650535583496,11,1.0,3 +69011,6,1.0,0,1.1996508836746216,12,1.0,3 +69012,6,0.0,0,1.4916481971740723,13,0.0,3 +69013,6,1.0,0,1.2576510906219482,14,1.0,3 +69014,6,1.0,0,1.59464693069458,15,1.0,3 +69015,6,1.0,0,1.2906508445739746,16,1.0,3 +69016,6,1.0,0,1.7326451539993286,17,1.0,3 +69017,6,1.0,0,1.3356502056121826,18,1.0,3 +69018,6,1.0,0,1.6546461582183838,19,1.0,3 +69019,6,1.0,0,1.3316502571105957,20,1.0,3 +69020,6,1.0,0,1.3096505403518677,21,1.0,3 +69021,6,1.0,0,1.4466488361358643,22,1.0,3 +69022,6,1.0,0,1.3936494588851929,23,1.0,3 +69023,6,0.0,0,1.2666510343551636,24,0.0,3 +69024,6,1.0,0,1.458648681640625,25,1.0,3 +69025,6,1.0,0,2.3716578483581543,26,1.0,3 +69026,6,1.0,0,1.8546435832977295,27,1.0,3 +69027,6,1.0,0,1.4196491241455078,28,1.0,3 +69028,6,1.0,0,1.3586499691009521,29,0.0,3 +69029,6,0.0,0,1.1556508541107178,30,0.0,3 +69030,6,1.0,0,2.577667474746704,31,1.0,3 +69031,6,1.0,0,1.5316476821899414,32,1.0,3 +69032,6,1.0,0,1.429648995399475,33,0.0,3 +69033,6,0.0,0,1.8256440162658691,34,0.0,3 +69034,6,0.0,0,1.3716497421264648,35,0.0,3 +69035,6,1.0,0,1.974642038345337,36,1.0,3 +69036,6,1.0,0,1.2296509742736816,37,1.0,3 +69037,6,1.0,0,1.3486500978469849,38,1.0,3 +69038,6,1.0,0,2.252652168273926,39,1.0,3 +69039,6,1.0,0,1.300650715827942,40,1.0,3 +69040,6,1.0,0,1.392649531364441,41,1.0,3 +69041,6,1.0,0,1.4096492528915405,42,1.0,3 +69042,6,1.0,0,1.555647373199463,43,1.0,3 +69043,6,1.0,0,1.3726497888565063,44,1.0,3 +69044,6,1.0,0,1.2326509952545166,45,0.0,3 +69045,6,0.0,0,1.297650694847107,46,0.0,3 +69046,6,1.0,0,1.7296452522277832,47,1.0,3 +69047,6,1.0,0,1.274651050567627,48,1.0,3 +69048,6,1.0,0,1.5056480169296265,49,0.0,3 +69049,6,0.0,0,1.5526474714279175,50,0.0,3 +69050,6,0.0,0,1.300650715827942,51,0.0,3 +69051,6,0.0,0,1.6266465187072754,52,0.0,3 +69052,6,1.0,0,2.023641586303711,53,1.0,3 +69053,6,1.0,0,2.1946496963500977,54,1.0,3 +69054,6,0.0,0,1.4686485528945923,55,0.0,3 +69055,6,0.0,0,1.2506510019302368,56,0.0,3 +69056,6,1.0,0,1.597646951675415,57,1.0,3 +69057,6,0.0,0,1.6836457252502441,58,0.0,3 +69058,6,1.0,0,1.23465096950531,59,1.0,3 +69059,6,1.0,0,1.2186509370803833,60,1.0,3 +69060,6,1.0,0,1.5306477546691895,61,0.0,3 +69061,6,1.0,0,1.7056455612182617,62,1.0,3 +69062,6,1.0,0,1.3116505146026611,63,1.0,3 +69063,6,1.0,0,1.549647569656372,64,1.0,3 +69064,6,1.0,0,1.296650767326355,65,1.0,3 +69065,6,1.0,0,1.179650902748108,66,1.0,3 +69066,6,1.0,0,1.6056468486785889,67,1.0,3 +69067,6,1.0,0,1.9876418113708496,68,0.0,3 +69068,6,1.0,0,1.5966469049453735,69,1.0,3 +69069,6,1.0,0,2.027641773223877,70,1.0,3 +69070,6,0.0,0,1.8536436557769775,71,0.0,3 +69071,6,1.0,0,1.200650930404663,72,1.0,3 +69072,6,1.0,0,1.27065110206604,73,1.0,3 +69073,6,1.0,0,1.2536510229110718,74,1.0,3 +69074,6,1.0,0,1.4876482486724854,75,1.0,3 +69075,6,1.0,0,1.2736510038375854,76,1.0,3 +69076,6,1.0,0,1.5336477756500244,77,1.0,3 +69077,6,0.0,0,1.3396501541137695,78,1.0,3 +69078,6,0.0,0,1.974642038345337,79,0.0,3 +69079,6,1.0,0,1.4606486558914185,80,1.0,3 +69080,6,1.0,0,1.2846509218215942,81,1.0,3 +69081,6,1.0,0,1.176650881767273,82,1.0,3 +69082,6,1.0,0,1.2886508703231812,83,1.0,3 +69083,6,1.0,0,1.8226439952850342,84,1.0,3 +69084,6,1.0,0,1.8456437587738037,85,0.0,3 +69085,6,0.0,0,1.3976494073867798,86,0.0,3 +69086,6,0.0,0,1.5646473169326782,87,1.0,3 +69087,6,0.0,0,1.3716497421264648,88,0.0,3 +69088,6,0.0,0,1.297650694847107,89,1.0,3 +69089,6,0.0,0,1.6856458187103271,90,0.0,3 +69090,6,1.0,0,1.3696497678756714,91,1.0,3 +69091,6,1.0,0,1.620646595954895,92,1.0,3 +69092,6,1.0,0,1.3166505098342896,93,1.0,3 +69093,6,1.0,0,1.233651041984558,94,1.0,3 +69094,6,1.0,0,1.3776496648788452,95,1.0,3 +69095,6,1.0,0,1.8886431455612183,96,1.0,3 +69096,6,1.0,0,1.2306510210037231,97,1.0,3 +69097,6,1.0,0,1.2226510047912598,98,1.0,3 +69098,6,0.0,0,2.2276511192321777,99,1.0,3 +69099,6,0.0,0,1.233651041984558,100,0.0,3 +69100,6,1.0,0,1.1266508102416992,101,1.0,3 +69101,6,1.0,0,1.7476449012756348,102,0.0,3 +69102,6,1.0,0,1.275650978088379,103,1.0,3 +69103,6,1.0,0,2.289654016494751,104,1.0,3 +69104,6,1.0,0,1.2796509265899658,105,1.0,3 +69105,6,1.0,0,1.2586510181427002,106,1.0,3 +69106,6,1.0,0,1.3826496601104736,107,1.0,3 +69107,6,1.0,0,1.231650948524475,108,0.0,3 +69108,6,0.0,0,1.5756471157073975,109,1.0,3 +69109,6,0.0,0,1.319650411605835,110,0.0,3 +69110,6,1.0,0,1.1586508750915527,111,1.0,3 +69111,6,1.0,0,1.3646498918533325,112,1.0,3 +69112,6,1.0,0,1.5446475744247437,113,1.0,3 +69113,6,1.0,0,1.3346502780914307,114,0.0,3 +69114,6,0.0,0,1.1866508722305298,115,1.0,3 +69115,6,0.0,0,1.7276451587677002,116,0.0,3 +69116,6,1.0,0,1.6626460552215576,117,1.0,3 +69117,6,1.0,0,1.1816508769989014,118,1.0,3 +69118,6,1.0,0,1.4306490421295166,119,1.0,3 +69119,6,1.0,0,1.5686472654342651,120,1.0,3 +69120,6,1.0,0,1.2986507415771484,121,1.0,3 +69121,6,1.0,0,1.4476487636566162,122,1.0,3 +69122,6,1.0,0,1.4266490936279297,123,1.0,3 +69123,6,1.0,0,1.2986507415771484,124,1.0,3 +69124,6,1.0,0,2.345656633377075,125,1.0,3 +69125,6,1.0,0,1.340650200843811,126,1.0,3 +69126,6,1.0,0,2.1976497173309326,127,1.0,3 +69127,6,1.0,0,1.212651014328003,128,0.0,3 +69128,6,0.0,0,1.2996506690979004,129,0.0,3 +69129,6,1.0,0,1.597646951675415,130,1.0,3 +69130,6,0.0,0,1.7686446905136108,131,0.0,3 +69131,6,1.0,0,1.5646473169326782,132,1.0,3 +69132,6,1.0,0,1.43264901638031,133,0.0,3 +69133,6,1.0,0,1.3426501750946045,134,1.0,3 +69134,6,1.0,0,1.45564866065979,135,1.0,3 +69135,6,1.0,0,1.4986481666564941,136,1.0,3 +69136,6,1.0,0,1.2636510133743286,137,1.0,3 +69137,6,1.0,0,1.4386489391326904,138,0.0,3 +69138,6,1.0,0,1.783644437789917,139,1.0,3 +69139,6,1.0,0,1.2156509160995483,140,1.0,3 +69140,6,1.0,0,1.3016506433486938,141,1.0,3 +69141,6,1.0,0,1.3286503553390503,142,1.0,3 +69142,6,1.0,0,1.4606486558914185,143,1.0,3 +69143,6,1.0,0,1.3546500205993652,144,1.0,3 +69144,6,1.0,0,1.271651029586792,145,1.0,3 +69145,6,1.0,0,1.5336477756500244,146,1.0,3 +69146,6,1.0,0,1.3616498708724976,147,1.0,3 +69147,6,1.0,0,1.5166479349136353,148,1.0,3 +69148,6,1.0,0,1.477648377418518,149,1.0,3 +69149,6,1.0,0,1.4126492738723755,150,0.0,3 +69150,6,0.0,0,1.6986455917358398,151,0.0,3 +69151,6,0.0,0,1.3046506643295288,152,0.0,3 +69152,6,1.0,0,1.7436449527740479,153,1.0,3 +69153,6,1.0,0,1.2456510066986084,154,1.0,3 +69154,6,1.0,0,1.3746497631072998,155,1.0,3 +69155,6,1.0,0,1.8496437072753906,156,1.0,3 +69156,6,1.0,0,1.1296508312225342,157,1.0,3 +69157,6,1.0,0,1.3266503810882568,158,1.0,3 +69158,6,1.0,0,1.4786484241485596,159,1.0,3 +69159,6,1.0,0,1.3906495571136475,160,1.0,3 +69160,6,1.0,0,1.2916507720947266,161,1.0,3 +69161,6,1.0,0,1.9146428108215332,162,1.0,3 +69162,6,1.0,0,1.1656508445739746,163,1.0,3 +69163,6,1.0,0,1.59464693069458,164,1.0,3 +69164,6,1.0,0,1.3326503038406372,165,1.0,3 +69165,6,1.0,0,1.7626447677612305,166,1.0,3 +69166,6,1.0,0,1.3106505870819092,167,1.0,3 +69167,6,1.0,0,1.3346502780914307,168,1.0,3 +69168,6,1.0,0,1.292650818824768,169,1.0,3 +69169,6,1.0,0,1.2526509761810303,170,1.0,3 +69170,6,1.0,0,1.3656498193740845,171,1.0,3 +69171,6,1.0,0,1.2116509675979614,172,1.0,3 +69172,6,1.0,0,1.2246509790420532,173,1.0,3 +69173,6,1.0,0,1.1566507816314697,174,1.0,3 +69174,6,1.0,0,1.437648892402649,175,1.0,3 +69175,6,1.0,0,1.5346477031707764,176,1.0,3 +69176,6,1.0,0,1.3086506128311157,177,1.0,3 +69177,6,1.0,0,1.2496510744094849,178,0.0,3 +69178,6,0.0,0,1.664646029472351,179,0.0,3 +69179,6,1.0,0,2.010641574859619,180,1.0,3 +69180,6,1.0,0,1.4246491193771362,181,1.0,3 +69181,6,1.0,0,1.689645767211914,182,1.0,3 +69182,6,1.0,0,1.1576508283615112,183,1.0,3 +69183,6,1.0,0,1.8386437892913818,184,1.0,3 +69184,6,1.0,0,1.1946508884429932,185,1.0,3 +69185,6,1.0,0,1.524647831916809,186,1.0,3 +69186,6,1.0,0,1.2146509885787964,187,1.0,3 +69187,6,1.0,0,2.258652687072754,188,1.0,3 +69188,6,1.0,0,1.5126479864120483,189,1.0,3 +69189,6,1.0,0,1.6796457767486572,190,1.0,3 +69190,6,1.0,0,1.4686485528945923,191,1.0,3 +69191,6,1.0,0,1.80864417552948,192,1.0,3 +69192,6,1.0,0,2.06964373588562,193,1.0,3 +69193,6,1.0,0,1.2736510038375854,194,1.0,3 +69194,6,1.0,0,1.7546448707580566,195,1.0,3 +69195,6,1.0,0,1.2476509809494019,196,0.0,3 +69196,6,0.0,0,1.7446449995040894,197,0.0,3 +69197,6,1.0,0,2.2236509323120117,198,1.0,3 +69198,6,1.0,0,1.2846509218215942,199,1.0,3 +69199,6,1.0,0,1.2486510276794434,200,1.0,3 +69200,6,1.0,0,1.363649845123291,201,1.0,3 +69201,6,1.0,0,1.6296465396881104,202,1.0,3 +69202,6,1.0,0,1.3286503553390503,203,0.0,3 +69203,6,0.0,0,1.4036493301391602,204,0.0,3 +69204,6,0.0,0,1.3646498918533325,205,0.0,3 +69205,6,1.0,0,1.3776496648788452,206,1.0,3 +69206,6,1.0,0,1.2626510858535767,207,1.0,3 +69207,6,1.0,0,1.2606511116027832,208,1.0,3 +69208,6,1.0,0,1.4406489133834839,209,1.0,3 +69209,6,1.0,0,1.3236503601074219,210,1.0,3 +69210,6,1.0,0,1.6316463947296143,211,1.0,3 +69211,6,1.0,0,1.6156466007232666,212,1.0,3 +69212,6,1.0,0,1.392649531364441,213,1.0,3 +69213,6,1.0,0,1.4896482229232788,214,1.0,3 +69214,6,1.0,0,1.3616498708724976,215,1.0,3 +69215,6,1.0,0,1.3306503295898438,216,1.0,3 +69216,6,1.0,0,1.4706485271453857,217,1.0,3 +69217,6,1.0,0,1.4136492013931274,218,1.0,3 +69218,6,1.0,0,1.4796483516693115,219,1.0,3 +69219,6,1.0,0,1.6386463642120361,220,0.0,3 +69220,6,0.0,0,1.5056480169296265,221,0.0,3 +69221,6,1.0,0,1.2766510248184204,222,1.0,3 +69222,6,1.0,0,1.6676459312438965,223,1.0,3 +69223,6,1.0,0,1.4926482439041138,224,1.0,3 +69224,6,1.0,0,1.3256503343582153,225,1.0,3 +69225,6,1.0,0,1.2496510744094849,226,1.0,3 +69226,6,1.0,0,1.4536486864089966,227,1.0,3 +69227,6,1.0,0,1.6186466217041016,228,1.0,3 +69228,6,1.0,0,1.2816509008407593,229,1.0,3 +69229,6,1.0,0,1.2576510906219482,230,1.0,3 +69230,6,1.0,0,1.2866508960723877,231,1.0,3 +69231,6,1.0,0,1.459648609161377,232,1.0,3 +69232,6,0.0,0,1.3426501750946045,233,0.0,3 +69233,6,1.0,0,1.5776472091674805,234,1.0,3 +69234,6,1.0,0,1.6056468486785889,235,1.0,3 +69235,6,1.0,0,1.9406424760818481,236,0.0,3 +69236,6,0.0,0,1.2016509771347046,237,0.0,3 +69237,6,0.0,0,1.969642162322998,238,0.0,3 +69238,6,0.0,0,1.4516487121582031,239,1.0,3 +69239,6,0.0,0,1.7076454162597656,240,0.0,3 +69240,6,0.0,0,1.4606486558914185,241,0.0,3 +69241,6,1.0,0,1.300650715827942,242,1.0,3 +69242,6,1.0,0,1.4506487846374512,243,1.0,3 +69243,6,1.0,0,1.9956417083740234,244,1.0,3 +69244,6,1.0,0,1.5596473217010498,245,1.0,3 +69245,6,1.0,0,1.546647548675537,246,0.0,3 +69246,6,0.0,0,1.1326508522033691,247,0.0,3 +69247,6,1.0,0,1.668645977973938,248,1.0,3 +69248,6,1.0,0,1.812644124031067,249,1.0,3 +69249,6,1.0,0,1.4866483211517334,250,1.0,3 +69250,6,1.0,0,1.5176478624343872,251,1.0,3 +69251,6,1.0,0,1.5446475744247437,252,0.0,3 +69252,6,1.0,0,1.3866496086120605,253,1.0,3 +69253,6,1.0,0,1.551647424697876,254,1.0,3 +69254,6,1.0,0,1.389649510383606,255,1.0,3 +69255,6,1.0,0,1.2576510906219482,256,1.0,3 +69256,6,1.0,0,1.3826496601104736,257,1.0,3 +69257,6,0.0,0,1.2996506690979004,258,0.0,3 +69258,6,1.0,0,1.318650484085083,259,1.0,3 +69259,6,1.0,0,1.2916507720947266,260,0.0,3 +69260,6,1.0,0,1.4756484031677246,261,1.0,3 +69261,6,1.0,0,1.2806509733200073,262,1.0,3 +69262,6,1.0,0,1.3586499691009521,263,1.0,3 +69263,6,0.0,0,1.973642110824585,264,1.0,3 +69264,6,0.0,0,1.2606511116027832,265,0.0,3 +69265,6,1.0,0,1.2416510581970215,266,1.0,3 +69266,6,1.0,0,1.34565007686615,267,1.0,3 +69267,6,1.0,0,1.7936444282531738,268,1.0,3 +69268,6,1.0,0,1.3976494073867798,269,0.0,3 +69269,6,1.0,0,1.524647831916809,270,1.0,3 +69270,6,1.0,0,1.875643253326416,271,1.0,3 +69271,6,1.0,0,1.3486500978469849,272,1.0,3 +69272,6,1.0,0,1.2146509885787964,273,1.0,3 +69273,6,1.0,0,1.3646498918533325,274,1.0,3 +69274,6,1.0,0,1.6296465396881104,275,1.0,3 +69275,6,1.0,0,1.3046506643295288,276,1.0,3 +69276,6,1.0,0,1.2476509809494019,277,1.0,3 +69277,6,1.0,0,1.6286464929580688,278,1.0,3 +69278,6,1.0,0,1.32265043258667,279,1.0,3 +69279,6,1.0,0,1.2186509370803833,280,1.0,3 +69280,6,1.0,0,1.2726510763168335,281,1.0,3 +69281,6,1.0,0,1.462648630142212,282,1.0,3 +69282,6,1.0,0,1.5206478834152222,283,1.0,3 +69283,6,1.0,0,1.315650463104248,284,1.0,3 +69284,6,1.0,0,2.3916587829589844,285,1.0,3 +69285,6,1.0,0,1.7196452617645264,286,1.0,3 +69286,6,1.0,0,1.2616510391235352,287,1.0,3 +69287,6,1.0,0,1.3086506128311157,288,1.0,3 +69288,6,0.0,0,1.2506510019302368,289,1.0,3 +69289,6,0.0,0,2.081644296646118,290,1.0,3 +69290,6,1.0,0,2.04964280128479,291,1.0,3 +69291,6,0.0,0,2.542665958404541,292,0.0,3 +69292,6,1.0,0,1.3086506128311157,293,1.0,3 +69293,6,1.0,0,1.1786508560180664,294,1.0,3 +69294,6,1.0,0,1.1996508836746216,295,1.0,3 +69295,6,1.0,0,1.5226478576660156,296,1.0,3 +69296,6,1.0,0,1.7996442317962646,297,1.0,3 +69297,6,1.0,0,1.2666510343551636,298,1.0,3 +69298,6,1.0,0,1.275650978088379,299,1.0,3 +69299,6,1.0,0,1.2026509046554565,300,0.0,3 +69300,6,1.0,0,1.7476449012756348,301,1.0,3 +69301,6,1.0,0,1.8466436862945557,302,1.0,3 +69302,6,1.0,0,1.3176504373550415,303,0.0,3 +69303,6,1.0,0,1.6126466989517212,304,1.0,3 +69304,6,1.0,0,1.502648115158081,305,1.0,3 +69305,6,1.0,0,1.2736510038375854,306,1.0,3 +69306,6,1.0,0,1.694645643234253,307,1.0,3 +69307,6,1.0,0,1.274651050567627,308,0.0,3 +69308,6,0.0,0,1.6046468019485474,309,0.0,3 +69309,6,0.0,0,2.079644203186035,310,0.0,3 +69310,6,0.0,0,1.7256453037261963,311,0.0,3 +69311,6,0.0,0,1.1996508836746216,312,0.0,3 +69312,6,0.0,0,1.6636459827423096,313,0.0,3 +69313,6,0.0,0,1.5106480121612549,314,0.0,3 +69314,6,1.0,0,1.366649866104126,315,1.0,3 +69315,6,1.0,0,1.6296465396881104,316,1.0,3 +69316,6,1.0,0,1.693645715713501,317,0.0,3 +69317,6,0.0,0,1.2276510000228882,318,0.0,3 +69318,6,0.0,0,1.5796470642089844,319,0.0,3 +69319,6,0.0,0,1.0916507244110107,320,0.0,3 +69320,6,0.0,0,1.366649866104126,321,1.0,3 +69321,6,0.0,0,1.1016507148742676,322,0.0,3 +69322,6,1.0,0,1.340650200843811,323,1.0,3 +69323,6,1.0,0,2.249652147293091,324,1.0,3 +69324,6,1.0,0,1.4926482439041138,325,1.0,3 +69325,6,1.0,0,1.243651032447815,326,0.0,3 +69326,6,0.0,0,1.2496510744094849,327,0.0,3 +69327,6,0.0,0,1.1346508264541626,328,0.0,3 +69328,6,1.0,0,1.8676433563232422,329,1.0,3 +69329,6,1.0,0,1.2506510019302368,330,1.0,3 +69330,6,1.0,0,1.410649299621582,331,1.0,3 +69331,6,1.0,0,1.3106505870819092,332,1.0,3 +69332,6,1.0,0,1.3386502265930176,333,1.0,3 +69333,6,1.0,0,1.2726510763168335,334,0.0,3 +69334,6,0.0,0,2.2336513996124268,335,0.0,3 +69335,6,0.0,0,1.8036441802978516,336,0.0,3 +69336,6,0.0,0,1.616646647453308,337,1.0,3 +69337,6,0.0,0,1.1916508674621582,338,0.0,3 +69338,6,1.0,0,1.3316502571105957,339,1.0,3 +69339,6,1.0,0,1.4016493558883667,340,1.0,3 +69340,6,1.0,0,1.4976481199264526,341,1.0,3 +69341,6,1.0,0,1.3336502313613892,342,0.0,3 +69342,6,0.0,0,1.3796496391296387,343,0.0,3 +69343,6,0.0,0,1.668645977973938,344,1.0,3 +69344,6,0.0,0,1.1526508331298828,345,0.0,3 +69345,6,0.0,0,1.1296508312225342,346,0.0,3 +69346,6,0.0,0,1.9186427593231201,347,0.0,3 +69347,6,1.0,0,1.944642424583435,348,1.0,3 +69348,6,1.0,0,1.2426509857177734,349,1.0,3 +69349,6,1.0,0,1.3256503343582153,350,0.0,3 +69350,6,1.0,0,1.363649845123291,351,0.0,3 +69351,6,0.0,0,1.3166505098342896,352,0.0,3 +69352,6,1.0,0,1.4946482181549072,353,1.0,3 +69353,6,1.0,0,1.48464834690094,354,1.0,3 +69354,6,1.0,0,1.4836483001708984,355,1.0,3 +69355,6,1.0,0,1.6676459312438965,356,1.0,3 +69356,6,1.0,0,1.2216509580612183,357,1.0,3 +69357,6,0.0,0,1.2556509971618652,358,0.0,3 +69358,6,1.0,0,1.5966469049453735,359,0.0,3 +69359,6,1.0,0,1.5056480169296265,360,0.0,3 +69360,6,1.0,0,1.672645926475525,361,1.0,3 +69361,6,1.0,0,1.547647476196289,362,1.0,3 +69362,6,1.0,0,1.2556509971618652,363,1.0,3 +69363,6,1.0,0,2.1036453247070312,364,1.0,3 +69364,6,1.0,0,1.5426476001739502,365,0.0,3 +69365,6,0.0,0,1.4516487121582031,366,0.0,3 +69366,6,1.0,0,1.7886444330215454,367,1.0,3 +69367,6,1.0,0,1.367649793624878,368,1.0,3 +69368,6,1.0,0,1.5156478881835938,369,1.0,3 +69369,6,1.0,0,1.2516510486602783,370,1.0,3 +69370,6,1.0,0,1.2296509742736816,371,1.0,3 +69371,6,1.0,0,1.4386489391326904,372,1.0,3 +69372,6,1.0,0,1.462648630142212,373,1.0,3 +69373,6,1.0,0,1.3326503038406372,374,0.0,3 +69374,6,0.0,0,1.3426501750946045,375,0.0,3 +69375,6,1.0,0,1.5836470127105713,376,1.0,3 +69376,6,1.0,0,1.602646827697754,377,1.0,3 +69377,6,1.0,0,1.7226452827453613,378,1.0,3 +69378,6,1.0,0,1.462648630142212,379,0.0,3 +69379,6,0.0,0,2.04964280128479,380,0.0,3 +69380,6,1.0,0,1.3866496086120605,381,1.0,3 +69381,6,1.0,0,1.5796470642089844,382,0.0,3 +69382,6,0.0,0,1.6696460247039795,383,1.0,3 +69383,6,0.0,0,1.7586448192596436,384,0.0,3 +69384,6,0.0,0,1.5686472654342651,385,0.0,3 +69385,6,1.0,0,1.3696497678756714,386,1.0,3 +69386,6,1.0,0,1.735645055770874,387,1.0,3 +69387,6,1.0,0,1.2146509885787964,388,0.0,3 +69388,6,1.0,0,2.3786582946777344,389,1.0,3 +69389,6,1.0,0,1.4436488151550293,390,1.0,3 +69390,6,1.0,0,1.5086480379104614,391,1.0,3 +69391,6,1.0,0,1.436648964881897,392,1.0,3 +69392,6,1.0,0,1.4876482486724854,393,1.0,3 +69393,6,1.0,0,1.5436475276947021,394,1.0,3 +69394,6,1.0,0,1.624646544456482,395,0.0,3 +69395,6,1.0,0,1.6226465702056885,396,0.0,3 +69396,6,0.0,0,1.6236464977264404,397,0.0,3 +69397,6,0.0,0,1.1686508655548096,398,0.0,3 +69398,6,0.0,0,1.5346477031707764,399,0.0,3 +69399,6,1.0,0,1.5046480894088745,400,1.0,3 +69400,6,1.0,0,1.3306503295898438,401,1.0,3 +69401,6,1.0,0,1.5616474151611328,402,1.0,3 +69402,6,1.0,0,1.233651041984558,403,1.0,3 +69403,6,1.0,0,1.1936509609222412,404,1.0,3 +69404,6,1.0,0,2.0906448364257812,405,0.0,3 +69405,6,0.0,0,1.384649634361267,406,0.0,3 +69406,6,1.0,0,1.5336477756500244,407,0.0,3 +69407,6,0.0,0,1.9866418838500977,408,0.0,3 +69408,6,1.0,0,1.5736472606658936,409,1.0,3 +69409,6,1.0,0,1.2786509990692139,410,1.0,3 +69410,6,1.0,0,1.4876482486724854,411,1.0,3 +69411,6,1.0,0,1.2456510066986084,412,1.0,3 +69412,6,1.0,0,1.3056505918502808,413,0.0,3 +69413,6,0.0,0,1.2566510438919067,414,0.0,3 +69414,6,0.0,0,1.3166505098342896,415,0.0,3 +69415,6,0.0,0,1.3966494798660278,416,0.0,3 +69416,6,1.0,0,1.4466488361358643,417,1.0,3 +69417,6,1.0,0,2.3746581077575684,418,0.0,3 +69418,6,0.0,0,1.2206509113311768,419,0.0,3 +69419,6,0.0,0,1.5136479139328003,420,0.0,3 +69420,6,0.0,0,1.598646879196167,421,0.0,3 +69421,6,0.0,0,1.4796483516693115,422,0.0,3 +69422,6,0.0,0,1.77964448928833,423,0.0,3 +69423,6,0.0,0,2.4536616802215576,424,0.0,3 +69424,6,1.0,0,1.9286426305770874,425,1.0,3 +69425,6,1.0,0,1.2086509466171265,426,1.0,3 +69426,6,1.0,0,1.871643304824829,427,1.0,3 +69427,6,1.0,0,1.267651081085205,428,1.0,3 +69428,6,1.0,0,1.1816508769989014,429,1.0,3 +69429,6,1.0,0,1.4036493301391602,430,0.0,3 +69430,6,1.0,0,1.5336477756500244,431,1.0,3 +69431,6,1.0,0,1.616646647453308,432,0.0,3 +69432,6,1.0,0,1.6366463899612427,433,1.0,3 +69433,6,1.0,0,1.3056505918502808,434,1.0,3 +69434,6,1.0,0,1.5166479349136353,435,1.0,3 +69435,6,0.0,0,1.7906444072723389,436,0.0,3 +69436,6,1.0,0,1.3816496133804321,437,1.0,3 +69437,6,1.0,0,1.4946482181549072,438,1.0,3 +69438,6,1.0,0,1.4036493301391602,439,0.0,3 +69439,6,1.0,0,2.608668804168701,440,1.0,3 +69440,6,1.0,0,1.6596460342407227,441,1.0,3 +69441,6,1.0,0,1.3016506433486938,442,1.0,3 +69442,6,1.0,0,1.2246509790420532,443,0.0,3 +69443,6,0.0,0,1.3936494588851929,444,0.0,3 +69444,6,0.0,0,1.524647831916809,445,0.0,3 +69445,6,1.0,0,1.75664484500885,446,1.0,3 +69446,6,1.0,0,1.6196465492248535,447,1.0,3 +69447,6,1.0,0,1.3736497163772583,448,1.0,3 +69448,6,1.0,0,1.7466449737548828,449,1.0,3 +69449,6,1.0,0,1.7446449995040894,450,0.0,3 +69450,6,0.0,0,1.7156453132629395,451,0.0,3 +69451,6,1.0,0,1.6606460809707642,452,1.0,3 +69452,6,1.0,0,1.4896482229232788,453,1.0,3 +69453,6,1.0,0,1.4066493511199951,454,1.0,3 +69454,6,0.0,0,1.5186479091644287,455,0.0,3 +69455,6,0.0,0,1.359649896621704,456,0.0,3 +69456,6,1.0,0,1.6226465702056885,457,1.0,3 +69457,6,1.0,0,1.2576510906219482,458,0.0,3 +69458,6,0.0,0,1.9636421203613281,459,0.0,3 +69459,6,0.0,0,1.2646510601043701,460,0.0,3 +69460,6,0.0,0,1.4866483211517334,461,0.0,3 +69461,6,0.0,0,1.1906509399414062,462,0.0,3 +69462,6,1.0,0,1.1586508750915527,463,0.0,3 +69463,6,0.0,0,1.5056480169296265,464,0.0,3 +69464,6,1.0,0,1.5816471576690674,465,1.0,3 +69465,6,1.0,0,1.5926469564437866,466,1.0,3 +69466,6,1.0,0,1.5186479091644287,467,1.0,3 +69467,6,1.0,0,1.6376464366912842,468,1.0,3 +69468,6,1.0,0,1.4896482229232788,469,0.0,3 +69469,6,1.0,0,1.6226465702056885,470,0.0,3 +69470,6,0.0,0,1.34565007686615,471,0.0,3 +69471,6,0.0,0,1.8016443252563477,472,0.0,3 +69472,6,0.0,0,1.3536499738693237,473,0.0,3 +69473,6,1.0,0,1.5146479606628418,474,1.0,3 +69474,6,1.0,0,1.5126479864120483,475,1.0,3 +69475,6,1.0,0,1.4786484241485596,476,1.0,3 +69476,6,1.0,0,1.826643943786621,477,1.0,3 +69477,6,1.0,0,1.2666510343551636,478,1.0,3 +69478,6,1.0,0,2.031641960144043,479,0.0,3 +69479,6,0.0,0,1.764644742012024,480,0.0,3 +69480,6,0.0,0,1.5406476259231567,481,1.0,3 +69481,6,0.0,0,2.093644857406616,482,0.0,3 +69482,6,1.0,0,1.3746497631072998,483,1.0,3 +69483,6,1.0,0,1.292650818824768,484,1.0,3 +69484,6,1.0,0,1.4456487894058228,485,1.0,3 +69485,6,1.0,0,1.1776509284973145,486,1.0,3 +69486,6,0.0,0,1.32265043258667,487,0.0,3 +69487,6,1.0,0,1.21065092086792,488,1.0,3 +69488,6,1.0,0,1.2866508960723877,489,1.0,3 +69489,6,1.0,0,1.1956509351730347,490,1.0,3 +69490,6,1.0,0,1.6446462869644165,491,1.0,3 +69491,6,1.0,0,1.919642686843872,492,1.0,3 +69492,6,1.0,0,1.2286510467529297,493,1.0,3 +69493,6,1.0,0,1.481648325920105,494,0.0,3 +69494,6,0.0,0,1.553647518157959,495,1.0,3 +69495,6,0.0,0,1.1276507377624512,496,0.0,3 +69496,6,0.0,0,2.1876492500305176,497,0.0,3 +69497,6,0.0,0,1.4966481924057007,498,0.0,3 +69498,6,0.0,0,1.5526474714279175,499,0.0,3 +69499,6,1.0,0,1.9066429138183594,500,1.0,3 +69500,6,0.0,1,1.3296502828598022,1,0.0,3 +69501,6,1.0,1,1.4916481971740723,2,1.0,3 +69502,6,0.0,1,1.8416438102722168,3,0.0,3 +69503,6,1.0,1,1.5336477756500244,4,0.0,3 +69504,6,0.0,1,1.8856432437896729,5,1.0,3 +69505,6,0.0,1,1.4616485834121704,6,0.0,3 +69506,6,0.0,1,1.5046480894088745,7,0.0,3 +69507,6,0.0,1,1.1606508493423462,8,0.0,3 +69508,6,1.0,1,1.6106467247009277,9,1.0,3 +69509,6,1.0,1,1.1496508121490479,10,1.0,3 +69510,6,1.0,1,1.314650535583496,11,1.0,3 +69511,6,0.0,1,1.367649793624878,12,1.0,3 +69512,6,0.0,1,2.3676576614379883,13,0.0,3 +69513,6,1.0,1,1.433648943901062,14,0.0,3 +69514,6,0.0,1,1.314650535583496,15,1.0,3 +69515,6,0.0,1,1.1016507148742676,16,0.0,3 +69516,6,0.0,1,2.291654109954834,17,1.0,3 +69517,6,0.0,1,1.5586473941802979,18,0.0,3 +69518,6,1.0,1,1.5686472654342651,19,1.0,3 +69519,6,1.0,1,1.2956507205963135,20,1.0,3 +69520,6,1.0,1,1.4426488876342773,21,1.0,3 +69521,6,0.0,1,1.2946507930755615,22,0.0,3 +69522,6,1.0,1,1.433648943901062,23,1.0,3 +69523,6,1.0,1,1.2796509265899658,24,1.0,3 +69524,6,1.0,1,1.7576448917388916,25,1.0,3 +69525,6,1.0,1,1.616646647453308,26,1.0,3 +69526,6,1.0,1,1.2556509971618652,27,1.0,3 +69527,6,1.0,1,1.2596510648727417,28,1.0,3 +69528,6,1.0,1,1.5106480121612549,29,1.0,3 +69529,6,1.0,1,1.7096455097198486,30,0.0,3 +69530,6,1.0,1,1.4226491451263428,31,1.0,3 +69531,6,0.0,1,1.1536508798599243,32,1.0,3 +69532,6,1.0,1,1.3746497631072998,33,1.0,3 +69533,6,0.0,1,1.139650821685791,34,0.0,3 +69534,6,1.0,1,1.314650535583496,35,1.0,3 +69535,6,1.0,1,1.3296502828598022,36,1.0,3 +69536,6,1.0,1,1.2796509265899658,37,1.0,3 +69537,6,1.0,1,1.6746459007263184,38,1.0,3 +69538,6,1.0,1,1.4286490678787231,39,0.0,3 +69539,6,0.0,1,1.5206478834152222,40,0.0,3 +69540,6,0.0,1,1.5126479864120483,41,0.0,3 +69541,6,1.0,1,1.4766484498977661,42,1.0,3 +69542,6,1.0,1,1.366649866104126,43,1.0,3 +69543,6,1.0,1,1.672645926475525,44,1.0,3 +69544,6,1.0,1,1.437648892402649,45,0.0,3 +69545,6,0.0,1,1.4516487121582031,46,0.0,3 +69546,6,1.0,1,2.3926587104797363,47,1.0,3 +69547,6,1.0,1,1.739645004272461,48,1.0,3 +69548,6,1.0,1,1.2226510047912598,49,1.0,3 +69549,6,1.0,1,1.407649278640747,50,1.0,3 +69550,6,1.0,1,1.8376438617706299,51,1.0,3 +69551,6,1.0,1,1.4126492738723755,52,1.0,3 +69552,6,1.0,1,1.2526509761810303,53,1.0,3 +69553,6,1.0,1,1.2546510696411133,54,0.0,3 +69554,6,0.0,1,1.267651081085205,55,0.0,3 +69555,6,1.0,1,1.5296478271484375,56,1.0,3 +69556,6,1.0,1,1.314650535583496,57,0.0,3 +69557,6,0.0,1,1.7586448192596436,58,0.0,3 +69558,6,1.0,1,1.6956455707550049,59,1.0,3 +69559,6,1.0,1,1.716645359992981,60,1.0,3 +69560,6,1.0,1,1.29365074634552,61,0.0,3 +69561,6,1.0,1,1.8116440773010254,62,0.0,3 +69562,6,1.0,1,1.3246504068374634,63,0.0,3 +69563,6,0.0,1,2.083644390106201,64,1.0,3 +69564,6,0.0,1,1.7326451539993286,65,0.0,3 +69565,6,0.0,1,1.1016507148742676,66,0.0,3 +69566,6,0.0,1,1.2216509580612183,67,0.0,3 +69567,6,0.0,1,1.5276477336883545,68,0.0,3 +69568,6,0.0,1,1.7146453857421875,69,1.0,3 +69569,6,1.0,1,2.2146506309509277,70,1.0,3 +69570,6,1.0,1,1.672645926475525,71,1.0,3 +69571,6,1.0,1,1.7276451587677002,72,0.0,3 +69572,6,0.0,1,1.3976494073867798,73,1.0,3 +69573,6,0.0,1,1.1896508932113647,74,0.0,3 +69574,6,0.0,1,1.43264901638031,75,0.0,3 +69575,6,1.0,1,1.5966469049453735,76,1.0,3 +69576,6,1.0,1,1.179650902748108,77,1.0,3 +69577,6,0.0,1,1.1196507215499878,78,0.0,3 +69578,6,1.0,1,1.6796457767486572,79,1.0,3 +69579,6,1.0,1,1.4446488618850708,80,0.0,3 +69580,6,1.0,1,1.2796509265899658,81,1.0,3 +69581,6,1.0,1,1.27065110206604,82,1.0,3 +69582,6,1.0,1,1.524647831916809,83,1.0,3 +69583,6,1.0,1,1.576647162437439,84,1.0,3 +69584,6,1.0,1,1.2586510181427002,85,1.0,3 +69585,6,1.0,1,1.3876495361328125,86,0.0,3 +69586,6,0.0,1,1.6536462306976318,87,1.0,3 +69587,6,0.0,1,1.1916508674621582,88,0.0,3 +69588,6,0.0,1,1.2786509990692139,89,0.0,3 +69589,6,1.0,1,1.7286452054977417,90,1.0,3 +69590,6,1.0,1,1.5776472091674805,91,1.0,3 +69591,6,1.0,1,1.3616498708724976,92,0.0,3 +69592,6,1.0,1,1.5166479349136353,93,1.0,3 +69593,6,1.0,1,1.5736472606658936,94,1.0,3 +69594,6,1.0,1,1.3336502313613892,95,1.0,3 +69595,6,1.0,1,1.2776509523391724,96,0.0,3 +69596,6,0.0,1,1.0936506986618042,97,0.0,3 +69597,6,1.0,1,1.3686498403549194,98,1.0,3 +69598,6,1.0,1,1.3246504068374634,99,0.0,3 +69599,6,1.0,1,1.7526448965072632,100,1.0,3 +69600,6,1.0,1,1.4386489391326904,101,1.0,3 +69601,6,1.0,1,1.411649227142334,102,1.0,3 +69602,6,1.0,1,2.020641326904297,103,0.0,3 +69603,6,0.0,1,1.7586448192596436,104,0.0,3 +69604,6,0.0,1,2.1146459579467773,105,0.0,3 +69605,6,1.0,1,1.50764799118042,106,1.0,3 +69606,6,1.0,1,1.1726508140563965,107,1.0,3 +69607,6,1.0,1,1.8246439695358276,108,1.0,3 +69608,6,1.0,1,1.3256503343582153,109,0.0,3 +69609,6,0.0,1,1.1556508541107178,110,0.0,3 +69610,6,0.0,1,1.388649582862854,111,0.0,3 +69611,6,1.0,1,2.28865385055542,112,1.0,3 +69612,6,1.0,1,1.2656511068344116,113,0.0,3 +69613,6,0.0,1,1.4826483726501465,114,0.0,3 +69614,6,1.0,1,1.6596460342407227,115,1.0,3 +69615,6,1.0,1,1.43264901638031,116,0.0,3 +69616,6,1.0,1,1.8696434497833252,117,0.0,3 +69617,6,0.0,1,1.2916507720947266,118,0.0,3 +69618,6,1.0,1,1.5266478061676025,119,1.0,3 +69619,6,1.0,1,1.8206440210342407,120,0.0,3 +69620,6,1.0,1,1.4436488151550293,121,0.0,3 +69621,6,0.0,1,1.2666510343551636,122,1.0,3 +69622,6,0.0,1,1.344650149345398,123,0.0,3 +69623,6,0.0,1,1.8556435108184814,124,1.0,3 +69624,6,0.0,1,1.5826470851898193,125,0.0,3 +69625,6,0.0,1,1.3306503295898438,126,1.0,3 +69626,6,0.0,1,1.3056505918502808,127,0.0,3 +69627,6,0.0,1,1.388649582862854,128,0.0,3 +69628,6,0.0,1,1.5756471157073975,129,0.0,3 +69629,6,0.0,1,1.6886457204818726,130,1.0,3 +69630,6,0.0,1,1.231650948524475,131,1.0,3 +69631,6,0.0,1,1.2016509771347046,132,0.0,3 +69632,6,1.0,1,1.4406489133834839,133,1.0,3 +69633,6,1.0,1,1.5166479349136353,134,1.0,3 +69634,6,0.0,1,1.3076505661010742,135,1.0,3 +69635,6,0.0,1,1.7846444845199585,136,0.0,3 +69636,6,0.0,1,1.2736510038375854,137,0.0,3 +69637,6,1.0,1,1.143650770187378,138,1.0,3 +69638,6,1.0,1,1.2766510248184204,139,0.0,3 +69639,6,1.0,1,1.7206453084945679,140,1.0,3 +69640,6,1.0,1,1.3816496133804321,141,0.0,3 +69641,6,0.0,1,1.145650863647461,142,1.0,3 +69642,6,0.0,1,1.2496510744094849,143,1.0,3 +69643,6,0.0,1,1.5316476821899414,144,0.0,3 +69644,6,1.0,1,1.8876430988311768,145,1.0,3 +69645,6,1.0,1,1.6156466007232666,146,0.0,3 +69646,6,0.0,1,1.1556508541107178,147,1.0,3 +69647,6,0.0,1,1.4136492013931274,148,0.0,3 +69648,6,0.0,1,1.2606511116027832,149,0.0,3 +69649,6,0.0,1,1.5526474714279175,150,1.0,3 +69650,6,0.0,1,1.3096505403518677,151,0.0,3 +69651,6,0.0,1,1.97064208984375,152,0.0,3 +69652,6,0.0,1,1.549647569656372,153,0.0,3 +69653,6,1.0,1,1.9826419353485107,154,1.0,3 +69654,6,1.0,1,1.8646434545516968,155,0.0,3 +69655,6,0.0,1,1.7776446342468262,156,1.0,3 +69656,6,0.0,1,1.4226491451263428,157,1.0,3 +69657,6,0.0,1,1.3276503086090088,158,0.0,3 +69658,6,0.0,1,2.2216508388519287,159,0.0,3 +69659,6,0.0,1,1.170650839805603,160,0.0,3 +69660,6,1.0,1,1.8896431922912598,161,1.0,3 +69661,6,1.0,1,1.2726510763168335,162,1.0,3 +69662,6,1.0,1,1.3746497631072998,163,0.0,3 +69663,6,1.0,1,1.8696434497833252,164,0.0,3 +69664,6,0.0,1,1.4236490726470947,165,1.0,3 +69665,6,0.0,1,1.6346464157104492,166,1.0,3 +69666,6,0.0,1,1.385649561882019,167,1.0,3 +69667,6,0.0,1,2.1076455116271973,168,0.0,3 +69668,6,0.0,1,1.4266490936279297,169,1.0,3 +69669,6,0.0,1,1.3066506385803223,170,1.0,3 +69670,6,0.0,1,1.5106480121612549,171,1.0,3 +69671,6,0.0,1,1.4096492528915405,172,0.0,3 +69672,6,1.0,1,1.4176491498947144,173,1.0,3 +69673,6,1.0,1,1.7066454887390137,174,0.0,3 +69674,6,1.0,1,2.1326465606689453,175,1.0,3 +69675,6,1.0,1,1.4906482696533203,176,1.0,3 +69676,6,1.0,1,1.3576499223709106,177,0.0,3 +69677,6,0.0,1,1.5136479139328003,178,0.0,3 +69678,6,1.0,1,1.5396475791931152,179,0.0,3 +69679,6,0.0,1,1.2276510000228882,180,1.0,3 +69680,6,0.0,1,1.1616508960723877,181,1.0,3 +69681,6,0.0,1,1.647646188735962,182,0.0,3 +69682,6,1.0,1,1.4836483001708984,183,1.0,3 +69683,6,0.0,1,1.6846457719802856,184,1.0,3 +69684,6,0.0,1,1.169650912284851,185,1.0,3 +69685,6,1.0,1,1.4006494283676147,186,1.0,3 +69686,6,1.0,1,1.6326464414596558,187,0.0,3 +69687,6,0.0,1,1.3066506385803223,188,1.0,3 +69688,6,0.0,1,1.3316502571105957,189,0.0,3 +69689,6,1.0,1,1.2526509761810303,190,1.0,3 +69690,6,1.0,1,1.5876469612121582,191,1.0,3 +69691,6,1.0,1,1.549647569656372,192,1.0,3 +69692,6,1.0,1,1.2456510066986084,193,1.0,3 +69693,6,0.0,1,1.411649227142334,194,0.0,3 +69694,6,1.0,1,1.4656485319137573,195,0.0,3 +69695,6,0.0,1,1.48464834690094,196,0.0,3 +69696,6,1.0,1,1.4256490468978882,197,1.0,3 +69697,6,1.0,1,1.2816509008407593,198,0.0,3 +69698,6,0.0,1,1.4866483211517334,199,1.0,3 +69699,6,0.0,1,1.3816496133804321,200,0.0,3 +69700,6,0.0,1,1.7696447372436523,201,0.0,3 +69701,6,0.0,1,1.546647548675537,202,1.0,3 +69702,6,0.0,1,1.3326503038406372,203,1.0,3 +69703,6,0.0,1,1.4056493043899536,204,0.0,3 +69704,6,0.0,1,1.5776472091674805,205,0.0,3 +69705,6,0.0,1,1.3746497631072998,206,0.0,3 +69706,6,1.0,1,1.2176510095596313,207,1.0,3 +69707,6,1.0,1,1.436648964881897,208,0.0,3 +69708,6,0.0,1,1.3836495876312256,209,0.0,3 +69709,6,1.0,1,2.3996591567993164,210,1.0,3 +69710,6,1.0,1,1.4916481971740723,211,1.0,3 +69711,6,1.0,1,1.2166509628295898,212,1.0,3 +69712,6,1.0,1,1.5636472702026367,213,1.0,3 +69713,6,1.0,1,1.2836508750915527,214,1.0,3 +69714,6,1.0,1,1.341650128364563,215,0.0,3 +69715,6,1.0,1,1.4486488103866577,216,1.0,3 +69716,6,1.0,1,1.5256478786468506,217,1.0,3 +69717,6,1.0,1,1.2866508960723877,218,1.0,3 +69718,6,1.0,1,1.5736472606658936,219,0.0,3 +69719,6,1.0,1,2.016641616821289,220,0.0,3 +69720,6,0.0,1,2.320655345916748,221,0.0,3 +69721,6,1.0,1,2.4456613063812256,222,0.0,3 +69722,6,0.0,1,2.1386470794677734,223,1.0,3 +69723,6,0.0,1,1.2626510858535767,224,1.0,3 +69724,6,0.0,1,1.112650752067566,225,0.0,3 +69725,6,0.0,1,1.576647162437439,226,0.0,3 +69726,6,1.0,1,1.6966456174850464,227,1.0,3 +69727,6,1.0,1,1.2886508703231812,228,1.0,3 +69728,6,1.0,1,1.4666485786437988,229,1.0,3 +69729,6,1.0,1,1.2086509466171265,230,0.0,3 +69730,6,0.0,1,1.620646595954895,231,1.0,3 +69731,6,0.0,1,1.2766510248184204,232,0.0,3 +69732,6,1.0,1,1.1896508932113647,233,1.0,3 +69733,6,1.0,1,1.4036493301391602,234,1.0,3 +69734,6,1.0,1,1.833643913269043,235,0.0,3 +69735,6,0.0,1,1.5746471881866455,236,1.0,3 +69736,6,0.0,1,1.5146479606628418,237,1.0,3 +69737,6,0.0,1,1.4946482181549072,238,1.0,3 +69738,6,0.0,1,1.2056509256362915,239,0.0,3 +69739,6,1.0,1,1.2786509990692139,240,0.0,3 +69740,6,1.0,1,2.0006418228149414,241,1.0,3 +69741,6,1.0,1,1.690645694732666,242,0.0,3 +69742,6,0.0,1,1.7926443815231323,243,0.0,3 +69743,6,0.0,1,1.8506436347961426,244,1.0,3 +69744,6,0.0,1,1.599646806716919,245,0.0,3 +69745,6,1.0,1,1.4786484241485596,246,1.0,3 +69746,6,1.0,1,1.4286490678787231,247,1.0,3 +69747,6,1.0,1,1.694645643234253,248,1.0,3 +69748,6,1.0,1,1.2946507930755615,249,1.0,3 +69749,6,1.0,1,1.485648274421692,250,1.0,3 +69750,6,1.0,1,1.7626447677612305,251,1.0,3 +69751,6,1.0,1,1.274651050567627,252,1.0,3 +69752,6,1.0,1,1.2646510601043701,253,1.0,3 +69753,6,1.0,1,1.5256478786468506,254,0.0,3 +69754,6,1.0,1,1.437648892402649,255,1.0,3 +69755,6,1.0,1,1.3716497421264648,256,1.0,3 +69756,6,1.0,1,1.8476436138153076,257,1.0,3 +69757,6,1.0,1,1.3206504583358765,258,1.0,3 +69758,6,1.0,1,1.8726433515548706,259,0.0,3 +69759,6,0.0,1,1.7926443815231323,260,1.0,3 +69760,6,0.0,1,1.8466436862945557,261,0.0,3 +69761,6,0.0,1,1.2776509523391724,262,0.0,3 +69762,6,1.0,1,1.1826509237289429,263,0.0,3 +69763,6,0.0,1,1.4876482486724854,264,1.0,3 +69764,6,0.0,1,1.2626510858535767,265,0.0,3 +69765,6,0.0,1,1.7006455659866333,266,0.0,3 +69766,6,1.0,1,1.385649561882019,267,0.0,3 +69767,6,0.0,1,2.052642822265625,268,0.0,3 +69768,6,1.0,1,2.013641595840454,269,1.0,3 +69769,6,1.0,1,1.5866470336914062,270,1.0,3 +69770,6,1.0,1,1.4986481666564941,271,1.0,3 +69771,6,1.0,1,2.064643383026123,272,1.0,3 +69772,6,1.0,1,1.4056493043899536,273,1.0,3 +69773,6,0.0,1,1.2476509809494019,274,0.0,3 +69774,6,1.0,1,1.29365074634552,275,1.0,3 +69775,6,1.0,1,1.268651008605957,276,1.0,3 +69776,6,1.0,1,1.4166492223739624,277,0.0,3 +69777,6,1.0,1,1.6656460762023926,278,1.0,3 +69778,6,1.0,1,1.2216509580612183,279,1.0,3 +69779,6,1.0,1,1.3746497631072998,280,0.0,3 +69780,6,0.0,1,1.974642038345337,281,0.0,3 +69781,6,0.0,1,1.6676459312438965,282,0.0,3 +69782,6,1.0,1,1.3336502313613892,283,0.0,3 +69783,6,1.0,1,1.5236477851867676,284,0.0,3 +69784,6,0.0,1,1.1686508655548096,285,0.0,3 +69785,6,1.0,1,2.579667568206787,286,1.0,3 +69786,6,1.0,1,1.874643325805664,287,1.0,3 +69787,6,1.0,1,1.3246504068374634,288,0.0,3 +69788,6,1.0,1,2.552666187286377,289,1.0,3 +69789,6,1.0,1,1.4686485528945923,290,0.0,3 +69790,6,1.0,1,1.4646486043930054,291,1.0,3 +69791,6,1.0,1,1.546647548675537,292,1.0,3 +69792,6,1.0,1,1.7516448497772217,293,1.0,3 +69793,6,1.0,1,1.9306426048278809,294,1.0,3 +69794,6,1.0,1,1.4216490983963013,295,1.0,3 +69795,6,1.0,1,1.6196465492248535,296,0.0,3 +69796,6,1.0,1,1.9556422233581543,297,0.0,3 +69797,6,1.0,1,1.2396509647369385,298,1.0,3 +69798,6,1.0,1,1.4136492013931274,299,1.0,3 +69799,6,1.0,1,1.274651050567627,300,1.0,3 +69800,6,1.0,1,1.3806496858596802,301,1.0,3 +69801,6,1.0,1,1.34565007686615,302,1.0,3 +69802,6,1.0,1,1.366649866104126,303,1.0,3 +69803,6,1.0,1,2.070643901824951,304,0.0,3 +69804,6,0.0,1,2.0086417198181152,305,0.0,3 +69805,6,1.0,1,1.3466501235961914,306,1.0,3 +69806,6,1.0,1,1.7586448192596436,307,1.0,3 +69807,6,1.0,1,1.3496500253677368,308,1.0,3 +69808,6,0.0,1,1.6676459312438965,309,0.0,3 +69809,6,1.0,1,1.7296452522277832,310,0.0,3 +69810,6,0.0,1,1.237650990486145,311,0.0,3 +69811,6,1.0,1,1.2726510763168335,312,1.0,3 +69812,6,1.0,1,1.1856509447097778,313,1.0,3 +69813,6,1.0,1,1.1996508836746216,314,0.0,3 +69814,6,1.0,1,1.971642017364502,315,0.0,3 +69815,6,0.0,1,2.091644763946533,316,0.0,3 +69816,6,1.0,1,1.9856419563293457,317,0.0,3 +69817,6,0.0,1,1.664646029472351,318,1.0,3 +69818,6,0.0,1,1.2556509971618652,319,0.0,3 +69819,6,0.0,1,1.2986507415771484,320,0.0,3 +69820,6,0.0,1,1.7026455402374268,321,0.0,3 +69821,6,1.0,1,1.9456424713134766,322,1.0,3 +69822,6,1.0,1,1.499648094177246,323,0.0,3 +69823,6,1.0,1,2.260652542114258,324,0.0,3 +69824,6,0.0,1,1.2216509580612183,325,0.0,3 +69825,6,0.0,1,1.9856419563293457,326,0.0,3 +69826,6,1.0,1,2.259652614593506,327,1.0,3 +69827,6,1.0,1,1.3126505613327026,328,1.0,3 +69828,6,1.0,1,1.5896470546722412,329,0.0,3 +69829,6,0.0,1,1.5306477546691895,330,1.0,3 +69830,6,1.0,1,1.5526474714279175,331,1.0,3 +69831,6,1.0,1,1.6776459217071533,332,1.0,3 +69832,6,1.0,1,1.4436488151550293,333,1.0,3 +69833,6,0.0,1,1.687645673751831,334,0.0,3 +69834,6,1.0,1,1.2016509771347046,335,1.0,3 +69835,6,1.0,1,1.7936444282531738,336,1.0,3 +69836,6,1.0,1,1.735645055770874,337,0.0,3 +69837,6,0.0,1,1.145650863647461,338,0.0,3 +69838,6,0.0,1,1.59464693069458,339,0.0,3 +69839,6,0.0,1,1.6236464977264404,340,0.0,3 +69840,6,0.0,1,1.921642780303955,341,0.0,3 +69841,6,0.0,1,1.3216503858566284,342,1.0,3 +69842,6,0.0,1,1.212651014328003,343,0.0,3 +69843,6,0.0,1,1.3106505870819092,344,0.0,3 +69844,6,1.0,1,1.4886482954025269,345,1.0,3 +69845,6,1.0,1,1.454648733139038,346,1.0,3 +69846,6,1.0,1,1.2866508960723877,347,1.0,3 +69847,6,1.0,1,1.3716497421264648,348,1.0,3 +69848,6,1.0,1,1.275650978088379,349,1.0,3 +69849,6,1.0,1,1.4716484546661377,350,1.0,3 +69850,6,1.0,1,1.480648398399353,351,1.0,3 +69851,6,1.0,1,1.9366425275802612,352,1.0,3 +69852,6,1.0,1,1.480648398399353,353,1.0,3 +69853,6,1.0,1,1.5396475791931152,354,1.0,3 +69854,6,1.0,1,1.9316425323486328,355,1.0,3 +69855,6,1.0,1,1.5336477756500244,356,1.0,3 +69856,6,1.0,1,1.8926430940628052,357,0.0,3 +69857,6,0.0,1,1.3016506433486938,358,1.0,3 +69858,6,0.0,1,1.5696473121643066,359,1.0,3 +69859,6,0.0,1,1.1926509141921997,360,0.0,3 +69860,6,1.0,1,1.5146479606628418,361,1.0,3 +69861,6,1.0,1,1.2876508235931396,362,0.0,3 +69862,6,0.0,1,1.32265043258667,363,0.0,3 +69863,6,1.0,1,1.4006494283676147,364,1.0,3 +69864,6,1.0,1,1.7726446390151978,365,1.0,3 +69865,6,1.0,1,1.2946507930755615,366,0.0,3 +69866,6,1.0,1,1.7446449995040894,367,0.0,3 +69867,6,0.0,1,2.1546478271484375,368,0.0,3 +69868,6,0.0,1,1.926642656326294,369,0.0,3 +69869,6,0.0,1,2.1236462593078613,370,0.0,3 +69870,6,1.0,1,1.366649866104126,371,0.0,3 +69871,6,0.0,1,1.2956507205963135,372,0.0,3 +69872,6,1.0,1,1.268651008605957,373,0.0,3 +69873,6,1.0,1,1.4986481666564941,374,0.0,3 +69874,6,1.0,1,2.2376515865325928,375,1.0,3 +69875,6,1.0,1,1.3516499996185303,376,1.0,3 +69876,6,1.0,1,1.9906418323516846,377,0.0,3 +69877,6,1.0,1,1.5116479396820068,378,1.0,3 +69878,6,1.0,1,1.8036441802978516,379,0.0,3 +69879,6,1.0,1,1.9386425018310547,380,0.0,3 +69880,6,0.0,1,1.6006468534469604,381,1.0,3 +69881,6,0.0,1,1.555647373199463,382,1.0,3 +69882,6,0.0,1,1.1986509561538696,383,0.0,3 +69883,6,1.0,1,1.5046480894088745,384,1.0,3 +69884,6,1.0,1,1.3656498193740845,385,1.0,3 +69885,6,1.0,1,1.4286490678787231,386,1.0,3 +69886,6,1.0,1,1.3826496601104736,387,0.0,3 +69887,6,0.0,1,2.1286463737487793,388,1.0,3 +69888,6,0.0,1,1.407649278640747,389,0.0,3 +69889,6,0.0,1,2.1146459579467773,390,0.0,3 +69890,6,0.0,1,1.2576510906219482,391,1.0,3 +69891,6,0.0,1,1.7736446857452393,392,0.0,3 +69892,6,0.0,1,1.691645622253418,393,0.0,3 +69893,6,0.0,1,1.7486449480056763,394,0.0,3 +69894,6,0.0,1,2.060643196105957,395,0.0,3 +69895,6,0.0,1,2.1896493434906006,396,0.0,3 +69896,6,0.0,1,1.624646544456482,397,0.0,3 +69897,6,0.0,1,1.595646858215332,398,0.0,3 +69898,6,0.0,1,2.078644275665283,399,0.0,3 +69899,6,0.0,1,1.555647373199463,400,0.0,3 +69900,6,0.0,1,1.9416425228118896,401,0.0,3 +69901,6,0.0,1,1.8246439695358276,402,1.0,3 +69902,6,0.0,1,1.4606486558914185,403,0.0,3 +69903,6,1.0,1,1.477648377418518,404,1.0,3 +69904,6,1.0,1,1.3056505918502808,405,1.0,3 +69905,6,1.0,1,1.337650179862976,406,1.0,3 +69906,6,1.0,1,1.289650797843933,407,0.0,3 +69907,6,0.0,1,1.6076467037200928,408,0.0,3 +69908,6,0.0,1,1.547647476196289,409,0.0,3 +69909,6,0.0,1,1.3096505403518677,410,1.0,3 +69910,6,0.0,1,1.1906509399414062,411,1.0,3 +69911,6,0.0,1,1.7696447372436523,412,1.0,3 +69912,6,0.0,1,1.3806496858596802,413,0.0,3 +69913,6,0.0,1,1.6636459827423096,414,0.0,3 +69914,6,0.0,1,1.789644479751587,415,0.0,3 +69915,6,0.0,1,1.6186466217041016,416,1.0,3 +69916,6,0.0,1,1.4946482181549072,417,0.0,3 +69917,6,0.0,1,1.5736472606658936,418,1.0,3 +69918,6,0.0,1,1.5276477336883545,419,0.0,3 +69919,6,0.0,1,1.3016506433486938,420,1.0,3 +69920,6,0.0,1,1.2016509771347046,421,0.0,3 +69921,6,0.0,1,1.6136467456817627,422,0.0,3 +69922,6,0.0,1,1.6186466217041016,423,1.0,3 +69923,6,0.0,1,1.2826509475708008,424,1.0,3 +69924,6,0.0,1,1.3616498708724976,425,0.0,3 +69925,6,0.0,1,2.3536570072174072,426,0.0,3 +69926,6,1.0,1,1.904642939567566,427,0.0,3 +69927,6,0.0,1,1.7556447982788086,428,1.0,3 +69928,6,1.0,1,1.5196478366851807,429,0.0,3 +69929,6,0.0,1,1.4216490983963013,430,1.0,3 +69930,6,0.0,1,1.3586499691009521,431,0.0,3 +69931,6,0.0,1,1.212651014328003,432,0.0,3 +69932,6,1.0,1,1.694645643234253,433,1.0,3 +69933,6,1.0,1,1.3286503553390503,434,1.0,3 +69934,6,1.0,1,1.2186509370803833,435,1.0,3 +69935,6,1.0,1,1.4096492528915405,436,1.0,3 +69936,6,0.0,1,1.7506449222564697,437,1.0,3 +69937,6,1.0,1,1.4916481971740723,438,1.0,3 +69938,6,1.0,1,1.3276503086090088,439,0.0,3 +69939,6,0.0,1,1.300650715827942,440,1.0,3 +69940,6,0.0,1,1.1596508026123047,441,0.0,3 +69941,6,0.0,1,1.344650149345398,442,0.0,3 +69942,6,0.0,1,2.269653081893921,443,0.0,3 +69943,6,1.0,1,1.433648943901062,444,1.0,3 +69944,6,1.0,1,1.3036506175994873,445,0.0,3 +69945,6,0.0,1,2.296654224395752,446,0.0,3 +69946,6,0.0,1,1.3056505918502808,447,0.0,3 +69947,6,1.0,1,1.6526461839675903,448,1.0,3 +69948,6,1.0,1,1.6786458492279053,449,1.0,3 +69949,6,1.0,1,1.5596473217010498,450,0.0,3 +69950,6,1.0,1,1.735645055770874,451,1.0,3 +69951,6,1.0,1,1.7546448707580566,452,1.0,3 +69952,6,1.0,1,1.2546510696411133,453,1.0,3 +69953,6,1.0,1,1.6106467247009277,454,0.0,3 +69954,6,0.0,1,2.239651679992676,455,1.0,3 +69955,6,0.0,1,1.437648892402649,456,0.0,3 +69956,6,0.0,1,1.8676433563232422,457,1.0,3 +69957,6,0.0,1,1.4536486864089966,458,0.0,3 +69958,6,0.0,1,1.2356510162353516,459,0.0,3 +69959,6,1.0,1,1.6996455192565918,460,1.0,3 +69960,6,1.0,1,1.4976481199264526,461,1.0,3 +69961,6,1.0,1,1.2626510858535767,462,1.0,3 +69962,6,1.0,1,1.2626510858535767,463,1.0,3 +69963,6,1.0,1,1.506648063659668,464,0.0,3 +69964,6,1.0,1,1.3946495056152344,465,1.0,3 +69965,6,1.0,1,1.2776509523391724,466,1.0,3 +69966,6,1.0,1,1.4526487588882446,467,0.0,3 +69967,6,0.0,1,1.6406463384628296,468,0.0,3 +69968,6,0.0,1,1.7586448192596436,469,0.0,3 +69969,6,0.0,1,1.3876495361328125,470,0.0,3 +69970,6,0.0,1,1.712645411491394,471,0.0,3 +69971,6,0.0,1,1.3996493816375732,472,0.0,3 +69972,6,0.0,1,1.2186509370803833,473,0.0,3 +69973,6,1.0,1,2.0016417503356934,474,1.0,3 +69974,6,1.0,1,2.1166458129882812,475,1.0,3 +69975,6,1.0,1,1.4396488666534424,476,0.0,3 +69976,6,1.0,1,1.20465087890625,477,1.0,3 +69977,6,0.0,1,2.2196507453918457,478,0.0,3 +69978,6,1.0,1,1.1386507749557495,479,1.0,3 +69979,6,1.0,1,1.5296478271484375,480,0.0,3 +69980,6,0.0,1,1.2996506690979004,481,0.0,3 +69981,6,0.0,1,1.2616510391235352,482,0.0,3 +69982,6,1.0,1,1.5746471881866455,483,1.0,3 +69983,6,1.0,1,1.50764799118042,484,0.0,3 +69984,6,1.0,1,1.922642707824707,485,1.0,3 +69985,6,1.0,1,1.2156509160995483,486,1.0,3 +69986,6,1.0,1,1.2396509647369385,487,0.0,3 +69987,6,0.0,1,1.477648377418518,488,0.0,3 +69988,6,0.0,1,1.3726497888565063,489,0.0,3 +69989,6,0.0,1,1.4396488666534424,490,1.0,3 +69990,6,0.0,1,1.502648115158081,491,1.0,3 +69991,6,0.0,1,1.4976481199264526,492,0.0,3 +69992,6,1.0,1,1.6796457767486572,493,1.0,3 +69993,6,1.0,1,1.267651081085205,494,1.0,3 +69994,6,1.0,1,1.3696497678756714,495,1.0,3 +69995,6,1.0,1,1.2766510248184204,496,1.0,3 +69996,6,1.0,1,2.265652894973755,497,1.0,3 +69997,6,1.0,1,1.2516510486602783,498,1.0,3 +69998,6,1.0,1,1.5186479091644287,499,0.0,3 +69999,6,0.0,1,1.237650990486145,500,0.0,3 +70000,6,0.0,2,1.2156509160995483,1,0.0,3 +70001,6,1.0,2,2.1516475677490234,2,1.0,3 +70002,6,1.0,2,1.83164381980896,3,1.0,3 +70003,6,1.0,2,1.4086493253707886,4,0.0,3 +70004,6,0.0,2,1.6286464929580688,5,0.0,3 +70005,6,0.0,2,1.1256507635116577,6,0.0,3 +70006,6,0.0,2,2.239651679992676,7,0.0,3 +70007,6,1.0,2,1.2266509532928467,8,1.0,3 +70008,6,1.0,2,1.4986481666564941,9,0.0,3 +70009,6,1.0,2,1.2576510906219482,10,0.0,3 +70010,6,1.0,2,1.4706485271453857,11,0.0,3 +70011,6,0.0,2,1.8056442737579346,12,1.0,3 +70012,6,0.0,2,1.359649896621704,13,1.0,3 +70013,6,0.0,2,1.139650821685791,14,1.0,3 +70014,6,0.0,2,1.3166505098342896,15,0.0,3 +70015,6,1.0,2,1.8956429958343506,16,0.0,3 +70016,6,0.0,2,1.4686485528945923,17,1.0,3 +70017,6,0.0,2,1.2306510210037231,18,1.0,3 +70018,6,0.0,2,1.370649814605713,19,0.0,3 +70019,6,0.0,2,1.370649814605713,20,1.0,3 +70020,6,0.0,2,1.5526474714279175,21,1.0,3 +70021,6,0.0,2,1.3576499223709106,22,0.0,3 +70022,6,1.0,2,1.7276451587677002,23,0.0,3 +70023,6,1.0,2,1.9166427850723267,24,1.0,3 +70024,6,1.0,2,1.3106505870819092,25,1.0,3 +70025,6,1.0,2,1.3256503343582153,26,1.0,3 +70026,6,1.0,2,1.23465096950531,27,1.0,3 +70027,6,1.0,2,1.4646486043930054,28,0.0,3 +70028,6,1.0,2,1.6446462869644165,29,0.0,3 +70029,6,0.0,2,1.4136492013931274,30,1.0,3 +70030,6,0.0,2,1.5336477756500244,31,0.0,3 +70031,6,0.0,2,2.6886725425720215,32,1.0,3 +70032,6,0.0,2,1.340650200843811,33,0.0,3 +70033,6,0.0,2,1.407649278640747,34,0.0,3 +70034,6,0.0,2,1.877643346786499,35,1.0,3 +70035,6,0.0,2,1.8246439695358276,36,0.0,3 +70036,6,1.0,2,1.6486462354660034,37,1.0,3 +70037,6,1.0,2,1.296650767326355,38,1.0,3 +70038,6,1.0,2,1.2166509628295898,39,0.0,3 +70039,6,1.0,2,1.5856471061706543,40,1.0,3 +70040,6,1.0,2,1.2416510581970215,41,0.0,3 +70041,6,1.0,2,1.9476423263549805,42,0.0,3 +70042,6,0.0,2,1.8376438617706299,43,0.0,3 +70043,6,0.0,2,1.7076454162597656,44,1.0,3 +70044,6,0.0,2,1.2536510229110718,45,1.0,3 +70045,6,0.0,2,1.4026494026184082,46,0.0,3 +70046,6,1.0,2,1.5236477851867676,47,0.0,3 +70047,6,0.0,2,1.7256453037261963,48,0.0,3 +70048,6,0.0,2,2.4026594161987305,49,1.0,3 +70049,6,0.0,2,1.3916494846343994,50,0.0,3 +70050,6,1.0,2,2.0986452102661133,51,1.0,3 +70051,6,1.0,2,1.7056455612182617,52,0.0,3 +70052,6,1.0,2,1.645646333694458,53,1.0,3 +70053,6,1.0,2,1.407649278640747,54,1.0,3 +70054,6,1.0,2,1.3946495056152344,55,1.0,3 +70055,6,1.0,2,1.4196491241455078,56,0.0,3 +70056,6,0.0,2,1.5106480121612549,57,1.0,3 +70057,6,0.0,2,1.3956494331359863,58,0.0,3 +70058,6,1.0,2,2.1556477546691895,59,1.0,3 +70059,6,1.0,2,1.8186440467834473,60,1.0,3 +70060,6,1.0,2,1.7006455659866333,61,1.0,3 +70061,6,1.0,2,1.742645025253296,62,1.0,3 +70062,6,1.0,2,1.2856508493423462,63,1.0,3 +70063,6,1.0,2,1.6196465492248535,64,0.0,3 +70064,6,1.0,2,1.7236452102661133,65,0.0,3 +70065,6,0.0,2,1.4036493301391602,66,0.0,3 +70066,6,0.0,2,1.5616474151611328,67,1.0,3 +70067,6,0.0,2,1.4646486043930054,68,1.0,3 +70068,6,0.0,2,1.2576510906219482,69,1.0,3 +70069,6,0.0,2,1.3286503553390503,70,1.0,3 +70070,6,0.0,2,1.3726497888565063,71,1.0,3 +70071,6,0.0,2,1.3286503553390503,72,0.0,3 +70072,6,0.0,2,1.641646385192871,73,0.0,3 +70073,6,1.0,2,1.4416488409042358,74,1.0,3 +70074,6,1.0,2,1.3326503038406372,75,1.0,3 +70075,6,1.0,2,1.4796483516693115,76,0.0,3 +70076,6,0.0,2,1.3476500511169434,77,0.0,3 +70077,6,0.0,2,1.4466488361358643,78,0.0,3 +70078,6,0.0,2,1.697645664215088,79,1.0,3 +70079,6,0.0,2,1.359649896621704,80,1.0,3 +70080,6,0.0,2,1.2956507205963135,81,0.0,3 +70081,6,0.0,2,2.1176459789276123,82,1.0,3 +70082,6,0.0,2,1.4186491966247559,83,1.0,3 +70083,6,0.0,2,1.4946482181549072,84,0.0,3 +70084,6,0.0,2,1.4986481666564941,85,1.0,3 +70085,6,0.0,2,1.2986507415771484,86,1.0,3 +70086,6,0.0,2,1.2186509370803833,87,0.0,3 +70087,6,1.0,2,1.407649278640747,88,1.0,3 +70088,6,1.0,2,1.2816509008407593,89,0.0,3 +70089,6,1.0,2,1.7576448917388916,90,1.0,3 +70090,6,1.0,2,1.3296502828598022,91,1.0,3 +70091,6,1.0,2,1.3286503553390503,92,0.0,3 +70092,6,0.0,2,1.3076505661010742,93,1.0,3 +70093,6,0.0,2,1.2946507930755615,94,1.0,3 +70094,6,0.0,2,1.3066506385803223,95,0.0,3 +70095,6,0.0,2,2.4216601848602295,96,1.0,3 +70096,6,0.0,2,1.689645767211914,97,0.0,3 +70097,6,0.0,2,1.5586473941802979,98,1.0,3 +70098,6,0.0,2,1.1636508703231812,99,0.0,3 +70099,6,0.0,2,1.8246439695358276,100,0.0,3 +70100,6,1.0,2,2.0016417503356934,101,1.0,3 +70101,6,1.0,2,1.3566499948501587,102,1.0,3 +70102,6,0.0,2,1.4686485528945923,103,1.0,3 +70103,6,0.0,2,1.2196509838104248,104,1.0,3 +70104,6,1.0,2,1.9916417598724365,105,1.0,3 +70105,6,1.0,2,1.8866431713104248,106,1.0,3 +70106,6,0.0,2,1.2176510095596313,107,1.0,3 +70107,6,1.0,2,2.061643362045288,108,1.0,3 +70108,6,0.0,2,1.3236503601074219,109,0.0,3 +70109,6,1.0,2,1.340650200843811,110,1.0,3 +70110,6,1.0,2,2.033642053604126,111,0.0,3 +70111,6,1.0,2,1.1996508836746216,112,1.0,3 +70112,6,1.0,2,1.3616498708724976,113,1.0,3 +70113,6,1.0,2,1.2216509580612183,114,1.0,3 +70114,6,1.0,2,1.554647445678711,115,1.0,3 +70115,6,1.0,2,1.6326464414596558,116,1.0,3 +70116,6,1.0,2,1.6536462306976318,117,0.0,3 +70117,6,0.0,2,1.4646486043930054,118,1.0,3 +70118,6,0.0,2,1.20465087890625,119,0.0,3 +70119,6,1.0,2,1.2366509437561035,120,0.0,3 +70120,6,0.0,2,1.8956429958343506,121,0.0,3 +70121,6,1.0,2,1.8196439743041992,122,1.0,3 +70122,6,1.0,2,1.4036493301391602,123,1.0,3 +70123,6,1.0,2,1.7496449947357178,124,1.0,3 +70124,6,1.0,2,1.3986494541168213,125,1.0,3 +70125,6,1.0,2,1.7916443347930908,126,0.0,3 +70126,6,1.0,2,1.3716497421264648,127,1.0,3 +70127,6,1.0,2,1.4386489391326904,128,1.0,3 +70128,6,1.0,2,1.8946430683135986,129,0.0,3 +70129,6,1.0,2,2.104645252227783,130,1.0,3 +70130,6,1.0,2,1.3476500511169434,131,0.0,3 +70131,6,1.0,2,1.4876482486724854,132,0.0,3 +70132,6,0.0,2,1.1476508378982544,133,1.0,3 +70133,6,0.0,2,1.3516499996185303,134,1.0,3 +70134,6,0.0,2,1.550647497177124,135,0.0,3 +70135,6,0.0,2,1.6986455917358398,136,1.0,3 +70136,6,0.0,2,1.2166509628295898,137,0.0,3 +70137,6,1.0,2,1.6846457719802856,138,1.0,3 +70138,6,1.0,2,1.4096492528915405,139,0.0,3 +70139,6,1.0,2,1.4436488151550293,140,1.0,3 +70140,6,1.0,2,1.3616498708724976,141,1.0,3 +70141,6,1.0,2,1.4976481199264526,142,0.0,3 +70142,6,1.0,2,1.8696434497833252,143,0.0,3 +70143,6,0.0,2,1.1296508312225342,144,1.0,3 +70144,6,0.0,2,1.480648398399353,145,1.0,3 +70145,6,0.0,2,1.2156509160995483,146,0.0,3 +70146,6,1.0,2,1.6666460037231445,147,0.0,3 +70147,6,0.0,2,1.5656473636627197,148,1.0,3 +70148,6,0.0,2,1.4696484804153442,149,1.0,3 +70149,6,0.0,2,1.4066493511199951,150,0.0,3 +70150,6,0.0,2,1.4876482486724854,151,0.0,3 +70151,6,1.0,2,2.1406469345092773,152,1.0,3 +70152,6,1.0,2,1.4136492013931274,153,0.0,3 +70153,6,0.0,2,2.1106457710266113,154,0.0,3 +70154,6,1.0,2,1.5316476821899414,155,1.0,3 +70155,6,1.0,2,1.3976494073867798,156,1.0,3 +70156,6,1.0,2,1.4756484031677246,157,1.0,3 +70157,6,1.0,2,1.1626508235931396,158,0.0,3 +70158,6,0.0,2,1.1836508512496948,159,1.0,3 +70159,6,0.0,2,1.2626510858535767,160,1.0,3 +70160,6,0.0,2,1.1956509351730347,161,0.0,3 +70161,6,1.0,2,1.289650797843933,162,0.0,3 +70162,6,1.0,2,2.025641679763794,163,0.0,3 +70163,6,0.0,2,1.4166492223739624,164,1.0,3 +70164,6,0.0,2,1.370649814605713,165,1.0,3 +70165,6,0.0,2,1.506648063659668,166,1.0,3 +70166,6,0.0,2,1.2526509761810303,167,0.0,3 +70167,6,1.0,2,1.7916443347930908,168,1.0,3 +70168,6,0.0,2,2.0976450443267822,169,1.0,3 +70169,6,1.0,2,1.6116466522216797,170,0.0,3 +70170,6,0.0,2,2.0906448364257812,171,1.0,3 +70171,6,0.0,2,1.271651029586792,172,0.0,3 +70172,6,0.0,2,1.5186479091644287,173,1.0,3 +70173,6,0.0,2,1.5606473684310913,174,1.0,3 +70174,6,0.0,2,1.4446488618850708,175,0.0,3 +70175,6,0.0,2,1.5816471576690674,176,1.0,3 +70176,6,1.0,2,1.7466449737548828,177,1.0,3 +70177,6,1.0,2,2.249652147293091,178,0.0,3 +70178,6,1.0,2,1.4036493301391602,179,1.0,3 +70179,6,1.0,2,1.7086454629898071,180,1.0,3 +70180,6,1.0,2,1.2656511068344116,181,1.0,3 +70181,6,0.0,2,1.4836483001708984,182,0.0,3 +70182,6,1.0,2,1.2736510038375854,183,0.0,3 +70183,6,0.0,2,1.4566487073898315,184,1.0,3 +70184,6,0.0,2,1.6066467761993408,185,1.0,3 +70185,6,0.0,2,1.3866496086120605,186,0.0,3 +70186,6,1.0,2,1.672645926475525,187,1.0,3 +70187,6,1.0,2,1.506648063659668,188,1.0,3 +70188,6,1.0,2,1.2916507720947266,189,1.0,3 +70189,6,1.0,2,1.3936494588851929,190,0.0,3 +70190,6,1.0,2,1.6106467247009277,191,0.0,3 +70191,6,0.0,2,1.8326438665390015,192,0.0,3 +70192,6,1.0,2,1.7186453342437744,193,1.0,3 +70193,6,1.0,2,1.337650179862976,194,1.0,3 +70194,6,1.0,2,1.3936494588851929,195,1.0,3 +70195,6,1.0,2,1.8286439180374146,196,0.0,3 +70196,6,1.0,2,2.256652355194092,197,1.0,3 +70197,6,1.0,2,1.3786497116088867,198,1.0,3 +70198,6,1.0,2,1.6546461582183838,199,0.0,3 +70199,6,0.0,2,1.4576486349105835,200,0.0,3 +70200,6,1.0,2,1.3386502265930176,201,1.0,3 +70201,6,1.0,2,1.6856458187103271,202,0.0,3 +70202,6,0.0,2,1.45564866065979,203,0.0,3 +70203,6,0.0,2,1.643646240234375,204,0.0,3 +70204,6,1.0,2,1.694645643234253,205,1.0,3 +70205,6,1.0,2,1.5206478834152222,206,0.0,3 +70206,6,1.0,2,1.3246504068374634,207,1.0,3 +70207,6,1.0,2,1.34565007686615,208,1.0,3 +70208,6,1.0,2,1.2416510581970215,209,0.0,3 +70209,6,0.0,2,1.904642939567566,210,1.0,3 +70210,6,0.0,2,1.1926509141921997,211,1.0,3 +70211,6,0.0,2,1.341650128364563,212,0.0,3 +70212,6,1.0,2,1.2356510162353516,213,0.0,3 +70213,6,1.0,2,1.4316489696502686,214,1.0,3 +70214,6,1.0,2,1.3236503601074219,215,0.0,3 +70215,6,1.0,2,1.1986509561538696,216,1.0,3 +70216,6,1.0,2,1.7246452569961548,217,0.0,3 +70217,6,1.0,2,1.4356489181518555,218,1.0,3 +70218,6,1.0,2,1.1386507749557495,219,1.0,3 +70219,6,1.0,2,1.3016506433486938,220,0.0,3 +70220,6,0.0,2,1.6536462306976318,221,1.0,3 +70221,6,0.0,2,1.2566510438919067,222,0.0,3 +70222,6,0.0,2,1.5586473941802979,223,0.0,3 +70223,6,0.0,2,1.140650749206543,224,0.0,3 +70224,6,1.0,2,1.415649175643921,225,0.0,3 +70225,6,1.0,2,2.020641326904297,226,0.0,3 +70226,6,1.0,2,1.6236464977264404,227,1.0,3 +70227,6,1.0,2,1.3966494798660278,228,1.0,3 +70228,6,1.0,2,2.070643901824951,229,1.0,3 +70229,6,1.0,2,1.4316489696502686,230,1.0,3 +70230,6,0.0,2,1.689645767211914,231,1.0,3 +70231,6,0.0,2,2.020641326904297,232,1.0,3 +70232,6,1.0,2,1.2816509008407593,233,1.0,3 +70233,6,0.0,2,1.5786471366882324,234,1.0,3 +70234,6,0.0,2,1.2626510858535767,235,1.0,3 +70235,6,1.0,2,1.904642939567566,236,0.0,3 +70236,6,0.0,2,1.2156509160995483,237,0.0,3 +70237,6,0.0,2,1.8066442012786865,238,1.0,3 +70238,6,0.0,2,1.2486510276794434,239,0.0,3 +70239,6,0.0,2,2.1246461868286133,240,0.0,3 +70240,6,1.0,2,1.4036493301391602,241,0.0,3 +70241,6,1.0,2,1.693645715713501,242,1.0,3 +70242,6,1.0,2,1.6106467247009277,243,1.0,3 +70243,6,1.0,2,1.6106467247009277,244,0.0,3 +70244,6,0.0,2,1.5406476259231567,245,1.0,3 +70245,6,0.0,2,1.2026509046554565,246,0.0,3 +70246,6,1.0,2,1.7956442832946777,247,1.0,3 +70247,6,1.0,2,1.1866508722305298,248,0.0,3 +70248,6,1.0,2,1.170650839805603,249,1.0,3 +70249,6,1.0,2,1.4226491451263428,250,1.0,3 +70250,6,1.0,2,1.827643871307373,251,1.0,3 +70251,6,1.0,2,1.7756445407867432,252,1.0,3 +70252,6,1.0,2,1.694645643234253,253,1.0,3 +70253,6,1.0,2,1.2646510601043701,254,1.0,3 +70254,6,1.0,2,1.43264901638031,255,1.0,3 +70255,6,1.0,2,1.3106505870819092,256,1.0,3 +70256,6,1.0,2,1.4356489181518555,257,0.0,3 +70257,6,0.0,2,1.6576461791992188,258,0.0,3 +70258,6,0.0,2,1.3606499433517456,259,0.0,3 +70259,6,0.0,2,1.6986455917358398,260,0.0,3 +70260,6,0.0,2,1.1716508865356445,261,0.0,3 +70261,6,0.0,2,1.974642038345337,262,1.0,3 +70262,6,0.0,2,1.557647466659546,263,0.0,3 +70263,6,0.0,2,1.359649896621704,264,0.0,3 +70264,6,0.0,2,1.437648892402649,265,1.0,3 +70265,6,0.0,2,1.6266465187072754,266,0.0,3 +70266,6,0.0,2,1.550647497177124,267,1.0,3 +70267,6,0.0,2,1.24065101146698,268,0.0,3 +70268,6,1.0,2,1.8016443252563477,269,0.0,3 +70269,6,1.0,2,1.8356437683105469,270,1.0,3 +70270,6,0.0,2,1.7076454162597656,271,0.0,3 +70271,6,1.0,2,1.0986506938934326,272,1.0,3 +70272,6,1.0,2,1.6296465396881104,273,1.0,3 +70273,6,1.0,2,1.5736472606658936,274,0.0,3 +70274,6,0.0,2,1.4016493558883667,275,1.0,3 +70275,6,1.0,2,1.5046480894088745,276,1.0,3 +70276,6,0.0,2,1.1356507539749146,277,1.0,3 +70277,6,1.0,2,1.624646544456482,278,0.0,3 +70278,6,0.0,2,1.410649299621582,279,0.0,3 +70279,6,0.0,2,1.3566499948501587,280,1.0,3 +70280,6,0.0,2,1.1286507844924927,281,1.0,3 +70281,6,0.0,2,1.6076467037200928,282,0.0,3 +70282,6,1.0,2,1.3216503858566284,283,0.0,3 +70283,6,0.0,2,1.7156453132629395,284,0.0,3 +70284,6,0.0,2,1.804644227027893,285,1.0,3 +70285,6,0.0,2,1.1996508836746216,286,0.0,3 +70286,6,1.0,2,1.6136467456817627,287,1.0,3 +70287,6,1.0,2,1.2656511068344116,288,1.0,3 +70288,6,1.0,2,1.2766510248184204,289,1.0,3 +70289,6,1.0,2,1.206650972366333,290,1.0,3 +70290,6,1.0,2,1.5016480684280396,291,1.0,3 +70291,6,1.0,2,1.3096505403518677,292,0.0,3 +70292,6,0.0,2,1.6756458282470703,293,1.0,3 +70293,6,0.0,2,1.2486510276794434,294,0.0,3 +70294,6,1.0,2,1.6356463432312012,295,1.0,3 +70295,6,1.0,2,1.4026494026184082,296,1.0,3 +70296,6,1.0,2,1.7076454162597656,297,0.0,3 +70297,6,1.0,2,1.782644510269165,298,0.0,3 +70298,6,1.0,2,1.3716497421264648,299,1.0,3 +70299,6,1.0,2,1.3796496391296387,300,0.0,3 +70300,6,0.0,2,1.9326425790786743,301,1.0,3 +70301,6,0.0,2,1.4686485528945923,302,0.0,3 +70302,6,1.0,2,1.7536449432373047,303,1.0,3 +70303,6,1.0,2,1.3426501750946045,304,1.0,3 +70304,6,1.0,2,1.6636459827423096,305,1.0,3 +70305,6,1.0,2,1.2906508445739746,306,0.0,3 +70306,6,0.0,2,2.019641399383545,307,0.0,3 +70307,6,0.0,2,1.392649531364441,308,0.0,3 +70308,6,0.0,2,1.6636459827423096,309,0.0,3 +70309,6,1.0,2,2.1966495513916016,310,0.0,3 +70310,6,1.0,2,1.7336452007293701,311,0.0,3 +70311,6,1.0,2,1.2866508960723877,312,1.0,3 +70312,6,1.0,2,1.4056493043899536,313,0.0,3 +70313,6,0.0,2,1.6446462869644165,314,0.0,3 +70314,6,0.0,2,2.3876585960388184,315,1.0,3 +70315,6,0.0,2,1.3606499433517456,316,0.0,3 +70316,6,1.0,2,1.8516435623168945,317,0.0,3 +70317,6,1.0,2,1.499648094177246,318,0.0,3 +70318,6,0.0,2,2.0056416988372803,319,0.0,3 +70319,6,1.0,2,1.9506423473358154,320,1.0,3 +70320,6,1.0,2,1.5206478834152222,321,0.0,3 +70321,6,0.0,2,2.1536476612091064,322,1.0,3 +70322,6,0.0,2,1.2156509160995483,323,1.0,3 +70323,6,0.0,2,1.2816509008407593,324,1.0,3 +70324,6,0.0,2,1.167650818824768,325,0.0,3 +70325,6,1.0,2,1.6446462869644165,326,1.0,3 +70326,6,1.0,2,1.5376477241516113,327,1.0,3 +70327,6,1.0,2,1.2626510858535767,328,1.0,3 +70328,6,1.0,2,1.4246491193771362,329,0.0,3 +70329,6,1.0,2,1.5776472091674805,330,0.0,3 +70330,6,1.0,2,2.2336513996124268,331,0.0,3 +70331,6,1.0,2,1.5056480169296265,332,1.0,3 +70332,6,0.0,2,1.4656485319137573,333,0.0,3 +70333,6,1.0,2,1.27065110206604,334,1.0,3 +70334,6,1.0,2,1.9466423988342285,335,1.0,3 +70335,6,1.0,2,1.207650899887085,336,0.0,3 +70336,6,0.0,2,1.6446462869644165,337,0.0,3 +70337,6,1.0,2,2.1606478691101074,338,0.0,3 +70338,6,1.0,2,1.6216466426849365,339,1.0,3 +70339,6,1.0,2,1.4656485319137573,340,1.0,3 +70340,6,1.0,2,1.268651008605957,341,1.0,3 +70341,6,1.0,2,1.2176510095596313,342,1.0,3 +70342,6,1.0,2,1.5646473169326782,343,1.0,3 +70343,6,1.0,2,1.43264901638031,344,0.0,3 +70344,6,0.0,2,1.4916481971740723,345,0.0,3 +70345,6,0.0,2,1.550647497177124,346,1.0,3 +70346,6,0.0,2,1.5606473684310913,347,0.0,3 +70347,6,1.0,2,1.4696484804153442,348,1.0,3 +70348,6,0.0,2,1.4286490678787231,349,1.0,3 +70349,6,0.0,2,1.34565007686615,350,1.0,3 +70350,6,1.0,2,1.3716497421264648,351,1.0,3 +70351,6,1.0,2,1.3286503553390503,352,1.0,3 +70352,6,0.0,2,1.641646385192871,353,0.0,3 +70353,6,1.0,2,1.50764799118042,354,0.0,3 +70354,6,1.0,2,1.737645149230957,355,0.0,3 +70355,6,1.0,2,2.1836490631103516,356,0.0,3 +70356,6,1.0,2,1.8476436138153076,357,1.0,3 +70357,6,1.0,2,1.4436488151550293,358,0.0,3 +70358,6,0.0,2,1.4286490678787231,359,1.0,3 +70359,6,0.0,2,1.2906508445739746,360,0.0,3 +70360,6,1.0,2,2.061643362045288,361,1.0,3 +70361,6,1.0,2,1.5736472606658936,362,0.0,3 +70362,6,1.0,2,1.5816471576690674,363,0.0,3 +70363,6,0.0,2,1.5566474199295044,364,1.0,3 +70364,6,0.0,2,2.1236462593078613,365,1.0,3 +70365,6,0.0,2,1.2146509885787964,366,0.0,3 +70366,6,1.0,2,2.25565242767334,367,1.0,3 +70367,6,1.0,2,1.1776509284973145,368,0.0,3 +70368,6,1.0,2,1.6266465187072754,369,0.0,3 +70369,6,0.0,2,1.1296508312225342,370,0.0,3 +70370,6,1.0,2,1.5356476306915283,371,1.0,3 +70371,6,1.0,2,1.173650860786438,372,0.0,3 +70372,6,1.0,2,1.506648063659668,373,1.0,3 +70373,6,0.0,2,1.5786471366882324,374,0.0,3 +70374,6,1.0,2,1.27065110206604,375,1.0,3 +70375,6,1.0,2,1.212651014328003,376,0.0,3 +70376,6,0.0,2,1.407649278640747,377,0.0,3 +70377,6,1.0,2,1.1326508522033691,378,1.0,3 +70378,6,1.0,2,1.2226510047912598,379,0.0,3 +70379,6,0.0,2,1.5316476821899414,380,0.0,3 +70380,6,1.0,2,1.3206504583358765,381,1.0,3 +70381,6,1.0,2,1.3026506900787354,382,0.0,3 +70382,6,1.0,2,1.3916494846343994,383,1.0,3 +70383,6,1.0,2,1.454648733139038,384,1.0,3 +70384,6,0.0,2,1.7406450510025024,385,0.0,3 +70385,6,1.0,2,1.429648995399475,386,1.0,3 +70386,6,1.0,2,1.459648609161377,387,0.0,3 +70387,6,1.0,2,2.299654483795166,388,1.0,3 +70388,6,0.0,2,1.3936494588851929,389,0.0,3 +70389,6,1.0,2,1.3086506128311157,390,0.0,3 +70390,6,1.0,2,1.8886431455612183,391,0.0,3 +70391,6,0.0,2,1.4636485576629639,392,0.0,3 +70392,6,0.0,2,1.712645411491394,393,1.0,3 +70393,6,0.0,2,1.2016509771347046,394,1.0,3 +70394,6,0.0,2,1.4606486558914185,395,1.0,3 +70395,6,0.0,2,1.2826509475708008,396,0.0,3 +70396,6,0.0,2,1.485648274421692,397,1.0,3 +70397,6,0.0,2,1.2116509675979614,398,0.0,3 +70398,6,1.0,2,1.8136441707611084,399,1.0,3 +70399,6,1.0,2,1.1936509609222412,400,1.0,3 +70400,6,1.0,2,1.454648733139038,401,0.0,3 +70401,6,1.0,2,1.433648943901062,402,0.0,3 +70402,6,0.0,2,1.7956442832946777,403,0.0,3 +70403,6,1.0,2,1.3076505661010742,404,1.0,3 +70404,6,1.0,2,1.2776509523391724,405,1.0,3 +70405,6,1.0,2,1.5736472606658936,406,1.0,3 +70406,6,1.0,2,1.4826483726501465,407,0.0,3 +70407,6,0.0,2,1.9036428928375244,408,0.0,3 +70408,6,0.0,2,1.7746446132659912,409,0.0,3 +70409,6,1.0,2,1.4866483211517334,410,0.0,3 +70410,6,0.0,2,2.4576618671417236,411,1.0,3 +70411,6,0.0,2,1.2216509580612183,412,0.0,3 +70412,6,1.0,2,1.2946507930755615,413,0.0,3 +70413,6,1.0,2,1.7236452102661133,414,1.0,3 +70414,6,1.0,2,1.6986455917358398,415,1.0,3 +70415,6,1.0,2,1.6836457252502441,416,0.0,3 +70416,6,1.0,2,1.5706472396850586,417,0.0,3 +70417,6,1.0,2,1.4936481714248657,418,1.0,3 +70418,6,1.0,2,1.4016493558883667,419,0.0,3 +70419,6,0.0,2,1.5736472606658936,420,0.0,3 +70420,6,0.0,2,2.540665626525879,421,0.0,3 +70421,6,1.0,2,1.4446488618850708,422,1.0,3 +70422,6,1.0,2,1.5926469564437866,423,1.0,3 +70423,6,1.0,2,1.8176441192626953,424,1.0,3 +70424,6,1.0,2,1.289650797843933,425,0.0,3 +70425,6,1.0,2,1.4936481714248657,426,0.0,3 +70426,6,0.0,2,1.5626473426818848,427,1.0,3 +70427,6,0.0,2,1.5126479864120483,428,1.0,3 +70428,6,0.0,2,1.3806496858596802,429,0.0,3 +70429,6,0.0,2,1.6056468486785889,430,0.0,3 +70430,6,0.0,2,1.3716497421264648,431,1.0,3 +70431,6,0.0,2,1.3836495876312256,432,1.0,3 +70432,6,0.0,2,1.3336502313613892,433,1.0,3 +70433,6,0.0,2,1.243651032447815,434,1.0,3 +70434,6,0.0,2,1.1856509447097778,435,1.0,3 +70435,6,0.0,2,1.3076505661010742,436,0.0,3 +70436,6,1.0,2,1.2586510181427002,437,0.0,3 +70437,6,1.0,2,1.6586461067199707,438,0.0,3 +70438,6,1.0,2,2.022641658782959,439,1.0,3 +70439,6,1.0,2,1.1906509399414062,440,1.0,3 +70440,6,1.0,2,1.2196509838104248,441,0.0,3 +70441,6,1.0,2,1.9346425533294678,442,1.0,3 +70442,6,1.0,2,1.3556499481201172,443,0.0,3 +70443,6,0.0,2,1.142650842666626,444,1.0,3 +70444,6,0.0,2,1.2426509857177734,445,0.0,3 +70445,6,0.0,2,1.2396509647369385,446,1.0,3 +70446,6,0.0,2,1.8076441287994385,447,1.0,3 +70447,6,0.0,2,1.6806458234786987,448,1.0,3 +70448,6,0.0,2,1.4136492013931274,449,0.0,3 +70449,6,1.0,2,1.8466436862945557,450,0.0,3 +70450,6,0.0,2,1.8996429443359375,451,1.0,3 +70451,6,0.0,2,1.271651029586792,452,0.0,3 +70452,6,0.0,2,1.9436423778533936,453,0.0,3 +70453,6,0.0,2,1.8436436653137207,454,1.0,3 +70454,6,0.0,2,1.3026506900787354,455,0.0,3 +70455,6,0.0,2,1.6746459007263184,456,0.0,3 +70456,6,0.0,2,1.3306503295898438,457,0.0,3 +70457,6,0.0,2,1.3496500253677368,458,0.0,3 +70458,6,0.0,2,2.330656051635742,459,0.0,3 +70459,6,1.0,2,1.34565007686615,460,1.0,3 +70460,6,1.0,2,1.2726510763168335,461,0.0,3 +70461,6,0.0,2,1.344650149345398,462,1.0,3 +70462,6,0.0,2,1.3466501235961914,463,0.0,3 +70463,6,0.0,2,1.237650990486145,464,0.0,3 +70464,6,0.0,2,1.2946507930755615,465,0.0,3 +70465,6,0.0,2,1.871643304824829,466,1.0,3 +70466,6,0.0,2,1.2536510229110718,467,1.0,3 +70467,6,0.0,2,1.3526500463485718,468,0.0,3 +70468,6,0.0,2,1.5856471061706543,469,1.0,3 +70469,6,1.0,2,1.2836508750915527,470,1.0,3 +70470,6,0.0,2,1.4616485834121704,471,0.0,3 +70471,6,1.0,2,1.437648892402649,472,0.0,3 +70472,6,0.0,2,1.4506487846374512,473,1.0,3 +70473,6,0.0,2,1.170650839805603,474,1.0,3 +70474,6,0.0,2,1.5296478271484375,475,0.0,3 +70475,6,0.0,2,1.6736459732055664,476,1.0,3 +70476,6,0.0,2,1.2056509256362915,477,0.0,3 +70477,6,1.0,2,1.1226507425308228,478,0.0,3 +70478,6,1.0,2,1.8936431407928467,479,1.0,3 +70479,6,1.0,2,1.7326451539993286,480,0.0,3 +70480,6,1.0,2,1.7206453084945679,481,0.0,3 +70481,6,0.0,2,1.554647445678711,482,1.0,3 +70482,6,0.0,2,1.2906508445739746,483,1.0,3 +70483,6,0.0,2,1.4196491241455078,484,1.0,3 +70484,6,0.0,2,1.1946508884429932,485,0.0,3 +70485,6,0.0,2,1.102650761604309,486,0.0,3 +70486,6,0.0,2,1.1926509141921997,487,0.0,3 +70487,6,0.0,2,1.2236509323120117,488,0.0,3 +70488,6,0.0,2,1.6076467037200928,489,1.0,3 +70489,6,0.0,2,1.27065110206604,490,1.0,3 +70490,6,0.0,2,1.7886444330215454,491,1.0,3 +70491,6,0.0,2,1.5406476259231567,492,1.0,3 +70492,6,0.0,2,1.7016456127166748,493,1.0,3 +70493,6,0.0,2,1.620646595954895,494,0.0,3 +70494,6,0.0,2,1.1686508655548096,495,1.0,3 +70495,6,0.0,2,1.1856509447097778,496,0.0,3 +70496,6,1.0,2,1.5676472187042236,497,1.0,3 +70497,6,0.0,2,1.9616422653198242,498,1.0,3 +70498,6,0.0,2,1.6926456689834595,499,0.0,3 +70499,6,1.0,2,1.6636459827423096,500,1.0,3 +70500,7,0.0,0,2.2985687255859375,1,0.0,3 +70501,7,1.0,0,1.5205631256103516,2,1.0,3 +70502,7,1.0,0,1.4925634860992432,3,1.0,3 +70503,7,1.0,0,1.3665651082992554,4,1.0,3 +70504,7,1.0,0,1.3675650358200073,5,1.0,3 +70505,7,1.0,0,1.260565996170044,6,1.0,3 +70506,7,1.0,0,1.3695650100708008,7,1.0,3 +70507,7,1.0,0,1.4395641088485718,8,1.0,3 +70508,7,1.0,0,1.257565975189209,9,1.0,3 +70509,7,1.0,0,1.3035658597946167,10,1.0,3 +70510,7,1.0,0,1.8325591087341309,11,1.0,3 +70511,7,1.0,0,1.5205631256103516,12,0.0,3 +70512,7,1.0,0,2.3425707817077637,13,1.0,3 +70513,7,1.0,0,1.379564881324768,14,1.0,3 +70514,7,1.0,0,1.5855622291564941,15,0.0,3 +70515,7,0.0,0,1.2455660104751587,16,0.0,3 +70516,7,1.0,0,1.6215617656707764,17,1.0,3 +70517,7,1.0,0,1.3145657777786255,18,1.0,3 +70518,7,1.0,0,1.152565836906433,19,0.0,3 +70519,7,1.0,0,1.2725660800933838,20,1.0,3 +70520,7,1.0,0,2.0415565967559814,21,1.0,3 +70521,7,0.0,0,1.51956307888031,22,0.0,3 +70522,7,1.0,0,1.6025620698928833,23,1.0,3 +70523,7,1.0,0,1.8325591087341309,24,0.0,3 +70524,7,0.0,0,1.4415640830993652,25,0.0,3 +70525,7,1.0,0,2.0805583000183105,26,1.0,3 +70526,7,1.0,0,1.4615638256072998,27,1.0,3 +70527,7,1.0,0,1.2765660285949707,28,1.0,3 +70528,7,1.0,0,1.383564829826355,29,1.0,3 +70529,7,1.0,0,1.614561915397644,30,1.0,3 +70530,7,1.0,0,1.3215656280517578,31,1.0,3 +70531,7,1.0,0,1.5035632848739624,32,1.0,3 +70532,7,1.0,0,1.2065658569335938,33,1.0,3 +70533,7,1.0,0,1.312565803527832,34,1.0,3 +70534,7,1.0,0,1.5405628681182861,35,1.0,3 +70535,7,1.0,0,1.3245656490325928,36,0.0,3 +70536,7,1.0,0,1.3055658340454102,37,1.0,3 +70537,7,1.0,0,1.2385659217834473,38,1.0,3 +70538,7,1.0,0,1.6775610446929932,39,1.0,3 +70539,7,1.0,0,1.250566005706787,40,1.0,3 +70540,7,1.0,0,1.3505653142929077,41,1.0,3 +70541,7,1.0,0,1.382564902305603,42,1.0,3 +70542,7,1.0,0,1.5325629711151123,43,0.0,3 +70543,7,0.0,0,2.7785911560058594,44,0.0,3 +70544,7,1.0,0,1.7595601081848145,45,1.0,3 +70545,7,1.0,0,1.7305604219436646,46,1.0,3 +70546,7,1.0,0,1.4145644903182983,47,1.0,3 +70547,7,1.0,0,1.7525601387023926,48,1.0,3 +70548,7,1.0,0,1.1635658740997314,49,1.0,3 +70549,7,1.0,0,1.259566068649292,50,1.0,3 +70550,7,0.0,0,1.3705650568008423,51,0.0,3 +70551,7,0.0,0,2.1335608959198,52,0.0,3 +70552,7,1.0,0,1.9775571823120117,53,1.0,3 +70553,7,1.0,0,1.434564232826233,54,0.0,3 +70554,7,1.0,0,1.7455601692199707,55,1.0,3 +70555,7,1.0,0,1.3155657052993774,56,1.0,3 +70556,7,1.0,0,1.5975620746612549,57,1.0,3 +70557,7,1.0,0,1.4545639753341675,58,1.0,3 +70558,7,0.0,0,2.2685670852661133,59,0.0,3 +70559,7,1.0,0,1.2435660362243652,60,1.0,3 +70560,7,1.0,0,1.431564211845398,61,1.0,3 +70561,7,1.0,0,1.2415659427642822,62,0.0,3 +70562,7,0.0,0,1.4725637435913086,63,0.0,3 +70563,7,1.0,0,1.3485653400421143,64,1.0,3 +70564,7,1.0,0,1.448564052581787,65,1.0,3 +70565,7,1.0,0,1.3785649538040161,66,0.0,3 +70566,7,0.0,0,1.9005582332611084,67,1.0,3 +70567,7,0.0,0,1.3365654945373535,68,0.0,3 +70568,7,0.0,0,2.177562952041626,69,0.0,3 +70569,7,1.0,0,1.8575587272644043,70,0.0,3 +70570,7,1.0,0,1.846558928489685,71,1.0,3 +70571,7,1.0,0,1.728560447692871,72,1.0,3 +70572,7,1.0,0,1.317565679550171,73,1.0,3 +70573,7,1.0,0,1.250566005706787,74,1.0,3 +70574,7,1.0,0,1.1835658550262451,75,1.0,3 +70575,7,1.0,0,1.3295655250549316,76,1.0,3 +70576,7,1.0,0,1.316565752029419,77,1.0,3 +70577,7,1.0,0,1.7135605812072754,78,1.0,3 +70578,7,1.0,0,1.3085658550262451,79,1.0,3 +70579,7,1.0,0,1.4115644693374634,80,1.0,3 +70580,7,1.0,0,1.3485653400421143,81,1.0,3 +70581,7,1.0,0,1.3675650358200073,82,0.0,3 +70582,7,0.0,0,1.1945658922195435,83,1.0,3 +70583,7,0.0,0,1.4915634393692017,84,1.0,3 +70584,7,0.0,0,1.7905596494674683,85,0.0,3 +70585,7,0.0,0,1.9275579452514648,86,0.0,3 +70586,7,0.0,0,1.5295629501342773,87,0.0,3 +70587,7,0.0,0,1.3085658550262451,88,1.0,3 +70588,7,0.0,0,1.8875584602355957,89,0.0,3 +70589,7,0.0,0,1.729560375213623,90,0.0,3 +70590,7,0.0,0,1.497563362121582,91,0.0,3 +70591,7,0.0,0,1.8965582847595215,92,0.0,3 +70592,7,1.0,0,1.3425654172897339,93,1.0,3 +70593,7,0.0,0,1.5725624561309814,94,0.0,3 +70594,7,1.0,0,1.2125658988952637,95,0.0,3 +70595,7,0.0,0,1.259566068649292,96,0.0,3 +70596,7,1.0,0,2.229565382003784,97,1.0,3 +70597,7,1.0,0,1.4025646448135376,98,1.0,3 +70598,7,1.0,0,1.6225618124008179,99,0.0,3 +70599,7,1.0,0,1.3235656023025513,100,1.0,3 +70600,7,1.0,0,1.3655650615692139,101,1.0,3 +70601,7,1.0,0,1.2215659618377686,102,0.0,3 +70602,7,0.0,0,1.7095606327056885,103,0.0,3 +70603,7,0.0,0,2.2635669708251953,104,0.0,3 +70604,7,1.0,0,1.5315629243850708,105,1.0,3 +70605,7,1.0,0,1.3705650568008423,106,1.0,3 +70606,7,1.0,0,1.4385641813278198,107,1.0,3 +70607,7,1.0,0,1.71056067943573,108,1.0,3 +70608,7,1.0,0,1.475563645362854,109,1.0,3 +70609,7,1.0,0,1.1665658950805664,110,1.0,3 +70610,7,1.0,0,1.754560112953186,111,0.0,3 +70611,7,0.0,0,1.2375659942626953,112,0.0,3 +70612,7,1.0,0,2.0675578117370605,113,1.0,3 +70613,7,1.0,0,1.253566026687622,114,1.0,3 +70614,7,1.0,0,1.4895634651184082,115,1.0,3 +70615,7,1.0,0,1.4255642890930176,116,1.0,3 +70616,7,1.0,0,1.3255655765533447,117,1.0,3 +70617,7,1.0,0,1.7935595512390137,118,1.0,3 +70618,7,1.0,0,1.6795611381530762,119,1.0,3 +70619,7,1.0,0,1.526563048362732,120,1.0,3 +70620,7,1.0,0,1.518563151359558,121,1.0,3 +70621,7,1.0,0,1.3325655460357666,122,1.0,3 +70622,7,1.0,0,1.4775636196136475,123,0.0,3 +70623,7,0.0,0,1.250566005706787,124,0.0,3 +70624,7,1.0,0,1.7555601596832275,125,1.0,3 +70625,7,1.0,0,1.6705611944198608,126,1.0,3 +70626,7,1.0,0,1.4065645933151245,127,1.0,3 +70627,7,1.0,0,1.3665651082992554,128,0.0,3 +70628,7,0.0,0,1.3845648765563965,129,0.0,3 +70629,7,0.0,0,1.478563666343689,130,0.0,3 +70630,7,1.0,0,2.197563886642456,131,1.0,3 +70631,7,1.0,0,1.2245659828186035,132,1.0,3 +70632,7,1.0,0,1.7965595722198486,133,1.0,3 +70633,7,0.0,0,1.5145632028579712,134,0.0,3 +70634,7,1.0,0,1.2815660238265991,135,1.0,3 +70635,7,0.0,0,1.1185657978057861,136,0.0,3 +70636,7,1.0,0,1.1515657901763916,137,1.0,3 +70637,7,1.0,0,1.1785658597946167,138,1.0,3 +70638,7,1.0,0,1.6965608596801758,139,1.0,3 +70639,7,0.0,0,1.3475652933120728,140,0.0,3 +70640,7,1.0,0,1.1995658874511719,141,1.0,3 +70641,7,1.0,0,1.7125606536865234,142,1.0,3 +70642,7,1.0,0,1.3525652885437012,143,1.0,3 +70643,7,1.0,0,1.5385628938674927,144,1.0,3 +70644,7,1.0,0,1.254565954208374,145,1.0,3 +70645,7,1.0,0,1.3115657567977905,146,0.0,3 +70646,7,0.0,0,1.5205631256103516,147,1.0,3 +70647,7,0.0,0,1.3045659065246582,148,0.0,3 +70648,7,0.0,0,1.9415576457977295,149,0.0,3 +70649,7,1.0,0,1.7055606842041016,150,1.0,3 +70650,7,1.0,0,1.775559902191162,151,1.0,3 +70651,7,0.0,0,2.227565288543701,152,0.0,3 +70652,7,1.0,0,1.5545626878738403,153,1.0,3 +70653,7,1.0,0,1.2665660381317139,154,1.0,3 +70654,7,1.0,0,1.2555660009384155,155,1.0,3 +70655,7,1.0,0,1.193565845489502,156,1.0,3 +70656,7,1.0,0,1.3195656538009644,157,1.0,3 +70657,7,1.0,0,1.6225618124008179,158,1.0,3 +70658,7,1.0,0,1.4405641555786133,159,1.0,3 +70659,7,1.0,0,1.6725611686706543,160,1.0,3 +70660,7,1.0,0,1.3245656490325928,161,1.0,3 +70661,7,1.0,0,1.4185644388198853,162,0.0,3 +70662,7,0.0,0,1.7035608291625977,163,0.0,3 +70663,7,1.0,0,1.526563048362732,164,1.0,3 +70664,7,1.0,0,1.798559546470642,165,1.0,3 +70665,7,0.0,0,1.6035621166229248,166,1.0,3 +70666,7,1.0,0,1.923557996749878,167,1.0,3 +70667,7,0.0,0,1.5115631818771362,168,0.0,3 +70668,7,1.0,0,1.7405602931976318,169,1.0,3 +70669,7,1.0,0,1.3445653915405273,170,1.0,3 +70670,7,1.0,0,1.4905635118484497,171,1.0,3 +70671,7,1.0,0,1.1485657691955566,172,1.0,3 +70672,7,1.0,0,1.3035658597946167,173,1.0,3 +70673,7,1.0,0,1.3905647993087769,174,1.0,3 +70674,7,1.0,0,1.5775623321533203,175,1.0,3 +70675,7,1.0,0,1.5175631046295166,176,1.0,3 +70676,7,1.0,0,1.256566047668457,177,1.0,3 +70677,7,1.0,0,1.316565752029419,178,1.0,3 +70678,7,1.0,0,1.2065658569335938,179,1.0,3 +70679,7,1.0,0,1.2365659475326538,180,1.0,3 +70680,7,1.0,0,1.3425654172897339,181,1.0,3 +70681,7,0.0,0,1.9895570278167725,182,0.0,3 +70682,7,1.0,0,1.1785658597946167,183,1.0,3 +70683,7,1.0,0,1.2785661220550537,184,1.0,3 +70684,7,1.0,0,1.3685650825500488,185,0.0,3 +70685,7,1.0,0,1.501563310623169,186,1.0,3 +70686,7,1.0,0,1.2755661010742188,187,1.0,3 +70687,7,1.0,0,2.236565589904785,188,0.0,3 +70688,7,0.0,0,1.2135659456253052,189,1.0,3 +70689,7,0.0,0,1.3695650100708008,190,0.0,3 +70690,7,1.0,0,2.0655577182769775,191,1.0,3 +70691,7,1.0,0,1.2695660591125488,192,1.0,3 +70692,7,0.0,0,1.382564902305603,193,1.0,3 +70693,7,1.0,0,1.9705573320388794,194,1.0,3 +70694,7,0.0,0,1.4215643405914307,195,0.0,3 +70695,7,1.0,0,1.2395659685134888,196,1.0,3 +70696,7,1.0,0,1.3475652933120728,197,1.0,3 +70697,7,1.0,0,1.2125658988952637,198,1.0,3 +70698,7,1.0,0,1.5555627346038818,199,0.0,3 +70699,7,0.0,0,1.4205644130706787,200,1.0,3 +70700,7,0.0,0,1.1465657949447632,201,0.0,3 +70701,7,1.0,0,2.1025595664978027,202,0.0,3 +70702,7,0.0,0,1.256566047668457,203,1.0,3 +70703,7,0.0,0,1.2785661220550537,204,0.0,3 +70704,7,1.0,0,1.3785649538040161,205,1.0,3 +70705,7,1.0,0,1.7395603656768799,206,1.0,3 +70706,7,1.0,0,1.783559799194336,207,1.0,3 +70707,7,1.0,0,1.6465615034103394,208,0.0,3 +70708,7,0.0,0,1.5155631303787231,209,0.0,3 +70709,7,0.0,0,1.9405577182769775,210,0.0,3 +70710,7,1.0,0,1.5405628681182861,211,0.0,3 +70711,7,0.0,0,1.1375657320022583,212,0.0,3 +70712,7,0.0,0,1.3155657052993774,213,0.0,3 +70713,7,1.0,0,1.1945658922195435,214,1.0,3 +70714,7,1.0,0,1.6265617609024048,215,1.0,3 +70715,7,1.0,0,2.2715673446655273,216,1.0,3 +70716,7,1.0,0,1.2785661220550537,217,1.0,3 +70717,7,1.0,0,1.456563949584961,218,1.0,3 +70718,7,1.0,0,1.3445653915405273,219,1.0,3 +70719,7,1.0,0,1.2095658779144287,220,1.0,3 +70720,7,1.0,0,2.0545573234558105,221,1.0,3 +70721,7,1.0,0,1.5545626878738403,222,0.0,3 +70722,7,1.0,0,1.71056067943573,223,1.0,3 +70723,7,1.0,0,1.4835635423660278,224,1.0,3 +70724,7,1.0,0,1.2405660152435303,225,0.0,3 +70725,7,0.0,0,1.5345629453659058,226,0.0,3 +70726,7,1.0,0,1.7405602931976318,227,1.0,3 +70727,7,1.0,0,1.5345629453659058,228,1.0,3 +70728,7,1.0,0,1.15656578540802,229,1.0,3 +70729,7,1.0,0,1.2955659627914429,230,1.0,3 +70730,7,1.0,0,1.5985621213912964,231,0.0,3 +70731,7,1.0,0,1.1885658502578735,232,1.0,3 +70732,7,1.0,0,1.3425654172897339,233,1.0,3 +70733,7,1.0,0,1.3985646963119507,234,1.0,3 +70734,7,1.0,0,1.5695624351501465,235,1.0,3 +70735,7,1.0,0,1.3925647735595703,236,1.0,3 +70736,7,1.0,0,1.6955609321594238,237,1.0,3 +70737,7,1.0,0,1.6215617656707764,238,1.0,3 +70738,7,1.0,0,1.4955633878707886,239,0.0,3 +70739,7,1.0,0,1.2395659685134888,240,0.0,3 +70740,7,1.0,0,1.7385603189468384,241,1.0,3 +70741,7,1.0,0,1.2835661172866821,242,1.0,3 +70742,7,1.0,0,1.1485657691955566,243,0.0,3 +70743,7,1.0,0,1.3785649538040161,244,0.0,3 +70744,7,0.0,0,1.4175643920898438,245,0.0,3 +70745,7,1.0,0,1.4775636196136475,246,1.0,3 +70746,7,1.0,0,1.2835661172866821,247,1.0,3 +70747,7,1.0,0,1.3675650358200073,248,1.0,3 +70748,7,1.0,0,1.2975659370422363,249,0.0,3 +70749,7,1.0,0,1.4845635890960693,250,1.0,3 +70750,7,1.0,0,1.5805623531341553,251,1.0,3 +70751,7,1.0,0,1.8515589237213135,252,1.0,3 +70752,7,1.0,0,1.6515614986419678,253,1.0,3 +70753,7,1.0,0,1.5355628728866577,254,1.0,3 +70754,7,1.0,0,1.1945658922195435,255,1.0,3 +70755,7,1.0,0,1.2715660333633423,256,1.0,3 +70756,7,1.0,0,1.3245656490325928,257,1.0,3 +70757,7,1.0,0,1.3015658855438232,258,1.0,3 +70758,7,1.0,0,1.452564001083374,259,0.0,3 +70759,7,1.0,0,2.127560615539551,260,1.0,3 +70760,7,1.0,0,1.5465627908706665,261,1.0,3 +70761,7,1.0,0,1.4705637693405151,262,1.0,3 +70762,7,1.0,0,1.2735660076141357,263,1.0,3 +70763,7,1.0,0,1.566562533378601,264,1.0,3 +70764,7,1.0,0,1.644561529159546,265,1.0,3 +70765,7,1.0,0,1.873558521270752,266,1.0,3 +70766,7,1.0,0,1.846558928489685,267,0.0,3 +70767,7,0.0,0,1.8815584182739258,268,0.0,3 +70768,7,1.0,0,1.1825659275054932,269,1.0,3 +70769,7,1.0,0,1.5825623273849487,270,1.0,3 +70770,7,1.0,0,1.6015620231628418,271,0.0,3 +70771,7,0.0,0,1.4245643615722656,272,0.0,3 +70772,7,1.0,0,1.3745650053024292,273,1.0,3 +70773,7,1.0,0,1.2685660123825073,274,1.0,3 +70774,7,1.0,0,1.2835661172866821,275,0.0,3 +70775,7,1.0,0,1.9255578517913818,276,1.0,3 +70776,7,1.0,0,1.189565896987915,277,1.0,3 +70777,7,0.0,0,1.3805649280548096,278,0.0,3 +70778,7,1.0,0,1.6805610656738281,279,1.0,3 +70779,7,1.0,0,1.4815635681152344,280,1.0,3 +70780,7,1.0,0,1.232565999031067,281,0.0,3 +70781,7,1.0,0,1.7945595979690552,282,0.0,3 +70782,7,0.0,0,1.291566014289856,283,0.0,3 +70783,7,1.0,0,2.436574935913086,284,1.0,3 +70784,7,1.0,0,1.3965647220611572,285,1.0,3 +70785,7,1.0,0,1.3885648250579834,286,0.0,3 +70786,7,0.0,0,1.6535613536834717,287,0.0,3 +70787,7,1.0,0,1.3555651903152466,288,1.0,3 +70788,7,1.0,0,1.1445658206939697,289,1.0,3 +70789,7,0.0,0,1.3435653448104858,290,0.0,3 +70790,7,1.0,0,1.3675650358200073,291,1.0,3 +70791,7,0.0,0,1.3255655765533447,292,0.0,3 +70792,7,1.0,0,1.2525659799575806,293,1.0,3 +70793,7,1.0,0,1.290566086769104,294,0.0,3 +70794,7,1.0,0,2.3605713844299316,295,1.0,3 +70795,7,1.0,0,1.7375602722167969,296,1.0,3 +70796,7,1.0,0,1.479563593864441,297,1.0,3 +70797,7,1.0,0,1.3275655508041382,298,1.0,3 +70798,7,1.0,0,1.4985634088516235,299,1.0,3 +70799,7,1.0,0,1.2695660591125488,300,0.0,3 +70800,7,0.0,0,1.4005646705627441,301,0.0,3 +70801,7,1.0,0,1.685560941696167,302,1.0,3 +70802,7,1.0,0,1.6735610961914062,303,1.0,3 +70803,7,1.0,0,2.211564540863037,304,0.0,3 +70804,7,0.0,0,2.0295565128326416,305,0.0,3 +70805,7,0.0,0,1.2155659198760986,306,1.0,3 +70806,7,0.0,0,1.5505627393722534,307,0.0,3 +70807,7,1.0,0,2.0625576972961426,308,1.0,3 +70808,7,1.0,0,1.3045659065246582,309,1.0,3 +70809,7,1.0,0,1.6155619621276855,310,1.0,3 +70810,7,1.0,0,1.2705659866333008,311,1.0,3 +70811,7,1.0,0,1.4185644388198853,312,0.0,3 +70812,7,0.0,0,1.779559850692749,313,0.0,3 +70813,7,1.0,0,1.6235618591308594,314,0.0,3 +70814,7,0.0,0,1.4245643615722656,315,0.0,3 +70815,7,0.0,0,1.448564052581787,316,1.0,3 +70816,7,0.0,0,1.1735658645629883,317,0.0,3 +70817,7,0.0,0,1.6195619106292725,318,0.0,3 +70818,7,0.0,0,1.1495658159255981,319,0.0,3 +70819,7,0.0,0,1.5205631256103516,320,0.0,3 +70820,7,0.0,0,1.16256582736969,321,1.0,3 +70821,7,0.0,0,1.16256582736969,322,0.0,3 +70822,7,0.0,0,1.331565499305725,323,0.0,3 +70823,7,0.0,0,1.636561632156372,324,0.0,3 +70824,7,0.0,0,1.3275655508041382,325,1.0,3 +70825,7,0.0,0,1.3295655250549316,326,0.0,3 +70826,7,0.0,0,1.5685625076293945,327,0.0,3 +70827,7,1.0,0,1.313565731048584,328,1.0,3 +70828,7,1.0,0,1.5215630531311035,329,1.0,3 +70829,7,1.0,0,1.3205657005310059,330,1.0,3 +70830,7,1.0,0,1.5755624771118164,331,1.0,3 +70831,7,1.0,0,1.518563151359558,332,1.0,3 +70832,7,1.0,0,1.7475602626800537,333,0.0,3 +70833,7,0.0,0,1.2245659828186035,334,0.0,3 +70834,7,0.0,0,1.4035645723342896,335,0.0,3 +70835,7,0.0,0,2.012556791305542,336,0.0,3 +70836,7,0.0,0,2.402573585510254,337,0.0,3 +70837,7,0.0,0,1.2775660753250122,338,0.0,3 +70838,7,1.0,0,1.7075607776641846,339,1.0,3 +70839,7,1.0,0,1.1505658626556396,340,1.0,3 +70840,7,1.0,0,1.2385659217834473,341,1.0,3 +70841,7,1.0,0,1.2965660095214844,342,1.0,3 +70842,7,1.0,0,1.431564211845398,343,1.0,3 +70843,7,1.0,0,1.522563099861145,344,1.0,3 +70844,7,1.0,0,1.915558099746704,345,1.0,3 +70845,7,1.0,0,1.18656587600708,346,1.0,3 +70846,7,1.0,0,1.6825610399246216,347,1.0,3 +70847,7,1.0,0,1.2965660095214844,348,1.0,3 +70848,7,1.0,0,2.127560615539551,349,1.0,3 +70849,7,1.0,0,1.3225656747817993,350,1.0,3 +70850,7,1.0,0,1.3085658550262451,351,1.0,3 +70851,7,1.0,0,1.827559232711792,352,1.0,3 +70852,7,1.0,0,1.3465653657913208,353,0.0,3 +70853,7,1.0,0,1.831559181213379,354,1.0,3 +70854,7,1.0,0,1.5095632076263428,355,1.0,3 +70855,7,1.0,0,1.3485653400421143,356,1.0,3 +70856,7,1.0,0,1.5275629758834839,357,1.0,3 +70857,7,1.0,0,1.9485576152801514,358,1.0,3 +70858,7,1.0,0,1.3105658292770386,359,1.0,3 +70859,7,1.0,0,1.2615660429000854,360,1.0,3 +70860,7,1.0,0,1.33456552028656,361,0.0,3 +70861,7,0.0,0,1.2855660915374756,362,0.0,3 +70862,7,1.0,0,2.2925682067871094,363,1.0,3 +70863,7,1.0,0,1.5785623788833618,364,1.0,3 +70864,7,1.0,0,1.3065658807754517,365,1.0,3 +70865,7,1.0,0,1.2495659589767456,366,1.0,3 +70866,7,1.0,0,1.592562198638916,367,1.0,3 +70867,7,1.0,0,1.449563980102539,368,1.0,3 +70868,7,1.0,0,1.4365642070770264,369,1.0,3 +70869,7,1.0,0,1.383564829826355,370,1.0,3 +70870,7,1.0,0,1.6695611476898193,371,0.0,3 +70871,7,1.0,0,1.8825584650039673,372,1.0,3 +70872,7,1.0,0,1.257565975189209,373,0.0,3 +70873,7,0.0,0,1.4855635166168213,374,0.0,3 +70874,7,1.0,0,2.118560314178467,375,1.0,3 +70875,7,1.0,0,1.2935659885406494,376,1.0,3 +70876,7,1.0,0,1.5425628423690796,377,1.0,3 +70877,7,1.0,0,1.1605658531188965,378,1.0,3 +70878,7,1.0,0,1.1635658740997314,379,1.0,3 +70879,7,1.0,0,1.3955646753311157,380,1.0,3 +70880,7,1.0,0,1.5345629453659058,381,1.0,3 +70881,7,1.0,0,1.7505601644515991,382,1.0,3 +70882,7,1.0,0,1.3085658550262451,383,1.0,3 +70883,7,1.0,0,1.317565679550171,384,1.0,3 +70884,7,1.0,0,1.1545658111572266,385,1.0,3 +70885,7,1.0,0,1.7705599069595337,386,1.0,3 +70886,7,1.0,0,1.4115644693374634,387,0.0,3 +70887,7,1.0,0,1.7185605764389038,388,1.0,3 +70888,7,1.0,0,1.426564335823059,389,1.0,3 +70889,7,1.0,0,1.196565866470337,390,1.0,3 +70890,7,1.0,0,1.7825597524642944,391,1.0,3 +70891,7,1.0,0,1.3455653190612793,392,1.0,3 +70892,7,1.0,0,1.3055658340454102,393,0.0,3 +70893,7,1.0,0,1.3215656280517578,394,1.0,3 +70894,7,1.0,0,1.6055619716644287,395,1.0,3 +70895,7,1.0,0,1.3975646495819092,396,1.0,3 +70896,7,1.0,0,1.2155659198760986,397,1.0,3 +70897,7,1.0,0,1.6205618381500244,398,1.0,3 +70898,7,1.0,0,1.758560061454773,399,1.0,3 +70899,7,1.0,0,1.2515660524368286,400,1.0,3 +70900,7,1.0,0,1.3415653705596924,401,1.0,3 +70901,7,1.0,0,2.0555572509765625,402,1.0,3 +70902,7,1.0,0,1.3745650053024292,403,1.0,3 +70903,7,1.0,0,1.3455653190612793,404,1.0,3 +70904,7,1.0,0,1.5365629196166992,405,1.0,3 +70905,7,1.0,0,1.2055659294128418,406,1.0,3 +70906,7,1.0,0,1.4185644388198853,407,1.0,3 +70907,7,1.0,0,1.195565938949585,408,0.0,3 +70908,7,1.0,0,1.5065633058547974,409,1.0,3 +70909,7,1.0,0,1.2105659246444702,410,1.0,3 +70910,7,1.0,0,1.3955646753311157,411,0.0,3 +70911,7,1.0,0,1.8365590572357178,412,1.0,3 +70912,7,1.0,0,1.3545652627944946,413,0.0,3 +70913,7,1.0,0,1.3915647268295288,414,1.0,3 +70914,7,1.0,0,1.404564619064331,415,0.0,3 +70915,7,0.0,0,1.4395641088485718,416,1.0,3 +70916,7,0.0,0,1.7905596494674683,417,0.0,3 +70917,7,0.0,0,1.387564778327942,418,0.0,3 +70918,7,1.0,0,1.7265604734420776,419,0.0,3 +70919,7,0.0,0,1.898558259010315,420,0.0,3 +70920,7,0.0,0,1.829559087753296,421,1.0,3 +70921,7,0.0,0,2.0945591926574707,422,0.0,3 +70922,7,1.0,0,1.4145644903182983,423,1.0,3 +70923,7,1.0,0,1.431564211845398,424,1.0,3 +70924,7,0.0,0,1.294566035270691,425,0.0,3 +70925,7,1.0,0,1.2525659799575806,426,1.0,3 +70926,7,1.0,0,1.260565996170044,427,1.0,3 +70927,7,1.0,0,1.4705637693405151,428,1.0,3 +70928,7,0.0,0,2.4395751953125,429,1.0,3 +70929,7,0.0,0,1.688560962677002,430,1.0,3 +70930,7,1.0,0,2.0795583724975586,431,1.0,3 +70931,7,0.0,0,1.8585587739944458,432,0.0,3 +70932,7,0.0,0,1.2715660333633423,433,0.0,3 +70933,7,1.0,0,1.2735660076141357,434,1.0,3 +70934,7,1.0,0,1.8875584602355957,435,0.0,3 +70935,7,0.0,0,2.003556966781616,436,0.0,3 +70936,7,1.0,0,1.8975582122802734,437,1.0,3 +70937,7,0.0,0,1.2855660915374756,438,0.0,3 +70938,7,1.0,0,1.2165659666061401,439,1.0,3 +70939,7,1.0,0,1.4885635375976562,440,1.0,3 +70940,7,1.0,0,1.7855596542358398,441,1.0,3 +70941,7,1.0,0,1.254565954208374,442,1.0,3 +70942,7,1.0,0,1.339565396308899,443,1.0,3 +70943,7,1.0,0,1.523563027381897,444,1.0,3 +70944,7,1.0,0,1.7515602111816406,445,1.0,3 +70945,7,1.0,0,1.2755661010742188,446,1.0,3 +70946,7,1.0,0,1.4225643873214722,447,0.0,3 +70947,7,1.0,0,1.4895634651184082,448,1.0,3 +70948,7,0.0,0,1.5465627908706665,449,0.0,3 +70949,7,1.0,0,1.599562168121338,450,1.0,3 +70950,7,1.0,0,1.3555651903152466,451,1.0,3 +70951,7,1.0,0,1.3215656280517578,452,1.0,3 +70952,7,1.0,0,1.2615660429000854,453,1.0,3 +70953,7,1.0,0,1.7825597524642944,454,1.0,3 +70954,7,1.0,0,1.7155606746673584,455,1.0,3 +70955,7,1.0,0,1.6385616064071655,456,1.0,3 +70956,7,1.0,0,1.2165659666061401,457,1.0,3 +70957,7,1.0,0,1.2685660123825073,458,1.0,3 +70958,7,1.0,0,1.6165618896484375,459,0.0,3 +70959,7,1.0,0,1.6095619201660156,460,0.0,3 +70960,7,0.0,0,1.684561014175415,461,0.0,3 +70961,7,0.0,0,1.5645625591278076,462,0.0,3 +70962,7,0.0,0,1.5295629501342773,463,0.0,3 +70963,7,1.0,0,1.1795659065246582,464,1.0,3 +70964,7,1.0,0,1.2125658988952637,465,1.0,3 +70965,7,1.0,0,1.3005659580230713,466,1.0,3 +70966,7,1.0,0,2.0865588188171387,467,1.0,3 +70967,7,1.0,0,1.33456552028656,468,1.0,3 +70968,7,0.0,0,1.4035645723342896,469,0.0,3 +70969,7,1.0,0,1.379564881324768,470,1.0,3 +70970,7,1.0,0,1.5385628938674927,471,1.0,3 +70971,7,1.0,0,1.3425654172897339,472,1.0,3 +70972,7,1.0,0,1.3035658597946167,473,1.0,3 +70973,7,0.0,0,1.2155659198760986,474,0.0,3 +70974,7,1.0,0,1.5175631046295166,475,1.0,3 +70975,7,1.0,0,1.4175643920898438,476,0.0,3 +70976,7,1.0,0,1.4115644693374634,477,0.0,3 +70977,7,1.0,0,1.4155644178390503,478,1.0,3 +70978,7,1.0,0,1.4945634603500366,479,1.0,3 +70979,7,1.0,0,1.6295616626739502,480,1.0,3 +70980,7,1.0,0,1.8435590267181396,481,1.0,3 +70981,7,1.0,0,1.2695660591125488,482,1.0,3 +70982,7,1.0,0,1.7685599327087402,483,0.0,3 +70983,7,1.0,0,2.188563346862793,484,1.0,3 +70984,7,1.0,0,1.2475659847259521,485,1.0,3 +70985,7,1.0,0,1.915558099746704,486,1.0,3 +70986,7,1.0,0,1.3955646753311157,487,1.0,3 +70987,7,1.0,0,1.3085658550262451,488,1.0,3 +70988,7,1.0,0,1.2095658779144287,489,1.0,3 +70989,7,1.0,0,1.2025659084320068,490,1.0,3 +70990,7,1.0,0,1.426564335823059,491,0.0,3 +70991,7,0.0,0,1.599562168121338,492,0.0,3 +70992,7,0.0,0,2.0725579261779785,493,0.0,3 +70993,7,1.0,0,1.777559757232666,494,1.0,3 +70994,7,1.0,0,1.262566089630127,495,1.0,3 +70995,7,1.0,0,1.1615657806396484,496,1.0,3 +70996,7,1.0,0,1.500563383102417,497,1.0,3 +70997,7,1.0,0,1.7635600566864014,498,0.0,3 +70998,7,1.0,0,2.0545573234558105,499,1.0,3 +70999,7,1.0,0,1.965557336807251,500,1.0,3 +71000,7,1.0,1,1.3705650568008423,1,1.0,3 +71001,7,1.0,1,1.2445659637451172,2,1.0,3 +71002,7,1.0,1,1.4325642585754395,3,1.0,3 +71003,7,1.0,1,1.356565237045288,4,1.0,3 +71004,7,1.0,1,1.5525627136230469,5,1.0,3 +71005,7,1.0,1,1.4995633363723755,6,1.0,3 +71006,7,1.0,1,2.3635716438293457,7,0.0,3 +71007,7,1.0,1,1.2685660123825073,8,1.0,3 +71008,7,1.0,1,1.5815622806549072,9,1.0,3 +71009,7,1.0,1,1.3435653448104858,10,1.0,3 +71010,7,1.0,1,1.913558006286621,11,0.0,3 +71011,7,1.0,1,1.3335654735565186,12,1.0,3 +71012,7,0.0,1,1.7435603141784668,13,1.0,3 +71013,7,0.0,1,1.1815658807754517,14,0.0,3 +71014,7,1.0,1,1.3415653705596924,15,0.0,3 +71015,7,0.0,1,1.549562692642212,16,0.0,3 +71016,7,0.0,1,1.8075594902038574,17,0.0,3 +71017,7,1.0,1,1.4695637226104736,18,1.0,3 +71018,7,1.0,1,1.3635650873184204,19,1.0,3 +71019,7,1.0,1,1.312565803527832,20,1.0,3 +71020,7,1.0,1,1.2135659456253052,21,1.0,3 +71021,7,1.0,1,1.7115607261657715,22,0.0,3 +71022,7,1.0,1,2.009556770324707,23,1.0,3 +71023,7,0.0,1,1.1745657920837402,24,1.0,3 +71024,7,1.0,1,1.4695637226104736,25,1.0,3 +71025,7,1.0,1,1.4825636148452759,26,1.0,3 +71026,7,1.0,1,1.3325655460357666,27,0.0,3 +71027,7,0.0,1,1.3655650615692139,28,0.0,3 +71028,7,1.0,1,1.4155644178390503,29,0.0,3 +71029,7,0.0,1,1.71056067943573,30,0.0,3 +71030,7,0.0,1,1.3745650053024292,31,0.0,3 +71031,7,1.0,1,1.6655611991882324,32,0.0,3 +71032,7,0.0,1,1.5535626411437988,33,0.0,3 +71033,7,0.0,1,1.5155631303787231,34,0.0,3 +71034,7,0.0,1,1.644561529159546,35,1.0,3 +71035,7,0.0,1,1.5785623788833618,36,0.0,3 +71036,7,0.0,1,1.1455657482147217,37,0.0,3 +71037,7,0.0,1,1.6225618124008179,38,0.0,3 +71038,7,1.0,1,1.3515652418136597,39,1.0,3 +71039,7,1.0,1,1.6115620136260986,40,1.0,3 +71040,7,1.0,1,1.9585574865341187,41,1.0,3 +71041,7,1.0,1,1.8845584392547607,42,0.0,3 +71042,7,0.0,1,1.3005659580230713,43,0.0,3 +71043,7,0.0,1,1.2805660963058472,44,0.0,3 +71044,7,1.0,1,1.3845648765563965,45,1.0,3 +71045,7,1.0,1,1.500563383102417,46,1.0,3 +71046,7,1.0,1,2.0265564918518066,47,0.0,3 +71047,7,1.0,1,1.5645625591278076,48,1.0,3 +71048,7,1.0,1,1.2755661010742188,49,1.0,3 +71049,7,1.0,1,1.448564052581787,50,1.0,3 +71050,7,1.0,1,1.589562177658081,51,1.0,3 +71051,7,1.0,1,1.155565857887268,52,1.0,3 +71052,7,1.0,1,1.4605638980865479,53,1.0,3 +71053,7,1.0,1,1.2435660362243652,54,1.0,3 +71054,7,0.0,1,1.7375602722167969,55,0.0,3 +71055,7,0.0,1,1.4285643100738525,56,0.0,3 +71056,7,1.0,1,1.7165606021881104,57,0.0,3 +71057,7,1.0,1,1.68756103515625,58,1.0,3 +71058,7,1.0,1,1.3085658550262451,59,1.0,3 +71059,7,1.0,1,1.5295629501342773,60,0.0,3 +71060,7,1.0,1,1.9855570793151855,61,1.0,3 +71061,7,1.0,1,1.526563048362732,62,1.0,3 +71062,7,1.0,1,2.0915589332580566,63,1.0,3 +71063,7,1.0,1,1.4195643663406372,64,1.0,3 +71064,7,1.0,1,1.294566035270691,65,1.0,3 +71065,7,1.0,1,1.5765624046325684,66,1.0,3 +71066,7,1.0,1,1.3375654220581055,67,1.0,3 +71067,7,1.0,1,2.2345657348632812,68,1.0,3 +71068,7,0.0,1,1.7455601692199707,69,0.0,3 +71069,7,1.0,1,1.2795660495758057,70,1.0,3 +71070,7,0.0,1,1.7155606746673584,71,0.0,3 +71071,7,1.0,1,1.6655611991882324,72,1.0,3 +71072,7,1.0,1,1.3755649328231812,73,0.0,3 +71073,7,0.0,1,1.504563331604004,74,0.0,3 +71074,7,1.0,1,1.990557074546814,75,1.0,3 +71075,7,1.0,1,1.6865609884262085,76,0.0,3 +71076,7,1.0,1,1.780559778213501,77,0.0,3 +71077,7,1.0,1,2.495577812194824,78,0.0,3 +71078,7,0.0,1,1.963557481765747,79,1.0,3 +71079,7,0.0,1,1.3815648555755615,80,0.0,3 +71080,7,0.0,1,1.5135631561279297,81,0.0,3 +71081,7,0.0,1,1.9335577487945557,82,0.0,3 +71082,7,1.0,1,2.1095597743988037,83,1.0,3 +71083,7,1.0,1,1.1815658807754517,84,1.0,3 +71084,7,1.0,1,1.4145644903182983,85,1.0,3 +71085,7,1.0,1,1.2455660104751587,86,0.0,3 +71086,7,1.0,1,1.9955570697784424,87,1.0,3 +71087,7,1.0,1,1.7675600051879883,88,1.0,3 +71088,7,1.0,1,1.2155659198760986,89,1.0,3 +71089,7,1.0,1,1.2005659341812134,90,0.0,3 +71090,7,0.0,1,1.4885635375976562,91,1.0,3 +71091,7,0.0,1,1.1975659132003784,92,0.0,3 +71092,7,1.0,1,1.4515639543533325,93,1.0,3 +71093,7,1.0,1,1.4705637693405151,94,1.0,3 +71094,7,1.0,1,1.379564881324768,95,1.0,3 +71095,7,1.0,1,1.3925647735595703,96,1.0,3 +71096,7,1.0,1,1.2225658893585205,97,1.0,3 +71097,7,1.0,1,1.2405660152435303,98,1.0,3 +71098,7,1.0,1,1.4705637693405151,99,1.0,3 +71099,7,1.0,1,1.331565499305725,100,1.0,3 +71100,7,1.0,1,1.6825610399246216,101,0.0,3 +71101,7,1.0,1,2.3015687465667725,102,1.0,3 +71102,7,1.0,1,1.449563980102539,103,1.0,3 +71103,7,1.0,1,1.3515652418136597,104,1.0,3 +71104,7,1.0,1,1.824559211730957,105,1.0,3 +71105,7,1.0,1,1.2665660381317139,106,1.0,3 +71106,7,1.0,1,1.2815660238265991,107,0.0,3 +71107,7,0.0,1,1.6695611476898193,108,0.0,3 +71108,7,1.0,1,2.0535571575164795,109,1.0,3 +71109,7,1.0,1,1.3765649795532227,110,1.0,3 +71110,7,1.0,1,1.3995646238327026,111,1.0,3 +71111,7,1.0,1,1.4235643148422241,112,1.0,3 +71112,7,1.0,1,1.8185592889785767,113,0.0,3 +71113,7,0.0,1,1.5655624866485596,114,0.0,3 +71114,7,1.0,1,1.7505601644515991,115,0.0,3 +71115,7,0.0,1,1.6935608386993408,116,0.0,3 +71116,7,1.0,1,1.8045594692230225,117,1.0,3 +71117,7,1.0,1,1.4355641603469849,118,1.0,3 +71118,7,1.0,1,1.3195656538009644,119,1.0,3 +71119,7,1.0,1,1.6785610914230347,120,1.0,3 +71120,7,1.0,1,1.2115659713745117,121,1.0,3 +71121,7,1.0,1,1.7875597476959229,122,0.0,3 +71122,7,0.0,1,1.6555614471435547,123,1.0,3 +71123,7,0.0,1,1.2515660524368286,124,0.0,3 +71124,7,0.0,1,1.3035658597946167,125,0.0,3 +71125,7,0.0,1,1.8155593872070312,126,0.0,3 +71126,7,1.0,1,1.1995658874511719,127,1.0,3 +71127,7,1.0,1,1.662561297416687,128,1.0,3 +71128,7,1.0,1,1.4865635633468628,129,1.0,3 +71129,7,1.0,1,1.2755661010742188,130,1.0,3 +71130,7,1.0,1,1.4895634651184082,131,0.0,3 +71131,7,1.0,1,1.8415589332580566,132,1.0,3 +71132,7,1.0,1,1.3735649585723877,133,1.0,3 +71133,7,1.0,1,1.2935659885406494,134,1.0,3 +71134,7,1.0,1,1.3855648040771484,135,0.0,3 +71135,7,1.0,1,1.2795660495758057,136,0.0,3 +71136,7,0.0,1,1.2215659618377686,137,0.0,3 +71137,7,0.0,1,1.4635637998580933,138,1.0,3 +71138,7,0.0,1,1.2345659732818604,139,0.0,3 +71139,7,0.0,1,1.3635650873184204,140,1.0,3 +71140,7,0.0,1,1.3185657262802124,141,0.0,3 +71141,7,0.0,1,1.4405641555786133,142,1.0,3 +71142,7,1.0,1,2.170562744140625,143,1.0,3 +71143,7,0.0,1,1.5375628471374512,144,1.0,3 +71144,7,0.0,1,2.3615715503692627,145,0.0,3 +71145,7,1.0,1,1.8875584602355957,146,0.0,3 +71146,7,0.0,1,2.3375704288482666,147,1.0,3 +71147,7,0.0,1,1.9185580015182495,148,1.0,3 +71148,7,0.0,1,1.6905609369277954,149,0.0,3 +71149,7,0.0,1,1.9575574398040771,150,0.0,3 +71150,7,0.0,1,1.1125657558441162,151,1.0,3 +71151,7,0.0,1,2.0285565853118896,152,1.0,3 +71152,7,0.0,1,1.7205605506896973,153,1.0,3 +71153,7,0.0,1,1.7155606746673584,154,0.0,3 +71154,7,1.0,1,1.1545658111572266,155,0.0,3 +71155,7,0.0,1,1.5395629405975342,156,0.0,3 +71156,7,0.0,1,1.7445602416992188,157,0.0,3 +71157,7,0.0,1,1.8495588302612305,158,0.0,3 +71158,7,0.0,1,1.6485614776611328,159,0.0,3 +71159,7,1.0,1,1.312565803527832,160,0.0,3 +71160,7,0.0,1,1.4395641088485718,161,1.0,3 +71161,7,0.0,1,1.5335628986358643,162,0.0,3 +71162,7,1.0,1,1.938557744026184,163,1.0,3 +71163,7,1.0,1,1.3955646753311157,164,1.0,3 +71164,7,1.0,1,1.5375628471374512,165,1.0,3 +71165,7,1.0,1,1.8045594692230225,166,1.0,3 +71166,7,1.0,1,1.3905647993087769,167,1.0,3 +71167,7,1.0,1,1.5205631256103516,168,1.0,3 +71168,7,0.0,1,1.5715625286102295,169,0.0,3 +71169,7,1.0,1,1.504563331604004,170,1.0,3 +71170,7,1.0,1,1.9515576362609863,171,1.0,3 +71171,7,1.0,1,1.449563980102539,172,0.0,3 +71172,7,1.0,1,1.8995583057403564,173,0.0,3 +71173,7,0.0,1,1.2445659637451172,174,0.0,3 +71174,7,0.0,1,1.257565975189209,175,0.0,3 +71175,7,1.0,1,1.6725611686706543,176,1.0,3 +71176,7,1.0,1,1.7455601692199707,177,1.0,3 +71177,7,1.0,1,1.522563099861145,178,0.0,3 +71178,7,1.0,1,1.3765649795532227,179,1.0,3 +71179,7,1.0,1,1.2925660610198975,180,1.0,3 +71180,7,1.0,1,1.4675637483596802,181,0.0,3 +71181,7,0.0,1,1.6765611171722412,182,0.0,3 +71182,7,1.0,1,1.7015607357025146,183,0.0,3 +71183,7,1.0,1,1.2815660238265991,184,1.0,3 +71184,7,1.0,1,1.754560112953186,185,1.0,3 +71185,7,1.0,1,2.162562370300293,186,0.0,3 +71186,7,1.0,1,2.3335702419281006,187,0.0,3 +71187,7,0.0,1,1.2385659217834473,188,0.0,3 +71188,7,0.0,1,1.4815635681152344,189,0.0,3 +71189,7,0.0,1,1.290566086769104,190,1.0,3 +71190,7,0.0,1,1.3455653190612793,191,1.0,3 +71191,7,0.0,1,1.2675660848617554,192,1.0,3 +71192,7,0.0,1,1.3035658597946167,193,0.0,3 +71193,7,0.0,1,1.5095632076263428,194,0.0,3 +71194,7,1.0,1,1.6965608596801758,195,0.0,3 +71195,7,0.0,1,1.1975659132003784,196,1.0,3 +71196,7,0.0,1,1.6505614519119263,197,0.0,3 +71197,7,0.0,1,1.2895660400390625,198,0.0,3 +71198,7,0.0,1,1.8635587692260742,199,0.0,3 +71199,7,1.0,1,1.4935634136199951,200,0.0,3 +71200,7,0.0,1,1.4505640268325806,201,0.0,3 +71201,7,0.0,1,2.140561103820801,202,0.0,3 +71202,7,0.0,1,1.193565845489502,203,1.0,3 +71203,7,0.0,1,1.2135659456253052,204,0.0,3 +71204,7,0.0,1,1.2275660037994385,205,0.0,3 +71205,7,1.0,1,1.6935608386993408,206,1.0,3 +71206,7,1.0,1,1.5815622806549072,207,1.0,3 +71207,7,1.0,1,1.4865635633468628,208,1.0,3 +71208,7,1.0,1,1.7405602931976318,209,0.0,3 +71209,7,0.0,1,1.5155631303787231,210,1.0,3 +71210,7,0.0,1,1.1485657691955566,211,1.0,3 +71211,7,0.0,1,1.5865622758865356,212,0.0,3 +71212,7,0.0,1,1.8605587482452393,213,0.0,3 +71213,7,0.0,1,1.3555651903152466,214,1.0,3 +71214,7,0.0,1,1.474563717842102,215,0.0,3 +71215,7,1.0,1,1.427564263343811,216,1.0,3 +71216,7,1.0,1,1.35756516456604,217,1.0,3 +71217,7,1.0,1,1.232565999031067,218,1.0,3 +71218,7,0.0,1,1.3085658550262451,219,0.0,3 +71219,7,1.0,1,1.4455640316009521,220,1.0,3 +71220,7,1.0,1,1.309565782546997,221,0.0,3 +71221,7,0.0,1,1.570562481880188,222,0.0,3 +71222,7,0.0,1,1.4415640830993652,223,1.0,3 +71223,7,0.0,1,2.0375564098358154,224,0.0,3 +71224,7,0.0,1,1.9035582542419434,225,0.0,3 +71225,7,1.0,1,1.40956449508667,226,0.0,3 +71226,7,1.0,1,1.6085619926452637,227,1.0,3 +71227,7,1.0,1,1.2735660076141357,228,1.0,3 +71228,7,1.0,1,1.4905635118484497,229,1.0,3 +71229,7,1.0,1,1.7595601081848145,230,1.0,3 +71230,7,1.0,1,1.262566089630127,231,0.0,3 +71231,7,1.0,1,1.2035659551620483,232,1.0,3 +71232,7,1.0,1,1.426564335823059,233,0.0,3 +71233,7,0.0,1,1.4125645160675049,234,0.0,3 +71234,7,0.0,1,1.6615612506866455,235,1.0,3 +71235,7,0.0,1,1.220565915107727,236,1.0,3 +71236,7,0.0,1,1.9325578212738037,237,0.0,3 +71237,7,0.0,1,1.7155606746673584,238,0.0,3 +71238,7,0.0,1,1.5105632543563843,239,1.0,3 +71239,7,0.0,1,1.1845659017562866,240,0.0,3 +71240,7,1.0,1,1.3085658550262451,241,1.0,3 +71241,7,1.0,1,2.0905590057373047,242,1.0,3 +71242,7,1.0,1,1.6205618381500244,243,0.0,3 +71243,7,0.0,1,1.260565996170044,244,0.0,3 +71244,7,0.0,1,1.38656485080719,245,0.0,3 +71245,7,1.0,1,1.4465640783309937,246,0.0,3 +71246,7,0.0,1,1.4125645160675049,247,0.0,3 +71247,7,0.0,1,1.1875659227371216,248,1.0,3 +71248,7,1.0,1,1.497563362121582,249,0.0,3 +71249,7,0.0,1,1.1395658254623413,250,0.0,3 +71250,7,0.0,1,1.4405641555786133,251,0.0,3 +71251,7,0.0,1,1.2885661125183105,252,1.0,3 +71252,7,0.0,1,1.9835572242736816,253,0.0,3 +71253,7,0.0,1,1.3325655460357666,254,0.0,3 +71254,7,1.0,1,2.5195789337158203,255,1.0,3 +71255,7,1.0,1,1.260565996170044,256,1.0,3 +71256,7,1.0,1,1.6925609111785889,257,1.0,3 +71257,7,1.0,1,1.3505653142929077,258,0.0,3 +71258,7,1.0,1,1.3075658082962036,259,1.0,3 +71259,7,1.0,1,1.8645586967468262,260,1.0,3 +71260,7,1.0,1,1.4195643663406372,261,1.0,3 +71261,7,0.0,1,2.707587718963623,262,0.0,3 +71262,7,1.0,1,1.2225658893585205,263,0.0,3 +71263,7,1.0,1,1.6765611171722412,264,1.0,3 +71264,7,1.0,1,1.1585657596588135,265,1.0,3 +71265,7,1.0,1,1.2725660800933838,266,1.0,3 +71266,7,1.0,1,2.022556781768799,267,0.0,3 +71267,7,1.0,1,2.404573440551758,268,1.0,3 +71268,7,1.0,1,1.3205657005310059,269,1.0,3 +71269,7,1.0,1,1.7975594997406006,270,1.0,3 +71270,7,1.0,1,1.2445659637451172,271,0.0,3 +71271,7,1.0,1,2.009556770324707,272,1.0,3 +71272,7,1.0,1,1.8935582637786865,273,1.0,3 +71273,7,1.0,1,1.452564001083374,274,1.0,3 +71274,7,0.0,1,1.2665660381317139,275,0.0,3 +71275,7,1.0,1,1.7565600872039795,276,1.0,3 +71276,7,1.0,1,1.7115607261657715,277,1.0,3 +71277,7,1.0,1,1.3535652160644531,278,1.0,3 +71278,7,1.0,1,1.2075659036636353,279,0.0,3 +71279,7,1.0,1,2.1025595664978027,280,0.0,3 +71280,7,1.0,1,1.4235643148422241,281,1.0,3 +71281,7,1.0,1,1.5215630531311035,282,1.0,3 +71282,7,1.0,1,1.217565894126892,283,1.0,3 +71283,7,1.0,1,1.5135631561279297,284,1.0,3 +71284,7,1.0,1,1.338565468788147,285,1.0,3 +71285,7,1.0,1,1.6105619668960571,286,1.0,3 +71286,7,1.0,1,1.2285659313201904,287,1.0,3 +71287,7,1.0,1,1.254565954208374,288,1.0,3 +71288,7,0.0,1,1.5755624771118164,289,0.0,3 +71289,7,1.0,1,1.2465660572052002,290,1.0,3 +71290,7,1.0,1,1.313565731048584,291,1.0,3 +71291,7,1.0,1,1.309565782546997,292,1.0,3 +71292,7,1.0,1,1.7185605764389038,293,1.0,3 +71293,7,1.0,1,1.961557388305664,294,1.0,3 +71294,7,1.0,1,1.541562795639038,295,1.0,3 +71295,7,1.0,1,1.618561863899231,296,0.0,3 +71296,7,1.0,1,1.3805649280548096,297,1.0,3 +71297,7,1.0,1,1.35756516456604,298,1.0,3 +71298,7,1.0,1,1.2655659914016724,299,1.0,3 +71299,7,1.0,1,1.2365659475326538,300,1.0,3 +71300,7,1.0,1,1.4255642890930176,301,1.0,3 +71301,7,1.0,1,1.2405660152435303,302,0.0,3 +71302,7,0.0,1,1.7095606327056885,303,0.0,3 +71303,7,0.0,1,1.4695637226104736,304,1.0,3 +71304,7,0.0,1,1.5585626363754272,305,0.0,3 +71305,7,1.0,1,1.68156099319458,306,1.0,3 +71306,7,1.0,1,1.4215643405914307,307,0.0,3 +71307,7,0.0,1,1.4925634860992432,308,0.0,3 +71308,7,0.0,1,1.7825597524642944,309,1.0,3 +71309,7,0.0,1,1.401564598083496,310,1.0,3 +71310,7,0.0,1,1.3225656747817993,311,0.0,3 +71311,7,0.0,1,1.825559139251709,312,0.0,3 +71312,7,1.0,1,1.155565857887268,313,1.0,3 +71313,7,1.0,1,1.3005659580230713,314,1.0,3 +71314,7,1.0,1,1.6045620441436768,315,1.0,3 +71315,7,1.0,1,1.3965647220611572,316,0.0,3 +71316,7,1.0,1,1.6985608339309692,317,1.0,3 +71317,7,1.0,1,1.4295642375946045,318,1.0,3 +71318,7,1.0,1,1.431564211845398,319,1.0,3 +71319,7,1.0,1,1.1465657949447632,320,1.0,3 +71320,7,1.0,1,1.3485653400421143,321,1.0,3 +71321,7,1.0,1,1.9255578517913818,322,1.0,3 +71322,7,1.0,1,1.2965660095214844,323,0.0,3 +71323,7,0.0,1,1.570562481880188,324,1.0,3 +71324,7,0.0,1,1.6355617046356201,325,0.0,3 +71325,7,1.0,1,1.8445589542388916,326,0.0,3 +71326,7,0.0,1,1.3675650358200073,327,0.0,3 +71327,7,0.0,1,2.1335608959198,328,0.0,3 +71328,7,1.0,1,1.8365590572357178,329,1.0,3 +71329,7,1.0,1,1.2495659589767456,330,1.0,3 +71330,7,1.0,1,1.3555651903152466,331,1.0,3 +71331,7,1.0,1,2.019556760787964,332,1.0,3 +71332,7,1.0,1,1.6045620441436768,333,0.0,3 +71333,7,0.0,1,1.220565915107727,334,0.0,3 +71334,7,0.0,1,1.4235643148422241,335,1.0,3 +71335,7,0.0,1,1.226565957069397,336,0.0,3 +71336,7,1.0,1,2.0345563888549805,337,1.0,3 +71337,7,1.0,1,1.592562198638916,338,1.0,3 +71338,7,1.0,1,1.4215643405914307,339,0.0,3 +71339,7,0.0,1,1.2355660200119019,340,1.0,3 +71340,7,0.0,1,1.2305660247802734,341,1.0,3 +71341,7,0.0,1,1.827559232711792,342,0.0,3 +71342,7,1.0,1,1.688560962677002,343,0.0,3 +71343,7,1.0,1,2.1025595664978027,344,1.0,3 +71344,7,1.0,1,1.294566035270691,345,0.0,3 +71345,7,1.0,1,1.7615599632263184,346,0.0,3 +71346,7,1.0,1,1.3775649070739746,347,1.0,3 +71347,7,1.0,1,1.408564567565918,348,0.0,3 +71348,7,0.0,1,1.8545588254928589,349,1.0,3 +71349,7,0.0,1,1.2835661172866821,350,1.0,3 +71350,7,1.0,1,1.3445653915405273,351,1.0,3 +71351,7,0.0,1,1.16256582736969,352,0.0,3 +71352,7,1.0,1,1.5295629501342773,353,1.0,3 +71353,7,1.0,1,1.426564335823059,354,1.0,3 +71354,7,1.0,1,1.256566047668457,355,1.0,3 +71355,7,1.0,1,1.5295629501342773,356,1.0,3 +71356,7,1.0,1,1.3665651082992554,357,0.0,3 +71357,7,1.0,1,2.1015594005584717,358,1.0,3 +71358,7,0.0,1,1.4915634393692017,359,1.0,3 +71359,7,0.0,1,1.1405657529830933,360,0.0,3 +71360,7,1.0,1,1.4435640573501587,361,1.0,3 +71361,7,1.0,1,1.6985608339309692,362,1.0,3 +71362,7,1.0,1,1.3505653142929077,363,1.0,3 +71363,7,1.0,1,1.5165631771087646,364,1.0,3 +71364,7,1.0,1,1.3735649585723877,365,0.0,3 +71365,7,1.0,1,1.4235643148422241,366,1.0,3 +71366,7,1.0,1,1.4065645933151245,367,1.0,3 +71367,7,1.0,1,1.3745650053024292,368,1.0,3 +71368,7,1.0,1,1.5755624771118164,369,0.0,3 +71369,7,0.0,1,1.7025607824325562,370,0.0,3 +71370,7,0.0,1,1.6035621166229248,371,0.0,3 +71371,7,0.0,1,1.2815660238265991,372,0.0,3 +71372,7,1.0,1,1.3545652627944946,373,0.0,3 +71373,7,1.0,1,1.9875571727752686,374,1.0,3 +71374,7,1.0,1,1.963557481765747,375,1.0,3 +71375,7,1.0,1,1.4845635890960693,376,1.0,3 +71376,7,1.0,1,2.0675578117370605,377,1.0,3 +71377,7,1.0,1,1.1645658016204834,378,1.0,3 +71378,7,1.0,1,1.4125645160675049,379,1.0,3 +71379,7,1.0,1,1.4295642375946045,380,1.0,3 +71380,7,1.0,1,1.4855635166168213,381,1.0,3 +71381,7,1.0,1,1.4635637998580933,382,0.0,3 +71382,7,0.0,1,1.449563980102539,383,0.0,3 +71383,7,0.0,1,2.020556688308716,384,1.0,3 +71384,7,0.0,1,1.3535652160644531,385,0.0,3 +71385,7,1.0,1,1.8885583877563477,386,1.0,3 +71386,7,0.0,1,2.016556739807129,387,0.0,3 +71387,7,1.0,1,1.2055659294128418,388,1.0,3 +71388,7,1.0,1,1.5565626621246338,389,1.0,3 +71389,7,1.0,1,1.4375641345977783,390,1.0,3 +71390,7,1.0,1,1.4435640573501587,391,0.0,3 +71391,7,1.0,1,1.8525588512420654,392,1.0,3 +71392,7,1.0,1,1.291566014289856,393,1.0,3 +71393,7,0.0,1,1.6985608339309692,394,0.0,3 +71394,7,1.0,1,1.4365642070770264,395,1.0,3 +71395,7,1.0,1,1.2485660314559937,396,1.0,3 +71396,7,0.0,1,1.570562481880188,397,1.0,3 +71397,7,1.0,1,1.6295616626739502,398,0.0,3 +71398,7,0.0,1,1.2475659847259521,399,0.0,3 +71399,7,0.0,1,1.7475602626800537,400,0.0,3 +71400,7,0.0,1,1.641561508178711,401,0.0,3 +71401,7,0.0,1,1.8905583620071411,402,0.0,3 +71402,7,0.0,1,1.8745585680007935,403,1.0,3 +71403,7,0.0,1,1.7995595932006836,404,1.0,3 +71404,7,0.0,1,2.169562578201294,405,0.0,3 +71405,7,1.0,1,1.2745660543441772,406,1.0,3 +71406,7,1.0,1,1.262566089630127,407,0.0,3 +71407,7,0.0,1,1.2035659551620483,408,0.0,3 +71408,7,0.0,1,1.8045594692230225,409,0.0,3 +71409,7,1.0,1,1.3585652112960815,410,0.0,3 +71410,7,0.0,1,2.0375564098358154,411,0.0,3 +71411,7,0.0,1,1.5975620746612549,412,0.0,3 +71412,7,1.0,1,1.9575574398040771,413,0.0,3 +71413,7,1.0,1,1.5245630741119385,414,1.0,3 +71414,7,1.0,1,1.4415640830993652,415,1.0,3 +71415,7,1.0,1,1.6865609884262085,416,1.0,3 +71416,7,0.0,1,1.9475576877593994,417,0.0,3 +71417,7,1.0,1,1.71056067943573,418,1.0,3 +71418,7,1.0,1,1.3715649843215942,419,0.0,3 +71419,7,1.0,1,1.4225643873214722,420,0.0,3 +71420,7,0.0,1,2.0655577182769775,421,0.0,3 +71421,7,1.0,1,1.7555601596832275,422,1.0,3 +71422,7,1.0,1,1.2965660095214844,423,1.0,3 +71423,7,1.0,1,1.3545652627944946,424,1.0,3 +71424,7,1.0,1,1.2995659112930298,425,1.0,3 +71425,7,1.0,1,1.2105659246444702,426,1.0,3 +71426,7,1.0,1,1.9965569972991943,427,1.0,3 +71427,7,1.0,1,1.6655611991882324,428,1.0,3 +71428,7,1.0,1,1.7425602674484253,429,1.0,3 +71429,7,1.0,1,1.5145632028579712,430,1.0,3 +71430,7,1.0,1,1.3105658292770386,431,1.0,3 +71431,7,1.0,1,1.3465653657913208,432,1.0,3 +71432,7,1.0,1,1.7425602674484253,433,0.0,3 +71433,7,1.0,1,1.5335628986358643,434,1.0,3 +71434,7,1.0,1,1.2285659313201904,435,1.0,3 +71435,7,1.0,1,1.3045659065246582,436,1.0,3 +71436,7,1.0,1,1.5735623836517334,437,1.0,3 +71437,7,1.0,1,1.290566086769104,438,1.0,3 +71438,7,1.0,1,1.260565996170044,439,1.0,3 +71439,7,1.0,1,1.7605600357055664,440,0.0,3 +71440,7,0.0,1,1.7165606021881104,441,0.0,3 +71441,7,1.0,1,1.6315617561340332,442,1.0,3 +71442,7,1.0,1,1.4705637693405151,443,1.0,3 +71443,7,1.0,1,1.3465653657913208,444,1.0,3 +71444,7,1.0,1,1.5125632286071777,445,0.0,3 +71445,7,1.0,1,2.2665672302246094,446,0.0,3 +71446,7,0.0,1,1.6055619716644287,447,0.0,3 +71447,7,0.0,1,1.2445659637451172,448,1.0,3 +71448,7,0.0,1,1.4065645933151245,449,0.0,3 +71449,7,0.0,1,1.2735660076141357,450,0.0,3 +71450,7,0.0,1,1.6095619201660156,451,0.0,3 +71451,7,1.0,1,1.9475576877593994,452,1.0,3 +71452,7,1.0,1,1.4635637998580933,453,1.0,3 +71453,7,1.0,1,1.4515639543533325,454,1.0,3 +71454,7,1.0,1,1.4655637741088867,455,1.0,3 +71455,7,1.0,1,1.7525601387023926,456,1.0,3 +71456,7,1.0,1,1.153565764427185,457,1.0,3 +71457,7,1.0,1,1.4465640783309937,458,1.0,3 +71458,7,1.0,1,1.2035659551620483,459,0.0,3 +71459,7,1.0,1,1.2555660009384155,460,1.0,3 +71460,7,1.0,1,1.7875597476959229,461,1.0,3 +71461,7,1.0,1,1.3035658597946167,462,1.0,3 +71462,7,1.0,1,2.0755581855773926,463,1.0,3 +71463,7,1.0,1,1.382564902305603,464,0.0,3 +71464,7,1.0,1,1.825559139251709,465,1.0,3 +71465,7,1.0,1,1.2455660104751587,466,0.0,3 +71466,7,0.0,1,2.495577812194824,467,1.0,3 +71467,7,0.0,1,1.2745660543441772,468,1.0,3 +71468,7,0.0,1,1.189565896987915,469,1.0,3 +71469,7,0.0,1,1.6655611991882324,470,1.0,3 +71470,7,0.0,1,1.3715649843215942,471,1.0,3 +71471,7,0.0,1,1.404564619064331,472,0.0,3 +71472,7,1.0,1,1.916558027267456,473,1.0,3 +71473,7,1.0,1,1.7015607357025146,474,1.0,3 +71474,7,0.0,1,1.6175618171691895,475,1.0,3 +71475,7,1.0,1,1.8855583667755127,476,1.0,3 +71476,7,0.0,1,1.7885596752166748,477,1.0,3 +71477,7,0.0,1,1.5385628938674927,478,1.0,3 +71478,7,0.0,1,2.0415565967559814,479,0.0,3 +71479,7,0.0,1,2.5025782585144043,480,0.0,3 +71480,7,1.0,1,1.5125632286071777,481,1.0,3 +71481,7,1.0,1,1.3955646753311157,482,1.0,3 +71482,7,1.0,1,1.2795660495758057,483,1.0,3 +71483,7,1.0,1,1.18656587600708,484,1.0,3 +71484,7,1.0,1,1.3895647525787354,485,1.0,3 +71485,7,1.0,1,1.313565731048584,486,1.0,3 +71486,7,1.0,1,1.339565396308899,487,0.0,3 +71487,7,0.0,1,1.823559284210205,488,1.0,3 +71488,7,0.0,1,1.4235643148422241,489,1.0,3 +71489,7,0.0,1,1.5315629243850708,490,0.0,3 +71490,7,0.0,1,1.3905647993087769,491,0.0,3 +71491,7,0.0,1,2.0945591926574707,492,0.0,3 +71492,7,1.0,1,1.3655650615692139,493,1.0,3 +71493,7,1.0,1,1.2525659799575806,494,0.0,3 +71494,7,0.0,1,1.4735636711120605,495,1.0,3 +71495,7,0.0,1,1.434564232826233,496,0.0,3 +71496,7,1.0,1,1.5675625801086426,497,1.0,3 +71497,7,1.0,1,1.3895647525787354,498,1.0,3 +71498,7,1.0,1,1.259566068649292,499,0.0,3 +71499,7,0.0,1,1.9815571308135986,500,0.0,3 +71500,7,1.0,2,1.591562271118164,1,0.0,3 +71501,7,1.0,2,1.6095619201660156,2,1.0,3 +71502,7,0.0,2,1.3155657052993774,3,0.0,3 +71503,7,0.0,2,1.2775660753250122,4,0.0,3 +71504,7,1.0,2,1.662561297416687,5,1.0,3 +71505,7,1.0,2,1.3805649280548096,6,1.0,3 +71506,7,1.0,2,1.6765611171722412,7,1.0,3 +71507,7,1.0,2,1.3195656538009644,8,1.0,3 +71508,7,1.0,2,2.0625576972961426,9,0.0,3 +71509,7,1.0,2,1.729560375213623,10,1.0,3 +71510,7,1.0,2,1.5825623273849487,11,1.0,3 +71511,7,1.0,2,1.2975659370422363,12,1.0,3 +71512,7,1.0,2,1.3195656538009644,13,1.0,3 +71513,7,1.0,2,1.404564619064331,14,0.0,3 +71514,7,1.0,2,1.426564335823059,15,1.0,3 +71515,7,1.0,2,1.3775649070739746,16,1.0,3 +71516,7,1.0,2,1.5505627393722534,17,1.0,3 +71517,7,1.0,2,1.426564335823059,18,1.0,3 +71518,7,1.0,2,2.1025595664978027,19,1.0,3 +71519,7,1.0,2,1.5625625848770142,20,0.0,3 +71520,7,1.0,2,2.3195695877075195,21,1.0,3 +71521,7,1.0,2,1.427564263343811,22,0.0,3 +71522,7,1.0,2,1.5875623226165771,23,0.0,3 +71523,7,0.0,2,2.231565475463867,24,0.0,3 +71524,7,0.0,2,1.15656578540802,25,0.0,3 +71525,7,0.0,2,1.4505640268325806,26,0.0,3 +71526,7,1.0,2,1.2045658826828003,27,1.0,3 +71527,7,1.0,2,1.3305655717849731,28,1.0,3 +71528,7,1.0,2,1.2345659732818604,29,1.0,3 +71529,7,1.0,2,1.250566005706787,30,1.0,3 +71530,7,1.0,2,1.3815648555755615,31,0.0,3 +71531,7,0.0,2,1.5855622291564941,32,1.0,3 +71532,7,0.0,2,1.2065658569335938,33,1.0,3 +71533,7,0.0,2,1.4425641298294067,34,0.0,3 +71534,7,0.0,2,1.9295578002929688,35,1.0,3 +71535,7,0.0,2,1.474563717842102,36,0.0,3 +71536,7,0.0,2,1.8485589027404785,37,0.0,3 +71537,7,1.0,2,1.7165606021881104,38,1.0,3 +71538,7,1.0,2,1.3525652885437012,39,1.0,3 +71539,7,1.0,2,1.1705658435821533,40,1.0,3 +71540,7,1.0,2,1.3245656490325928,41,1.0,3 +71541,7,1.0,2,1.3455653190612793,42,0.0,3 +71542,7,0.0,2,1.2685660123825073,43,0.0,3 +71543,7,1.0,2,1.731560468673706,44,0.0,3 +71544,7,0.0,2,1.8395590782165527,45,1.0,3 +71545,7,0.0,2,1.2415659427642822,46,1.0,3 +71546,7,0.0,2,1.1075657606124878,47,1.0,3 +71547,7,0.0,2,1.5305629968643188,48,1.0,3 +71548,7,0.0,2,1.3215656280517578,49,1.0,3 +71549,7,0.0,2,1.4675637483596802,50,1.0,3 +71550,7,0.0,2,1.5315629243850708,51,0.0,3 +71551,7,0.0,2,1.1575658321380615,52,0.0,3 +71552,7,1.0,2,1.7025607824325562,53,1.0,3 +71553,7,1.0,2,1.7925596237182617,54,1.0,3 +71554,7,1.0,2,1.5575625896453857,55,0.0,3 +71555,7,1.0,2,2.0215566158294678,56,1.0,3 +71556,7,1.0,2,1.6605613231658936,57,1.0,3 +71557,7,1.0,2,1.2615660429000854,58,0.0,3 +71558,7,1.0,2,1.4295642375946045,59,1.0,3 +71559,7,0.0,2,1.7825597524642944,60,0.0,3 +71560,7,0.0,2,1.5135631561279297,61,0.0,3 +71561,7,1.0,2,1.5615625381469727,62,0.0,3 +71562,7,1.0,2,2.198564052581787,63,0.0,3 +71563,7,1.0,2,1.8705586194992065,64,0.0,3 +71564,7,0.0,2,2.428574562072754,65,0.0,3 +71565,7,1.0,2,1.5305629968643188,66,1.0,3 +71566,7,1.0,2,1.4835635423660278,67,1.0,3 +71567,7,1.0,2,1.3995646238327026,68,0.0,3 +71568,7,1.0,2,2.1365609169006348,69,0.0,3 +71569,7,0.0,2,1.6635613441467285,70,0.0,3 +71570,7,1.0,2,1.4515639543533325,71,1.0,3 +71571,7,1.0,2,1.2485660314559937,72,1.0,3 +71572,7,1.0,2,1.9355578422546387,73,0.0,3 +71573,7,1.0,2,1.4365642070770264,74,0.0,3 +71574,7,0.0,2,1.6055619716644287,75,1.0,3 +71575,7,0.0,2,1.2725660800933838,76,0.0,3 +71576,7,0.0,2,1.2725660800933838,77,1.0,3 +71577,7,0.0,2,1.5945621728897095,78,0.0,3 +71578,7,1.0,2,1.7125606536865234,79,1.0,3 +71579,7,1.0,2,1.781559705734253,80,0.0,3 +71580,7,0.0,2,1.4455640316009521,81,0.0,3 +71581,7,1.0,2,1.2755661010742188,82,1.0,3 +71582,7,1.0,2,1.7275605201721191,83,0.0,3 +71583,7,1.0,2,1.2995659112930298,84,0.0,3 +71584,7,0.0,2,1.4395641088485718,85,1.0,3 +71585,7,0.0,2,1.1815658807754517,86,1.0,3 +71586,7,0.0,2,1.549562692642212,87,1.0,3 +71587,7,0.0,2,1.5625625848770142,88,0.0,3 +71588,7,0.0,2,1.2895660400390625,89,0.0,3 +71589,7,0.0,2,1.7485601902008057,90,0.0,3 +71590,7,0.0,2,1.452564001083374,91,1.0,3 +71591,7,0.0,2,1.3475652933120728,92,0.0,3 +71592,7,1.0,2,1.2805660963058472,93,0.0,3 +71593,7,0.0,2,1.401564598083496,94,1.0,3 +71594,7,0.0,2,1.2995659112930298,95,0.0,3 +71595,7,0.0,2,2.2845678329467773,96,0.0,3 +71596,7,0.0,2,1.9345577955245972,97,1.0,3 +71597,7,0.0,2,1.9775571823120117,98,1.0,3 +71598,7,0.0,2,1.262566089630127,99,0.0,3 +71599,7,0.0,2,1.232565999031067,100,0.0,3 +71600,7,1.0,2,1.522563099861145,101,1.0,3 +71601,7,1.0,2,1.4005646705627441,102,1.0,3 +71602,7,1.0,2,1.7895596027374268,103,0.0,3 +71603,7,0.0,2,1.6085619926452637,104,1.0,3 +71604,7,0.0,2,1.1785658597946167,105,0.0,3 +71605,7,1.0,2,1.33456552028656,106,1.0,3 +71606,7,1.0,2,1.9335577487945557,107,0.0,3 +71607,7,1.0,2,1.7725598812103271,108,1.0,3 +71608,7,1.0,2,1.3655650615692139,109,1.0,3 +71609,7,1.0,2,1.6765611171722412,110,0.0,3 +71610,7,0.0,2,2.155561923980713,111,1.0,3 +71611,7,0.0,2,1.5215630531311035,112,0.0,3 +71612,7,1.0,2,1.500563383102417,113,1.0,3 +71613,7,0.0,2,1.3185657262802124,114,0.0,3 +71614,7,1.0,2,1.2755661010742188,115,1.0,3 +71615,7,1.0,2,1.3075658082962036,116,1.0,3 +71616,7,1.0,2,1.196565866470337,117,1.0,3 +71617,7,1.0,2,1.2475659847259521,118,1.0,3 +71618,7,1.0,2,1.7645599842071533,119,0.0,3 +71619,7,0.0,2,1.361565113067627,120,1.0,3 +71620,7,0.0,2,1.4165644645690918,121,0.0,3 +71621,7,0.0,2,1.3855648040771484,122,0.0,3 +71622,7,1.0,2,1.641561508178711,123,1.0,3 +71623,7,1.0,2,1.1975659132003784,124,1.0,3 +71624,7,1.0,2,1.2655659914016724,125,1.0,3 +71625,7,1.0,2,1.404564619064331,126,0.0,3 +71626,7,0.0,2,1.3985646963119507,127,1.0,3 +71627,7,0.0,2,1.448564052581787,128,0.0,3 +71628,7,1.0,2,1.4155644178390503,129,0.0,3 +71629,7,0.0,2,1.8445589542388916,130,0.0,3 +71630,7,0.0,2,1.829559087753296,131,0.0,3 +71631,7,1.0,2,2.416574001312256,132,1.0,3 +71632,7,1.0,2,1.775559902191162,133,0.0,3 +71633,7,1.0,2,1.541562795639038,134,0.0,3 +71634,7,1.0,2,2.2635669708251953,135,1.0,3 +71635,7,1.0,2,1.614561915397644,136,0.0,3 +71636,7,0.0,2,2.3615715503692627,137,1.0,3 +71637,7,0.0,2,1.2085659503936768,138,0.0,3 +71638,7,1.0,2,1.3205657005310059,139,1.0,3 +71639,7,1.0,2,1.405564546585083,140,0.0,3 +71640,7,0.0,2,1.6555614471435547,141,0.0,3 +71641,7,1.0,2,1.781559705734253,142,1.0,3 +71642,7,1.0,2,1.4415640830993652,143,0.0,3 +71643,7,1.0,2,1.257565975189209,144,0.0,3 +71644,7,1.0,2,1.775559902191162,145,1.0,3 +71645,7,1.0,2,1.3255655765533447,146,1.0,3 +71646,7,1.0,2,1.54856276512146,147,1.0,3 +71647,7,1.0,2,1.5375628471374512,148,0.0,3 +71648,7,1.0,2,1.2975659370422363,149,0.0,3 +71649,7,1.0,2,1.479563593864441,150,0.0,3 +71650,7,1.0,2,1.497563362121582,151,1.0,3 +71651,7,1.0,2,1.965557336807251,152,0.0,3 +71652,7,1.0,2,1.3295655250549316,153,0.0,3 +71653,7,0.0,2,2.181563138961792,154,0.0,3 +71654,7,0.0,2,1.453563928604126,155,0.0,3 +71655,7,0.0,2,1.6985608339309692,156,1.0,3 +71656,7,0.0,2,1.1435657739639282,157,1.0,3 +71657,7,0.0,2,1.589562177658081,158,1.0,3 +71658,7,0.0,2,1.6745611429214478,159,1.0,3 +71659,7,0.0,2,1.3105658292770386,160,1.0,3 +71660,7,0.0,2,1.2995659112930298,161,1.0,3 +71661,7,0.0,2,1.259566068649292,162,0.0,3 +71662,7,0.0,2,1.19256591796875,163,0.0,3 +71663,7,1.0,2,1.6155619621276855,164,1.0,3 +71664,7,1.0,2,1.3545652627944946,165,1.0,3 +71665,7,1.0,2,1.317565679550171,166,1.0,3 +71666,7,1.0,2,1.3105658292770386,167,0.0,3 +71667,7,1.0,2,1.4765636920928955,168,0.0,3 +71668,7,0.0,2,1.7625600099563599,169,0.0,3 +71669,7,1.0,2,1.7035608291625977,170,1.0,3 +71670,7,1.0,2,1.3905647993087769,171,1.0,3 +71671,7,1.0,2,1.2665660381317139,172,1.0,3 +71672,7,1.0,2,1.3845648765563965,173,0.0,3 +71673,7,1.0,2,1.570562481880188,174,1.0,3 +71674,7,1.0,2,1.4215643405914307,175,1.0,3 +71675,7,1.0,2,1.3145657777786255,176,0.0,3 +71676,7,0.0,2,2.5515804290771484,177,1.0,3 +71677,7,0.0,2,1.2425659894943237,178,0.0,3 +71678,7,1.0,2,1.8965582847595215,179,0.0,3 +71679,7,1.0,2,1.7215604782104492,180,0.0,3 +71680,7,1.0,2,1.6465615034103394,181,0.0,3 +71681,7,0.0,2,1.5205631256103516,182,1.0,3 +71682,7,0.0,2,1.5425628423690796,183,0.0,3 +71683,7,0.0,2,1.523563027381897,184,0.0,3 +71684,7,1.0,2,1.641561508178711,185,1.0,3 +71685,7,1.0,2,1.335565447807312,186,1.0,3 +71686,7,1.0,2,1.1575658321380615,187,1.0,3 +71687,7,1.0,2,1.5905622243881226,188,0.0,3 +71688,7,0.0,2,1.7725598812103271,189,0.0,3 +71689,7,1.0,2,1.7565600872039795,190,1.0,3 +71690,7,1.0,2,1.7465602159500122,191,0.0,3 +71691,7,1.0,2,1.3765649795532227,192,1.0,3 +71692,7,1.0,2,1.8595588207244873,193,1.0,3 +71693,7,1.0,2,1.1845659017562866,194,0.0,3 +71694,7,1.0,2,1.5575625896453857,195,0.0,3 +71695,7,1.0,2,1.3945647478103638,196,1.0,3 +71696,7,1.0,2,1.4555639028549194,197,0.0,3 +71697,7,1.0,2,1.6025620698928833,198,1.0,3 +71698,7,1.0,2,1.4515639543533325,199,1.0,3 +71699,7,1.0,2,1.3015658855438232,200,1.0,3 +71700,7,1.0,2,1.3255655765533447,201,1.0,3 +71701,7,1.0,2,1.317565679550171,202,1.0,3 +71702,7,1.0,2,1.4775636196136475,203,0.0,3 +71703,7,1.0,2,2.2305655479431152,204,0.0,3 +71704,7,0.0,2,1.12656569480896,205,0.0,3 +71705,7,0.0,2,1.8825584650039673,206,1.0,3 +71706,7,0.0,2,1.257565975189209,207,1.0,3 +71707,7,0.0,2,1.2385659217834473,208,0.0,3 +71708,7,0.0,2,1.3335654735565186,209,0.0,3 +71709,7,0.0,2,1.7605600357055664,210,1.0,3 +71710,7,0.0,2,1.783559799194336,211,0.0,3 +71711,7,1.0,2,1.1815658807754517,212,1.0,3 +71712,7,1.0,2,1.7015607357025146,213,1.0,3 +71713,7,0.0,2,2.0305566787719727,214,0.0,3 +71714,7,1.0,2,1.7135605812072754,215,0.0,3 +71715,7,0.0,2,1.3915647268295288,216,0.0,3 +71716,7,0.0,2,1.5355628728866577,217,0.0,3 +71717,7,0.0,2,1.4295642375946045,218,0.0,3 +71718,7,0.0,2,1.8875584602355957,219,0.0,3 +71719,7,1.0,2,1.8875584602355957,220,0.0,3 +71720,7,1.0,2,1.9995570182800293,221,0.0,3 +71721,7,1.0,2,1.637561559677124,222,1.0,3 +71722,7,1.0,2,1.3685650825500488,223,0.0,3 +71723,7,1.0,2,1.6865609884262085,224,0.0,3 +71724,7,1.0,2,2.131560802459717,225,0.0,3 +71725,7,1.0,2,1.87255859375,226,0.0,3 +71726,7,1.0,2,1.9345577955245972,227,0.0,3 +71727,7,1.0,2,1.9995570182800293,228,0.0,3 +71728,7,0.0,2,1.1575658321380615,229,0.0,3 +71729,7,1.0,2,1.969557285308838,230,0.0,3 +71730,7,1.0,2,1.6305617094039917,231,0.0,3 +71731,7,0.0,2,1.338565468788147,232,1.0,3 +71732,7,0.0,2,1.2995659112930298,233,1.0,3 +71733,7,0.0,2,1.2645660638809204,234,0.0,3 +71734,7,1.0,2,1.5865622758865356,235,0.0,3 +71735,7,0.0,2,1.4735636711120605,236,0.0,3 +71736,7,0.0,2,1.1495658159255981,237,1.0,3 +71737,7,0.0,2,2.5175788402557373,238,1.0,3 +71738,7,0.0,2,1.259566068649292,239,1.0,3 +71739,7,0.0,2,1.5805623531341553,240,0.0,3 +71740,7,0.0,2,1.549562692642212,241,1.0,3 +71741,7,0.0,2,1.9985569715499878,242,0.0,3 +71742,7,0.0,2,1.8675587177276611,243,1.0,3 +71743,7,0.0,2,1.3635650873184204,244,1.0,3 +71744,7,0.0,2,2.0405564308166504,245,0.0,3 +71745,7,0.0,2,1.1575658321380615,246,0.0,3 +71746,7,1.0,2,1.4125645160675049,247,1.0,3 +71747,7,1.0,2,1.2485660314559937,248,0.0,3 +71748,7,1.0,2,1.51956307888031,249,1.0,3 +71749,7,1.0,2,1.4935634136199951,250,1.0,3 +71750,7,1.0,2,1.6155619621276855,251,1.0,3 +71751,7,1.0,2,1.8145593404769897,252,1.0,3 +71752,7,1.0,2,1.599562168121338,253,1.0,3 +71753,7,1.0,2,1.4925634860992432,254,0.0,3 +71754,7,1.0,2,1.8115594387054443,255,1.0,3 +71755,7,0.0,2,1.7455601692199707,256,1.0,3 +71756,7,1.0,2,1.6785610914230347,257,1.0,3 +71757,7,0.0,2,1.1785658597946167,258,0.0,3 +71758,7,1.0,2,1.5505627393722534,259,1.0,3 +71759,7,1.0,2,1.7725598812103271,260,0.0,3 +71760,7,0.0,2,1.618561863899231,261,0.0,3 +71761,7,1.0,2,2.182563304901123,262,0.0,3 +71762,7,1.0,2,1.284566044807434,263,0.0,3 +71763,7,0.0,2,1.6275618076324463,264,0.0,3 +71764,7,1.0,2,1.2785661220550537,265,1.0,3 +71765,7,1.0,2,1.7345603704452515,266,1.0,3 +71766,7,1.0,2,2.0535571575164795,267,1.0,3 +71767,7,0.0,2,1.2025659084320068,268,1.0,3 +71768,7,0.0,2,1.3225656747817993,269,1.0,3 +71769,7,1.0,2,1.9545575380325317,270,1.0,3 +71770,7,0.0,2,1.7195606231689453,271,1.0,3 +71771,7,0.0,2,1.193565845489502,272,0.0,3 +71772,7,1.0,2,1.2485660314559937,273,1.0,3 +71773,7,1.0,2,1.2445659637451172,274,1.0,3 +71774,7,1.0,2,1.5695624351501465,275,1.0,3 +71775,7,1.0,2,1.2735660076141357,276,0.0,3 +71776,7,0.0,2,1.3415653705596924,277,0.0,3 +71777,7,0.0,2,1.5155631303787231,278,0.0,3 +71778,7,1.0,2,1.430564284324646,279,1.0,3 +71779,7,1.0,2,1.3335654735565186,280,0.0,3 +71780,7,0.0,2,1.7475602626800537,281,1.0,3 +71781,7,0.0,2,1.5565626621246338,282,0.0,3 +71782,7,1.0,2,1.3895647525787354,283,0.0,3 +71783,7,0.0,2,1.5655624866485596,284,1.0,3 +71784,7,0.0,2,1.4025646448135376,285,0.0,3 +71785,7,0.0,2,1.3065658807754517,286,1.0,3 +71786,7,0.0,2,1.4545639753341675,287,1.0,3 +71787,7,0.0,2,1.3885648250579834,288,1.0,3 +71788,7,0.0,2,1.2005659341812134,289,0.0,3 +71789,7,0.0,2,1.471563696861267,290,1.0,3 +71790,7,0.0,2,1.2615660429000854,291,1.0,3 +71791,7,0.0,2,1.6345616579055786,292,0.0,3 +71792,7,0.0,2,1.5825623273849487,293,0.0,3 +71793,7,0.0,2,1.1885658502578735,294,0.0,3 +71794,7,0.0,2,1.522563099861145,295,0.0,3 +71795,7,1.0,2,1.9555575847625732,296,1.0,3 +71796,7,1.0,2,1.823559284210205,297,1.0,3 +71797,7,1.0,2,1.3335654735565186,298,1.0,3 +71798,7,1.0,2,1.3785649538040161,299,0.0,3 +71799,7,1.0,2,1.9375576972961426,300,0.0,3 +71800,7,1.0,2,1.5335628986358643,301,0.0,3 +71801,7,0.0,2,1.2465660572052002,302,1.0,3 +71802,7,0.0,2,1.574562430381775,303,0.0,3 +71803,7,0.0,2,1.7265604734420776,304,1.0,3 +71804,7,0.0,2,1.356565237045288,305,1.0,3 +71805,7,0.0,2,1.2385659217834473,306,1.0,3 +71806,7,1.0,2,1.4295642375946045,307,1.0,3 +71807,7,1.0,2,1.3305655717849731,308,0.0,3 +71808,7,0.0,2,1.4915634393692017,309,0.0,3 +71809,7,0.0,2,2.17356276512146,310,1.0,3 +71810,7,0.0,2,1.313565731048584,311,0.0,3 +71811,7,1.0,2,1.8305591344833374,312,0.0,3 +71812,7,1.0,2,1.4945634603500366,313,0.0,3 +71813,7,0.0,2,1.4125645160675049,314,0.0,3 +71814,7,1.0,2,1.3325655460357666,315,0.0,3 +71815,7,0.0,2,1.6155619621276855,316,1.0,3 +71816,7,0.0,2,1.5625625848770142,317,0.0,3 +71817,7,0.0,2,1.8395590782165527,318,0.0,3 +71818,7,0.0,2,1.427564263343811,319,1.0,3 +71819,7,0.0,2,1.1175657510757446,320,1.0,3 +71820,7,0.0,2,1.3025659322738647,321,1.0,3 +71821,7,0.0,2,1.3545652627944946,322,0.0,3 +71822,7,0.0,2,1.3505653142929077,323,0.0,3 +71823,7,0.0,2,1.5065633058547974,324,0.0,3 +71824,7,0.0,2,1.8605587482452393,325,1.0,3 +71825,7,0.0,2,1.1735658645629883,326,0.0,3 +71826,7,0.0,2,1.4295642375946045,327,1.0,3 +71827,7,1.0,2,1.19856595993042,328,0.0,3 +71828,7,0.0,2,1.8055593967437744,329,0.0,3 +71829,7,1.0,2,1.6135618686676025,330,0.0,3 +71830,7,0.0,2,1.4425641298294067,331,1.0,3 +71831,7,0.0,2,1.2395659685134888,332,1.0,3 +71832,7,0.0,2,1.1825659275054932,333,0.0,3 +71833,7,1.0,2,1.401564598083496,334,1.0,3 +71834,7,0.0,2,1.7615599632263184,335,1.0,3 +71835,7,1.0,2,2.0525569915771484,336,0.0,3 +71836,7,0.0,2,1.2055659294128418,337,0.0,3 +71837,7,0.0,2,1.8195593357086182,338,0.0,3 +71838,7,0.0,2,1.4135644435882568,339,1.0,3 +71839,7,0.0,2,2.1045594215393066,340,1.0,3 +71840,7,0.0,2,1.1915658712387085,341,0.0,3 +71841,7,0.0,2,1.5405628681182861,342,1.0,3 +71842,7,0.0,2,1.3755649328231812,343,0.0,3 +71843,7,0.0,2,2.0285565853118896,344,0.0,3 +71844,7,0.0,2,1.1825659275054932,345,0.0,3 +71845,7,0.0,2,1.7375602722167969,346,1.0,3 +71846,7,0.0,2,1.4515639543533325,347,0.0,3 +71847,7,0.0,2,1.921557903289795,348,1.0,3 +71848,7,0.0,2,1.3625651597976685,349,0.0,3 +71849,7,1.0,2,1.4915634393692017,350,1.0,3 +71850,7,1.0,2,1.3935647010803223,351,0.0,3 +71851,7,0.0,2,1.823559284210205,352,0.0,3 +71852,7,1.0,2,1.8135592937469482,353,0.0,3 +71853,7,1.0,2,1.6615612506866455,354,1.0,3 +71854,7,1.0,2,1.3065658807754517,355,1.0,3 +71855,7,1.0,2,1.4215643405914307,356,1.0,3 +71856,7,1.0,2,1.189565896987915,357,1.0,3 +71857,7,1.0,2,1.6325616836547852,358,1.0,3 +71858,7,1.0,2,1.3035658597946167,359,1.0,3 +71859,7,1.0,2,1.3285655975341797,360,1.0,3 +71860,7,1.0,2,1.2155659198760986,361,1.0,3 +71861,7,1.0,2,1.6085619926452637,362,0.0,3 +71862,7,1.0,2,1.3965647220611572,363,0.0,3 +71863,7,0.0,2,1.1025657653808594,364,0.0,3 +71864,7,0.0,2,1.4665638208389282,365,1.0,3 +71865,7,0.0,2,1.4005646705627441,366,1.0,3 +71866,7,0.0,2,1.312565803527832,367,1.0,3 +71867,7,0.0,2,1.2965660095214844,368,1.0,3 +71868,7,0.0,2,1.4995633363723755,369,0.0,3 +71869,7,0.0,2,1.7895596027374268,370,0.0,3 +71870,7,0.0,2,2.2685670852661133,371,0.0,3 +71871,7,1.0,2,1.2655659914016724,372,1.0,3 +71872,7,1.0,2,1.3295655250549316,373,1.0,3 +71873,7,1.0,2,1.5075632333755493,374,0.0,3 +71874,7,1.0,2,1.545562744140625,375,0.0,3 +71875,7,0.0,2,2.206564426422119,376,0.0,3 +71876,7,0.0,2,2.3235697746276855,377,0.0,3 +71877,7,0.0,2,1.431564211845398,378,1.0,3 +71878,7,0.0,2,1.387564778327942,379,1.0,3 +71879,7,0.0,2,1.4335641860961914,380,0.0,3 +71880,7,1.0,2,2.018556594848633,381,0.0,3 +71881,7,0.0,2,1.7055606842041016,382,0.0,3 +71882,7,1.0,2,1.312565803527832,383,1.0,3 +71883,7,1.0,2,1.688560962677002,384,0.0,3 +71884,7,0.0,2,1.4165644645690918,385,0.0,3 +71885,7,0.0,2,1.574562430381775,386,0.0,3 +71886,7,1.0,2,2.023556709289551,387,0.0,3 +71887,7,1.0,2,2.0645575523376465,388,1.0,3 +71888,7,1.0,2,1.312565803527832,389,1.0,3 +71889,7,1.0,2,1.4035645723342896,390,1.0,3 +71890,7,1.0,2,1.253566026687622,391,0.0,3 +71891,7,1.0,2,2.210564613342285,392,1.0,3 +71892,7,1.0,2,1.7655599117279053,393,1.0,3 +71893,7,1.0,2,1.3305655717849731,394,1.0,3 +71894,7,1.0,2,1.6605613231658936,395,0.0,3 +71895,7,1.0,2,1.49656343460083,396,1.0,3 +71896,7,1.0,2,2.221565008163452,397,0.0,3 +71897,7,1.0,2,1.802559494972229,398,1.0,3 +71898,7,1.0,2,1.3855648040771484,399,0.0,3 +71899,7,1.0,2,1.2485660314559937,400,1.0,3 +71900,7,1.0,2,1.457563877105713,401,0.0,3 +71901,7,0.0,2,1.589562177658081,402,1.0,3 +71902,7,0.0,2,1.5405628681182861,403,1.0,3 +71903,7,0.0,2,1.16256582736969,404,0.0,3 +71904,7,1.0,2,1.666561245918274,405,1.0,3 +71905,7,1.0,2,1.5715625286102295,406,0.0,3 +71906,7,0.0,2,2.0715579986572266,407,0.0,3 +71907,7,1.0,2,1.776559829711914,408,1.0,3 +71908,7,1.0,2,1.3695650100708008,409,0.0,3 +71909,7,1.0,2,1.5605626106262207,410,0.0,3 +71910,7,1.0,2,1.522563099861145,411,0.0,3 +71911,7,1.0,2,1.6505614519119263,412,0.0,3 +71912,7,0.0,2,1.309565782546997,413,0.0,3 +71913,7,0.0,2,1.2005659341812134,414,0.0,3 +71914,7,0.0,2,1.294566035270691,415,0.0,3 +71915,7,1.0,2,1.6125619411468506,416,1.0,3 +71916,7,0.0,2,1.6965608596801758,417,0.0,3 +71917,7,1.0,2,1.6645612716674805,418,0.0,3 +71918,7,1.0,2,2.0625576972961426,419,1.0,3 +71919,7,1.0,2,1.644561529159546,420,0.0,3 +71920,7,0.0,2,1.7575600147247314,421,0.0,3 +71921,7,0.0,2,1.4285643100738525,422,0.0,3 +71922,7,1.0,2,1.5565626621246338,423,1.0,3 +71923,7,1.0,2,1.4115644693374634,424,0.0,3 +71924,7,1.0,2,1.798559546470642,425,1.0,3 +71925,7,1.0,2,1.360565185546875,426,1.0,3 +71926,7,1.0,2,1.263566017150879,427,1.0,3 +71927,7,1.0,2,1.3655650615692139,428,1.0,3 +71928,7,1.0,2,1.4075645208358765,429,0.0,3 +71929,7,1.0,2,1.7705599069595337,430,0.0,3 +71930,7,0.0,2,1.4235643148422241,431,0.0,3 +71931,7,1.0,2,2.427574634552002,432,0.0,3 +71932,7,1.0,2,1.549562692642212,433,1.0,3 +71933,7,0.0,2,1.6975607872009277,434,0.0,3 +71934,7,1.0,2,1.2475659847259521,435,1.0,3 +71935,7,1.0,2,1.2085659503936768,436,0.0,3 +71936,7,1.0,2,2.138561248779297,437,0.0,3 +71937,7,0.0,2,1.4455640316009521,438,1.0,3 +71938,7,0.0,2,1.6575613021850586,439,1.0,3 +71939,7,0.0,2,1.1575658321380615,440,0.0,3 +71940,7,0.0,2,1.3855648040771484,441,1.0,3 +71941,7,0.0,2,1.2985659837722778,442,0.0,3 +71942,7,0.0,2,1.3895647525787354,443,1.0,3 +71943,7,0.0,2,1.4815635681152344,444,0.0,3 +71944,7,0.0,2,1.8355591297149658,445,1.0,3 +71945,7,0.0,2,1.3545652627944946,446,0.0,3 +71946,7,1.0,2,1.683561086654663,447,1.0,3 +71947,7,1.0,2,1.3675650358200073,448,1.0,3 +71948,7,1.0,2,1.4355641603469849,449,1.0,3 +71949,7,0.0,2,1.4815635681152344,450,0.0,3 +71950,7,1.0,2,1.3705650568008423,451,1.0,3 +71951,7,1.0,2,1.4815635681152344,452,1.0,3 +71952,7,1.0,2,1.3525652885437012,453,0.0,3 +71953,7,0.0,2,2.484577178955078,454,1.0,3 +71954,7,0.0,2,1.3545652627944946,455,0.0,3 +71955,7,0.0,2,1.3905647993087769,456,0.0,3 +71956,7,1.0,2,2.020556688308716,457,0.0,3 +71957,7,0.0,2,1.6385616064071655,458,1.0,3 +71958,7,0.0,2,1.6155619621276855,459,1.0,3 +71959,7,0.0,2,1.4955633878707886,460,0.0,3 +71960,7,1.0,2,1.6755611896514893,461,0.0,3 +71961,7,1.0,2,2.3025689125061035,462,0.0,3 +71962,7,0.0,2,1.4425641298294067,463,0.0,3 +71963,7,0.0,2,1.3245656490325928,464,1.0,3 +71964,7,0.0,2,1.2245659828186035,465,1.0,3 +71965,7,0.0,2,1.379564881324768,466,0.0,3 +71966,7,1.0,2,1.382564902305603,467,0.0,3 +71967,7,0.0,2,2.0345563888549805,468,1.0,3 +71968,7,0.0,2,1.7305604219436646,469,0.0,3 +71969,7,0.0,2,1.8005595207214355,470,1.0,3 +71970,7,0.0,2,1.408564567565918,471,0.0,3 +71971,7,1.0,2,2.0365564823150635,472,1.0,3 +71972,7,1.0,2,1.5535626411437988,473,1.0,3 +71973,7,1.0,2,1.3235656023025513,474,1.0,3 +71974,7,1.0,2,1.262566089630127,475,1.0,3 +71975,7,0.0,2,1.3675650358200073,476,1.0,3 +71976,7,1.0,2,2.1005592346191406,477,1.0,3 +71977,7,1.0,2,1.5135631561279297,478,0.0,3 +71978,7,1.0,2,1.6765611171722412,479,1.0,3 +71979,7,0.0,2,1.1585657596588135,480,0.0,3 +71980,7,1.0,2,1.9535574913024902,481,0.0,3 +71981,7,0.0,2,1.6135618686676025,482,0.0,3 +71982,7,1.0,2,2.40657377243042,483,0.0,3 +71983,7,0.0,2,1.4105645418167114,484,1.0,3 +71984,7,0.0,2,1.6045620441436768,485,0.0,3 +71985,7,0.0,2,2.0535571575164795,486,0.0,3 +71986,7,1.0,2,1.4825636148452759,487,1.0,3 +71987,7,1.0,2,1.404564619064331,488,0.0,3 +71988,7,0.0,2,1.1695657968521118,489,1.0,3 +71989,7,0.0,2,1.3305655717849731,490,0.0,3 +71990,7,1.0,2,1.3035658597946167,491,1.0,3 +71991,7,1.0,2,1.1835658550262451,492,1.0,3 +71992,7,1.0,2,1.6805610656738281,493,0.0,3 +71993,7,1.0,2,2.170562744140625,494,0.0,3 +71994,7,0.0,2,1.666561245918274,495,0.0,3 +71995,7,1.0,2,1.3925647735595703,496,0.0,3 +71996,7,1.0,2,2.3555712699890137,497,1.0,3 +71997,7,1.0,2,1.5815622806549072,498,0.0,3 +71998,7,0.0,2,1.3025659322738647,499,1.0,3 +71999,7,0.0,2,1.2375659942626953,500,0.0,3 +72000,8,1.0,0,1.8894145488739014,1,1.0,3 +72001,8,0.0,0,1.8884145021438599,2,0.0,3 +72002,8,1.0,0,1.2464215755462646,3,0.0,3 +72003,8,0.0,0,1.3074216842651367,4,0.0,3 +72004,8,0.0,0,1.7354164123535156,5,0.0,3 +72005,8,0.0,0,1.3884209394454956,6,0.0,3 +72006,8,0.0,0,1.6364177465438843,7,0.0,3 +72007,8,0.0,0,1.2674216032028198,8,0.0,3 +72008,8,0.0,0,1.161421298980713,9,0.0,3 +72009,8,0.0,0,1.3244216442108154,10,0.0,3 +72010,8,0.0,0,1.215421438217163,11,1.0,3 +72011,8,1.0,0,1.4314203262329102,12,1.0,3 +72012,8,1.0,0,1.675417184829712,13,1.0,3 +72013,8,0.0,0,1.8344151973724365,14,0.0,3 +72014,8,1.0,0,1.3274216651916504,15,1.0,3 +72015,8,1.0,0,1.438420295715332,16,1.0,3 +72016,8,1.0,0,1.2964216470718384,17,1.0,3 +72017,8,1.0,0,1.4144206047058105,18,1.0,3 +72018,8,1.0,0,1.3334215879440308,19,1.0,3 +72019,8,1.0,0,1.292421579360962,20,1.0,3 +72020,8,1.0,0,1.5374189615249634,21,1.0,3 +72021,8,1.0,0,1.994413137435913,22,1.0,3 +72022,8,1.0,0,1.6544175148010254,23,1.0,3 +72023,8,1.0,0,1.6644173860549927,24,1.0,3 +72024,8,1.0,0,1.4374202489852905,25,1.0,3 +72025,8,1.0,0,1.4794197082519531,26,1.0,3 +72026,8,1.0,0,1.24942147731781,27,1.0,3 +72027,8,1.0,0,1.3674211502075195,28,1.0,3 +72028,8,1.0,0,1.5164192914962769,29,1.0,3 +72029,8,1.0,0,1.5394189357757568,30,1.0,3 +72030,8,1.0,0,1.8564149141311646,31,0.0,3 +72031,8,0.0,0,1.531419038772583,32,0.0,3 +72032,8,0.0,0,1.6844171285629272,33,0.0,3 +72033,8,1.0,0,1.8414151668548584,34,1.0,3 +72034,8,1.0,0,1.4564200639724731,35,1.0,3 +72035,8,1.0,0,1.3014216423034668,36,1.0,3 +72036,8,1.0,0,1.3544213771820068,37,1.0,3 +72037,8,1.0,0,1.7614161968231201,38,1.0,3 +72038,8,1.0,0,1.6474175453186035,39,1.0,3 +72039,8,1.0,0,1.7324165105819702,40,1.0,3 +72040,8,1.0,0,1.2984216213226318,41,1.0,3 +72041,8,1.0,0,2.255420207977295,42,1.0,3 +72042,8,1.0,0,1.5434188842773438,43,1.0,3 +72043,8,1.0,0,1.6554174423217773,44,1.0,3 +72044,8,1.0,0,1.417420506477356,45,1.0,3 +72045,8,1.0,0,1.3564213514328003,46,0.0,3 +72046,8,0.0,0,1.4084206819534302,47,0.0,3 +72047,8,1.0,0,1.9134142398834229,48,0.0,3 +72048,8,0.0,0,1.2804216146469116,49,1.0,3 +72049,8,0.0,0,1.395420789718628,50,0.0,3 +72050,8,0.0,0,1.9624135494232178,51,0.0,3 +72051,8,0.0,0,1.161421298980713,52,0.0,3 +72052,8,0.0,0,2.1324145793914795,53,1.0,3 +72053,8,0.0,0,1.80741548538208,54,0.0,3 +72054,8,0.0,0,1.6804171800613403,55,0.0,3 +72055,8,0.0,0,1.3074216842651367,56,0.0,3 +72056,8,0.0,0,1.4264204502105713,57,0.0,3 +72057,8,0.0,0,1.7824158668518066,58,0.0,3 +72058,8,0.0,0,2.3584251403808594,59,0.0,3 +72059,8,0.0,0,1.251421570777893,60,0.0,3 +72060,8,1.0,0,1.465419888496399,61,0.0,3 +72061,8,0.0,0,1.2234214544296265,62,0.0,3 +72062,8,0.0,0,2.264420747756958,63,0.0,3 +72063,8,0.0,0,1.8944144248962402,64,0.0,3 +72064,8,1.0,0,1.4104206562042236,65,1.0,3 +72065,8,1.0,0,2.1024131774902344,66,0.0,3 +72066,8,1.0,0,2.288421869277954,67,1.0,3 +72067,8,1.0,0,1.788415789604187,68,1.0,3 +72068,8,1.0,0,1.2734215259552002,69,1.0,3 +72069,8,1.0,0,1.6554174423217773,70,1.0,3 +72070,8,1.0,0,1.9744133949279785,71,1.0,3 +72071,8,1.0,0,1.8444150686264038,72,1.0,3 +72072,8,1.0,0,1.8714146614074707,73,1.0,3 +72073,8,1.0,0,1.8044155836105347,74,0.0,3 +72074,8,0.0,0,1.4534200429916382,75,0.0,3 +72075,8,0.0,0,1.6094181537628174,76,0.0,3 +72076,8,1.0,0,1.28542160987854,77,0.0,3 +72077,8,1.0,0,1.4264204502105713,78,1.0,3 +72078,8,1.0,0,2.0304126739501953,79,1.0,3 +72079,8,1.0,0,1.487419605255127,80,1.0,3 +72080,8,1.0,0,2.3514246940612793,81,1.0,3 +72081,8,1.0,0,1.2134214639663696,82,1.0,3 +72082,8,1.0,0,1.3574212789535522,83,1.0,3 +72083,8,1.0,0,1.6764172315597534,84,1.0,3 +72084,8,1.0,0,1.3184216022491455,85,1.0,3 +72085,8,1.0,0,1.365421175956726,86,1.0,3 +72086,8,1.0,0,1.8024156093597412,87,1.0,3 +72087,8,1.0,0,1.5474188327789307,88,0.0,3 +72088,8,1.0,0,1.8294153213500977,89,1.0,3 +72089,8,1.0,0,1.630417823791504,90,0.0,3 +72090,8,0.0,0,2.1734166145324707,91,0.0,3 +72091,8,0.0,0,2.0684123039245605,92,0.0,3 +72092,8,0.0,0,1.3074216842651367,93,0.0,3 +72093,8,1.0,0,1.288421630859375,94,1.0,3 +72094,8,1.0,0,1.759416103363037,95,1.0,3 +72095,8,1.0,0,1.3884209394454956,96,1.0,3 +72096,8,1.0,0,1.8184154033660889,97,1.0,3 +72097,8,1.0,0,1.5584187507629395,98,1.0,3 +72098,8,1.0,0,1.3554213047027588,99,1.0,3 +72099,8,1.0,0,1.3734210729599,100,0.0,3 +72100,8,1.0,0,1.769416093826294,101,1.0,3 +72101,8,1.0,0,1.9814133644104004,102,0.0,3 +72102,8,0.0,0,1.575418472290039,103,0.0,3 +72103,8,1.0,0,1.4214204549789429,104,1.0,3 +72104,8,1.0,0,1.5424189567565918,105,0.0,3 +72105,8,0.0,0,1.9114141464233398,106,0.0,3 +72106,8,0.0,0,1.6354176998138428,107,0.0,3 +72107,8,1.0,0,2.222418785095215,108,0.0,3 +72108,8,0.0,0,1.2574214935302734,109,0.0,3 +72109,8,0.0,0,1.9924131631851196,110,1.0,3 +72110,8,0.0,0,1.4064207077026367,111,0.0,3 +72111,8,1.0,0,1.7464163303375244,112,1.0,3 +72112,8,1.0,0,1.9864132404327393,113,1.0,3 +72113,8,1.0,0,2.521432876586914,114,1.0,3 +72114,8,1.0,0,1.4944195747375488,115,1.0,3 +72115,8,1.0,0,1.3774210214614868,116,1.0,3 +72116,8,1.0,0,1.2714215517044067,117,1.0,3 +72117,8,1.0,0,1.4714198112487793,118,0.0,3 +72118,8,1.0,0,1.4484201669692993,119,1.0,3 +72119,8,1.0,0,1.3374215364456177,120,0.0,3 +72120,8,1.0,0,1.5414189100265503,121,1.0,3 +72121,8,1.0,0,1.4234204292297363,122,1.0,3 +72122,8,0.0,0,1.7844158411026,123,0.0,3 +72123,8,1.0,0,1.2684215307235718,124,1.0,3 +72124,8,1.0,0,1.62241792678833,125,0.0,3 +72125,8,1.0,0,1.4544200897216797,126,0.0,3 +72126,8,1.0,0,2.1744165420532227,127,1.0,3 +72127,8,1.0,0,1.6844171285629272,128,1.0,3 +72128,8,1.0,0,1.7374165058135986,129,1.0,3 +72129,8,1.0,0,1.3804210424423218,130,1.0,3 +72130,8,1.0,0,1.2704215049743652,131,1.0,3 +72131,8,1.0,0,1.5364190340042114,132,1.0,3 +72132,8,1.0,0,1.8914144039154053,133,1.0,3 +72133,8,1.0,0,1.677417278289795,134,1.0,3 +72134,8,1.0,0,1.4524201154708862,135,1.0,3 +72135,8,1.0,0,1.6864171028137207,136,1.0,3 +72136,8,1.0,0,1.5104193687438965,137,1.0,3 +72137,8,1.0,0,2.208418130874634,138,0.0,3 +72138,8,0.0,0,1.8984143733978271,139,0.0,3 +72139,8,1.0,0,1.6514174938201904,140,1.0,3 +72140,8,1.0,0,1.3674211502075195,141,1.0,3 +72141,8,1.0,0,1.4454201459884644,142,1.0,3 +72142,8,1.0,0,1.343421459197998,143,1.0,3 +72143,8,1.0,0,2.0644121170043945,144,1.0,3 +72144,8,1.0,0,1.417420506477356,145,1.0,3 +72145,8,1.0,0,1.9364138841629028,146,1.0,3 +72146,8,1.0,0,1.2764215469360352,147,0.0,3 +72147,8,1.0,0,1.6534175872802734,148,0.0,3 +72148,8,0.0,0,1.8954143524169922,149,0.0,3 +72149,8,0.0,0,1.652417540550232,150,0.0,3 +72150,8,0.0,0,1.5724185705184937,151,0.0,3 +72151,8,1.0,0,1.4324203729629517,152,1.0,3 +72152,8,1.0,0,1.2734215259552002,153,1.0,3 +72153,8,0.0,0,1.218421459197998,154,0.0,3 +72154,8,1.0,0,2.1874170303344727,155,1.0,3 +72155,8,1.0,0,1.4994194507598877,156,1.0,3 +72156,8,1.0,0,1.6124180555343628,157,1.0,3 +72157,8,1.0,0,1.328421711921692,158,1.0,3 +72158,8,1.0,0,1.5414189100265503,159,1.0,3 +72159,8,0.0,0,1.3624212741851807,160,0.0,3 +72160,8,1.0,0,1.3324216604232788,161,1.0,3 +72161,8,1.0,0,1.4914195537567139,162,1.0,3 +72162,8,1.0,0,1.8314151763916016,163,1.0,3 +72163,8,1.0,0,1.3834209442138672,164,1.0,3 +72164,8,1.0,0,1.8494150638580322,165,1.0,3 +72165,8,0.0,0,1.4334203004837036,166,0.0,3 +72166,8,1.0,0,1.4914195537567139,167,1.0,3 +72167,8,1.0,0,1.3204216957092285,168,1.0,3 +72168,8,1.0,0,1.3074216842651367,169,0.0,3 +72169,8,1.0,0,2.0954127311706543,170,0.0,3 +72170,8,1.0,0,1.420420527458191,171,1.0,3 +72171,8,1.0,0,1.3834209442138672,172,1.0,3 +72172,8,1.0,0,1.5234191417694092,173,1.0,3 +72173,8,1.0,0,1.439420223236084,174,1.0,3 +72174,8,1.0,0,1.3934208154678345,175,1.0,3 +72175,8,1.0,0,1.1804213523864746,176,1.0,3 +72176,8,1.0,0,2.217418670654297,177,1.0,3 +72177,8,1.0,0,1.6974170207977295,178,0.0,3 +72178,8,1.0,0,1.3974207639694214,179,1.0,3 +72179,8,1.0,0,1.644417643547058,180,1.0,3 +72180,8,1.0,0,1.222421407699585,181,1.0,3 +72181,8,1.0,0,1.3744211196899414,182,1.0,3 +72182,8,1.0,0,1.4214204549789429,183,1.0,3 +72183,8,1.0,0,1.582418441772461,184,0.0,3 +72184,8,1.0,0,1.6064181327819824,185,1.0,3 +72185,8,1.0,0,1.6814172267913818,186,0.0,3 +72186,8,1.0,0,1.5284191370010376,187,1.0,3 +72187,8,1.0,0,1.5584187507629395,188,1.0,3 +72188,8,1.0,0,1.4114205837249756,189,1.0,3 +72189,8,1.0,0,1.2644215822219849,190,0.0,3 +72190,8,1.0,0,1.48341965675354,191,1.0,3 +72191,8,1.0,0,1.5024194717407227,192,1.0,3 +72192,8,1.0,0,1.575418472290039,193,1.0,3 +72193,8,1.0,0,1.2754216194152832,194,1.0,3 +72194,8,1.0,0,1.3114216327667236,195,1.0,3 +72195,8,0.0,0,1.227421522140503,196,1.0,3 +72196,8,1.0,0,1.7604161500930786,197,0.0,3 +72197,8,0.0,0,1.6204179525375366,198,0.0,3 +72198,8,1.0,0,1.288421630859375,199,1.0,3 +72199,8,1.0,0,1.700416922569275,200,1.0,3 +72200,8,1.0,0,1.5674185752868652,201,1.0,3 +72201,8,1.0,0,1.4474201202392578,202,1.0,3 +72202,8,1.0,0,2.0974130630493164,203,1.0,3 +72203,8,1.0,0,1.5234191417694092,204,0.0,3 +72204,8,1.0,0,2.0204129219055176,205,1.0,3 +72205,8,1.0,0,1.4344203472137451,206,1.0,3 +72206,8,1.0,0,1.5674185752868652,207,0.0,3 +72207,8,0.0,0,1.7354164123535156,208,1.0,3 +72208,8,0.0,0,1.4804197549819946,209,0.0,3 +72209,8,0.0,0,1.7774159908294678,210,0.0,3 +72210,8,1.0,0,1.6894171237945557,211,1.0,3 +72211,8,1.0,0,1.2744215726852417,212,1.0,3 +72212,8,1.0,0,1.369421124458313,213,1.0,3 +72213,8,1.0,0,1.5654186010360718,214,1.0,3 +72214,8,1.0,0,1.2804216146469116,215,1.0,3 +72215,8,1.0,0,1.395420789718628,216,1.0,3 +72216,8,1.0,0,1.6604174375534058,217,1.0,3 +72217,8,1.0,0,1.5624186992645264,218,1.0,3 +72218,8,1.0,0,1.8694148063659668,219,0.0,3 +72219,8,1.0,0,1.3174216747283936,220,1.0,3 +72220,8,1.0,0,1.5384190082550049,221,1.0,3 +72221,8,1.0,0,1.8044155836105347,222,1.0,3 +72222,8,1.0,0,1.972413420677185,223,1.0,3 +72223,8,1.0,0,1.928413987159729,224,0.0,3 +72224,8,0.0,0,1.2464215755462646,225,0.0,3 +72225,8,1.0,0,2.1664161682128906,226,1.0,3 +72226,8,1.0,0,1.3844209909439087,227,1.0,3 +72227,8,1.0,0,1.6074180603027344,228,1.0,3 +72228,8,1.0,0,1.3104217052459717,229,1.0,3 +72229,8,1.0,0,1.509419322013855,230,1.0,3 +72230,8,1.0,0,1.328421711921692,231,1.0,3 +72231,8,1.0,0,2.718441963195801,232,1.0,3 +72232,8,1.0,0,1.465419888496399,233,1.0,3 +72233,8,1.0,0,1.3314216136932373,234,1.0,3 +72234,8,1.0,0,1.413420557975769,235,1.0,3 +72235,8,1.0,0,1.2354215383529663,236,1.0,3 +72236,8,1.0,0,1.2674216032028198,237,1.0,3 +72237,8,1.0,0,1.4014207124710083,238,0.0,3 +72238,8,1.0,0,1.9984130859375,239,1.0,3 +72239,8,1.0,0,1.3964208364486694,240,1.0,3 +72240,8,1.0,0,1.322421669960022,241,1.0,3 +72241,8,1.0,0,1.6914169788360596,242,1.0,3 +72242,8,1.0,0,1.347421407699585,243,1.0,3 +72243,8,1.0,0,1.2964216470718384,244,1.0,3 +72244,8,1.0,0,1.2334214448928833,245,0.0,3 +72245,8,1.0,0,1.951413631439209,246,1.0,3 +72246,8,1.0,0,1.8634147644042969,247,0.0,3 +72247,8,0.0,0,1.3414214849472046,248,0.0,3 +72248,8,0.0,0,1.4534200429916382,249,0.0,3 +72249,8,0.0,0,1.527419090270996,250,0.0,3 +72250,8,1.0,0,1.534419059753418,251,1.0,3 +72251,8,1.0,0,1.4774197340011597,252,1.0,3 +72252,8,1.0,0,1.5164192914962769,253,1.0,3 +72253,8,1.0,0,1.3864209651947021,254,1.0,3 +72254,8,1.0,0,1.2564215660095215,255,1.0,3 +72255,8,1.0,0,1.227421522140503,256,1.0,3 +72256,8,1.0,0,1.5394189357757568,257,1.0,3 +72257,8,1.0,0,1.3734210729599,258,0.0,3 +72258,8,1.0,0,1.671417236328125,259,1.0,3 +72259,8,1.0,0,1.365421175956726,260,1.0,3 +72260,8,0.0,0,1.1594213247299194,261,0.0,3 +72261,8,1.0,0,1.4554200172424316,262,1.0,3 +72262,8,1.0,0,1.5694185495376587,263,1.0,3 +72263,8,1.0,0,1.534419059753418,264,1.0,3 +72264,8,1.0,0,1.7504162788391113,265,0.0,3 +72265,8,1.0,0,1.6614174842834473,266,1.0,3 +72266,8,1.0,0,1.3064216375350952,267,1.0,3 +72267,8,1.0,0,1.4794197082519531,268,0.0,3 +72268,8,1.0,0,1.2934216260910034,269,1.0,3 +72269,8,1.0,0,1.4724198579788208,270,1.0,3 +72270,8,1.0,0,1.762416124343872,271,0.0,3 +72271,8,1.0,0,1.4084206819534302,272,1.0,3 +72272,8,1.0,0,1.5594186782836914,273,1.0,3 +72273,8,1.0,0,1.4314203262329102,274,1.0,3 +72274,8,1.0,0,1.3444215059280396,275,0.0,3 +72275,8,1.0,0,2.5964362621307373,276,0.0,3 +72276,8,0.0,0,1.3644212484359741,277,0.0,3 +72277,8,1.0,0,1.4694198369979858,278,1.0,3 +72278,8,1.0,0,1.5624186992645264,279,1.0,3 +72279,8,1.0,0,1.7124167680740356,280,1.0,3 +72280,8,1.0,0,1.6144180297851562,281,1.0,3 +72281,8,1.0,0,1.3614212274551392,282,1.0,3 +72282,8,1.0,0,1.3934208154678345,283,1.0,3 +72283,8,1.0,0,1.4304203987121582,284,1.0,3 +72284,8,1.0,0,1.3994207382202148,285,1.0,3 +72285,8,1.0,0,1.6034181118011475,286,0.0,3 +72286,8,1.0,0,1.46042001247406,287,1.0,3 +72287,8,1.0,0,1.5694185495376587,288,1.0,3 +72288,8,1.0,0,1.6844171285629272,289,1.0,3 +72289,8,1.0,0,1.3704211711883545,290,1.0,3 +72290,8,1.0,0,1.2354215383529663,291,1.0,3 +72291,8,1.0,0,1.487419605255127,292,1.0,3 +72292,8,1.0,0,1.7064168453216553,293,1.0,3 +72293,8,1.0,0,1.4244204759597778,294,0.0,3 +72294,8,0.0,0,1.840415120124817,295,0.0,3 +72295,8,0.0,0,1.7324165105819702,296,1.0,3 +72296,8,0.0,0,1.4934195280075073,297,0.0,3 +72297,8,1.0,0,2.0824122428894043,298,1.0,3 +72298,8,1.0,0,1.26142156124115,299,1.0,3 +72299,8,1.0,0,1.4454201459884644,300,1.0,3 +72300,8,1.0,0,1.4894195795059204,301,0.0,3 +72301,8,1.0,0,1.7504162788391113,302,1.0,3 +72302,8,1.0,0,1.85941481590271,303,1.0,3 +72303,8,1.0,0,1.575418472290039,304,1.0,3 +72304,8,1.0,0,1.3454214334487915,305,1.0,3 +72305,8,1.0,0,1.9934132099151611,306,1.0,3 +72306,8,1.0,0,1.5924183130264282,307,1.0,3 +72307,8,1.0,0,1.5734184980392456,308,1.0,3 +72308,8,1.0,0,1.416420578956604,309,0.0,3 +72309,8,0.0,0,1.3484214544296265,310,0.0,3 +72310,8,0.0,0,1.2234214544296265,311,0.0,3 +72311,8,1.0,0,1.8274152278900146,312,1.0,3 +72312,8,1.0,0,1.4744198322296143,313,0.0,3 +72313,8,0.0,0,2.3694257736206055,314,0.0,3 +72314,8,1.0,0,2.05041241645813,315,1.0,3 +72315,8,1.0,0,1.3564213514328003,316,1.0,3 +72316,8,1.0,0,1.508419394493103,317,1.0,3 +72317,8,1.0,0,1.3674211502075195,318,1.0,3 +72318,8,1.0,0,1.4674198627471924,319,1.0,3 +72319,8,1.0,0,1.3304216861724854,320,1.0,3 +72320,8,1.0,0,1.3304216861724854,321,1.0,3 +72321,8,1.0,0,1.3204216957092285,322,1.0,3 +72322,8,1.0,0,1.763416051864624,323,1.0,3 +72323,8,0.0,0,1.487419605255127,324,0.0,3 +72324,8,1.0,0,2.1264142990112305,325,1.0,3 +72325,8,1.0,0,1.2374215126037598,326,1.0,3 +72326,8,1.0,0,1.395420789718628,327,1.0,3 +72327,8,1.0,0,1.6934170722961426,328,0.0,3 +72328,8,0.0,0,2.3424243927001953,329,1.0,3 +72329,8,0.0,0,1.3354215621948242,330,0.0,3 +72330,8,0.0,0,1.6144180297851562,331,0.0,3 +72331,8,0.0,0,1.487419605255127,332,0.0,3 +72332,8,1.0,0,1.9174141883850098,333,1.0,3 +72333,8,1.0,0,1.2334214448928833,334,1.0,3 +72334,8,1.0,0,1.3354215621948242,335,1.0,3 +72335,8,1.0,0,1.3034216165542603,336,0.0,3 +72336,8,0.0,0,1.5264191627502441,337,0.0,3 +72337,8,1.0,0,1.387420892715454,338,1.0,3 +72338,8,0.0,0,1.25542151927948,339,1.0,3 +72339,8,0.0,0,1.1984214782714844,340,0.0,3 +72340,8,1.0,0,1.2874215841293335,341,1.0,3 +72341,8,1.0,0,1.3304216861724854,342,1.0,3 +72342,8,1.0,0,1.575418472290039,343,1.0,3 +72343,8,0.0,0,1.5444189310073853,344,0.0,3 +72344,8,1.0,0,1.5324190855026245,345,1.0,3 +72345,8,1.0,0,1.5954182147979736,346,0.0,3 +72346,8,0.0,0,2.224418878555298,347,0.0,3 +72347,8,1.0,0,1.508419394493103,348,0.0,3 +72348,8,0.0,0,2.263420581817627,349,0.0,3 +72349,8,1.0,0,2.3544249534606934,350,1.0,3 +72350,8,1.0,0,1.5554187297821045,351,1.0,3 +72351,8,1.0,0,1.924414038658142,352,1.0,3 +72352,8,1.0,0,1.398420810699463,353,1.0,3 +72353,8,1.0,0,1.4024207592010498,354,1.0,3 +72354,8,1.0,0,1.252421498298645,355,1.0,3 +72355,8,1.0,0,1.6064181327819824,356,0.0,3 +72356,8,0.0,0,1.3334215879440308,357,0.0,3 +72357,8,0.0,0,1.3784210681915283,358,1.0,3 +72358,8,0.0,0,1.2434215545654297,359,0.0,3 +72359,8,0.0,0,1.2404215335845947,360,0.0,3 +72360,8,1.0,0,1.4894195795059204,361,1.0,3 +72361,8,1.0,0,2.4104275703430176,362,1.0,3 +72362,8,1.0,0,1.3004215955734253,363,1.0,3 +72363,8,0.0,0,2.0734121799468994,364,0.0,3 +72364,8,1.0,0,1.4814196825027466,365,1.0,3 +72365,8,1.0,0,1.5444189310073853,366,1.0,3 +72366,8,1.0,0,1.5894184112548828,367,1.0,3 +72367,8,1.0,0,1.282421588897705,368,0.0,3 +72368,8,0.0,0,1.7274165153503418,369,0.0,3 +72369,8,0.0,0,2.510432243347168,370,0.0,3 +72370,8,1.0,0,2.301422595977783,371,1.0,3 +72371,8,1.0,0,1.4894195795059204,372,1.0,3 +72372,8,1.0,0,1.6204179525375366,373,1.0,3 +72373,8,1.0,0,1.8684147596359253,374,1.0,3 +72374,8,1.0,0,1.4014207124710083,375,0.0,3 +72375,8,1.0,0,1.6184179782867432,376,0.0,3 +72376,8,0.0,0,1.4504201412200928,377,0.0,3 +72377,8,0.0,0,1.3564213514328003,378,0.0,3 +72378,8,0.0,0,1.3404215574264526,379,0.0,3 +72379,8,0.0,0,1.6874170303344727,380,0.0,3 +72380,8,1.0,0,1.8654148578643799,381,1.0,3 +72381,8,1.0,0,1.8064155578613281,382,0.0,3 +72382,8,0.0,0,1.7134168148040771,383,0.0,3 +72383,8,0.0,0,2.0204129219055176,384,0.0,3 +72384,8,1.0,0,1.7464163303375244,385,1.0,3 +72385,8,1.0,0,1.3204216957092285,386,1.0,3 +72386,8,1.0,0,1.4304203987121582,387,1.0,3 +72387,8,1.0,0,1.25542151927948,388,0.0,3 +72388,8,1.0,0,2.197417736053467,389,1.0,3 +72389,8,0.0,0,1.1814213991165161,390,0.0,3 +72390,8,1.0,0,1.394420862197876,391,1.0,3 +72391,8,1.0,0,1.6544175148010254,392,1.0,3 +72392,8,1.0,0,1.5104193687438965,393,1.0,3 +72393,8,1.0,0,1.6284178495407104,394,1.0,3 +72394,8,1.0,0,1.35042142868042,395,1.0,3 +72395,8,1.0,0,1.4554200172424316,396,1.0,3 +72396,8,1.0,0,1.6614174842834473,397,1.0,3 +72397,8,1.0,0,1.7384164333343506,398,1.0,3 +72398,8,1.0,0,1.2774215936660767,399,1.0,3 +72399,8,1.0,0,1.4794197082519531,400,1.0,3 +72400,8,1.0,0,1.3444215059280396,401,1.0,3 +72401,8,1.0,0,1.4084206819534302,402,1.0,3 +72402,8,1.0,0,1.7324165105819702,403,1.0,3 +72403,8,1.0,0,1.3084216117858887,404,1.0,3 +72404,8,1.0,0,1.8984143733978271,405,1.0,3 +72405,8,1.0,0,1.3544213771820068,406,1.0,3 +72406,8,1.0,0,1.4514200687408447,407,1.0,3 +72407,8,0.0,0,1.5584187507629395,408,0.0,3 +72408,8,0.0,0,1.677417278289795,409,1.0,3 +72409,8,0.0,0,1.578418493270874,410,0.0,3 +72410,8,1.0,0,1.5714185237884521,411,1.0,3 +72411,8,1.0,0,1.490419626235962,412,0.0,3 +72412,8,0.0,0,1.9464137554168701,413,0.0,3 +72413,8,0.0,0,2.1574158668518066,414,0.0,3 +72414,8,0.0,0,1.4094206094741821,415,0.0,3 +72415,8,0.0,0,1.6684173345565796,416,0.0,3 +72416,8,0.0,0,1.8314151763916016,417,0.0,3 +72417,8,1.0,0,2.1594157218933105,418,1.0,3 +72418,8,1.0,0,1.4044207334518433,419,1.0,3 +72419,8,1.0,0,1.35042142868042,420,1.0,3 +72420,8,1.0,0,1.5944182872772217,421,1.0,3 +72421,8,1.0,0,1.5044194459915161,422,1.0,3 +72422,8,1.0,0,2.047412395477295,423,1.0,3 +72423,8,1.0,0,1.6394176483154297,424,1.0,3 +72424,8,1.0,0,1.5634186267852783,425,0.0,3 +72425,8,1.0,0,2.249420166015625,426,1.0,3 +72426,8,1.0,0,1.282421588897705,427,1.0,3 +72427,8,1.0,0,1.5674185752868652,428,1.0,3 +72428,8,1.0,0,1.5634186267852783,429,1.0,3 +72429,8,1.0,0,1.6784172058105469,430,1.0,3 +72430,8,0.0,0,2.238419532775879,431,0.0,3 +72431,8,1.0,0,1.438420295715332,432,1.0,3 +72432,8,1.0,0,1.3594212532043457,433,1.0,3 +72433,8,1.0,0,1.4734197854995728,434,1.0,3 +72434,8,1.0,0,1.486419677734375,435,1.0,3 +72435,8,1.0,0,1.4064207077026367,436,1.0,3 +72436,8,1.0,0,1.3104217052459717,437,1.0,3 +72437,8,1.0,0,1.901414394378662,438,1.0,3 +72438,8,1.0,0,1.3524214029312134,439,1.0,3 +72439,8,1.0,0,1.4244204759597778,440,1.0,3 +72440,8,1.0,0,1.7994155883789062,441,1.0,3 +72441,8,1.0,0,1.6204179525375366,442,1.0,3 +72442,8,1.0,0,1.8484150171279907,443,1.0,3 +72443,8,1.0,0,1.556418776512146,444,1.0,3 +72444,8,1.0,0,1.2534215450286865,445,0.0,3 +72445,8,0.0,0,2.5924360752105713,446,0.0,3 +72446,8,1.0,0,1.582418441772461,447,0.0,3 +72447,8,1.0,0,1.4324203729629517,448,1.0,3 +72448,8,1.0,0,1.9824132919311523,449,1.0,3 +72449,8,1.0,0,1.2784216403961182,450,1.0,3 +72450,8,1.0,0,1.4484201669692993,451,1.0,3 +72451,8,1.0,0,1.6074180603027344,452,1.0,3 +72452,8,1.0,0,1.3604212999343872,453,1.0,3 +72453,8,1.0,0,2.1604158878326416,454,1.0,3 +72454,8,1.0,0,1.7554161548614502,455,0.0,3 +72455,8,0.0,0,1.6604174375534058,456,0.0,3 +72456,8,1.0,0,1.8274152278900146,457,1.0,3 +72457,8,1.0,0,1.412420630455017,458,1.0,3 +72458,8,1.0,0,1.368421196937561,459,0.0,3 +72459,8,0.0,0,1.8894145488739014,460,0.0,3 +72460,8,0.0,0,1.4234204292297363,461,1.0,3 +72461,8,0.0,0,1.8874144554138184,462,0.0,3 +72462,8,0.0,0,1.7484163045883179,463,0.0,3 +72463,8,1.0,0,1.575418472290039,464,1.0,3 +72464,8,1.0,0,1.4854196310043335,465,1.0,3 +72465,8,1.0,0,1.25542151927948,466,0.0,3 +72466,8,0.0,0,1.9734134674072266,467,0.0,3 +72467,8,0.0,0,1.5514187812805176,468,0.0,3 +72468,8,1.0,0,1.4234204292297363,469,1.0,3 +72469,8,1.0,0,1.531419038772583,470,1.0,3 +72470,8,1.0,0,1.372421145439148,471,1.0,3 +72471,8,1.0,0,1.435420274734497,472,1.0,3 +72472,8,1.0,0,1.4324203729629517,473,1.0,3 +72473,8,1.0,0,1.2504215240478516,474,0.0,3 +72474,8,1.0,0,1.999413013458252,475,1.0,3 +72475,8,1.0,0,1.215421438217163,476,1.0,3 +72476,8,1.0,0,1.490419626235962,477,0.0,3 +72477,8,1.0,0,1.4044207334518433,478,1.0,3 +72478,8,1.0,0,1.4814196825027466,479,1.0,3 +72479,8,1.0,0,1.2314214706420898,480,1.0,3 +72480,8,1.0,0,1.7854158878326416,481,1.0,3 +72481,8,1.0,0,1.2664215564727783,482,1.0,3 +72482,8,1.0,0,1.7124167680740356,483,1.0,3 +72483,8,1.0,0,1.4954195022583008,484,1.0,3 +72484,8,1.0,0,1.8284152746200562,485,1.0,3 +72485,8,1.0,0,1.648417592048645,486,1.0,3 +72486,8,1.0,0,2.0794119834899902,487,1.0,3 +72487,8,1.0,0,1.343421459197998,488,1.0,3 +72488,8,1.0,0,1.3184216022491455,489,1.0,3 +72489,8,1.0,0,2.0174129009246826,490,1.0,3 +72490,8,1.0,0,1.2654215097427368,491,1.0,3 +72491,8,1.0,0,1.391420841217041,492,1.0,3 +72492,8,1.0,0,1.2394214868545532,493,1.0,3 +72493,8,1.0,0,1.8044155836105347,494,1.0,3 +72494,8,1.0,0,1.2374215126037598,495,0.0,3 +72495,8,1.0,0,2.1234140396118164,496,1.0,3 +72496,8,1.0,0,1.465419888496399,497,1.0,3 +72497,8,1.0,0,1.8684147596359253,498,1.0,3 +72498,8,1.0,0,1.4774197340011597,499,1.0,3 +72499,8,1.0,0,1.80741548538208,500,1.0,3 +72500,8,1.0,1,1.8474149703979492,1,1.0,3 +72501,8,1.0,1,1.5254191160202026,2,1.0,3 +72502,8,1.0,1,2.003412961959839,3,1.0,3 +72503,8,1.0,1,2.3744258880615234,4,1.0,3 +72504,8,1.0,1,1.2804216146469116,5,1.0,3 +72505,8,1.0,1,1.6494176387786865,6,1.0,3 +72506,8,1.0,1,1.6604174375534058,7,1.0,3 +72507,8,1.0,1,1.252421498298645,8,1.0,3 +72508,8,1.0,1,1.3804210424423218,9,0.0,3 +72509,8,1.0,1,1.8634147644042969,10,1.0,3 +72510,8,1.0,1,1.7024168968200684,11,1.0,3 +72511,8,0.0,1,1.4244204759597778,12,1.0,3 +72512,8,0.0,1,1.4854196310043335,13,1.0,3 +72513,8,1.0,1,1.6864171028137207,14,1.0,3 +72514,8,0.0,1,2.3534250259399414,15,0.0,3 +72515,8,1.0,1,1.8974144458770752,16,1.0,3 +72516,8,1.0,1,1.6434175968170166,17,1.0,3 +72517,8,1.0,1,1.505419373512268,18,1.0,3 +72518,8,1.0,1,1.4004207849502563,19,1.0,3 +72519,8,1.0,1,1.5864183902740479,20,1.0,3 +72520,8,1.0,1,1.4714198112487793,21,0.0,3 +72521,8,0.0,1,1.6904170513153076,22,0.0,3 +72522,8,1.0,1,1.5684186220169067,23,1.0,3 +72523,8,0.0,1,1.626417875289917,24,0.0,3 +72524,8,1.0,1,1.6504175662994385,25,1.0,3 +72525,8,1.0,1,1.3494213819503784,26,1.0,3 +72526,8,1.0,1,1.4544200897216797,27,0.0,3 +72527,8,0.0,1,1.5664186477661133,28,0.0,3 +72528,8,0.0,1,1.9144141674041748,29,0.0,3 +72529,8,0.0,1,1.8354151248931885,30,1.0,3 +72530,8,0.0,1,1.5894184112548828,31,0.0,3 +72531,8,1.0,1,1.6794171333312988,32,0.0,3 +72532,8,1.0,1,1.2064213752746582,33,1.0,3 +72533,8,1.0,1,1.4704198837280273,34,1.0,3 +72534,8,1.0,1,1.2414214611053467,35,1.0,3 +72535,8,1.0,1,1.5724185705184937,36,1.0,3 +72536,8,1.0,1,1.347421407699585,37,1.0,3 +72537,8,1.0,1,1.5474188327789307,38,1.0,3 +72538,8,1.0,1,1.581418514251709,39,0.0,3 +72539,8,0.0,1,1.8034155368804932,40,1.0,3 +72540,8,0.0,1,1.4524201154708862,41,0.0,3 +72541,8,1.0,1,1.696416974067688,42,0.0,3 +72542,8,0.0,1,1.4404202699661255,43,0.0,3 +72543,8,1.0,1,1.769416093826294,44,1.0,3 +72544,8,1.0,1,1.4144206047058105,45,0.0,3 +72545,8,1.0,1,2.0264127254486084,46,1.0,3 +72546,8,1.0,1,1.3774210214614868,47,0.0,3 +72547,8,0.0,1,1.8934144973754883,48,0.0,3 +72548,8,0.0,1,1.3154217004776,49,0.0,3 +72549,8,0.0,1,1.5024194717407227,50,0.0,3 +72550,8,0.0,1,1.3644212484359741,51,1.0,3 +72551,8,0.0,1,1.3204216957092285,52,1.0,3 +72552,8,0.0,1,1.3374215364456177,53,0.0,3 +72553,8,0.0,1,2.1354146003723145,54,0.0,3 +72554,8,1.0,1,1.5624186992645264,55,1.0,3 +72555,8,1.0,1,1.368421196937561,56,1.0,3 +72556,8,1.0,1,1.4454201459884644,57,1.0,3 +72557,8,1.0,1,1.4084206819534302,58,1.0,3 +72558,8,1.0,1,1.3994207382202148,59,0.0,3 +72559,8,1.0,1,1.6794171333312988,60,1.0,3 +72560,8,1.0,1,1.4784197807312012,61,1.0,3 +72561,8,1.0,1,1.3774210214614868,62,1.0,3 +72562,8,1.0,1,1.4924196004867554,63,1.0,3 +72563,8,1.0,1,1.3054215908050537,64,1.0,3 +72564,8,1.0,1,1.2564215660095215,65,1.0,3 +72565,8,0.0,1,1.7294166088104248,66,0.0,3 +72566,8,1.0,1,1.6244179010391235,67,1.0,3 +72567,8,0.0,1,1.457419991493225,68,1.0,3 +72568,8,0.0,1,2.0824122428894043,69,0.0,3 +72569,8,1.0,1,1.552418828010559,70,1.0,3 +72570,8,1.0,1,1.5614186525344849,71,0.0,3 +72571,8,0.0,1,1.7754158973693848,72,0.0,3 +72572,8,1.0,1,1.9914131164550781,73,1.0,3 +72573,8,1.0,1,1.3764210939407349,74,1.0,3 +72574,8,1.0,1,1.2974215745925903,75,1.0,3 +72575,8,1.0,1,2.0934128761291504,76,1.0,3 +72576,8,1.0,1,1.6934170722961426,77,1.0,3 +72577,8,1.0,1,1.3884209394454956,78,0.0,3 +72578,8,1.0,1,1.884414553642273,79,0.0,3 +72579,8,0.0,1,1.5734184980392456,80,0.0,3 +72580,8,0.0,1,1.2974215745925903,81,0.0,3 +72581,8,1.0,1,2.0584123134613037,82,1.0,3 +72582,8,1.0,1,1.25542151927948,83,1.0,3 +72583,8,1.0,1,1.395420789718628,84,1.0,3 +72584,8,1.0,1,1.391420841217041,85,0.0,3 +72585,8,0.0,1,2.1564157009124756,86,0.0,3 +72586,8,1.0,1,1.6544175148010254,87,0.0,3 +72587,8,0.0,1,1.3554213047027588,88,0.0,3 +72588,8,1.0,1,2.277421474456787,89,1.0,3 +72589,8,1.0,1,1.390420913696289,90,1.0,3 +72590,8,1.0,1,1.6474175453186035,91,1.0,3 +72591,8,1.0,1,1.2904216051101685,92,1.0,3 +72592,8,1.0,1,1.579418420791626,93,1.0,3 +72593,8,0.0,1,2.049412488937378,94,0.0,3 +72594,8,1.0,1,1.3404215574264526,95,1.0,3 +72595,8,1.0,1,1.2354215383529663,96,0.0,3 +72596,8,0.0,1,1.4984195232391357,97,0.0,3 +72597,8,1.0,1,1.6364177465438843,98,0.0,3 +72598,8,1.0,1,1.347421407699585,99,1.0,3 +72599,8,1.0,1,1.6194179058074951,100,1.0,3 +72600,8,1.0,1,1.3054215908050537,101,1.0,3 +72601,8,1.0,1,1.8204153776168823,102,0.0,3 +72602,8,1.0,1,1.46042001247406,103,1.0,3 +72603,8,0.0,1,1.3374215364456177,104,1.0,3 +72604,8,0.0,1,1.4044207334518433,105,0.0,3 +72605,8,1.0,1,2.259420394897461,106,1.0,3 +72606,8,1.0,1,1.4854196310043335,107,1.0,3 +72607,8,1.0,1,1.5554187297821045,108,1.0,3 +72608,8,1.0,1,1.3384215831756592,109,1.0,3 +72609,8,1.0,1,1.490419626235962,110,0.0,3 +72610,8,1.0,1,1.531419038772583,111,1.0,3 +72611,8,1.0,1,1.7584161758422852,112,1.0,3 +72612,8,1.0,1,1.4094206094741821,113,1.0,3 +72613,8,1.0,1,1.4224205017089844,114,1.0,3 +72614,8,1.0,1,1.6464176177978516,115,0.0,3 +72615,8,1.0,1,2.1524155139923096,116,1.0,3 +72616,8,1.0,1,1.4494200944900513,117,1.0,3 +72617,8,1.0,1,1.2434215545654297,118,1.0,3 +72618,8,1.0,1,1.3804210424423218,119,1.0,3 +72619,8,1.0,1,1.2804216146469116,120,1.0,3 +72620,8,1.0,1,1.3014216423034668,121,1.0,3 +72621,8,1.0,1,1.4954195022583008,122,1.0,3 +72622,8,1.0,1,1.3794209957122803,123,1.0,3 +72623,8,1.0,1,1.4934195280075073,124,1.0,3 +72624,8,1.0,1,1.3814209699630737,125,1.0,3 +72625,8,1.0,1,1.671417236328125,126,0.0,3 +72626,8,0.0,1,1.3364216089248657,127,0.0,3 +72627,8,1.0,1,1.6054182052612305,128,1.0,3 +72628,8,1.0,1,1.5694185495376587,129,1.0,3 +72629,8,1.0,1,1.9804133176803589,130,1.0,3 +72630,8,1.0,1,1.626417875289917,131,1.0,3 +72631,8,1.0,1,1.5114192962646484,132,1.0,3 +72632,8,1.0,1,1.346421480178833,133,1.0,3 +72633,8,1.0,1,1.4254204034805298,134,0.0,3 +72634,8,0.0,1,1.557418704032898,135,0.0,3 +72635,8,0.0,1,1.6824171543121338,136,1.0,3 +72636,8,0.0,1,1.6244179010391235,137,0.0,3 +72637,8,0.0,1,1.2454215288162231,138,0.0,3 +72638,8,1.0,1,1.505419373512268,139,0.0,3 +72639,8,1.0,1,1.252421498298645,140,0.0,3 +72640,8,0.0,1,1.6454176902770996,141,1.0,3 +72641,8,0.0,1,1.9304139614105225,142,0.0,3 +72642,8,0.0,1,1.5184192657470703,143,0.0,3 +72643,8,1.0,1,1.675417184829712,144,1.0,3 +72644,8,1.0,1,1.531419038772583,145,0.0,3 +72645,8,1.0,1,2.23241925239563,146,1.0,3 +72646,8,1.0,1,1.3494213819503784,147,1.0,3 +72647,8,1.0,1,2.037412643432617,148,1.0,3 +72648,8,1.0,1,1.3244216442108154,149,1.0,3 +72649,8,1.0,1,1.328421711921692,150,1.0,3 +72650,8,1.0,1,1.8254153728485107,151,1.0,3 +72651,8,1.0,1,1.4544200897216797,152,0.0,3 +72652,8,1.0,1,1.4914195537567139,153,1.0,3 +72653,8,1.0,1,1.8924144506454468,154,1.0,3 +72654,8,1.0,1,1.5924183130264282,155,1.0,3 +72655,8,1.0,1,1.4144206047058105,156,1.0,3 +72656,8,1.0,1,1.4414201974868774,157,1.0,3 +72657,8,1.0,1,1.4764198064804077,158,1.0,3 +72658,8,1.0,1,1.6374177932739258,159,1.0,3 +72659,8,1.0,1,1.3414214849472046,160,1.0,3 +72660,8,1.0,1,1.5964182615280151,161,0.0,3 +72661,8,1.0,1,1.4064207077026367,162,1.0,3 +72662,8,1.0,1,1.4814196825027466,163,1.0,3 +72663,8,1.0,1,1.3114216327667236,164,1.0,3 +72664,8,1.0,1,1.3174216747283936,165,1.0,3 +72665,8,0.0,1,1.4694198369979858,166,0.0,3 +72666,8,1.0,1,1.342421531677246,167,1.0,3 +72667,8,1.0,1,1.3794209957122803,168,1.0,3 +72668,8,1.0,1,1.5764185190200806,169,0.0,3 +72669,8,0.0,1,2.481431007385254,170,0.0,3 +72670,8,1.0,1,1.817415475845337,171,1.0,3 +72671,8,1.0,1,1.3214216232299805,172,1.0,3 +72672,8,0.0,1,1.5464189052581787,173,0.0,3 +72673,8,1.0,1,1.2504215240478516,174,1.0,3 +72674,8,1.0,1,1.2054214477539062,175,0.0,3 +72675,8,0.0,1,1.6114180088043213,176,0.0,3 +72676,8,1.0,1,1.443420171737671,177,1.0,3 +72677,8,1.0,1,1.994413137435913,178,1.0,3 +72678,8,1.0,1,1.552418828010559,179,1.0,3 +72679,8,1.0,1,1.5064194202423096,180,0.0,3 +72680,8,1.0,1,1.7434163093566895,181,1.0,3 +72681,8,1.0,1,1.3054215908050537,182,1.0,3 +72682,8,1.0,1,1.3264217376708984,183,0.0,3 +72683,8,0.0,1,1.7344164848327637,184,1.0,3 +72684,8,0.0,1,1.4074206352233887,185,0.0,3 +72685,8,1.0,1,1.288421630859375,186,1.0,3 +72686,8,1.0,1,1.714416742324829,187,1.0,3 +72687,8,1.0,1,1.4404202699661255,188,1.0,3 +72688,8,1.0,1,1.2934216260910034,189,1.0,3 +72689,8,1.0,1,1.722416639328003,190,1.0,3 +72690,8,1.0,1,1.9614136219024658,191,1.0,3 +72691,8,1.0,1,1.3794209957122803,192,1.0,3 +72692,8,1.0,1,1.3244216442108154,193,1.0,3 +72693,8,1.0,1,1.9274139404296875,194,0.0,3 +72694,8,0.0,1,1.531419038772583,195,0.0,3 +72695,8,0.0,1,1.83641517162323,196,1.0,3 +72696,8,0.0,1,2.327423572540283,197,0.0,3 +72697,8,1.0,1,1.2604215145111084,198,1.0,3 +72698,8,1.0,1,1.722416639328003,199,1.0,3 +72699,8,1.0,1,1.4014207124710083,200,1.0,3 +72700,8,1.0,1,1.8864145278930664,201,1.0,3 +72701,8,1.0,1,1.6244179010391235,202,1.0,3 +72702,8,1.0,1,1.416420578956604,203,1.0,3 +72703,8,1.0,1,1.3144216537475586,204,0.0,3 +72704,8,0.0,1,2.1424150466918945,205,1.0,3 +72705,8,0.0,1,2.306422710418701,206,0.0,3 +72706,8,0.0,1,1.347421407699585,207,0.0,3 +72707,8,0.0,1,1.7164167165756226,208,1.0,3 +72708,8,0.0,1,1.185421347618103,209,1.0,3 +72709,8,0.0,1,1.2904216051101685,210,0.0,3 +72710,8,0.0,1,1.527419090270996,211,0.0,3 +72711,8,1.0,1,1.3024215698242188,212,0.0,3 +72712,8,1.0,1,1.644417643547058,213,0.0,3 +72713,8,0.0,1,1.7484163045883179,214,0.0,3 +72714,8,0.0,1,1.5934183597564697,215,1.0,3 +72715,8,0.0,1,1.8194153308868408,216,0.0,3 +72716,8,0.0,1,1.4594199657440186,217,1.0,3 +72717,8,0.0,1,1.4244204759597778,218,0.0,3 +72718,8,1.0,1,1.286421537399292,219,1.0,3 +72719,8,0.0,1,1.288421630859375,220,1.0,3 +72720,8,0.0,1,1.394420862197876,221,0.0,3 +72721,8,1.0,1,1.763416051864624,222,1.0,3 +72722,8,1.0,1,1.6454176902770996,223,1.0,3 +72723,8,1.0,1,1.4244204759597778,224,0.0,3 +72724,8,1.0,1,1.3204216957092285,225,1.0,3 +72725,8,1.0,1,1.2444214820861816,226,1.0,3 +72726,8,1.0,1,1.3184216022491455,227,1.0,3 +72727,8,1.0,1,1.3664212226867676,228,1.0,3 +72728,8,1.0,1,1.2694215774536133,229,1.0,3 +72729,8,1.0,1,2.0654122829437256,230,1.0,3 +72730,8,1.0,1,1.6514174938201904,231,1.0,3 +72731,8,1.0,1,1.4734197854995728,232,1.0,3 +72732,8,0.0,1,1.4064207077026367,233,1.0,3 +72733,8,0.0,1,1.9454138278961182,234,1.0,3 +72734,8,1.0,1,1.6954169273376465,235,0.0,3 +72735,8,0.0,1,1.5294190645217896,236,0.0,3 +72736,8,1.0,1,1.534419059753418,237,0.0,3 +72737,8,0.0,1,1.62241792678833,238,1.0,3 +72738,8,0.0,1,1.188421368598938,239,0.0,3 +72739,8,1.0,1,2.0694122314453125,240,1.0,3 +72740,8,1.0,1,1.899414300918579,241,0.0,3 +72741,8,1.0,1,1.3044216632843018,242,1.0,3 +72742,8,1.0,1,1.442420244216919,243,1.0,3 +72743,8,1.0,1,1.953413724899292,244,1.0,3 +72744,8,0.0,1,2.524432897567749,245,0.0,3 +72745,8,1.0,1,1.4554200172424316,246,1.0,3 +72746,8,1.0,1,1.6184179782867432,247,1.0,3 +72747,8,1.0,1,1.6864171028137207,248,1.0,3 +72748,8,1.0,1,1.3494213819503784,249,0.0,3 +72749,8,0.0,1,1.2984216213226318,250,0.0,3 +72750,8,1.0,1,1.343421459197998,251,1.0,3 +72751,8,1.0,1,1.3754210472106934,252,1.0,3 +72752,8,1.0,1,1.3074216842651367,253,1.0,3 +72753,8,1.0,1,1.3734210729599,254,1.0,3 +72754,8,1.0,1,2.1174139976501465,255,1.0,3 +72755,8,1.0,1,1.490419626235962,256,1.0,3 +72756,8,1.0,1,1.6024181842803955,257,1.0,3 +72757,8,1.0,1,1.4234204292297363,258,0.0,3 +72758,8,0.0,1,2.261420726776123,259,0.0,3 +72759,8,1.0,1,1.629417896270752,260,0.0,3 +72760,8,0.0,1,1.2464215755462646,261,0.0,3 +72761,8,1.0,1,2.277421474456787,262,1.0,3 +72762,8,1.0,1,1.4474201202392578,263,1.0,3 +72763,8,1.0,1,1.722416639328003,264,1.0,3 +72764,8,1.0,1,1.6314177513122559,265,0.0,3 +72765,8,0.0,1,1.5874183177947998,266,1.0,3 +72766,8,1.0,1,1.623417854309082,267,1.0,3 +72767,8,0.0,1,1.187421441078186,268,0.0,3 +72768,8,1.0,1,1.6514174938201904,269,1.0,3 +72769,8,1.0,1,1.8084155321121216,270,1.0,3 +72770,8,1.0,1,1.2354215383529663,271,1.0,3 +72771,8,1.0,1,1.4884196519851685,272,1.0,3 +72772,8,0.0,1,1.2794215679168701,273,1.0,3 +72773,8,1.0,1,1.717416763305664,274,1.0,3 +72774,8,1.0,1,1.7304165363311768,275,1.0,3 +72775,8,1.0,1,1.48341965675354,276,1.0,3 +72776,8,0.0,1,1.6984169483184814,277,1.0,3 +72777,8,0.0,1,2.3694257736206055,278,1.0,3 +72778,8,1.0,1,2.0814123153686523,279,0.0,3 +72779,8,0.0,1,1.4594199657440186,280,0.0,3 +72780,8,0.0,1,1.950413703918457,281,1.0,3 +72781,8,0.0,1,1.8814146518707275,282,0.0,3 +72782,8,1.0,1,1.3124216794967651,283,1.0,3 +72783,8,1.0,1,1.413420557975769,284,1.0,3 +72784,8,1.0,1,1.8734147548675537,285,0.0,3 +72785,8,0.0,1,1.9384138584136963,286,0.0,3 +72786,8,1.0,1,1.7054169178009033,287,1.0,3 +72787,8,1.0,1,1.2724215984344482,288,0.0,3 +72788,8,1.0,1,1.7164167165756226,289,0.0,3 +72789,8,0.0,1,1.7744159698486328,290,1.0,3 +72790,8,0.0,1,1.5224192142486572,291,0.0,3 +72791,8,1.0,1,1.578418493270874,292,1.0,3 +72792,8,1.0,1,1.6344177722930908,293,0.0,3 +72793,8,1.0,1,1.7384164333343506,294,1.0,3 +72794,8,1.0,1,1.5634186267852783,295,0.0,3 +72795,8,1.0,1,2.0794119834899902,296,1.0,3 +72796,8,1.0,1,1.4714198112487793,297,0.0,3 +72797,8,0.0,1,1.4554200172424316,298,1.0,3 +72798,8,0.0,1,1.2354215383529663,299,0.0,3 +72799,8,1.0,1,1.854414939880371,300,0.0,3 +72800,8,1.0,1,1.5594186782836914,301,0.0,3 +72801,8,1.0,1,1.4724198579788208,302,1.0,3 +72802,8,1.0,1,1.4344203472137451,303,0.0,3 +72803,8,1.0,1,1.858414888381958,304,1.0,3 +72804,8,1.0,1,1.412420630455017,305,1.0,3 +72805,8,1.0,1,1.508419394493103,306,1.0,3 +72806,8,0.0,1,1.487419605255127,307,0.0,3 +72807,8,1.0,1,1.7824158668518066,308,0.0,3 +72808,8,0.0,1,1.5764185190200806,309,0.0,3 +72809,8,0.0,1,1.2764215469360352,310,0.0,3 +72810,8,0.0,1,1.4064207077026367,311,1.0,3 +72811,8,0.0,1,1.4064207077026367,312,0.0,3 +72812,8,1.0,1,1.7024168968200684,313,1.0,3 +72813,8,1.0,1,1.346421480178833,314,0.0,3 +72814,8,0.0,1,1.6184179782867432,315,0.0,3 +72815,8,0.0,1,1.439420223236084,316,1.0,3 +72816,8,0.0,1,1.5984182357788086,317,0.0,3 +72817,8,1.0,1,1.6604174375534058,318,0.0,3 +72818,8,0.0,1,1.8864145278930664,319,0.0,3 +72819,8,0.0,1,1.3674211502075195,320,1.0,3 +72820,8,0.0,1,1.4494200944900513,321,0.0,3 +72821,8,0.0,1,1.188421368598938,322,0.0,3 +72822,8,0.0,1,1.762416124343872,323,0.0,3 +72823,8,1.0,1,2.258420467376709,324,1.0,3 +72824,8,0.0,1,1.7064168453216553,325,0.0,3 +72825,8,1.0,1,1.5984182357788086,326,1.0,3 +72826,8,1.0,1,1.2714215517044067,327,1.0,3 +72827,8,1.0,1,1.3584213256835938,328,0.0,3 +72828,8,1.0,1,2.0614123344421387,329,1.0,3 +72829,8,1.0,1,1.2374215126037598,330,1.0,3 +72830,8,1.0,1,1.316421627998352,331,1.0,3 +72831,8,1.0,1,1.8754146099090576,332,1.0,3 +72832,8,1.0,1,1.3884209394454956,333,1.0,3 +72833,8,1.0,1,1.5244191884994507,334,1.0,3 +72834,8,1.0,1,1.3664212226867676,335,0.0,3 +72835,8,1.0,1,1.4294203519821167,336,1.0,3 +72836,8,1.0,1,1.7754158973693848,337,1.0,3 +72837,8,1.0,1,1.342421531677246,338,1.0,3 +72838,8,1.0,1,1.2974215745925903,339,1.0,3 +72839,8,1.0,1,1.4724198579788208,340,1.0,3 +72840,8,1.0,1,1.2754216194152832,341,1.0,3 +72841,8,1.0,1,1.6114180088043213,342,1.0,3 +72842,8,1.0,1,1.604418158531189,343,1.0,3 +72843,8,1.0,1,1.4624199867248535,344,1.0,3 +72844,8,1.0,1,1.6094181537628174,345,0.0,3 +72845,8,0.0,1,1.6184179782867432,346,0.0,3 +72846,8,1.0,1,2.1834168434143066,347,1.0,3 +72847,8,1.0,1,1.8724147081375122,348,1.0,3 +72848,8,1.0,1,1.2454215288162231,349,1.0,3 +72849,8,1.0,1,1.319421648979187,350,0.0,3 +72850,8,0.0,1,1.534419059753418,351,0.0,3 +72851,8,0.0,1,1.9624135494232178,352,0.0,3 +72852,8,0.0,1,1.5894184112548828,353,0.0,3 +72853,8,1.0,1,2.49143123626709,354,1.0,3 +72854,8,1.0,1,2.0884125232696533,355,1.0,3 +72855,8,1.0,1,1.7894158363342285,356,1.0,3 +72856,8,1.0,1,1.35042142868042,357,1.0,3 +72857,8,0.0,1,1.3044216632843018,358,1.0,3 +72858,8,0.0,1,1.2084214687347412,359,0.0,3 +72859,8,1.0,1,1.3514213562011719,360,1.0,3 +72860,8,1.0,1,1.692417025566101,361,0.0,3 +72861,8,0.0,1,1.9734134674072266,362,0.0,3 +72862,8,0.0,1,1.7474162578582764,363,0.0,3 +72863,8,1.0,1,1.6424176692962646,364,1.0,3 +72864,8,1.0,1,1.3864209651947021,365,0.0,3 +72865,8,1.0,1,1.6644173860549927,366,1.0,3 +72866,8,1.0,1,1.2294214963912964,367,1.0,3 +72867,8,1.0,1,1.3704211711883545,368,1.0,3 +72868,8,1.0,1,2.009413003921509,369,1.0,3 +72869,8,0.0,1,1.4964195489883423,370,1.0,3 +72870,8,0.0,1,1.3244216442108154,371,0.0,3 +72871,8,1.0,1,1.6464176177978516,372,1.0,3 +72872,8,1.0,1,1.6074180603027344,373,0.0,3 +72873,8,0.0,1,1.901414394378662,374,1.0,3 +72874,8,0.0,1,1.3234217166900635,375,0.0,3 +72875,8,1.0,1,1.5554187297821045,376,0.0,3 +72876,8,0.0,1,1.3854209184646606,377,0.0,3 +72877,8,1.0,1,2.1264142990112305,378,1.0,3 +72878,8,1.0,1,1.368421196937561,379,0.0,3 +72879,8,0.0,1,2.1494154930114746,380,0.0,3 +72880,8,0.0,1,1.7554161548614502,381,0.0,3 +72881,8,1.0,1,1.6574175357818604,382,1.0,3 +72882,8,0.0,1,1.35042142868042,383,0.0,3 +72883,8,1.0,1,1.25542151927948,384,0.0,3 +72884,8,0.0,1,1.390420913696289,385,0.0,3 +72885,8,0.0,1,1.3324216604232788,386,1.0,3 +72886,8,0.0,1,1.5264191627502441,387,0.0,3 +72887,8,0.0,1,1.9084142446517944,388,0.0,3 +72888,8,1.0,1,1.2954216003417969,389,1.0,3 +72889,8,1.0,1,1.4244204759597778,390,1.0,3 +72890,8,1.0,1,1.4344203472137451,391,1.0,3 +72891,8,1.0,1,1.2424215078353882,392,0.0,3 +72892,8,1.0,1,1.4004207849502563,393,0.0,3 +72893,8,1.0,1,1.8634147644042969,394,1.0,3 +72894,8,1.0,1,1.4084206819534302,395,1.0,3 +72895,8,1.0,1,1.4744198322296143,396,1.0,3 +72896,8,1.0,1,1.8344151973724365,397,1.0,3 +72897,8,1.0,1,1.2754216194152832,398,1.0,3 +72898,8,1.0,1,1.4594199657440186,399,1.0,3 +72899,8,1.0,1,1.2634215354919434,400,0.0,3 +72900,8,1.0,1,2.05041241645813,401,1.0,3 +72901,8,1.0,1,1.4724198579788208,402,1.0,3 +72902,8,1.0,1,1.5074193477630615,403,0.0,3 +72903,8,0.0,1,1.5874183177947998,404,0.0,3 +72904,8,0.0,1,1.8044155836105347,405,0.0,3 +72905,8,0.0,1,2.4524295330047607,406,0.0,3 +72906,8,1.0,1,2.3464245796203613,407,1.0,3 +72907,8,1.0,1,1.3204216957092285,408,1.0,3 +72908,8,1.0,1,1.7774159908294678,409,0.0,3 +72909,8,1.0,1,2.052412509918213,410,1.0,3 +72910,8,1.0,1,1.4284204244613647,411,1.0,3 +72911,8,1.0,1,1.582418441772461,412,1.0,3 +72912,8,1.0,1,1.4684199094772339,413,1.0,3 +72913,8,1.0,1,1.8904144763946533,414,1.0,3 +72914,8,1.0,1,1.4734197854995728,415,1.0,3 +72915,8,0.0,1,1.8284152746200562,416,0.0,3 +72916,8,1.0,1,1.2794215679168701,417,1.0,3 +72917,8,0.0,1,1.5144193172454834,418,1.0,3 +72918,8,0.0,1,1.3294216394424438,419,0.0,3 +72919,8,1.0,1,1.5014194250106812,420,1.0,3 +72920,8,0.0,1,2.1914172172546387,421,0.0,3 +72921,8,1.0,1,1.2464215755462646,422,1.0,3 +72922,8,1.0,1,1.3894208669662476,423,1.0,3 +72923,8,1.0,1,1.3674211502075195,424,0.0,3 +72924,8,0.0,1,1.482419729232788,425,0.0,3 +72925,8,1.0,1,1.325421690940857,426,0.0,3 +72926,8,0.0,1,2.0104129314422607,427,0.0,3 +72927,8,1.0,1,1.3924208879470825,428,1.0,3 +72928,8,1.0,1,1.3624212741851807,429,1.0,3 +72929,8,1.0,1,1.4344203472137451,430,1.0,3 +72930,8,1.0,1,1.4034206867218018,431,1.0,3 +72931,8,1.0,1,1.3814209699630737,432,1.0,3 +72932,8,1.0,1,1.5714185237884521,433,1.0,3 +72933,8,1.0,1,1.508419394493103,434,1.0,3 +72934,8,1.0,1,1.4114205837249756,435,0.0,3 +72935,8,1.0,1,1.3894208669662476,436,0.0,3 +72936,8,0.0,1,1.675417184829712,437,1.0,3 +72937,8,0.0,1,1.2844215631484985,438,0.0,3 +72938,8,0.0,1,1.6804171800613403,439,0.0,3 +72939,8,1.0,1,1.4524201154708862,440,0.0,3 +72940,8,1.0,1,1.3664212226867676,441,1.0,3 +72941,8,1.0,1,1.513419270515442,442,0.0,3 +72942,8,0.0,1,1.5514187812805176,443,0.0,3 +72943,8,1.0,1,1.4544200897216797,444,1.0,3 +72944,8,1.0,1,1.8714146614074707,445,0.0,3 +72945,8,0.0,1,1.221421480178833,446,1.0,3 +72946,8,0.0,1,1.2054214477539062,447,0.0,3 +72947,8,0.0,1,1.85941481590271,448,1.0,3 +72948,8,1.0,1,2.235419273376465,449,0.0,3 +72949,8,0.0,1,1.7684160470962524,450,0.0,3 +72950,8,1.0,1,1.4444202184677124,451,1.0,3 +72951,8,0.0,1,1.6424176692962646,452,0.0,3 +72952,8,1.0,1,1.8564149141311646,453,1.0,3 +72953,8,1.0,1,1.3184216022491455,454,0.0,3 +72954,8,1.0,1,1.8274152278900146,455,1.0,3 +72955,8,1.0,1,1.2314214706420898,456,1.0,3 +72956,8,1.0,1,1.7854158878326416,457,1.0,3 +72957,8,0.0,1,1.2564215660095215,458,0.0,3 +72958,8,0.0,1,1.4064207077026367,459,1.0,3 +72959,8,0.0,1,2.1114134788513184,460,0.0,3 +72960,8,1.0,1,1.6934170722961426,461,0.0,3 +72961,8,0.0,1,1.395420789718628,462,0.0,3 +72962,8,0.0,1,1.6174180507659912,463,0.0,3 +72963,8,0.0,1,1.1834213733673096,464,1.0,3 +72964,8,1.0,1,1.7434163093566895,465,1.0,3 +72965,8,0.0,1,2.0674121379852295,466,0.0,3 +72966,8,1.0,1,1.5104193687438965,467,0.0,3 +72967,8,0.0,1,1.7574162483215332,468,0.0,3 +72968,8,0.0,1,1.218421459197998,469,0.0,3 +72969,8,0.0,1,1.8254153728485107,470,0.0,3 +72970,8,0.0,1,1.7274165153503418,471,0.0,3 +72971,8,0.0,1,1.840415120124817,472,0.0,3 +72972,8,0.0,1,1.6594173908233643,473,1.0,3 +72973,8,0.0,1,1.759416103363037,474,0.0,3 +72974,8,1.0,1,1.4684199094772339,475,0.0,3 +72975,8,0.0,1,1.343421459197998,476,0.0,3 +72976,8,0.0,1,1.7414164543151855,477,1.0,3 +72977,8,0.0,1,1.3214216232299805,478,0.0,3 +72978,8,0.0,1,1.4954195022583008,479,0.0,3 +72979,8,0.0,1,1.4334203004837036,480,1.0,3 +72980,8,0.0,1,1.629417896270752,481,0.0,3 +72981,8,1.0,1,1.369421124458313,482,1.0,3 +72982,8,0.0,1,1.4994194507598877,483,0.0,3 +72983,8,1.0,1,1.6434175968170166,484,1.0,3 +72984,8,1.0,1,1.4444202184677124,485,1.0,3 +72985,8,0.0,1,1.2044214010238647,486,1.0,3 +72986,8,0.0,1,1.1864213943481445,487,0.0,3 +72987,8,1.0,1,1.5334190130233765,488,1.0,3 +72988,8,1.0,1,1.7034168243408203,489,1.0,3 +72989,8,1.0,1,1.328421711921692,490,0.0,3 +72990,8,0.0,1,1.3364216089248657,491,0.0,3 +72991,8,0.0,1,1.9134142398834229,492,1.0,3 +72992,8,0.0,1,1.319421648979187,493,0.0,3 +72993,8,0.0,1,1.6854171752929688,494,0.0,3 +72994,8,1.0,1,1.288421630859375,495,1.0,3 +72995,8,1.0,1,1.2844215631484985,496,1.0,3 +72996,8,1.0,1,1.442420244216919,497,1.0,3 +72997,8,1.0,1,1.191421389579773,498,0.0,3 +72998,8,1.0,1,1.8414151668548584,499,1.0,3 +72999,8,1.0,1,2.0564122200012207,500,1.0,3 +73000,8,1.0,2,1.325421690940857,1,1.0,3 +73001,8,1.0,2,1.6344177722930908,2,1.0,3 +73002,8,0.0,2,1.5774184465408325,3,0.0,3 +73003,8,1.0,2,1.581418514251709,4,1.0,3 +73004,8,0.0,2,1.6554174423217773,5,0.0,3 +73005,8,1.0,2,1.3864209651947021,6,1.0,3 +73006,8,1.0,2,1.671417236328125,7,1.0,3 +73007,8,1.0,2,1.861414909362793,8,1.0,3 +73008,8,1.0,2,1.2394214868545532,9,1.0,3 +73009,8,1.0,2,1.2104214429855347,10,1.0,3 +73010,8,1.0,2,1.3884209394454956,11,1.0,3 +73011,8,1.0,2,1.4274203777313232,12,0.0,3 +73012,8,1.0,2,1.464419960975647,13,1.0,3 +73013,8,1.0,2,1.4854196310043335,14,1.0,3 +73014,8,1.0,2,1.6134181022644043,15,0.0,3 +73015,8,0.0,2,1.490419626235962,16,0.0,3 +73016,8,1.0,2,1.6664173603057861,17,1.0,3 +73017,8,1.0,2,1.28542160987854,18,1.0,3 +73018,8,1.0,2,1.5504188537597656,19,0.0,3 +73019,8,1.0,2,1.8004156351089478,20,1.0,3 +73020,8,1.0,2,1.5454188585281372,21,0.0,3 +73021,8,0.0,2,1.2464215755462646,22,1.0,3 +73022,8,0.0,2,1.2714215517044067,23,1.0,3 +73023,8,0.0,2,1.3974207639694214,24,1.0,3 +73024,8,0.0,2,1.4664199352264404,25,1.0,3 +73025,8,0.0,2,1.4594199657440186,26,0.0,3 +73026,8,0.0,2,2.1314144134521484,27,1.0,3 +73027,8,0.0,2,1.8084155321121216,28,0.0,3 +73028,8,1.0,2,1.578418493270874,29,0.0,3 +73029,8,0.0,2,1.8694148063659668,30,0.0,3 +73030,8,0.0,2,1.6024181842803955,31,1.0,3 +73031,8,0.0,2,1.4724198579788208,32,0.0,3 +73032,8,1.0,2,1.9464137554168701,33,0.0,3 +73033,8,0.0,2,1.531419038772583,34,1.0,3 +73034,8,0.0,2,1.6284178495407104,35,1.0,3 +73035,8,0.0,2,1.227421522140503,36,0.0,3 +73036,8,0.0,2,1.2544214725494385,37,0.0,3 +73037,8,0.0,2,1.387420892715454,38,0.0,3 +73038,8,0.0,2,1.5444189310073853,39,0.0,3 +73039,8,0.0,2,1.5224192142486572,40,0.0,3 +73040,8,0.0,2,1.8414151668548584,41,0.0,3 +73041,8,1.0,2,1.5234191417694092,42,1.0,3 +73042,8,1.0,2,1.2314214706420898,43,0.0,3 +73043,8,0.0,2,1.3794209957122803,44,0.0,3 +73044,8,0.0,2,1.487419605255127,45,0.0,3 +73045,8,0.0,2,2.1314144134521484,46,1.0,3 +73046,8,0.0,2,1.2544214725494385,47,0.0,3 +73047,8,1.0,2,1.4514200687408447,48,1.0,3 +73048,8,1.0,2,2.044412612915039,49,0.0,3 +73049,8,0.0,2,1.581418514251709,50,0.0,3 +73050,8,1.0,2,1.5184192657470703,51,1.0,3 +73051,8,1.0,2,1.5164192914962769,52,1.0,3 +73052,8,1.0,2,1.2764215469360352,53,1.0,3 +73053,8,1.0,2,1.67441725730896,54,0.0,3 +73054,8,0.0,2,1.862414836883545,55,0.0,3 +73055,8,0.0,2,1.4264204502105713,56,1.0,3 +73056,8,0.0,2,1.2054214477539062,57,0.0,3 +73057,8,1.0,2,2.7044413089752197,58,0.0,3 +73058,8,0.0,2,1.2664215564727783,59,1.0,3 +73059,8,0.0,2,1.8714146614074707,60,1.0,3 +73060,8,0.0,2,1.2044214010238647,61,0.0,3 +73061,8,1.0,2,1.8494150638580322,62,0.0,3 +73062,8,0.0,2,1.252421498298645,63,1.0,3 +73063,8,1.0,2,1.3784210681915283,64,1.0,3 +73064,8,0.0,2,2.0084128379821777,65,1.0,3 +73065,8,0.0,2,1.2014213800430298,66,0.0,3 +73066,8,1.0,2,1.3154217004776,67,0.0,3 +73067,8,0.0,2,1.1994214057922363,68,1.0,3 +73068,8,0.0,2,1.313421607017517,69,1.0,3 +73069,8,1.0,2,1.3614212274551392,70,0.0,3 +73070,8,0.0,2,1.230421543121338,71,1.0,3 +73071,8,0.0,2,1.3584213256835938,72,0.0,3 +73072,8,1.0,2,1.857414960861206,73,1.0,3 +73073,8,1.0,2,1.3374215364456177,74,0.0,3 +73074,8,1.0,2,1.5904183387756348,75,1.0,3 +73075,8,1.0,2,1.8374152183532715,76,1.0,3 +73076,8,1.0,2,1.2414214611053467,77,1.0,3 +73077,8,1.0,2,1.7294166088104248,78,1.0,3 +73078,8,1.0,2,1.6614174842834473,79,1.0,3 +73079,8,1.0,2,1.5264191627502441,80,0.0,3 +73080,8,1.0,2,1.6874170303344727,81,0.0,3 +73081,8,0.0,2,1.3334215879440308,82,0.0,3 +73082,8,0.0,2,1.5164192914962769,83,0.0,3 +73083,8,1.0,2,1.368421196937561,84,1.0,3 +73084,8,1.0,2,1.5294190645217896,85,0.0,3 +73085,8,0.0,2,1.7334165573120117,86,0.0,3 +73086,8,0.0,2,1.3174216747283936,87,0.0,3 +73087,8,1.0,2,2.0664122104644775,88,1.0,3 +73088,8,1.0,2,1.4954195022583008,89,1.0,3 +73089,8,1.0,2,1.2734215259552002,90,0.0,3 +73090,8,0.0,2,1.26142156124115,91,0.0,3 +73091,8,1.0,2,1.8564149141311646,92,0.0,3 +73092,8,1.0,2,2.1194138526916504,93,0.0,3 +73093,8,1.0,2,2.0764122009277344,94,1.0,3 +73094,8,1.0,2,2.0704121589660645,95,0.0,3 +73095,8,0.0,2,1.4534200429916382,96,1.0,3 +73096,8,0.0,2,1.286421537399292,97,0.0,3 +73097,8,1.0,2,2.579435348510742,98,0.0,3 +73098,8,0.0,2,1.7474162578582764,99,0.0,3 +73099,8,0.0,2,1.328421711921692,100,1.0,3 +73100,8,1.0,2,1.8764146566390991,101,1.0,3 +73101,8,0.0,2,1.438420295715332,102,1.0,3 +73102,8,0.0,2,1.6084181070327759,103,0.0,3 +73103,8,1.0,2,1.3294216394424438,104,0.0,3 +73104,8,0.0,2,1.5004194974899292,105,0.0,3 +73105,8,0.0,2,2.1184139251708984,106,1.0,3 +73106,8,0.0,2,1.5024194717407227,107,1.0,3 +73107,8,0.0,2,1.4274203777313232,108,0.0,3 +73108,8,1.0,2,1.5924183130264282,109,1.0,3 +73109,8,1.0,2,1.6454176902770996,110,0.0,3 +73110,8,1.0,2,1.7814159393310547,111,1.0,3 +73111,8,1.0,2,1.2574214935302734,112,0.0,3 +73112,8,0.0,2,1.5554187297821045,113,0.0,3 +73113,8,1.0,2,1.3324216604232788,114,0.0,3 +73114,8,0.0,2,1.4094206094741821,115,0.0,3 +73115,8,0.0,2,1.4454201459884644,116,1.0,3 +73116,8,0.0,2,1.369421124458313,117,0.0,3 +73117,8,1.0,2,1.675417184829712,118,0.0,3 +73118,8,0.0,2,2.0084128379821777,119,0.0,3 +73119,8,0.0,2,1.6394176483154297,120,0.0,3 +73120,8,0.0,2,1.3804210424423218,121,0.0,3 +73121,8,1.0,2,1.6604174375534058,122,1.0,3 +73122,8,1.0,2,1.3764210939407349,123,1.0,3 +73123,8,1.0,2,1.2534215450286865,124,1.0,3 +73124,8,1.0,2,1.390420913696289,125,1.0,3 +73125,8,1.0,2,1.3864209651947021,126,0.0,3 +73126,8,0.0,2,1.581418514251709,127,1.0,3 +73127,8,0.0,2,1.26142156124115,128,0.0,3 +73128,8,1.0,2,1.6414177417755127,129,0.0,3 +73129,8,1.0,2,2.290421962738037,130,0.0,3 +73130,8,0.0,2,1.6974170207977295,131,0.0,3 +73131,8,0.0,2,1.4554200172424316,132,0.0,3 +73132,8,0.0,2,1.4184205532073975,133,1.0,3 +73133,8,0.0,2,1.2444214820861816,134,1.0,3 +73134,8,0.0,2,2.0654122829437256,135,0.0,3 +73135,8,0.0,2,1.2414214611053467,136,1.0,3 +73136,8,0.0,2,1.1894214153289795,137,1.0,3 +73137,8,0.0,2,1.438420295715332,138,0.0,3 +73138,8,0.0,2,2.1064133644104004,139,0.0,3 +73139,8,0.0,2,1.7384164333343506,140,0.0,3 +73140,8,0.0,2,1.677417278289795,141,1.0,3 +73141,8,0.0,2,1.2374215126037598,142,0.0,3 +73142,8,1.0,2,1.6854171752929688,143,0.0,3 +73143,8,1.0,2,1.7014169692993164,144,1.0,3 +73144,8,0.0,2,1.2904216051101685,145,0.0,3 +73145,8,1.0,2,1.5584187507629395,146,0.0,3 +73146,8,0.0,2,1.644417643547058,147,0.0,3 +73147,8,1.0,2,1.7984156608581543,148,0.0,3 +73148,8,0.0,2,2.0314126014709473,149,1.0,3 +73149,8,0.0,2,1.652417540550232,150,0.0,3 +73150,8,1.0,2,1.4944195747375488,151,1.0,3 +73151,8,1.0,2,1.4634199142456055,152,1.0,3 +73152,8,1.0,2,1.7904157638549805,153,0.0,3 +73153,8,0.0,2,1.8954143524169922,154,1.0,3 +73154,8,0.0,2,1.4704198837280273,155,0.0,3 +73155,8,1.0,2,2.513432502746582,156,1.0,3 +73156,8,1.0,2,1.5584187507629395,157,1.0,3 +73157,8,0.0,2,1.2934216260910034,158,0.0,3 +73158,8,1.0,2,1.9174141883850098,159,1.0,3 +73159,8,0.0,2,1.6424176692962646,160,0.0,3 +73160,8,1.0,2,1.6514174938201904,161,1.0,3 +73161,8,1.0,2,1.391420841217041,162,1.0,3 +73162,8,1.0,2,1.552418828010559,163,0.0,3 +73163,8,1.0,2,1.4064207077026367,164,0.0,3 +73164,8,1.0,2,1.6644173860549927,165,1.0,3 +73165,8,1.0,2,1.3454214334487915,166,1.0,3 +73166,8,1.0,2,1.2294214963912964,167,1.0,3 +73167,8,1.0,2,1.5144193172454834,168,0.0,3 +73168,8,1.0,2,1.5504188537597656,169,1.0,3 +73169,8,1.0,2,1.7974157333374023,170,1.0,3 +73170,8,1.0,2,1.7554161548614502,171,1.0,3 +73171,8,1.0,2,1.9084142446517944,172,1.0,3 +73172,8,1.0,2,1.3834209442138672,173,1.0,3 +73173,8,0.0,2,1.319421648979187,174,1.0,3 +73174,8,1.0,2,1.8124154806137085,175,1.0,3 +73175,8,0.0,2,2.3844263553619385,176,0.0,3 +73176,8,1.0,2,1.4554200172424316,177,1.0,3 +73177,8,1.0,2,1.3304216861724854,178,0.0,3 +73178,8,0.0,2,1.4544200897216797,179,0.0,3 +73179,8,0.0,2,2.4094276428222656,180,1.0,3 +73180,8,0.0,2,1.5264191627502441,181,0.0,3 +73181,8,0.0,2,1.2974215745925903,182,0.0,3 +73182,8,0.0,2,1.508419394493103,183,1.0,3 +73183,8,0.0,2,1.5184192657470703,184,0.0,3 +73184,8,0.0,2,1.5254191160202026,185,1.0,3 +73185,8,0.0,2,1.574418544769287,186,0.0,3 +73186,8,1.0,2,1.3364216089248657,187,1.0,3 +73187,8,0.0,2,1.5264191627502441,188,0.0,3 +73188,8,1.0,2,1.8024156093597412,189,0.0,3 +73189,8,1.0,2,1.3884209394454956,190,0.0,3 +73190,8,1.0,2,1.2964216470718384,191,0.0,3 +73191,8,1.0,2,1.5004194974899292,192,1.0,3 +73192,8,1.0,2,1.725416660308838,193,1.0,3 +73193,8,1.0,2,1.527419090270996,194,1.0,3 +73194,8,1.0,2,1.2624216079711914,195,0.0,3 +73195,8,1.0,2,1.740416407585144,196,0.0,3 +73196,8,0.0,2,1.4984195232391357,197,1.0,3 +73197,8,0.0,2,1.251421570777893,198,1.0,3 +73198,8,0.0,2,1.4814196825027466,199,0.0,3 +73199,8,0.0,2,1.9834132194519043,200,1.0,3 +73200,8,0.0,2,1.2734215259552002,201,0.0,3 +73201,8,0.0,2,1.6014182567596436,202,0.0,3 +73202,8,0.0,2,1.6784172058105469,203,1.0,3 +73203,8,0.0,2,1.258421540260315,204,1.0,3 +73204,8,0.0,2,1.3974207639694214,205,0.0,3 +73205,8,1.0,2,1.9174141883850098,206,0.0,3 +73206,8,0.0,2,1.420420527458191,207,1.0,3 +73207,8,0.0,2,1.248421549797058,208,0.0,3 +73208,8,0.0,2,1.387420892715454,209,1.0,3 +73209,8,0.0,2,1.6164180040359497,210,0.0,3 +73210,8,1.0,2,1.9344139099121094,211,1.0,3 +73211,8,1.0,2,1.5174192190170288,212,1.0,3 +73212,8,1.0,2,1.5374189615249634,213,1.0,3 +73213,8,1.0,2,1.5724185705184937,214,0.0,3 +73214,8,0.0,2,1.4474201202392578,215,1.0,3 +73215,8,0.0,2,1.2444214820861816,216,0.0,3 +73216,8,0.0,2,1.2434215545654297,217,0.0,3 +73217,8,1.0,2,1.347421407699585,218,0.0,3 +73218,8,0.0,2,1.7394163608551025,219,1.0,3 +73219,8,0.0,2,1.4264204502105713,220,0.0,3 +73220,8,0.0,2,1.8984143733978271,221,1.0,3 +73221,8,0.0,2,1.1934213638305664,222,0.0,3 +73222,8,0.0,2,1.2464215755462646,223,1.0,3 +73223,8,0.0,2,1.3124216794967651,224,0.0,3 +73224,8,0.0,2,1.2774215936660767,225,0.0,3 +73225,8,1.0,2,1.3384215831756592,226,1.0,3 +73226,8,1.0,2,2.0704121589660645,227,0.0,3 +73227,8,1.0,2,1.6624174118041992,228,1.0,3 +73228,8,1.0,2,1.4444202184677124,229,1.0,3 +73229,8,1.0,2,1.9044142961502075,230,0.0,3 +73230,8,1.0,2,1.4264204502105713,231,1.0,3 +73231,8,1.0,2,1.387420892715454,232,1.0,3 +73232,8,1.0,2,1.667417287826538,233,0.0,3 +73233,8,1.0,2,1.9524136781692505,234,1.0,3 +73234,8,1.0,2,1.6204179525375366,235,0.0,3 +73235,8,1.0,2,2.3774261474609375,236,1.0,3 +73236,8,1.0,2,1.7094168663024902,237,0.0,3 +73237,8,1.0,2,1.2964216470718384,238,0.0,3 +73238,8,1.0,2,2.293422222137451,239,0.0,3 +73239,8,1.0,2,1.6034181118011475,240,1.0,3 +73240,8,1.0,2,1.3404215574264526,241,0.0,3 +73241,8,0.0,2,1.6624174118041992,242,0.0,3 +73242,8,0.0,2,1.3354215621948242,243,0.0,3 +73243,8,0.0,2,1.7934157848358154,244,0.0,3 +73244,8,0.0,2,1.3044216632843018,245,0.0,3 +73245,8,0.0,2,1.6904170513153076,246,1.0,3 +73246,8,0.0,2,1.6874170303344727,247,0.0,3 +73247,8,0.0,2,1.7844158411026,248,0.0,3 +73248,8,0.0,2,1.3154217004776,249,0.0,3 +73249,8,0.0,2,1.8694148063659668,250,0.0,3 +73250,8,0.0,2,1.343421459197998,251,0.0,3 +73251,8,1.0,2,1.6354176998138428,252,0.0,3 +73252,8,0.0,2,1.6404176950454712,253,1.0,3 +73253,8,0.0,2,1.2774215936660767,254,0.0,3 +73254,8,1.0,2,1.4964195489883423,255,0.0,3 +73255,8,0.0,2,1.3094216585159302,256,0.0,3 +73256,8,0.0,2,1.292421579360962,257,0.0,3 +73257,8,1.0,2,1.9674134254455566,258,0.0,3 +73258,8,1.0,2,1.5594186782836914,259,1.0,3 +73259,8,1.0,2,1.5384190082550049,260,1.0,3 +73260,8,1.0,2,1.416420578956604,261,0.0,3 +73261,8,0.0,2,2.0124130249023438,262,1.0,3 +73262,8,0.0,2,1.4334203004837036,263,0.0,3 +73263,8,1.0,2,1.3214216232299805,264,1.0,3 +73264,8,0.0,2,1.5284191370010376,265,1.0,3 +73265,8,0.0,2,1.9684134721755981,266,1.0,3 +73266,8,1.0,2,1.3394215106964111,267,0.0,3 +73267,8,0.0,2,1.2364214658737183,268,0.0,3 +73268,8,0.0,2,1.4154205322265625,269,1.0,3 +73269,8,0.0,2,1.7804158926010132,270,1.0,3 +73270,8,0.0,2,2.0294127464294434,271,0.0,3 +73271,8,1.0,2,2.2034177780151367,272,0.0,3 +73272,8,1.0,2,2.0184128284454346,273,0.0,3 +73273,8,1.0,2,1.6894171237945557,274,0.0,3 +73274,8,1.0,2,1.3824210166931152,275,1.0,3 +73275,8,0.0,2,1.2534215450286865,276,1.0,3 +73276,8,0.0,2,1.5804184675216675,277,1.0,3 +73277,8,0.0,2,1.947413682937622,278,1.0,3 +73278,8,0.0,2,1.4854196310043335,279,1.0,3 +73279,8,1.0,2,1.8504149913787842,280,0.0,3 +73280,8,0.0,2,1.1814213991165161,281,0.0,3 +73281,8,0.0,2,1.8504149913787842,282,1.0,3 +73282,8,0.0,2,1.7284165620803833,283,0.0,3 +73283,8,0.0,2,1.582418441772461,284,0.0,3 +73284,8,0.0,2,1.3964208364486694,285,0.0,3 +73285,8,0.0,2,1.2234214544296265,286,1.0,3 +73286,8,0.0,2,1.2464215755462646,287,0.0,3 +73287,8,0.0,2,1.85941481590271,288,1.0,3 +73288,8,0.0,2,1.5214191675186157,289,1.0,3 +73289,8,0.0,2,1.1904213428497314,290,1.0,3 +73290,8,0.0,2,1.4114205837249756,291,1.0,3 +73291,8,0.0,2,1.3084216117858887,292,1.0,3 +73292,8,0.0,2,1.5014194250106812,293,1.0,3 +73293,8,0.0,2,1.3034216165542603,294,0.0,3 +73294,8,1.0,2,2.5934362411499023,295,0.0,3 +73295,8,1.0,2,1.9704134464263916,296,0.0,3 +73296,8,0.0,2,1.3074216842651367,297,0.0,3 +73297,8,0.0,2,1.53541898727417,298,1.0,3 +73298,8,0.0,2,1.227421522140503,299,1.0,3 +73299,8,0.0,2,1.4364203214645386,300,1.0,3 +73300,8,0.0,2,1.5914182662963867,301,1.0,3 +73301,8,0.0,2,1.5284191370010376,302,0.0,3 +73302,8,1.0,2,1.5624186992645264,303,1.0,3 +73303,8,1.0,2,2.0294127464294434,304,1.0,3 +73304,8,1.0,2,1.7274165153503418,305,1.0,3 +73305,8,1.0,2,1.509419322013855,306,0.0,3 +73306,8,0.0,2,1.3354215621948242,307,0.0,3 +73307,8,1.0,2,1.675417184829712,308,0.0,3 +73308,8,1.0,2,1.7904157638549805,309,0.0,3 +73309,8,1.0,2,1.625417947769165,310,1.0,3 +73310,8,1.0,2,1.7714159488677979,311,0.0,3 +73311,8,1.0,2,1.5864183902740479,312,0.0,3 +73312,8,0.0,2,1.5324190855026245,313,1.0,3 +73313,8,0.0,2,1.2684215307235718,314,1.0,3 +73314,8,0.0,2,1.4334203004837036,315,1.0,3 +73315,8,0.0,2,1.1764214038848877,316,1.0,3 +73316,8,0.0,2,1.4014207124710083,317,1.0,3 +73317,8,0.0,2,1.286421537399292,318,1.0,3 +73318,8,0.0,2,1.218421459197998,319,0.0,3 +73319,8,0.0,2,2.0664122104644775,320,1.0,3 +73320,8,0.0,2,1.2954216003417969,321,1.0,3 +73321,8,0.0,2,1.2144215106964111,322,0.0,3 +73322,8,0.0,2,1.4374202489852905,323,1.0,3 +73323,8,0.0,2,1.2094213962554932,324,0.0,3 +73324,8,1.0,2,2.1174139976501465,325,1.0,3 +73325,8,1.0,2,1.557418704032898,326,0.0,3 +73326,8,1.0,2,1.4444202184677124,327,0.0,3 +73327,8,1.0,2,1.2664215564727783,328,1.0,3 +73328,8,1.0,2,1.2314214706420898,329,0.0,3 +73329,8,0.0,2,1.148421287536621,330,0.0,3 +73330,8,1.0,2,1.6434175968170166,331,1.0,3 +73331,8,1.0,2,1.4404202699661255,332,1.0,3 +73332,8,1.0,2,1.3444215059280396,333,1.0,3 +73333,8,1.0,2,1.7954156398773193,334,0.0,3 +73334,8,1.0,2,2.0864124298095703,335,1.0,3 +73335,8,1.0,2,1.6794171333312988,336,1.0,3 +73336,8,1.0,2,1.4534200429916382,337,0.0,3 +73337,8,0.0,2,1.442420244216919,338,0.0,3 +73338,8,1.0,2,2.1404149532318115,339,1.0,3 +73339,8,1.0,2,1.3804210424423218,340,0.0,3 +73340,8,0.0,2,1.1984214782714844,341,0.0,3 +73341,8,0.0,2,1.319421648979187,342,1.0,3 +73342,8,0.0,2,1.5264191627502441,343,0.0,3 +73343,8,0.0,2,1.5904183387756348,344,0.0,3 +73344,8,0.0,2,1.5764185190200806,345,0.0,3 +73345,8,0.0,2,2.1684162616729736,346,1.0,3 +73346,8,0.0,2,1.3644212484359741,347,1.0,3 +73347,8,0.0,2,1.725416660308838,348,0.0,3 +73348,8,0.0,2,1.28542160987854,349,0.0,3 +73349,8,1.0,2,2.537433624267578,350,1.0,3 +73350,8,1.0,2,1.604418158531189,351,0.0,3 +73351,8,1.0,2,1.4894195795059204,352,1.0,3 +73352,8,1.0,2,1.7424163818359375,353,1.0,3 +73353,8,1.0,2,1.4664199352264404,354,0.0,3 +73354,8,0.0,2,1.8304152488708496,355,0.0,3 +73355,8,1.0,2,2.0714120864868164,356,0.0,3 +73356,8,0.0,2,1.6114180088043213,357,0.0,3 +73357,8,1.0,2,1.9804133176803589,358,0.0,3 +73358,8,1.0,2,1.3124216794967651,359,0.0,3 +73359,8,1.0,2,1.4664199352264404,360,1.0,3 +73360,8,1.0,2,1.5224192142486572,361,0.0,3 +73361,8,0.0,2,1.5214191675186157,362,0.0,3 +73362,8,1.0,2,1.6334178447723389,363,0.0,3 +73363,8,0.0,2,1.8164154291152954,364,0.0,3 +73364,8,0.0,2,1.5514187812805176,365,1.0,3 +73365,8,0.0,2,1.2044214010238647,366,0.0,3 +73366,8,1.0,2,1.4944195747375488,367,1.0,3 +73367,8,1.0,2,1.2724215984344482,368,0.0,3 +73368,8,0.0,2,2.266420841217041,369,1.0,3 +73369,8,0.0,2,1.486419677734375,370,1.0,3 +73370,8,0.0,2,1.3404215574264526,371,1.0,3 +73371,8,0.0,2,1.2344214916229248,372,1.0,3 +73372,8,0.0,2,1.328421711921692,373,0.0,3 +73373,8,0.0,2,1.1994214057922363,374,0.0,3 +73374,8,1.0,2,1.185421347618103,375,1.0,3 +73375,8,0.0,2,1.2384214401245117,376,1.0,3 +73376,8,0.0,2,1.4094206094741821,377,1.0,3 +73377,8,0.0,2,1.2444214820861816,378,1.0,3 +73378,8,1.0,2,1.5424189567565918,379,1.0,3 +73379,8,1.0,2,1.5474188327789307,380,1.0,3 +73380,8,1.0,2,1.4894195795059204,381,1.0,3 +73381,8,1.0,2,2.0914125442504883,382,0.0,3 +73382,8,0.0,2,1.7424163818359375,383,1.0,3 +73383,8,0.0,2,1.2144215106964111,384,0.0,3 +73384,8,0.0,2,1.2334214448928833,385,1.0,3 +73385,8,0.0,2,1.954413652420044,386,0.0,3 +73386,8,0.0,2,1.4244204759597778,387,0.0,3 +73387,8,1.0,2,1.416420578956604,388,1.0,3 +73388,8,1.0,2,1.2534215450286865,389,1.0,3 +73389,8,1.0,2,1.8194153308868408,390,1.0,3 +73390,8,1.0,2,1.6974170207977295,391,1.0,3 +73391,8,1.0,2,1.4374202489852905,392,1.0,3 +73392,8,1.0,2,1.7424163818359375,393,1.0,3 +73393,8,1.0,2,1.5404189825057983,394,1.0,3 +73394,8,1.0,2,1.4464201927185059,395,1.0,3 +73395,8,1.0,2,1.3174216747283936,396,1.0,3 +73396,8,1.0,2,1.3054215908050537,397,1.0,3 +73397,8,1.0,2,1.6364177465438843,398,1.0,3 +73398,8,1.0,2,1.5164192914962769,399,0.0,3 +73399,8,0.0,2,1.3844209909439087,400,0.0,3 +73400,8,1.0,2,1.3274216651916504,401,1.0,3 +73401,8,0.0,2,1.9224140644073486,402,0.0,3 +73402,8,1.0,2,1.8914144039154053,403,1.0,3 +73403,8,1.0,2,1.3994207382202148,404,0.0,3 +73404,8,0.0,2,2.3784260749816895,405,0.0,3 +73405,8,0.0,2,1.3864209651947021,406,0.0,3 +73406,8,0.0,2,1.3674211502075195,407,0.0,3 +73407,8,0.0,2,1.1454212665557861,408,1.0,3 +73408,8,0.0,2,1.1794214248657227,409,0.0,3 +73409,8,0.0,2,1.3794209957122803,410,1.0,3 +73410,8,0.0,2,2.1614160537719727,411,0.0,3 +73411,8,1.0,2,1.6514174938201904,412,0.0,3 +73412,8,1.0,2,1.604418158531189,413,1.0,3 +73413,8,1.0,2,1.5864183902740479,414,1.0,3 +73414,8,1.0,2,1.5414189100265503,415,1.0,3 +73415,8,1.0,2,1.3664212226867676,416,1.0,3 +73416,8,1.0,2,1.4414201974868774,417,0.0,3 +73417,8,1.0,2,1.715416669845581,418,1.0,3 +73418,8,1.0,2,1.5774184465408325,419,1.0,3 +73419,8,1.0,2,1.417420506477356,420,0.0,3 +73420,8,1.0,2,1.667417287826538,421,0.0,3 +73421,8,0.0,2,1.322421669960022,422,1.0,3 +73422,8,0.0,2,1.2094213962554932,423,0.0,3 +73423,8,0.0,2,1.7944157123565674,424,0.0,3 +73424,8,0.0,2,1.5034193992614746,425,0.0,3 +73425,8,0.0,2,1.4264204502105713,426,1.0,3 +73426,8,0.0,2,1.2654215097427368,427,0.0,3 +73427,8,0.0,2,1.5924183130264282,428,1.0,3 +73428,8,0.0,2,1.2044214010238647,429,0.0,3 +73429,8,1.0,2,1.4814196825027466,430,0.0,3 +73430,8,0.0,2,1.5064194202423096,431,0.0,3 +73431,8,0.0,2,2.1044132709503174,432,1.0,3 +73432,8,0.0,2,1.692417025566101,433,0.0,3 +73433,8,0.0,2,1.4814196825027466,434,0.0,3 +73434,8,1.0,2,1.905414342880249,435,0.0,3 +73435,8,1.0,2,1.4294203519821167,436,0.0,3 +73436,8,0.0,2,1.465419888496399,437,0.0,3 +73437,8,0.0,2,1.8254153728485107,438,1.0,3 +73438,8,0.0,2,1.6994168758392334,439,0.0,3 +73439,8,0.0,2,1.2194215059280396,440,0.0,3 +73440,8,0.0,2,1.435420274734497,441,1.0,3 +73441,8,0.0,2,1.316421627998352,442,0.0,3 +73442,8,0.0,2,1.7454164028167725,443,1.0,3 +73443,8,0.0,2,1.5584187507629395,444,0.0,3 +73444,8,1.0,2,1.6944169998168945,445,0.0,3 +73445,8,1.0,2,2.0564122200012207,446,0.0,3 +73446,8,0.0,2,1.2904216051101685,447,1.0,3 +73447,8,0.0,2,1.25542151927948,448,1.0,3 +73448,8,0.0,2,1.412420630455017,449,1.0,3 +73449,8,0.0,2,1.3844209909439087,450,1.0,3 +73450,8,0.0,2,1.6514174938201904,451,0.0,3 +73451,8,0.0,2,1.3754210472106934,452,0.0,3 +73452,8,1.0,2,1.9874131679534912,453,0.0,3 +73453,8,1.0,2,1.365421175956726,454,0.0,3 +73454,8,1.0,2,1.7104167938232422,455,1.0,3 +73455,8,1.0,2,1.248421549797058,456,0.0,3 +73456,8,1.0,2,1.4444202184677124,457,0.0,3 +73457,8,1.0,2,1.3774210214614868,458,1.0,3 +73458,8,1.0,2,1.4734197854995728,459,1.0,3 +73459,8,1.0,2,2.3734259605407715,460,0.0,3 +73460,8,1.0,2,1.6894171237945557,461,0.0,3 +73461,8,0.0,2,1.4024207592010498,462,0.0,3 +73462,8,0.0,2,1.9424138069152832,463,0.0,3 +73463,8,1.0,2,2.1784167289733887,464,1.0,3 +73464,8,1.0,2,1.5594186782836914,465,0.0,3 +73465,8,0.0,2,2.3684256076812744,466,0.0,3 +73466,8,0.0,2,1.583418369293213,467,1.0,3 +73467,8,0.0,2,1.3484214544296265,468,1.0,3 +73468,8,0.0,2,1.4714198112487793,469,1.0,3 +73469,8,0.0,2,1.316421627998352,470,0.0,3 +73470,8,1.0,2,1.2954216003417969,471,1.0,3 +73471,8,0.0,2,1.365421175956726,472,1.0,3 +73472,8,1.0,2,1.9454138278961182,473,0.0,3 +73473,8,0.0,2,1.4804197549819946,474,0.0,3 +73474,8,0.0,2,1.395420789718628,475,0.0,3 +73475,8,0.0,2,1.4034206867218018,476,1.0,3 +73476,8,0.0,2,1.1654213666915894,477,0.0,3 +73477,8,0.0,2,1.5774184465408325,478,1.0,3 +73478,8,0.0,2,1.3304216861724854,479,0.0,3 +73479,8,0.0,2,1.3334215879440308,480,0.0,3 +73480,8,0.0,2,1.3014216423034668,481,0.0,3 +73481,8,1.0,2,1.395420789718628,482,0.0,3 +73482,8,1.0,2,1.4254204034805298,483,1.0,3 +73483,8,1.0,2,1.6344177722930908,484,1.0,3 +73484,8,1.0,2,1.438420295715332,485,0.0,3 +73485,8,1.0,2,1.8534150123596191,486,1.0,3 +73486,8,1.0,2,1.3714210987091064,487,1.0,3 +73487,8,1.0,2,1.6094181537628174,488,1.0,3 +73488,8,1.0,2,1.811415433883667,489,1.0,3 +73489,8,1.0,2,1.3484214544296265,490,0.0,3 +73490,8,0.0,2,1.8524149656295776,491,0.0,3 +73491,8,1.0,2,1.319421648979187,492,0.0,3 +73492,8,0.0,2,2.001413106918335,493,1.0,3 +73493,8,0.0,2,1.1774213314056396,494,0.0,3 +73494,8,1.0,2,1.8304152488708496,495,0.0,3 +73495,8,1.0,2,1.4664199352264404,496,1.0,3 +73496,8,1.0,2,1.4044207334518433,497,0.0,3 +73497,8,1.0,2,2.225419044494629,498,1.0,3 +73498,8,1.0,2,1.289421558380127,499,0.0,3 +73499,8,1.0,2,2.4084274768829346,500,0.0,3 +73500,9,1.0,0,1.2491552829742432,1,1.0,3 +73501,9,1.0,0,1.4361532926559448,2,0.0,3 +73502,9,0.0,0,1.3491544723510742,3,0.0,3 +73503,9,0.0,0,1.7861487865447998,4,0.0,3 +73504,9,1.0,0,1.7131497859954834,5,1.0,3 +73505,9,1.0,0,1.7481493949890137,6,1.0,3 +73506,9,1.0,0,1.2781553268432617,7,1.0,3 +73507,9,1.0,0,1.288155198097229,8,1.0,3 +73508,9,1.0,0,1.336154580116272,9,1.0,3 +73509,9,1.0,0,1.3441544771194458,10,1.0,3 +73510,9,1.0,0,1.5121523141860962,11,0.0,3 +73511,9,0.0,0,1.4891526699066162,12,0.0,3 +73512,9,1.0,0,1.9861462116241455,13,1.0,3 +73513,9,1.0,0,1.8371481895446777,14,1.0,3 +73514,9,0.0,0,1.450153112411499,15,1.0,3 +73515,9,0.0,0,1.2771552801132202,16,1.0,3 +73516,9,0.0,0,1.1841551065444946,17,0.0,3 +73517,9,1.0,0,1.6481506824493408,18,1.0,3 +73518,9,1.0,0,1.6581504344940186,19,1.0,3 +73519,9,1.0,0,1.5661516189575195,20,1.0,3 +73520,9,1.0,0,1.6661503314971924,21,1.0,3 +73521,9,1.0,0,1.4451532363891602,22,1.0,3 +73522,9,1.0,0,1.409153699874878,23,1.0,3 +73523,9,1.0,0,1.3211548328399658,24,1.0,3 +73524,9,1.0,0,1.7931487560272217,25,1.0,3 +73525,9,1.0,0,1.26515531539917,26,1.0,3 +73526,9,1.0,0,1.7911487817764282,27,0.0,3 +73527,9,0.0,0,2.021145820617676,28,0.0,3 +73528,9,1.0,0,1.3041549921035767,29,1.0,3 +73529,9,1.0,0,1.38715398311615,30,0.0,3 +73530,9,1.0,0,1.3721541166305542,31,1.0,3 +73531,9,1.0,0,1.6291508674621582,32,1.0,3 +73532,9,1.0,0,1.9521467685699463,33,1.0,3 +73533,9,1.0,0,1.9251470565795898,34,1.0,3 +73534,9,1.0,0,1.3211548328399658,35,0.0,3 +73535,9,0.0,0,1.5351520776748657,36,0.0,3 +73536,9,1.0,0,1.3731541633605957,37,1.0,3 +73537,9,1.0,0,1.4911526441574097,38,1.0,3 +73538,9,1.0,0,1.5031524896621704,39,1.0,3 +73539,9,1.0,0,1.1871551275253296,40,1.0,3 +73540,9,1.0,0,1.317154884338379,41,1.0,3 +73541,9,1.0,0,1.3941538333892822,42,1.0,3 +73542,9,1.0,0,1.2301552295684814,43,1.0,3 +73543,9,0.0,0,1.1521550416946411,44,1.0,3 +73544,9,1.0,0,1.6671503782272339,45,1.0,3 +73545,9,0.0,0,1.5121523141860962,46,0.0,3 +73546,9,1.0,0,1.4081536531448364,47,1.0,3 +73547,9,1.0,0,1.5371520519256592,48,1.0,3 +73548,9,1.0,0,1.4161535501480103,49,1.0,3 +73549,9,1.0,0,1.5581517219543457,50,1.0,3 +73550,9,1.0,0,1.2971551418304443,51,1.0,3 +73551,9,1.0,0,1.380154013633728,52,1.0,3 +73552,9,1.0,0,1.4661529064178467,53,1.0,3 +73553,9,1.0,0,1.3691542148590088,54,1.0,3 +73554,9,1.0,0,1.5101523399353027,55,1.0,3 +73555,9,1.0,0,1.4651529788970947,56,1.0,3 +73556,9,1.0,0,1.5291521549224854,57,1.0,3 +73557,9,1.0,0,1.3371546268463135,58,1.0,3 +73558,9,1.0,0,1.5141522884368896,59,0.0,3 +73559,9,0.0,0,1.1391550302505493,60,0.0,3 +73560,9,0.0,0,2.0831480026245117,61,0.0,3 +73561,9,0.0,0,1.2171552181243896,62,0.0,3 +73562,9,1.0,0,1.6201510429382324,63,1.0,3 +73563,9,1.0,0,1.4661529064178467,64,1.0,3 +73564,9,0.0,0,1.2601553201675415,65,0.0,3 +73565,9,1.0,0,1.6781501770019531,66,1.0,3 +73566,9,1.0,0,1.641150712966919,67,1.0,3 +73567,9,1.0,0,2.101149082183838,68,1.0,3 +73568,9,1.0,0,1.4471532106399536,69,1.0,3 +73569,9,1.0,0,1.2371551990509033,70,1.0,3 +73570,9,1.0,0,2.150151252746582,71,1.0,3 +73571,9,1.0,0,1.428153395652771,72,1.0,3 +73572,9,1.0,0,1.9921462535858154,73,1.0,3 +73573,9,1.0,0,2.3001582622528076,74,1.0,3 +73574,9,1.0,0,1.6931500434875488,75,1.0,3 +73575,9,1.0,0,1.730149507522583,76,1.0,3 +73576,9,1.0,0,1.7051498889923096,77,1.0,3 +73577,9,1.0,0,1.65915048122406,78,1.0,3 +73578,9,1.0,0,1.5311521291732788,79,1.0,3 +73579,9,1.0,0,1.4081536531448364,80,1.0,3 +73580,9,0.0,0,1.594151258468628,81,1.0,3 +73581,9,1.0,0,1.3511544466018677,82,0.0,3 +73582,9,0.0,0,1.5981512069702148,83,0.0,3 +73583,9,1.0,0,2.131150245666504,84,1.0,3 +73584,9,1.0,0,1.4741528034210205,85,1.0,3 +73585,9,0.0,0,1.4511531591415405,86,0.0,3 +73586,9,1.0,0,1.2861552238464355,87,1.0,3 +73587,9,1.0,0,1.3631542921066284,88,1.0,3 +73588,9,1.0,0,1.5821514129638672,89,1.0,3 +73589,9,1.0,0,1.3901538848876953,90,1.0,3 +73590,9,1.0,0,1.5651516914367676,91,1.0,3 +73591,9,1.0,0,1.226155161857605,92,1.0,3 +73592,9,1.0,0,1.2151551246643066,93,1.0,3 +73593,9,1.0,0,1.3161548376083374,94,0.0,3 +73594,9,1.0,0,1.409153699874878,95,1.0,3 +73595,9,1.0,0,1.2691552639007568,96,1.0,3 +73596,9,1.0,0,1.6211509704589844,97,0.0,3 +73597,9,0.0,0,1.3551543951034546,98,1.0,3 +73598,9,0.0,0,1.3381545543670654,99,0.0,3 +73599,9,0.0,0,1.4991525411605835,100,0.0,3 +73600,9,0.0,0,1.6431506872177124,101,0.0,3 +73601,9,1.0,0,1.3451545238494873,102,1.0,3 +73602,9,1.0,0,1.1811550855636597,103,0.0,3 +73603,9,0.0,0,1.2481552362442017,104,0.0,3 +73604,9,1.0,0,1.424153447151184,105,0.0,3 +73605,9,0.0,0,1.958146572113037,106,0.0,3 +73606,9,0.0,0,1.987146258354187,107,0.0,3 +73607,9,1.0,0,1.7681491374969482,108,1.0,3 +73608,9,1.0,0,1.457153081893921,109,1.0,3 +73609,9,1.0,0,1.2721552848815918,110,1.0,3 +73610,9,1.0,0,1.8601479530334473,111,1.0,3 +73611,9,1.0,0,1.1941550970077515,112,1.0,3 +73612,9,1.0,0,1.2641552686691284,113,1.0,3 +73613,9,1.0,0,1.222155213356018,114,1.0,3 +73614,9,1.0,0,1.4621529579162598,115,1.0,3 +73615,9,1.0,0,1.1711550951004028,116,0.0,3 +73616,9,0.0,0,1.3051550388336182,117,0.0,3 +73617,9,0.0,0,1.8801476955413818,118,0.0,3 +73618,9,0.0,0,1.1481550931930542,119,0.0,3 +73619,9,0.0,0,1.519152283668518,120,0.0,3 +73620,9,0.0,0,1.3701541423797607,121,0.0,3 +73621,9,1.0,0,1.6241509914398193,122,0.0,3 +73622,9,1.0,0,1.9591466188430786,123,1.0,3 +73623,9,1.0,0,2.3511605262756348,124,1.0,3 +73624,9,1.0,0,1.8061485290527344,125,1.0,3 +73625,9,1.0,0,1.3991538286209106,126,1.0,3 +73626,9,1.0,0,1.4621529579162598,127,0.0,3 +73627,9,0.0,0,1.7141497135162354,128,0.0,3 +73628,9,0.0,0,2.3381600379943848,129,0.0,3 +73629,9,1.0,0,1.82114839553833,130,1.0,3 +73630,9,1.0,0,1.2391552925109863,131,1.0,3 +73631,9,1.0,0,1.5211522579193115,132,1.0,3 +73632,9,1.0,0,1.4561530351638794,133,1.0,3 +73633,9,1.0,0,1.4991525411605835,134,1.0,3 +73634,9,1.0,0,1.1321550607681274,135,1.0,3 +73635,9,1.0,0,1.255155324935913,136,1.0,3 +73636,9,1.0,0,1.8561480045318604,137,0.0,3 +73637,9,0.0,0,1.611151099205017,138,0.0,3 +73638,9,0.0,0,1.4811527729034424,139,0.0,3 +73639,9,1.0,0,1.4371533393859863,140,1.0,3 +73640,9,1.0,0,1.262155294418335,141,1.0,3 +73641,9,1.0,0,1.263155221939087,142,1.0,3 +73642,9,1.0,0,1.191155195236206,143,1.0,3 +73643,9,1.0,0,1.3021550178527832,144,1.0,3 +73644,9,1.0,0,1.4391533136367798,145,1.0,3 +73645,9,1.0,0,1.6621503829956055,146,0.0,3 +73646,9,0.0,0,1.9891462326049805,147,0.0,3 +73647,9,1.0,0,1.5871514081954956,148,1.0,3 +73648,9,1.0,0,1.8201484680175781,149,1.0,3 +73649,9,1.0,0,1.3381545543670654,150,1.0,3 +73650,9,1.0,0,1.6161510944366455,151,1.0,3 +73651,9,1.0,0,1.2701553106307983,152,1.0,3 +73652,9,1.0,0,1.5211522579193115,153,1.0,3 +73653,9,1.0,0,1.686150074005127,154,1.0,3 +73654,9,1.0,0,1.5071524381637573,155,1.0,3 +73655,9,1.0,0,2.00614595413208,156,1.0,3 +73656,9,1.0,0,1.4611530303955078,157,1.0,3 +73657,9,1.0,0,1.3761540651321411,158,1.0,3 +73658,9,1.0,0,1.594151258468628,159,1.0,3 +73659,9,0.0,0,2.0241458415985107,160,0.0,3 +73660,9,0.0,0,1.7721490859985352,161,0.0,3 +73661,9,1.0,0,1.6041512489318848,162,1.0,3 +73662,9,1.0,0,1.3691542148590088,163,0.0,3 +73663,9,1.0,0,2.2131543159484863,164,1.0,3 +73664,9,0.0,0,1.332154631614685,165,0.0,3 +73665,9,0.0,0,1.7211496829986572,166,0.0,3 +73666,9,1.0,0,1.4741528034210205,167,1.0,3 +73667,9,1.0,0,1.4451532363891602,168,1.0,3 +73668,9,1.0,0,1.2481552362442017,169,0.0,3 +73669,9,1.0,0,1.3941538333892822,170,1.0,3 +73670,9,1.0,0,1.3981537818908691,171,1.0,3 +73671,9,0.0,0,1.6751502752304077,172,0.0,3 +73672,9,1.0,0,1.4901525974273682,173,1.0,3 +73673,9,1.0,0,1.3411545753479004,174,1.0,3 +73674,9,1.0,0,1.3601542711257935,175,1.0,3 +73675,9,1.0,0,1.5171523094177246,176,0.0,3 +73676,9,1.0,0,2.107149124145508,177,1.0,3 +73677,9,1.0,0,1.2451552152633667,178,1.0,3 +73678,9,1.0,0,1.402153730392456,179,0.0,3 +73679,9,0.0,0,1.843148112297058,180,0.0,3 +73680,9,1.0,0,1.314154863357544,181,1.0,3 +73681,9,1.0,0,1.548151969909668,182,1.0,3 +73682,9,1.0,0,1.4801527261734009,183,1.0,3 +73683,9,1.0,0,1.262155294418335,184,1.0,3 +73684,9,1.0,0,1.3261547088623047,185,1.0,3 +73685,9,1.0,0,1.4741528034210205,186,1.0,3 +73686,9,0.0,0,1.5391520261764526,187,1.0,3 +73687,9,0.0,0,1.1121549606323242,188,0.0,3 +73688,9,1.0,0,1.2471551895141602,189,1.0,3 +73689,9,1.0,0,1.4301533699035645,190,1.0,3 +73690,9,1.0,0,1.3251547813415527,191,1.0,3 +73691,9,0.0,0,1.2201552391052246,192,0.0,3 +73692,9,1.0,0,1.4561530351638794,193,1.0,3 +73693,9,1.0,0,1.362154245376587,194,1.0,3 +73694,9,1.0,0,1.5061523914337158,195,1.0,3 +73695,9,1.0,0,1.3291547298431396,196,1.0,3 +73696,9,1.0,0,1.2761553525924683,197,1.0,3 +73697,9,1.0,0,1.1511549949645996,198,1.0,3 +73698,9,1.0,0,1.5401520729064941,199,1.0,3 +73699,9,1.0,0,1.3211548328399658,200,1.0,3 +73700,9,1.0,0,1.545151948928833,201,1.0,3 +73701,9,1.0,0,1.309154987335205,202,1.0,3 +73702,9,1.0,0,1.3161548376083374,203,1.0,3 +73703,9,1.0,0,1.450153112411499,204,1.0,3 +73704,9,1.0,0,1.1941550970077515,205,1.0,3 +73705,9,1.0,0,1.728149652481079,206,1.0,3 +73706,9,1.0,0,1.7601492404937744,207,1.0,3 +73707,9,1.0,0,1.7631491422653198,208,1.0,3 +73708,9,1.0,0,1.4431532621383667,209,1.0,3 +73709,9,1.0,0,1.1851551532745361,210,1.0,3 +73710,9,1.0,0,1.3721541166305542,211,0.0,3 +73711,9,0.0,0,1.1451550722122192,212,0.0,3 +73712,9,1.0,0,1.6921501159667969,213,1.0,3 +73713,9,1.0,0,1.5261521339416504,214,1.0,3 +73714,9,1.0,0,1.2241551876068115,215,1.0,3 +73715,9,1.0,0,1.1971551179885864,216,1.0,3 +73716,9,1.0,0,1.232155203819275,217,1.0,3 +73717,9,1.0,0,1.479152798652649,218,1.0,3 +73718,9,1.0,0,1.494152545928955,219,1.0,3 +73719,9,1.0,0,1.3981537818908691,220,1.0,3 +73720,9,1.0,0,1.5991512537002563,221,1.0,3 +73721,9,1.0,0,1.7041499614715576,222,1.0,3 +73722,9,1.0,0,1.191155195236206,223,1.0,3 +73723,9,1.0,0,1.5911513566970825,224,1.0,3 +73724,9,1.0,0,1.498152494430542,225,1.0,3 +73725,9,1.0,0,1.778148889541626,226,1.0,3 +73726,9,1.0,0,1.1771551370620728,227,1.0,3 +73727,9,1.0,0,1.1661550998687744,228,1.0,3 +73728,9,1.0,0,1.3451545238494873,229,1.0,3 +73729,9,1.0,0,1.1561551094055176,230,1.0,3 +73730,9,1.0,0,1.634150743484497,231,1.0,3 +73731,9,1.0,0,1.2791552543640137,232,1.0,3 +73732,9,1.0,0,1.3631542921066284,233,1.0,3 +73733,9,1.0,0,1.6491506099700928,234,1.0,3 +73734,9,1.0,0,1.6911500692367554,235,1.0,3 +73735,9,1.0,0,1.4201534986495972,236,1.0,3 +73736,9,1.0,0,1.2981550693511963,237,1.0,3 +73737,9,1.0,0,1.2461552619934082,238,1.0,3 +73738,9,1.0,0,1.2451552152633667,239,1.0,3 +73739,9,1.0,0,1.424153447151184,240,1.0,3 +73740,9,1.0,0,1.4131536483764648,241,1.0,3 +73741,9,1.0,0,1.6501505374908447,242,1.0,3 +73742,9,1.0,0,1.9191471338272095,243,1.0,3 +73743,9,1.0,0,1.228155255317688,244,1.0,3 +73744,9,1.0,0,1.6221508979797363,245,1.0,3 +73745,9,1.0,0,1.3561543226242065,246,0.0,3 +73746,9,0.0,0,1.339154601097107,247,0.0,3 +73747,9,0.0,0,1.332154631614685,248,0.0,3 +73748,9,0.0,0,1.3521543741226196,249,0.0,3 +73749,9,0.0,0,1.4611530303955078,250,0.0,3 +73750,9,1.0,0,1.5281521081924438,251,1.0,3 +73751,9,1.0,0,1.9671465158462524,252,1.0,3 +73752,9,1.0,0,1.228155255317688,253,1.0,3 +73753,9,1.0,0,1.7581491470336914,254,1.0,3 +73754,9,1.0,0,1.4111536741256714,255,1.0,3 +73755,9,1.0,0,1.3261547088623047,256,0.0,3 +73756,9,1.0,0,2.1971535682678223,257,1.0,3 +73757,9,1.0,0,1.2141551971435547,258,1.0,3 +73758,9,1.0,0,1.732149600982666,259,1.0,3 +73759,9,1.0,0,1.847148060798645,260,0.0,3 +73760,9,1.0,0,1.332154631614685,261,1.0,3 +73761,9,1.0,0,1.2031551599502563,262,1.0,3 +73762,9,1.0,0,1.317154884338379,263,1.0,3 +73763,9,1.0,0,1.2411552667617798,264,0.0,3 +73764,9,1.0,0,1.3721541166305542,265,0.0,3 +73765,9,0.0,0,1.7721490859985352,266,0.0,3 +73766,9,0.0,0,2.0661473274230957,267,0.0,3 +73767,9,0.0,0,1.4921525716781616,268,0.0,3 +73768,9,0.0,0,1.314154863357544,269,0.0,3 +73769,9,0.0,0,1.4851527214050293,270,0.0,3 +73770,9,0.0,0,2.179152488708496,271,0.0,3 +73771,9,0.0,0,1.5641517639160156,272,0.0,3 +73772,9,0.0,0,1.6491506099700928,273,0.0,3 +73773,9,0.0,0,1.4871526956558228,274,0.0,3 +73774,9,0.0,0,1.4081536531448364,275,0.0,3 +73775,9,1.0,0,1.7201497554779053,276,1.0,3 +73776,9,1.0,0,1.3341546058654785,277,0.0,3 +73777,9,1.0,0,1.4411532878875732,278,1.0,3 +73778,9,1.0,0,1.453153133392334,279,1.0,3 +73779,9,1.0,0,1.596151351928711,280,1.0,3 +73780,9,1.0,0,1.9861462116241455,281,1.0,3 +73781,9,1.0,0,1.2311551570892334,282,1.0,3 +73782,9,1.0,0,1.309154987335205,283,1.0,3 +73783,9,1.0,0,1.3851540088653564,284,1.0,3 +73784,9,1.0,0,1.4521530866622925,285,0.0,3 +73785,9,1.0,0,2.2221546173095703,286,1.0,3 +73786,9,1.0,0,1.3191548585891724,287,0.0,3 +73787,9,0.0,0,1.6781501770019531,288,0.0,3 +73788,9,1.0,0,1.5601518154144287,289,1.0,3 +73789,9,1.0,0,1.784148931503296,290,1.0,3 +73790,9,1.0,0,1.3191548585891724,291,1.0,3 +73791,9,1.0,0,1.3431545495986938,292,1.0,3 +73792,9,1.0,0,1.2771552801132202,293,1.0,3 +73793,9,1.0,0,1.3741540908813477,294,1.0,3 +73794,9,1.0,0,1.3221547603607178,295,1.0,3 +73795,9,0.0,0,1.3741540908813477,296,0.0,3 +73796,9,1.0,0,1.5251522064208984,297,0.0,3 +73797,9,1.0,0,1.5541517734527588,298,1.0,3 +73798,9,1.0,0,1.6711503267288208,299,1.0,3 +73799,9,1.0,0,1.405153751373291,300,1.0,3 +73800,9,0.0,0,1.2411552667617798,301,0.0,3 +73801,9,1.0,0,1.2461552619934082,302,1.0,3 +73802,9,1.0,0,1.1831550598144531,303,1.0,3 +73803,9,1.0,0,1.4521530866622925,304,1.0,3 +73804,9,1.0,0,1.2051551342010498,305,1.0,3 +73805,9,1.0,0,1.25315523147583,306,1.0,3 +73806,9,1.0,0,1.3241547346115112,307,1.0,3 +73807,9,1.0,0,1.424153447151184,308,1.0,3 +73808,9,1.0,0,1.6011512279510498,309,1.0,3 +73809,9,1.0,0,1.4561530351638794,310,1.0,3 +73810,9,1.0,0,1.3631542921066284,311,1.0,3 +73811,9,1.0,0,1.3461544513702393,312,0.0,3 +73812,9,1.0,0,1.641150712966919,313,1.0,3 +73813,9,1.0,0,1.6981499195098877,314,1.0,3 +73814,9,1.0,0,1.3341546058654785,315,1.0,3 +73815,9,1.0,0,1.689150094985962,316,1.0,3 +73816,9,1.0,0,1.6091511249542236,317,1.0,3 +73817,9,1.0,0,1.3881539106369019,318,1.0,3 +73818,9,1.0,0,1.592151403427124,319,1.0,3 +73819,9,1.0,0,1.2821552753448486,320,1.0,3 +73820,9,1.0,0,1.2201552391052246,321,1.0,3 +73821,9,1.0,0,1.3051550388336182,322,1.0,3 +73822,9,1.0,0,1.3221547603607178,323,1.0,3 +73823,9,1.0,0,1.3081549406051636,324,1.0,3 +73824,9,1.0,0,1.1401550769805908,325,1.0,3 +73825,9,1.0,0,1.4381532669067383,326,1.0,3 +73826,9,1.0,0,1.590151309967041,327,0.0,3 +73827,9,0.0,0,2.4721662998199463,328,1.0,3 +73828,9,0.0,0,1.3771541118621826,329,0.0,3 +73829,9,0.0,0,2.137150764465332,330,0.0,3 +73830,9,0.0,0,1.3951538801193237,331,0.0,3 +73831,9,1.0,0,1.4581530094146729,332,1.0,3 +73832,9,1.0,0,1.7351495027542114,333,1.0,3 +73833,9,1.0,0,1.2901551723480225,334,0.0,3 +73834,9,0.0,0,1.5361521244049072,335,0.0,3 +73835,9,1.0,0,2.013145923614502,336,1.0,3 +73836,9,1.0,0,1.7381494045257568,337,1.0,3 +73837,9,1.0,0,1.2271552085876465,338,1.0,3 +73838,9,1.0,0,1.5521519184112549,339,1.0,3 +73839,9,1.0,0,1.4621529579162598,340,1.0,3 +73840,9,1.0,0,1.3691542148590088,341,0.0,3 +73841,9,1.0,0,1.5731515884399414,342,1.0,3 +73842,9,1.0,0,1.2981550693511963,343,1.0,3 +73843,9,1.0,0,1.3221547603607178,344,1.0,3 +73844,9,1.0,0,1.358154296875,345,1.0,3 +73845,9,1.0,0,1.2591552734375,346,1.0,3 +73846,9,1.0,0,1.255155324935913,347,1.0,3 +73847,9,1.0,0,1.310154914855957,348,1.0,3 +73848,9,1.0,0,1.2781553268432617,349,1.0,3 +73849,9,1.0,0,1.4961525201797485,350,1.0,3 +73850,9,1.0,0,1.310154914855957,351,1.0,3 +73851,9,1.0,0,1.63615083694458,352,1.0,3 +73852,9,1.0,0,1.361154317855835,353,0.0,3 +73853,9,1.0,0,1.5721516609191895,354,1.0,3 +73854,9,0.0,0,1.8781476020812988,355,0.0,3 +73855,9,1.0,0,1.8441481590270996,356,0.0,3 +73856,9,1.0,0,1.3381545543670654,357,1.0,3 +73857,9,1.0,0,1.3471544981002808,358,1.0,3 +73858,9,1.0,0,1.450153112411499,359,1.0,3 +73859,9,1.0,0,1.9991461038589478,360,1.0,3 +73860,9,1.0,0,1.3721541166305542,361,1.0,3 +73861,9,1.0,0,1.284155249595642,362,1.0,3 +73862,9,1.0,0,1.637150764465332,363,1.0,3 +73863,9,0.0,0,1.548151969909668,364,0.0,3 +73864,9,1.0,0,1.8851475715637207,365,1.0,3 +73865,9,1.0,0,1.2821552753448486,366,0.0,3 +73866,9,1.0,0,2.2391552925109863,367,1.0,3 +73867,9,1.0,0,1.5591517686843872,368,0.0,3 +73868,9,0.0,0,1.730149507522583,369,0.0,3 +73869,9,1.0,0,1.3021550178527832,370,1.0,3 +73870,9,1.0,0,1.5871514081954956,371,1.0,3 +73871,9,1.0,0,1.1721551418304443,372,1.0,3 +73872,9,1.0,0,1.5091524124145508,373,1.0,3 +73873,9,1.0,0,1.8181483745574951,374,1.0,3 +73874,9,1.0,0,1.2801553010940552,375,1.0,3 +73875,9,1.0,0,1.3381545543670654,376,1.0,3 +73876,9,1.0,0,1.2001551389694214,377,1.0,3 +73877,9,1.0,0,1.1901551485061646,378,1.0,3 +73878,9,1.0,0,1.5561518669128418,379,1.0,3 +73879,9,1.0,0,1.1461549997329712,380,1.0,3 +73880,9,1.0,0,1.3721541166305542,381,1.0,3 +73881,9,1.0,0,1.339154601097107,382,1.0,3 +73882,9,1.0,0,1.2771552801132202,383,1.0,3 +73883,9,1.0,0,1.3041549921035767,384,1.0,3 +73884,9,1.0,0,1.383154034614563,385,1.0,3 +73885,9,1.0,0,1.2501552104949951,386,1.0,3 +73886,9,1.0,0,1.3421545028686523,387,1.0,3 +73887,9,1.0,0,1.186155080795288,388,1.0,3 +73888,9,1.0,0,1.4121536016464233,389,0.0,3 +73889,9,0.0,0,2.167151927947998,390,0.0,3 +73890,9,0.0,0,1.472152829170227,391,1.0,3 +73891,9,0.0,0,1.726149559020996,392,0.0,3 +73892,9,0.0,0,1.5091524124145508,393,0.0,3 +73893,9,0.0,0,1.4691529273986816,394,0.0,3 +73894,9,0.0,0,1.1301549673080444,395,0.0,3 +73895,9,0.0,0,1.2541552782058716,396,0.0,3 +73896,9,1.0,0,1.8901474475860596,397,1.0,3 +73897,9,1.0,0,1.4161535501480103,398,1.0,3 +73898,9,1.0,0,1.5361521244049072,399,0.0,3 +73899,9,1.0,0,2.101149082183838,400,1.0,3 +73900,9,1.0,0,1.4831527471542358,401,1.0,3 +73901,9,0.0,0,1.7491493225097656,402,0.0,3 +73902,9,1.0,0,1.1671550273895264,403,0.0,3 +73903,9,0.0,0,1.3191548585891724,404,0.0,3 +73904,9,0.0,0,1.6231509447097778,405,0.0,3 +73905,9,0.0,0,1.7221496105194092,406,1.0,3 +73906,9,0.0,0,1.777148962020874,407,0.0,3 +73907,9,1.0,0,1.7961487770080566,408,1.0,3 +73908,9,1.0,0,1.354154348373413,409,1.0,3 +73909,9,1.0,0,1.2811553478240967,410,1.0,3 +73910,9,1.0,0,1.457153081893921,411,1.0,3 +73911,9,1.0,0,1.5561518669128418,412,1.0,3 +73912,9,1.0,0,1.384153962135315,413,1.0,3 +73913,9,0.0,0,1.3671542406082153,414,1.0,3 +73914,9,0.0,0,1.732149600982666,415,0.0,3 +73915,9,1.0,0,1.3821539878845215,416,1.0,3 +73916,9,1.0,0,1.3551543951034546,417,1.0,3 +73917,9,1.0,0,1.3241547346115112,418,1.0,3 +73918,9,1.0,0,1.52015221118927,419,0.0,3 +73919,9,1.0,0,2.179152488708496,420,1.0,3 +73920,9,1.0,0,1.2061551809310913,421,1.0,3 +73921,9,0.0,0,1.225155234336853,422,1.0,3 +73922,9,0.0,0,1.432153344154358,423,0.0,3 +73923,9,1.0,0,1.291155219078064,424,1.0,3 +73924,9,1.0,0,1.6331508159637451,425,1.0,3 +73925,9,1.0,0,1.5781514644622803,426,1.0,3 +73926,9,1.0,0,1.219155192375183,427,1.0,3 +73927,9,1.0,0,1.641150712966919,428,1.0,3 +73928,9,1.0,0,1.4701528549194336,429,1.0,3 +73929,9,1.0,0,1.5091524124145508,430,1.0,3 +73930,9,1.0,0,1.732149600982666,431,1.0,3 +73931,9,1.0,0,1.189155101776123,432,1.0,3 +73932,9,1.0,0,1.2121552228927612,433,0.0,3 +73933,9,0.0,0,1.8601479530334473,434,0.0,3 +73934,9,1.0,0,1.6681504249572754,435,1.0,3 +73935,9,1.0,0,1.2851552963256836,436,1.0,3 +73936,9,1.0,0,1.7621490955352783,437,0.0,3 +73937,9,0.0,0,1.3881539106369019,438,0.0,3 +73938,9,1.0,0,1.7381494045257568,439,1.0,3 +73939,9,0.0,0,1.5391520261764526,440,0.0,3 +73940,9,1.0,0,1.3701541423797607,441,1.0,3 +73941,9,1.0,0,1.384153962135315,442,1.0,3 +73942,9,1.0,0,1.5871514081954956,443,1.0,3 +73943,9,1.0,0,1.4071537256240845,444,1.0,3 +73944,9,1.0,0,1.65915048122406,445,1.0,3 +73945,9,1.0,0,1.4691529273986816,446,1.0,3 +73946,9,1.0,0,1.5211522579193115,447,1.0,3 +73947,9,1.0,0,1.3481544256210327,448,1.0,3 +73948,9,1.0,0,1.2211551666259766,449,0.0,3 +73949,9,1.0,0,1.2681553363800049,450,1.0,3 +73950,9,1.0,0,1.3481544256210327,451,1.0,3 +73951,9,1.0,0,1.9231470823287964,452,0.0,3 +73952,9,1.0,0,2.0311455726623535,453,1.0,3 +73953,9,1.0,0,1.6231509447097778,454,1.0,3 +73954,9,1.0,0,1.5331521034240723,455,1.0,3 +73955,9,1.0,0,1.313154935836792,456,1.0,3 +73956,9,1.0,0,1.2641552686691284,457,1.0,3 +73957,9,1.0,0,1.3521543741226196,458,0.0,3 +73958,9,1.0,0,1.5181522369384766,459,1.0,3 +73959,9,1.0,0,1.4041537046432495,460,1.0,3 +73960,9,1.0,0,1.2711553573608398,461,1.0,3 +73961,9,1.0,0,1.5591517686843872,462,1.0,3 +73962,9,1.0,0,1.4991525411605835,463,1.0,3 +73963,9,1.0,0,1.6331508159637451,464,1.0,3 +73964,9,1.0,0,1.3261547088623047,465,1.0,3 +73965,9,1.0,0,1.7151497602462769,466,1.0,3 +73966,9,1.0,0,1.541152000427246,467,1.0,3 +73967,9,1.0,0,1.5081523656845093,468,0.0,3 +73968,9,1.0,0,1.262155294418335,469,1.0,3 +73969,9,1.0,0,1.3661541938781738,470,1.0,3 +73970,9,1.0,0,1.8051486015319824,471,1.0,3 +73971,9,1.0,0,1.4121536016464233,472,1.0,3 +73972,9,1.0,0,1.454153060913086,473,1.0,3 +73973,9,1.0,0,1.331154704093933,474,1.0,3 +73974,9,1.0,0,1.5521519184112549,475,1.0,3 +73975,9,1.0,0,1.6231509447097778,476,1.0,3 +73976,9,1.0,0,1.2661552429199219,477,1.0,3 +73977,9,1.0,0,1.3301546573638916,478,1.0,3 +73978,9,1.0,0,1.402153730392456,479,1.0,3 +73979,9,1.0,0,1.4651529788970947,480,1.0,3 +73980,9,1.0,0,1.1941550970077515,481,1.0,3 +73981,9,1.0,0,1.3441544771194458,482,0.0,3 +73982,9,1.0,0,1.501152515411377,483,1.0,3 +73983,9,1.0,0,1.4641529321670532,484,1.0,3 +73984,9,1.0,0,1.3191548585891724,485,1.0,3 +73985,9,1.0,0,1.3341546058654785,486,1.0,3 +73986,9,1.0,0,1.4451532363891602,487,1.0,3 +73987,9,1.0,0,1.4641529321670532,488,1.0,3 +73988,9,1.0,0,1.2331552505493164,489,1.0,3 +73989,9,1.0,0,1.3301546573638916,490,0.0,3 +73990,9,0.0,0,1.4251534938812256,491,0.0,3 +73991,9,1.0,0,1.3771541118621826,492,1.0,3 +73992,9,1.0,0,1.3851540088653564,493,1.0,3 +73993,9,1.0,0,1.7061498165130615,494,1.0,3 +73994,9,1.0,0,1.5551518201828003,495,1.0,3 +73995,9,1.0,0,1.25315523147583,496,0.0,3 +73996,9,0.0,0,2.2901577949523926,497,1.0,3 +73997,9,0.0,0,1.7881488800048828,498,0.0,3 +73998,9,0.0,0,1.638150691986084,499,0.0,3 +73999,9,0.0,0,1.2501552104949951,500,0.0,3 +74000,9,1.0,1,1.6121511459350586,1,1.0,3 +74001,9,1.0,1,1.3001550436019897,2,1.0,3 +74002,9,0.0,1,2.421164035797119,3,0.0,3 +74003,9,1.0,1,1.3761540651321411,4,0.0,3 +74004,9,1.0,1,1.730149507522583,5,0.0,3 +74005,9,0.0,1,1.7171497344970703,6,0.0,3 +74006,9,1.0,1,1.7431493997573853,7,1.0,3 +74007,9,1.0,1,1.726149559020996,8,0.0,3 +74008,9,1.0,1,1.6521506309509277,9,0.0,3 +74009,9,1.0,1,1.611151099205017,10,1.0,3 +74010,9,1.0,1,1.3521543741226196,11,0.0,3 +74011,9,1.0,1,1.524152159690857,12,1.0,3 +74012,9,1.0,1,1.3271547555923462,13,0.0,3 +74013,9,1.0,1,1.9121472835540771,14,0.0,3 +74014,9,1.0,1,1.5051524639129639,15,1.0,3 +74015,9,1.0,1,1.4631530046463013,16,1.0,3 +74016,9,1.0,1,1.3601542711257935,17,1.0,3 +74017,9,1.0,1,1.4081536531448364,18,1.0,3 +74018,9,1.0,1,1.498152494430542,19,1.0,3 +74019,9,1.0,1,1.2151551246643066,20,1.0,3 +74020,9,1.0,1,1.519152283668518,21,1.0,3 +74021,9,1.0,1,1.2271552085876465,22,0.0,3 +74022,9,1.0,1,1.524152159690857,23,1.0,3 +74023,9,1.0,1,1.4351533651351929,24,1.0,3 +74024,9,1.0,1,1.4581530094146729,25,1.0,3 +74025,9,1.0,1,1.2401552200317383,26,1.0,3 +74026,9,1.0,1,1.428153395652771,27,1.0,3 +74027,9,1.0,1,1.4211535453796387,28,1.0,3 +74028,9,1.0,1,1.7081499099731445,29,1.0,3 +74029,9,1.0,1,1.2091552019119263,30,1.0,3 +74030,9,1.0,1,1.162155032157898,31,1.0,3 +74031,9,1.0,1,1.9731464385986328,32,0.0,3 +74032,9,1.0,1,1.4171535968780518,33,1.0,3 +74033,9,0.0,1,1.8421480655670166,34,0.0,3 +74034,9,1.0,1,1.192155122756958,35,1.0,3 +74035,9,1.0,1,1.4131536483764648,36,1.0,3 +74036,9,1.0,1,1.2851552963256836,37,1.0,3 +74037,9,1.0,1,1.3331546783447266,38,1.0,3 +74038,9,1.0,1,1.523152232170105,39,1.0,3 +74039,9,1.0,1,1.52015221118927,40,1.0,3 +74040,9,1.0,1,1.2691552639007568,41,1.0,3 +74041,9,0.0,1,1.3301546573638916,42,0.0,3 +74042,9,1.0,1,1.188155174255371,43,1.0,3 +74043,9,1.0,1,1.5581517219543457,44,1.0,3 +74044,9,1.0,1,1.545151948928833,45,1.0,3 +74045,9,1.0,1,1.52015221118927,46,1.0,3 +74046,9,0.0,1,1.3551543951034546,47,0.0,3 +74047,9,1.0,1,1.287155270576477,48,1.0,3 +74048,9,1.0,1,1.9761464595794678,49,1.0,3 +74049,9,0.0,1,1.9631465673446655,50,1.0,3 +74050,9,1.0,1,1.3961538076400757,51,1.0,3 +74051,9,0.0,1,1.7241497039794922,52,1.0,3 +74052,9,0.0,1,1.2351552248001099,53,0.0,3 +74053,9,1.0,1,1.5791515111923218,54,1.0,3 +74054,9,1.0,1,1.3401545286178589,55,0.0,3 +74055,9,1.0,1,2.2051539421081543,56,1.0,3 +74056,9,1.0,1,1.453153133392334,57,0.0,3 +74057,9,1.0,1,1.870147705078125,58,1.0,3 +74058,9,1.0,1,1.1821551322937012,59,1.0,3 +74059,9,0.0,1,1.1681550741195679,60,1.0,3 +74060,9,0.0,1,1.4881526231765747,61,0.0,3 +74061,9,1.0,1,1.516152262687683,62,1.0,3 +74062,9,1.0,1,1.219155192375183,63,0.0,3 +74063,9,0.0,1,1.1711550951004028,64,1.0,3 +74064,9,0.0,1,1.2121552228927612,65,0.0,3 +74065,9,1.0,1,1.472152829170227,66,1.0,3 +74066,9,1.0,1,1.3781540393829346,67,1.0,3 +74067,9,1.0,1,1.3081549406051636,68,1.0,3 +74068,9,1.0,1,1.611151099205017,69,1.0,3 +74069,9,1.0,1,1.4111536741256714,70,1.0,3 +74070,9,1.0,1,1.2161551713943481,71,0.0,3 +74071,9,1.0,1,1.9451467990875244,72,1.0,3 +74072,9,1.0,1,1.3931539058685303,73,0.0,3 +74073,9,0.0,1,1.3501543998718262,74,1.0,3 +74074,9,0.0,1,1.1721551418304443,75,0.0,3 +74075,9,1.0,1,1.776149034500122,76,0.0,3 +74076,9,0.0,1,1.4591530561447144,77,0.0,3 +74077,9,0.0,1,1.987146258354187,78,1.0,3 +74078,9,0.0,1,1.6021511554718018,79,0.0,3 +74079,9,1.0,1,1.7601492404937744,80,0.0,3 +74080,9,1.0,1,2.2521560192108154,81,0.0,3 +74081,9,0.0,1,1.1291550397872925,82,1.0,3 +74082,9,0.0,1,2.425164222717285,83,0.0,3 +74083,9,1.0,1,1.5791515111923218,84,1.0,3 +74084,9,1.0,1,1.615151047706604,85,1.0,3 +74085,9,1.0,1,1.354154348373413,86,1.0,3 +74086,9,1.0,1,1.6031512022018433,87,1.0,3 +74087,9,1.0,1,1.5371520519256592,88,1.0,3 +74088,9,1.0,1,1.3421545028686523,89,0.0,3 +74089,9,1.0,1,2.0831480026245117,90,1.0,3 +74090,9,1.0,1,1.2141551971435547,91,1.0,3 +74091,9,1.0,1,1.1301549673080444,92,1.0,3 +74092,9,1.0,1,1.5581517219543457,93,1.0,3 +74093,9,0.0,1,1.4521530866622925,94,0.0,3 +74094,9,1.0,1,1.3191548585891724,95,1.0,3 +74095,9,1.0,1,1.2331552505493164,96,1.0,3 +74096,9,1.0,1,1.3041549921035767,97,1.0,3 +74097,9,1.0,1,1.2241551876068115,98,1.0,3 +74098,9,1.0,1,1.3381545543670654,99,0.0,3 +74099,9,1.0,1,1.3941538333892822,100,1.0,3 +74100,9,1.0,1,1.475152850151062,101,1.0,3 +74101,9,1.0,1,1.432153344154358,102,1.0,3 +74102,9,1.0,1,1.501152515411377,103,1.0,3 +74103,9,1.0,1,1.7041499614715576,104,0.0,3 +74104,9,1.0,1,1.799148678779602,105,1.0,3 +74105,9,1.0,1,1.7501492500305176,106,1.0,3 +74106,9,1.0,1,1.545151948928833,107,1.0,3 +74107,9,1.0,1,1.6761503219604492,108,1.0,3 +74108,9,1.0,1,1.4801527261734009,109,1.0,3 +74109,9,1.0,1,1.73414945602417,110,0.0,3 +74110,9,1.0,1,1.541152000427246,111,1.0,3 +74111,9,1.0,1,1.8641479015350342,112,0.0,3 +74112,9,0.0,1,1.2441552877426147,113,0.0,3 +74113,9,1.0,1,1.7371494770050049,114,0.0,3 +74114,9,0.0,1,1.3051550388336182,115,0.0,3 +74115,9,1.0,1,1.3951538801193237,116,0.0,3 +74116,9,0.0,1,1.7041499614715576,117,0.0,3 +74117,9,0.0,1,1.2271552085876465,118,1.0,3 +74118,9,0.0,1,1.1381549835205078,119,0.0,3 +74119,9,0.0,1,1.4001537561416626,120,0.0,3 +74120,9,1.0,1,1.781148910522461,121,0.0,3 +74121,9,1.0,1,1.6021511554718018,122,1.0,3 +74122,9,1.0,1,1.450153112411499,123,1.0,3 +74123,9,0.0,1,1.8451480865478516,124,0.0,3 +74124,9,1.0,1,1.3021550178527832,125,1.0,3 +74125,9,1.0,1,1.3341546058654785,126,0.0,3 +74126,9,1.0,1,1.4231535196304321,127,1.0,3 +74127,9,1.0,1,1.2961550951004028,128,1.0,3 +74128,9,1.0,1,1.3471544981002808,129,1.0,3 +74129,9,1.0,1,1.868147850036621,130,1.0,3 +74130,9,1.0,1,1.7141497135162354,131,1.0,3 +74131,9,1.0,1,1.331154704093933,132,0.0,3 +74132,9,1.0,1,1.38715398311615,133,0.0,3 +74133,9,0.0,1,1.5281521081924438,134,1.0,3 +74134,9,0.0,1,1.2761553525924683,135,0.0,3 +74135,9,0.0,1,1.6661503314971924,136,0.0,3 +74136,9,0.0,1,1.4511531591415405,137,0.0,3 +74137,9,0.0,1,1.6491506099700928,138,1.0,3 +74138,9,1.0,1,1.2861552238464355,139,1.0,3 +74139,9,0.0,1,1.2141551971435547,140,0.0,3 +74140,9,1.0,1,1.7751489877700806,141,0.0,3 +74141,9,0.0,1,1.4171535968780518,142,0.0,3 +74142,9,1.0,1,1.5571517944335938,143,1.0,3 +74143,9,1.0,1,1.6651504039764404,144,0.0,3 +74144,9,1.0,1,2.0511465072631836,145,1.0,3 +74145,9,1.0,1,1.3251547813415527,146,1.0,3 +74146,9,1.0,1,1.6121511459350586,147,0.0,3 +74147,9,1.0,1,1.8101484775543213,148,1.0,3 +74148,9,1.0,1,1.5151523351669312,149,1.0,3 +74149,9,1.0,1,1.3191548585891724,150,0.0,3 +74150,9,0.0,1,1.3771541118621826,151,0.0,3 +74151,9,1.0,1,1.5751515626907349,152,1.0,3 +74152,9,1.0,1,1.406153678894043,153,0.0,3 +74153,9,1.0,1,1.5541517734527588,154,1.0,3 +74154,9,1.0,1,1.3021550178527832,155,1.0,3 +74155,9,1.0,1,1.2991551160812378,156,1.0,3 +74156,9,1.0,1,1.4821527004241943,157,1.0,3 +74157,9,1.0,1,1.7081499099731445,158,1.0,3 +74158,9,1.0,1,1.5521519184112549,159,1.0,3 +74159,9,1.0,1,1.5581517219543457,160,1.0,3 +74160,9,0.0,1,1.1531550884246826,161,1.0,3 +74161,9,1.0,1,1.8161485195159912,162,0.0,3 +74162,9,0.0,1,1.2721552848815918,163,0.0,3 +74163,9,0.0,1,1.8841476440429688,164,0.0,3 +74164,9,1.0,1,1.958146572113037,165,1.0,3 +74165,9,1.0,1,1.1461549997329712,166,1.0,3 +74166,9,1.0,1,1.9751464128494263,167,1.0,3 +74167,9,1.0,1,1.8011486530303955,168,0.0,3 +74168,9,0.0,1,1.4521530866622925,169,0.0,3 +74169,9,1.0,1,1.7651491165161133,170,1.0,3 +74170,9,0.0,1,1.7791489362716675,171,1.0,3 +74171,9,0.0,1,1.5611517429351807,172,1.0,3 +74172,9,0.0,1,1.1781550645828247,173,0.0,3 +74173,9,1.0,1,1.6561505794525146,174,1.0,3 +74174,9,1.0,1,1.1741551160812378,175,1.0,3 +74175,9,1.0,1,1.778148889541626,176,1.0,3 +74176,9,1.0,1,1.25315523147583,177,1.0,3 +74177,9,1.0,1,1.597151279449463,178,1.0,3 +74178,9,1.0,1,1.5131523609161377,179,1.0,3 +74179,9,1.0,1,1.8091485500335693,180,1.0,3 +74180,9,1.0,1,1.256155252456665,181,1.0,3 +74181,9,1.0,1,1.924147129058838,182,1.0,3 +74182,9,1.0,1,1.6121511459350586,183,0.0,3 +74183,9,0.0,1,1.3531544208526611,184,0.0,3 +74184,9,0.0,1,1.8541479110717773,185,0.0,3 +74185,9,1.0,1,1.4231535196304321,186,1.0,3 +74186,9,1.0,1,1.5081523656845093,187,1.0,3 +74187,9,1.0,1,1.6181509494781494,188,0.0,3 +74188,9,0.0,1,2.44816517829895,189,1.0,3 +74189,9,0.0,1,1.8361482620239258,190,0.0,3 +74190,9,0.0,1,1.7711490392684937,191,0.0,3 +74191,9,1.0,1,1.9341468811035156,192,1.0,3 +74192,9,1.0,1,1.7661490440368652,193,1.0,3 +74193,9,1.0,1,1.3501543998718262,194,1.0,3 +74194,9,1.0,1,1.3121548891067505,195,1.0,3 +74195,9,1.0,1,1.4181535243988037,196,0.0,3 +74196,9,0.0,1,1.4381532669067383,197,0.0,3 +74197,9,1.0,1,1.8571479320526123,198,1.0,3 +74198,9,1.0,1,1.2891552448272705,199,1.0,3 +74199,9,1.0,1,2.16915225982666,200,1.0,3 +74200,9,1.0,1,1.3121548891067505,201,1.0,3 +74201,9,1.0,1,1.2941551208496094,202,0.0,3 +74202,9,0.0,1,1.3761540651321411,203,0.0,3 +74203,9,1.0,1,1.8851475715637207,204,0.0,3 +74204,9,0.0,1,1.5061523914337158,205,0.0,3 +74205,9,1.0,1,1.5611517429351807,206,1.0,3 +74206,9,1.0,1,1.3551543951034546,207,0.0,3 +74207,9,1.0,1,1.7411494255065918,208,1.0,3 +74208,9,1.0,1,1.164155125617981,209,0.0,3 +74209,9,0.0,1,1.4951525926589966,210,1.0,3 +74210,9,0.0,1,1.7831488847732544,211,0.0,3 +74211,9,0.0,1,1.6941499710083008,212,0.0,3 +74212,9,0.0,1,1.331154704093933,213,0.0,3 +74213,9,0.0,1,2.396162748336792,214,0.0,3 +74214,9,1.0,1,1.2961550951004028,215,0.0,3 +74215,9,1.0,1,1.4901525974273682,216,1.0,3 +74216,9,1.0,1,1.615151047706604,217,1.0,3 +74217,9,1.0,1,1.406153678894043,218,1.0,3 +74218,9,1.0,1,1.2461552619934082,219,1.0,3 +74219,9,1.0,1,1.3691542148590088,220,1.0,3 +74220,9,1.0,1,1.5791515111923218,221,1.0,3 +74221,9,1.0,1,1.427153468132019,222,1.0,3 +74222,9,1.0,1,1.1421550512313843,223,1.0,3 +74223,9,1.0,1,1.263155221939087,224,1.0,3 +74224,9,1.0,1,1.2161551713943481,225,0.0,3 +74225,9,0.0,1,2.2811574935913086,226,0.0,3 +74226,9,1.0,1,1.619150996208191,227,1.0,3 +74227,9,1.0,1,1.2661552429199219,228,1.0,3 +74228,9,1.0,1,1.5821514129638672,229,0.0,3 +74229,9,0.0,1,1.5691516399383545,230,0.0,3 +74230,9,1.0,1,1.6781501770019531,231,1.0,3 +74231,9,1.0,1,1.228155255317688,232,1.0,3 +74232,9,1.0,1,1.4961525201797485,233,1.0,3 +74233,9,1.0,1,1.5131523609161377,234,1.0,3 +74234,9,1.0,1,1.2301552295684814,235,1.0,3 +74235,9,1.0,1,1.262155294418335,236,0.0,3 +74236,9,0.0,1,1.3281546831130981,237,0.0,3 +74237,9,0.0,1,1.2771552801132202,238,0.0,3 +74238,9,1.0,1,1.4871526956558228,239,0.0,3 +74239,9,1.0,1,2.174152374267578,240,1.0,3 +74240,9,1.0,1,2.160151720046997,241,1.0,3 +74241,9,1.0,1,1.2161551713943481,242,1.0,3 +74242,9,1.0,1,1.2811553478240967,243,0.0,3 +74243,9,0.0,1,1.5501518249511719,244,0.0,3 +74244,9,1.0,1,1.523152232170105,245,1.0,3 +74245,9,1.0,1,1.2361552715301514,246,1.0,3 +74246,9,1.0,1,1.339154601097107,247,1.0,3 +74247,9,1.0,1,1.3081549406051636,248,0.0,3 +74248,9,0.0,1,1.2931551933288574,249,0.0,3 +74249,9,0.0,1,1.3111549615859985,250,0.0,3 +74250,9,0.0,1,1.8191484212875366,251,1.0,3 +74251,9,0.0,1,1.5741515159606934,252,0.0,3 +74252,9,0.0,1,1.2051551342010498,253,0.0,3 +74253,9,0.0,1,2.2171545028686523,254,0.0,3 +74254,9,0.0,1,1.9861462116241455,255,1.0,3 +74255,9,0.0,1,1.5211522579193115,256,0.0,3 +74256,9,0.0,1,1.2401552200317383,257,0.0,3 +74257,9,1.0,1,1.291155219078064,258,0.0,3 +74258,9,0.0,1,1.219155192375183,259,0.0,3 +74259,9,1.0,1,2.0371460914611816,260,1.0,3 +74260,9,1.0,1,1.5851514339447021,261,0.0,3 +74261,9,0.0,1,1.619150996208191,262,0.0,3 +74262,9,1.0,1,1.2311551570892334,263,0.0,3 +74263,9,0.0,1,1.7201497554779053,264,1.0,3 +74264,9,0.0,1,1.3461544513702393,265,1.0,3 +74265,9,0.0,1,1.1711550951004028,266,0.0,3 +74266,9,0.0,1,1.6241509914398193,267,1.0,3 +74267,9,0.0,1,1.4121536016464233,268,0.0,3 +74268,9,1.0,1,1.2901551723480225,269,0.0,3 +74269,9,0.0,1,1.778148889541626,270,1.0,3 +74270,9,0.0,1,1.284155249595642,271,0.0,3 +74271,9,0.0,1,1.219155192375183,272,0.0,3 +74272,9,0.0,1,1.1511549949645996,273,1.0,3 +74273,9,0.0,1,1.1671550273895264,274,0.0,3 +74274,9,0.0,1,1.450153112411499,275,1.0,3 +74275,9,0.0,1,1.2751553058624268,276,0.0,3 +74276,9,0.0,1,1.2361552715301514,277,1.0,3 +74277,9,0.0,1,1.38715398311615,278,0.0,3 +74278,9,1.0,1,1.2581552267074585,279,0.0,3 +74279,9,0.0,1,1.3891539573669434,280,0.0,3 +74280,9,0.0,1,1.3591543436050415,281,0.0,3 +74281,9,0.0,1,1.3971538543701172,282,1.0,3 +74282,9,0.0,1,1.2771552801132202,283,1.0,3 +74283,9,0.0,1,1.1661550998687744,284,0.0,3 +74284,9,1.0,1,1.1601550579071045,285,1.0,3 +74285,9,1.0,1,1.3121548891067505,286,1.0,3 +74286,9,1.0,1,1.4301533699035645,287,1.0,3 +74287,9,1.0,1,1.5631517171859741,288,1.0,3 +74288,9,0.0,1,2.120149850845337,289,0.0,3 +74289,9,1.0,1,1.774148941040039,290,1.0,3 +74290,9,1.0,1,1.494152545928955,291,0.0,3 +74291,9,0.0,1,1.8071485757827759,292,0.0,3 +74292,9,1.0,1,1.5371520519256592,293,1.0,3 +74293,9,1.0,1,1.4111536741256714,294,1.0,3 +74294,9,1.0,1,1.4881526231765747,295,1.0,3 +74295,9,1.0,1,1.1961551904678345,296,1.0,3 +74296,9,1.0,1,1.1731550693511963,297,1.0,3 +74297,9,0.0,1,1.590151309967041,298,0.0,3 +74298,9,1.0,1,1.427153468132019,299,1.0,3 +74299,9,1.0,1,1.4901525974273682,300,1.0,3 +74300,9,1.0,1,1.2931551933288574,301,1.0,3 +74301,9,1.0,1,1.1411550045013428,302,1.0,3 +74302,9,1.0,1,1.406153678894043,303,1.0,3 +74303,9,1.0,1,1.8851475715637207,304,1.0,3 +74304,9,1.0,1,1.6521506309509277,305,0.0,3 +74305,9,1.0,1,2.5041677951812744,306,1.0,3 +74306,9,1.0,1,1.2381552457809448,307,1.0,3 +74307,9,1.0,1,1.567151665687561,308,1.0,3 +74308,9,1.0,1,1.52015221118927,309,1.0,3 +74309,9,1.0,1,1.5091524124145508,310,1.0,3 +74310,9,1.0,1,1.2121552228927612,311,0.0,3 +74311,9,0.0,1,1.457153081893921,312,0.0,3 +74312,9,1.0,1,1.6901500225067139,313,0.0,3 +74313,9,0.0,1,1.3401545286178589,314,0.0,3 +74314,9,0.0,1,1.1511549949645996,315,0.0,3 +74315,9,1.0,1,1.4111536741256714,316,1.0,3 +74316,9,1.0,1,1.4211535453796387,317,0.0,3 +74317,9,1.0,1,2.0791478157043457,318,1.0,3 +74318,9,1.0,1,1.9351469278335571,319,0.0,3 +74319,9,1.0,1,1.3761540651321411,320,1.0,3 +74320,9,1.0,1,1.3921538591384888,321,1.0,3 +74321,9,1.0,1,1.3531544208526611,322,0.0,3 +74322,9,1.0,1,1.8201484680175781,323,1.0,3 +74323,9,1.0,1,1.4511531591415405,324,1.0,3 +74324,9,1.0,1,1.5141522884368896,325,1.0,3 +74325,9,1.0,1,1.5151523351669312,326,1.0,3 +74326,9,1.0,1,1.2791552543640137,327,1.0,3 +74327,9,1.0,1,1.5741515159606934,328,1.0,3 +74328,9,1.0,1,1.2061551809310913,329,1.0,3 +74329,9,1.0,1,1.431153416633606,330,1.0,3 +74330,9,1.0,1,1.8931474685668945,331,1.0,3 +74331,9,1.0,1,1.9801464080810547,332,1.0,3 +74332,9,1.0,1,1.7541491985321045,333,0.0,3 +74333,9,1.0,1,1.9741463661193848,334,1.0,3 +74334,9,1.0,1,1.6061511039733887,335,0.0,3 +74335,9,1.0,1,1.7051498889923096,336,0.0,3 +74336,9,1.0,1,1.6761503219604492,337,0.0,3 +74337,9,0.0,1,1.965146541595459,338,0.0,3 +74338,9,1.0,1,1.384153962135315,339,1.0,3 +74339,9,1.0,1,1.472152829170227,340,1.0,3 +74340,9,1.0,1,1.5801515579223633,341,1.0,3 +74341,9,0.0,1,1.1741551160812378,342,0.0,3 +74342,9,0.0,1,1.9901461601257324,343,0.0,3 +74343,9,1.0,1,1.379154086112976,344,0.0,3 +74344,9,1.0,1,1.824148416519165,345,0.0,3 +74345,9,0.0,1,1.7431493997573853,346,0.0,3 +74346,9,0.0,1,1.475152850151062,347,1.0,3 +74347,9,0.0,1,1.6231509447097778,348,1.0,3 +74348,9,0.0,1,1.3721541166305542,349,1.0,3 +74349,9,0.0,1,1.3601542711257935,350,0.0,3 +74350,9,0.0,1,1.5001524686813354,351,0.0,3 +74351,9,1.0,1,2.3511605262756348,352,1.0,3 +74352,9,1.0,1,1.3121548891067505,353,1.0,3 +74353,9,1.0,1,1.6641504764556885,354,0.0,3 +74354,9,1.0,1,1.4401532411575317,355,1.0,3 +74355,9,1.0,1,1.6951500177383423,356,0.0,3 +74356,9,1.0,1,1.9571466445922852,357,1.0,3 +74357,9,1.0,1,1.4451532363891602,358,0.0,3 +74358,9,1.0,1,1.195155143737793,359,1.0,3 +74359,9,1.0,1,1.5771515369415283,360,0.0,3 +74360,9,0.0,1,2.0741477012634277,361,0.0,3 +74361,9,0.0,1,1.501152515411377,362,1.0,3 +74362,9,0.0,1,1.4991525411605835,363,0.0,3 +74363,9,1.0,1,1.8411481380462646,364,1.0,3 +74364,9,1.0,1,1.2491552829742432,365,1.0,3 +74365,9,1.0,1,1.4331533908843994,366,0.0,3 +74366,9,0.0,1,1.2331552505493164,367,0.0,3 +74367,9,0.0,1,1.2941551208496094,368,1.0,3 +74368,9,0.0,1,1.4231535196304321,369,0.0,3 +74369,9,0.0,1,1.7271496057510376,370,0.0,3 +74370,9,1.0,1,1.9461467266082764,371,0.0,3 +74371,9,1.0,1,1.6251509189605713,372,1.0,3 +74372,9,1.0,1,1.1991550922393799,373,1.0,3 +74373,9,1.0,1,1.4411532878875732,374,1.0,3 +74374,9,1.0,1,1.3921538591384888,375,0.0,3 +74375,9,0.0,1,1.6281509399414062,376,1.0,3 +74376,9,0.0,1,1.2801553010940552,377,0.0,3 +74377,9,0.0,1,1.4681528806686401,378,0.0,3 +74378,9,1.0,1,1.3431545495986938,379,1.0,3 +74379,9,1.0,1,1.7241497039794922,380,1.0,3 +74380,9,1.0,1,1.6231509447097778,381,1.0,3 +74381,9,1.0,1,1.2951551675796509,382,1.0,3 +74382,9,1.0,1,1.6541504859924316,383,0.0,3 +74383,9,0.0,1,1.431153416633606,384,1.0,3 +74384,9,0.0,1,1.3281546831130981,385,0.0,3 +74385,9,1.0,1,2.0361459255218506,386,0.0,3 +74386,9,0.0,1,1.1771551370620728,387,1.0,3 +74387,9,0.0,1,1.1151549816131592,388,1.0,3 +74388,9,0.0,1,1.2451552152633667,389,1.0,3 +74389,9,0.0,1,1.5061523914337158,390,0.0,3 +74390,9,1.0,1,1.409153699874878,391,1.0,3 +74391,9,1.0,1,1.3271547555923462,392,1.0,3 +74392,9,1.0,1,1.2311551570892334,393,1.0,3 +74393,9,1.0,1,1.4621529579162598,394,1.0,3 +74394,9,1.0,1,1.1751551628112793,395,0.0,3 +74395,9,1.0,1,1.2641552686691284,396,0.0,3 +74396,9,1.0,1,1.8411481380462646,397,1.0,3 +74397,9,1.0,1,1.3811540603637695,398,1.0,3 +74398,9,1.0,1,1.3851540088653564,399,1.0,3 +74399,9,1.0,1,1.4831527471542358,400,1.0,3 +74400,9,1.0,1,1.2141551971435547,401,1.0,3 +74401,9,1.0,1,1.357154369354248,402,0.0,3 +74402,9,0.0,1,1.7441494464874268,403,0.0,3 +74403,9,0.0,1,1.6331508159637451,404,1.0,3 +74404,9,0.0,1,1.2391552925109863,405,0.0,3 +74405,9,0.0,1,2.0581469535827637,406,1.0,3 +74406,9,0.0,1,1.1851551532745361,407,0.0,3 +74407,9,0.0,1,1.1671550273895264,408,1.0,3 +74408,9,0.0,1,1.2431552410125732,409,0.0,3 +74409,9,0.0,1,1.5681517124176025,410,0.0,3 +74410,9,0.0,1,1.4891526699066162,411,0.0,3 +74411,9,0.0,1,1.3301546573638916,412,0.0,3 +74412,9,0.0,1,2.118149757385254,413,0.0,3 +74413,9,1.0,1,1.3261547088623047,414,0.0,3 +74414,9,0.0,1,1.7001500129699707,415,0.0,3 +74415,9,1.0,1,2.2151541709899902,416,1.0,3 +74416,9,1.0,1,1.2711553573608398,417,0.0,3 +74417,9,1.0,1,1.2061551809310913,418,1.0,3 +74418,9,1.0,1,1.822148323059082,419,1.0,3 +74419,9,1.0,1,1.2521553039550781,420,1.0,3 +74420,9,1.0,1,1.2941551208496094,421,1.0,3 +74421,9,1.0,1,1.1971551179885864,422,1.0,3 +74422,9,1.0,1,1.454153060913086,423,0.0,3 +74423,9,1.0,1,1.3221547603607178,424,0.0,3 +74424,9,0.0,1,1.9961462020874023,425,0.0,3 +74425,9,1.0,1,1.8711477518081665,426,1.0,3 +74426,9,1.0,1,1.4071537256240845,427,1.0,3 +74427,9,1.0,1,1.681150197982788,428,1.0,3 +74428,9,1.0,1,1.7911487817764282,429,1.0,3 +74429,9,1.0,1,1.449153184890747,430,1.0,3 +74430,9,1.0,1,1.4621529579162598,431,1.0,3 +74431,9,1.0,1,1.991146206855774,432,1.0,3 +74432,9,1.0,1,2.2971582412719727,433,0.0,3 +74433,9,1.0,1,1.3811540603637695,434,1.0,3 +74434,9,1.0,1,1.1821551322937012,435,1.0,3 +74435,9,1.0,1,1.641150712966919,436,1.0,3 +74436,9,1.0,1,1.5541517734527588,437,0.0,3 +74437,9,0.0,1,1.542151927947998,438,1.0,3 +74438,9,0.0,1,1.287155270576477,439,0.0,3 +74439,9,0.0,1,1.7391494512557983,440,0.0,3 +74440,9,1.0,1,2.622173309326172,441,1.0,3 +74441,9,1.0,1,1.3931539058685303,442,1.0,3 +74442,9,0.0,1,1.3811540603637695,443,1.0,3 +74443,9,1.0,1,1.7411494255065918,444,1.0,3 +74444,9,0.0,1,2.186152935028076,445,0.0,3 +74445,9,1.0,1,1.475152850151062,446,0.0,3 +74446,9,0.0,1,1.2061551809310913,447,0.0,3 +74447,9,1.0,1,1.453153133392334,448,0.0,3 +74448,9,0.0,1,1.5181522369384766,449,0.0,3 +74449,9,1.0,1,1.822148323059082,450,1.0,3 +74450,9,1.0,1,1.9571466445922852,451,0.0,3 +74451,9,0.0,1,1.287155270576477,452,0.0,3 +74452,9,1.0,1,1.5041524171829224,453,1.0,3 +74453,9,1.0,1,1.317154884338379,454,1.0,3 +74454,9,1.0,1,1.450153112411499,455,1.0,3 +74455,9,1.0,1,1.6501505374908447,456,1.0,3 +74456,9,1.0,1,1.3821539878845215,457,0.0,3 +74457,9,0.0,1,1.1771551370620728,458,0.0,3 +74458,9,1.0,1,1.6501505374908447,459,1.0,3 +74459,9,1.0,1,1.3511544466018677,460,1.0,3 +74460,9,1.0,1,1.6301507949829102,461,1.0,3 +74461,9,1.0,1,1.4151536226272583,462,0.0,3 +74462,9,1.0,1,1.9551466703414917,463,0.0,3 +74463,9,0.0,1,1.6831501722335815,464,0.0,3 +74464,9,0.0,1,1.9281470775604248,465,0.0,3 +74465,9,0.0,1,1.2991551160812378,466,0.0,3 +74466,9,1.0,1,1.7621490955352783,467,1.0,3 +74467,9,1.0,1,1.6831501722335815,468,1.0,3 +74468,9,1.0,1,1.5591517686843872,469,1.0,3 +74469,9,1.0,1,1.3191548585891724,470,1.0,3 +74470,9,1.0,1,1.1531550884246826,471,1.0,3 +74471,9,1.0,1,1.3501543998718262,472,1.0,3 +74472,9,1.0,1,1.2981550693511963,473,1.0,3 +74473,9,1.0,1,1.3061549663543701,474,0.0,3 +74474,9,0.0,1,1.3951538801193237,475,0.0,3 +74475,9,1.0,1,1.9401469230651855,476,0.0,3 +74476,9,0.0,1,1.9341468811035156,477,0.0,3 +74477,9,0.0,1,2.5211687088012695,478,0.0,3 +74478,9,1.0,1,1.3881539106369019,479,0.0,3 +74479,9,1.0,1,1.4471532106399536,480,1.0,3 +74480,9,1.0,1,1.2351552248001099,481,1.0,3 +74481,9,1.0,1,2.2291550636291504,482,0.0,3 +74482,9,0.0,1,1.8121485710144043,483,0.0,3 +74483,9,0.0,1,1.751149296760559,484,0.0,3 +74484,9,1.0,1,1.5091524124145508,485,1.0,3 +74485,9,1.0,1,1.4901525974273682,486,1.0,3 +74486,9,1.0,1,1.5541517734527588,487,1.0,3 +74487,9,1.0,1,1.5761516094207764,488,0.0,3 +74488,9,1.0,1,1.8501479625701904,489,1.0,3 +74489,9,1.0,1,1.2791552543640137,490,1.0,3 +74490,9,1.0,1,1.292155146598816,491,0.0,3 +74491,9,0.0,1,1.2131551504135132,492,1.0,3 +74492,9,0.0,1,1.4691529273986816,493,0.0,3 +74493,9,1.0,1,1.291155219078064,494,0.0,3 +74494,9,0.0,1,1.2181551456451416,495,0.0,3 +74495,9,1.0,1,1.9081473350524902,496,1.0,3 +74496,9,0.0,1,1.7081499099731445,497,0.0,3 +74497,9,1.0,1,1.380154013633728,498,1.0,3 +74498,9,1.0,1,1.3711541891098022,499,0.0,3 +74499,9,0.0,1,1.5151523351669312,500,0.0,3 +74500,9,1.0,2,1.4001537561416626,1,0.0,3 +74501,9,0.0,2,1.309154987335205,2,0.0,3 +74502,9,0.0,2,1.432153344154358,3,1.0,3 +74503,9,0.0,2,1.2851552963256836,4,0.0,3 +74504,9,1.0,2,1.3511544466018677,5,0.0,3 +74505,9,1.0,2,2.151151180267334,6,1.0,3 +74506,9,1.0,2,1.4931526184082031,7,0.0,3 +74507,9,0.0,2,1.597151279449463,8,1.0,3 +74508,9,0.0,2,1.3331546783447266,9,0.0,3 +74509,9,1.0,2,1.33515465259552,10,1.0,3 +74510,9,1.0,2,1.5501518249511719,11,0.0,3 +74511,9,0.0,2,1.7501492500305176,12,0.0,3 +74512,9,1.0,2,1.3431545495986938,13,1.0,3 +74513,9,1.0,2,1.454153060913086,14,1.0,3 +74514,9,1.0,2,2.0361459255218506,15,0.0,3 +74515,9,1.0,2,1.516152262687683,16,1.0,3 +74516,9,1.0,2,1.5641517639160156,17,1.0,3 +74517,9,1.0,2,1.3281546831130981,18,0.0,3 +74518,9,1.0,2,1.3161548376083374,19,1.0,3 +74519,9,0.0,2,1.73414945602417,20,0.0,3 +74520,9,1.0,2,1.2111551761627197,21,0.0,3 +74521,9,1.0,2,1.4001537561416626,22,1.0,3 +74522,9,1.0,2,1.3881539106369019,23,0.0,3 +74523,9,1.0,2,1.7061498165130615,24,0.0,3 +74524,9,1.0,2,1.3991538286209106,25,1.0,3 +74525,9,1.0,2,1.361154317855835,26,0.0,3 +74526,9,0.0,2,1.161155104637146,27,0.0,3 +74527,9,0.0,2,1.4041537046432495,28,0.0,3 +74528,9,0.0,2,1.2541552782058716,29,0.0,3 +74529,9,0.0,2,1.1491550207138062,30,0.0,3 +74530,9,0.0,2,1.5531518459320068,31,1.0,3 +74531,9,0.0,2,1.2811553478240967,32,1.0,3 +74532,9,0.0,2,1.7531492710113525,33,0.0,3 +74533,9,0.0,2,1.9511467218399048,34,1.0,3 +74534,9,0.0,2,1.3251547813415527,35,1.0,3 +74535,9,0.0,2,1.3601542711257935,36,1.0,3 +74536,9,0.0,2,1.3151549100875854,37,1.0,3 +74537,9,0.0,2,1.9091472625732422,38,0.0,3 +74538,9,1.0,2,1.4551531076431274,39,1.0,3 +74539,9,1.0,2,1.1961551904678345,40,1.0,3 +74540,9,1.0,2,1.6761503219604492,41,0.0,3 +74541,9,1.0,2,2.0431461334228516,42,1.0,3 +74542,9,1.0,2,1.2951551675796509,43,0.0,3 +74543,9,0.0,2,1.597151279449463,44,0.0,3 +74544,9,0.0,2,1.9091472625732422,45,0.0,3 +74545,9,1.0,2,1.542151927947998,46,0.0,3 +74546,9,1.0,2,1.681150197982788,47,1.0,3 +74547,9,1.0,2,1.3061549663543701,48,0.0,3 +74548,9,0.0,2,1.362154245376587,49,1.0,3 +74549,9,0.0,2,1.6011512279510498,50,1.0,3 +74550,9,0.0,2,1.2141551971435547,51,0.0,3 +74551,9,0.0,2,1.9781463146209717,52,1.0,3 +74552,9,0.0,2,1.3671542406082153,53,1.0,3 +74553,9,0.0,2,1.5261521339416504,54,0.0,3 +74554,9,0.0,2,1.4391533136367798,55,1.0,3 +74555,9,0.0,2,1.1481550931930542,56,1.0,3 +74556,9,0.0,2,1.6621503829956055,57,1.0,3 +74557,9,0.0,2,1.3821539878845215,58,1.0,3 +74558,9,0.0,2,1.3251547813415527,59,0.0,3 +74559,9,1.0,2,1.7021498680114746,60,1.0,3 +74560,9,1.0,2,1.5211522579193115,61,0.0,3 +74561,9,1.0,2,1.384153962135315,62,1.0,3 +74562,9,1.0,2,1.1591551303863525,63,0.0,3 +74563,9,0.0,2,1.7031499147415161,64,0.0,3 +74564,9,1.0,2,1.6461505889892578,65,1.0,3 +74565,9,1.0,2,1.4641529321670532,66,1.0,3 +74566,9,0.0,2,1.3811540603637695,67,0.0,3 +74567,9,1.0,2,1.3301546573638916,68,0.0,3 +74568,9,1.0,2,1.5911513566970825,69,1.0,3 +74569,9,1.0,2,1.2081551551818848,70,1.0,3 +74570,9,1.0,2,1.3081549406051636,71,1.0,3 +74571,9,1.0,2,1.5651516914367676,72,0.0,3 +74572,9,1.0,2,1.542151927947998,73,0.0,3 +74573,9,0.0,2,1.7491493225097656,74,0.0,3 +74574,9,0.0,2,2.009145975112915,75,0.0,3 +74575,9,1.0,2,1.3701541423797607,76,1.0,3 +74576,9,1.0,2,1.2141551971435547,77,1.0,3 +74577,9,1.0,2,1.2961550951004028,78,1.0,3 +74578,9,1.0,2,1.3181548118591309,79,0.0,3 +74579,9,0.0,2,1.1761550903320312,80,1.0,3 +74580,9,0.0,2,1.5321521759033203,81,0.0,3 +74581,9,0.0,2,1.4131536483764648,82,0.0,3 +74582,9,0.0,2,1.3461544513702393,83,0.0,3 +74583,9,0.0,2,2.098148822784424,84,1.0,3 +74584,9,0.0,2,1.2371551990509033,85,1.0,3 +74585,9,0.0,2,1.263155221939087,86,1.0,3 +74586,9,0.0,2,1.8841476440429688,87,1.0,3 +74587,9,0.0,2,1.63615083694458,88,1.0,3 +74588,9,0.0,2,1.5281521081924438,89,0.0,3 +74589,9,0.0,2,1.3721541166305542,90,0.0,3 +74590,9,1.0,2,1.3201547861099243,91,0.0,3 +74591,9,1.0,2,1.5681517124176025,92,0.0,3 +74592,9,0.0,2,1.2511552572250366,93,0.0,3 +74593,9,0.0,2,1.2731553316116333,94,1.0,3 +74594,9,0.0,2,1.288155198097229,95,0.0,3 +74595,9,1.0,2,1.2161551713943481,96,1.0,3 +74596,9,1.0,2,1.309154987335205,97,1.0,3 +74597,9,1.0,2,1.201155185699463,98,1.0,3 +74598,9,1.0,2,1.406153678894043,99,1.0,3 +74599,9,1.0,2,1.7491493225097656,100,0.0,3 +74600,9,1.0,2,1.7401494979858398,101,1.0,3 +74601,9,1.0,2,1.402153730392456,102,1.0,3 +74602,9,1.0,2,2.0391459465026855,103,0.0,3 +74603,9,0.0,2,2.147150993347168,104,0.0,3 +74604,9,0.0,2,1.6971499919891357,105,0.0,3 +74605,9,1.0,2,1.7791489362716675,106,0.0,3 +74606,9,1.0,2,1.2091552019119263,107,1.0,3 +74607,9,0.0,2,1.736149549484253,108,1.0,3 +74608,9,0.0,2,1.6051511764526367,109,1.0,3 +74609,9,0.0,2,1.6531505584716797,110,0.0,3 +74610,9,1.0,2,1.5051524639129639,111,0.0,3 +74611,9,0.0,2,1.5221521854400635,112,1.0,3 +74612,9,0.0,2,1.5721516609191895,113,0.0,3 +74613,9,0.0,2,1.1351549625396729,114,1.0,3 +74614,9,0.0,2,1.3111549615859985,115,0.0,3 +74615,9,1.0,2,1.287155270576477,116,0.0,3 +74616,9,0.0,2,1.2611552476882935,117,0.0,3 +74617,9,1.0,2,2.1551513671875,118,0.0,3 +74618,9,1.0,2,1.5401520729064941,119,1.0,3 +74619,9,1.0,2,1.6981499195098877,120,0.0,3 +74620,9,0.0,2,1.4851527214050293,121,1.0,3 +74621,9,0.0,2,1.3561543226242065,122,1.0,3 +74622,9,0.0,2,1.5071524381637573,123,1.0,3 +74623,9,0.0,2,2.0641472339630127,124,0.0,3 +74624,9,0.0,2,1.1701550483703613,125,1.0,3 +74625,9,0.0,2,1.3681541681289673,126,0.0,3 +74626,9,1.0,2,1.707149863243103,127,1.0,3 +74627,9,1.0,2,1.5211522579193115,128,1.0,3 +74628,9,1.0,2,1.188155174255371,129,0.0,3 +74629,9,0.0,2,2.0351457595825195,130,1.0,3 +74630,9,0.0,2,1.4691529273986816,131,0.0,3 +74631,9,0.0,2,1.5761516094207764,132,0.0,3 +74632,9,0.0,2,1.409153699874878,133,1.0,3 +74633,9,0.0,2,1.4701528549194336,134,1.0,3 +74634,9,0.0,2,1.494152545928955,135,0.0,3 +74635,9,0.0,2,1.9261469841003418,136,0.0,3 +74636,9,1.0,2,1.6251509189605713,137,0.0,3 +74637,9,1.0,2,1.8641479015350342,138,1.0,3 +74638,9,1.0,2,1.192155122756958,139,0.0,3 +74639,9,1.0,2,1.4801527261734009,140,0.0,3 +74640,9,0.0,2,1.6511505842208862,141,0.0,3 +74641,9,1.0,2,1.336154580116272,142,1.0,3 +74642,9,1.0,2,1.8501479625701904,143,1.0,3 +74643,9,1.0,2,1.5691516399383545,144,1.0,3 +74644,9,1.0,2,1.3011550903320312,145,0.0,3 +74645,9,0.0,2,1.332154631614685,146,0.0,3 +74646,9,1.0,2,1.3041549921035767,147,1.0,3 +74647,9,1.0,2,1.9491467475891113,148,1.0,3 +74648,9,1.0,2,1.3501543998718262,149,1.0,3 +74649,9,1.0,2,1.5051524639129639,150,1.0,3 +74650,9,1.0,2,1.611151099205017,151,1.0,3 +74651,9,1.0,2,1.707149863243103,152,0.0,3 +74652,9,1.0,2,1.2471551895141602,153,1.0,3 +74653,9,1.0,2,1.2431552410125732,154,1.0,3 +74654,9,1.0,2,1.4641529321670532,155,1.0,3 +74655,9,1.0,2,1.354154348373413,156,0.0,3 +74656,9,0.0,2,1.331154704093933,157,1.0,3 +74657,9,0.0,2,1.255155324935913,158,0.0,3 +74658,9,0.0,2,1.7441494464874268,159,0.0,3 +74659,9,1.0,2,1.2751553058624268,160,0.0,3 +74660,9,1.0,2,1.4601529836654663,161,0.0,3 +74661,9,1.0,2,1.6241509914398193,162,0.0,3 +74662,9,0.0,2,1.5111523866653442,163,0.0,3 +74663,9,1.0,2,2.2271547317504883,164,1.0,3 +74664,9,1.0,2,1.2131551504135132,165,0.0,3 +74665,9,0.0,2,1.872147798538208,166,0.0,3 +74666,9,1.0,2,1.162155032157898,167,1.0,3 +74667,9,0.0,2,1.1931551694869995,168,0.0,3 +74668,9,1.0,2,1.1781550645828247,169,0.0,3 +74669,9,1.0,2,1.5641517639160156,170,1.0,3 +74670,9,1.0,2,1.1871551275253296,171,0.0,3 +74671,9,0.0,2,1.2311551570892334,172,1.0,3 +74672,9,0.0,2,1.219155192375183,173,0.0,3 +74673,9,0.0,2,2.2631564140319824,174,1.0,3 +74674,9,0.0,2,1.6261508464813232,175,0.0,3 +74675,9,1.0,2,1.2451552152633667,176,0.0,3 +74676,9,1.0,2,1.3521543741226196,177,1.0,3 +74677,9,1.0,2,1.2241551876068115,178,1.0,3 +74678,9,0.0,2,1.523152232170105,179,0.0,3 +74679,9,1.0,2,1.7181496620178223,180,1.0,3 +74680,9,1.0,2,1.6741502285003662,181,1.0,3 +74681,9,1.0,2,2.0261456966400146,182,0.0,3 +74682,9,1.0,2,2.4581656455993652,183,1.0,3 +74683,9,1.0,2,1.3861539363861084,184,0.0,3 +74684,9,1.0,2,1.596151351928711,185,1.0,3 +74685,9,1.0,2,1.450153112411499,186,0.0,3 +74686,9,1.0,2,1.4961525201797485,187,1.0,3 +74687,9,1.0,2,1.4601529836654663,188,1.0,3 +74688,9,1.0,2,1.449153184890747,189,0.0,3 +74689,9,1.0,2,2.0261456966400146,190,1.0,3 +74690,9,1.0,2,1.6721503734588623,191,1.0,3 +74691,9,1.0,2,1.2201552391052246,192,1.0,3 +74692,9,1.0,2,1.309154987335205,193,0.0,3 +74693,9,0.0,2,1.1531550884246826,194,0.0,3 +74694,9,0.0,2,1.3631542921066284,195,1.0,3 +74695,9,0.0,2,1.192155122756958,196,1.0,3 +74696,9,0.0,2,1.2231552600860596,197,1.0,3 +74697,9,0.0,2,1.3081549406051636,198,1.0,3 +74698,9,0.0,2,1.255155324935913,199,1.0,3 +74699,9,0.0,2,1.2131551504135132,200,0.0,3 +74700,9,1.0,2,2.0341458320617676,201,1.0,3 +74701,9,1.0,2,1.453153133392334,202,0.0,3 +74702,9,0.0,2,1.3441544771194458,203,0.0,3 +74703,9,0.0,2,1.6691503524780273,204,1.0,3 +74704,9,0.0,2,1.7871488332748413,205,1.0,3 +74705,9,0.0,2,1.358154296875,206,1.0,3 +74706,9,0.0,2,1.9731464385986328,207,0.0,3 +74707,9,0.0,2,2.16215181350708,208,0.0,3 +74708,9,0.0,2,1.498152494430542,209,0.0,3 +74709,9,0.0,2,1.2781553268432617,210,0.0,3 +74710,9,1.0,2,1.3451545238494873,211,1.0,3 +74711,9,1.0,2,1.4471532106399536,212,1.0,3 +74712,9,1.0,2,1.256155252456665,213,0.0,3 +74713,9,0.0,2,1.424153447151184,214,0.0,3 +74714,9,1.0,2,1.3201547861099243,215,1.0,3 +74715,9,1.0,2,1.3861539363861084,216,0.0,3 +74716,9,1.0,2,1.5321521759033203,217,1.0,3 +74717,9,1.0,2,1.1941550970077515,218,0.0,3 +74718,9,0.0,2,2.0441462993621826,219,0.0,3 +74719,9,1.0,2,1.5331521034240723,220,1.0,3 +74720,9,1.0,2,1.4171535968780518,221,1.0,3 +74721,9,1.0,2,1.1561551094055176,222,1.0,3 +74722,9,1.0,2,1.2141551971435547,223,1.0,3 +74723,9,1.0,2,1.431153416633606,224,0.0,3 +74724,9,1.0,2,1.5841515064239502,225,0.0,3 +74725,9,0.0,2,1.310154914855957,226,0.0,3 +74726,9,0.0,2,1.2391552925109863,227,0.0,3 +74727,9,0.0,2,1.3261547088623047,228,1.0,3 +74728,9,0.0,2,1.409153699874878,229,0.0,3 +74729,9,0.0,2,1.284155249595642,230,1.0,3 +74730,9,0.0,2,1.3591543436050415,231,0.0,3 +74731,9,1.0,2,2.105149269104004,232,0.0,3 +74732,9,0.0,2,1.869147777557373,233,0.0,3 +74733,9,1.0,2,1.6031512022018433,234,0.0,3 +74734,9,1.0,2,1.5851514339447021,235,0.0,3 +74735,9,0.0,2,1.2161551713943481,236,1.0,3 +74736,9,0.0,2,1.128154993057251,237,0.0,3 +74737,9,1.0,2,1.4301533699035645,238,1.0,3 +74738,9,1.0,2,1.5281521081924438,239,1.0,3 +74739,9,1.0,2,1.571151614189148,240,0.0,3 +74740,9,0.0,2,1.3451545238494873,241,1.0,3 +74741,9,1.0,2,1.2591552734375,242,1.0,3 +74742,9,1.0,2,1.9151471853256226,243,1.0,3 +74743,9,1.0,2,1.8571479320526123,244,1.0,3 +74744,9,1.0,2,1.2271552085876465,245,1.0,3 +74745,9,1.0,2,1.4741528034210205,246,1.0,3 +74746,9,1.0,2,1.6141510009765625,247,0.0,3 +74747,9,1.0,2,1.4841526746749878,248,0.0,3 +74748,9,0.0,2,1.33515465259552,249,0.0,3 +74749,9,1.0,2,1.874147653579712,250,1.0,3 +74750,9,1.0,2,1.8971474170684814,251,0.0,3 +74751,9,0.0,2,2.2751569747924805,252,0.0,3 +74752,9,1.0,2,1.6351507902145386,253,1.0,3 +74753,9,1.0,2,1.3691542148590088,254,1.0,3 +74754,9,1.0,2,1.781148910522461,255,0.0,3 +74755,9,1.0,2,1.4871526956558228,256,1.0,3 +74756,9,1.0,2,1.3651542663574219,257,1.0,3 +74757,9,1.0,2,1.4651529788970947,258,0.0,3 +74758,9,0.0,2,1.7751489877700806,259,0.0,3 +74759,9,1.0,2,1.5251522064208984,260,0.0,3 +74760,9,1.0,2,2.0711474418640137,261,1.0,3 +74761,9,1.0,2,1.6801502704620361,262,1.0,3 +74762,9,1.0,2,1.292155146598816,263,0.0,3 +74763,9,0.0,2,2.431164264678955,264,0.0,3 +74764,9,1.0,2,1.9491467475891113,265,0.0,3 +74765,9,0.0,2,1.8641479015350342,266,0.0,3 +74766,9,0.0,2,1.7251496315002441,267,1.0,3 +74767,9,0.0,2,1.2041552066802979,268,1.0,3 +74768,9,0.0,2,1.3961538076400757,269,1.0,3 +74769,9,0.0,2,1.0991549491882324,270,0.0,3 +74770,9,0.0,2,1.6681504249572754,271,0.0,3 +74771,9,1.0,2,1.7791489362716675,272,1.0,3 +74772,9,1.0,2,1.4921525716781616,273,1.0,3 +74773,9,1.0,2,1.588151454925537,274,0.0,3 +74774,9,0.0,2,2.0631470680236816,275,1.0,3 +74775,9,0.0,2,1.1011549234390259,276,1.0,3 +74776,9,0.0,2,1.6071511507034302,277,0.0,3 +74777,9,0.0,2,1.2341551780700684,278,0.0,3 +74778,9,1.0,2,1.7661490440368652,279,1.0,3 +74779,9,1.0,2,1.7661490440368652,280,0.0,3 +74780,9,1.0,2,1.9111472368240356,281,0.0,3 +74781,9,0.0,2,1.9711464643478394,282,1.0,3 +74782,9,1.0,2,1.3731541633605957,283,0.0,3 +74783,9,0.0,2,1.4341533184051514,284,0.0,3 +74784,9,0.0,2,1.684150218963623,285,0.0,3 +74785,9,0.0,2,1.5251522064208984,286,1.0,3 +74786,9,0.0,2,1.1661550998687744,287,0.0,3 +74787,9,0.0,2,1.1841551065444946,288,1.0,3 +74788,9,0.0,2,1.3501543998718262,289,1.0,3 +74789,9,0.0,2,1.3851540088653564,290,1.0,3 +74790,9,0.0,2,1.1521550416946411,291,1.0,3 +74791,9,0.0,2,1.3781540393829346,292,0.0,3 +74792,9,0.0,2,1.361154317855835,293,1.0,3 +74793,9,0.0,2,2.016145944595337,294,1.0,3 +74794,9,0.0,2,1.25315523147583,295,0.0,3 +74795,9,0.0,2,1.5181522369384766,296,0.0,3 +74796,9,0.0,2,2.2021536827087402,297,0.0,3 +74797,9,0.0,2,1.9851462841033936,298,1.0,3 +74798,9,0.0,2,1.4601529836654663,299,0.0,3 +74799,9,0.0,2,1.6051511764526367,300,1.0,3 +74800,9,0.0,2,1.3781540393829346,301,0.0,3 +74801,9,0.0,2,1.7711490392684937,302,1.0,3 +74802,9,0.0,2,1.7921488285064697,303,0.0,3 +74803,9,0.0,2,1.4811527729034424,304,0.0,3 +74804,9,0.0,2,1.402153730392456,305,1.0,3 +74805,9,0.0,2,1.4961525201797485,306,1.0,3 +74806,9,0.0,2,1.638150691986084,307,0.0,3 +74807,9,0.0,2,1.2991551160812378,308,1.0,3 +74808,9,0.0,2,1.71114981174469,309,0.0,3 +74809,9,1.0,2,1.588151454925537,310,1.0,3 +74810,9,1.0,2,1.401153802871704,311,0.0,3 +74811,9,0.0,2,1.2141551971435547,312,1.0,3 +74812,9,0.0,2,1.2451552152633667,313,1.0,3 +74813,9,0.0,2,1.1711550951004028,314,0.0,3 +74814,9,0.0,2,1.9411468505859375,315,1.0,3 +74815,9,0.0,2,1.2581552267074585,316,1.0,3 +74816,9,0.0,2,1.1741551160812378,317,0.0,3 +74817,9,0.0,2,1.7391494512557983,318,0.0,3 +74818,9,0.0,2,2.0791478157043457,319,0.0,3 +74819,9,0.0,2,1.2611552476882935,320,0.0,3 +74820,9,0.0,2,1.7151497602462769,321,0.0,3 +74821,9,0.0,2,1.5031524896621704,322,0.0,3 +74822,9,0.0,2,1.336154580116272,323,0.0,3 +74823,9,0.0,2,1.5951513051986694,324,1.0,3 +74824,9,0.0,2,1.4841526746749878,325,0.0,3 +74825,9,0.0,2,1.7871488332748413,326,1.0,3 +74826,9,0.0,2,1.2161551713943481,327,0.0,3 +74827,9,0.0,2,1.2861552238464355,328,1.0,3 +74828,9,0.0,2,1.3431545495986938,329,0.0,3 +74829,9,1.0,2,1.4581530094146729,330,0.0,3 +74830,9,0.0,2,1.0991549491882324,331,0.0,3 +74831,9,0.0,2,1.226155161857605,332,1.0,3 +74832,9,0.0,2,1.2181551456451416,333,0.0,3 +74833,9,0.0,2,1.2121552228927612,334,0.0,3 +74834,9,0.0,2,1.402153730392456,335,0.0,3 +74835,9,0.0,2,1.134155035018921,336,0.0,3 +74836,9,1.0,2,2.179152488708496,337,0.0,3 +74837,9,1.0,2,1.354154348373413,338,0.0,3 +74838,9,1.0,2,1.866147756576538,339,1.0,3 +74839,9,1.0,2,1.5361521244049072,340,0.0,3 +74840,9,1.0,2,1.3891539573669434,341,1.0,3 +74841,9,1.0,2,1.5801515579223633,342,1.0,3 +74842,9,1.0,2,1.2431552410125732,343,0.0,3 +74843,9,0.0,2,1.4361532926559448,344,0.0,3 +74844,9,1.0,2,1.644150733947754,345,0.0,3 +74845,9,0.0,2,1.2591552734375,346,0.0,3 +74846,9,0.0,2,1.6991499662399292,347,0.0,3 +74847,9,0.0,2,1.1931551694869995,348,1.0,3 +74848,9,0.0,2,1.4591530561447144,349,1.0,3 +74849,9,0.0,2,1.1821551322937012,350,0.0,3 +74850,9,0.0,2,1.2171552181243896,351,1.0,3 +74851,9,0.0,2,1.2341551780700684,352,0.0,3 +74852,9,1.0,2,2.150151252746582,353,1.0,3 +74853,9,1.0,2,1.2161551713943481,354,1.0,3 +74854,9,1.0,2,1.9061472415924072,355,1.0,3 +74855,9,1.0,2,1.2731553316116333,356,0.0,3 +74856,9,0.0,2,1.541152000427246,357,1.0,3 +74857,9,0.0,2,1.339154601097107,358,0.0,3 +74858,9,1.0,2,1.9821462631225586,359,1.0,3 +74859,9,1.0,2,1.3241547346115112,360,0.0,3 +74860,9,1.0,2,1.4421532154083252,361,0.0,3 +74861,9,1.0,2,1.6511505842208862,362,0.0,3 +74862,9,1.0,2,1.5211522579193115,363,0.0,3 +74863,9,0.0,2,1.5521519184112549,364,0.0,3 +74864,9,1.0,2,2.0361459255218506,365,1.0,3 +74865,9,1.0,2,1.542151927947998,366,0.0,3 +74866,9,1.0,2,1.4391533136367798,367,1.0,3 +74867,9,1.0,2,1.8381481170654297,368,0.0,3 +74868,9,0.0,2,1.4291534423828125,369,0.0,3 +74869,9,0.0,2,1.3591543436050415,370,0.0,3 +74870,9,1.0,2,2.0271458625793457,371,1.0,3 +74871,9,1.0,2,1.2671552896499634,372,0.0,3 +74872,9,0.0,2,1.3061549663543701,373,1.0,3 +74873,9,0.0,2,1.2521553039550781,374,1.0,3 +74874,9,0.0,2,1.2931551933288574,375,0.0,3 +74875,9,0.0,2,1.6241509914398193,376,0.0,3 +74876,9,0.0,2,1.7901487350463867,377,0.0,3 +74877,9,0.0,2,1.3111549615859985,378,1.0,3 +74878,9,0.0,2,1.427153468132019,379,1.0,3 +74879,9,0.0,2,1.2821552753448486,380,0.0,3 +74880,9,1.0,2,1.7091498374938965,381,0.0,3 +74881,9,1.0,2,1.9891462326049805,382,0.0,3 +74882,9,0.0,2,1.6721503734588623,383,0.0,3 +74883,9,1.0,2,1.803148627281189,384,0.0,3 +74884,9,1.0,2,1.5221521854400635,385,0.0,3 +74885,9,0.0,2,1.6531505584716797,386,1.0,3 +74886,9,0.0,2,1.2721552848815918,387,1.0,3 +74887,9,0.0,2,1.5041524171829224,388,0.0,3 +74888,9,1.0,2,1.4611530303955078,389,1.0,3 +74889,9,1.0,2,1.1871551275253296,390,1.0,3 +74890,9,1.0,2,1.6291508674621582,391,1.0,3 +74891,9,1.0,2,1.3691542148590088,392,0.0,3 +74892,9,1.0,2,1.3911539316177368,393,1.0,3 +74893,9,1.0,2,1.8191484212875366,394,1.0,3 +74894,9,1.0,2,1.3531544208526611,395,1.0,3 +74895,9,1.0,2,1.3341546058654785,396,1.0,3 +74896,9,1.0,2,1.222155213356018,397,0.0,3 +74897,9,0.0,2,1.22915518283844,398,1.0,3 +74898,9,0.0,2,1.4031537771224976,399,0.0,3 +74899,9,0.0,2,1.920147180557251,400,1.0,3 +74900,9,0.0,2,1.3921538591384888,401,0.0,3 +74901,9,0.0,2,2.0331459045410156,402,1.0,3 +74902,9,0.0,2,1.380154013633728,403,1.0,3 +74903,9,0.0,2,1.4901525974273682,404,1.0,3 +74904,9,0.0,2,1.3181548118591309,405,0.0,3 +74905,9,0.0,2,1.1471550464630127,406,0.0,3 +74906,9,1.0,2,1.6531505584716797,407,0.0,3 +74907,9,1.0,2,1.4951525926589966,408,1.0,3 +74908,9,1.0,2,1.2521553039550781,409,1.0,3 +74909,9,0.0,2,1.4911526441574097,410,1.0,3 +74910,9,0.0,2,1.291155219078064,411,1.0,3 +74911,9,0.0,2,1.2151551246643066,412,0.0,3 +74912,9,1.0,2,1.33515465259552,413,1.0,3 +74913,9,1.0,2,1.5851514339447021,414,0.0,3 +74914,9,1.0,2,1.262155294418335,415,1.0,3 +74915,9,1.0,2,2.183152675628662,416,0.0,3 +74916,9,0.0,2,1.6641504764556885,417,1.0,3 +74917,9,0.0,2,1.2611552476882935,418,0.0,3 +74918,9,0.0,2,1.6661503314971924,419,0.0,3 +74919,9,1.0,2,1.2361552715301514,420,0.0,3 +74920,9,0.0,2,1.1351549625396729,421,1.0,3 +74921,9,0.0,2,1.1771551370620728,422,1.0,3 +74922,9,0.0,2,1.1671550273895264,423,1.0,3 +74923,9,0.0,2,1.6931500434875488,424,0.0,3 +74924,9,1.0,2,2.107149124145508,425,0.0,3 +74925,9,0.0,2,1.7161498069763184,426,0.0,3 +74926,9,0.0,2,1.6681504249572754,427,1.0,3 +74927,9,0.0,2,1.3341546058654785,428,0.0,3 +74928,9,1.0,2,1.68215012550354,429,1.0,3 +74929,9,1.0,2,1.284155249595642,430,1.0,3 +74930,9,1.0,2,1.4851527214050293,431,0.0,3 +74931,9,1.0,2,1.594151258468628,432,0.0,3 +74932,9,0.0,2,1.707149863243103,433,1.0,3 +74933,9,0.0,2,1.519152283668518,434,0.0,3 +74934,9,1.0,2,1.309154987335205,435,1.0,3 +74935,9,1.0,2,1.3601542711257935,436,1.0,3 +74936,9,1.0,2,1.4691529273986816,437,0.0,3 +74937,9,1.0,2,1.4481531381607056,438,1.0,3 +74938,9,1.0,2,1.524152159690857,439,1.0,3 +74939,9,1.0,2,1.2501552104949951,440,1.0,3 +74940,9,1.0,2,1.2471551895141602,441,1.0,3 +74941,9,1.0,2,1.432153344154358,442,1.0,3 +74942,9,1.0,2,1.3741540908813477,443,0.0,3 +74943,9,1.0,2,1.292155146598816,444,0.0,3 +74944,9,1.0,2,1.4081536531448364,445,1.0,3 +74945,9,0.0,2,1.4191535711288452,446,0.0,3 +74946,9,1.0,2,1.5041524171829224,447,0.0,3 +74947,9,1.0,2,1.6651504039764404,448,0.0,3 +74948,9,1.0,2,1.3401545286178589,449,0.0,3 +74949,9,1.0,2,1.3221547603607178,450,0.0,3 +74950,9,1.0,2,1.4161535501480103,451,0.0,3 +74951,9,1.0,2,1.228155255317688,452,1.0,3 +74952,9,1.0,2,1.726149559020996,453,0.0,3 +74953,9,0.0,2,1.3271547555923462,454,0.0,3 +74954,9,0.0,2,1.2511552572250366,455,1.0,3 +74955,9,0.0,2,1.6561505794525146,456,0.0,3 +74956,9,0.0,2,1.870147705078125,457,0.0,3 +74957,9,1.0,2,1.5151523351669312,458,0.0,3 +74958,9,1.0,2,1.5181522369384766,459,1.0,3 +74959,9,1.0,2,1.6091511249542236,460,1.0,3 +74960,9,1.0,2,1.3751541376113892,461,0.0,3 +74961,9,1.0,2,1.9081473350524902,462,1.0,3 +74962,9,1.0,2,1.3811540603637695,463,0.0,3 +74963,9,0.0,2,1.2271552085876465,464,0.0,3 +74964,9,1.0,2,1.5061523914337158,465,1.0,3 +74965,9,1.0,2,1.155155062675476,466,1.0,3 +74966,9,1.0,2,1.3221547603607178,467,1.0,3 +74967,9,1.0,2,1.3201547861099243,468,1.0,3 +74968,9,1.0,2,1.263155221939087,469,1.0,3 +74969,9,1.0,2,1.3251547813415527,470,1.0,3 +74970,9,1.0,2,1.5031524896621704,471,1.0,3 +74971,9,1.0,2,1.3821539878845215,472,1.0,3 +74972,9,1.0,2,1.3251547813415527,473,0.0,3 +74973,9,1.0,2,1.1721551418304443,474,1.0,3 +74974,9,1.0,2,1.192155122756958,475,1.0,3 +74975,9,1.0,2,1.3981537818908691,476,1.0,3 +74976,9,1.0,2,1.314154863357544,477,1.0,3 +74977,9,1.0,2,1.4161535501480103,478,1.0,3 +74978,9,1.0,2,1.4101536273956299,479,0.0,3 +74979,9,0.0,2,1.5311521291732788,480,0.0,3 +74980,9,1.0,2,2.0621471405029297,481,0.0,3 +74981,9,0.0,2,1.52015221118927,482,0.0,3 +74982,9,1.0,2,1.5031524896621704,483,1.0,3 +74983,9,1.0,2,1.3031550645828247,484,0.0,3 +74984,9,1.0,2,1.6491506099700928,485,1.0,3 +74985,9,1.0,2,1.3971538543701172,486,0.0,3 +74986,9,1.0,2,1.920147180557251,487,0.0,3 +74987,9,0.0,2,1.778148889541626,488,1.0,3 +74988,9,0.0,2,1.4991525411605835,489,1.0,3 +74989,9,0.0,2,1.2141551971435547,490,0.0,3 +74990,9,1.0,2,1.4611530303955078,491,0.0,3 +74991,9,0.0,2,1.2091552019119263,492,0.0,3 +74992,9,1.0,2,2.108149290084839,493,0.0,3 +74993,9,0.0,2,1.226155161857605,494,0.0,3 +74994,9,1.0,2,1.4901525974273682,495,1.0,3 +74995,9,1.0,2,1.405153751373291,496,1.0,3 +74996,9,1.0,2,1.7531492710113525,497,1.0,3 +74997,9,0.0,2,1.1821551322937012,498,0.0,3 +74998,9,0.0,2,1.6751502752304077,499,1.0,3 +74999,9,1.0,2,1.409153699874878,500,1.0,3 +75000,10,0.0,0,1.0962382555007935,1,0.0,3 +75001,10,0.0,0,1.8552311658859253,2,0.0,3 +75002,10,1.0,0,1.6632336378097534,3,1.0,3 +75003,10,0.0,0,1.656233787536621,4,0.0,3 +75004,10,1.0,0,1.7382326126098633,5,1.0,3 +75005,10,1.0,0,1.610234260559082,6,1.0,3 +75006,10,1.0,0,1.3272379636764526,7,1.0,3 +75007,10,1.0,0,1.3712373971939087,8,1.0,3 +75008,10,1.0,0,1.7452325820922852,9,1.0,3 +75009,10,1.0,0,1.253238558769226,10,1.0,3 +75010,10,1.0,0,1.2202385663986206,11,1.0,3 +75011,10,1.0,0,1.5332353115081787,12,1.0,3 +75012,10,1.0,0,1.2572386264801025,13,0.0,3 +75013,10,1.0,0,1.265238642692566,14,1.0,3 +75014,10,1.0,0,1.3672374486923218,15,0.0,3 +75015,10,0.0,0,1.229238510131836,16,1.0,3 +75016,10,1.0,0,1.8692309856414795,17,1.0,3 +75017,10,1.0,0,2.1142332553863525,18,1.0,3 +75018,10,0.0,0,1.3392378091812134,19,1.0,3 +75019,10,1.0,0,1.4162367582321167,20,1.0,3 +75020,10,0.0,0,1.4052369594573975,21,0.0,3 +75021,10,1.0,0,1.7552324533462524,22,1.0,3 +75022,10,1.0,0,1.610234260559082,23,1.0,3 +75023,10,1.0,0,1.5112355947494507,24,1.0,3 +75024,10,1.0,0,1.942229986190796,25,1.0,3 +75025,10,1.0,0,1.5502350330352783,26,1.0,3 +75026,10,1.0,0,1.5032356977462769,27,1.0,3 +75027,10,1.0,0,1.8032318353652954,28,0.0,3 +75028,10,0.0,0,1.7662322521209717,29,0.0,3 +75029,10,0.0,0,1.5102355480194092,30,0.0,3 +75030,10,0.0,0,1.385237216949463,31,0.0,3 +75031,10,1.0,0,1.635233998298645,32,0.0,3 +75032,10,1.0,0,1.6892333030700684,33,1.0,3 +75033,10,1.0,0,1.2082384824752808,34,1.0,3 +75034,10,1.0,0,1.5072356462478638,35,1.0,3 +75035,10,1.0,0,1.6532337665557861,36,1.0,3 +75036,10,1.0,0,1.657233715057373,37,1.0,3 +75037,10,1.0,0,1.941230058670044,38,1.0,3 +75038,10,1.0,0,2.0172290802001953,39,1.0,3 +75039,10,1.0,0,1.1372383832931519,40,1.0,3 +75040,10,1.0,0,1.33723783493042,41,1.0,3 +75041,10,1.0,0,1.4092369079589844,42,0.0,3 +75042,10,1.0,0,1.6212341785430908,43,1.0,3 +75043,10,1.0,0,1.5742347240447998,44,1.0,3 +75044,10,1.0,0,1.2032384872436523,45,1.0,3 +75045,10,1.0,0,1.2202385663986206,46,1.0,3 +75046,10,1.0,0,1.469236135482788,47,1.0,3 +75047,10,1.0,0,1.6762335300445557,48,1.0,3 +75048,10,1.0,0,1.1832385063171387,49,1.0,3 +75049,10,1.0,0,1.4382364749908447,50,1.0,3 +75050,10,1.0,0,1.5972344875335693,51,1.0,3 +75051,10,1.0,0,1.6452338695526123,52,1.0,3 +75052,10,1.0,0,1.4052369594573975,53,1.0,3 +75053,10,1.0,0,1.3732373714447021,54,1.0,3 +75054,10,1.0,0,1.565234899520874,55,1.0,3 +75055,10,1.0,0,1.4402364492416382,56,1.0,3 +75056,10,1.0,0,1.631234049797058,57,1.0,3 +75057,10,1.0,0,1.49923574924469,58,1.0,3 +75058,10,1.0,0,1.5062355995178223,59,1.0,3 +75059,10,1.0,0,1.4552363157272339,60,1.0,3 +75060,10,1.0,0,1.2722386121749878,61,1.0,3 +75061,10,1.0,0,1.8652310371398926,62,0.0,3 +75062,10,1.0,0,1.1912384033203125,63,1.0,3 +75063,10,1.0,0,1.8322315216064453,64,1.0,3 +75064,10,0.0,0,1.5712348222732544,65,0.0,3 +75065,10,1.0,0,2.0062291622161865,66,1.0,3 +75066,10,1.0,0,1.3862371444702148,67,1.0,3 +75067,10,1.0,0,1.4102368354797363,68,1.0,3 +75068,10,1.0,0,1.1822384595870972,69,1.0,3 +75069,10,1.0,0,1.4242366552352905,70,1.0,3 +75070,10,0.0,0,1.2582385540008545,71,1.0,3 +75071,10,1.0,0,1.7072330713272095,72,1.0,3 +75072,10,0.0,0,1.4022369384765625,73,0.0,3 +75073,10,1.0,0,1.5512350797653198,74,1.0,3 +75074,10,0.0,0,1.2062385082244873,75,0.0,3 +75075,10,1.0,0,1.7172329425811768,76,1.0,3 +75076,10,1.0,0,1.403236985206604,77,0.0,3 +75077,10,1.0,0,1.562234878540039,78,1.0,3 +75078,10,1.0,0,1.5062355995178223,79,0.0,3 +75079,10,0.0,0,1.5342352390289307,80,0.0,3 +75080,10,0.0,0,1.8582310676574707,81,1.0,3 +75081,10,0.0,0,1.1082383394241333,82,0.0,3 +75082,10,0.0,0,1.911230444908142,83,0.0,3 +75083,10,0.0,0,1.9972293376922607,84,0.0,3 +75084,10,1.0,0,1.6272341012954712,85,1.0,3 +75085,10,1.0,0,1.2182384729385376,86,1.0,3 +75086,10,1.0,0,1.5592349767684937,87,1.0,3 +75087,10,1.0,0,1.222238540649414,88,1.0,3 +75088,10,1.0,0,1.6242341995239258,89,1.0,3 +75089,10,1.0,0,1.2602386474609375,90,1.0,3 +75090,10,1.0,0,1.3512376546859741,91,1.0,3 +75091,10,1.0,0,1.2332385778427124,92,1.0,3 +75092,10,1.0,0,1.4432364702224731,93,1.0,3 +75093,10,1.0,0,1.2782385349273682,94,1.0,3 +75094,10,1.0,0,1.5552350282669067,95,0.0,3 +75095,10,0.0,0,1.658233642578125,96,0.0,3 +75096,10,0.0,0,1.7712322473526,97,1.0,3 +75097,10,0.0,0,1.3142380714416504,98,0.0,3 +75098,10,0.0,0,1.6052343845367432,99,0.0,3 +75099,10,1.0,0,1.6732335090637207,100,1.0,3 +75100,10,1.0,0,1.2482385635375977,101,1.0,3 +75101,10,1.0,0,1.6342339515686035,102,1.0,3 +75102,10,0.0,0,2.1262338161468506,103,0.0,3 +75103,10,1.0,0,1.3232380151748657,104,1.0,3 +75104,10,1.0,0,1.2672386169433594,105,1.0,3 +75105,10,1.0,0,1.3032382726669312,106,0.0,3 +75106,10,1.0,0,1.2132384777069092,107,1.0,3 +75107,10,1.0,0,1.3452377319335938,108,1.0,3 +75108,10,1.0,0,1.2172385454177856,109,1.0,3 +75109,10,1.0,0,1.1962385177612305,110,0.0,3 +75110,10,1.0,0,2.256239891052246,111,1.0,3 +75111,10,1.0,0,1.2972383499145508,112,1.0,3 +75112,10,1.0,0,1.3222379684448242,113,1.0,3 +75113,10,1.0,0,1.2132384777069092,114,0.0,3 +75114,10,0.0,0,1.4792360067367554,115,0.0,3 +75115,10,0.0,0,2.0602307319641113,116,0.0,3 +75116,10,0.0,0,1.2952383756637573,117,0.0,3 +75117,10,1.0,0,2.1372342109680176,118,1.0,3 +75118,10,1.0,0,1.4312366247177124,119,1.0,3 +75119,10,1.0,0,1.2242385149002075,120,1.0,3 +75120,10,1.0,0,1.3902370929718018,121,1.0,3 +75121,10,1.0,0,1.6432338953018188,122,1.0,3 +75122,10,1.0,0,1.3092381954193115,123,1.0,3 +75123,10,1.0,0,1.3832372426986694,124,1.0,3 +75124,10,1.0,0,1.5362353324890137,125,1.0,3 +75125,10,1.0,0,1.1572383642196655,126,0.0,3 +75126,10,1.0,0,1.708233118057251,127,1.0,3 +75127,10,1.0,0,1.6022343635559082,128,0.0,3 +75128,10,0.0,0,1.4192367792129517,129,0.0,3 +75129,10,0.0,0,1.2812385559082031,130,0.0,3 +75130,10,0.0,0,1.2452385425567627,131,0.0,3 +75131,10,1.0,0,2.032229423522949,132,1.0,3 +75132,10,1.0,0,1.474236011505127,133,1.0,3 +75133,10,1.0,0,1.30823814868927,134,1.0,3 +75134,10,1.0,0,1.4082368612289429,135,1.0,3 +75135,10,0.0,0,1.6022343635559082,136,0.0,3 +75136,10,1.0,0,1.2462385892868042,137,1.0,3 +75137,10,0.0,0,1.2682386636734009,138,0.0,3 +75138,10,0.0,0,2.0022292137145996,139,1.0,3 +75139,10,1.0,0,1.6782333850860596,140,1.0,3 +75140,10,0.0,0,1.2142385244369507,141,0.0,3 +75141,10,1.0,0,1.44723641872406,142,1.0,3 +75142,10,1.0,0,1.9852294921875,143,1.0,3 +75143,10,0.0,0,1.7222328186035156,144,0.0,3 +75144,10,1.0,0,1.1732383966445923,145,1.0,3 +75145,10,1.0,0,1.2692385911941528,146,1.0,3 +75146,10,1.0,0,1.6382339000701904,147,1.0,3 +75147,10,1.0,0,1.6852333545684814,148,1.0,3 +75148,10,1.0,0,1.7682323455810547,149,1.0,3 +75149,10,1.0,0,1.2942383289337158,150,1.0,3 +75150,10,1.0,0,1.3272379636764526,151,1.0,3 +75151,10,1.0,0,1.7132329940795898,152,1.0,3 +75152,10,0.0,0,1.473236083984375,153,1.0,3 +75153,10,1.0,0,1.9202303886413574,154,1.0,3 +75154,10,1.0,0,1.4082368612289429,155,1.0,3 +75155,10,0.0,0,1.4342365264892578,156,0.0,3 +75156,10,1.0,0,1.3932371139526367,157,1.0,3 +75157,10,1.0,0,1.289238452911377,158,1.0,3 +75158,10,1.0,0,1.1722384691238403,159,1.0,3 +75159,10,1.0,0,1.4022369384765625,160,1.0,3 +75160,10,1.0,0,1.3932371139526367,161,0.0,3 +75161,10,1.0,0,1.9062304496765137,162,1.0,3 +75162,10,1.0,0,1.6472338438034058,163,1.0,3 +75163,10,1.0,0,1.8102316856384277,164,0.0,3 +75164,10,1.0,0,1.5762348175048828,165,1.0,3 +75165,10,1.0,0,1.6292340755462646,166,0.0,3 +75166,10,1.0,0,1.6462337970733643,167,0.0,3 +75167,10,0.0,0,1.1012382507324219,168,0.0,3 +75168,10,1.0,0,1.2462385892868042,169,1.0,3 +75169,10,1.0,0,1.3272379636764526,170,1.0,3 +75170,10,1.0,0,1.9662296772003174,171,0.0,3 +75171,10,0.0,0,1.6702334880828857,172,0.0,3 +75172,10,1.0,0,1.4552363157272339,173,1.0,3 +75173,10,1.0,0,1.229238510131836,174,1.0,3 +75174,10,1.0,0,1.6182341575622559,175,1.0,3 +75175,10,1.0,0,1.3202379941940308,176,1.0,3 +75176,10,1.0,0,1.3272379636764526,177,1.0,3 +75177,10,1.0,0,1.3052382469177246,178,1.0,3 +75178,10,1.0,0,1.3602374792099,179,1.0,3 +75179,10,1.0,0,1.2632386684417725,180,1.0,3 +75180,10,1.0,0,1.2022384405136108,181,1.0,3 +75181,10,1.0,0,1.3412377834320068,182,1.0,3 +75182,10,1.0,0,1.4802359342575073,183,1.0,3 +75183,10,1.0,0,1.572234869003296,184,0.0,3 +75184,10,1.0,0,1.5842347145080566,185,1.0,3 +75185,10,1.0,0,2.0852317810058594,186,0.0,3 +75186,10,1.0,0,1.7332327365875244,187,1.0,3 +75187,10,1.0,0,2.0902321338653564,188,1.0,3 +75188,10,0.0,0,1.9232302904129028,189,1.0,3 +75189,10,0.0,0,1.7252328395843506,190,1.0,3 +75190,10,1.0,0,1.5762348175048828,191,1.0,3 +75191,10,0.0,0,1.6702334880828857,192,0.0,3 +75192,10,1.0,0,1.2392385005950928,193,0.0,3 +75193,10,0.0,0,1.1142382621765137,194,0.0,3 +75194,10,0.0,0,1.539235234260559,195,0.0,3 +75195,10,0.0,0,1.5322353839874268,196,0.0,3 +75196,10,1.0,0,1.2632386684417725,197,1.0,3 +75197,10,1.0,0,1.3172380924224854,198,1.0,3 +75198,10,1.0,0,1.631234049797058,199,1.0,3 +75199,10,1.0,0,1.3382377624511719,200,1.0,3 +75200,10,1.0,0,1.687233328819275,201,1.0,3 +75201,10,1.0,0,1.6252341270446777,202,1.0,3 +75202,10,1.0,0,1.4402364492416382,203,0.0,3 +75203,10,1.0,0,1.8322315216064453,204,1.0,3 +75204,10,1.0,0,1.3392378091812134,205,0.0,3 +75205,10,0.0,0,1.8582310676574707,206,0.0,3 +75206,10,1.0,0,1.374237298965454,207,1.0,3 +75207,10,0.0,0,1.134238362312317,208,0.0,3 +75208,10,1.0,0,1.7152329683303833,209,1.0,3 +75209,10,1.0,0,1.4212367534637451,210,1.0,3 +75210,10,0.0,0,1.6512337923049927,211,0.0,3 +75211,10,0.0,0,1.6532337665557861,212,0.0,3 +75212,10,1.0,0,1.3902370929718018,213,1.0,3 +75213,10,1.0,0,1.404236912727356,214,1.0,3 +75214,10,1.0,0,1.6342339515686035,215,1.0,3 +75215,10,1.0,0,1.4722360372543335,216,0.0,3 +75216,10,1.0,0,1.223238468170166,217,1.0,3 +75217,10,1.0,0,1.5372352600097656,218,1.0,3 +75218,10,1.0,0,1.7782320976257324,219,1.0,3 +75219,10,1.0,0,1.231238603591919,220,1.0,3 +75220,10,1.0,0,1.422236680984497,221,1.0,3 +75221,10,1.0,0,1.5512350797653198,222,1.0,3 +75222,10,1.0,0,1.3612375259399414,223,0.0,3 +75223,10,1.0,0,1.9582297801971436,224,1.0,3 +75224,10,1.0,0,1.2962383031845093,225,1.0,3 +75225,10,1.0,0,1.407236933708191,226,0.0,3 +75226,10,0.0,0,1.359237551689148,227,0.0,3 +75227,10,0.0,0,1.6652336120605469,228,0.0,3 +75228,10,0.0,0,1.49923574924469,229,0.0,3 +75229,10,0.0,0,1.4652361869812012,230,0.0,3 +75230,10,1.0,0,1.425236701965332,231,1.0,3 +75231,10,1.0,0,1.2422385215759277,232,0.0,3 +75232,10,1.0,0,1.7072330713272095,233,1.0,3 +75233,10,1.0,0,1.614234209060669,234,0.0,3 +75234,10,1.0,0,1.591234564781189,235,1.0,3 +75235,10,1.0,0,1.374237298965454,236,1.0,3 +75236,10,1.0,0,1.2982382774353027,237,1.0,3 +75237,10,1.0,0,1.2502385377883911,238,0.0,3 +75238,10,1.0,0,1.3192380666732788,239,1.0,3 +75239,10,0.0,0,1.613234281539917,240,0.0,3 +75240,10,1.0,0,1.3762372732162476,241,1.0,3 +75241,10,1.0,0,1.2962383031845093,242,1.0,3 +75242,10,1.0,0,1.500235676765442,243,1.0,3 +75243,10,1.0,0,1.5352352857589722,244,1.0,3 +75244,10,1.0,0,1.3652374744415283,245,1.0,3 +75245,10,1.0,0,1.422236680984497,246,1.0,3 +75246,10,1.0,0,1.562234878540039,247,1.0,3 +75247,10,1.0,0,1.2392385005950928,248,1.0,3 +75248,10,1.0,0,1.4972357749938965,249,1.0,3 +75249,10,1.0,0,1.3282378911972046,250,0.0,3 +75250,10,0.0,0,1.7002332210540771,251,0.0,3 +75251,10,0.0,0,1.9782295227050781,252,0.0,3 +75252,10,1.0,0,1.3602374792099,253,0.0,3 +75253,10,1.0,0,1.422236680984497,254,0.0,3 +75254,10,0.0,0,1.4102368354797363,255,0.0,3 +75255,10,1.0,0,1.8352314233779907,256,1.0,3 +75256,10,1.0,0,1.5202354192733765,257,1.0,3 +75257,10,0.0,0,1.6882333755493164,258,0.0,3 +75258,10,1.0,0,1.2092385292053223,259,1.0,3 +75259,10,1.0,0,1.6962332725524902,260,0.0,3 +75260,10,0.0,0,1.5342352390289307,261,0.0,3 +75261,10,0.0,0,1.2772386074066162,262,0.0,3 +75262,10,0.0,0,1.3142380714416504,263,0.0,3 +75263,10,1.0,0,1.797231912612915,264,0.0,3 +75264,10,1.0,0,1.8722310066223145,265,1.0,3 +75265,10,1.0,0,1.229238510131836,266,1.0,3 +75266,10,1.0,0,1.2922383546829224,267,1.0,3 +75267,10,1.0,0,1.4162367582321167,268,1.0,3 +75268,10,1.0,0,1.4352365732192993,269,1.0,3 +75269,10,1.0,0,1.4862358570098877,270,1.0,3 +75270,10,1.0,0,1.3892371654510498,271,1.0,3 +75271,10,1.0,0,2.033229351043701,272,1.0,3 +75272,10,1.0,0,1.495235800743103,273,1.0,3 +75273,10,1.0,0,1.5022356510162354,274,0.0,3 +75274,10,1.0,0,1.4282366037368774,275,1.0,3 +75275,10,1.0,0,1.565234899520874,276,1.0,3 +75276,10,1.0,0,1.3422377109527588,277,1.0,3 +75277,10,1.0,0,1.2352385520935059,278,1.0,3 +75278,10,1.0,0,1.7322328090667725,279,1.0,3 +75279,10,1.0,0,1.2992383241653442,280,1.0,3 +75280,10,1.0,0,1.2732386589050293,281,0.0,3 +75281,10,1.0,0,1.8662309646606445,282,1.0,3 +75282,10,1.0,0,1.122238278388977,283,1.0,3 +75283,10,1.0,0,1.2882384061813354,284,1.0,3 +75284,10,1.0,0,1.708233118057251,285,0.0,3 +75285,10,1.0,0,1.6002345085144043,286,1.0,3 +75286,10,1.0,0,1.290238380432129,287,1.0,3 +75287,10,1.0,0,1.8032318353652954,288,1.0,3 +75288,10,1.0,0,1.2502385377883911,289,1.0,3 +75289,10,1.0,0,1.8322315216064453,290,1.0,3 +75290,10,1.0,0,1.2402385473251343,291,0.0,3 +75291,10,0.0,0,1.6722335815429688,292,0.0,3 +75292,10,1.0,0,1.5402352809906006,293,1.0,3 +75293,10,1.0,0,1.5322353839874268,294,1.0,3 +75294,10,1.0,0,1.3532376289367676,295,1.0,3 +75295,10,0.0,0,1.1472383737564087,296,0.0,3 +75296,10,1.0,0,1.3232380151748657,297,0.0,3 +75297,10,0.0,0,2.1112332344055176,298,0.0,3 +75298,10,1.0,0,1.521235466003418,299,1.0,3 +75299,10,1.0,0,1.5272353887557983,300,0.0,3 +75300,10,0.0,0,1.1992385387420654,301,0.0,3 +75301,10,1.0,0,2.029229164123535,302,1.0,3 +75302,10,1.0,0,1.5462350845336914,303,0.0,3 +75303,10,0.0,0,2.1332340240478516,304,1.0,3 +75304,10,0.0,0,1.359237551689148,305,0.0,3 +75305,10,1.0,0,1.7202329635620117,306,1.0,3 +75306,10,1.0,0,1.5322353839874268,307,1.0,3 +75307,10,1.0,0,1.312238097190857,308,1.0,3 +75308,10,1.0,0,1.2022384405136108,309,1.0,3 +75309,10,0.0,0,1.7102329730987549,310,0.0,3 +75310,10,1.0,0,2.240239143371582,311,0.0,3 +75311,10,0.0,0,1.3662374019622803,312,1.0,3 +75312,10,0.0,0,1.7582323551177979,313,0.0,3 +75313,10,0.0,0,1.9132304191589355,314,0.0,3 +75314,10,1.0,0,1.8692309856414795,315,1.0,3 +75315,10,1.0,0,1.5442352294921875,316,1.0,3 +75316,10,1.0,0,1.6032344102859497,317,1.0,3 +75317,10,1.0,0,1.3022382259368896,318,1.0,3 +75318,10,1.0,0,1.2512385845184326,319,1.0,3 +75319,10,1.0,0,1.2462385892868042,320,1.0,3 +75320,10,1.0,0,1.3732373714447021,321,0.0,3 +75321,10,1.0,0,1.4342365264892578,322,0.0,3 +75322,10,0.0,0,1.4912358522415161,323,1.0,3 +75323,10,0.0,0,1.4152368307113647,324,0.0,3 +75324,10,0.0,0,1.186238408088684,325,0.0,3 +75325,10,0.0,0,1.315238118171692,326,0.0,3 +75326,10,0.0,0,1.4902358055114746,327,0.0,3 +75327,10,1.0,0,1.7732322216033936,328,0.0,3 +75328,10,0.0,0,1.5802347660064697,329,0.0,3 +75329,10,1.0,0,1.514235496520996,330,0.0,3 +75330,10,1.0,0,1.8822307586669922,331,0.0,3 +75331,10,1.0,0,1.8702309131622314,332,1.0,3 +75332,10,1.0,0,1.286238431930542,333,1.0,3 +75333,10,1.0,0,1.5552350282669067,334,1.0,3 +75334,10,1.0,0,1.377237319946289,335,1.0,3 +75335,10,1.0,0,1.4202367067337036,336,1.0,3 +75336,10,1.0,0,1.6262340545654297,337,1.0,3 +75337,10,1.0,0,1.4912358522415161,338,1.0,3 +75338,10,1.0,0,1.3422377109527588,339,1.0,3 +75339,10,0.0,0,1.8292315006256104,340,0.0,3 +75340,10,1.0,0,1.6652336120605469,341,1.0,3 +75341,10,1.0,0,1.2422385215759277,342,1.0,3 +75342,10,1.0,0,1.6682336330413818,343,1.0,3 +75343,10,1.0,0,1.4372365474700928,344,1.0,3 +75344,10,1.0,0,1.4092369079589844,345,1.0,3 +75345,10,0.0,0,1.4872359037399292,346,0.0,3 +75346,10,1.0,0,1.2382385730743408,347,1.0,3 +75347,10,1.0,0,1.9852294921875,348,1.0,3 +75348,10,1.0,0,1.28523850440979,349,0.0,3 +75349,10,1.0,0,1.3622374534606934,350,1.0,3 +75350,10,0.0,0,1.3142380714416504,351,0.0,3 +75351,10,1.0,0,1.4122368097305298,352,1.0,3 +75352,10,1.0,0,1.6752334833145142,353,1.0,3 +75353,10,1.0,0,1.3492376804351807,354,1.0,3 +75354,10,1.0,0,1.5072356462478638,355,1.0,3 +75355,10,1.0,0,1.30823814868927,356,1.0,3 +75356,10,1.0,0,1.2382385730743408,357,1.0,3 +75357,10,1.0,0,1.709233045578003,358,1.0,3 +75358,10,1.0,0,1.407236933708191,359,1.0,3 +75359,10,1.0,0,2.204237461090088,360,1.0,3 +75360,10,1.0,0,1.2662385702133179,361,1.0,3 +75361,10,1.0,0,1.3362377882003784,362,1.0,3 +75362,10,1.0,0,1.52223539352417,363,1.0,3 +75363,10,1.0,0,1.1812384128570557,364,1.0,3 +75364,10,1.0,0,1.4722360372543335,365,1.0,3 +75365,10,1.0,0,1.4882358312606812,366,0.0,3 +75366,10,1.0,0,1.7152329683303833,367,1.0,3 +75367,10,1.0,0,1.4232367277145386,368,0.0,3 +75368,10,0.0,0,1.7912319898605347,369,0.0,3 +75369,10,1.0,0,1.6722335815429688,370,1.0,3 +75370,10,1.0,0,1.5802347660064697,371,1.0,3 +75371,10,1.0,0,1.2202385663986206,372,1.0,3 +75372,10,1.0,0,1.6372339725494385,373,1.0,3 +75373,10,1.0,0,1.7772321701049805,374,1.0,3 +75374,10,1.0,0,1.4212367534637451,375,1.0,3 +75375,10,1.0,0,1.3682373762130737,376,1.0,3 +75376,10,1.0,0,1.4162367582321167,377,0.0,3 +75377,10,0.0,0,1.1472383737564087,378,1.0,3 +75378,10,0.0,0,1.3692374229431152,379,0.0,3 +75379,10,1.0,0,1.4412364959716797,380,1.0,3 +75380,10,1.0,0,1.3242379426956177,381,1.0,3 +75381,10,1.0,0,1.3632375001907349,382,0.0,3 +75382,10,0.0,0,1.1142382621765137,383,0.0,3 +75383,10,0.0,0,1.8172316551208496,384,0.0,3 +75384,10,0.0,0,1.4562362432479858,385,0.0,3 +75385,10,0.0,0,1.1202383041381836,386,0.0,3 +75386,10,1.0,0,2.0092291831970215,387,1.0,3 +75387,10,1.0,0,1.5352352857589722,388,1.0,3 +75388,10,1.0,0,1.3932371139526367,389,1.0,3 +75389,10,1.0,0,1.4392365217208862,390,1.0,3 +75390,10,1.0,0,1.164238452911377,391,1.0,3 +75391,10,1.0,0,1.2172385454177856,392,1.0,3 +75392,10,1.0,0,1.4242366552352905,393,1.0,3 +75393,10,1.0,0,1.5282354354858398,394,1.0,3 +75394,10,1.0,0,1.3652374744415283,395,1.0,3 +75395,10,1.0,0,1.477236032485962,396,1.0,3 +75396,10,1.0,0,1.2942383289337158,397,1.0,3 +75397,10,1.0,0,1.3252379894256592,398,1.0,3 +75398,10,1.0,0,1.4172368049621582,399,1.0,3 +75399,10,1.0,0,1.382237195968628,400,1.0,3 +75400,10,1.0,0,2.1322340965270996,401,1.0,3 +75401,10,1.0,0,1.4712361097335815,402,1.0,3 +75402,10,1.0,0,1.2802385091781616,403,0.0,3 +75403,10,0.0,0,1.798231840133667,404,0.0,3 +75404,10,0.0,0,1.6042344570159912,405,0.0,3 +75405,10,0.0,0,1.4232367277145386,406,0.0,3 +75406,10,0.0,0,1.7202329635620117,407,1.0,3 +75407,10,0.0,0,1.3472377061843872,408,0.0,3 +75408,10,1.0,0,1.2772386074066162,409,1.0,3 +75409,10,1.0,0,1.982229471206665,410,1.0,3 +75410,10,1.0,0,1.3262379169464111,411,1.0,3 +75411,10,0.0,0,1.4832359552383423,412,0.0,3 +75412,10,1.0,0,1.566234827041626,413,1.0,3 +75413,10,1.0,0,1.5742347240447998,414,1.0,3 +75414,10,1.0,0,1.5582349300384521,415,0.0,3 +75415,10,0.0,0,1.4822359085083008,416,1.0,3 +75416,10,0.0,0,1.561234951019287,417,0.0,3 +75417,10,0.0,0,1.5372352600097656,418,0.0,3 +75418,10,0.0,0,1.3382377624511719,419,1.0,3 +75419,10,0.0,0,2.0612306594848633,420,0.0,3 +75420,10,1.0,0,1.5882346630096436,421,1.0,3 +75421,10,1.0,0,1.2782385349273682,422,1.0,3 +75422,10,1.0,0,1.2812385559082031,423,1.0,3 +75423,10,1.0,0,1.842231273651123,424,1.0,3 +75424,10,1.0,0,1.5102355480194092,425,1.0,3 +75425,10,1.0,0,1.4132368564605713,426,1.0,3 +75426,10,1.0,0,1.333237886428833,427,1.0,3 +75427,10,1.0,0,1.7882320880889893,428,1.0,3 +75428,10,1.0,0,1.8252315521240234,429,1.0,3 +75429,10,1.0,0,1.1852384805679321,430,1.0,3 +75430,10,1.0,0,1.8062317371368408,431,0.0,3 +75431,10,0.0,0,1.3172380924224854,432,0.0,3 +75432,10,1.0,0,1.4862358570098877,433,0.0,3 +75433,10,0.0,0,1.6942331790924072,434,0.0,3 +75434,10,0.0,0,2.1062328815460205,435,0.0,3 +75435,10,0.0,0,1.610234260559082,436,0.0,3 +75436,10,0.0,0,1.1492383480072021,437,1.0,3 +75437,10,0.0,0,1.1842384338378906,438,0.0,3 +75438,10,0.0,0,1.9952293634414673,439,0.0,3 +75439,10,1.0,0,1.8782308101654053,440,1.0,3 +75440,10,1.0,0,1.6732335090637207,441,1.0,3 +75441,10,1.0,0,1.5382351875305176,442,1.0,3 +75442,10,0.0,0,1.7742321491241455,443,0.0,3 +75443,10,1.0,0,1.2302385568618774,444,1.0,3 +75444,10,0.0,0,1.6702334880828857,445,0.0,3 +75445,10,1.0,0,1.4092369079589844,446,1.0,3 +75446,10,1.0,0,1.290238380432129,447,1.0,3 +75447,10,1.0,0,1.222238540649414,448,1.0,3 +75448,10,1.0,0,1.6382339000701904,449,1.0,3 +75449,10,1.0,0,1.3482376337051392,450,1.0,3 +75450,10,1.0,0,1.377237319946289,451,0.0,3 +75451,10,1.0,0,1.610234260559082,452,1.0,3 +75452,10,1.0,0,1.356237530708313,453,1.0,3 +75453,10,1.0,0,1.5822346210479736,454,1.0,3 +75454,10,1.0,0,1.539235234260559,455,0.0,3 +75455,10,1.0,0,1.6692335605621338,456,1.0,3 +75456,10,1.0,0,1.610234260559082,457,1.0,3 +75457,10,1.0,0,1.657233715057373,458,1.0,3 +75458,10,1.0,0,1.4432364702224731,459,1.0,3 +75459,10,1.0,0,1.5092356204986572,460,1.0,3 +75460,10,1.0,0,1.654233694076538,461,0.0,3 +75461,10,1.0,0,1.2492386102676392,462,0.0,3 +75462,10,0.0,0,1.3762372732162476,463,1.0,3 +75463,10,0.0,0,1.329237937927246,464,0.0,3 +75464,10,0.0,0,1.5062355995178223,465,0.0,3 +75465,10,1.0,0,1.2432385683059692,466,1.0,3 +75466,10,1.0,0,1.7172329425811768,467,0.0,3 +75467,10,1.0,0,1.3242379426956177,468,0.0,3 +75468,10,1.0,0,1.7342326641082764,469,1.0,3 +75469,10,1.0,0,1.356237530708313,470,1.0,3 +75470,10,0.0,0,1.612234354019165,471,0.0,3 +75471,10,1.0,0,1.3012382984161377,472,1.0,3 +75472,10,1.0,0,1.6462337970733643,473,1.0,3 +75473,10,1.0,0,1.662233591079712,474,1.0,3 +75474,10,1.0,0,1.452236294746399,475,1.0,3 +75475,10,1.0,0,1.3572375774383545,476,1.0,3 +75476,10,1.0,0,1.4882358312606812,477,1.0,3 +75477,10,1.0,0,1.3352378606796265,478,1.0,3 +75478,10,1.0,0,1.1442383527755737,479,1.0,3 +75479,10,1.0,0,1.797231912612915,480,1.0,3 +75480,10,1.0,0,1.4162367582321167,481,1.0,3 +75481,10,1.0,0,1.5292353630065918,482,1.0,3 +75482,10,0.0,0,1.4022369384765625,483,0.0,3 +75483,10,1.0,0,1.290238380432129,484,0.0,3 +75484,10,1.0,0,1.399237036705017,485,1.0,3 +75485,10,1.0,0,1.4672361612319946,486,0.0,3 +75486,10,0.0,0,1.400236964225769,487,0.0,3 +75487,10,1.0,0,1.7152329683303833,488,1.0,3 +75488,10,1.0,0,1.333237886428833,489,0.0,3 +75489,10,0.0,0,2.0442299842834473,490,1.0,3 +75490,10,0.0,0,1.3132381439208984,491,0.0,3 +75491,10,0.0,0,1.4282366037368774,492,1.0,3 +75492,10,0.0,0,1.2512385845184326,493,0.0,3 +75493,10,1.0,0,2.1772360801696777,494,1.0,3 +75494,10,1.0,0,1.521235466003418,495,1.0,3 +75495,10,1.0,0,1.2182384729385376,496,1.0,3 +75496,10,1.0,0,1.6512337923049927,497,1.0,3 +75497,10,1.0,0,1.5132355690002441,498,1.0,3 +75498,10,1.0,0,1.749232530593872,499,1.0,3 +75499,10,1.0,0,1.1962385177612305,500,1.0,3 +75500,10,1.0,1,1.4842358827590942,1,1.0,3 +75501,10,1.0,1,1.2002384662628174,2,1.0,3 +75502,10,0.0,1,1.79423189163208,3,0.0,3 +75503,10,1.0,1,1.229238510131836,4,0.0,3 +75504,10,1.0,1,1.7292327880859375,5,0.0,3 +75505,10,0.0,1,1.3442376852035522,6,1.0,3 +75506,10,0.0,1,1.4212367534637451,7,0.0,3 +75507,10,0.0,1,1.5352352857589722,8,0.0,3 +75508,10,1.0,1,1.702233076095581,9,0.0,3 +75509,10,1.0,1,1.4562362432479858,10,0.0,3 +75510,10,0.0,1,1.6892333030700684,11,0.0,3 +75511,10,0.0,1,1.2842384576797485,12,1.0,3 +75512,10,0.0,1,1.1462383270263672,13,0.0,3 +75513,10,1.0,1,1.616234302520752,14,1.0,3 +75514,10,1.0,1,1.5812346935272217,15,1.0,3 +75515,10,1.0,1,1.4832359552383423,16,0.0,3 +75516,10,1.0,1,1.4402364492416382,17,1.0,3 +75517,10,1.0,1,1.4682360887527466,18,1.0,3 +75518,10,1.0,1,1.6722335815429688,19,0.0,3 +75519,10,1.0,1,1.5092356204986572,20,0.0,3 +75520,10,0.0,1,1.8562312126159668,21,0.0,3 +75521,10,0.0,1,2.2902414798736572,22,1.0,3 +75522,10,0.0,1,1.3232380151748657,23,1.0,3 +75523,10,0.0,1,1.2882384061813354,24,0.0,3 +75524,10,0.0,1,1.1762384176254272,25,0.0,3 +75525,10,1.0,1,1.8782308101654053,26,0.0,3 +75526,10,1.0,1,1.3252379894256592,27,0.0,3 +75527,10,0.0,1,1.5012357234954834,28,0.0,3 +75528,10,0.0,1,1.30823814868927,29,0.0,3 +75529,10,1.0,1,1.5782346725463867,30,1.0,3 +75530,10,1.0,1,1.1962385177612305,31,1.0,3 +75531,10,0.0,1,1.4652361869812012,32,0.0,3 +75532,10,1.0,1,1.4722360372543335,33,0.0,3 +75533,10,0.0,1,1.2942383289337158,34,0.0,3 +75534,10,0.0,1,1.4912358522415161,35,0.0,3 +75535,10,1.0,1,1.6082344055175781,36,1.0,3 +75536,10,1.0,1,1.2802385091781616,37,1.0,3 +75537,10,1.0,1,1.7302327156066895,38,1.0,3 +75538,10,1.0,1,1.496235728263855,39,1.0,3 +75539,10,1.0,1,1.3252379894256592,40,1.0,3 +75540,10,1.0,1,1.819231629371643,41,1.0,3 +75541,10,1.0,1,1.6302340030670166,42,1.0,3 +75542,10,1.0,1,1.2112385034561157,43,1.0,3 +75543,10,1.0,1,1.7152329683303833,44,1.0,3 +75544,10,0.0,1,1.5782346725463867,45,1.0,3 +75545,10,1.0,1,1.841231346130371,46,0.0,3 +75546,10,0.0,1,1.1542383432388306,47,0.0,3 +75547,10,1.0,1,1.5342352390289307,48,1.0,3 +75548,10,1.0,1,1.6472338438034058,49,0.0,3 +75549,10,0.0,1,1.2072384357452393,50,0.0,3 +75550,10,0.0,1,1.3922370672225952,51,0.0,3 +75551,10,1.0,1,1.4102368354797363,52,0.0,3 +75552,10,0.0,1,1.1942384243011475,53,0.0,3 +75553,10,1.0,1,2.022228956222534,54,0.0,3 +75554,10,1.0,1,1.7852320671081543,55,0.0,3 +75555,10,0.0,1,1.8732309341430664,56,0.0,3 +75556,10,0.0,1,1.2182384729385376,57,0.0,3 +75557,10,1.0,1,1.569234848022461,58,1.0,3 +75558,10,1.0,1,1.6712335348129272,59,0.0,3 +75559,10,0.0,1,1.3902370929718018,60,0.0,3 +75560,10,1.0,1,1.495235800743103,61,1.0,3 +75561,10,1.0,1,1.3202379941940308,62,1.0,3 +75562,10,1.0,1,1.2792385816574097,63,1.0,3 +75563,10,1.0,1,1.374237298965454,64,0.0,3 +75564,10,1.0,1,1.5312353372573853,65,0.0,3 +75565,10,1.0,1,1.8152316808700562,66,1.0,3 +75566,10,1.0,1,1.7422325611114502,67,0.0,3 +75567,10,1.0,1,1.6202342510223389,68,1.0,3 +75568,10,1.0,1,1.617234230041504,69,1.0,3 +75569,10,1.0,1,1.289238452911377,70,1.0,3 +75570,10,1.0,1,1.2022384405136108,71,0.0,3 +75571,10,0.0,1,1.4582362174987793,72,0.0,3 +75572,10,1.0,1,1.8372313976287842,73,0.0,3 +75573,10,1.0,1,1.664233684539795,74,1.0,3 +75574,10,1.0,1,1.219238519668579,75,1.0,3 +75575,10,0.0,1,1.1352384090423584,76,0.0,3 +75576,10,1.0,1,1.3322378396987915,77,0.0,3 +75577,10,1.0,1,1.4342365264892578,78,1.0,3 +75578,10,1.0,1,1.706233024597168,79,1.0,3 +75579,10,1.0,1,1.3732373714447021,80,1.0,3 +75580,10,1.0,1,1.4082368612289429,81,0.0,3 +75581,10,1.0,1,1.944230079650879,82,1.0,3 +75582,10,1.0,1,1.1792384386062622,83,0.0,3 +75583,10,0.0,1,1.2922383546829224,84,0.0,3 +75584,10,0.0,1,2.216238021850586,85,1.0,3 +75585,10,0.0,1,1.587234616279602,86,1.0,3 +75586,10,0.0,1,1.1692384481430054,87,1.0,3 +75587,10,0.0,1,1.2922383546829224,88,1.0,3 +75588,10,0.0,1,1.3212380409240723,89,0.0,3 +75589,10,0.0,1,1.2182384729385376,90,0.0,3 +75590,10,1.0,1,2.0842318534851074,91,1.0,3 +75591,10,1.0,1,1.226238489151001,92,0.0,3 +75592,10,0.0,1,1.5092356204986572,93,0.0,3 +75593,10,0.0,1,1.377237319946289,94,0.0,3 +75594,10,1.0,1,1.915230393409729,95,1.0,3 +75595,10,1.0,1,1.746232509613037,96,0.0,3 +75596,10,0.0,1,1.2132384777069092,97,0.0,3 +75597,10,1.0,1,1.9302301406860352,98,0.0,3 +75598,10,1.0,1,1.359237551689148,99,1.0,3 +75599,10,0.0,1,1.4982357025146484,100,1.0,3 +75600,10,1.0,1,1.329237937927246,101,1.0,3 +75601,10,0.0,1,1.5672348737716675,102,1.0,3 +75602,10,1.0,1,1.8812308311462402,103,1.0,3 +75603,10,0.0,1,1.4582362174987793,104,0.0,3 +75604,10,1.0,1,1.2482385635375977,105,1.0,3 +75605,10,1.0,1,1.9472299814224243,106,1.0,3 +75606,10,1.0,1,1.3932371139526367,107,1.0,3 +75607,10,1.0,1,1.6082344055175781,108,1.0,3 +75608,10,1.0,1,1.1562384366989136,109,1.0,3 +75609,10,0.0,1,1.4862358570098877,110,1.0,3 +75610,10,1.0,1,1.704233169555664,111,1.0,3 +75611,10,1.0,1,1.9582297801971436,112,0.0,3 +75612,10,0.0,1,1.3732373714447021,113,1.0,3 +75613,10,0.0,1,1.5992344617843628,114,0.0,3 +75614,10,1.0,1,1.330237865447998,115,1.0,3 +75615,10,1.0,1,1.359237551689148,116,0.0,3 +75616,10,1.0,1,1.33723783493042,117,0.0,3 +75617,10,0.0,1,1.2182384729385376,118,0.0,3 +75618,10,0.0,1,1.8202316761016846,119,1.0,3 +75619,10,0.0,1,1.0872383117675781,120,0.0,3 +75620,10,0.0,1,1.1502383947372437,121,0.0,3 +75621,10,0.0,1,1.6882333755493164,122,0.0,3 +75622,10,1.0,1,1.6232341527938843,123,1.0,3 +75623,10,1.0,1,1.9532299041748047,124,1.0,3 +75624,10,0.0,1,1.30823814868927,125,1.0,3 +75625,10,0.0,1,1.9472299814224243,126,0.0,3 +75626,10,1.0,1,1.3402377367019653,127,0.0,3 +75627,10,0.0,1,2.0022292137145996,128,0.0,3 +75628,10,0.0,1,1.3422377109527588,129,0.0,3 +75629,10,1.0,1,1.4232367277145386,130,1.0,3 +75630,10,1.0,1,1.28523850440979,131,0.0,3 +75631,10,1.0,1,1.1742384433746338,132,1.0,3 +75632,10,1.0,1,1.5152355432510376,133,1.0,3 +75633,10,1.0,1,1.6462337970733643,134,1.0,3 +75634,10,1.0,1,1.7202329635620117,135,1.0,3 +75635,10,1.0,1,1.8072317838668823,136,1.0,3 +75636,10,1.0,1,1.4942357540130615,137,0.0,3 +75637,10,1.0,1,1.6992331743240356,138,0.0,3 +75638,10,1.0,1,1.6762335300445557,139,1.0,3 +75639,10,0.0,1,1.222238540649414,140,0.0,3 +75640,10,1.0,1,1.5782346725463867,141,1.0,3 +75641,10,1.0,1,1.6492338180541992,142,1.0,3 +75642,10,1.0,1,1.307238221168518,143,1.0,3 +75643,10,1.0,1,1.3322378396987915,144,0.0,3 +75644,10,1.0,1,2.1162333488464355,145,1.0,3 +75645,10,0.0,1,1.3092381954193115,146,0.0,3 +75646,10,0.0,1,1.3922370672225952,147,0.0,3 +75647,10,1.0,1,1.2872384786605835,148,0.0,3 +75648,10,0.0,1,1.4862358570098877,149,1.0,3 +75649,10,1.0,1,1.6252341270446777,150,1.0,3 +75650,10,1.0,1,1.1742384433746338,151,1.0,3 +75651,10,1.0,1,1.6682336330413818,152,1.0,3 +75652,10,0.0,1,1.5802347660064697,153,0.0,3 +75653,10,1.0,1,1.3792372941970825,154,1.0,3 +75654,10,1.0,1,1.4622361660003662,155,1.0,3 +75655,10,1.0,1,1.3902370929718018,156,1.0,3 +75656,10,1.0,1,1.4672361612319946,157,1.0,3 +75657,10,1.0,1,1.4872359037399292,158,0.0,3 +75658,10,0.0,1,1.2182384729385376,159,0.0,3 +75659,10,1.0,1,1.3702373504638672,160,1.0,3 +75660,10,1.0,1,1.307238221168518,161,0.0,3 +75661,10,1.0,1,1.5082355737686157,162,1.0,3 +75662,10,1.0,1,1.451236367225647,163,0.0,3 +75663,10,1.0,1,1.5502350330352783,164,0.0,3 +75664,10,0.0,1,1.5922346115112305,165,0.0,3 +75665,10,0.0,1,1.2972383499145508,166,0.0,3 +75666,10,0.0,1,1.7582323551177979,167,0.0,3 +75667,10,1.0,1,1.7442326545715332,168,0.0,3 +75668,10,0.0,1,1.7702322006225586,169,0.0,3 +75669,10,0.0,1,1.2792385816574097,170,0.0,3 +75670,10,0.0,1,2.0362296104431152,171,0.0,3 +75671,10,0.0,1,1.6192342042922974,172,1.0,3 +75672,10,1.0,1,1.3012382984161377,173,1.0,3 +75673,10,0.0,1,1.7642323970794678,174,0.0,3 +75674,10,1.0,1,1.222238540649414,175,1.0,3 +75675,10,1.0,1,1.2492386102676392,176,1.0,3 +75676,10,1.0,1,1.80023193359375,177,1.0,3 +75677,10,1.0,1,1.2752386331558228,178,0.0,3 +75678,10,0.0,1,2.0152292251586914,179,1.0,3 +75679,10,0.0,1,1.7772321701049805,180,0.0,3 +75680,10,0.0,1,2.0422298908233643,181,0.0,3 +75681,10,0.0,1,1.2642385959625244,182,0.0,3 +75682,10,0.0,1,1.6662335395812988,183,0.0,3 +75683,10,0.0,1,2.0042293071746826,184,1.0,3 +75684,10,0.0,1,1.09423828125,185,0.0,3 +75685,10,0.0,1,1.3382377624511719,186,0.0,3 +75686,10,0.0,1,1.610234260559082,187,0.0,3 +75687,10,1.0,1,1.4642361402511597,188,1.0,3 +75688,10,1.0,1,1.6032344102859497,189,1.0,3 +75689,10,1.0,1,1.2122385501861572,190,0.0,3 +75690,10,1.0,1,1.226238489151001,191,1.0,3 +75691,10,1.0,1,1.2492386102676392,192,1.0,3 +75692,10,1.0,1,1.2732386589050293,193,1.0,3 +75693,10,1.0,1,1.3232380151748657,194,1.0,3 +75694,10,1.0,1,1.709233045578003,195,0.0,3 +75695,10,0.0,1,1.2072384357452393,196,0.0,3 +75696,10,1.0,1,1.4822359085083008,197,0.0,3 +75697,10,0.0,1,1.4552363157272339,198,0.0,3 +75698,10,1.0,1,1.4282366037368774,199,1.0,3 +75699,10,1.0,1,1.307238221168518,200,1.0,3 +75700,10,1.0,1,1.4612362384796143,201,0.0,3 +75701,10,0.0,1,1.4932358264923096,202,1.0,3 +75702,10,0.0,1,1.2642385959625244,203,0.0,3 +75703,10,1.0,1,1.4662361145019531,204,1.0,3 +75704,10,0.0,1,1.801231861114502,205,0.0,3 +75705,10,1.0,1,1.5672348737716675,206,0.0,3 +75706,10,0.0,1,1.329237937927246,207,0.0,3 +75707,10,1.0,1,1.779232144355774,208,1.0,3 +75708,10,1.0,1,1.566234827041626,209,1.0,3 +75709,10,1.0,1,1.2732386589050293,210,1.0,3 +75710,10,1.0,1,1.1912384033203125,211,0.0,3 +75711,10,1.0,1,1.587234616279602,212,1.0,3 +75712,10,1.0,1,1.2602386474609375,213,1.0,3 +75713,10,1.0,1,1.3642374277114868,214,1.0,3 +75714,10,1.0,1,1.8782308101654053,215,1.0,3 +75715,10,1.0,1,1.6802334785461426,216,0.0,3 +75716,10,1.0,1,1.1802384853363037,217,1.0,3 +75717,10,1.0,1,1.5402352809906006,218,1.0,3 +75718,10,1.0,1,1.2272385358810425,219,1.0,3 +75719,10,1.0,1,1.3402377367019653,220,1.0,3 +75720,10,1.0,1,1.2502385377883911,221,0.0,3 +75721,10,1.0,1,1.4672361612319946,222,0.0,3 +75722,10,0.0,1,1.6152342557907104,223,1.0,3 +75723,10,0.0,1,1.1692384481430054,224,0.0,3 +75724,10,1.0,1,1.7102329730987549,225,1.0,3 +75725,10,1.0,1,1.6042344570159912,226,0.0,3 +75726,10,0.0,1,1.8512312173843384,227,1.0,3 +75727,10,0.0,1,1.125238299369812,228,1.0,3 +75728,10,0.0,1,1.3162380456924438,229,0.0,3 +75729,10,1.0,1,1.8822307586669922,230,1.0,3 +75730,10,1.0,1,1.4762359857559204,231,1.0,3 +75731,10,1.0,1,1.2962383031845093,232,1.0,3 +75732,10,1.0,1,1.3922370672225952,233,1.0,3 +75733,10,1.0,1,1.6222341060638428,234,1.0,3 +75734,10,1.0,1,1.429236650466919,235,1.0,3 +75735,10,1.0,1,1.2132384777069092,236,1.0,3 +75736,10,0.0,1,1.612234354019165,237,0.0,3 +75737,10,1.0,1,1.304238200187683,238,0.0,3 +75738,10,0.0,1,1.3242379426956177,239,0.0,3 +75739,10,1.0,1,2.0212290287017822,240,0.0,3 +75740,10,1.0,1,1.6772334575653076,241,1.0,3 +75741,10,1.0,1,1.6772334575653076,242,1.0,3 +75742,10,1.0,1,1.4652361869812012,243,1.0,3 +75743,10,1.0,1,1.3682373762130737,244,1.0,3 +75744,10,1.0,1,1.377237319946289,245,1.0,3 +75745,10,1.0,1,1.9282302856445312,246,0.0,3 +75746,10,1.0,1,1.5982344150543213,247,1.0,3 +75747,10,1.0,1,1.3462376594543457,248,1.0,3 +75748,10,1.0,1,1.4672361612319946,249,0.0,3 +75749,10,1.0,1,1.400236964225769,250,1.0,3 +75750,10,1.0,1,1.3322378396987915,251,1.0,3 +75751,10,1.0,1,1.7992318868637085,252,1.0,3 +75752,10,1.0,1,1.448236346244812,253,1.0,3 +75753,10,1.0,1,1.3092381954193115,254,0.0,3 +75754,10,1.0,1,1.7392326593399048,255,1.0,3 +75755,10,1.0,1,1.705233097076416,256,1.0,3 +75756,10,1.0,1,1.4322365522384644,257,0.0,3 +75757,10,1.0,1,1.2412385940551758,258,1.0,3 +75758,10,0.0,1,1.8122317790985107,259,0.0,3 +75759,10,1.0,1,1.6442339420318604,260,1.0,3 +75760,10,1.0,1,1.5602350234985352,261,1.0,3 +75761,10,0.0,1,1.8122317790985107,262,0.0,3 +75762,10,1.0,1,1.5492351055145264,263,0.0,3 +75763,10,1.0,1,1.7212328910827637,264,0.0,3 +75764,10,1.0,1,1.4752360582351685,265,1.0,3 +75765,10,1.0,1,1.8692309856414795,266,1.0,3 +75766,10,1.0,1,1.407236933708191,267,0.0,3 +75767,10,1.0,1,1.5792347192764282,268,1.0,3 +75768,10,1.0,1,1.2482385635375977,269,1.0,3 +75769,10,1.0,1,1.425236701965332,270,1.0,3 +75770,10,1.0,1,1.894230604171753,271,1.0,3 +75771,10,0.0,1,1.7932319641113281,272,0.0,3 +75772,10,1.0,1,1.3922370672225952,273,1.0,3 +75773,10,1.0,1,1.5032356977462769,274,1.0,3 +75774,10,1.0,1,1.5972344875335693,275,0.0,3 +75775,10,0.0,1,1.356237530708313,276,0.0,3 +75776,10,0.0,1,1.2662385702133179,277,1.0,3 +75777,10,0.0,1,1.6062343120574951,278,1.0,3 +75778,10,1.0,1,1.5232354402542114,279,1.0,3 +75779,10,1.0,1,1.429236650466919,280,0.0,3 +75780,10,0.0,1,1.896230697631836,281,0.0,3 +75781,10,0.0,1,1.4502363204956055,282,0.0,3 +75782,10,1.0,1,2.0032291412353516,283,1.0,3 +75783,10,1.0,1,1.5412352085113525,284,0.0,3 +75784,10,1.0,1,1.654233694076538,285,1.0,3 +75785,10,1.0,1,1.60923433303833,286,1.0,3 +75786,10,1.0,1,1.7182328701019287,287,1.0,3 +75787,10,1.0,1,1.256238579750061,288,0.0,3 +75788,10,0.0,1,2.218238115310669,289,1.0,3 +75789,10,0.0,1,1.7332327365875244,290,1.0,3 +75790,10,0.0,1,1.3702373504638672,291,1.0,3 +75791,10,0.0,1,1.5552350282669067,292,1.0,3 +75792,10,0.0,1,1.2552385330200195,293,0.0,3 +75793,10,0.0,1,1.6422338485717773,294,0.0,3 +75794,10,1.0,1,1.886230707168579,295,1.0,3 +75795,10,1.0,1,1.2212384939193726,296,1.0,3 +75796,10,1.0,1,1.797231912612915,297,1.0,3 +75797,10,1.0,1,1.5882346630096436,298,0.0,3 +75798,10,1.0,1,1.500235676765442,299,1.0,3 +75799,10,0.0,1,1.6072343587875366,300,0.0,3 +75800,10,1.0,1,1.8752309083938599,301,1.0,3 +75801,10,1.0,1,1.2952383756637573,302,0.0,3 +75802,10,1.0,1,1.6222341060638428,303,1.0,3 +75803,10,1.0,1,1.6182341575622559,304,1.0,3 +75804,10,1.0,1,1.5572350025177002,305,1.0,3 +75805,10,1.0,1,1.5042356252670288,306,1.0,3 +75806,10,1.0,1,1.2052384614944458,307,1.0,3 +75807,10,1.0,1,1.4462363719940186,308,0.0,3 +75808,10,1.0,1,1.5382351875305176,309,1.0,3 +75809,10,0.0,1,1.5962345600128174,310,0.0,3 +75810,10,1.0,1,1.3162380456924438,311,1.0,3 +75811,10,1.0,1,1.3482376337051392,312,1.0,3 +75812,10,1.0,1,1.265238642692566,313,0.0,3 +75813,10,1.0,1,1.3472377061843872,314,0.0,3 +75814,10,1.0,1,1.7212328910827637,315,1.0,3 +75815,10,1.0,1,1.430236577987671,316,0.0,3 +75816,10,1.0,1,1.3882371187210083,317,1.0,3 +75817,10,1.0,1,1.407236933708191,318,0.0,3 +75818,10,0.0,1,1.222238540649414,319,0.0,3 +75819,10,1.0,1,1.731232762336731,320,1.0,3 +75820,10,1.0,1,1.6052343845367432,321,1.0,3 +75821,10,1.0,1,1.3602374792099,322,1.0,3 +75822,10,1.0,1,1.5582349300384521,323,0.0,3 +75823,10,1.0,1,1.6892333030700684,324,0.0,3 +75824,10,0.0,1,1.7802321910858154,325,0.0,3 +75825,10,0.0,1,2.0762314796447754,326,1.0,3 +75826,10,0.0,1,1.7622323036193848,327,0.0,3 +75827,10,0.0,1,1.9032305479049683,328,0.0,3 +75828,10,0.0,1,1.8982305526733398,329,0.0,3 +75829,10,0.0,1,1.7262327671051025,330,0.0,3 +75830,10,0.0,1,1.4722360372543335,331,1.0,3 +75831,10,0.0,1,1.452236294746399,332,1.0,3 +75832,10,0.0,1,1.2792385816574097,333,1.0,3 +75833,10,0.0,1,1.2392385005950928,334,0.0,3 +75834,10,0.0,1,1.4542362689971924,335,0.0,3 +75835,10,0.0,1,1.3012382984161377,336,0.0,3 +75836,10,1.0,1,1.3182380199432373,337,0.0,3 +75837,10,0.0,1,1.3922370672225952,338,1.0,3 +75838,10,0.0,1,1.307238221168518,339,0.0,3 +75839,10,0.0,1,1.2172385454177856,340,0.0,3 +75840,10,0.0,1,1.7372326850891113,341,0.0,3 +75841,10,0.0,1,1.2142385244369507,342,0.0,3 +75842,10,1.0,1,1.8182315826416016,343,1.0,3 +75843,10,1.0,1,1.683233380317688,344,0.0,3 +75844,10,1.0,1,1.4112368822097778,345,0.0,3 +75845,10,0.0,1,1.8052318096160889,346,0.0,3 +75846,10,1.0,1,1.3402377367019653,347,0.0,3 +75847,10,1.0,1,1.3752373456954956,348,1.0,3 +75848,10,1.0,1,1.3212380409240723,349,1.0,3 +75849,10,1.0,1,1.3982369899749756,350,0.0,3 +75850,10,1.0,1,1.3282378911972046,351,1.0,3 +75851,10,1.0,1,1.3512376546859741,352,0.0,3 +75852,10,0.0,1,1.3632375001907349,353,0.0,3 +75853,10,1.0,1,1.3382377624511719,354,1.0,3 +75854,10,1.0,1,1.4562362432479858,355,1.0,3 +75855,10,1.0,1,1.3402377367019653,356,1.0,3 +75856,10,1.0,1,1.6202342510223389,357,1.0,3 +75857,10,1.0,1,1.5542349815368652,358,1.0,3 +75858,10,1.0,1,1.2332385778427124,359,1.0,3 +75859,10,1.0,1,1.6292340755462646,360,0.0,3 +75860,10,1.0,1,1.562234878540039,361,1.0,3 +75861,10,1.0,1,1.3352378606796265,362,1.0,3 +75862,10,1.0,1,1.5102355480194092,363,1.0,3 +75863,10,0.0,1,1.3062381744384766,364,0.0,3 +75864,10,1.0,1,1.4882358312606812,365,1.0,3 +75865,10,1.0,1,1.4272366762161255,366,1.0,3 +75866,10,1.0,1,1.5942344665527344,367,1.0,3 +75867,10,1.0,1,1.8132317066192627,368,0.0,3 +75868,10,1.0,1,1.801231861114502,369,0.0,3 +75869,10,1.0,1,1.3232380151748657,370,1.0,3 +75870,10,1.0,1,1.9042305946350098,371,1.0,3 +75871,10,1.0,1,1.407236933708191,372,0.0,3 +75872,10,1.0,1,1.7612323760986328,373,1.0,3 +75873,10,1.0,1,1.3142380714416504,374,0.0,3 +75874,10,1.0,1,1.9792295694351196,375,1.0,3 +75875,10,1.0,1,1.5482351779937744,376,1.0,3 +75876,10,1.0,1,1.1852384805679321,377,1.0,3 +75877,10,1.0,1,1.565234899520874,378,0.0,3 +75878,10,0.0,1,1.9972293376922607,379,1.0,3 +75879,10,0.0,1,1.7362327575683594,380,1.0,3 +75880,10,0.0,1,1.162238359451294,381,0.0,3 +75881,10,1.0,1,1.6412339210510254,382,1.0,3 +75882,10,0.0,1,1.2932384014129639,383,0.0,3 +75883,10,1.0,1,1.1092382669448853,384,0.0,3 +75884,10,0.0,1,1.2662385702133179,385,0.0,3 +75885,10,0.0,1,1.8782308101654053,386,1.0,3 +75886,10,0.0,1,1.4372365474700928,387,0.0,3 +75887,10,0.0,1,1.9942293167114258,388,1.0,3 +75888,10,0.0,1,1.2472386360168457,389,0.0,3 +75889,10,1.0,1,1.307238221168518,390,0.0,3 +75890,10,1.0,1,1.8082318305969238,391,0.0,3 +75891,10,0.0,1,1.6372339725494385,392,0.0,3 +75892,10,1.0,1,1.3842371702194214,393,0.0,3 +75893,10,0.0,1,1.5992344617843628,394,0.0,3 +75894,10,0.0,1,1.3382377624511719,395,0.0,3 +75895,10,1.0,1,1.6692335605621338,396,0.0,3 +75896,10,0.0,1,1.7232328653335571,397,0.0,3 +75897,10,0.0,1,1.3232380151748657,398,0.0,3 +75898,10,1.0,1,1.911230444908142,399,1.0,3 +75899,10,1.0,1,1.3402377367019653,400,1.0,3 +75900,10,1.0,1,1.7352327108383179,401,0.0,3 +75901,10,1.0,1,1.6702334880828857,402,0.0,3 +75902,10,0.0,1,1.3572375774383545,403,0.0,3 +75903,10,0.0,1,1.892230749130249,404,1.0,3 +75904,10,0.0,1,1.4802359342575073,405,0.0,3 +75905,10,0.0,1,1.228238582611084,406,1.0,3 +75906,10,0.0,1,1.6742334365844727,407,0.0,3 +75907,10,0.0,1,1.7902319431304932,408,0.0,3 +75908,10,0.0,1,1.6992331743240356,409,0.0,3 +75909,10,1.0,1,1.5042356252670288,410,1.0,3 +75910,10,1.0,1,1.4612362384796143,411,0.0,3 +75911,10,1.0,1,1.7692322731018066,412,1.0,3 +75912,10,1.0,1,1.7412326335906982,413,1.0,3 +75913,10,0.0,1,1.2112385034561157,414,1.0,3 +75914,10,0.0,1,1.3612375259399414,415,1.0,3 +75915,10,1.0,1,1.915230393409729,416,1.0,3 +75916,10,1.0,1,1.225238561630249,417,0.0,3 +75917,10,0.0,1,1.334237813949585,418,0.0,3 +75918,10,0.0,1,1.5782346725463867,419,0.0,3 +75919,10,1.0,1,1.5302352905273438,420,0.0,3 +75920,10,0.0,1,1.4202367067337036,421,0.0,3 +75921,10,0.0,1,1.3132381439208984,422,0.0,3 +75922,10,0.0,1,1.5602350234985352,423,0.0,3 +75923,10,0.0,1,1.3982369899749756,424,0.0,3 +75924,10,0.0,1,1.2732386589050293,425,0.0,3 +75925,10,0.0,1,1.3702373504638672,426,1.0,3 +75926,10,1.0,1,1.6302340030670166,427,1.0,3 +75927,10,1.0,1,1.8692309856414795,428,0.0,3 +75928,10,0.0,1,1.6452338695526123,429,1.0,3 +75929,10,0.0,1,1.290238380432129,430,0.0,3 +75930,10,0.0,1,1.2422385215759277,431,1.0,3 +75931,10,0.0,1,1.289238452911377,432,1.0,3 +75932,10,0.0,1,1.399237036705017,433,1.0,3 +75933,10,0.0,1,1.1602383852005005,434,1.0,3 +75934,10,0.0,1,1.4412364959716797,435,0.0,3 +75935,10,0.0,1,1.521235466003418,436,1.0,3 +75936,10,0.0,1,1.797231912612915,437,0.0,3 +75937,10,1.0,1,1.2882384061813354,438,1.0,3 +75938,10,0.0,1,1.1962385177612305,439,0.0,3 +75939,10,1.0,1,1.5442352294921875,440,1.0,3 +75940,10,1.0,1,1.4612362384796143,441,1.0,3 +75941,10,1.0,1,1.5962345600128174,442,1.0,3 +75942,10,1.0,1,1.5542349815368652,443,1.0,3 +75943,10,1.0,1,1.47023606300354,444,0.0,3 +75944,10,1.0,1,1.7512325048446655,445,1.0,3 +75945,10,1.0,1,1.3652374744415283,446,1.0,3 +75946,10,1.0,1,1.2572386264801025,447,1.0,3 +75947,10,1.0,1,1.84623122215271,448,0.0,3 +75948,10,0.0,1,1.3352378606796265,449,1.0,3 +75949,10,1.0,1,1.9852294921875,450,1.0,3 +75950,10,0.0,1,2.242239236831665,451,0.0,3 +75951,10,1.0,1,1.6082344055175781,452,0.0,3 +75952,10,0.0,1,1.49923574924469,453,0.0,3 +75953,10,1.0,1,1.3472377061843872,454,1.0,3 +75954,10,0.0,1,1.5592349767684937,455,0.0,3 +75955,10,1.0,1,1.4862358570098877,456,1.0,3 +75956,10,1.0,1,1.4632362127304077,457,0.0,3 +75957,10,0.0,1,1.30823814868927,458,1.0,3 +75958,10,0.0,1,1.2102384567260742,459,0.0,3 +75959,10,0.0,1,1.474236011505127,460,0.0,3 +75960,10,0.0,1,1.444236397743225,461,1.0,3 +75961,10,0.0,1,1.3032382726669312,462,0.0,3 +75962,10,0.0,1,1.1532384157180786,463,0.0,3 +75963,10,0.0,1,1.5822346210479736,464,0.0,3 +75964,10,1.0,1,1.6842334270477295,465,1.0,3 +75965,10,1.0,1,1.2142385244369507,466,1.0,3 +75966,10,1.0,1,1.5402352809906006,467,1.0,3 +75967,10,1.0,1,1.565234899520874,468,0.0,3 +75968,10,0.0,1,1.9492299556732178,469,1.0,3 +75969,10,0.0,1,1.2772386074066162,470,0.0,3 +75970,10,0.0,1,1.6702334880828857,471,0.0,3 +75971,10,0.0,1,1.6202342510223389,472,0.0,3 +75972,10,0.0,1,1.49923574924469,473,0.0,3 +75973,10,1.0,1,1.7902319431304932,474,0.0,3 +75974,10,0.0,1,1.4492363929748535,475,0.0,3 +75975,10,1.0,1,1.9802296161651611,476,0.0,3 +75976,10,0.0,1,1.8552311658859253,477,0.0,3 +75977,10,0.0,1,1.1722384691238403,478,0.0,3 +75978,10,0.0,1,1.3632375001907349,479,0.0,3 +75979,10,0.0,1,1.30823814868927,480,0.0,3 +75980,10,1.0,1,1.3192380666732788,481,1.0,3 +75981,10,1.0,1,1.2422385215759277,482,1.0,3 +75982,10,1.0,1,1.3142380714416504,483,1.0,3 +75983,10,1.0,1,1.4402364492416382,484,1.0,3 +75984,10,1.0,1,1.4402364492416382,485,0.0,3 +75985,10,1.0,1,2.0382297039031982,486,0.0,3 +75986,10,0.0,1,1.1072382926940918,487,0.0,3 +75987,10,0.0,1,1.1902384757995605,488,0.0,3 +75988,10,1.0,1,1.6192342042922974,489,1.0,3 +75989,10,1.0,1,1.3832372426986694,490,1.0,3 +75990,10,1.0,1,1.6242341995239258,491,1.0,3 +75991,10,1.0,1,1.4172368049621582,492,1.0,3 +75992,10,1.0,1,1.3792372941970825,493,1.0,3 +75993,10,1.0,1,1.4192367792129517,494,1.0,3 +75994,10,1.0,1,1.5322353839874268,495,1.0,3 +75995,10,1.0,1,2.0402297973632812,496,1.0,3 +75996,10,1.0,1,1.819231629371643,497,0.0,3 +75997,10,1.0,1,1.5342352390289307,498,0.0,3 +75998,10,1.0,1,2.1812362670898438,499,1.0,3 +75999,10,1.0,1,1.4132368564605713,500,1.0,3 +76000,10,0.0,2,1.5922346115112305,1,1.0,3 +76001,10,0.0,2,1.229238510131836,2,1.0,3 +76002,10,0.0,2,1.259238600730896,3,0.0,3 +76003,10,1.0,2,1.286238431930542,4,0.0,3 +76004,10,0.0,2,1.6012344360351562,5,0.0,3 +76005,10,1.0,2,1.8522312641143799,6,0.0,3 +76006,10,1.0,2,1.7262327671051025,7,1.0,3 +76007,10,1.0,2,1.5832346677780151,8,0.0,3 +76008,10,0.0,2,1.3542375564575195,9,0.0,3 +76009,10,1.0,2,1.7742321491241455,10,0.0,3 +76010,10,1.0,2,1.312238097190857,11,1.0,3 +76011,10,1.0,2,1.3262379169464111,12,0.0,3 +76012,10,1.0,2,1.6402339935302734,13,0.0,3 +76013,10,1.0,2,1.7582323551177979,14,1.0,3 +76014,10,1.0,2,1.6982331275939941,15,0.0,3 +76015,10,0.0,2,1.4652361869812012,16,1.0,3 +76016,10,0.0,2,1.2092385292053223,17,1.0,3 +76017,10,0.0,2,1.3632375001907349,18,1.0,3 +76018,10,0.0,2,1.30823814868927,19,0.0,3 +76019,10,0.0,2,1.1572383642196655,20,1.0,3 +76020,10,0.0,2,1.5972344875335693,21,0.0,3 +76021,10,0.0,2,1.617234230041504,22,1.0,3 +76022,10,0.0,2,1.3312379121780396,23,1.0,3 +76023,10,0.0,2,1.4052369594573975,24,1.0,3 +76024,10,0.0,2,2.0432300567626953,25,0.0,3 +76025,10,0.0,2,1.4932358264923096,26,0.0,3 +76026,10,0.0,2,1.8762309551239014,27,0.0,3 +76027,10,1.0,2,2.0832319259643555,28,1.0,3 +76028,10,1.0,2,1.448236346244812,29,1.0,3 +76029,10,1.0,2,1.399237036705017,30,0.0,3 +76030,10,0.0,2,1.2692385911941528,31,1.0,3 +76031,10,0.0,2,1.3462376594543457,32,1.0,3 +76032,10,0.0,2,1.6402339935302734,33,1.0,3 +76033,10,0.0,2,1.2772386074066162,34,0.0,3 +76034,10,1.0,2,1.8242316246032715,35,1.0,3 +76035,10,1.0,2,1.289238452911377,36,0.0,3 +76036,10,1.0,2,1.8582310676574707,37,0.0,3 +76037,10,0.0,2,1.4872359037399292,38,0.0,3 +76038,10,1.0,2,1.7552324533462524,39,1.0,3 +76039,10,0.0,2,1.2032384872436523,40,0.0,3 +76040,10,1.0,2,1.7362327575683594,41,1.0,3 +76041,10,1.0,2,1.801231861114502,42,0.0,3 +76042,10,0.0,2,1.4372365474700928,43,1.0,3 +76043,10,0.0,2,1.2462385892868042,44,0.0,3 +76044,10,0.0,2,1.5192354917526245,45,0.0,3 +76045,10,1.0,2,1.7152329683303833,46,1.0,3 +76046,10,1.0,2,1.6112343072891235,47,0.0,3 +76047,10,0.0,2,1.2802385091781616,48,1.0,3 +76048,10,0.0,2,1.6552337408065796,49,1.0,3 +76049,10,0.0,2,1.2352385520935059,50,1.0,3 +76050,10,0.0,2,1.2242385149002075,51,1.0,3 +76051,10,0.0,2,1.477236032485962,52,0.0,3 +76052,10,1.0,2,1.6972332000732422,53,0.0,3 +76053,10,0.0,2,1.2782385349273682,54,0.0,3 +76054,10,1.0,2,1.5372352600097656,55,1.0,3 +76055,10,1.0,2,1.709233045578003,56,0.0,3 +76056,10,0.0,2,1.3832372426986694,57,1.0,3 +76057,10,0.0,2,1.1072382926940918,58,1.0,3 +76058,10,0.0,2,1.7182328701019287,59,1.0,3 +76059,10,0.0,2,1.543235182762146,60,0.0,3 +76060,10,0.0,2,2.0732312202453613,61,1.0,3 +76061,10,0.0,2,1.4122368097305298,62,1.0,3 +76062,10,0.0,2,1.381237268447876,63,1.0,3 +76063,10,0.0,2,1.473236083984375,64,1.0,3 +76064,10,0.0,2,1.4552363157272339,65,0.0,3 +76065,10,0.0,2,1.2482385635375977,66,1.0,3 +76066,10,0.0,2,1.2392385005950928,67,0.0,3 +76067,10,1.0,2,1.617234230041504,68,1.0,3 +76068,10,1.0,2,1.2642385959625244,69,1.0,3 +76069,10,1.0,2,1.3452377319335938,70,1.0,3 +76070,10,1.0,2,1.84623122215271,71,1.0,3 +76071,10,1.0,2,1.290238380432129,72,1.0,3 +76072,10,1.0,2,1.1632384061813354,73,1.0,3 +76073,10,1.0,2,1.359237551689148,74,0.0,3 +76074,10,1.0,2,2.2912416458129883,75,0.0,3 +76075,10,1.0,2,1.259238600730896,76,0.0,3 +76076,10,1.0,2,1.8172316551208496,77,1.0,3 +76077,10,1.0,2,1.6042344570159912,78,1.0,3 +76078,10,1.0,2,1.3252379894256592,79,1.0,3 +76079,10,1.0,2,1.47023606300354,80,1.0,3 +76080,10,1.0,2,1.6012344360351562,81,0.0,3 +76081,10,0.0,2,1.4812359809875488,82,0.0,3 +76082,10,0.0,2,1.1732383966445923,83,0.0,3 +76083,10,0.0,2,1.4812359809875488,84,1.0,3 +76084,10,0.0,2,1.7612323760986328,85,1.0,3 +76085,10,0.0,2,1.198238492012024,86,0.0,3 +76086,10,1.0,2,1.6512337923049927,87,0.0,3 +76087,10,1.0,2,1.656233787536621,88,1.0,3 +76088,10,1.0,2,1.708233118057251,89,0.0,3 +76089,10,0.0,2,1.52223539352417,90,1.0,3 +76090,10,0.0,2,1.5512350797653198,91,0.0,3 +76091,10,0.0,2,1.2342385053634644,92,1.0,3 +76092,10,0.0,2,1.4552363157272339,93,0.0,3 +76093,10,0.0,2,1.158238410949707,94,1.0,3 +76094,10,0.0,2,1.2602386474609375,95,0.0,3 +76095,10,1.0,2,1.355237603187561,96,1.0,3 +76096,10,1.0,2,1.5602350234985352,97,1.0,3 +76097,10,1.0,2,1.1542383432388306,98,0.0,3 +76098,10,1.0,2,1.4052369594573975,99,0.0,3 +76099,10,0.0,2,1.5422351360321045,100,0.0,3 +76100,10,1.0,2,1.2522386312484741,101,1.0,3 +76101,10,1.0,2,1.422236680984497,102,1.0,3 +76102,10,1.0,2,1.4612362384796143,103,1.0,3 +76103,10,1.0,2,1.2912384271621704,104,1.0,3 +76104,10,0.0,2,1.5982344150543213,105,0.0,3 +76105,10,1.0,2,1.7882320880889893,106,1.0,3 +76106,10,1.0,2,1.2732386589050293,107,0.0,3 +76107,10,1.0,2,1.4782359600067139,108,1.0,3 +76108,10,1.0,2,1.1442383527755737,109,1.0,3 +76109,10,1.0,2,1.5092356204986572,110,1.0,3 +76110,10,1.0,2,1.425236701965332,111,1.0,3 +76111,10,1.0,2,1.4132368564605713,112,0.0,3 +76112,10,0.0,2,2.21923828125,113,0.0,3 +76113,10,1.0,2,1.5842347145080566,114,1.0,3 +76114,10,1.0,2,1.4242366552352905,115,0.0,3 +76115,10,0.0,2,1.2202385663986206,116,1.0,3 +76116,10,0.0,2,1.6422338485717773,117,1.0,3 +76117,10,0.0,2,1.3442376852035522,118,1.0,3 +76118,10,1.0,2,1.2492386102676392,119,0.0,3 +76119,10,1.0,2,1.1462383270263672,120,1.0,3 +76120,10,0.0,2,1.2202385663986206,121,0.0,3 +76121,10,1.0,2,1.4562362432479858,122,1.0,3 +76122,10,1.0,2,1.2582385540008545,123,0.0,3 +76123,10,0.0,2,1.1462383270263672,124,0.0,3 +76124,10,0.0,2,1.9662296772003174,125,1.0,3 +76125,10,0.0,2,1.1722384691238403,126,0.0,3 +76126,10,0.0,2,1.5192354917526245,127,1.0,3 +76127,10,1.0,2,1.514235496520996,128,1.0,3 +76128,10,0.0,2,1.2782385349273682,129,0.0,3 +76129,10,1.0,2,1.5452351570129395,130,0.0,3 +76130,10,0.0,2,1.706233024597168,131,1.0,3 +76131,10,0.0,2,1.848231315612793,132,1.0,3 +76132,10,0.0,2,1.4932358264923096,133,0.0,3 +76133,10,1.0,2,1.2612385749816895,134,1.0,3 +76134,10,0.0,2,1.9642298221588135,135,0.0,3 +76135,10,1.0,2,1.225238561630249,136,0.0,3 +76136,10,0.0,2,2.0902321338653564,137,0.0,3 +76137,10,0.0,2,1.155238389968872,138,1.0,3 +76138,10,0.0,2,1.4342365264892578,139,0.0,3 +76139,10,1.0,2,1.2832385301589966,140,1.0,3 +76140,10,1.0,2,1.7722322940826416,141,1.0,3 +76141,10,1.0,2,1.192238450050354,142,0.0,3 +76142,10,1.0,2,1.940230131149292,143,0.0,3 +76143,10,1.0,2,1.426236629486084,144,0.0,3 +76144,10,1.0,2,1.3892371654510498,145,0.0,3 +76145,10,0.0,2,1.6252341270446777,146,0.0,3 +76146,10,1.0,2,1.4862358570098877,147,0.0,3 +76147,10,1.0,2,1.897230625152588,148,1.0,3 +76148,10,1.0,2,1.6252341270446777,149,1.0,3 +76149,10,1.0,2,1.1852384805679321,150,0.0,3 +76150,10,1.0,2,1.7992318868637085,151,0.0,3 +76151,10,0.0,2,1.4132368564605713,152,0.0,3 +76152,10,0.0,2,1.4172368049621582,153,1.0,3 +76153,10,0.0,2,1.3692374229431152,154,1.0,3 +76154,10,0.0,2,1.5252354145050049,155,1.0,3 +76155,10,0.0,2,1.307238221168518,156,0.0,3 +76156,10,0.0,2,1.2302385568618774,157,1.0,3 +76157,10,0.0,2,1.4272366762161255,158,0.0,3 +76158,10,0.0,2,1.4452364444732666,159,1.0,3 +76159,10,0.0,2,1.5282354354858398,160,1.0,3 +76160,10,0.0,2,1.2482385635375977,161,0.0,3 +76161,10,0.0,2,1.352237582206726,162,0.0,3 +76162,10,1.0,2,1.9482300281524658,163,1.0,3 +76163,10,0.0,2,2.271240711212158,164,0.0,3 +76164,10,1.0,2,1.4902358055114746,165,0.0,3 +76165,10,0.0,2,1.6772334575653076,166,0.0,3 +76166,10,0.0,2,1.6812334060668945,167,1.0,3 +76167,10,0.0,2,1.2432385683059692,168,1.0,3 +76168,10,0.0,2,1.1122382879257202,169,1.0,3 +76169,10,0.0,2,1.3052382469177246,170,0.0,3 +76170,10,0.0,2,1.5062355995178223,171,1.0,3 +76171,10,0.0,2,1.660233736038208,172,1.0,3 +76172,10,0.0,2,1.2402385473251343,173,0.0,3 +76173,10,0.0,2,1.3702373504638672,174,1.0,3 +76174,10,0.0,2,1.7652323246002197,175,1.0,3 +76175,10,0.0,2,1.2242385149002075,176,1.0,3 +76176,10,0.0,2,1.3652374744415283,177,0.0,3 +76177,10,0.0,2,1.4312366247177124,178,1.0,3 +76178,10,0.0,2,1.3932371139526367,179,1.0,3 +76179,10,0.0,2,1.3572375774383545,180,0.0,3 +76180,10,0.0,2,1.5052356719970703,181,0.0,3 +76181,10,1.0,2,2.178236246109009,182,1.0,3 +76182,10,1.0,2,1.3642374277114868,183,0.0,3 +76183,10,1.0,2,1.6042344570159912,184,1.0,3 +76184,10,1.0,2,1.2492386102676392,185,1.0,3 +76185,10,1.0,2,1.3262379169464111,186,1.0,3 +76186,10,1.0,2,1.1562384366989136,187,1.0,3 +76187,10,1.0,2,1.2762385606765747,188,0.0,3 +76188,10,1.0,2,1.888230800628662,189,1.0,3 +76189,10,1.0,2,1.4082368612289429,190,0.0,3 +76190,10,0.0,2,1.3972370624542236,191,0.0,3 +76191,10,1.0,2,1.5822346210479736,192,0.0,3 +76192,10,1.0,2,1.2212384939193726,193,0.0,3 +76193,10,0.0,2,1.5812346935272217,194,0.0,3 +76194,10,0.0,2,1.3482376337051392,195,0.0,3 +76195,10,0.0,2,1.3712373971939087,196,1.0,3 +76196,10,0.0,2,1.2482385635375977,197,0.0,3 +76197,10,0.0,2,1.6732335090637207,198,1.0,3 +76198,10,1.0,2,1.5882346630096436,199,1.0,3 +76199,10,0.0,2,1.1402384042739868,200,1.0,3 +76200,10,0.0,2,1.3862371444702148,201,0.0,3 +76201,10,1.0,2,1.591234564781189,202,0.0,3 +76202,10,1.0,2,1.664233684539795,203,0.0,3 +76203,10,0.0,2,1.1852384805679321,204,1.0,3 +76204,10,0.0,2,1.2342385053634644,205,0.0,3 +76205,10,1.0,2,1.8792308568954468,206,1.0,3 +76206,10,1.0,2,1.5102355480194092,207,0.0,3 +76207,10,0.0,2,1.2122385501861572,208,1.0,3 +76208,10,0.0,2,1.399237036705017,209,1.0,3 +76209,10,0.0,2,1.2132384777069092,210,1.0,3 +76210,10,0.0,2,1.3472377061843872,211,1.0,3 +76211,10,0.0,2,1.3452377319335938,212,1.0,3 +76212,10,0.0,2,1.6882333755493164,213,0.0,3 +76213,10,0.0,2,2.257239818572998,214,1.0,3 +76214,10,0.0,2,1.3142380714416504,215,0.0,3 +76215,10,1.0,2,1.2012385129928589,216,0.0,3 +76216,10,0.0,2,1.7322328090667725,217,0.0,3 +76217,10,0.0,2,1.3452377319335938,218,0.0,3 +76218,10,1.0,2,1.7182328701019287,219,0.0,3 +76219,10,0.0,2,1.2472386360168457,220,1.0,3 +76220,10,0.0,2,1.4152368307113647,221,1.0,3 +76221,10,0.0,2,1.2542386054992676,222,1.0,3 +76222,10,0.0,2,1.232238531112671,223,0.0,3 +76223,10,0.0,2,1.253238558769226,224,0.0,3 +76224,10,0.0,2,1.888230800628662,225,0.0,3 +76225,10,1.0,2,1.2802385091781616,226,1.0,3 +76226,10,1.0,2,1.5422351360321045,227,1.0,3 +76227,10,1.0,2,1.6112343072891235,228,1.0,3 +76228,10,1.0,2,1.4592362642288208,229,0.0,3 +76229,10,0.0,2,1.6472338438034058,230,0.0,3 +76230,10,1.0,2,1.6012344360351562,231,1.0,3 +76231,10,0.0,2,1.5832346677780151,232,0.0,3 +76232,10,1.0,2,1.1742384433746338,233,0.0,3 +76233,10,0.0,2,1.709233045578003,234,1.0,3 +76234,10,0.0,2,1.7622323036193848,235,0.0,3 +76235,10,1.0,2,1.5012357234954834,236,1.0,3 +76236,10,1.0,2,1.521235466003418,237,1.0,3 +76237,10,1.0,2,1.1562384366989136,238,1.0,3 +76238,10,1.0,2,1.514235496520996,239,1.0,3 +76239,10,1.0,2,1.1432383060455322,240,0.0,3 +76240,10,1.0,2,1.4792360067367554,241,1.0,3 +76241,10,1.0,2,1.3412377834320068,242,0.0,3 +76242,10,0.0,2,1.3842371702194214,243,1.0,3 +76243,10,0.0,2,1.2482385635375977,244,0.0,3 +76244,10,0.0,2,1.3262379169464111,245,1.0,3 +76245,10,0.0,2,1.7222328186035156,246,0.0,3 +76246,10,1.0,2,1.8472312688827515,247,0.0,3 +76247,10,0.0,2,1.223238468170166,248,1.0,3 +76248,10,0.0,2,1.311238169670105,249,0.0,3 +76249,10,1.0,2,2.3532443046569824,250,1.0,3 +76250,10,1.0,2,1.5032356977462769,251,0.0,3 +76251,10,1.0,2,1.5072356462478638,252,1.0,3 +76252,10,1.0,2,1.5342352390289307,253,1.0,3 +76253,10,0.0,2,1.894230604171753,254,1.0,3 +76254,10,1.0,2,1.8382313251495361,255,0.0,3 +76255,10,0.0,2,1.5772347450256348,256,1.0,3 +76256,10,0.0,2,1.756232500076294,257,1.0,3 +76257,10,0.0,2,1.52223539352417,258,0.0,3 +76258,10,1.0,2,1.6022343635559082,259,1.0,3 +76259,10,1.0,2,1.4452364444732666,260,0.0,3 +76260,10,1.0,2,1.4412364959716797,261,1.0,3 +76261,10,1.0,2,1.312238097190857,262,0.0,3 +76262,10,1.0,2,1.8872307538986206,263,0.0,3 +76263,10,0.0,2,1.5482351779937744,264,0.0,3 +76264,10,0.0,2,1.4452364444732666,265,0.0,3 +76265,10,0.0,2,1.6932332515716553,266,1.0,3 +76266,10,0.0,2,1.1082383394241333,267,0.0,3 +76267,10,1.0,2,1.7602324485778809,268,1.0,3 +76268,10,0.0,2,1.5942344665527344,269,0.0,3 +76269,10,1.0,2,1.757232427597046,270,0.0,3 +76270,10,1.0,2,1.3672374486923218,271,0.0,3 +76271,10,0.0,2,1.8762309551239014,272,1.0,3 +76272,10,0.0,2,1.1102383136749268,273,0.0,3 +76273,10,1.0,2,1.942229986190796,274,0.0,3 +76274,10,0.0,2,1.33723783493042,275,1.0,3 +76275,10,0.0,2,1.4542362689971924,276,0.0,3 +76276,10,0.0,2,1.4842358827590942,277,0.0,3 +76277,10,0.0,2,1.3192380666732788,278,1.0,3 +76278,10,0.0,2,1.7132329940795898,279,1.0,3 +76279,10,0.0,2,1.359237551689148,280,0.0,3 +76280,10,0.0,2,1.4782359600067139,281,0.0,3 +76281,10,0.0,2,1.2482385635375977,282,1.0,3 +76282,10,0.0,2,1.7302327156066895,283,0.0,3 +76283,10,1.0,2,1.5842347145080566,284,1.0,3 +76284,10,1.0,2,1.8752309083938599,285,0.0,3 +76285,10,0.0,2,2.0082292556762695,286,0.0,3 +76286,10,1.0,2,1.9272302389144897,287,1.0,3 +76287,10,1.0,2,1.2672386169433594,288,1.0,3 +76288,10,1.0,2,1.5262353420257568,289,1.0,3 +76289,10,1.0,2,1.4092369079589844,290,0.0,3 +76290,10,0.0,2,1.4642361402511597,291,1.0,3 +76291,10,0.0,2,1.849231243133545,292,1.0,3 +76292,10,0.0,2,2.032229423522949,293,1.0,3 +76293,10,0.0,2,1.4142367839813232,294,0.0,3 +76294,10,1.0,2,1.2782385349273682,295,1.0,3 +76295,10,1.0,2,1.4762359857559204,296,0.0,3 +76296,10,0.0,2,1.188238501548767,297,1.0,3 +76297,10,0.0,2,1.4592362642288208,298,0.0,3 +76298,10,0.0,2,1.731232762336731,299,1.0,3 +76299,10,0.0,2,1.3392378091812134,300,0.0,3 +76300,10,0.0,2,1.3872371912002563,301,0.0,3 +76301,10,1.0,2,1.8222315311431885,302,1.0,3 +76302,10,1.0,2,1.1932384967803955,303,0.0,3 +76303,10,1.0,2,1.1852384805679321,304,1.0,3 +76304,10,1.0,2,1.259238600730896,305,1.0,3 +76305,10,1.0,2,1.2042385339736938,306,1.0,3 +76306,10,1.0,2,1.381237268447876,307,1.0,3 +76307,10,1.0,2,1.3462376594543457,308,0.0,3 +76308,10,0.0,2,1.5952345132827759,309,0.0,3 +76309,10,1.0,2,1.7182328701019287,310,0.0,3 +76310,10,1.0,2,1.708233118057251,311,1.0,3 +76311,10,0.0,2,1.8082318305969238,312,0.0,3 +76312,10,1.0,2,1.849231243133545,313,0.0,3 +76313,10,0.0,2,1.9722297191619873,314,1.0,3 +76314,10,0.0,2,1.9392300844192505,315,0.0,3 +76315,10,1.0,2,1.426236629486084,316,1.0,3 +76316,10,1.0,2,1.253238558769226,317,1.0,3 +76317,10,1.0,2,1.3762372732162476,318,0.0,3 +76318,10,0.0,2,1.572234869003296,319,0.0,3 +76319,10,0.0,2,1.5482351779937744,320,0.0,3 +76320,10,0.0,2,1.2112385034561157,321,0.0,3 +76321,10,1.0,2,1.3242379426956177,322,1.0,3 +76322,10,1.0,2,1.4162367582321167,323,1.0,3 +76323,10,1.0,2,1.2552385330200195,324,0.0,3 +76324,10,1.0,2,1.5602350234985352,325,1.0,3 +76325,10,1.0,2,1.3922370672225952,326,0.0,3 +76326,10,0.0,2,1.6442339420318604,327,1.0,3 +76327,10,0.0,2,1.1792384386062622,328,0.0,3 +76328,10,0.0,2,1.7482326030731201,329,1.0,3 +76329,10,0.0,2,1.4312366247177124,330,1.0,3 +76330,10,0.0,2,1.2722386121749878,331,1.0,3 +76331,10,0.0,2,1.2442386150360107,332,1.0,3 +76332,10,0.0,2,1.4862358570098877,333,0.0,3 +76333,10,0.0,2,1.841231346130371,334,0.0,3 +76334,10,1.0,2,1.3542375564575195,335,0.0,3 +76335,10,0.0,2,1.8772308826446533,336,1.0,3 +76336,10,0.0,2,1.911230444908142,337,0.0,3 +76337,10,1.0,2,1.5352352857589722,338,0.0,3 +76338,10,1.0,2,1.500235676765442,339,0.0,3 +76339,10,1.0,2,1.6282341480255127,340,0.0,3 +76340,10,0.0,2,1.2442386150360107,341,0.0,3 +76341,10,1.0,2,2.0112290382385254,342,1.0,3 +76342,10,1.0,2,1.8752309083938599,343,0.0,3 +76343,10,1.0,2,1.3952370882034302,344,0.0,3 +76344,10,0.0,2,1.5332353115081787,345,0.0,3 +76345,10,0.0,2,1.4182367324829102,346,1.0,3 +76346,10,0.0,2,1.311238169670105,347,0.0,3 +76347,10,0.0,2,1.2972383499145508,348,1.0,3 +76348,10,0.0,2,1.4372365474700928,349,0.0,3 +76349,10,0.0,2,1.591234564781189,350,1.0,3 +76350,10,0.0,2,1.5942344665527344,351,1.0,3 +76351,10,0.0,2,1.1572383642196655,352,1.0,3 +76352,10,0.0,2,1.2302385568618774,353,0.0,3 +76353,10,0.0,2,2.0722312927246094,354,1.0,3 +76354,10,0.0,2,1.2552385330200195,355,0.0,3 +76355,10,1.0,2,1.329237937927246,356,1.0,3 +76356,10,0.0,2,1.3572375774383545,357,0.0,3 +76357,10,1.0,2,1.2792385816574097,358,1.0,3 +76358,10,1.0,2,1.3542375564575195,359,1.0,3 +76359,10,1.0,2,1.426236629486084,360,1.0,3 +76360,10,1.0,2,1.422236680984497,361,0.0,3 +76361,10,1.0,2,1.3712373971939087,362,0.0,3 +76362,10,0.0,2,1.3462376594543457,363,1.0,3 +76363,10,0.0,2,1.3682373762130737,364,0.0,3 +76364,10,1.0,2,1.9002306461334229,365,0.0,3 +76365,10,0.0,2,1.2742385864257812,366,1.0,3 +76366,10,0.0,2,1.403236985206604,367,1.0,3 +76367,10,0.0,2,1.4282366037368774,368,1.0,3 +76368,10,0.0,2,1.2882384061813354,369,0.0,3 +76369,10,0.0,2,1.3572375774383545,370,1.0,3 +76370,10,0.0,2,1.2952383756637573,371,0.0,3 +76371,10,0.0,2,1.165238380432129,372,0.0,3 +76372,10,0.0,2,1.4362365007400513,373,0.0,3 +76373,10,0.0,2,1.1942384243011475,374,1.0,3 +76374,10,0.0,2,1.4162367582321167,375,0.0,3 +76375,10,0.0,2,1.1512384414672852,376,0.0,3 +76376,10,1.0,2,1.6862332820892334,377,1.0,3 +76377,10,1.0,2,1.3012382984161377,378,0.0,3 +76378,10,1.0,2,1.253238558769226,379,0.0,3 +76379,10,0.0,2,2.0872321128845215,380,1.0,3 +76380,10,0.0,2,1.1482384204864502,381,0.0,3 +76381,10,0.0,2,1.5762348175048828,382,0.0,3 +76382,10,1.0,2,1.4552363157272339,383,0.0,3 +76383,10,0.0,2,1.7822320461273193,384,0.0,3 +76384,10,0.0,2,1.4132368564605713,385,0.0,3 +76385,10,1.0,2,1.5632349252700806,386,0.0,3 +76386,10,1.0,2,1.7452325820922852,387,0.0,3 +76387,10,0.0,2,1.7162330150604248,388,1.0,3 +76388,10,0.0,2,1.1602383852005005,389,1.0,3 +76389,10,1.0,2,1.9022305011749268,390,1.0,3 +76390,10,1.0,2,1.189238429069519,391,0.0,3 +76391,10,0.0,2,1.2662385702133179,392,1.0,3 +76392,10,1.0,2,1.290238380432129,393,0.0,3 +76393,10,0.0,2,1.164238452911377,394,0.0,3 +76394,10,0.0,2,1.6112343072891235,395,0.0,3 +76395,10,0.0,2,1.4492363929748535,396,0.0,3 +76396,10,0.0,2,1.7172329425811768,397,1.0,3 +76397,10,0.0,2,1.2602386474609375,398,1.0,3 +76398,10,0.0,2,1.5352352857589722,399,0.0,3 +76399,10,1.0,2,1.5202354192733765,400,0.0,3 +76400,10,0.0,2,1.539235234260559,401,0.0,3 +76401,10,0.0,2,1.6992331743240356,402,1.0,3 +76402,10,0.0,2,1.2952383756637573,403,0.0,3 +76403,10,0.0,2,1.8522312641143799,404,0.0,3 +76404,10,0.0,2,1.3452377319335938,405,1.0,3 +76405,10,0.0,2,1.3182380199432373,406,1.0,3 +76406,10,0.0,2,1.312238097190857,407,0.0,3 +76407,10,0.0,2,1.712233066558838,408,0.0,3 +76408,10,0.0,2,1.5342352390289307,409,0.0,3 +76409,10,0.0,2,1.2752386331558228,410,0.0,3 +76410,10,1.0,2,1.7632323503494263,411,1.0,3 +76411,10,1.0,2,1.5932345390319824,412,1.0,3 +76412,10,1.0,2,1.3582375049591064,413,1.0,3 +76413,10,1.0,2,1.8202316761016846,414,1.0,3 +76414,10,1.0,2,1.2612385749816895,415,0.0,3 +76415,10,0.0,2,2.0772314071655273,416,1.0,3 +76416,10,0.0,2,1.5232354402542114,417,0.0,3 +76417,10,0.0,2,1.158238410949707,418,1.0,3 +76418,10,0.0,2,1.4822359085083008,419,1.0,3 +76419,10,0.0,2,1.5162354707717896,420,0.0,3 +76420,10,0.0,2,1.5582349300384521,421,0.0,3 +76421,10,0.0,2,1.938230037689209,422,0.0,3 +76422,10,1.0,2,2.0692310333251953,423,1.0,3 +76423,10,1.0,2,1.7862319946289062,424,1.0,3 +76424,10,1.0,2,1.2212384939193726,425,0.0,3 +76425,10,1.0,2,1.635233998298645,426,0.0,3 +76426,10,1.0,2,1.6362340450286865,427,1.0,3 +76427,10,1.0,2,1.3752373456954956,428,0.0,3 +76428,10,1.0,2,1.307238221168518,429,1.0,3 +76429,10,1.0,2,1.4542362689971924,430,1.0,3 +76430,10,1.0,2,1.4212367534637451,431,1.0,3 +76431,10,1.0,2,1.2032384872436523,432,1.0,3 +76432,10,1.0,2,1.6662335395812988,433,1.0,3 +76433,10,1.0,2,1.228238582611084,434,1.0,3 +76434,10,1.0,2,1.5052356719970703,435,0.0,3 +76435,10,0.0,2,1.6042344570159912,436,1.0,3 +76436,10,0.0,2,1.2502385377883911,437,1.0,3 +76437,10,0.0,2,1.3502376079559326,438,0.0,3 +76438,10,1.0,2,1.8992305994033813,439,1.0,3 +76439,10,0.0,2,1.6222341060638428,440,1.0,3 +76440,10,0.0,2,1.8822307586669922,441,1.0,3 +76441,10,0.0,2,1.6592336893081665,442,0.0,3 +76442,10,1.0,2,1.4792360067367554,443,0.0,3 +76443,10,1.0,2,1.4382364749908447,444,1.0,3 +76444,10,0.0,2,1.155238389968872,445,0.0,3 +76445,10,1.0,2,1.311238169670105,446,0.0,3 +76446,10,1.0,2,1.265238642692566,447,1.0,3 +76447,10,1.0,2,1.1772384643554688,448,1.0,3 +76448,10,1.0,2,1.6292340755462646,449,0.0,3 +76449,10,0.0,2,1.8032318353652954,450,1.0,3 +76450,10,0.0,2,1.4552363157272339,451,0.0,3 +76451,10,1.0,2,1.4682360887527466,452,1.0,3 +76452,10,1.0,2,1.334237813949585,453,1.0,3 +76453,10,1.0,2,1.547235131263733,454,1.0,3 +76454,10,1.0,2,1.8282315731048584,455,1.0,3 +76455,10,1.0,2,1.4432364702224731,456,0.0,3 +76456,10,1.0,2,1.727232813835144,457,1.0,3 +76457,10,1.0,2,1.9732296466827393,458,1.0,3 +76458,10,1.0,2,1.892230749130249,459,1.0,3 +76459,10,1.0,2,1.5772347450256348,460,1.0,3 +76460,10,1.0,2,1.617234230041504,461,1.0,3 +76461,10,1.0,2,1.5262353420257568,462,1.0,3 +76462,10,1.0,2,1.3672374486923218,463,0.0,3 +76463,10,1.0,2,1.3672374486923218,464,1.0,3 +76464,10,1.0,2,2.22523832321167,465,0.0,3 +76465,10,1.0,2,2.0432300567626953,466,1.0,3 +76466,10,1.0,2,1.562234878540039,467,1.0,3 +76467,10,0.0,2,1.9662296772003174,468,1.0,3 +76468,10,1.0,2,1.66123366355896,469,0.0,3 +76469,10,0.0,2,1.6712335348129272,470,1.0,3 +76470,10,0.0,2,1.2032384872436523,471,0.0,3 +76471,10,1.0,2,1.404236912727356,472,1.0,3 +76472,10,1.0,2,1.4102368354797363,473,0.0,3 +76473,10,0.0,2,2.0552306175231934,474,0.0,3 +76474,10,1.0,2,1.3052382469177246,475,0.0,3 +76475,10,0.0,2,1.333237886428833,476,0.0,3 +76476,10,0.0,2,1.3722373247146606,477,0.0,3 +76477,10,0.0,2,1.4642361402511597,478,0.0,3 +76478,10,1.0,2,1.6152342557907104,479,0.0,3 +76479,10,0.0,2,1.7782320976257324,480,0.0,3 +76480,10,0.0,2,1.2242385149002075,481,1.0,3 +76481,10,0.0,2,1.1352384090423584,482,0.0,3 +76482,10,1.0,2,1.2662385702133179,483,0.0,3 +76483,10,0.0,2,1.6322340965270996,484,0.0,3 +76484,10,1.0,2,1.231238603591919,485,1.0,3 +76485,10,1.0,2,1.225238561630249,486,1.0,3 +76486,10,1.0,2,1.2782385349273682,487,0.0,3 +76487,10,0.0,2,1.4712361097335815,488,0.0,3 +76488,10,1.0,2,1.6402339935302734,489,0.0,3 +76489,10,0.0,2,1.6442339420318604,490,0.0,3 +76490,10,1.0,2,1.289238452911377,491,1.0,3 +76491,10,0.0,2,1.3032382726669312,492,1.0,3 +76492,10,1.0,2,1.5022356510162354,493,1.0,3 +76493,10,1.0,2,1.6982331275939941,494,0.0,3 +76494,10,0.0,2,1.7342326641082764,495,0.0,3 +76495,10,1.0,2,2.0962324142456055,496,0.0,3 +76496,10,0.0,2,1.8122317790985107,497,1.0,3 +76497,10,0.0,2,1.2722386121749878,498,0.0,3 +76498,10,1.0,2,1.3662374019622803,499,0.0,3 +76499,10,1.0,2,1.231238603591919,500,1.0,3 +76500,11,0.0,0,1.1639009714126587,1,0.0,3 +76501,11,1.0,0,1.6918952465057373,2,1.0,3 +76502,11,1.0,0,1.333899736404419,3,0.0,3 +76503,11,0.0,0,1.5928964614868164,4,0.0,3 +76504,11,0.0,0,1.7588943243026733,5,0.0,3 +76505,11,0.0,0,1.4788979291915894,6,0.0,3 +76506,11,0.0,0,1.1989010572433472,7,1.0,3 +76507,11,0.0,0,1.043900728225708,8,0.0,3 +76508,11,1.0,0,1.3418996334075928,9,1.0,3 +76509,11,1.0,0,1.2439008951187134,10,1.0,3 +76510,11,1.0,0,1.402898907661438,11,1.0,3 +76511,11,0.0,0,1.2229011058807373,12,0.0,3 +76512,11,1.0,0,1.211901068687439,13,1.0,3 +76513,11,1.0,0,1.3848991394042969,14,1.0,3 +76514,11,1.0,0,1.707895040512085,15,1.0,3 +76515,11,1.0,0,1.5288972854614258,16,0.0,3 +76516,11,1.0,0,1.7358946800231934,17,1.0,3 +76517,11,1.0,0,1.2619006633758545,18,1.0,3 +76518,11,1.0,0,1.4918978214263916,19,1.0,3 +76519,11,0.0,0,1.3428996801376343,20,0.0,3 +76520,11,1.0,0,1.447898268699646,21,1.0,3 +76521,11,1.0,0,1.1629009246826172,22,0.0,3 +76522,11,0.0,0,1.208901047706604,23,0.0,3 +76523,11,0.0,0,1.0919008255004883,24,0.0,3 +76524,11,0.0,0,1.046900749206543,25,0.0,3 +76525,11,1.0,0,1.3458995819091797,26,1.0,3 +76526,11,1.0,0,2.257904529571533,27,1.0,3 +76527,11,1.0,0,1.1519008874893188,28,1.0,3 +76528,11,0.0,0,1.2449009418487549,29,0.0,3 +76529,11,1.0,0,1.6148961782455444,30,1.0,3 +76530,11,1.0,0,1.3678992986679077,31,1.0,3 +76531,11,1.0,0,1.1199008226394653,32,1.0,3 +76532,11,1.0,0,1.5598969459533691,33,1.0,3 +76533,11,1.0,0,1.792893886566162,34,1.0,3 +76534,11,1.0,0,1.5448970794677734,35,1.0,3 +76535,11,1.0,0,1.40389883518219,36,1.0,3 +76536,11,1.0,0,1.1579009294509888,37,1.0,3 +76537,11,1.0,0,1.174901008605957,38,1.0,3 +76538,11,1.0,0,1.2799004316329956,39,1.0,3 +76539,11,1.0,0,1.263900637626648,40,1.0,3 +76540,11,1.0,0,1.178900957107544,41,1.0,3 +76541,11,1.0,0,1.6318960189819336,42,1.0,3 +76542,11,1.0,0,1.5318973064422607,43,1.0,3 +76543,11,1.0,0,1.7838940620422363,44,1.0,3 +76544,11,1.0,0,1.1489009857177734,45,1.0,3 +76545,11,1.0,0,1.3049001693725586,46,0.0,3 +76546,11,1.0,0,1.5368971824645996,47,1.0,3 +76547,11,1.0,0,1.8838927745819092,48,1.0,3 +76548,11,1.0,0,1.406898856163025,49,1.0,3 +76549,11,1.0,0,1.311900019645691,50,0.0,3 +76550,11,1.0,0,1.2249010801315308,51,1.0,3 +76551,11,1.0,0,1.141900897026062,52,1.0,3 +76552,11,1.0,0,1.4968976974487305,53,1.0,3 +76553,11,1.0,0,1.1369009017944336,54,0.0,3 +76554,11,1.0,0,1.4608981609344482,55,1.0,3 +76555,11,1.0,0,1.616896152496338,56,1.0,3 +76556,11,1.0,0,1.638895869255066,57,0.0,3 +76557,11,0.0,0,1.2579007148742676,58,0.0,3 +76558,11,0.0,0,1.3358997106552124,59,0.0,3 +76559,11,1.0,0,1.4078987836837769,60,1.0,3 +76560,11,1.0,0,1.4778978824615479,61,1.0,3 +76561,11,1.0,0,1.611896276473999,62,1.0,3 +76562,11,1.0,0,1.2299010753631592,63,1.0,3 +76563,11,1.0,0,1.1589009761810303,64,1.0,3 +76564,11,1.0,0,1.144900918006897,65,1.0,3 +76565,11,1.0,0,1.177901029586792,66,1.0,3 +76566,11,1.0,0,1.0959007740020752,67,1.0,3 +76567,11,1.0,0,1.3248999118804932,68,1.0,3 +76568,11,1.0,0,1.1629009246826172,69,1.0,3 +76569,11,1.0,0,1.2289011478424072,70,1.0,3 +76570,11,1.0,0,1.3708993196487427,71,1.0,3 +76571,11,1.0,0,1.4548982381820679,72,1.0,3 +76572,11,1.0,0,1.4878978729248047,73,1.0,3 +76573,11,1.0,0,1.32889986038208,74,0.0,3 +76574,11,0.0,0,1.9298920631408691,75,0.0,3 +76575,11,1.0,0,1.4838979244232178,76,1.0,3 +76576,11,1.0,0,1.1059008836746216,77,1.0,3 +76577,11,1.0,0,1.752894401550293,78,1.0,3 +76578,11,1.0,0,1.4298985004425049,79,1.0,3 +76579,11,1.0,0,1.180901050567627,80,1.0,3 +76580,11,1.0,0,1.5458970069885254,81,0.0,3 +76581,11,0.0,0,1.3598994016647339,82,0.0,3 +76582,11,1.0,0,2.452913522720337,83,1.0,3 +76583,11,1.0,0,1.2579007148742676,84,0.0,3 +76584,11,0.0,0,1.8148936033248901,85,0.0,3 +76585,11,0.0,0,1.7798941135406494,86,0.0,3 +76586,11,0.0,0,1.538897156715393,87,0.0,3 +76587,11,0.0,0,2.0668954849243164,88,0.0,3 +76588,11,0.0,0,1.4378983974456787,89,0.0,3 +76589,11,1.0,0,1.8838927745819092,90,1.0,3 +76590,11,0.0,0,1.5268973112106323,91,0.0,3 +76591,11,0.0,0,1.1969010829925537,92,0.0,3 +76592,11,1.0,0,1.6068962812423706,93,1.0,3 +76593,11,1.0,0,1.8988925218582153,94,1.0,3 +76594,11,1.0,0,1.2289011478424072,95,1.0,3 +76595,11,1.0,0,1.1659009456634521,96,1.0,3 +76596,11,0.0,0,1.1459009647369385,97,0.0,3 +76597,11,1.0,0,1.171900987625122,98,1.0,3 +76598,11,1.0,0,1.4408984184265137,99,1.0,3 +76599,11,1.0,0,1.2929003238677979,100,1.0,3 +76600,11,1.0,0,1.1619009971618652,101,1.0,3 +76601,11,1.0,0,1.70489501953125,102,1.0,3 +76602,11,0.0,0,1.4778978824615479,103,0.0,3 +76603,11,1.0,0,1.5368971824645996,104,1.0,3 +76604,11,0.0,0,1.1099008321762085,105,1.0,3 +76605,11,0.0,0,1.9288921356201172,106,0.0,3 +76606,11,1.0,0,1.1499009132385254,107,1.0,3 +76607,11,1.0,0,1.289900302886963,108,1.0,3 +76608,11,1.0,0,1.7198948860168457,109,1.0,3 +76609,11,0.0,0,1.4968976974487305,110,0.0,3 +76610,11,1.0,0,1.4498982429504395,111,0.0,3 +76611,11,0.0,0,1.8608930110931396,112,1.0,3 +76612,11,0.0,0,1.2129011154174805,113,0.0,3 +76613,11,1.0,0,1.560896873474121,114,1.0,3 +76614,11,1.0,0,1.1989010572433472,115,1.0,3 +76615,11,1.0,0,1.1909010410308838,116,1.0,3 +76616,11,1.0,0,1.6198961734771729,117,1.0,3 +76617,11,0.0,0,1.6408958435058594,118,0.0,3 +76618,11,0.0,0,1.7768940925598145,119,1.0,3 +76619,11,1.0,0,1.2869004011154175,120,1.0,3 +76620,11,1.0,0,1.561896800994873,121,1.0,3 +76621,11,1.0,0,1.266900658607483,122,1.0,3 +76622,11,0.0,0,1.5818965435028076,123,0.0,3 +76623,11,1.0,0,1.3019001483917236,124,1.0,3 +76624,11,1.0,0,1.5628968477249146,125,1.0,3 +76625,11,1.0,0,1.2539007663726807,126,1.0,3 +76626,11,1.0,0,1.1279008388519287,127,1.0,3 +76627,11,1.0,0,1.4868978261947632,128,1.0,3 +76628,11,1.0,0,1.561896800994873,129,0.0,3 +76629,11,0.0,0,1.9448919296264648,130,0.0,3 +76630,11,1.0,0,1.4188987016677856,131,1.0,3 +76631,11,1.0,0,1.498897671699524,132,1.0,3 +76632,11,1.0,0,1.2269010543823242,133,1.0,3 +76633,11,1.0,0,1.1949009895324707,134,0.0,3 +76634,11,0.0,0,1.1409008502960205,135,0.0,3 +76635,11,0.0,0,1.310900092124939,136,0.0,3 +76636,11,0.0,0,1.3358997106552124,137,0.0,3 +76637,11,0.0,0,1.940891981124878,138,1.0,3 +76638,11,0.0,0,1.144900918006897,139,0.0,3 +76639,11,0.0,0,1.3608994483947754,140,1.0,3 +76640,11,0.0,0,1.3278998136520386,141,0.0,3 +76641,11,1.0,0,1.3528995513916016,142,1.0,3 +76642,11,1.0,0,1.211901068687439,143,1.0,3 +76643,11,1.0,0,1.752894401550293,144,1.0,3 +76644,11,1.0,0,1.2299010753631592,145,1.0,3 +76645,11,1.0,0,1.280900478363037,146,1.0,3 +76646,11,0.0,0,1.447898268699646,147,0.0,3 +76647,11,1.0,0,1.607896327972412,148,0.0,3 +76648,11,0.0,0,1.5318973064422607,149,0.0,3 +76649,11,0.0,0,1.1649010181427002,150,0.0,3 +76650,11,0.0,0,1.54289710521698,151,1.0,3 +76651,11,0.0,0,1.3268998861312866,152,0.0,3 +76652,11,0.0,0,1.1309008598327637,153,0.0,3 +76653,11,1.0,0,1.2429009675979614,154,1.0,3 +76654,11,1.0,0,1.7608942985534668,155,1.0,3 +76655,11,1.0,0,1.0759007930755615,156,0.0,3 +76656,11,0.0,0,1.237900972366333,157,0.0,3 +76657,11,1.0,0,1.4138987064361572,158,1.0,3 +76658,11,1.0,0,1.3698992729187012,159,1.0,3 +76659,11,1.0,0,1.2759004831314087,160,1.0,3 +76660,11,1.0,0,1.2309011220932007,161,1.0,3 +76661,11,1.0,0,1.2759004831314087,162,0.0,3 +76662,11,1.0,0,1.9758915901184082,163,0.0,3 +76663,11,0.0,0,1.288900375366211,164,1.0,3 +76664,11,0.0,0,1.1289008855819702,165,0.0,3 +76665,11,1.0,0,1.8528931140899658,166,1.0,3 +76666,11,1.0,0,1.4388984441757202,167,1.0,3 +76667,11,1.0,0,2.2769052982330322,168,1.0,3 +76668,11,1.0,0,1.3648993968963623,169,1.0,3 +76669,11,0.0,0,1.24190092086792,170,0.0,3 +76670,11,1.0,0,1.1919009685516357,171,1.0,3 +76671,11,1.0,0,1.8798928260803223,172,1.0,3 +76672,11,1.0,0,1.3668993711471558,173,1.0,3 +76673,11,1.0,0,1.1929010152816772,174,1.0,3 +76674,11,1.0,0,1.2049009799957275,175,1.0,3 +76675,11,0.0,0,1.5798966884613037,176,0.0,3 +76676,11,0.0,0,1.3538994789123535,177,0.0,3 +76677,11,1.0,0,1.5538969039916992,178,1.0,3 +76678,11,1.0,0,1.4158986806869507,179,1.0,3 +76679,11,1.0,0,1.3618993759155273,180,1.0,3 +76680,11,1.0,0,2.1088974475860596,181,1.0,3 +76681,11,1.0,0,1.1969010829925537,182,0.0,3 +76682,11,0.0,0,1.202901005744934,183,0.0,3 +76683,11,1.0,0,1.1979010105133057,184,1.0,3 +76684,11,1.0,0,1.469897985458374,185,1.0,3 +76685,11,1.0,0,1.1669009923934937,186,1.0,3 +76686,11,1.0,0,1.1559009552001953,187,1.0,3 +76687,11,1.0,0,1.4608981609344482,188,1.0,3 +76688,11,1.0,0,1.258900761604309,189,0.0,3 +76689,11,0.0,0,1.1279008388519287,190,1.0,3 +76690,11,0.0,0,1.2549008131027222,191,0.0,3 +76691,11,0.0,0,1.32889986038208,192,0.0,3 +76692,11,1.0,0,2.261904716491699,193,1.0,3 +76693,11,1.0,0,1.5348972082138062,194,1.0,3 +76694,11,1.0,0,1.4628981351852417,195,1.0,3 +76695,11,1.0,0,1.2279011011123657,196,0.0,3 +76696,11,0.0,0,1.3208999633789062,197,1.0,3 +76697,11,0.0,0,1.0869008302688599,198,0.0,3 +76698,11,0.0,0,1.2129011154174805,199,0.0,3 +76699,11,1.0,0,1.4558981657028198,200,1.0,3 +76700,11,1.0,0,1.3568994998931885,201,1.0,3 +76701,11,1.0,0,1.4758979082107544,202,0.0,3 +76702,11,0.0,0,1.2969002723693848,203,0.0,3 +76703,11,0.0,0,1.7588943243026733,204,0.0,3 +76704,11,0.0,0,1.563896894454956,205,0.0,3 +76705,11,0.0,0,1.5568969249725342,206,0.0,3 +76706,11,0.0,0,1.5828965902328491,207,1.0,3 +76707,11,1.0,0,1.2479008436203003,208,1.0,3 +76708,11,1.0,0,1.7298946380615234,209,1.0,3 +76709,11,1.0,0,2.0688955783843994,210,1.0,3 +76710,11,0.0,0,1.9118924140930176,211,0.0,3 +76711,11,1.0,0,1.6048963069915771,212,1.0,3 +76712,11,1.0,0,1.3468996286392212,213,1.0,3 +76713,11,1.0,0,1.3718992471694946,214,1.0,3 +76714,11,1.0,0,1.2549008131027222,215,1.0,3 +76715,11,1.0,0,1.2869004011154175,216,1.0,3 +76716,11,1.0,0,1.7568943500518799,217,1.0,3 +76717,11,1.0,0,1.2049009799957275,218,1.0,3 +76718,11,1.0,0,1.3608994483947754,219,1.0,3 +76719,11,1.0,0,1.6678955554962158,220,0.0,3 +76720,11,1.0,0,1.2439008951187134,221,1.0,3 +76721,11,1.0,0,1.2569007873535156,222,1.0,3 +76722,11,1.0,0,1.288900375366211,223,1.0,3 +76723,11,1.0,0,1.5118975639343262,224,1.0,3 +76724,11,1.0,0,1.3678992986679077,225,1.0,3 +76725,11,1.0,0,1.653895616531372,226,1.0,3 +76726,11,1.0,0,1.1889009475708008,227,1.0,3 +76727,11,1.0,0,1.4618980884552002,228,1.0,3 +76728,11,1.0,0,1.5568969249725342,229,1.0,3 +76729,11,1.0,0,1.2679005861282349,230,1.0,3 +76730,11,1.0,0,1.2009010314941406,231,1.0,3 +76731,11,1.0,0,1.4608981609344482,232,1.0,3 +76732,11,1.0,0,1.6438958644866943,233,1.0,3 +76733,11,0.0,0,1.0829007625579834,234,0.0,3 +76734,11,1.0,0,1.2319010496139526,235,1.0,3 +76735,11,1.0,0,1.3948990106582642,236,1.0,3 +76736,11,1.0,0,1.310900092124939,237,0.0,3 +76737,11,0.0,0,1.5918965339660645,238,0.0,3 +76738,11,0.0,0,1.605896234512329,239,1.0,3 +76739,11,0.0,0,1.4808979034423828,240,0.0,3 +76740,11,0.0,0,1.3218998908996582,241,0.0,3 +76741,11,1.0,0,1.3248999118804932,242,1.0,3 +76742,11,1.0,0,1.6438958644866943,243,1.0,3 +76743,11,1.0,0,1.5508970022201538,244,1.0,3 +76744,11,1.0,0,1.1459009647369385,245,1.0,3 +76745,11,1.0,0,1.9958921670913696,246,1.0,3 +76746,11,1.0,0,1.2309011220932007,247,1.0,3 +76747,11,1.0,0,1.2569007873535156,248,1.0,3 +76748,11,1.0,0,1.147900938987732,249,1.0,3 +76749,11,1.0,0,1.289900302886963,250,1.0,3 +76750,11,1.0,0,1.181900978088379,251,0.0,3 +76751,11,0.0,0,1.1629009246826172,252,0.0,3 +76752,11,0.0,0,1.1209008693695068,253,0.0,3 +76753,11,0.0,0,1.4078987836837769,254,0.0,3 +76754,11,1.0,0,1.682895302772522,255,1.0,3 +76755,11,1.0,0,1.233901023864746,256,1.0,3 +76756,11,1.0,0,1.1209008693695068,257,1.0,3 +76757,11,1.0,0,1.1999009847640991,258,1.0,3 +76758,11,1.0,0,1.406898856163025,259,1.0,3 +76759,11,1.0,0,1.6258959770202637,260,0.0,3 +76760,11,0.0,0,2.234903335571289,261,0.0,3 +76761,11,1.0,0,1.4808979034423828,262,1.0,3 +76762,11,1.0,0,1.1459009647369385,263,1.0,3 +76763,11,1.0,0,1.1279008388519287,264,1.0,3 +76764,11,1.0,0,1.3218998908996582,265,0.0,3 +76765,11,0.0,0,2.0868964195251465,266,0.0,3 +76766,11,0.0,0,1.4418983459472656,267,1.0,3 +76767,11,0.0,0,1.3358997106552124,268,0.0,3 +76768,11,0.0,0,1.7598943710327148,269,0.0,3 +76769,11,1.0,0,1.6978950500488281,270,1.0,3 +76770,11,1.0,0,2.0838961601257324,271,0.0,3 +76771,11,0.0,0,1.5078976154327393,272,1.0,3 +76772,11,0.0,0,1.1929010152816772,273,0.0,3 +76773,11,0.0,0,1.3418996334075928,274,1.0,3 +76774,11,0.0,0,1.2979001998901367,275,0.0,3 +76775,11,0.0,0,2.0248935222625732,276,0.0,3 +76776,11,1.0,0,1.3788992166519165,277,1.0,3 +76777,11,0.0,0,1.469897985458374,278,0.0,3 +76778,11,1.0,0,1.7158949375152588,279,1.0,3 +76779,11,1.0,0,1.3938989639282227,280,1.0,3 +76780,11,1.0,0,1.174901008605957,281,1.0,3 +76781,11,1.0,0,1.4098987579345703,282,1.0,3 +76782,11,0.0,0,1.6358959674835205,283,0.0,3 +76783,11,1.0,0,1.177901029586792,284,0.0,3 +76784,11,1.0,0,1.4898977279663086,285,1.0,3 +76785,11,1.0,0,1.205901026725769,286,1.0,3 +76786,11,1.0,0,1.2439008951187134,287,1.0,3 +76787,11,1.0,0,1.2839003801345825,288,1.0,3 +76788,11,1.0,0,1.2389010190963745,289,1.0,3 +76789,11,1.0,0,1.310900092124939,290,1.0,3 +76790,11,1.0,0,1.1589009761810303,291,1.0,3 +76791,11,1.0,0,1.2249010801315308,292,0.0,3 +76792,11,1.0,0,1.6648955345153809,293,1.0,3 +76793,11,1.0,0,1.3538994789123535,294,1.0,3 +76794,11,1.0,0,1.350899577140808,295,0.0,3 +76795,11,1.0,0,1.8318934440612793,296,1.0,3 +76796,11,1.0,0,1.5328972339630127,297,1.0,3 +76797,11,1.0,0,1.1339008808135986,298,1.0,3 +76798,11,1.0,0,1.4148987531661987,299,1.0,3 +76799,11,1.0,0,1.451898217201233,300,1.0,3 +76800,11,1.0,0,1.2609007358551025,301,1.0,3 +76801,11,1.0,0,1.4678980112075806,302,1.0,3 +76802,11,1.0,0,1.2469009160995483,303,1.0,3 +76803,11,1.0,0,1.7128949165344238,304,1.0,3 +76804,11,1.0,0,1.2269010543823242,305,1.0,3 +76805,11,1.0,0,1.5088975429534912,306,1.0,3 +76806,11,1.0,0,1.6038963794708252,307,1.0,3 +76807,11,1.0,0,1.7298946380615234,308,0.0,3 +76808,11,1.0,0,1.5358972549438477,309,0.0,3 +76809,11,0.0,0,1.6848952770233154,310,0.0,3 +76810,11,0.0,0,1.205901026725769,311,0.0,3 +76811,11,1.0,0,1.4968976974487305,312,1.0,3 +76812,11,1.0,0,1.5258972644805908,313,1.0,3 +76813,11,1.0,0,1.5258972644805908,314,1.0,3 +76814,11,1.0,0,1.630895972251892,315,0.0,3 +76815,11,1.0,0,1.2039010524749756,316,1.0,3 +76816,11,0.0,0,1.1409008502960205,317,1.0,3 +76817,11,1.0,0,2.267904758453369,318,1.0,3 +76818,11,1.0,0,1.8248934745788574,319,1.0,3 +76819,11,0.0,0,1.10490083694458,320,0.0,3 +76820,11,1.0,0,1.5628968477249146,321,1.0,3 +76821,11,1.0,0,1.6648955345153809,322,1.0,3 +76822,11,1.0,0,1.3758991956710815,323,1.0,3 +76823,11,1.0,0,1.1829010248184204,324,1.0,3 +76824,11,1.0,0,1.280900478363037,325,1.0,3 +76825,11,1.0,0,1.49089777469635,326,1.0,3 +76826,11,1.0,0,1.450898289680481,327,1.0,3 +76827,11,1.0,0,1.605896234512329,328,1.0,3 +76828,11,1.0,0,1.280900478363037,329,0.0,3 +76829,11,0.0,0,1.9028924703598022,330,0.0,3 +76830,11,0.0,0,1.2839003801345825,331,0.0,3 +76831,11,0.0,0,1.7608942985534668,332,0.0,3 +76832,11,1.0,0,2.3339080810546875,333,1.0,3 +76833,11,1.0,0,1.608896255493164,334,1.0,3 +76834,11,1.0,0,1.2159010171890259,335,1.0,3 +76835,11,0.0,0,1.3718992471694946,336,0.0,3 +76836,11,1.0,0,1.3948990106582642,337,1.0,3 +76837,11,1.0,0,1.2689006328582764,338,1.0,3 +76838,11,1.0,0,1.7588943243026733,339,1.0,3 +76839,11,1.0,0,1.2659006118774414,340,0.0,3 +76840,11,0.0,0,1.3138999938964844,341,0.0,3 +76841,11,1.0,0,1.8198935985565186,342,1.0,3 +76842,11,0.0,0,1.5498969554901123,343,0.0,3 +76843,11,1.0,0,1.205901026725769,344,1.0,3 +76844,11,1.0,0,1.428898572921753,345,0.0,3 +76845,11,0.0,0,1.2329010963439941,346,1.0,3 +76846,11,0.0,0,1.4898977279663086,347,0.0,3 +76847,11,0.0,0,1.6068962812423706,348,0.0,3 +76848,11,0.0,0,1.1219009160995483,349,0.0,3 +76849,11,1.0,0,1.5518970489501953,350,1.0,3 +76850,11,1.0,0,1.2869004011154175,351,0.0,3 +76851,11,1.0,0,1.2989002466201782,352,1.0,3 +76852,11,1.0,0,1.114900827407837,353,1.0,3 +76853,11,1.0,0,1.2139010429382324,354,1.0,3 +76854,11,1.0,0,1.1929010152816772,355,0.0,3 +76855,11,1.0,0,1.6878952980041504,356,1.0,3 +76856,11,1.0,0,1.1339008808135986,357,1.0,3 +76857,11,1.0,0,1.4628981351852417,358,1.0,3 +76858,11,1.0,0,1.796893835067749,359,1.0,3 +76859,11,1.0,0,1.2719005346298218,360,1.0,3 +76860,11,0.0,0,1.1269009113311768,361,1.0,3 +76861,11,0.0,0,1.6518957614898682,362,1.0,3 +76862,11,1.0,0,1.3658993244171143,363,1.0,3 +76863,11,1.0,0,1.7258946895599365,364,1.0,3 +76864,11,1.0,0,1.5368971824645996,365,0.0,3 +76865,11,0.0,0,1.8498930931091309,366,0.0,3 +76866,11,0.0,0,1.8678929805755615,367,0.0,3 +76867,11,0.0,0,1.450898289680481,368,0.0,3 +76868,11,0.0,0,1.1019008159637451,369,0.0,3 +76869,11,0.0,0,2.0748958587646484,370,0.0,3 +76870,11,0.0,0,1.933892011642456,371,0.0,3 +76871,11,1.0,0,1.1249008178710938,372,1.0,3 +76872,11,1.0,0,1.6268960237503052,373,1.0,3 +76873,11,1.0,0,1.659895658493042,374,1.0,3 +76874,11,1.0,0,1.3678992986679077,375,1.0,3 +76875,11,1.0,0,1.1949009895324707,376,0.0,3 +76876,11,1.0,0,2.3429083824157715,377,0.0,3 +76877,11,1.0,0,1.3528995513916016,378,1.0,3 +76878,11,1.0,0,1.32889986038208,379,1.0,3 +76879,11,1.0,0,1.1559009552001953,380,1.0,3 +76880,11,1.0,0,1.3418996334075928,381,1.0,3 +76881,11,1.0,0,1.3978989124298096,382,1.0,3 +76882,11,1.0,0,1.2799004316329956,383,1.0,3 +76883,11,1.0,0,1.2609007358551025,384,1.0,3 +76884,11,1.0,0,1.4088988304138184,385,1.0,3 +76885,11,1.0,0,1.3918989896774292,386,1.0,3 +76886,11,1.0,0,1.3378996849060059,387,1.0,3 +76887,11,1.0,0,1.8818926811218262,388,1.0,3 +76888,11,1.0,0,1.3308998346328735,389,1.0,3 +76889,11,1.0,0,1.7388945817947388,390,0.0,3 +76890,11,0.0,0,1.2249010801315308,391,0.0,3 +76891,11,0.0,0,1.266900658607483,392,0.0,3 +76892,11,0.0,0,1.2129011154174805,393,1.0,3 +76893,11,0.0,0,1.6468957662582397,394,0.0,3 +76894,11,1.0,0,1.1249008178710938,395,1.0,3 +76895,11,0.0,0,1.1899009943008423,396,0.0,3 +76896,11,1.0,0,1.4838979244232178,397,1.0,3 +76897,11,1.0,0,1.4348984956741333,398,1.0,3 +76898,11,1.0,0,1.5488970279693604,399,1.0,3 +76899,11,1.0,0,1.2239010334014893,400,1.0,3 +76900,11,1.0,0,1.5248973369598389,401,1.0,3 +76901,11,1.0,0,1.4528982639312744,402,1.0,3 +76902,11,1.0,0,1.6178960800170898,403,1.0,3 +76903,11,1.0,0,1.2289011478424072,404,1.0,3 +76904,11,1.0,0,1.181900978088379,405,1.0,3 +76905,11,1.0,0,1.3788992166519165,406,1.0,3 +76906,11,1.0,0,1.1519008874893188,407,1.0,3 +76907,11,1.0,0,1.2559007406234741,408,1.0,3 +76908,11,1.0,0,2.1679000854492188,409,0.0,3 +76909,11,1.0,0,1.5088975429534912,410,1.0,3 +76910,11,1.0,0,1.398898959159851,411,0.0,3 +76911,11,1.0,0,1.7258946895599365,412,1.0,3 +76912,11,1.0,0,1.4558981657028198,413,1.0,3 +76913,11,1.0,0,1.2789005041122437,414,0.0,3 +76914,11,0.0,0,1.4528982639312744,415,1.0,3 +76915,11,0.0,0,1.402898907661438,416,1.0,3 +76916,11,0.0,0,1.071900725364685,417,0.0,3 +76917,11,1.0,0,1.5418970584869385,418,1.0,3 +76918,11,1.0,0,1.3059000968933105,419,1.0,3 +76919,11,1.0,0,1.376899242401123,420,1.0,3 +76920,11,1.0,0,1.5988963842391968,421,1.0,3 +76921,11,1.0,0,1.24190092086792,422,1.0,3 +76922,11,1.0,0,1.0999008417129517,423,1.0,3 +76923,11,0.0,0,1.2939002513885498,424,0.0,3 +76924,11,1.0,0,1.3258998394012451,425,1.0,3 +76925,11,1.0,0,1.3418996334075928,426,1.0,3 +76926,11,1.0,0,1.1989010572433472,427,1.0,3 +76927,11,1.0,0,1.2779004573822021,428,1.0,3 +76928,11,1.0,0,1.2729005813598633,429,1.0,3 +76929,11,1.0,0,1.3788992166519165,430,0.0,3 +76930,11,1.0,0,1.4178986549377441,431,0.0,3 +76931,11,1.0,0,1.3348997831344604,432,1.0,3 +76932,11,1.0,0,1.2459008693695068,433,0.0,3 +76933,11,1.0,0,1.7448945045471191,434,1.0,3 +76934,11,1.0,0,1.3668993711471558,435,0.0,3 +76935,11,1.0,0,1.1669009923934937,436,1.0,3 +76936,11,1.0,0,1.7028950452804565,437,1.0,3 +76937,11,1.0,0,1.329899787902832,438,1.0,3 +76938,11,1.0,0,1.9128923416137695,439,1.0,3 +76939,11,1.0,0,1.2479008436203003,440,1.0,3 +76940,11,1.0,0,1.2049009799957275,441,1.0,3 +76941,11,1.0,0,1.5698966979980469,442,1.0,3 +76942,11,1.0,0,1.3348997831344604,443,1.0,3 +76943,11,1.0,0,1.7338945865631104,444,0.0,3 +76944,11,1.0,0,1.354899525642395,445,1.0,3 +76945,11,1.0,0,1.2509008646011353,446,0.0,3 +76946,11,1.0,0,1.4848978519439697,447,1.0,3 +76947,11,1.0,0,1.1929010152816772,448,1.0,3 +76948,11,1.0,0,1.4608981609344482,449,1.0,3 +76949,11,0.0,0,1.517897367477417,450,0.0,3 +76950,11,1.0,0,1.4978976249694824,451,1.0,3 +76951,11,0.0,0,1.774894118309021,452,0.0,3 +76952,11,1.0,0,1.2179011106491089,453,1.0,3 +76953,11,1.0,0,1.3728992938995361,454,1.0,3 +76954,11,1.0,0,1.3149000406265259,455,1.0,3 +76955,11,1.0,0,1.3838990926742554,456,1.0,3 +76956,11,1.0,0,1.1059008836746216,457,1.0,3 +76957,11,1.0,0,1.2449009418487549,458,1.0,3 +76958,11,1.0,0,1.9668916463851929,459,0.0,3 +76959,11,0.0,0,1.1829010248184204,460,0.0,3 +76960,11,0.0,0,1.932892084121704,461,0.0,3 +76961,11,1.0,0,1.701894998550415,462,1.0,3 +76962,11,1.0,0,1.2619006633758545,463,1.0,3 +76963,11,1.0,0,1.4198986291885376,464,1.0,3 +76964,11,1.0,0,1.2309011220932007,465,0.0,3 +76965,11,0.0,0,1.3448996543884277,466,0.0,3 +76966,11,0.0,0,1.2159010171890259,467,1.0,3 +76967,11,0.0,0,1.1409008502960205,468,0.0,3 +76968,11,0.0,0,1.705894947052002,469,0.0,3 +76969,11,1.0,0,1.5998964309692383,470,1.0,3 +76970,11,1.0,0,1.4788979291915894,471,1.0,3 +76971,11,0.0,0,1.311900019645691,472,0.0,3 +76972,11,1.0,0,1.7868939638137817,473,1.0,3 +76973,11,1.0,0,1.333899736404419,474,1.0,3 +76974,11,1.0,0,1.447898268699646,475,1.0,3 +76975,11,1.0,0,2.3979110717773438,476,1.0,3 +76976,11,1.0,0,1.2299010753631592,477,1.0,3 +76977,11,1.0,0,1.4618980884552002,478,0.0,3 +76978,11,1.0,0,2.16890025138855,479,1.0,3 +76979,11,1.0,0,1.5888965129852295,480,1.0,3 +76980,11,1.0,0,1.177901029586792,481,1.0,3 +76981,11,1.0,0,1.3468996286392212,482,1.0,3 +76982,11,1.0,0,1.3099000453948975,483,1.0,3 +76983,11,1.0,0,1.2989002466201782,484,1.0,3 +76984,11,1.0,0,1.2539007663726807,485,1.0,3 +76985,11,1.0,0,1.4188987016677856,486,1.0,3 +76986,11,0.0,0,1.40389883518219,487,0.0,3 +76987,11,1.0,0,2.0348939895629883,488,1.0,3 +76988,11,1.0,0,1.2959002256393433,489,1.0,3 +76989,11,1.0,0,1.211901068687439,490,1.0,3 +76990,11,1.0,0,1.9578917026519775,491,1.0,3 +76991,11,1.0,0,1.818893551826477,492,1.0,3 +76992,11,1.0,0,1.5788966417312622,493,1.0,3 +76993,11,1.0,0,1.2429009675979614,494,1.0,3 +76994,11,1.0,0,1.2309011220932007,495,1.0,3 +76995,11,1.0,0,2.0808961391448975,496,1.0,3 +76996,11,1.0,0,1.465898036956787,497,1.0,3 +76997,11,1.0,0,1.7238948345184326,498,1.0,3 +76998,11,1.0,0,1.4448983669281006,499,1.0,3 +76999,11,1.0,0,1.4048988819122314,500,1.0,3 +77000,11,1.0,1,1.32889986038208,1,0.0,3 +77001,11,0.0,1,1.2969002723693848,2,1.0,3 +77002,11,0.0,1,1.5258972644805908,3,0.0,3 +77003,11,0.0,1,1.8808927536010742,4,0.0,3 +77004,11,0.0,1,1.1679009199142456,5,1.0,3 +77005,11,0.0,1,1.5528969764709473,6,1.0,3 +77006,11,0.0,1,1.1929010152816772,7,0.0,3 +77007,11,1.0,1,1.5268973112106323,8,1.0,3 +77008,11,1.0,1,1.607896327972412,9,1.0,3 +77009,11,1.0,1,1.2509008646011353,10,0.0,3 +77010,11,1.0,1,1.958891749382019,11,0.0,3 +77011,11,0.0,1,1.2159010171890259,12,0.0,3 +77012,11,0.0,1,1.2769005298614502,13,0.0,3 +77013,11,1.0,1,1.8648929595947266,14,1.0,3 +77014,11,1.0,1,1.5008976459503174,15,0.0,3 +77015,11,0.0,1,1.1409008502960205,16,0.0,3 +77016,11,1.0,1,1.5898964405059814,17,1.0,3 +77017,11,1.0,1,1.586896538734436,18,1.0,3 +77018,11,1.0,1,1.8428932428359985,19,0.0,3 +77019,11,0.0,1,1.5498969554901123,20,0.0,3 +77020,11,0.0,1,1.6268960237503052,21,1.0,3 +77021,11,0.0,1,1.262900710105896,22,0.0,3 +77022,11,0.0,1,1.6868952512741089,23,0.0,3 +77023,11,1.0,1,1.6548956632614136,24,1.0,3 +77024,11,1.0,1,1.4088988304138184,25,1.0,3 +77025,11,0.0,1,1.4878978729248047,26,0.0,3 +77026,11,1.0,1,1.354899525642395,27,1.0,3 +77027,11,1.0,1,1.1879010200500488,28,1.0,3 +77028,11,1.0,1,1.237900972366333,29,1.0,3 +77029,11,1.0,1,1.49089777469635,30,1.0,3 +77030,11,1.0,1,1.2999001741409302,31,0.0,3 +77031,11,1.0,1,1.446898341178894,32,1.0,3 +77032,11,1.0,1,1.5358972549438477,33,0.0,3 +77033,11,0.0,1,1.1679009199142456,34,1.0,3 +77034,11,0.0,1,1.0969008207321167,35,0.0,3 +77035,11,1.0,1,1.6878952980041504,36,0.0,3 +77036,11,0.0,1,1.5128974914550781,37,0.0,3 +77037,11,0.0,1,1.1059008836746216,38,0.0,3 +77038,11,0.0,1,1.3059000968933105,39,0.0,3 +77039,11,0.0,1,1.4158986806869507,40,0.0,3 +77040,11,0.0,1,1.284900426864624,41,1.0,3 +77041,11,0.0,1,1.0969008207321167,42,0.0,3 +77042,11,0.0,1,1.2069010734558105,43,0.0,3 +77043,11,0.0,1,1.1219009160995483,44,0.0,3 +77044,11,0.0,1,1.5188974142074585,45,0.0,3 +77045,11,1.0,1,1.6328959465026855,46,0.0,3 +77046,11,0.0,1,1.7578942775726318,47,1.0,3 +77047,11,0.0,1,1.3648993968963623,48,0.0,3 +77048,11,0.0,1,1.2719005346298218,49,0.0,3 +77049,11,1.0,1,1.2289011478424072,50,1.0,3 +77050,11,1.0,1,1.6958951950073242,51,0.0,3 +77051,11,0.0,1,1.2239010334014893,52,0.0,3 +77052,11,1.0,1,1.4888978004455566,53,1.0,3 +77053,11,1.0,1,1.6898951530456543,54,0.0,3 +77054,11,0.0,1,1.1559009552001953,55,0.0,3 +77055,11,0.0,1,1.5458970069885254,56,0.0,3 +77056,11,1.0,1,1.38089919090271,57,0.0,3 +77057,11,1.0,1,1.2189010381698608,58,1.0,3 +77058,11,1.0,1,1.7118949890136719,59,1.0,3 +77059,11,1.0,1,1.6588956117630005,60,1.0,3 +77060,11,1.0,1,1.402898907661438,61,1.0,3 +77061,11,1.0,1,1.2529008388519287,62,1.0,3 +77062,11,0.0,1,1.240900993347168,63,0.0,3 +77063,11,1.0,1,1.7598943710327148,64,0.0,3 +77064,11,1.0,1,1.7588943243026733,65,1.0,3 +77065,11,1.0,1,1.3029001951217651,66,1.0,3 +77066,11,1.0,1,1.329899787902832,67,0.0,3 +77067,11,1.0,1,1.4858977794647217,68,1.0,3 +77068,11,1.0,1,1.202901005744934,69,1.0,3 +77069,11,1.0,1,1.3658993244171143,70,0.0,3 +77070,11,0.0,1,1.9008924961090088,71,0.0,3 +77071,11,0.0,1,1.8828927278518677,72,0.0,3 +77072,11,0.0,1,1.1949009895324707,73,0.0,3 +77073,11,0.0,1,1.402898907661438,74,0.0,3 +77074,11,0.0,1,1.3678992986679077,75,0.0,3 +77075,11,1.0,1,1.7818939685821533,76,1.0,3 +77076,11,1.0,1,1.726894736289978,77,1.0,3 +77077,11,1.0,1,1.1829010248184204,78,1.0,3 +77078,11,1.0,1,1.288900375366211,79,1.0,3 +77079,11,1.0,1,1.465898036956787,80,0.0,3 +77080,11,0.0,1,1.2299010753631592,81,1.0,3 +77081,11,1.0,1,1.2399009466171265,82,1.0,3 +77082,11,1.0,1,1.3318997621536255,83,1.0,3 +77083,11,1.0,1,1.1949009895324707,84,1.0,3 +77084,11,0.0,1,1.8268934488296509,85,0.0,3 +77085,11,1.0,1,1.6338958740234375,86,1.0,3 +77086,11,1.0,1,1.2429009675979614,87,0.0,3 +77087,11,0.0,1,1.35189950466156,88,0.0,3 +77088,11,0.0,1,1.4668980836868286,89,1.0,3 +77089,11,0.0,1,1.4048988819122314,90,0.0,3 +77090,11,1.0,1,1.5568969249725342,91,1.0,3 +77091,11,1.0,1,1.517897367477417,92,1.0,3 +77092,11,0.0,1,1.7418944835662842,93,0.0,3 +77093,11,1.0,1,1.307900071144104,94,0.0,3 +77094,11,0.0,1,1.8908926248550415,95,1.0,3 +77095,11,0.0,1,1.2129011154174805,96,1.0,3 +77096,11,0.0,1,1.4058988094329834,97,0.0,3 +77097,11,1.0,1,2.3129069805145264,98,1.0,3 +77098,11,1.0,1,1.4608981609344482,99,0.0,3 +77099,11,1.0,1,1.5338971614837646,100,1.0,3 +77100,11,1.0,1,1.177901029586792,101,1.0,3 +77101,11,0.0,1,1.1409008502960205,102,0.0,3 +77102,11,1.0,1,1.2559007406234741,103,1.0,3 +77103,11,0.0,1,1.1369009017944336,104,0.0,3 +77104,11,1.0,1,1.2079010009765625,105,1.0,3 +77105,11,0.0,1,1.0659008026123047,106,0.0,3 +77106,11,1.0,1,1.180901050567627,107,1.0,3 +77107,11,1.0,1,1.406898856163025,108,1.0,3 +77108,11,1.0,1,1.9278922080993652,109,1.0,3 +77109,11,1.0,1,1.2169010639190674,110,1.0,3 +77110,11,0.0,1,1.259900689125061,111,0.0,3 +77111,11,1.0,1,1.1399009227752686,112,1.0,3 +77112,11,1.0,1,1.266900658607483,113,1.0,3 +77113,11,1.0,1,1.0869008302688599,114,0.0,3 +77114,11,1.0,1,1.2609007358551025,115,1.0,3 +77115,11,1.0,1,1.381899118423462,116,1.0,3 +77116,11,1.0,1,1.1659009456634521,117,0.0,3 +77117,11,1.0,1,1.8258934020996094,118,1.0,3 +77118,11,1.0,1,1.4018988609313965,119,0.0,3 +77119,11,0.0,1,2.0418944358825684,120,0.0,3 +77120,11,1.0,1,1.6908951997756958,121,0.0,3 +77121,11,1.0,1,1.753894329071045,122,0.0,3 +77122,11,0.0,1,1.4138987064361572,123,0.0,3 +77123,11,1.0,1,1.3748992681503296,124,0.0,3 +77124,11,0.0,1,1.2439008951187134,125,0.0,3 +77125,11,0.0,1,1.7198948860168457,126,0.0,3 +77126,11,0.0,1,1.7238948345184326,127,0.0,3 +77127,11,0.0,1,1.682895302772522,128,0.0,3 +77128,11,1.0,1,1.266900658607483,129,1.0,3 +77129,11,1.0,1,1.38089919090271,130,0.0,3 +77130,11,1.0,1,1.2049009799957275,131,1.0,3 +77131,11,1.0,1,1.9528918266296387,132,1.0,3 +77132,11,1.0,1,1.3278998136520386,133,0.0,3 +77133,11,0.0,1,1.1709009408950806,134,1.0,3 +77134,11,0.0,1,1.2649006843566895,135,1.0,3 +77135,11,0.0,1,1.6418957710266113,136,0.0,3 +77136,11,1.0,1,1.7108949422836304,137,1.0,3 +77137,11,1.0,1,2.217902660369873,138,1.0,3 +77138,11,1.0,1,2.22890305519104,139,1.0,3 +77139,11,1.0,1,1.4148987531661987,140,1.0,3 +77140,11,1.0,1,1.240900993347168,141,1.0,3 +77141,11,1.0,1,1.8048937320709229,142,1.0,3 +77142,11,1.0,1,1.3878990411758423,143,1.0,3 +77143,11,1.0,1,1.701894998550415,144,1.0,3 +77144,11,1.0,1,1.3009002208709717,145,1.0,3 +77145,11,0.0,1,1.1989010572433472,146,0.0,3 +77146,11,1.0,1,1.1709009408950806,147,1.0,3 +77147,11,1.0,1,1.284900426864624,148,1.0,3 +77148,11,1.0,1,1.561896800994873,149,1.0,3 +77149,11,1.0,1,1.2199010848999023,150,1.0,3 +77150,11,1.0,1,1.3798991441726685,151,1.0,3 +77151,11,1.0,1,1.358899474143982,152,0.0,3 +77152,11,1.0,1,1.5598969459533691,153,1.0,3 +77153,11,1.0,1,1.6248960494995117,154,1.0,3 +77154,11,1.0,1,1.3228999376296997,155,0.0,3 +77155,11,0.0,1,1.6478958129882812,156,0.0,3 +77156,11,1.0,1,1.311900019645691,157,1.0,3 +77157,11,1.0,1,1.4428983926773071,158,1.0,3 +77158,11,1.0,1,1.4798978567123413,159,1.0,3 +77159,11,1.0,1,1.7718942165374756,160,1.0,3 +77160,11,1.0,1,1.2929003238677979,161,1.0,3 +77161,11,0.0,1,1.0679007768630981,162,1.0,3 +77162,11,0.0,1,1.1499009132385254,163,0.0,3 +77163,11,1.0,1,1.3628994226455688,164,1.0,3 +77164,11,1.0,1,1.4838979244232178,165,1.0,3 +77165,11,1.0,1,1.3009002208709717,166,1.0,3 +77166,11,1.0,1,1.5598969459533691,167,0.0,3 +77167,11,1.0,1,1.6298959255218506,168,1.0,3 +77168,11,1.0,1,1.329899787902832,169,1.0,3 +77169,11,1.0,1,1.7818939685821533,170,1.0,3 +77170,11,1.0,1,1.609896183013916,171,1.0,3 +77171,11,1.0,1,1.336899757385254,172,1.0,3 +77172,11,0.0,1,1.0579007863998413,173,0.0,3 +77173,11,1.0,1,1.424898624420166,174,1.0,3 +77174,11,1.0,1,1.3478995561599731,175,1.0,3 +77175,11,1.0,1,1.3358997106552124,176,1.0,3 +77176,11,1.0,1,1.5048975944519043,177,0.0,3 +77177,11,0.0,1,1.5458970069885254,178,1.0,3 +77178,11,0.0,1,1.538897156715393,179,0.0,3 +77179,11,0.0,1,1.4118987321853638,180,0.0,3 +77180,11,0.0,1,1.354899525642395,181,0.0,3 +77181,11,0.0,1,1.4138987064361572,182,0.0,3 +77182,11,0.0,1,1.2879003286361694,183,0.0,3 +77183,11,0.0,1,2.218902587890625,184,1.0,3 +77184,11,0.0,1,1.1009008884429932,185,0.0,3 +77185,11,0.0,1,1.9208922386169434,186,1.0,3 +77186,11,0.0,1,1.3608994483947754,187,0.0,3 +77187,11,0.0,1,1.4448983669281006,188,1.0,3 +77188,11,0.0,1,1.11090087890625,189,1.0,3 +77189,11,0.0,1,1.3218998908996582,190,0.0,3 +77190,11,0.0,1,2.3749098777770996,191,0.0,3 +77191,11,0.0,1,1.2689006328582764,192,0.0,3 +77192,11,1.0,1,1.5538969039916992,193,1.0,3 +77193,11,1.0,1,1.32889986038208,194,1.0,3 +77194,11,1.0,1,1.6448957920074463,195,0.0,3 +77195,11,0.0,1,1.3658993244171143,196,0.0,3 +77196,11,0.0,1,1.5048975944519043,197,0.0,3 +77197,11,1.0,1,1.7728941440582275,198,1.0,3 +77198,11,1.0,1,1.7778940200805664,199,1.0,3 +77199,11,1.0,1,1.5828965902328491,200,1.0,3 +77200,11,1.0,1,1.9498918056488037,201,1.0,3 +77201,11,1.0,1,1.1309008598327637,202,0.0,3 +77202,11,0.0,1,1.7198948860168457,203,0.0,3 +77203,11,0.0,1,2.3249075412750244,204,1.0,3 +77204,11,0.0,1,1.2269010543823242,205,0.0,3 +77205,11,1.0,1,1.844893217086792,206,0.0,3 +77206,11,0.0,1,1.9878917932510376,207,1.0,3 +77207,11,0.0,1,1.3228999376296997,208,0.0,3 +77208,11,0.0,1,1.355899453163147,209,0.0,3 +77209,11,0.0,1,1.6968951225280762,210,1.0,3 +77210,11,0.0,1,1.1209008693695068,211,1.0,3 +77211,11,0.0,1,1.285900354385376,212,0.0,3 +77212,11,0.0,1,1.1909010410308838,213,0.0,3 +77213,11,0.0,1,1.2659006118774414,214,0.0,3 +77214,11,0.0,1,1.9208922386169434,215,0.0,3 +77215,11,1.0,1,1.655895709991455,216,1.0,3 +77216,11,1.0,1,1.2839003801345825,217,1.0,3 +77217,11,1.0,1,1.5338971614837646,218,0.0,3 +77218,11,1.0,1,1.2219010591506958,219,1.0,3 +77219,11,0.0,1,1.4578981399536133,220,1.0,3 +77220,11,1.0,1,1.1399009227752686,221,1.0,3 +77221,11,1.0,1,1.3798991441726685,222,1.0,3 +77222,11,1.0,1,1.2579007148742676,223,1.0,3 +77223,11,1.0,1,1.1949009895324707,224,1.0,3 +77224,11,1.0,1,1.4898977279663086,225,1.0,3 +77225,11,0.0,1,1.6068962812423706,226,0.0,3 +77226,11,1.0,1,1.1739009618759155,227,1.0,3 +77227,11,1.0,1,1.7168948650360107,228,1.0,3 +77228,11,1.0,1,1.2439008951187134,229,0.0,3 +77229,11,1.0,1,1.892892599105835,230,1.0,3 +77230,11,1.0,1,1.5708967447280884,231,1.0,3 +77231,11,1.0,1,1.329899787902832,232,1.0,3 +77232,11,1.0,1,1.3718992471694946,233,1.0,3 +77233,11,1.0,1,1.4488983154296875,234,0.0,3 +77234,11,0.0,1,1.3099000453948975,235,1.0,3 +77235,11,0.0,1,1.6698954105377197,236,0.0,3 +77236,11,0.0,1,1.6478958129882812,237,1.0,3 +77237,11,0.0,1,1.2399009466171265,238,1.0,3 +77238,11,0.0,1,1.1019008159637451,239,0.0,3 +77239,11,0.0,1,1.1279008388519287,240,0.0,3 +77240,11,1.0,1,1.6518957614898682,241,0.0,3 +77241,11,0.0,1,1.5148974657058716,242,0.0,3 +77242,11,1.0,1,1.8318934440612793,243,0.0,3 +77243,11,1.0,1,1.1599009037017822,244,0.0,3 +77244,11,1.0,1,1.3678992986679077,245,1.0,3 +77245,11,1.0,1,1.4528982639312744,246,1.0,3 +77246,11,1.0,1,1.54289710521698,247,1.0,3 +77247,11,1.0,1,1.2429009675979614,248,0.0,3 +77248,11,1.0,1,1.630895972251892,249,1.0,3 +77249,11,1.0,1,1.1929010152816772,250,1.0,3 +77250,11,1.0,1,1.1549009084701538,251,1.0,3 +77251,11,1.0,1,1.1179008483886719,252,0.0,3 +77252,11,1.0,1,1.2839003801345825,253,1.0,3 +77253,11,1.0,1,1.3248999118804932,254,1.0,3 +77254,11,1.0,1,1.3858990669250488,255,0.0,3 +77255,11,0.0,1,1.6858952045440674,256,0.0,3 +77256,11,1.0,1,2.0328938961029053,257,1.0,3 +77257,11,1.0,1,1.4278985261917114,258,0.0,3 +77258,11,0.0,1,1.885892629623413,259,0.0,3 +77259,11,1.0,1,1.5718967914581299,260,1.0,3 +77260,11,1.0,1,1.5588968992233276,261,0.0,3 +77261,11,0.0,1,1.358899474143982,262,1.0,3 +77262,11,0.0,1,1.381899118423462,263,0.0,3 +77263,11,0.0,1,1.3468996286392212,264,0.0,3 +77264,11,1.0,1,1.6048963069915771,265,1.0,3 +77265,11,1.0,1,1.703895092010498,266,1.0,3 +77266,11,1.0,1,1.3728992938995361,267,0.0,3 +77267,11,1.0,1,1.420898675918579,268,1.0,3 +77268,11,1.0,1,2.1468992233276367,269,1.0,3 +77269,11,1.0,1,1.406898856163025,270,0.0,3 +77270,11,1.0,1,1.9038925170898438,271,1.0,3 +77271,11,1.0,1,1.3838990926742554,272,1.0,3 +77272,11,1.0,1,1.3278998136520386,273,0.0,3 +77273,11,0.0,1,1.8308933973312378,274,1.0,3 +77274,11,0.0,1,1.5418970584869385,275,1.0,3 +77275,11,0.0,1,1.2789005041122437,276,0.0,3 +77276,11,0.0,1,1.2999001741409302,277,0.0,3 +77277,11,1.0,1,1.2779004573822021,278,0.0,3 +77278,11,1.0,1,1.3848991394042969,279,0.0,3 +77279,11,0.0,1,1.4268985986709595,280,0.0,3 +77280,11,0.0,1,1.1669009923934937,281,0.0,3 +77281,11,1.0,1,1.9938920736312866,282,1.0,3 +77282,11,1.0,1,1.6548956632614136,283,1.0,3 +77283,11,1.0,1,1.3668993711471558,284,1.0,3 +77284,11,0.0,1,1.2229011058807373,285,0.0,3 +77285,11,1.0,1,1.4848978519439697,286,0.0,3 +77286,11,0.0,1,1.3798991441726685,287,1.0,3 +77287,11,0.0,1,1.180901050567627,288,0.0,3 +77288,11,1.0,1,2.0858964920043945,289,1.0,3 +77289,11,1.0,1,1.3188999891281128,290,1.0,3 +77290,11,1.0,1,1.5948964357376099,291,1.0,3 +77291,11,1.0,1,1.138900876045227,292,1.0,3 +77292,11,1.0,1,1.6198961734771729,293,0.0,3 +77293,11,1.0,1,2.031893730163574,294,1.0,3 +77294,11,1.0,1,1.4488983154296875,295,1.0,3 +77295,11,1.0,1,1.181900978088379,296,1.0,3 +77296,11,1.0,1,1.7738940715789795,297,1.0,3 +77297,11,0.0,1,1.4018988609313965,298,0.0,3 +77298,11,1.0,1,1.889892578125,299,1.0,3 +77299,11,1.0,1,1.2199010848999023,300,1.0,3 +77300,11,1.0,1,1.3158999681472778,301,1.0,3 +77301,11,1.0,1,1.420898675918579,302,1.0,3 +77302,11,1.0,1,1.9608917236328125,303,0.0,3 +77303,11,1.0,1,1.6978950500488281,304,1.0,3 +77304,11,1.0,1,1.607896327972412,305,0.0,3 +77305,11,0.0,1,1.7448945045471191,306,0.0,3 +77306,11,1.0,1,1.6238961219787598,307,1.0,3 +77307,11,1.0,1,1.2649006843566895,308,1.0,3 +77308,11,1.0,1,1.2929003238677979,309,1.0,3 +77309,11,1.0,1,1.3678992986679077,310,1.0,3 +77310,11,1.0,1,1.5668967962265015,311,1.0,3 +77311,11,1.0,1,1.6958951950073242,312,0.0,3 +77312,11,1.0,1,1.4668980836868286,313,1.0,3 +77313,11,1.0,1,1.40389883518219,314,0.0,3 +77314,11,0.0,1,1.0589007139205933,315,0.0,3 +77315,11,0.0,1,2.196901559829712,316,1.0,3 +77316,11,0.0,1,1.181900978088379,317,1.0,3 +77317,11,0.0,1,1.5548969507217407,318,1.0,3 +77318,11,0.0,1,1.1999009847640991,319,0.0,3 +77319,11,1.0,1,1.6778953075408936,320,1.0,3 +77320,11,1.0,1,1.6628955602645874,321,0.0,3 +77321,11,0.0,1,1.2439008951187134,322,0.0,3 +77322,11,1.0,1,1.1189008951187134,323,1.0,3 +77323,11,1.0,1,1.4838979244232178,324,1.0,3 +77324,11,1.0,1,1.9098923206329346,325,0.0,3 +77325,11,1.0,1,1.3498995304107666,326,1.0,3 +77326,11,1.0,1,1.1499009132385254,327,0.0,3 +77327,11,0.0,1,1.0769007205963135,328,0.0,3 +77328,11,1.0,1,1.7338945865631104,329,1.0,3 +77329,11,1.0,1,1.8328933715820312,330,1.0,3 +77330,11,1.0,1,1.5038976669311523,331,1.0,3 +77331,11,1.0,1,1.2359009981155396,332,0.0,3 +77332,11,1.0,1,1.8538930416107178,333,1.0,3 +77333,11,1.0,1,1.8168935775756836,334,1.0,3 +77334,11,1.0,1,1.465898036956787,335,1.0,3 +77335,11,1.0,1,1.6588956117630005,336,1.0,3 +77336,11,1.0,1,1.0939007997512817,337,0.0,3 +77337,11,1.0,1,1.1639009714126587,338,1.0,3 +77338,11,1.0,1,1.3438996076583862,339,1.0,3 +77339,11,1.0,1,1.661895513534546,340,1.0,3 +77340,11,1.0,1,1.2989002466201782,341,1.0,3 +77341,11,1.0,1,1.4098987579345703,342,1.0,3 +77342,11,0.0,1,1.5228973627090454,343,0.0,3 +77343,11,1.0,1,1.1919009685516357,344,1.0,3 +77344,11,1.0,1,1.3308998346328735,345,1.0,3 +77345,11,0.0,1,1.5018975734710693,346,0.0,3 +77346,11,1.0,1,1.306900143623352,347,1.0,3 +77347,11,0.0,1,1.5108975172042847,348,0.0,3 +77348,11,1.0,1,1.3448996543884277,349,0.0,3 +77349,11,1.0,1,1.563896894454956,350,1.0,3 +77350,11,1.0,1,1.171900987625122,351,1.0,3 +77351,11,1.0,1,1.1569008827209473,352,1.0,3 +77352,11,1.0,1,1.3638993501663208,353,0.0,3 +77353,11,1.0,1,1.891892671585083,354,1.0,3 +77354,11,1.0,1,1.2929003238677979,355,1.0,3 +77355,11,1.0,1,1.0999008417129517,356,1.0,3 +77356,11,1.0,1,1.240900993347168,357,1.0,3 +77357,11,1.0,1,1.564896821975708,358,1.0,3 +77358,11,1.0,1,1.1979010105133057,359,1.0,3 +77359,11,1.0,1,1.520897388458252,360,1.0,3 +77360,11,1.0,1,1.703895092010498,361,1.0,3 +77361,11,1.0,1,1.1499009132385254,362,0.0,3 +77362,11,1.0,1,1.6918952465057373,363,1.0,3 +77363,11,1.0,1,1.4998977184295654,364,1.0,3 +77364,11,1.0,1,1.3498995304107666,365,1.0,3 +77365,11,1.0,1,1.1209008693695068,366,0.0,3 +77366,11,0.0,1,1.521897315979004,367,0.0,3 +77367,11,1.0,1,1.4568982124328613,368,1.0,3 +77368,11,0.0,1,2.1168978214263916,369,0.0,3 +77369,11,1.0,1,1.1539009809494019,370,1.0,3 +77370,11,1.0,1,1.1709009408950806,371,0.0,3 +77371,11,1.0,1,1.1929010152816772,372,1.0,3 +77372,11,1.0,1,1.5758967399597168,373,1.0,3 +77373,11,1.0,1,1.2439008951187134,374,1.0,3 +77374,11,1.0,1,1.355899453163147,375,1.0,3 +77375,11,1.0,1,1.1979010105133057,376,1.0,3 +77376,11,1.0,1,1.1589009761810303,377,1.0,3 +77377,11,1.0,1,1.1859010457992554,378,1.0,3 +77378,11,0.0,1,1.1529009342193604,379,1.0,3 +77379,11,0.0,1,2.2809054851531982,380,0.0,3 +77380,11,1.0,1,1.3468996286392212,381,1.0,3 +77381,11,0.0,1,1.8298933506011963,382,1.0,3 +77382,11,1.0,1,1.135900855064392,383,0.0,3 +77383,11,0.0,1,1.1899009943008423,384,0.0,3 +77384,11,0.0,1,1.1649010181427002,385,0.0,3 +77385,11,1.0,1,1.747894525527954,386,1.0,3 +77386,11,1.0,1,1.376899242401123,387,1.0,3 +77387,11,1.0,1,1.181900978088379,388,1.0,3 +77388,11,0.0,1,1.3009002208709717,389,1.0,3 +77389,11,0.0,1,1.333899736404419,390,0.0,3 +77390,11,1.0,1,1.236901044845581,391,1.0,3 +77391,11,1.0,1,1.5978963375091553,392,1.0,3 +77392,11,0.0,1,1.208901047706604,393,1.0,3 +77393,11,0.0,1,1.137900948524475,394,1.0,3 +77394,11,1.0,1,1.3938989639282227,395,1.0,3 +77395,11,0.0,1,1.568896770477295,396,0.0,3 +77396,11,1.0,1,1.2979001998901367,397,1.0,3 +77397,11,1.0,1,1.1889009475708008,398,1.0,3 +77398,11,1.0,1,1.3698992729187012,399,1.0,3 +77399,11,1.0,1,1.2659006118774414,400,1.0,3 +77400,11,0.0,1,1.4048988819122314,401,0.0,3 +77401,11,1.0,1,1.2469009160995483,402,1.0,3 +77402,11,1.0,1,1.5598969459533691,403,1.0,3 +77403,11,0.0,1,1.214901089668274,404,0.0,3 +77404,11,1.0,1,1.3528995513916016,405,1.0,3 +77405,11,1.0,1,1.329899787902832,406,0.0,3 +77406,11,0.0,1,1.5048975944519043,407,1.0,3 +77407,11,0.0,1,1.778894066810608,408,0.0,3 +77408,11,0.0,1,1.703895092010498,409,0.0,3 +77409,11,0.0,1,1.2019010782241821,410,1.0,3 +77410,11,0.0,1,1.1579009294509888,411,0.0,3 +77411,11,1.0,1,1.5118975639343262,412,0.0,3 +77412,11,1.0,1,1.4308985471725464,413,1.0,3 +77413,11,1.0,1,1.208901047706604,414,1.0,3 +77414,11,1.0,1,1.468898057937622,415,1.0,3 +77415,11,1.0,1,1.0929007530212402,416,1.0,3 +77416,11,1.0,1,1.3848991394042969,417,1.0,3 +77417,11,1.0,1,1.2229011058807373,418,1.0,3 +77418,11,1.0,1,1.1179008483886719,419,0.0,3 +77419,11,1.0,1,1.4678980112075806,420,1.0,3 +77420,11,1.0,1,1.5708967447280884,421,0.0,3 +77421,11,0.0,1,1.2909003496170044,422,1.0,3 +77422,11,0.0,1,1.4418983459472656,423,0.0,3 +77423,11,0.0,1,1.1319009065628052,424,1.0,3 +77424,11,0.0,1,1.4638980627059937,425,0.0,3 +77425,11,0.0,1,1.3169000148773193,426,0.0,3 +77426,11,0.0,1,1.237900972366333,427,0.0,3 +77427,11,0.0,1,1.2999001741409302,428,1.0,3 +77428,11,0.0,1,1.2309011220932007,429,0.0,3 +77429,11,0.0,1,1.373899221420288,430,0.0,3 +77430,11,0.0,1,1.9538917541503906,431,0.0,3 +77431,11,0.0,1,1.6438958644866943,432,0.0,3 +77432,11,0.0,1,1.885892629623413,433,0.0,3 +77433,11,1.0,1,1.8138935565948486,434,1.0,3 +77434,11,1.0,1,2.1508994102478027,435,0.0,3 +77435,11,1.0,1,1.8698928356170654,436,1.0,3 +77436,11,1.0,1,1.707895040512085,437,1.0,3 +77437,11,0.0,1,1.3318997621536255,438,0.0,3 +77438,11,1.0,1,1.3218998908996582,439,0.0,3 +77439,11,1.0,1,1.3618993759155273,440,1.0,3 +77440,11,0.0,1,1.5588968992233276,441,0.0,3 +77441,11,1.0,1,1.24190092086792,442,0.0,3 +77442,11,1.0,1,1.6928951740264893,443,1.0,3 +77443,11,1.0,1,1.5798966884613037,444,1.0,3 +77444,11,1.0,1,1.6418957710266113,445,1.0,3 +77445,11,1.0,1,1.0919008255004883,446,1.0,3 +77446,11,1.0,1,1.3948990106582642,447,1.0,3 +77447,11,1.0,1,1.49089777469635,448,1.0,3 +77448,11,1.0,1,1.2709006071090698,449,0.0,3 +77449,11,0.0,1,1.9288921356201172,450,0.0,3 +77450,11,0.0,1,1.38089919090271,451,0.0,3 +77451,11,0.0,1,1.1319009065628052,452,0.0,3 +77452,11,1.0,1,2.0228934288024902,453,1.0,3 +77453,11,1.0,1,1.3438996076583862,454,1.0,3 +77454,11,1.0,1,1.2539007663726807,455,1.0,3 +77455,11,1.0,1,1.7428945302963257,456,0.0,3 +77456,11,1.0,1,1.568896770477295,457,0.0,3 +77457,11,0.0,1,1.4058988094329834,458,1.0,3 +77458,11,0.0,1,1.1669009923934937,459,0.0,3 +77459,11,1.0,1,1.172900915145874,460,0.0,3 +77460,11,0.0,1,1.107900857925415,461,1.0,3 +77461,11,0.0,1,1.2079010009765625,462,0.0,3 +77462,11,1.0,1,1.3638993501663208,463,0.0,3 +77463,11,1.0,1,1.748894453048706,464,0.0,3 +77464,11,0.0,1,1.0889008045196533,465,1.0,3 +77465,11,0.0,1,1.202901005744934,466,1.0,3 +77466,11,0.0,1,1.4578981399536133,467,0.0,3 +77467,11,1.0,1,1.1799010038375854,468,1.0,3 +77468,11,0.0,1,1.3188999891281128,469,0.0,3 +77469,11,1.0,1,1.2499008178710938,470,1.0,3 +77470,11,1.0,1,1.8788927793502808,471,1.0,3 +77471,11,1.0,1,1.4138987064361572,472,0.0,3 +77472,11,1.0,1,1.5978963375091553,473,0.0,3 +77473,11,0.0,1,1.0629007816314697,474,0.0,3 +77474,11,0.0,1,1.567896842956543,475,0.0,3 +77475,11,0.0,1,1.4588981866836548,476,0.0,3 +77476,11,0.0,1,1.1869009733200073,477,0.0,3 +77477,11,0.0,1,1.7198948860168457,478,1.0,3 +77478,11,0.0,1,1.262900710105896,479,0.0,3 +77479,11,1.0,1,2.1248981952667236,480,0.0,3 +77480,11,0.0,1,1.208901047706604,481,0.0,3 +77481,11,0.0,1,2.16890025138855,482,1.0,3 +77482,11,0.0,1,1.7628942728042603,483,1.0,3 +77483,11,0.0,1,1.1159008741378784,484,0.0,3 +77484,11,0.0,1,1.2269010543823242,485,1.0,3 +77485,11,0.0,1,1.0859007835388184,486,1.0,3 +77486,11,0.0,1,1.428898572921753,487,1.0,3 +77487,11,0.0,1,1.8638930320739746,488,1.0,3 +77488,11,0.0,1,1.5098974704742432,489,0.0,3 +77489,11,1.0,1,1.2469009160995483,490,1.0,3 +77490,11,0.0,1,1.8088936805725098,491,0.0,3 +77491,11,1.0,1,2.0868964195251465,492,0.0,3 +77492,11,0.0,1,2.3609092235565186,493,0.0,3 +77493,11,0.0,1,1.4828978776931763,494,0.0,3 +77494,11,0.0,1,1.381899118423462,495,0.0,3 +77495,11,1.0,1,1.9988923072814941,496,1.0,3 +77496,11,1.0,1,1.237900972366333,497,1.0,3 +77497,11,1.0,1,1.3418996334075928,498,1.0,3 +77498,11,1.0,1,1.5398972034454346,499,1.0,3 +77499,11,1.0,1,1.266900658607483,500,0.0,3 +77500,11,0.0,2,1.333899736404419,1,1.0,3 +77501,11,1.0,2,1.3938989639282227,2,1.0,3 +77502,11,1.0,2,2.3069067001342773,3,0.0,3 +77503,11,0.0,2,1.2299010753631592,4,0.0,3 +77504,11,0.0,2,1.0429006814956665,5,0.0,3 +77505,11,0.0,2,1.2519007921218872,6,1.0,3 +77506,11,0.0,2,1.5098974704742432,7,1.0,3 +77507,11,0.0,2,1.2169010639190674,8,0.0,3 +77508,11,0.0,2,1.3059000968933105,9,0.0,3 +77509,11,1.0,2,2.1008970737457275,10,1.0,3 +77510,11,1.0,2,1.6888952255249023,11,0.0,3 +77511,11,0.0,2,1.1539009809494019,12,1.0,3 +77512,11,0.0,2,1.3868991136550903,13,1.0,3 +77513,11,0.0,2,1.40389883518219,14,0.0,3 +77514,11,0.0,2,1.303900122642517,15,1.0,3 +77515,11,0.0,2,1.333899736404419,16,1.0,3 +77516,11,0.0,2,1.0299007892608643,17,1.0,3 +77517,11,0.0,2,1.1699010133743286,18,1.0,3 +77518,11,0.0,2,1.609896183013916,19,1.0,3 +77519,11,0.0,2,1.1439008712768555,20,0.0,3 +77520,11,0.0,2,1.2229011058807373,21,0.0,3 +77521,11,0.0,2,1.333899736404419,22,1.0,3 +77522,11,0.0,2,1.1329009532928467,23,1.0,3 +77523,11,0.0,2,1.5708967447280884,24,0.0,3 +77524,11,0.0,2,1.3688993453979492,25,0.0,3 +77525,11,0.0,2,1.1259008646011353,26,1.0,3 +77526,11,0.0,2,1.2329010963439941,27,1.0,3 +77527,11,0.0,2,1.5588968992233276,28,1.0,3 +77528,11,0.0,2,1.3438996076583862,29,0.0,3 +77529,11,1.0,2,1.4088988304138184,30,0.0,3 +77530,11,0.0,2,1.1409008502960205,31,0.0,3 +77531,11,1.0,2,1.2959002256393433,32,0.0,3 +77532,11,0.0,2,1.0599007606506348,33,0.0,3 +77533,11,0.0,2,1.0819008350372314,34,1.0,3 +77534,11,0.0,2,1.3019001483917236,35,1.0,3 +77535,11,0.0,2,1.3868991136550903,36,0.0,3 +77536,11,0.0,2,1.2099010944366455,37,1.0,3 +77537,11,0.0,2,1.1499009132385254,38,1.0,3 +77538,11,0.0,2,1.141900897026062,39,0.0,3 +77539,11,0.0,2,2.5219168663024902,40,0.0,3 +77540,11,0.0,2,1.7818939685821533,41,1.0,3 +77541,11,0.0,2,1.1619009971618652,42,0.0,3 +77542,11,1.0,2,1.5038976669311523,43,0.0,3 +77543,11,1.0,2,2.209902286529541,44,0.0,3 +77544,11,1.0,2,1.9318921566009521,45,1.0,3 +77545,11,1.0,2,1.4838979244232178,46,1.0,3 +77546,11,1.0,2,1.1539009809494019,47,0.0,3 +77547,11,1.0,2,1.3009002208709717,48,1.0,3 +77548,11,0.0,2,1.0799007415771484,49,1.0,3 +77549,11,0.0,2,1.888892650604248,50,1.0,3 +77550,11,1.0,2,1.2549008131027222,51,0.0,3 +77551,11,0.0,2,1.4378983974456787,52,1.0,3 +77552,11,0.0,2,1.494897723197937,53,0.0,3 +77553,11,1.0,2,1.3598994016647339,54,1.0,3 +77554,11,1.0,2,1.605896234512329,55,0.0,3 +77555,11,0.0,2,1.3019001483917236,56,0.0,3 +77556,11,1.0,2,1.4458982944488525,57,1.0,3 +77557,11,1.0,2,1.5028976202011108,58,1.0,3 +77558,11,1.0,2,1.1969010829925537,59,1.0,3 +77559,11,1.0,2,1.5128974914550781,60,0.0,3 +77560,11,0.0,2,2.1208980083465576,61,0.0,3 +77561,11,0.0,2,1.7138948440551758,62,0.0,3 +77562,11,1.0,2,1.1399009227752686,63,0.0,3 +77563,11,1.0,2,1.4448983669281006,64,1.0,3 +77564,11,1.0,2,1.332899808883667,65,1.0,3 +77565,11,0.0,2,1.114900827407837,66,1.0,3 +77566,11,0.0,2,1.5878965854644775,67,0.0,3 +77567,11,1.0,2,1.8728928565979004,68,0.0,3 +77568,11,0.0,2,1.980891466140747,69,1.0,3 +77569,11,0.0,2,1.399898886680603,70,0.0,3 +77570,11,1.0,2,2.3119068145751953,71,1.0,3 +77571,11,0.0,2,1.3218998908996582,72,1.0,3 +77572,11,1.0,2,1.8738927841186523,73,1.0,3 +77573,11,0.0,2,1.6038963794708252,74,1.0,3 +77574,11,0.0,2,1.8328933715820312,75,0.0,3 +77575,11,1.0,2,1.2939002513885498,76,1.0,3 +77576,11,1.0,2,1.6898951530456543,77,0.0,3 +77577,11,0.0,2,1.5548969507217407,78,1.0,3 +77578,11,0.0,2,1.6178960800170898,79,1.0,3 +77579,11,0.0,2,1.205901026725769,80,0.0,3 +77580,11,0.0,2,1.355899453163147,81,0.0,3 +77581,11,0.0,2,1.2529008388519287,82,0.0,3 +77582,11,1.0,2,1.202901005744934,83,0.0,3 +77583,11,0.0,2,1.3868991136550903,84,0.0,3 +77584,11,0.0,2,2.212902307510376,85,0.0,3 +77585,11,0.0,2,1.240900993347168,86,0.0,3 +77586,11,0.0,2,1.567896842956543,87,0.0,3 +77587,11,0.0,2,1.4548982381820679,88,0.0,3 +77588,11,0.0,2,1.205901026725769,89,0.0,3 +77589,11,1.0,2,1.7648942470550537,90,0.0,3 +77590,11,1.0,2,1.4578981399536133,91,0.0,3 +77591,11,1.0,2,1.84389328956604,92,1.0,3 +77592,11,0.0,2,1.5298972129821777,93,1.0,3 +77593,11,1.0,2,1.5778965950012207,94,1.0,3 +77594,11,1.0,2,1.5708967447280884,95,1.0,3 +77595,11,1.0,2,1.7278947830200195,96,0.0,3 +77596,11,1.0,2,1.2489008903503418,97,1.0,3 +77597,11,1.0,2,1.8728928565979004,98,0.0,3 +77598,11,1.0,2,1.7348946332931519,99,0.0,3 +77599,11,0.0,2,1.1209008693695068,100,1.0,3 +77600,11,0.0,2,1.2479008436203003,101,0.0,3 +77601,11,1.0,2,1.797893762588501,102,1.0,3 +77602,11,1.0,2,1.2109010219573975,103,0.0,3 +77603,11,1.0,2,1.7398946285247803,104,1.0,3 +77604,11,0.0,2,2.0588951110839844,105,1.0,3 +77605,11,0.0,2,1.0899008512496948,106,0.0,3 +77606,11,0.0,2,1.2559007406234741,107,1.0,3 +77607,11,0.0,2,1.0769007205963135,108,0.0,3 +77608,11,1.0,2,1.284900426864624,109,1.0,3 +77609,11,1.0,2,1.2519007921218872,110,1.0,3 +77610,11,1.0,2,1.517897367477417,111,0.0,3 +77611,11,1.0,2,2.0928966999053955,112,1.0,3 +77612,11,1.0,2,1.2229011058807373,113,0.0,3 +77613,11,1.0,2,2.1438989639282227,114,1.0,3 +77614,11,0.0,2,1.285900354385376,115,0.0,3 +77615,11,1.0,2,1.3198999166488647,116,0.0,3 +77616,11,0.0,2,1.1799010038375854,117,0.0,3 +77617,11,0.0,2,1.32889986038208,118,0.0,3 +77618,11,1.0,2,1.935892105102539,119,1.0,3 +77619,11,1.0,2,1.2979001998901367,120,1.0,3 +77620,11,1.0,2,2.01589298248291,121,0.0,3 +77621,11,1.0,2,1.5578968524932861,122,1.0,3 +77622,11,1.0,2,1.51389741897583,123,1.0,3 +77623,11,0.0,2,1.1929010152816772,124,1.0,3 +77624,11,1.0,2,1.376899242401123,125,0.0,3 +77625,11,1.0,2,2.1168978214263916,126,0.0,3 +77626,11,1.0,2,1.4448983669281006,127,0.0,3 +77627,11,1.0,2,1.311900019645691,128,1.0,3 +77628,11,1.0,2,1.5828965902328491,129,1.0,3 +77629,11,1.0,2,1.2329010963439941,130,0.0,3 +77630,11,0.0,2,1.1279008388519287,131,1.0,3 +77631,11,0.0,2,2.162899971008301,132,0.0,3 +77632,11,1.0,2,1.8608930110931396,133,1.0,3 +77633,11,1.0,2,1.3528995513916016,134,1.0,3 +77634,11,1.0,2,1.5268973112106323,135,0.0,3 +77635,11,1.0,2,1.5788966417312622,136,0.0,3 +77636,11,1.0,2,1.6548956632614136,137,0.0,3 +77637,11,0.0,2,1.214901089668274,138,1.0,3 +77638,11,0.0,2,1.214901089668274,139,1.0,3 +77639,11,0.0,2,1.5108975172042847,140,1.0,3 +77640,11,0.0,2,1.172900915145874,141,0.0,3 +77641,11,1.0,2,1.2449009418487549,142,0.0,3 +77642,11,0.0,2,1.3798991441726685,143,0.0,3 +77643,11,1.0,2,1.3418996334075928,144,1.0,3 +77644,11,1.0,2,1.4848978519439697,145,1.0,3 +77645,11,1.0,2,1.6378958225250244,146,1.0,3 +77646,11,1.0,2,1.2289011478424072,147,1.0,3 +77647,11,1.0,2,1.1299009323120117,148,1.0,3 +77648,11,1.0,2,1.4308985471725464,149,1.0,3 +77649,11,1.0,2,1.399898886680603,150,0.0,3 +77650,11,1.0,2,2.0288937091827393,151,1.0,3 +77651,11,1.0,2,1.3898990154266357,152,1.0,3 +77652,11,1.0,2,1.1659009456634521,153,0.0,3 +77653,11,0.0,2,2.007892608642578,154,1.0,3 +77654,11,0.0,2,1.2459008693695068,155,0.0,3 +77655,11,1.0,2,1.2649006843566895,156,0.0,3 +77656,11,0.0,2,1.35189950466156,157,1.0,3 +77657,11,0.0,2,1.3718992471694946,158,1.0,3 +77658,11,0.0,2,1.447898268699646,159,1.0,3 +77659,11,0.0,2,2.0508947372436523,160,1.0,3 +77660,11,0.0,2,1.144900918006897,161,0.0,3 +77661,11,1.0,2,1.4328985214233398,162,1.0,3 +77662,11,1.0,2,1.8178935050964355,163,1.0,3 +77663,11,1.0,2,1.5568969249725342,164,1.0,3 +77664,11,1.0,2,1.2139010429382324,165,0.0,3 +77665,11,0.0,2,1.211901068687439,166,0.0,3 +77666,11,0.0,2,1.840893268585205,167,0.0,3 +77667,11,0.0,2,1.1679009199142456,168,1.0,3 +77668,11,0.0,2,1.1979010105133057,169,1.0,3 +77669,11,0.0,2,1.5118975639343262,170,1.0,3 +77670,11,0.0,2,1.4168987274169922,171,0.0,3 +77671,11,1.0,2,1.3788992166519165,172,1.0,3 +77672,11,1.0,2,1.107900857925415,173,0.0,3 +77673,11,1.0,2,1.6498956680297852,174,1.0,3 +77674,11,0.0,2,1.1539009809494019,175,0.0,3 +77675,11,1.0,2,2.5899200439453125,176,1.0,3 +77676,11,1.0,2,1.3378996849060059,177,1.0,3 +77677,11,0.0,2,1.663895606994629,178,0.0,3 +77678,11,1.0,2,1.4968976974487305,179,1.0,3 +77679,11,1.0,2,1.3618993759155273,180,0.0,3 +77680,11,1.0,2,1.9578917026519775,181,1.0,3 +77681,11,1.0,2,2.0958967208862305,182,0.0,3 +77682,11,0.0,2,1.3608994483947754,183,0.0,3 +77683,11,1.0,2,1.6448957920074463,184,1.0,3 +77684,11,1.0,2,1.7158949375152588,185,0.0,3 +77685,11,0.0,2,1.3418996334075928,186,0.0,3 +77686,11,1.0,2,1.5088975429534912,187,1.0,3 +77687,11,1.0,2,1.3848991394042969,188,1.0,3 +77688,11,1.0,2,1.171900987625122,189,1.0,3 +77689,11,1.0,2,1.2079010009765625,190,1.0,3 +77690,11,1.0,2,1.3388997316360474,191,1.0,3 +77691,11,0.0,2,1.3318997621536255,192,0.0,3 +77692,11,1.0,2,1.9008924961090088,193,0.0,3 +77693,11,1.0,2,1.4318984746932983,194,0.0,3 +77694,11,1.0,2,1.4568982124328613,195,1.0,3 +77695,11,1.0,2,2.3089067935943604,196,0.0,3 +77696,11,0.0,2,1.7428945302963257,197,1.0,3 +77697,11,0.0,2,1.0959007740020752,198,1.0,3 +77698,11,0.0,2,1.630895972251892,199,0.0,3 +77699,11,0.0,2,2.1278982162475586,200,0.0,3 +77700,11,0.0,2,1.9568917751312256,201,1.0,3 +77701,11,0.0,2,1.3698992729187012,202,1.0,3 +77702,11,0.0,2,1.5148974657058716,203,1.0,3 +77703,11,0.0,2,1.7338945865631104,204,0.0,3 +77704,11,0.0,2,1.800893783569336,205,0.0,3 +77705,11,0.0,2,1.9708915948867798,206,1.0,3 +77706,11,0.0,2,1.3608994483947754,207,1.0,3 +77707,11,0.0,2,1.2689006328582764,208,1.0,3 +77708,11,0.0,2,1.7228947877883911,209,0.0,3 +77709,11,0.0,2,1.4398983716964722,210,0.0,3 +77710,11,0.0,2,1.5348972082138062,211,0.0,3 +77711,11,1.0,2,1.3848991394042969,212,0.0,3 +77712,11,1.0,2,1.2509008646011353,213,1.0,3 +77713,11,1.0,2,1.2389010190963745,214,0.0,3 +77714,11,1.0,2,1.5508970022201538,215,1.0,3 +77715,11,1.0,2,1.447898268699646,216,1.0,3 +77716,11,1.0,2,1.3009002208709717,217,0.0,3 +77717,11,1.0,2,1.5958964824676514,218,0.0,3 +77718,11,1.0,2,1.3918989896774292,219,1.0,3 +77719,11,1.0,2,1.3258998394012451,220,1.0,3 +77720,11,1.0,2,1.5308972597122192,221,1.0,3 +77721,11,1.0,2,1.561896800994873,222,0.0,3 +77722,11,0.0,2,1.1469008922576904,223,0.0,3 +77723,11,0.0,2,1.91889226436615,224,0.0,3 +77724,11,1.0,2,1.9958921670913696,225,1.0,3 +77725,11,1.0,2,1.3498995304107666,226,1.0,3 +77726,11,1.0,2,1.1519008874893188,227,1.0,3 +77727,11,1.0,2,1.1699010133743286,228,1.0,3 +77728,11,1.0,2,1.1599009037017822,229,1.0,3 +77729,11,1.0,2,1.3468996286392212,230,1.0,3 +77730,11,1.0,2,1.5528969764709473,231,0.0,3 +77731,11,1.0,2,2.0428943634033203,232,0.0,3 +77732,11,1.0,2,2.1098976135253906,233,0.0,3 +77733,11,1.0,2,2.1038970947265625,234,0.0,3 +77734,11,1.0,2,1.4798978567123413,235,1.0,3 +77735,11,0.0,2,1.5518970489501953,236,0.0,3 +77736,11,1.0,2,1.2009010314941406,237,0.0,3 +77737,11,1.0,2,1.521897315979004,238,1.0,3 +77738,11,1.0,2,1.5548969507217407,239,1.0,3 +77739,11,1.0,2,1.2259011268615723,240,1.0,3 +77740,11,1.0,2,1.2769005298614502,241,1.0,3 +77741,11,1.0,2,1.38089919090271,242,0.0,3 +77742,11,1.0,2,1.4488983154296875,243,1.0,3 +77743,11,1.0,2,1.4148987531661987,244,1.0,3 +77744,11,1.0,2,1.3208999633789062,245,0.0,3 +77745,11,0.0,2,1.6028963327407837,246,0.0,3 +77746,11,1.0,2,1.8398933410644531,247,1.0,3 +77747,11,1.0,2,1.2219010591506958,248,0.0,3 +77748,11,0.0,2,2.0098929405212402,249,0.0,3 +77749,11,0.0,2,1.7838940620422363,250,1.0,3 +77750,11,0.0,2,1.0799007415771484,251,0.0,3 +77751,11,1.0,2,1.6658954620361328,252,0.0,3 +77752,11,0.0,2,1.381899118423462,253,0.0,3 +77753,11,1.0,2,1.2679005861282349,254,0.0,3 +77754,11,1.0,2,1.9988923072814941,255,1.0,3 +77755,11,1.0,2,1.2939002513885498,256,1.0,3 +77756,11,1.0,2,1.4968976974487305,257,1.0,3 +77757,11,1.0,2,1.3538994789123535,258,1.0,3 +77758,11,1.0,2,1.6418957710266113,259,1.0,3 +77759,11,1.0,2,1.329899787902832,260,1.0,3 +77760,11,1.0,2,1.1039007902145386,261,0.0,3 +77761,11,0.0,2,2.0848963260650635,262,1.0,3 +77762,11,0.0,2,1.1829010248184204,263,0.0,3 +77763,11,0.0,2,1.7618942260742188,264,0.0,3 +77764,11,1.0,2,2.1158976554870605,265,1.0,3 +77765,11,1.0,2,1.1369009017944336,266,0.0,3 +77766,11,1.0,2,1.3698992729187012,267,1.0,3 +77767,11,1.0,2,1.6328959465026855,268,1.0,3 +77768,11,1.0,2,1.3788992166519165,269,0.0,3 +77769,11,1.0,2,1.4778978824615479,270,1.0,3 +77770,11,1.0,2,1.3258998394012451,271,1.0,3 +77771,11,1.0,2,1.4778978824615479,272,0.0,3 +77772,11,0.0,2,1.1399009227752686,273,0.0,3 +77773,11,0.0,2,2.003892421722412,274,0.0,3 +77774,11,1.0,2,2.1528995037078857,275,1.0,3 +77775,11,1.0,2,1.240900993347168,276,1.0,3 +77776,11,1.0,2,1.3049001693725586,277,0.0,3 +77777,11,0.0,2,1.5968964099884033,278,0.0,3 +77778,11,1.0,2,1.35189950466156,279,1.0,3 +77779,11,1.0,2,1.141900897026062,280,1.0,3 +77780,11,1.0,2,1.1499009132385254,281,1.0,3 +77781,11,1.0,2,1.3668993711471558,282,1.0,3 +77782,11,1.0,2,1.1899009943008423,283,0.0,3 +77783,11,1.0,2,1.7318947315216064,284,0.0,3 +77784,11,0.0,2,1.2269010543823242,285,1.0,3 +77785,11,0.0,2,1.1259008646011353,286,1.0,3 +77786,11,0.0,2,1.4298985004425049,287,1.0,3 +77787,11,0.0,2,1.1529009342193604,288,0.0,3 +77788,11,1.0,2,1.2209010124206543,289,1.0,3 +77789,11,1.0,2,1.0989007949829102,290,1.0,3 +77790,11,1.0,2,1.8758928775787354,291,1.0,3 +77791,11,1.0,2,1.2239010334014893,292,0.0,3 +77792,11,0.0,2,1.0609006881713867,293,0.0,3 +77793,11,0.0,2,1.1179008483886719,294,1.0,3 +77794,11,0.0,2,1.1939010620117188,295,1.0,3 +77795,11,0.0,2,1.7188948392868042,296,0.0,3 +77796,11,0.0,2,1.2099010944366455,297,1.0,3 +77797,11,0.0,2,1.3388997316360474,298,1.0,3 +77798,11,0.0,2,1.818893551826477,299,0.0,3 +77799,11,0.0,2,1.6918952465057373,300,1.0,3 +77800,11,0.0,2,1.0859007835388184,301,0.0,3 +77801,11,0.0,2,1.8728928565979004,302,0.0,3 +77802,11,1.0,2,2.196901559829712,303,1.0,3 +77803,11,1.0,2,1.5128974914550781,304,0.0,3 +77804,11,0.0,2,1.3158999681472778,305,1.0,3 +77805,11,0.0,2,1.1319009065628052,306,1.0,3 +77806,11,0.0,2,1.3418996334075928,307,0.0,3 +77807,11,0.0,2,1.421898603439331,308,1.0,3 +77808,11,0.0,2,1.5748966932296753,309,1.0,3 +77809,11,0.0,2,1.2189010381698608,310,1.0,3 +77810,11,0.0,2,1.9048924446105957,311,1.0,3 +77811,11,0.0,2,1.3158999681472778,312,1.0,3 +77812,11,0.0,2,1.1349009275436401,313,1.0,3 +77813,11,0.0,2,1.6838953495025635,314,1.0,3 +77814,11,0.0,2,1.3218998908996582,315,1.0,3 +77815,11,0.0,2,1.1999009847640991,316,0.0,3 +77816,11,0.0,2,1.748894453048706,317,1.0,3 +77817,11,0.0,2,1.3678992986679077,318,0.0,3 +77818,11,1.0,2,2.1268982887268066,319,1.0,3 +77819,11,1.0,2,1.4198986291885376,320,1.0,3 +77820,11,1.0,2,1.3099000453948975,321,1.0,3 +77821,11,0.0,2,1.800893783569336,322,0.0,3 +77822,11,1.0,2,1.144900918006897,323,0.0,3 +77823,11,0.0,2,1.887892723083496,324,0.0,3 +77824,11,1.0,2,1.6468957662582397,325,0.0,3 +77825,11,1.0,2,2.3149070739746094,326,0.0,3 +77826,11,1.0,2,1.1989010572433472,327,0.0,3 +77827,11,0.0,2,1.4268985986709595,328,1.0,3 +77828,11,0.0,2,1.141900897026062,329,0.0,3 +77829,11,1.0,2,1.135900855064392,330,1.0,3 +77830,11,1.0,2,1.3238998651504517,331,1.0,3 +77831,11,1.0,2,1.8318934440612793,332,1.0,3 +77832,11,1.0,2,1.7288947105407715,333,1.0,3 +77833,11,1.0,2,1.564896821975708,334,1.0,3 +77834,11,1.0,2,1.4078987836837769,335,0.0,3 +77835,11,1.0,2,1.8718929290771484,336,1.0,3 +77836,11,0.0,2,1.2079010009765625,337,1.0,3 +77837,11,0.0,2,1.2559007406234741,338,0.0,3 +77838,11,1.0,2,1.3568994998931885,339,0.0,3 +77839,11,0.0,2,1.7638943195343018,340,1.0,3 +77840,11,0.0,2,1.1029008626937866,341,0.0,3 +77841,11,0.0,2,1.962891697883606,342,0.0,3 +77842,11,1.0,2,2.5739192962646484,343,1.0,3 +77843,11,1.0,2,1.3468996286392212,344,0.0,3 +77844,11,0.0,2,1.406898856163025,345,0.0,3 +77845,11,1.0,2,1.990891933441162,346,1.0,3 +77846,11,1.0,2,2.149899482727051,347,0.0,3 +77847,11,1.0,2,1.6018962860107422,348,0.0,3 +77848,11,1.0,2,1.6668955087661743,349,1.0,3 +77849,11,1.0,2,1.472898006439209,350,0.0,3 +77850,11,0.0,2,1.2219010591506958,351,0.0,3 +77851,11,1.0,2,1.259900689125061,352,1.0,3 +77852,11,1.0,2,1.3788992166519165,353,1.0,3 +77853,11,1.0,2,1.6478958129882812,354,1.0,3 +77854,11,1.0,2,1.3138999938964844,355,1.0,3 +77855,11,1.0,2,1.3958989381790161,356,1.0,3 +77856,11,1.0,2,1.3258998394012451,357,1.0,3 +77857,11,1.0,2,1.8618929386138916,358,1.0,3 +77858,11,1.0,2,1.3099000453948975,359,1.0,3 +77859,11,1.0,2,1.4888978004455566,360,1.0,3 +77860,11,1.0,2,2.3399081230163574,361,0.0,3 +77861,11,1.0,2,2.1198978424072266,362,1.0,3 +77862,11,1.0,2,1.7798941135406494,363,0.0,3 +77863,11,1.0,2,1.2689006328582764,364,1.0,3 +77864,11,1.0,2,1.1349009275436401,365,0.0,3 +77865,11,0.0,2,1.138900876045227,366,0.0,3 +77866,11,1.0,2,1.54289710521698,367,0.0,3 +77867,11,0.0,2,2.008892774581909,368,1.0,3 +77868,11,0.0,2,1.2299010753631592,369,1.0,3 +77869,11,0.0,2,1.465898036956787,370,1.0,3 +77870,11,0.0,2,1.1269009113311768,371,0.0,3 +77871,11,0.0,2,1.2349010705947876,372,0.0,3 +77872,11,0.0,2,1.1289008855819702,373,0.0,3 +77873,11,0.0,2,1.795893907546997,374,0.0,3 +77874,11,0.0,2,1.4458982944488525,375,1.0,3 +77875,11,0.0,2,1.141900897026062,376,1.0,3 +77876,11,0.0,2,1.5298972129821777,377,1.0,3 +77877,11,0.0,2,1.1259008646011353,378,1.0,3 +77878,11,0.0,2,1.2739005088806152,379,0.0,3 +77879,11,1.0,2,1.7678942680358887,380,0.0,3 +77880,11,1.0,2,1.568896770477295,381,0.0,3 +77881,11,0.0,2,1.8068937063217163,382,0.0,3 +77882,11,1.0,2,1.615896224975586,383,1.0,3 +77883,11,1.0,2,1.4148987531661987,384,0.0,3 +77884,11,0.0,2,1.4088988304138184,385,1.0,3 +77885,11,0.0,2,1.0899008512496948,386,0.0,3 +77886,11,0.0,2,1.303900122642517,387,1.0,3 +77887,11,0.0,2,1.5578968524932861,388,1.0,3 +77888,11,0.0,2,1.2069010734558105,389,0.0,3 +77889,11,0.0,2,1.3668993711471558,390,0.0,3 +77890,11,0.0,2,1.7878940105438232,391,0.0,3 +77891,11,1.0,2,1.3968989849090576,392,1.0,3 +77892,11,1.0,2,1.2719005346298218,393,1.0,3 +77893,11,1.0,2,1.2169010639190674,394,1.0,3 +77894,11,1.0,2,1.3059000968933105,395,1.0,3 +77895,11,0.0,2,1.3618993759155273,396,0.0,3 +77896,11,0.0,2,1.35189950466156,397,1.0,3 +77897,11,1.0,2,1.3438996076583862,398,0.0,3 +77898,11,0.0,2,1.329899787902832,399,0.0,3 +77899,11,1.0,2,1.4838979244232178,400,0.0,3 +77900,11,1.0,2,1.4398983716964722,401,1.0,3 +77901,11,1.0,2,1.2709006071090698,402,0.0,3 +77902,11,0.0,2,1.3758991956710815,403,1.0,3 +77903,11,0.0,2,1.24190092086792,404,1.0,3 +77904,11,0.0,2,1.4108988046646118,405,0.0,3 +77905,11,1.0,2,1.8168935775756836,406,0.0,3 +77906,11,1.0,2,1.9268921613693237,407,1.0,3 +77907,11,1.0,2,1.2039010524749756,408,0.0,3 +77908,11,1.0,2,1.24190092086792,409,0.0,3 +77909,11,0.0,2,2.0918965339660645,410,1.0,3 +77910,11,0.0,2,1.2049009799957275,411,0.0,3 +77911,11,0.0,2,1.5248973369598389,412,0.0,3 +77912,11,1.0,2,1.6278960704803467,413,1.0,3 +77913,11,1.0,2,1.2079010009765625,414,0.0,3 +77914,11,1.0,2,1.4018988609313965,415,1.0,3 +77915,11,1.0,2,1.4138987064361572,416,1.0,3 +77916,11,1.0,2,1.289900302886963,417,0.0,3 +77917,11,0.0,2,2.1308984756469727,418,1.0,3 +77918,11,0.0,2,1.701894998550415,419,0.0,3 +77919,11,0.0,2,1.8318934440612793,420,0.0,3 +77920,11,1.0,2,1.171900987625122,421,1.0,3 +77921,11,1.0,2,1.8178935050964355,422,1.0,3 +77922,11,1.0,2,1.4598981142044067,423,0.0,3 +77923,11,0.0,2,1.1859010457992554,424,0.0,3 +77924,11,1.0,2,1.847893238067627,425,1.0,3 +77925,11,1.0,2,1.2049009799957275,426,0.0,3 +77926,11,1.0,2,1.7028950452804565,427,0.0,3 +77927,11,0.0,2,1.1559009552001953,428,0.0,3 +77928,11,0.0,2,1.259900689125061,429,1.0,3 +77929,11,0.0,2,1.32889986038208,430,0.0,3 +77930,11,0.0,2,1.3358997106552124,431,1.0,3 +77931,11,0.0,2,1.7768940925598145,432,1.0,3 +77932,11,0.0,2,1.5358972549438477,433,1.0,3 +77933,11,0.0,2,1.1529009342193604,434,0.0,3 +77934,11,0.0,2,1.2099010944366455,435,1.0,3 +77935,11,0.0,2,1.1799010038375854,436,0.0,3 +77936,11,1.0,2,1.6218960285186768,437,1.0,3 +77937,11,1.0,2,1.7758941650390625,438,1.0,3 +77938,11,0.0,2,1.1399009227752686,439,0.0,3 +77939,11,1.0,2,1.233901023864746,440,1.0,3 +77940,11,1.0,2,1.3468996286392212,441,1.0,3 +77941,11,1.0,2,1.5808966159820557,442,0.0,3 +77942,11,0.0,2,1.5268973112106323,443,1.0,3 +77943,11,0.0,2,1.2289011478424072,444,1.0,3 +77944,11,0.0,2,1.0699007511138916,445,0.0,3 +77945,11,1.0,2,1.137900948524475,446,1.0,3 +77946,11,0.0,2,1.150900959968567,447,1.0,3 +77947,11,0.0,2,2.0178933143615723,448,0.0,3 +77948,11,1.0,2,1.661895513534546,449,0.0,3 +77949,11,0.0,2,1.2609007358551025,450,0.0,3 +77950,11,0.0,2,1.521897315979004,451,0.0,3 +77951,11,0.0,2,1.2159010171890259,452,1.0,3 +77952,11,0.0,2,1.4978976249694824,453,1.0,3 +77953,11,0.0,2,1.747894525527954,454,1.0,3 +77954,11,0.0,2,1.2019010782241821,455,0.0,3 +77955,11,1.0,2,1.984891653060913,456,0.0,3 +77956,11,1.0,2,1.3898990154266357,457,0.0,3 +77957,11,1.0,2,1.6418957710266113,458,0.0,3 +77958,11,1.0,2,1.778894066810608,459,0.0,3 +77959,11,0.0,2,1.4578981399536133,460,1.0,3 +77960,11,0.0,2,1.181900978088379,461,1.0,3 +77961,11,0.0,2,1.3308998346328735,462,0.0,3 +77962,11,1.0,2,1.8198935985565186,463,1.0,3 +77963,11,1.0,2,1.3009002208709717,464,1.0,3 +77964,11,0.0,2,1.3428996801376343,465,0.0,3 +77965,11,1.0,2,1.3598994016647339,466,1.0,3 +77966,11,1.0,2,1.425898551940918,467,1.0,3 +77967,11,1.0,2,1.2269010543823242,468,1.0,3 +77968,11,1.0,2,1.4848978519439697,469,0.0,3 +77969,11,1.0,2,1.3478995561599731,470,0.0,3 +77970,11,1.0,2,1.4678980112075806,471,0.0,3 +77971,11,0.0,2,1.2949002981185913,472,0.0,3 +77972,11,1.0,2,1.1599009037017822,473,1.0,3 +77973,11,1.0,2,1.3398996591567993,474,1.0,3 +77974,11,1.0,2,1.4608981609344482,475,0.0,3 +77975,11,1.0,2,1.5988963842391968,476,0.0,3 +77976,11,0.0,2,1.8698928356170654,477,0.0,3 +77977,11,1.0,2,1.237900972366333,478,0.0,3 +77978,11,1.0,2,1.7278947830200195,479,1.0,3 +77979,11,0.0,2,1.0979008674621582,480,1.0,3 +77980,11,0.0,2,1.214901089668274,481,0.0,3 +77981,11,1.0,2,1.7178947925567627,482,1.0,3 +77982,11,1.0,2,1.2459008693695068,483,1.0,3 +77983,11,1.0,2,1.451898217201233,484,0.0,3 +77984,11,0.0,2,1.2209010124206543,485,0.0,3 +77985,11,0.0,2,1.5788966417312622,486,1.0,3 +77986,11,0.0,2,1.1519008874893188,487,0.0,3 +77987,11,0.0,2,1.5918965339660645,488,0.0,3 +77988,11,1.0,2,1.1959010362625122,489,0.0,3 +77989,11,1.0,2,1.660895586013794,490,1.0,3 +77990,11,1.0,2,1.172900915145874,491,0.0,3 +77991,11,0.0,2,1.1899009943008423,492,1.0,3 +77992,11,0.0,2,1.3308998346328735,493,0.0,3 +77993,11,0.0,2,1.2569007873535156,494,0.0,3 +77994,11,0.0,2,2.001892566680908,495,1.0,3 +77995,11,0.0,2,1.144900918006897,496,1.0,3 +77996,11,0.0,2,1.2219010591506958,497,0.0,3 +77997,11,0.0,2,1.4008989334106445,498,0.0,3 +77998,11,0.0,2,1.6208961009979248,499,0.0,3 +77999,11,1.0,2,1.4818978309631348,500,0.0,3 +78000,12,0.0,0,1.7281410694122314,1,0.0,3 +78001,12,0.0,0,1.7841403484344482,2,0.0,3 +78002,12,1.0,0,1.604142665863037,3,0.0,3 +78003,12,0.0,0,1.399145245552063,4,1.0,3 +78004,12,0.0,0,1.4301449060440063,5,0.0,3 +78005,12,1.0,0,1.5871429443359375,6,1.0,3 +78006,12,1.0,0,1.6241424083709717,7,1.0,3 +78007,12,1.0,0,1.245146632194519,8,1.0,3 +78008,12,1.0,0,1.5921428203582764,9,1.0,3 +78009,12,1.0,0,1.4441447257995605,10,0.0,3 +78010,12,0.0,0,1.2501466274261475,11,1.0,3 +78011,12,0.0,0,1.3431459665298462,12,0.0,3 +78012,12,0.0,0,1.2901467084884644,13,0.0,3 +78013,12,1.0,0,2.338151454925537,14,1.0,3 +78014,12,1.0,0,1.3221462965011597,15,1.0,3 +78015,12,1.0,0,1.3231462240219116,16,0.0,3 +78016,12,0.0,0,1.3081464767456055,17,0.0,3 +78017,12,0.0,0,1.347145915031433,18,0.0,3 +78018,12,1.0,0,1.4801442623138428,19,1.0,3 +78019,12,1.0,0,1.2691466808319092,20,1.0,3 +78020,12,1.0,0,1.7771403789520264,21,0.0,3 +78021,12,1.0,0,1.3171463012695312,22,1.0,3 +78022,12,1.0,0,1.5031439065933228,23,0.0,3 +78023,12,1.0,0,1.3531458377838135,24,1.0,3 +78024,12,1.0,0,1.8191399574279785,25,1.0,3 +78025,12,1.0,0,1.3961453437805176,26,1.0,3 +78026,12,1.0,0,1.7851402759552002,27,1.0,3 +78027,12,1.0,0,1.7201411724090576,28,1.0,3 +78028,12,1.0,0,1.6311423778533936,29,1.0,3 +78029,12,1.0,0,1.1971465349197388,30,1.0,3 +78030,12,1.0,0,1.358145833015442,31,1.0,3 +78031,12,1.0,0,1.487144112586975,32,0.0,3 +78032,12,0.0,0,1.7061413526535034,33,0.0,3 +78033,12,1.0,0,1.7631406784057617,34,1.0,3 +78034,12,1.0,0,1.307146430015564,35,1.0,3 +78035,12,1.0,0,1.5071438550949097,36,1.0,3 +78036,12,0.0,0,1.2691466808319092,37,0.0,3 +78037,12,1.0,0,1.4091451168060303,38,0.0,3 +78038,12,1.0,0,1.634142279624939,39,1.0,3 +78039,12,0.0,0,1.590142846107483,40,1.0,3 +78040,12,1.0,0,1.608142614364624,41,0.0,3 +78041,12,0.0,0,1.6311423778533936,42,0.0,3 +78042,12,1.0,0,1.4441447257995605,43,1.0,3 +78043,12,1.0,0,1.7271411418914795,44,1.0,3 +78044,12,1.0,0,1.674141764640808,45,1.0,3 +78045,12,1.0,0,1.3571457862854004,46,0.0,3 +78046,12,0.0,0,1.4671443700790405,47,0.0,3 +78047,12,0.0,0,1.325146198272705,48,0.0,3 +78048,12,0.0,0,2.323150634765625,49,0.0,3 +78049,12,0.0,0,1.697141408920288,50,0.0,3 +78050,12,0.0,0,1.1921465396881104,51,0.0,3 +78051,12,0.0,0,1.1661465167999268,52,0.0,3 +78052,12,1.0,0,1.841139554977417,53,1.0,3 +78053,12,1.0,0,1.2621467113494873,54,1.0,3 +78054,12,1.0,0,1.5061439275741577,55,1.0,3 +78055,12,1.0,0,1.2761467695236206,56,1.0,3 +78056,12,1.0,0,1.3631457090377808,57,0.0,3 +78057,12,0.0,0,1.979137897491455,58,0.0,3 +78058,12,1.0,0,1.377145528793335,59,1.0,3 +78059,12,1.0,0,1.3371460437774658,60,1.0,3 +78060,12,1.0,0,1.1571464538574219,61,1.0,3 +78061,12,1.0,0,1.613142490386963,62,1.0,3 +78062,12,1.0,0,1.2611466646194458,63,1.0,3 +78063,12,1.0,0,1.491144061088562,64,1.0,3 +78064,12,1.0,0,2.09414005279541,65,1.0,3 +78065,12,1.0,0,1.3901454210281372,66,1.0,3 +78066,12,1.0,0,1.6501420736312866,67,1.0,3 +78067,12,1.0,0,1.303146481513977,68,1.0,3 +78068,12,1.0,0,1.372145652770996,69,1.0,3 +78069,12,1.0,0,1.2641466856002808,70,1.0,3 +78070,12,1.0,0,1.282146692276001,71,1.0,3 +78071,12,1.0,0,1.4481446743011475,72,1.0,3 +78072,12,1.0,0,1.251146674156189,73,1.0,3 +78073,12,1.0,0,1.5811429023742676,74,0.0,3 +78074,12,1.0,0,1.7621406316757202,75,1.0,3 +78075,12,1.0,0,1.3841454982757568,76,1.0,3 +78076,12,1.0,0,1.2941466569900513,77,0.0,3 +78077,12,1.0,0,1.5491433143615723,78,1.0,3 +78078,12,1.0,0,1.247146725654602,79,1.0,3 +78079,12,1.0,0,1.4181450605392456,80,1.0,3 +78080,12,1.0,0,1.3121464252471924,81,0.0,3 +78081,12,1.0,0,1.86613929271698,82,0.0,3 +78082,12,0.0,0,1.6831417083740234,83,0.0,3 +78083,12,1.0,0,1.4771442413330078,84,1.0,3 +78084,12,1.0,0,1.910138726234436,85,1.0,3 +78085,12,1.0,0,2.0001375675201416,86,1.0,3 +78086,12,1.0,0,1.4671443700790405,87,1.0,3 +78087,12,1.0,0,1.3861454725265503,88,1.0,3 +78088,12,1.0,0,1.6381422281265259,89,1.0,3 +78089,12,1.0,0,1.3231462240219116,90,1.0,3 +78090,12,1.0,0,1.3521459102630615,91,1.0,3 +78091,12,1.0,0,1.3481459617614746,92,1.0,3 +78092,12,1.0,0,1.5511434078216553,93,1.0,3 +78093,12,1.0,0,1.8081400394439697,94,0.0,3 +78094,12,0.0,0,1.3051464557647705,95,0.0,3 +78095,12,1.0,0,1.884139060974121,96,1.0,3 +78096,12,1.0,0,1.1851465702056885,97,1.0,3 +78097,12,1.0,0,1.3311461210250854,98,1.0,3 +78098,12,1.0,0,1.1981465816497803,99,1.0,3 +78099,12,1.0,0,1.3491458892822266,100,1.0,3 +78100,12,1.0,0,1.3701456785202026,101,0.0,3 +78101,12,0.0,0,1.3531458377838135,102,0.0,3 +78102,12,1.0,0,2.1611430644989014,103,1.0,3 +78103,12,1.0,0,1.4161450862884521,104,1.0,3 +78104,12,1.0,0,1.446144700050354,105,0.0,3 +78105,12,1.0,0,1.9421383142471313,106,1.0,3 +78106,12,1.0,0,1.4571444988250732,107,1.0,3 +78107,12,1.0,0,1.8131399154663086,108,1.0,3 +78108,12,1.0,0,1.6541420221328735,109,1.0,3 +78109,12,1.0,0,1.302146553993225,110,1.0,3 +78110,12,0.0,0,1.2901467084884644,111,0.0,3 +78111,12,1.0,0,1.722141146659851,112,1.0,3 +78112,12,1.0,0,1.2961466312408447,113,1.0,3 +78113,12,1.0,0,1.3211462497711182,114,1.0,3 +78114,12,1.0,0,1.446144700050354,115,1.0,3 +78115,12,1.0,0,1.1621465682983398,116,1.0,3 +78116,12,1.0,0,2.1591429710388184,117,1.0,3 +78117,12,1.0,0,1.3211462497711182,118,0.0,3 +78118,12,1.0,0,1.5181437730789185,119,1.0,3 +78119,12,1.0,0,1.2161465883255005,120,1.0,3 +78120,12,1.0,0,1.3821455240249634,121,1.0,3 +78121,12,1.0,0,1.3191462755203247,122,1.0,3 +78122,12,1.0,0,1.2731467485427856,123,1.0,3 +78123,12,1.0,0,1.7631406784057617,124,1.0,3 +78124,12,1.0,0,1.4161450862884521,125,1.0,3 +78125,12,1.0,0,1.660141944885254,126,1.0,3 +78126,12,1.0,0,1.2531466484069824,127,1.0,3 +78127,12,1.0,0,1.2651467323303223,128,1.0,3 +78128,12,1.0,0,1.4071451425552368,129,1.0,3 +78129,12,1.0,0,1.4351447820663452,130,1.0,3 +78130,12,1.0,0,1.3431459665298462,131,1.0,3 +78131,12,1.0,0,1.3001465797424316,132,1.0,3 +78132,12,1.0,0,1.5841429233551025,133,1.0,3 +78133,12,1.0,0,1.9031388759613037,134,1.0,3 +78134,12,1.0,0,1.613142490386963,135,1.0,3 +78135,12,1.0,0,1.18014657497406,136,1.0,3 +78136,12,1.0,0,2.1181411743164062,137,0.0,3 +78137,12,0.0,0,1.214146614074707,138,0.0,3 +78138,12,0.0,0,1.9601380825042725,139,0.0,3 +78139,12,1.0,0,1.9861377477645874,140,0.0,3 +78140,12,0.0,0,1.4191449880599976,141,0.0,3 +78141,12,0.0,0,1.6031427383422852,142,0.0,3 +78142,12,1.0,0,1.9421383142471313,143,1.0,3 +78143,12,1.0,0,1.7621406316757202,144,1.0,3 +78144,12,1.0,0,1.6831417083740234,145,1.0,3 +78145,12,1.0,0,1.793140172958374,146,1.0,3 +78146,12,1.0,0,1.4011452198028564,147,1.0,3 +78147,12,1.0,0,1.4261449575424194,148,0.0,3 +78148,12,0.0,0,2.302149772644043,149,1.0,3 +78149,12,0.0,0,1.5691430568695068,150,0.0,3 +78150,12,0.0,0,1.604142665863037,151,0.0,3 +78151,12,1.0,0,1.7531406879425049,152,1.0,3 +78152,12,1.0,0,1.81413996219635,153,0.0,3 +78153,12,0.0,0,1.2401466369628906,154,1.0,3 +78154,12,0.0,0,1.6731417179107666,155,0.0,3 +78155,12,1.0,0,2.043137550354004,156,1.0,3 +78156,12,1.0,0,1.487144112586975,157,1.0,3 +78157,12,1.0,0,1.4181450605392456,158,0.0,3 +78158,12,1.0,0,1.7751405239105225,159,1.0,3 +78159,12,1.0,0,1.5181437730789185,160,1.0,3 +78160,12,1.0,0,1.6281423568725586,161,1.0,3 +78161,12,1.0,0,1.2581467628479004,162,1.0,3 +78162,12,1.0,0,1.4361448287963867,163,1.0,3 +78163,12,1.0,0,2.1581430435180664,164,0.0,3 +78164,12,0.0,0,1.4101451635360718,165,0.0,3 +78165,12,1.0,0,1.3901454210281372,166,1.0,3 +78166,12,1.0,0,1.5621432065963745,167,1.0,3 +78167,12,1.0,0,1.2371466159820557,168,1.0,3 +78168,12,0.0,0,1.4191449880599976,169,0.0,3 +78169,12,1.0,0,1.7461408376693726,170,1.0,3 +78170,12,1.0,0,1.4751442670822144,171,1.0,3 +78171,12,1.0,0,1.288146734237671,172,1.0,3 +78172,12,1.0,0,1.2611466646194458,173,1.0,3 +78173,12,1.0,0,1.657141923904419,174,1.0,3 +78174,12,1.0,0,1.4361448287963867,175,0.0,3 +78175,12,1.0,0,1.795140266418457,176,1.0,3 +78176,12,1.0,0,1.6181424856185913,177,1.0,3 +78177,12,1.0,0,1.6221424341201782,178,1.0,3 +78178,12,1.0,0,1.4541445970535278,179,0.0,3 +78179,12,0.0,0,1.3201463222503662,180,0.0,3 +78180,12,0.0,0,1.682141661643982,181,0.0,3 +78181,12,1.0,0,1.796140193939209,182,1.0,3 +78182,12,1.0,0,1.5301436185836792,183,1.0,3 +78183,12,1.0,0,1.306146502494812,184,1.0,3 +78184,12,0.0,0,1.3961453437805176,185,0.0,3 +78185,12,1.0,0,1.3161463737487793,186,1.0,3 +78186,12,1.0,0,1.4441447257995605,187,1.0,3 +78187,12,1.0,0,1.5021439790725708,188,1.0,3 +78188,12,1.0,0,1.4361448287963867,189,1.0,3 +78189,12,1.0,0,1.3221462965011597,190,1.0,3 +78190,12,1.0,0,1.6851415634155273,191,1.0,3 +78191,12,1.0,0,1.468144416809082,192,1.0,3 +78192,12,1.0,0,1.2691466808319092,193,1.0,3 +78193,12,1.0,0,1.5951428413391113,194,1.0,3 +78194,12,1.0,0,1.424144983291626,195,1.0,3 +78195,12,1.0,0,1.3421460390090942,196,1.0,3 +78196,12,1.0,0,1.49014413356781,197,1.0,3 +78197,12,1.0,0,1.2401466369628906,198,1.0,3 +78198,12,1.0,0,1.443144679069519,199,0.0,3 +78199,12,0.0,0,1.2161465883255005,200,0.0,3 +78200,12,0.0,0,1.154146432876587,201,0.0,3 +78201,12,0.0,0,2.048137664794922,202,0.0,3 +78202,12,1.0,0,1.6421421766281128,203,1.0,3 +78203,12,1.0,0,1.4381448030471802,204,1.0,3 +78204,12,1.0,0,1.567143201828003,205,1.0,3 +78205,12,1.0,0,1.4221450090408325,206,1.0,3 +78206,12,1.0,0,1.1821465492248535,207,0.0,3 +78207,12,0.0,0,1.6921415328979492,208,0.0,3 +78208,12,0.0,0,1.586142897605896,209,0.0,3 +78209,12,0.0,0,1.6501420736312866,210,0.0,3 +78210,12,1.0,0,1.6061426401138306,211,1.0,3 +78211,12,1.0,0,1.5401434898376465,212,1.0,3 +78212,12,1.0,0,1.657141923904419,213,0.0,3 +78213,12,0.0,0,1.399145245552063,214,0.0,3 +78214,12,0.0,0,1.8061400651931763,215,0.0,3 +78215,12,0.0,0,1.2491466999053955,216,0.0,3 +78216,12,0.0,0,1.2421467304229736,217,0.0,3 +78217,12,0.0,0,1.8191399574279785,218,0.0,3 +78218,12,1.0,0,1.494144082069397,219,1.0,3 +78219,12,1.0,0,1.6171424388885498,220,1.0,3 +78220,12,1.0,0,1.5831429958343506,221,1.0,3 +78221,12,1.0,0,1.2801467180252075,222,0.0,3 +78222,12,0.0,0,1.86613929271698,223,0.0,3 +78223,12,0.0,0,1.870139241218567,224,0.0,3 +78224,12,0.0,0,1.278146743774414,225,0.0,3 +78225,12,1.0,0,1.2801467180252075,226,0.0,3 +78226,12,0.0,0,1.282146692276001,227,0.0,3 +78227,12,1.0,0,1.4291448593139648,228,1.0,3 +78228,12,1.0,0,1.4331448078155518,229,0.0,3 +78229,12,0.0,0,1.8531394004821777,230,0.0,3 +78230,12,1.0,0,1.8301397562026978,231,0.0,3 +78231,12,0.0,0,1.8651392459869385,232,1.0,3 +78232,12,0.0,0,1.150146484375,233,0.0,3 +78233,12,0.0,0,1.4631444215774536,234,0.0,3 +78234,12,1.0,0,1.5461434125900269,235,1.0,3 +78235,12,1.0,0,1.2891466617584229,236,1.0,3 +78236,12,1.0,0,1.447144627571106,237,1.0,3 +78237,12,1.0,0,1.6771416664123535,238,1.0,3 +78238,12,1.0,0,1.8011400699615479,239,0.0,3 +78239,12,1.0,0,1.5471434593200684,240,1.0,3 +78240,12,1.0,0,1.3601458072662354,241,1.0,3 +78241,12,1.0,0,1.2661466598510742,242,1.0,3 +78242,12,1.0,0,1.4271448850631714,243,1.0,3 +78243,12,1.0,0,1.4221450090408325,244,1.0,3 +78244,12,1.0,0,1.2251466512680054,245,1.0,3 +78245,12,1.0,0,1.6621419191360474,246,0.0,3 +78246,12,0.0,0,1.744140863418579,247,0.0,3 +78247,12,1.0,0,2.08013916015625,248,1.0,3 +78248,12,1.0,0,1.187146544456482,249,1.0,3 +78249,12,1.0,0,1.3961453437805176,250,1.0,3 +78250,12,1.0,0,1.605142593383789,251,1.0,3 +78251,12,1.0,0,1.5371434688568115,252,1.0,3 +78252,12,1.0,0,1.4571444988250732,253,0.0,3 +78253,12,0.0,0,1.9961376190185547,254,0.0,3 +78254,12,1.0,0,1.6691417694091797,255,1.0,3 +78255,12,1.0,0,1.4331448078155518,256,1.0,3 +78256,12,1.0,0,1.56514310836792,257,1.0,3 +78257,12,1.0,0,1.491144061088562,258,1.0,3 +78258,12,0.0,0,1.7241411209106445,259,0.0,3 +78259,12,1.0,0,1.2911466360092163,260,1.0,3 +78260,12,0.0,0,1.517143726348877,261,0.0,3 +78261,12,1.0,0,1.4891440868377686,262,1.0,3 +78262,12,1.0,0,1.1721465587615967,263,1.0,3 +78263,12,1.0,0,1.285146713256836,264,1.0,3 +78264,12,1.0,0,1.3461459875106812,265,1.0,3 +78265,12,1.0,0,1.1941466331481934,266,1.0,3 +78266,12,1.0,0,1.5981427431106567,267,0.0,3 +78267,12,0.0,0,1.6231424808502197,268,0.0,3 +78268,12,0.0,0,2.322150707244873,269,1.0,3 +78269,12,0.0,0,1.3871454000473022,270,0.0,3 +78270,12,1.0,0,1.3831454515457153,271,1.0,3 +78271,12,0.0,0,2.368152618408203,272,0.0,3 +78272,12,1.0,0,1.4881441593170166,273,1.0,3 +78273,12,1.0,0,1.3221462965011597,274,1.0,3 +78274,12,1.0,0,1.333146095275879,275,1.0,3 +78275,12,1.0,0,1.469144344329834,276,1.0,3 +78276,12,1.0,0,1.1321464776992798,277,1.0,3 +78277,12,1.0,0,1.9421383142471313,278,1.0,3 +78278,12,1.0,0,1.2831467390060425,279,1.0,3 +78279,12,1.0,0,1.7371408939361572,280,0.0,3 +78280,12,0.0,0,1.4191449880599976,281,0.0,3 +78281,12,1.0,0,1.5221437215805054,282,1.0,3 +78282,12,1.0,0,1.5711431503295898,283,1.0,3 +78283,12,1.0,0,1.6421421766281128,284,0.0,3 +78284,12,0.0,0,1.395145297050476,285,0.0,3 +78285,12,0.0,0,1.254146695137024,286,1.0,3 +78286,12,0.0,0,1.223146677017212,287,0.0,3 +78287,12,0.0,0,1.329146146774292,288,0.0,3 +78288,12,0.0,0,1.4041452407836914,289,0.0,3 +78289,12,0.0,0,1.7271411418914795,290,0.0,3 +78290,12,0.0,0,1.937138319015503,291,1.0,3 +78291,12,0.0,0,1.4521446228027344,292,0.0,3 +78292,12,0.0,0,1.3051464557647705,293,0.0,3 +78293,12,1.0,0,1.3231462240219116,294,1.0,3 +78294,12,1.0,0,1.5331435203552246,295,1.0,3 +78295,12,1.0,0,1.1491464376449585,296,1.0,3 +78296,12,1.0,0,1.2631467580795288,297,1.0,3 +78297,12,1.0,0,1.3191462755203247,298,1.0,3 +78298,12,1.0,0,1.6691417694091797,299,1.0,3 +78299,12,1.0,0,1.567143201828003,300,1.0,3 +78300,12,1.0,0,1.5301436185836792,301,1.0,3 +78301,12,1.0,0,1.5061439275741577,302,1.0,3 +78302,12,1.0,0,1.223146677017212,303,0.0,3 +78303,12,1.0,0,1.5231436491012573,304,1.0,3 +78304,12,1.0,0,1.4771442413330078,305,1.0,3 +78305,12,1.0,0,1.3971452713012695,306,1.0,3 +78306,12,1.0,0,1.5741430521011353,307,1.0,3 +78307,12,1.0,0,1.3831454515457153,308,1.0,3 +78308,12,0.0,0,1.9611380100250244,309,0.0,3 +78309,12,1.0,0,1.5071438550949097,310,1.0,3 +78310,12,1.0,0,2.091139793395996,311,1.0,3 +78311,12,1.0,0,1.3851454257965088,312,1.0,3 +78312,12,1.0,0,1.6701418161392212,313,0.0,3 +78313,12,0.0,0,1.3141463994979858,314,0.0,3 +78314,12,0.0,0,1.5731430053710938,315,0.0,3 +78315,12,1.0,0,1.5101438760757446,316,1.0,3 +78316,12,1.0,0,1.700141429901123,317,1.0,3 +78317,12,1.0,0,1.4061452150344849,318,0.0,3 +78318,12,1.0,0,1.4161450862884521,319,1.0,3 +78319,12,1.0,0,1.3601458072662354,320,1.0,3 +78320,12,1.0,0,1.6491420269012451,321,1.0,3 +78321,12,1.0,0,1.472144365310669,322,1.0,3 +78322,12,1.0,0,1.5621432065963745,323,1.0,3 +78323,12,1.0,0,1.285146713256836,324,1.0,3 +78324,12,1.0,0,1.4081451892852783,325,1.0,3 +78325,12,1.0,0,1.2501466274261475,326,1.0,3 +78326,12,1.0,0,1.3311461210250854,327,1.0,3 +78327,12,1.0,0,1.3911453485488892,328,1.0,3 +78328,12,1.0,0,1.5431435108184814,329,1.0,3 +78329,12,1.0,0,1.2311466932296753,330,1.0,3 +78330,12,1.0,0,1.8751392364501953,331,1.0,3 +78331,12,1.0,0,1.5581432580947876,332,1.0,3 +78332,12,1.0,0,1.7561407089233398,333,1.0,3 +78333,12,1.0,0,1.4881441593170166,334,1.0,3 +78334,12,1.0,0,1.4091451168060303,335,1.0,3 +78335,12,1.0,0,1.3111463785171509,336,1.0,3 +78336,12,1.0,0,1.214146614074707,337,1.0,3 +78337,12,1.0,0,2.2011449337005615,338,1.0,3 +78338,12,1.0,0,1.443144679069519,339,1.0,3 +78339,12,1.0,0,1.615142583847046,340,1.0,3 +78340,12,1.0,0,1.7211410999298096,341,1.0,3 +78341,12,1.0,0,1.3561458587646484,342,1.0,3 +78342,12,1.0,0,1.4491446018218994,343,1.0,3 +78343,12,1.0,0,1.1891465187072754,344,1.0,3 +78344,12,1.0,0,1.2361466884613037,345,0.0,3 +78345,12,0.0,0,1.6981414556503296,346,0.0,3 +78346,12,1.0,0,1.6951415538787842,347,1.0,3 +78347,12,1.0,0,1.447144627571106,348,1.0,3 +78348,12,1.0,0,1.7371408939361572,349,1.0,3 +78349,12,1.0,0,1.469144344329834,350,1.0,3 +78350,12,1.0,0,1.7531406879425049,351,1.0,3 +78351,12,1.0,0,1.520143747329712,352,1.0,3 +78352,12,1.0,0,1.3411459922790527,353,1.0,3 +78353,12,1.0,0,1.6651418209075928,354,1.0,3 +78354,12,1.0,0,1.6761417388916016,355,1.0,3 +78355,12,1.0,0,1.612142562866211,356,1.0,3 +78356,12,1.0,0,1.220146656036377,357,1.0,3 +78357,12,1.0,0,1.2031465768814087,358,1.0,3 +78358,12,1.0,0,1.251146674156189,359,0.0,3 +78359,12,1.0,0,1.3881454467773438,360,1.0,3 +78360,12,1.0,0,1.3351460695266724,361,1.0,3 +78361,12,1.0,0,1.6631419658660889,362,1.0,3 +78362,12,1.0,0,1.8641393184661865,363,1.0,3 +78363,12,1.0,0,1.7771403789520264,364,1.0,3 +78364,12,1.0,0,1.183146595954895,365,1.0,3 +78365,12,1.0,0,1.4511445760726929,366,1.0,3 +78366,12,1.0,0,1.4041452407836914,367,1.0,3 +78367,12,1.0,0,1.7211410999298096,368,1.0,3 +78368,12,1.0,0,1.3171463012695312,369,1.0,3 +78369,12,1.0,0,1.3691456317901611,370,1.0,3 +78370,12,1.0,0,1.2251466512680054,371,0.0,3 +78371,12,1.0,0,1.6371421813964844,372,1.0,3 +78372,12,1.0,0,1.3691456317901611,373,1.0,3 +78373,12,1.0,0,1.8801391124725342,374,1.0,3 +78374,12,1.0,0,1.6641418933868408,375,1.0,3 +78375,12,1.0,0,1.4621444940567017,376,1.0,3 +78376,12,1.0,0,1.8961389064788818,377,1.0,3 +78377,12,1.0,0,1.443144679069519,378,0.0,3 +78378,12,1.0,0,1.5951428413391113,379,1.0,3 +78379,12,1.0,0,1.6721417903900146,380,1.0,3 +78380,12,1.0,0,1.2561466693878174,381,1.0,3 +78381,12,1.0,0,1.8351397514343262,382,1.0,3 +78382,12,1.0,0,1.5541433095932007,383,1.0,3 +78383,12,1.0,0,1.5021439790725708,384,1.0,3 +78384,12,1.0,0,1.3631457090377808,385,1.0,3 +78385,12,1.0,0,1.373145580291748,386,1.0,3 +78386,12,1.0,0,1.333146095275879,387,1.0,3 +78387,12,1.0,0,1.4071451425552368,388,0.0,3 +78388,12,1.0,0,1.5771429538726807,389,0.0,3 +78389,12,1.0,0,1.8821390867233276,390,1.0,3 +78390,12,1.0,0,1.9071388244628906,391,1.0,3 +78391,12,1.0,0,1.2531466484069824,392,1.0,3 +78392,12,1.0,0,1.8201398849487305,393,1.0,3 +78393,12,1.0,0,1.2791467905044556,394,1.0,3 +78394,12,1.0,0,1.5981427431106567,395,1.0,3 +78395,12,1.0,0,1.2891466617584229,396,0.0,3 +78396,12,1.0,0,1.4361448287963867,397,0.0,3 +78397,12,1.0,0,2.110140800476074,398,1.0,3 +78398,12,1.0,0,1.3521459102630615,399,0.0,3 +78399,12,0.0,0,1.682141661643982,400,0.0,3 +78400,12,1.0,0,1.303146481513977,401,1.0,3 +78401,12,0.0,0,1.6241424083709717,402,0.0,3 +78402,12,1.0,0,1.5241436958312988,403,1.0,3 +78403,12,1.0,0,1.3691456317901611,404,1.0,3 +78404,12,1.0,0,1.7131412029266357,405,1.0,3 +78405,12,1.0,0,1.6441421508789062,406,1.0,3 +78406,12,1.0,0,1.5301436185836792,407,0.0,3 +78407,12,1.0,0,1.2721467018127441,408,1.0,3 +78408,12,1.0,0,1.7091412544250488,409,1.0,3 +78409,12,1.0,0,1.6271424293518066,410,0.0,3 +78410,12,0.0,0,1.244146704673767,411,1.0,3 +78411,12,0.0,0,1.2951465845108032,412,0.0,3 +78412,12,1.0,0,1.2721467018127441,413,1.0,3 +78413,12,1.0,0,1.3691456317901611,414,1.0,3 +78414,12,1.0,0,1.5701431035995483,415,1.0,3 +78415,12,1.0,0,1.5461434125900269,416,1.0,3 +78416,12,1.0,0,1.774140477180481,417,1.0,3 +78417,12,1.0,0,2.377153158187866,418,1.0,3 +78418,12,1.0,0,1.3481459617614746,419,1.0,3 +78419,12,1.0,0,1.399145245552063,420,0.0,3 +78420,12,1.0,0,1.4641444683074951,421,1.0,3 +78421,12,1.0,0,1.4081451892852783,422,0.0,3 +78422,12,0.0,0,1.1991466283798218,423,1.0,3 +78423,12,0.0,0,1.5261436700820923,424,0.0,3 +78424,12,0.0,0,1.446144700050354,425,0.0,3 +78425,12,0.0,0,1.8251397609710693,426,0.0,3 +78426,12,0.0,0,1.2901467084884644,427,0.0,3 +78427,12,1.0,0,1.4611444473266602,428,1.0,3 +78428,12,1.0,0,1.822139859199524,429,1.0,3 +78429,12,1.0,0,1.3591457605361938,430,1.0,3 +78430,12,1.0,0,1.7611405849456787,431,0.0,3 +78431,12,1.0,0,1.4801442623138428,432,1.0,3 +78432,12,1.0,0,1.774140477180481,433,1.0,3 +78433,12,0.0,0,1.6881415843963623,434,0.0,3 +78434,12,1.0,0,1.3851454257965088,435,1.0,3 +78435,12,1.0,0,1.303146481513977,436,1.0,3 +78436,12,1.0,0,1.3811454772949219,437,1.0,3 +78437,12,1.0,0,1.8111400604248047,438,1.0,3 +78438,12,1.0,0,1.4361448287963867,439,1.0,3 +78439,12,1.0,0,1.5101438760757446,440,1.0,3 +78440,12,1.0,0,1.398145318031311,441,1.0,3 +78441,12,1.0,0,1.2291465997695923,442,1.0,3 +78442,12,1.0,0,1.4541445970535278,443,1.0,3 +78443,12,1.0,0,1.282146692276001,444,1.0,3 +78444,12,1.0,0,1.2191466093063354,445,0.0,3 +78445,12,1.0,0,1.745140790939331,446,1.0,3 +78446,12,1.0,0,1.4921441078186035,447,1.0,3 +78447,12,1.0,0,1.1911466121673584,448,1.0,3 +78448,12,1.0,0,1.3351460695266724,449,1.0,3 +78449,12,1.0,0,1.3041465282440186,450,1.0,3 +78450,12,1.0,0,1.5761430263519287,451,1.0,3 +78451,12,1.0,0,1.282146692276001,452,1.0,3 +78452,12,1.0,0,1.2051465511322021,453,1.0,3 +78453,12,1.0,0,1.4101451635360718,454,1.0,3 +78454,12,1.0,0,1.2301466464996338,455,1.0,3 +78455,12,1.0,0,1.5851428508758545,456,1.0,3 +78456,12,1.0,0,1.7591407299041748,457,1.0,3 +78457,12,1.0,0,1.3811454772949219,458,1.0,3 +78458,12,1.0,0,1.8721392154693604,459,1.0,3 +78459,12,1.0,0,1.2971465587615967,460,0.0,3 +78460,12,1.0,0,1.6541420221328735,461,1.0,3 +78461,12,1.0,0,1.251146674156189,462,1.0,3 +78462,12,1.0,0,1.4581445455551147,463,1.0,3 +78463,12,1.0,0,1.4291448593139648,464,1.0,3 +78464,12,1.0,0,1.4861441850662231,465,1.0,3 +78465,12,1.0,0,1.4711443185806274,466,1.0,3 +78466,12,1.0,0,1.2121466398239136,467,1.0,3 +78467,12,1.0,0,1.6171424388885498,468,1.0,3 +78468,12,1.0,0,1.5431435108184814,469,1.0,3 +78469,12,0.0,0,1.5221437215805054,470,0.0,3 +78470,12,1.0,0,1.3421460390090942,471,0.0,3 +78471,12,0.0,0,1.4351447820663452,472,0.0,3 +78472,12,0.0,0,1.6631419658660889,473,1.0,3 +78473,12,0.0,0,1.611142635345459,474,0.0,3 +78474,12,1.0,0,1.491144061088562,475,1.0,3 +78475,12,0.0,0,2.09414005279541,476,0.0,3 +78476,12,1.0,0,1.2021465301513672,477,1.0,3 +78477,12,0.0,0,1.2601467370986938,478,0.0,3 +78478,12,1.0,0,1.1931465864181519,479,1.0,3 +78479,12,1.0,0,1.288146734237671,480,1.0,3 +78480,12,0.0,0,1.1781466007232666,481,0.0,3 +78481,12,1.0,0,1.6281423568725586,482,1.0,3 +78482,12,1.0,0,1.2981466054916382,483,1.0,3 +78483,12,1.0,0,1.446144700050354,484,1.0,3 +78484,12,1.0,0,1.8051400184631348,485,1.0,3 +78485,12,1.0,0,1.6191425323486328,486,0.0,3 +78486,12,0.0,0,1.5071438550949097,487,0.0,3 +78487,12,0.0,0,2.073138952255249,488,0.0,3 +78488,12,0.0,0,1.251146674156189,489,0.0,3 +78489,12,1.0,0,1.563143253326416,490,1.0,3 +78490,12,1.0,0,1.7591407299041748,491,1.0,3 +78491,12,1.0,0,1.1591465473175049,492,1.0,3 +78492,12,1.0,0,1.4701443910598755,493,1.0,3 +78493,12,1.0,0,1.3611457347869873,494,0.0,3 +78494,12,1.0,0,1.2501466274261475,495,1.0,3 +78495,12,1.0,0,1.6681418418884277,496,1.0,3 +78496,12,0.0,0,1.8741391897201538,497,1.0,3 +78497,12,1.0,0,1.8591394424438477,498,1.0,3 +78498,12,1.0,0,1.4601445198059082,499,0.0,3 +78499,12,1.0,0,1.7021414041519165,500,1.0,3 +78500,12,0.0,1,1.54214346408844,1,0.0,3 +78501,12,0.0,1,1.6631419658660889,2,1.0,3 +78502,12,0.0,1,2.088139533996582,3,0.0,3 +78503,12,1.0,1,1.792140245437622,4,0.0,3 +78504,12,1.0,1,1.6801416873931885,5,1.0,3 +78505,12,1.0,1,1.5081439018249512,6,0.0,3 +78506,12,0.0,1,1.2041466236114502,7,1.0,3 +78507,12,0.0,1,1.5961427688598633,8,1.0,3 +78508,12,0.0,1,1.275146722793579,9,1.0,3 +78509,12,0.0,1,1.2331466674804688,10,0.0,3 +78510,12,0.0,1,1.3231462240219116,11,0.0,3 +78511,12,0.0,1,1.214146614074707,12,0.0,3 +78512,12,1.0,1,1.983137845993042,13,0.0,3 +78513,12,1.0,1,2.029137134552002,14,1.0,3 +78514,12,1.0,1,1.6911416053771973,15,1.0,3 +78515,12,1.0,1,1.797140121459961,16,1.0,3 +78516,12,1.0,1,1.6851415634155273,17,0.0,3 +78517,12,1.0,1,1.5991427898406982,18,1.0,3 +78518,12,1.0,1,1.2941466569900513,19,0.0,3 +78519,12,0.0,1,1.538143515586853,20,0.0,3 +78520,12,1.0,1,1.3861454725265503,21,1.0,3 +78521,12,1.0,1,1.5891427993774414,22,1.0,3 +78522,12,1.0,1,1.3211462497711182,23,1.0,3 +78523,12,1.0,1,1.5081439018249512,24,0.0,3 +78524,12,1.0,1,1.3221462965011597,25,1.0,3 +78525,12,1.0,1,1.2901467084884644,26,0.0,3 +78526,12,0.0,1,1.3841454982757568,27,0.0,3 +78527,12,0.0,1,1.6691417694091797,28,0.0,3 +78528,12,1.0,1,1.9961376190185547,29,0.0,3 +78529,12,0.0,1,1.4771442413330078,30,0.0,3 +78530,12,1.0,1,1.5241436958312988,31,0.0,3 +78531,12,1.0,1,1.8161399364471436,32,1.0,3 +78532,12,1.0,1,1.5011439323425293,33,0.0,3 +78533,12,0.0,1,1.2361466884613037,34,0.0,3 +78534,12,0.0,1,1.7821403741836548,35,0.0,3 +78535,12,1.0,1,1.7861403226852417,36,1.0,3 +78536,12,1.0,1,1.3851454257965088,37,1.0,3 +78537,12,1.0,1,1.8011400699615479,38,1.0,3 +78538,12,1.0,1,1.5041439533233643,39,1.0,3 +78539,12,1.0,1,1.6871416568756104,40,1.0,3 +78540,12,1.0,1,1.5431435108184814,41,0.0,3 +78541,12,1.0,1,2.073138952255249,42,1.0,3 +78542,12,1.0,1,1.88913893699646,43,1.0,3 +78543,12,1.0,1,1.516143798828125,44,1.0,3 +78544,12,0.0,1,1.3941453695297241,45,0.0,3 +78545,12,1.0,1,1.6281423568725586,46,0.0,3 +78546,12,1.0,1,1.4701443910598755,47,0.0,3 +78547,12,1.0,1,1.6381422281265259,48,1.0,3 +78548,12,1.0,1,2.1921443939208984,49,0.0,3 +78549,12,1.0,1,1.6931414604187012,50,1.0,3 +78550,12,1.0,1,1.6471421718597412,51,1.0,3 +78551,12,1.0,1,1.494144082069397,52,1.0,3 +78552,12,1.0,1,1.307146430015564,53,1.0,3 +78553,12,1.0,1,1.333146095275879,54,1.0,3 +78554,12,1.0,1,1.3661457300186157,55,1.0,3 +78555,12,1.0,1,1.2831467390060425,56,0.0,3 +78556,12,1.0,1,1.6451420783996582,57,1.0,3 +78557,12,1.0,1,1.4081451892852783,58,1.0,3 +78558,12,1.0,1,1.4051451683044434,59,1.0,3 +78559,12,0.0,1,1.1891465187072754,60,0.0,3 +78560,12,1.0,1,1.307146430015564,61,1.0,3 +78561,12,1.0,1,1.3301461935043335,62,1.0,3 +78562,12,1.0,1,1.2771466970443726,63,1.0,3 +78563,12,1.0,1,1.2281466722488403,64,1.0,3 +78564,12,0.0,1,1.8161399364471436,65,0.0,3 +78565,12,1.0,1,1.3961453437805176,66,1.0,3 +78566,12,1.0,1,1.2641466856002808,67,0.0,3 +78567,12,1.0,1,1.6361422538757324,68,0.0,3 +78568,12,1.0,1,1.5971426963806152,69,1.0,3 +78569,12,1.0,1,1.770140528678894,70,1.0,3 +78570,12,1.0,1,1.251146674156189,71,1.0,3 +78571,12,1.0,1,1.6811416149139404,72,0.0,3 +78572,12,0.0,1,1.6201424598693848,73,0.0,3 +78573,12,0.0,1,1.2381466627120972,74,0.0,3 +78574,12,1.0,1,1.3871454000473022,75,0.0,3 +78575,12,1.0,1,1.6211423873901367,76,1.0,3 +78576,12,1.0,1,1.3361461162567139,77,0.0,3 +78577,12,1.0,1,1.6161425113677979,78,1.0,3 +78578,12,1.0,1,1.6191425323486328,79,0.0,3 +78579,12,1.0,1,1.561143159866333,80,0.0,3 +78580,12,0.0,1,1.6511421203613281,81,0.0,3 +78581,12,1.0,1,2.053138017654419,82,0.0,3 +78582,12,1.0,1,1.6421421766281128,83,1.0,3 +78583,12,1.0,1,1.7311410903930664,84,1.0,3 +78584,12,1.0,1,2.1551427841186523,85,0.0,3 +78585,12,1.0,1,1.559143304824829,86,0.0,3 +78586,12,1.0,1,1.350145936012268,87,0.0,3 +78587,12,1.0,1,1.4291448593139648,88,0.0,3 +78588,12,1.0,1,2.0141372680664062,89,0.0,3 +78589,12,0.0,1,1.1911466121673584,90,0.0,3 +78590,12,1.0,1,1.395145297050476,91,0.0,3 +78591,12,0.0,1,1.3271461725234985,92,0.0,3 +78592,12,0.0,1,1.6411421298980713,93,1.0,3 +78593,12,0.0,1,1.4261449575424194,94,1.0,3 +78594,12,0.0,1,1.1651464700698853,95,0.0,3 +78595,12,0.0,1,2.116140842437744,96,0.0,3 +78596,12,0.0,1,2.2221460342407227,97,1.0,3 +78597,12,0.0,1,1.5521433353424072,98,0.0,3 +78598,12,0.0,1,1.4891440868377686,99,0.0,3 +78599,12,0.0,1,1.653141975402832,100,0.0,3 +78600,12,0.0,1,1.4821442365646362,101,1.0,3 +78601,12,0.0,1,1.6711418628692627,102,0.0,3 +78602,12,0.0,1,1.604142665863037,103,0.0,3 +78603,12,1.0,1,1.5031439065933228,104,1.0,3 +78604,12,1.0,1,1.2521467208862305,105,1.0,3 +78605,12,1.0,1,2.1551427841186523,106,0.0,3 +78606,12,0.0,1,1.1521464586257935,107,0.0,3 +78607,12,1.0,1,1.5401434898376465,108,1.0,3 +78608,12,1.0,1,1.1881465911865234,109,1.0,3 +78609,12,1.0,1,1.3431459665298462,110,1.0,3 +78610,12,1.0,1,1.3091464042663574,111,0.0,3 +78611,12,0.0,1,1.5291435718536377,112,0.0,3 +78612,12,0.0,1,1.284146785736084,113,0.0,3 +78613,12,1.0,1,1.4291448593139648,114,1.0,3 +78614,12,1.0,1,1.3401460647583008,115,1.0,3 +78615,12,1.0,1,1.244146704673767,116,1.0,3 +78616,12,1.0,1,1.9701379537582397,117,0.0,3 +78617,12,1.0,1,1.4321448802947998,118,1.0,3 +78618,12,1.0,1,1.656141996383667,119,1.0,3 +78619,12,1.0,1,1.4081451892852783,120,1.0,3 +78620,12,1.0,1,1.7851402759552002,121,0.0,3 +78621,12,0.0,1,1.3741456270217896,122,0.0,3 +78622,12,1.0,1,1.4371447563171387,123,0.0,3 +78623,12,1.0,1,1.3181463479995728,124,1.0,3 +78624,12,1.0,1,1.520143747329712,125,1.0,3 +78625,12,1.0,1,1.420145034790039,126,0.0,3 +78626,12,0.0,1,1.9591381549835205,127,0.0,3 +78627,12,0.0,1,1.3811454772949219,128,0.0,3 +78628,12,0.0,1,1.4371447563171387,129,0.0,3 +78629,12,1.0,1,1.487144112586975,130,1.0,3 +78630,12,1.0,1,1.5301436185836792,131,1.0,3 +78631,12,1.0,1,1.2671467065811157,132,0.0,3 +78632,12,0.0,1,1.9881377220153809,133,0.0,3 +78633,12,1.0,1,2.070138931274414,134,1.0,3 +78634,12,1.0,1,1.4811441898345947,135,1.0,3 +78635,12,1.0,1,1.3451459407806396,136,0.0,3 +78636,12,0.0,1,1.5021439790725708,137,1.0,3 +78637,12,0.0,1,1.932138442993164,138,0.0,3 +78638,12,1.0,1,2.086139678955078,139,1.0,3 +78639,12,1.0,1,1.608142614364624,140,0.0,3 +78640,12,0.0,1,1.656141996383667,141,0.0,3 +78641,12,1.0,1,1.81413996219635,142,0.0,3 +78642,12,0.0,1,1.1411464214324951,143,0.0,3 +78643,12,0.0,1,2.0011374950408936,144,0.0,3 +78644,12,1.0,1,1.4181450605392456,145,1.0,3 +78645,12,1.0,1,1.4921441078186035,146,1.0,3 +78646,12,1.0,1,1.2571467161178589,147,0.0,3 +78647,12,1.0,1,1.5101438760757446,148,0.0,3 +78648,12,0.0,1,1.446144700050354,149,0.0,3 +78649,12,1.0,1,1.8151400089263916,150,0.0,3 +78650,12,1.0,1,1.3301461935043335,151,1.0,3 +78651,12,0.0,1,1.32814621925354,152,1.0,3 +78652,12,1.0,1,1.516143798828125,153,0.0,3 +78653,12,0.0,1,1.3901454210281372,154,0.0,3 +78654,12,0.0,1,1.5891427993774414,155,0.0,3 +78655,12,0.0,1,2.0031375885009766,156,0.0,3 +78656,12,1.0,1,1.9431383609771729,157,0.0,3 +78657,12,1.0,1,1.5071438550949097,158,1.0,3 +78658,12,1.0,1,1.2061465978622437,159,1.0,3 +78659,12,1.0,1,1.3881454467773438,160,0.0,3 +78660,12,1.0,1,1.7811403274536133,161,1.0,3 +78661,12,1.0,1,1.3781455755233765,162,1.0,3 +78662,12,1.0,1,1.8041400909423828,163,1.0,3 +78663,12,1.0,1,1.5181437730789185,164,1.0,3 +78664,12,1.0,1,1.2911466360092163,165,1.0,3 +78665,12,1.0,1,1.5401434898376465,166,1.0,3 +78666,12,1.0,1,1.4221450090408325,167,0.0,3 +78667,12,0.0,1,1.3891453742980957,168,1.0,3 +78668,12,0.0,1,1.2651467323303223,169,1.0,3 +78669,12,0.0,1,1.2971465587615967,170,0.0,3 +78670,12,0.0,1,1.5471434593200684,171,1.0,3 +78671,12,0.0,1,1.7171411514282227,172,1.0,3 +78672,12,0.0,1,1.2721467018127441,173,0.0,3 +78673,12,0.0,1,1.8581393957138062,174,0.0,3 +78674,12,0.0,1,1.2891466617584229,175,1.0,3 +78675,12,0.0,1,1.3231462240219116,176,0.0,3 +78676,12,1.0,1,1.4321448802947998,177,0.0,3 +78677,12,0.0,1,2.128141403198242,178,0.0,3 +78678,12,0.0,1,1.5071438550949097,179,0.0,3 +78679,12,1.0,1,2.323150634765625,180,0.0,3 +78680,12,0.0,1,1.5841429233551025,181,0.0,3 +78681,12,0.0,1,1.6621419191360474,182,0.0,3 +78682,12,1.0,1,1.2521467208862305,183,1.0,3 +78683,12,1.0,1,1.214146614074707,184,1.0,3 +78684,12,1.0,1,1.447144627571106,185,1.0,3 +78685,12,1.0,1,1.4541445970535278,186,0.0,3 +78686,12,1.0,1,1.6711418628692627,187,1.0,3 +78687,12,1.0,1,1.7871403694152832,188,1.0,3 +78688,12,1.0,1,1.372145652770996,189,1.0,3 +78689,12,1.0,1,1.4611444473266602,190,1.0,3 +78690,12,1.0,1,1.2861467599868774,191,1.0,3 +78691,12,1.0,1,1.6141425371170044,192,0.0,3 +78692,12,1.0,1,1.3401460647583008,193,0.0,3 +78693,12,0.0,1,1.822139859199524,194,0.0,3 +78694,12,1.0,1,1.6731417179107666,195,1.0,3 +78695,12,1.0,1,1.398145318031311,196,0.0,3 +78696,12,0.0,1,1.147146463394165,197,0.0,3 +78697,12,0.0,1,1.4801442623138428,198,1.0,3 +78698,12,0.0,1,1.3051464557647705,199,0.0,3 +78699,12,0.0,1,1.6211423873901367,200,1.0,3 +78700,12,0.0,1,1.3791455030441284,201,1.0,3 +78701,12,0.0,1,1.6191425323486328,202,0.0,3 +78702,12,0.0,1,2.2411468029022217,203,1.0,3 +78703,12,0.0,1,1.6211423873901367,204,0.0,3 +78704,12,0.0,1,1.3051464557647705,205,0.0,3 +78705,12,1.0,1,1.9441382884979248,206,0.0,3 +78706,12,1.0,1,1.2491466999053955,207,0.0,3 +78707,12,0.0,1,1.557143211364746,208,1.0,3 +78708,12,0.0,1,1.1571464538574219,209,0.0,3 +78709,12,0.0,1,1.6701418161392212,210,1.0,3 +78710,12,0.0,1,1.4841442108154297,211,0.0,3 +78711,12,1.0,1,1.4821442365646362,212,1.0,3 +78712,12,1.0,1,1.7771403789520264,213,1.0,3 +78713,12,1.0,1,1.3641457557678223,214,0.0,3 +78714,12,1.0,1,1.8301397562026978,215,1.0,3 +78715,12,1.0,1,1.3941453695297241,216,0.0,3 +78716,12,1.0,1,1.6891415119171143,217,1.0,3 +78717,12,1.0,1,1.3791455030441284,218,1.0,3 +78718,12,1.0,1,1.1891465187072754,219,0.0,3 +78719,12,0.0,1,1.2301466464996338,220,1.0,3 +78720,12,0.0,1,1.6321423053741455,221,0.0,3 +78721,12,1.0,1,1.4051451683044434,222,1.0,3 +78722,12,1.0,1,1.3151463270187378,223,1.0,3 +78723,12,1.0,1,1.3411459922790527,224,1.0,3 +78724,12,1.0,1,1.4441447257995605,225,0.0,3 +78725,12,1.0,1,1.6581419706344604,226,1.0,3 +78726,12,1.0,1,1.3741456270217896,227,1.0,3 +78727,12,1.0,1,1.2421467304229736,228,1.0,3 +78728,12,1.0,1,2.324150562286377,229,1.0,3 +78729,12,1.0,1,1.7131412029266357,230,0.0,3 +78730,12,0.0,1,1.3491458892822266,231,0.0,3 +78731,12,1.0,1,1.3841454982757568,232,1.0,3 +78732,12,1.0,1,1.5801429748535156,233,1.0,3 +78733,12,1.0,1,1.9921376705169678,234,1.0,3 +78734,12,1.0,1,1.281146764755249,235,1.0,3 +78735,12,1.0,1,1.303146481513977,236,0.0,3 +78736,12,0.0,1,1.9911377429962158,237,0.0,3 +78737,12,0.0,1,2.089139699935913,238,0.0,3 +78738,12,1.0,1,1.6021426916122437,239,0.0,3 +78739,12,0.0,1,1.9251384735107422,240,0.0,3 +78740,12,1.0,1,1.5841429233551025,241,0.0,3 +78741,12,0.0,1,1.8551394939422607,242,0.0,3 +78742,12,0.0,1,1.377145528793335,243,0.0,3 +78743,12,1.0,1,1.5321435928344727,244,1.0,3 +78744,12,1.0,1,1.329146146774292,245,0.0,3 +78745,12,0.0,1,1.2531466484069824,246,0.0,3 +78746,12,1.0,1,1.4151450395584106,247,1.0,3 +78747,12,1.0,1,1.373145580291748,248,1.0,3 +78748,12,1.0,1,1.1821465492248535,249,0.0,3 +78749,12,1.0,1,1.6651418209075928,250,1.0,3 +78750,12,1.0,1,1.6751418113708496,251,0.0,3 +78751,12,0.0,1,1.6331422328948975,252,0.0,3 +78752,12,0.0,1,1.6811416149139404,253,0.0,3 +78753,12,0.0,1,1.2941466569900513,254,1.0,3 +78754,12,1.0,1,1.6361422538757324,255,1.0,3 +78755,12,1.0,1,1.979137897491455,256,1.0,3 +78756,12,1.0,1,1.8061400651931763,257,1.0,3 +78757,12,0.0,1,1.888139009475708,258,0.0,3 +78758,12,1.0,1,1.7291409969329834,259,1.0,3 +78759,12,1.0,1,1.6641418933868408,260,0.0,3 +78760,12,1.0,1,1.5791430473327637,261,1.0,3 +78761,12,1.0,1,1.5241436958312988,262,1.0,3 +78762,12,1.0,1,1.8301397562026978,263,1.0,3 +78763,12,0.0,1,1.5731430053710938,264,0.0,3 +78764,12,1.0,1,1.634142279624939,265,0.0,3 +78765,12,0.0,1,1.7321410179138184,266,1.0,3 +78766,12,0.0,1,1.841139554977417,267,0.0,3 +78767,12,0.0,1,1.1681464910507202,268,1.0,3 +78768,12,0.0,1,1.586142897605896,269,0.0,3 +78769,12,0.0,1,1.1881465911865234,270,1.0,3 +78770,12,0.0,1,1.3901454210281372,271,0.0,3 +78771,12,0.0,1,2.093139886856079,272,0.0,3 +78772,12,1.0,1,1.2771466970443726,273,0.0,3 +78773,12,1.0,1,1.2741467952728271,274,0.0,3 +78774,12,0.0,1,1.987137794494629,275,0.0,3 +78775,12,1.0,1,1.6961414813995361,276,1.0,3 +78776,12,1.0,1,1.7311410903930664,277,1.0,3 +78777,12,1.0,1,1.3271461725234985,278,0.0,3 +78778,12,0.0,1,1.4521446228027344,279,1.0,3 +78779,12,0.0,1,1.4261449575424194,280,1.0,3 +78780,12,0.0,1,1.1601464748382568,281,0.0,3 +78781,12,0.0,1,1.4091451168060303,282,1.0,3 +78782,12,0.0,1,1.5761430263519287,283,1.0,3 +78783,12,0.0,1,1.8521394729614258,284,1.0,3 +78784,12,0.0,1,1.247146725654602,285,0.0,3 +78785,12,1.0,1,1.2951465845108032,286,1.0,3 +78786,12,0.0,1,1.1651464700698853,287,1.0,3 +78787,12,1.0,1,1.2311466932296753,288,0.0,3 +78788,12,0.0,1,2.2211458683013916,289,0.0,3 +78789,12,0.0,1,1.5891427993774414,290,1.0,3 +78790,12,0.0,1,1.1961466073989868,291,0.0,3 +78791,12,1.0,1,1.3611457347869873,292,1.0,3 +78792,12,1.0,1,1.2861467599868774,293,1.0,3 +78793,12,0.0,1,1.6371421813964844,294,1.0,3 +78794,12,0.0,1,1.8751392364501953,295,0.0,3 +78795,12,1.0,1,1.730141043663025,296,0.0,3 +78796,12,0.0,1,1.3681457042694092,297,0.0,3 +78797,12,0.0,1,2.065138578414917,298,0.0,3 +78798,12,1.0,1,2.059138298034668,299,1.0,3 +78799,12,1.0,1,1.3361461162567139,300,1.0,3 +78800,12,1.0,1,1.5751430988311768,301,1.0,3 +78801,12,1.0,1,1.417145013809204,302,1.0,3 +78802,12,1.0,1,1.752140760421753,303,1.0,3 +78803,12,1.0,1,1.5831429958343506,304,1.0,3 +78804,12,1.0,1,1.347145915031433,305,1.0,3 +78805,12,1.0,1,1.6791417598724365,306,1.0,3 +78806,12,1.0,1,1.8561394214630127,307,1.0,3 +78807,12,1.0,1,1.2161465883255005,308,0.0,3 +78808,12,1.0,1,1.4401447772979736,309,1.0,3 +78809,12,1.0,1,1.3011465072631836,310,0.0,3 +78810,12,0.0,1,1.1421464681625366,311,1.0,3 +78811,12,0.0,1,1.217146635055542,312,0.0,3 +78812,12,0.0,1,1.2381466627120972,313,1.0,3 +78813,12,0.0,1,1.248146653175354,314,1.0,3 +78814,12,0.0,1,1.2551467418670654,315,0.0,3 +78815,12,1.0,1,2.049137830734253,316,1.0,3 +78816,12,1.0,1,1.306146502494812,317,1.0,3 +78817,12,1.0,1,1.5361435413360596,318,1.0,3 +78818,12,1.0,1,1.425144910812378,319,1.0,3 +78819,12,1.0,1,1.3531458377838135,320,1.0,3 +78820,12,1.0,1,1.563143253326416,321,1.0,3 +78821,12,1.0,1,1.2951465845108032,322,1.0,3 +78822,12,1.0,1,1.333146095275879,323,1.0,3 +78823,12,1.0,1,1.350145936012268,324,1.0,3 +78824,12,1.0,1,1.4641444683074951,325,1.0,3 +78825,12,0.0,1,1.1731464862823486,326,0.0,3 +78826,12,1.0,1,1.4121451377868652,327,0.0,3 +78827,12,0.0,1,1.4131450653076172,328,1.0,3 +78828,12,0.0,1,1.5621432065963745,329,0.0,3 +78829,12,0.0,1,1.4971439838409424,330,0.0,3 +78830,12,0.0,1,1.2301466464996338,331,0.0,3 +78831,12,1.0,1,1.6001427173614502,332,1.0,3 +78832,12,1.0,1,1.6141425371170044,333,0.0,3 +78833,12,0.0,1,1.5531432628631592,334,0.0,3 +78834,12,0.0,1,2.033137083053589,335,0.0,3 +78835,12,0.0,1,1.2691466808319092,336,0.0,3 +78836,12,0.0,1,2.2281460762023926,337,0.0,3 +78837,12,1.0,1,2.136141777038574,338,1.0,3 +78838,12,1.0,1,1.1741465330123901,339,1.0,3 +78839,12,1.0,1,1.3431459665298462,340,0.0,3 +78840,12,0.0,1,1.611142635345459,341,0.0,3 +78841,12,1.0,1,1.5971426963806152,342,0.0,3 +78842,12,0.0,1,1.2381466627120972,343,1.0,3 +78843,12,0.0,1,1.3481459617614746,344,0.0,3 +78844,12,0.0,1,1.8721392154693604,345,1.0,3 +78845,12,0.0,1,1.491144061088562,346,0.0,3 +78846,12,1.0,1,1.4321448802947998,347,0.0,3 +78847,12,1.0,1,1.796140193939209,348,0.0,3 +78848,12,0.0,1,2.1301417350769043,349,0.0,3 +78849,12,0.0,1,1.3301461935043335,350,0.0,3 +78850,12,0.0,1,1.2311466932296753,351,1.0,3 +78851,12,0.0,1,1.2121466398239136,352,1.0,3 +78852,12,0.0,1,1.1731464862823486,353,0.0,3 +78853,12,0.0,1,1.7671406269073486,354,0.0,3 +78854,12,1.0,1,1.6021426916122437,355,1.0,3 +78855,12,1.0,1,1.3911453485488892,356,1.0,3 +78856,12,1.0,1,1.221146583557129,357,1.0,3 +78857,12,1.0,1,1.355145812034607,358,1.0,3 +78858,12,1.0,1,1.3531458377838135,359,0.0,3 +78859,12,1.0,1,1.8981388807296753,360,1.0,3 +78860,12,1.0,1,1.376145601272583,361,1.0,3 +78861,12,1.0,1,1.2971465587615967,362,1.0,3 +78862,12,1.0,1,1.6921415328979492,363,1.0,3 +78863,12,1.0,1,1.7781404256820679,364,1.0,3 +78864,12,1.0,1,1.4551445245742798,365,1.0,3 +78865,12,1.0,1,1.2461466789245605,366,1.0,3 +78866,12,1.0,1,1.3651456832885742,367,1.0,3 +78867,12,1.0,1,1.7791404724121094,368,1.0,3 +78868,12,1.0,1,1.4011452198028564,369,1.0,3 +78869,12,1.0,1,1.4331448078155518,370,1.0,3 +78870,12,1.0,1,1.3481459617614746,371,1.0,3 +78871,12,1.0,1,1.4981440305709839,372,1.0,3 +78872,12,1.0,1,1.2351466417312622,373,1.0,3 +78873,12,1.0,1,1.3381460905075073,374,1.0,3 +78874,12,1.0,1,1.5701431035995483,375,1.0,3 +78875,12,0.0,1,1.564143180847168,376,0.0,3 +78876,12,1.0,1,1.4661444425582886,377,1.0,3 +78877,12,1.0,1,1.3921453952789307,378,1.0,3 +78878,12,1.0,1,1.421144962310791,379,1.0,3 +78879,12,1.0,1,1.5661431550979614,380,1.0,3 +78880,12,1.0,1,1.306146502494812,381,1.0,3 +78881,12,1.0,1,1.2351466417312622,382,1.0,3 +78882,12,1.0,1,1.347145915031433,383,1.0,3 +78883,12,1.0,1,1.7531406879425049,384,0.0,3 +78884,12,0.0,1,1.1861464977264404,385,0.0,3 +78885,12,0.0,1,1.8741391897201538,386,0.0,3 +78886,12,0.0,1,1.5941427946090698,387,0.0,3 +78887,12,1.0,1,2.2241458892822266,388,1.0,3 +78888,12,1.0,1,1.465144395828247,389,1.0,3 +78889,12,1.0,1,1.7821403741836548,390,0.0,3 +78890,12,0.0,1,1.4001452922821045,391,0.0,3 +78891,12,1.0,1,1.9751379489898682,392,1.0,3 +78892,12,1.0,1,1.329146146774292,393,0.0,3 +78893,12,1.0,1,1.8261398077011108,394,1.0,3 +78894,12,1.0,1,1.4221450090408325,395,1.0,3 +78895,12,0.0,1,1.347145915031433,396,1.0,3 +78896,12,1.0,1,2.041137456893921,397,1.0,3 +78897,12,0.0,1,1.332146167755127,398,1.0,3 +78898,12,0.0,1,1.4601445198059082,399,0.0,3 +78899,12,1.0,1,1.288146734237671,400,1.0,3 +78900,12,1.0,1,1.3151463270187378,401,1.0,3 +78901,12,1.0,1,1.8021401166915894,402,1.0,3 +78902,12,1.0,1,1.697141408920288,403,1.0,3 +78903,12,1.0,1,1.5511434078216553,404,1.0,3 +78904,12,1.0,1,1.4661444425582886,405,0.0,3 +78905,12,0.0,1,1.248146653175354,406,0.0,3 +78906,12,1.0,1,2.055138111114502,407,0.0,3 +78907,12,1.0,1,2.1971447467803955,408,1.0,3 +78908,12,1.0,1,1.9131386280059814,409,1.0,3 +78909,12,1.0,1,1.4381448030471802,410,1.0,3 +78910,12,1.0,1,1.2831467390060425,411,0.0,3 +78911,12,0.0,1,1.2101466655731201,412,0.0,3 +78912,12,1.0,1,1.3881454467773438,413,0.0,3 +78913,12,1.0,1,1.7311410903930664,414,1.0,3 +78914,12,1.0,1,1.425144910812378,415,1.0,3 +78915,12,0.0,1,1.3161463737487793,416,0.0,3 +78916,12,1.0,1,1.2791467905044556,417,0.0,3 +78917,12,0.0,1,1.8331396579742432,418,0.0,3 +78918,12,1.0,1,1.8301397562026978,419,1.0,3 +78919,12,1.0,1,1.6961414813995361,420,1.0,3 +78920,12,1.0,1,1.4521446228027344,421,1.0,3 +78921,12,1.0,1,1.2001465559005737,422,0.0,3 +78922,12,0.0,1,1.792140245437622,423,1.0,3 +78923,12,0.0,1,1.4081451892852783,424,1.0,3 +78924,12,0.0,1,1.3881454467773438,425,0.0,3 +78925,12,0.0,1,1.3351460695266724,426,1.0,3 +78926,12,1.0,1,1.3861454725265503,427,1.0,3 +78927,12,1.0,1,1.5881428718566895,428,1.0,3 +78928,12,1.0,1,1.51314377784729,429,0.0,3 +78929,12,0.0,1,1.1631464958190918,430,0.0,3 +78930,12,0.0,1,1.4231449365615845,431,0.0,3 +78931,12,1.0,1,2.1451423168182373,432,1.0,3 +78932,12,1.0,1,1.3271461725234985,433,1.0,3 +78933,12,1.0,1,1.9491381645202637,434,1.0,3 +78934,12,1.0,1,1.613142490386963,435,0.0,3 +78935,12,0.0,1,1.7591407299041748,436,1.0,3 +78936,12,0.0,1,1.4621444940567017,437,0.0,3 +78937,12,0.0,1,1.4831441640853882,438,0.0,3 +78938,12,1.0,1,1.8011400699615479,439,1.0,3 +78939,12,1.0,1,1.5931427478790283,440,1.0,3 +78940,12,1.0,1,1.888139009475708,441,1.0,3 +78941,12,1.0,1,1.8121399879455566,442,0.0,3 +78942,12,0.0,1,1.8361396789550781,443,1.0,3 +78943,12,0.0,1,1.2401466369628906,444,0.0,3 +78944,12,0.0,1,1.3861454725265503,445,0.0,3 +78945,12,1.0,1,1.7281410694122314,446,1.0,3 +78946,12,1.0,1,1.2691466808319092,447,0.0,3 +78947,12,1.0,1,1.6711418628692627,448,1.0,3 +78948,12,1.0,1,1.2411466836929321,449,0.0,3 +78949,12,0.0,1,1.5081439018249512,450,0.0,3 +78950,12,0.0,1,2.053138017654419,451,0.0,3 +78951,12,0.0,1,1.288146734237671,452,0.0,3 +78952,12,1.0,1,1.8931388854980469,453,0.0,3 +78953,12,0.0,1,2.1221413612365723,454,1.0,3 +78954,12,0.0,1,1.538143515586853,455,1.0,3 +78955,12,0.0,1,1.5891427993774414,456,0.0,3 +78956,12,0.0,1,1.9911377429962158,457,0.0,3 +78957,12,1.0,1,1.799140214920044,458,1.0,3 +78958,12,1.0,1,2.2631478309631348,459,1.0,3 +78959,12,1.0,1,1.2991465330123901,460,0.0,3 +78960,12,0.0,1,1.7911403179168701,461,0.0,3 +78961,12,1.0,1,1.3711456060409546,462,1.0,3 +78962,12,0.0,1,1.251146674156189,463,1.0,3 +78963,12,0.0,1,1.6501420736312866,464,0.0,3 +78964,12,0.0,1,2.027137279510498,465,0.0,3 +78965,12,1.0,1,1.3621457815170288,466,0.0,3 +78966,12,1.0,1,1.4041452407836914,467,1.0,3 +78967,12,1.0,1,1.306146502494812,468,1.0,3 +78968,12,1.0,1,1.2121466398239136,469,1.0,3 +78969,12,1.0,1,1.4391447305679321,470,1.0,3 +78970,12,1.0,1,1.2051465511322021,471,0.0,3 +78971,12,1.0,1,1.9951376914978027,472,0.0,3 +78972,12,1.0,1,1.9641380310058594,473,1.0,3 +78973,12,1.0,1,1.1551464796066284,474,1.0,3 +78974,12,1.0,1,1.4391447305679321,475,1.0,3 +78975,12,1.0,1,1.929138422012329,476,0.0,3 +78976,12,0.0,1,1.5001440048217773,477,0.0,3 +78977,12,0.0,1,1.9881377220153809,478,1.0,3 +78978,12,0.0,1,1.3261462450027466,479,0.0,3 +78979,12,0.0,1,1.2961466312408447,480,1.0,3 +78980,12,0.0,1,1.8691391944885254,481,0.0,3 +78981,12,0.0,1,2.044137477874756,482,0.0,3 +78982,12,1.0,1,2.4341559410095215,483,1.0,3 +78983,12,1.0,1,1.4331448078155518,484,1.0,3 +78984,12,1.0,1,1.3521459102630615,485,1.0,3 +78985,12,1.0,1,1.4331448078155518,486,0.0,3 +78986,12,0.0,1,1.5051438808441162,487,1.0,3 +78987,12,0.0,1,1.428144931793213,488,1.0,3 +78988,12,0.0,1,1.4851441383361816,489,0.0,3 +78989,12,0.0,1,1.789140224456787,490,0.0,3 +78990,12,0.0,1,2.3861536979675293,491,0.0,3 +78991,12,0.0,1,1.472144365310669,492,0.0,3 +78992,12,0.0,1,2.04713773727417,493,0.0,3 +78993,12,1.0,1,1.3831454515457153,494,0.0,3 +78994,12,0.0,1,1.2361466884613037,495,0.0,3 +78995,12,0.0,1,1.208146572113037,496,0.0,3 +78996,12,0.0,1,1.516143798828125,497,0.0,3 +78997,12,0.0,1,1.9701379537582397,498,0.0,3 +78998,12,1.0,1,1.845139503479004,499,1.0,3 +78999,12,1.0,1,1.5071438550949097,500,1.0,3 +79000,12,0.0,2,1.5251436233520508,1,1.0,3 +79001,12,0.0,2,1.8671393394470215,2,1.0,3 +79002,12,0.0,2,1.559143304824829,3,0.0,3 +79003,12,1.0,2,1.146146535873413,4,0.0,3 +79004,12,0.0,2,1.2131465673446655,5,1.0,3 +79005,12,0.0,2,1.3481459617614746,6,0.0,3 +79006,12,1.0,2,1.6261423826217651,7,0.0,3 +79007,12,1.0,2,1.450144648551941,8,1.0,3 +79008,12,1.0,2,1.7331409454345703,9,0.0,3 +79009,12,0.0,2,1.3271461725234985,10,0.0,3 +79010,12,1.0,2,1.7181411981582642,11,1.0,3 +79011,12,1.0,2,1.678141713142395,12,1.0,3 +79012,12,1.0,2,1.4331448078155518,13,0.0,3 +79013,12,0.0,2,1.425144910812378,14,0.0,3 +79014,12,1.0,2,2.2031450271606445,15,1.0,3 +79015,12,1.0,2,1.2551467418670654,16,1.0,3 +79016,12,1.0,2,1.4111450910568237,17,1.0,3 +79017,12,1.0,2,1.3011465072631836,18,0.0,3 +79018,12,1.0,2,1.3961453437805176,19,0.0,3 +79019,12,0.0,2,1.1791465282440186,20,1.0,3 +79020,12,0.0,2,1.5151437520980835,21,1.0,3 +79021,12,0.0,2,1.8671393394470215,22,0.0,3 +79022,12,0.0,2,1.3081464767456055,23,0.0,3 +79023,12,1.0,2,1.590142846107483,24,0.0,3 +79024,12,1.0,2,1.2641466856002808,25,1.0,3 +79025,12,1.0,2,1.3231462240219116,26,0.0,3 +79026,12,0.0,2,1.4131450653076172,27,1.0,3 +79027,12,0.0,2,1.3881454467773438,28,0.0,3 +79028,12,0.0,2,1.4991439580917358,29,0.0,3 +79029,12,0.0,2,1.6021426916122437,30,0.0,3 +79030,12,0.0,2,1.5291435718536377,31,1.0,3 +79031,12,0.0,2,1.3121464252471924,32,1.0,3 +79032,12,0.0,2,1.1661465167999268,33,1.0,3 +79033,12,0.0,2,1.35114586353302,34,1.0,3 +79034,12,0.0,2,1.1781466007232666,35,0.0,3 +79035,12,0.0,2,1.6311423778533936,36,1.0,3 +79036,12,0.0,2,1.5281436443328857,37,0.0,3 +79037,12,0.0,2,1.3661457300186157,38,0.0,3 +79038,12,1.0,2,1.3601458072662354,39,1.0,3 +79039,12,1.0,2,1.4131450653076172,40,0.0,3 +79040,12,1.0,2,1.8261398077011108,41,1.0,3 +79041,12,1.0,2,1.3131463527679443,42,0.0,3 +79042,12,1.0,2,1.8751392364501953,43,1.0,3 +79043,12,1.0,2,1.1791465282440186,44,1.0,3 +79044,12,1.0,2,1.2931466102600098,45,0.0,3 +79045,12,1.0,2,1.7751405239105225,46,0.0,3 +79046,12,1.0,2,2.2281460762023926,47,1.0,3 +79047,12,1.0,2,1.424144983291626,48,1.0,3 +79048,12,1.0,2,1.3041465282440186,49,1.0,3 +79049,12,1.0,2,1.567143201828003,50,0.0,3 +79050,12,1.0,2,1.8971388339996338,51,1.0,3 +79051,12,1.0,2,2.1741437911987305,52,1.0,3 +79052,12,1.0,2,1.7641406059265137,53,0.0,3 +79053,12,0.0,2,1.5511434078216553,54,1.0,3 +79054,12,0.0,2,1.9991376399993896,55,0.0,3 +79055,12,0.0,2,1.208146572113037,56,0.0,3 +79056,12,0.0,2,2.057138204574585,57,0.0,3 +79057,12,0.0,2,1.3871454000473022,58,0.0,3 +79058,12,1.0,2,1.9711380004882812,59,1.0,3 +79059,12,1.0,2,1.5431435108184814,60,1.0,3 +79060,12,1.0,2,1.2901467084884644,61,0.0,3 +79061,12,1.0,2,1.425144910812378,62,0.0,3 +79062,12,0.0,2,1.2901467084884644,63,0.0,3 +79063,12,1.0,2,2.0111374855041504,64,1.0,3 +79064,12,1.0,2,1.2921466827392578,65,1.0,3 +79065,12,1.0,2,1.288146734237671,66,0.0,3 +79066,12,1.0,2,1.5461434125900269,67,1.0,3 +79067,12,1.0,2,1.6631419658660889,68,0.0,3 +79068,12,0.0,2,1.5711431503295898,69,1.0,3 +79069,12,0.0,2,1.3081464767456055,70,0.0,3 +79070,12,0.0,2,1.187146544456482,71,1.0,3 +79071,12,0.0,2,1.1311464309692383,72,1.0,3 +79072,12,0.0,2,1.8791391849517822,73,0.0,3 +79073,12,0.0,2,1.347145915031433,74,1.0,3 +79074,12,0.0,2,1.3261462450027466,75,1.0,3 +79075,12,0.0,2,1.6191425323486328,76,0.0,3 +79076,12,0.0,2,2.0121374130249023,77,1.0,3 +79077,12,0.0,2,1.6671419143676758,78,0.0,3 +79078,12,0.0,2,1.6701418161392212,79,0.0,3 +79079,12,0.0,2,1.3361461162567139,80,0.0,3 +79080,12,0.0,2,1.3561458587646484,81,1.0,3 +79081,12,0.0,2,1.7611405849456787,82,0.0,3 +79082,12,0.0,2,1.8991389274597168,83,1.0,3 +79083,12,1.0,2,1.2761467695236206,84,1.0,3 +79084,12,0.0,2,1.7571406364440918,85,0.0,3 +79085,12,1.0,2,1.4531445503234863,86,0.0,3 +79086,12,0.0,2,2.311150074005127,87,0.0,3 +79087,12,1.0,2,1.4361448287963867,88,1.0,3 +79088,12,1.0,2,1.6631419658660889,89,0.0,3 +79089,12,1.0,2,2.1681432723999023,90,0.0,3 +79090,12,0.0,2,1.3681457042694092,91,1.0,3 +79091,12,0.0,2,1.4191449880599976,92,1.0,3 +79092,12,0.0,2,1.275146722793579,93,0.0,3 +79093,12,1.0,2,1.9411382675170898,94,0.0,3 +79094,12,0.0,2,1.4841442108154297,95,1.0,3 +79095,12,0.0,2,1.4881441593170166,96,1.0,3 +79096,12,0.0,2,1.3441460132598877,97,1.0,3 +79097,12,0.0,2,1.2971465587615967,98,0.0,3 +79098,12,0.0,2,1.4641444683074951,99,0.0,3 +79099,12,0.0,2,1.7351410388946533,100,0.0,3 +79100,12,0.0,2,1.4591444730758667,101,0.0,3 +79101,12,0.0,2,1.3381460905075073,102,0.0,3 +79102,12,1.0,2,1.4101451635360718,103,1.0,3 +79103,12,1.0,2,1.7161412239074707,104,0.0,3 +79104,12,0.0,2,1.747140884399414,105,0.0,3 +79105,12,0.0,2,1.7671406269073486,106,0.0,3 +79106,12,1.0,2,1.4051451683044434,107,0.0,3 +79107,12,0.0,2,1.3561458587646484,108,0.0,3 +79108,12,0.0,2,1.2291465997695923,109,0.0,3 +79109,12,0.0,2,1.3881454467773438,110,1.0,3 +79110,12,0.0,2,1.2411466836929321,111,0.0,3 +79111,12,0.0,2,1.83713960647583,112,0.0,3 +79112,12,1.0,2,1.7661405801773071,113,1.0,3 +79113,12,1.0,2,1.559143304824829,114,0.0,3 +79114,12,1.0,2,1.2421467304229736,115,0.0,3 +79115,12,1.0,2,2.097140073776245,116,0.0,3 +79116,12,1.0,2,1.841139554977417,117,0.0,3 +79117,12,0.0,2,2.369152784347534,118,1.0,3 +79118,12,0.0,2,1.1241464614868164,119,0.0,3 +79119,12,0.0,2,1.6541420221328735,120,0.0,3 +79120,12,1.0,2,1.3901454210281372,121,1.0,3 +79121,12,1.0,2,1.5071438550949097,122,0.0,3 +79122,12,1.0,2,1.5971426963806152,123,1.0,3 +79123,12,1.0,2,1.51314377784729,124,1.0,3 +79124,12,1.0,2,1.4831441640853882,125,0.0,3 +79125,12,1.0,2,1.7371408939361572,126,0.0,3 +79126,12,1.0,2,1.8861390352249146,127,1.0,3 +79127,12,1.0,2,1.6141425371170044,128,1.0,3 +79128,12,1.0,2,1.2981466054916382,129,1.0,3 +79129,12,1.0,2,1.306146502494812,130,1.0,3 +79130,12,1.0,2,1.2391467094421387,131,0.0,3 +79131,12,1.0,2,1.3791455030441284,132,1.0,3 +79132,12,1.0,2,1.4701443910598755,133,1.0,3 +79133,12,0.0,2,1.2971465587615967,134,1.0,3 +79134,12,1.0,2,1.245146632194519,135,0.0,3 +79135,12,0.0,2,1.561143159866333,136,1.0,3 +79136,12,0.0,2,1.8041400909423828,137,0.0,3 +79137,12,0.0,2,1.3401460647583008,138,1.0,3 +79138,12,0.0,2,1.302146553993225,139,1.0,3 +79139,12,0.0,2,1.6061426401138306,140,1.0,3 +79140,12,0.0,2,1.284146785736084,141,0.0,3 +79141,12,0.0,2,1.2071466445922852,142,1.0,3 +79142,12,0.0,2,1.9381383657455444,143,1.0,3 +79143,12,0.0,2,1.190146565437317,144,1.0,3 +79144,12,0.0,2,1.4391447305679321,145,1.0,3 +79145,12,0.0,2,1.8091399669647217,146,1.0,3 +79146,12,0.0,2,1.2521467208862305,147,0.0,3 +79147,12,0.0,2,1.2891466617584229,148,1.0,3 +79148,12,0.0,2,1.2601467370986938,149,1.0,3 +79149,12,0.0,2,1.561143159866333,150,0.0,3 +79150,12,0.0,2,1.8271398544311523,151,1.0,3 +79151,12,0.0,2,1.5341435670852661,152,1.0,3 +79152,12,0.0,2,1.2691466808319092,153,1.0,3 +79153,12,0.0,2,1.3121464252471924,154,0.0,3 +79154,12,0.0,2,1.4081451892852783,155,0.0,3 +79155,12,1.0,2,1.7861403226852417,156,0.0,3 +79156,12,1.0,2,1.244146704673767,157,0.0,3 +79157,12,0.0,2,1.6391422748565674,158,1.0,3 +79158,12,0.0,2,1.1551464796066284,159,1.0,3 +79159,12,0.0,2,1.1421464681625366,160,1.0,3 +79160,12,0.0,2,1.2251466512680054,161,0.0,3 +79161,12,1.0,2,1.2411466836929321,162,1.0,3 +79162,12,1.0,2,1.2771466970443726,163,1.0,3 +79163,12,1.0,2,1.5661431550979614,164,1.0,3 +79164,12,1.0,2,1.3011465072631836,165,0.0,3 +79165,12,1.0,2,1.6251423358917236,166,1.0,3 +79166,12,1.0,2,1.6461421251296997,167,0.0,3 +79167,12,1.0,2,1.5051438808441162,168,0.0,3 +79168,12,0.0,2,1.1951465606689453,169,1.0,3 +79169,12,0.0,2,1.9601380825042725,170,1.0,3 +79170,12,0.0,2,1.3191462755203247,171,0.0,3 +79171,12,1.0,2,1.421144962310791,172,0.0,3 +79172,12,0.0,2,1.5361435413360596,173,0.0,3 +79173,12,0.0,2,1.9021388292312622,174,1.0,3 +79174,12,0.0,2,1.2931466102600098,175,0.0,3 +79175,12,0.0,2,1.8431396484375,176,1.0,3 +79176,12,0.0,2,1.1451464891433716,177,0.0,3 +79177,12,1.0,2,1.4791442155838013,178,0.0,3 +79178,12,1.0,2,1.7531406879425049,179,1.0,3 +79179,12,0.0,2,1.1521464586257935,180,0.0,3 +79180,12,1.0,2,1.2101466655731201,181,0.0,3 +79181,12,1.0,2,1.468144416809082,182,0.0,3 +79182,12,0.0,2,1.2251466512680054,183,1.0,3 +79183,12,0.0,2,1.2431466579437256,184,0.0,3 +79184,12,0.0,2,1.516143798828125,185,0.0,3 +79185,12,0.0,2,2.1371419429779053,186,0.0,3 +79186,12,0.0,2,1.5501433610916138,187,1.0,3 +79187,12,0.0,2,1.153146505355835,188,0.0,3 +79188,12,1.0,2,2.097140073776245,189,1.0,3 +79189,12,1.0,2,1.4921441078186035,190,0.0,3 +79190,12,0.0,2,1.9241385459899902,191,0.0,3 +79191,12,0.0,2,1.373145580291748,192,0.0,3 +79192,12,0.0,2,1.2961466312408447,193,0.0,3 +79193,12,1.0,2,1.7881402969360352,194,1.0,3 +79194,12,1.0,2,1.517143726348877,195,0.0,3 +79195,12,0.0,2,1.2391467094421387,196,0.0,3 +79196,12,0.0,2,2.2031450271606445,197,0.0,3 +79197,12,0.0,2,1.6351423263549805,198,0.0,3 +79198,12,1.0,2,1.3131463527679443,199,0.0,3 +79199,12,1.0,2,1.6231424808502197,200,1.0,3 +79200,12,1.0,2,1.40314519405365,201,1.0,3 +79201,12,1.0,2,1.2901467084884644,202,0.0,3 +79202,12,0.0,2,1.538143515586853,203,1.0,3 +79203,12,0.0,2,1.3831454515457153,204,0.0,3 +79204,12,0.0,2,1.5391435623168945,205,0.0,3 +79205,12,0.0,2,1.83713960647583,206,0.0,3 +79206,12,0.0,2,1.516143798828125,207,0.0,3 +79207,12,1.0,2,1.4791442155838013,208,1.0,3 +79208,12,1.0,2,1.4611444473266602,209,0.0,3 +79209,12,1.0,2,1.682141661643982,210,1.0,3 +79210,12,1.0,2,1.472144365310669,211,0.0,3 +79211,12,0.0,2,1.3211462497711182,212,0.0,3 +79212,12,1.0,2,2.295149326324463,213,0.0,3 +79213,12,0.0,2,1.372145652770996,214,0.0,3 +79214,12,0.0,2,1.1491464376449585,215,1.0,3 +79215,12,0.0,2,1.5871429443359375,216,1.0,3 +79216,12,0.0,2,1.4341448545455933,217,0.0,3 +79217,12,0.0,2,1.7181411981582642,218,1.0,3 +79218,12,0.0,2,1.2301466464996338,219,0.0,3 +79219,12,0.0,2,1.4361448287963867,220,0.0,3 +79220,12,0.0,2,1.6031427383422852,221,1.0,3 +79221,12,0.0,2,1.1141464710235596,222,1.0,3 +79222,12,0.0,2,1.3151463270187378,223,1.0,3 +79223,12,0.0,2,1.5761430263519287,224,1.0,3 +79224,12,0.0,2,1.2421467304229736,225,1.0,3 +79225,12,0.0,2,1.3201463222503662,226,0.0,3 +79226,12,0.0,2,1.468144416809082,227,0.0,3 +79227,12,0.0,2,1.7761404514312744,228,0.0,3 +79228,12,0.0,2,1.613142490386963,229,0.0,3 +79229,12,1.0,2,1.32814621925354,230,0.0,3 +79230,12,0.0,2,1.608142614364624,231,1.0,3 +79231,12,0.0,2,1.2601467370986938,232,1.0,3 +79232,12,0.0,2,1.4791442155838013,233,1.0,3 +79233,12,0.0,2,1.494144082069397,234,0.0,3 +79234,12,0.0,2,1.3391460180282593,235,1.0,3 +79235,12,0.0,2,1.6911416053771973,236,0.0,3 +79236,12,1.0,2,1.2761467695236206,237,0.0,3 +79237,12,0.0,2,1.2501466274261475,238,1.0,3 +79238,12,0.0,2,1.2761467695236206,239,0.0,3 +79239,12,1.0,2,1.3851454257965088,240,1.0,3 +79240,12,1.0,2,1.2321466207504272,241,1.0,3 +79241,12,1.0,2,1.9491381645202637,242,1.0,3 +79242,12,1.0,2,1.2361466884613037,243,0.0,3 +79243,12,0.0,2,2.27314829826355,244,0.0,3 +79244,12,1.0,2,2.076138973236084,245,0.0,3 +79245,12,0.0,2,1.1021463871002197,246,0.0,3 +79246,12,1.0,2,1.4881441593170166,247,1.0,3 +79247,12,1.0,2,1.520143747329712,248,1.0,3 +79248,12,0.0,2,1.517143726348877,249,1.0,3 +79249,12,1.0,2,1.5431435108184814,250,0.0,3 +79250,12,0.0,2,1.377145528793335,251,0.0,3 +79251,12,1.0,2,1.6921415328979492,252,1.0,3 +79252,12,1.0,2,2.089139699935913,253,0.0,3 +79253,12,1.0,2,1.7731404304504395,254,0.0,3 +79254,12,1.0,2,1.6261423826217651,255,0.0,3 +79255,12,1.0,2,1.5561432838439941,256,1.0,3 +79256,12,1.0,2,1.613142490386963,257,0.0,3 +79257,12,1.0,2,2.031137228012085,258,0.0,3 +79258,12,0.0,2,1.5091438293457031,259,0.0,3 +79259,12,0.0,2,1.399145245552063,260,0.0,3 +79260,12,0.0,2,1.3481459617614746,261,0.0,3 +79261,12,1.0,2,1.3041465282440186,262,0.0,3 +79262,12,0.0,2,2.1221413612365723,263,1.0,3 +79263,12,0.0,2,1.2351466417312622,264,0.0,3 +79264,12,1.0,2,1.5751430988311768,265,1.0,3 +79265,12,1.0,2,1.376145601272583,266,0.0,3 +79266,12,0.0,2,1.3391460180282593,267,1.0,3 +79267,12,0.0,2,1.302146553993225,268,1.0,3 +79268,12,0.0,2,1.3201463222503662,269,1.0,3 +79269,12,0.0,2,1.1591465473175049,270,1.0,3 +79270,12,0.0,2,1.285146713256836,271,0.0,3 +79271,12,1.0,2,1.8901389837265015,272,1.0,3 +79272,12,1.0,2,1.5111438035964966,273,1.0,3 +79273,12,1.0,2,1.2281466722488403,274,1.0,3 +79274,12,1.0,2,1.1971465349197388,275,0.0,3 +79275,12,1.0,2,1.7621406316757202,276,1.0,3 +79276,12,1.0,2,1.5791430473327637,277,1.0,3 +79277,12,1.0,2,1.557143211364746,278,1.0,3 +79278,12,1.0,2,1.6211423873901367,279,1.0,3 +79279,12,1.0,2,1.5231436491012573,280,0.0,3 +79280,12,0.0,2,1.5141438245773315,281,0.0,3 +79281,12,0.0,2,2.12014102935791,282,0.0,3 +79282,12,0.0,2,1.4811441898345947,283,1.0,3 +79283,12,0.0,2,1.4531445503234863,284,1.0,3 +79284,12,0.0,2,1.4531445503234863,285,0.0,3 +79285,12,1.0,2,2.1621432304382324,286,1.0,3 +79286,12,1.0,2,1.3341461420059204,287,0.0,3 +79287,12,0.0,2,1.421144962310791,288,0.0,3 +79288,12,1.0,2,1.4181450605392456,289,1.0,3 +79289,12,1.0,2,1.3591457605361938,290,1.0,3 +79290,12,1.0,2,1.5491433143615723,291,1.0,3 +79291,12,1.0,2,1.3601458072662354,292,1.0,3 +79292,12,1.0,2,1.6331422328948975,293,0.0,3 +79293,12,1.0,2,1.9861377477645874,294,0.0,3 +79294,12,1.0,2,1.6751418113708496,295,1.0,3 +79295,12,1.0,2,2.049137830734253,296,1.0,3 +79296,12,1.0,2,1.3351460695266724,297,0.0,3 +79297,12,0.0,2,1.494144082069397,298,0.0,3 +79298,12,0.0,2,1.3271461725234985,299,0.0,3 +79299,12,0.0,2,1.870139241218567,300,0.0,3 +79300,12,0.0,2,1.2761467695236206,301,0.0,3 +79301,12,1.0,2,1.4561445713043213,302,1.0,3 +79302,12,1.0,2,1.5071438550949097,303,0.0,3 +79303,12,1.0,2,1.220146656036377,304,0.0,3 +79304,12,1.0,2,1.6371421813964844,305,0.0,3 +79305,12,1.0,2,1.6961414813995361,306,1.0,3 +79306,12,0.0,2,1.399145245552063,307,0.0,3 +79307,12,1.0,2,1.656141996383667,308,1.0,3 +79308,12,1.0,2,1.4441447257995605,309,1.0,3 +79309,12,1.0,2,1.4141451120376587,310,1.0,3 +79310,12,1.0,2,1.4261449575424194,311,0.0,3 +79311,12,1.0,2,1.6701418161392212,312,0.0,3 +79312,12,0.0,2,2.2521471977233887,313,0.0,3 +79313,12,0.0,2,1.7241411209106445,314,1.0,3 +79314,12,0.0,2,1.3301461935043335,315,1.0,3 +79315,12,0.0,2,1.4571444988250732,316,0.0,3 +79316,12,1.0,2,1.6981414556503296,317,0.0,3 +79317,12,1.0,2,2.081139326095581,318,1.0,3 +79318,12,0.0,2,1.8171398639678955,319,0.0,3 +79319,12,1.0,2,1.3141463994979858,320,1.0,3 +79320,12,1.0,2,1.2731467485427856,321,1.0,3 +79321,12,1.0,2,1.4771442413330078,322,1.0,3 +79322,12,1.0,2,1.1671465635299683,323,1.0,3 +79323,12,1.0,2,1.6911416053771973,324,0.0,3 +79324,12,1.0,2,1.9931375980377197,325,1.0,3 +79325,12,1.0,2,1.7181411981582642,326,1.0,3 +79326,12,1.0,2,1.538143515586853,327,0.0,3 +79327,12,1.0,2,1.3841454982757568,328,1.0,3 +79328,12,1.0,2,1.4711443185806274,329,0.0,3 +79329,12,1.0,2,1.8201398849487305,330,1.0,3 +79330,12,1.0,2,1.659142017364502,331,1.0,3 +79331,12,1.0,2,1.3171463012695312,332,1.0,3 +79332,12,1.0,2,1.2301466464996338,333,1.0,3 +79333,12,1.0,2,1.6321423053741455,334,1.0,3 +79334,12,1.0,2,1.1971465349197388,335,0.0,3 +79335,12,1.0,2,1.703141450881958,336,0.0,3 +79336,12,1.0,2,1.4561445713043213,337,1.0,3 +79337,12,1.0,2,1.447144627571106,338,0.0,3 +79338,12,1.0,2,1.278146743774414,339,1.0,3 +79339,12,1.0,2,1.8111400604248047,340,0.0,3 +79340,12,1.0,2,1.5921428203582764,341,0.0,3 +79341,12,0.0,2,1.2071466445922852,342,0.0,3 +79342,12,0.0,2,1.4831441640853882,343,0.0,3 +79343,12,1.0,2,2.2601475715637207,344,0.0,3 +79344,12,1.0,2,1.9251384735107422,345,1.0,3 +79345,12,1.0,2,2.039137363433838,346,1.0,3 +79346,12,1.0,2,1.6901415586471558,347,0.0,3 +79347,12,0.0,2,1.839139699935913,348,0.0,3 +79348,12,0.0,2,1.372145652770996,349,0.0,3 +79349,12,1.0,2,2.316150188446045,350,0.0,3 +79350,12,0.0,2,1.1721465587615967,351,1.0,3 +79351,12,0.0,2,1.3211462497711182,352,1.0,3 +79352,12,0.0,2,1.3781455755233765,353,0.0,3 +79353,12,1.0,2,2.017137289047241,354,1.0,3 +79354,12,1.0,2,1.4141451120376587,355,1.0,3 +79355,12,1.0,2,1.4961440563201904,356,1.0,3 +79356,12,1.0,2,1.1891465187072754,357,1.0,3 +79357,12,1.0,2,1.4661444425582886,358,1.0,3 +79358,12,1.0,2,1.248146653175354,359,0.0,3 +79359,12,0.0,2,1.1701464653015137,360,1.0,3 +79360,12,0.0,2,1.251146674156189,361,0.0,3 +79361,12,1.0,2,1.8631393909454346,362,1.0,3 +79362,12,1.0,2,1.5351436138153076,363,0.0,3 +79363,12,1.0,2,2.026137351989746,364,1.0,3 +79364,12,1.0,2,1.425144910812378,365,1.0,3 +79365,12,1.0,2,1.6331422328948975,366,0.0,3 +79366,12,1.0,2,1.8131399154663086,367,1.0,3 +79367,12,1.0,2,2.065138578414917,368,1.0,3 +79368,12,1.0,2,1.3211462497711182,369,0.0,3 +79369,12,1.0,2,1.9721379280090332,370,0.0,3 +79370,12,0.0,2,1.2491466999053955,371,0.0,3 +79371,12,0.0,2,1.5741430521011353,372,0.0,3 +79372,12,0.0,2,1.4051451683044434,373,0.0,3 +79373,12,1.0,2,1.350145936012268,374,0.0,3 +79374,12,1.0,2,1.4851441383361816,375,1.0,3 +79375,12,1.0,2,1.3751455545425415,376,1.0,3 +79376,12,1.0,2,1.5301436185836792,377,1.0,3 +79377,12,1.0,2,1.563143253326416,378,1.0,3 +79378,12,1.0,2,1.5921428203582764,379,1.0,3 +79379,12,1.0,2,1.6181424856185913,380,0.0,3 +79380,12,0.0,2,1.8771390914916992,381,1.0,3 +79381,12,0.0,2,1.3451459407806396,382,0.0,3 +79382,12,0.0,2,1.7321410179138184,383,1.0,3 +79383,12,0.0,2,1.3091464042663574,384,0.0,3 +79384,12,1.0,2,1.6881415843963623,385,0.0,3 +79385,12,0.0,2,1.6501420736312866,386,0.0,3 +79386,12,0.0,2,1.6311423778533936,387,0.0,3 +79387,12,0.0,2,2.0041375160217285,388,1.0,3 +79388,12,0.0,2,1.2501466274261475,389,0.0,3 +79389,12,0.0,2,1.5261436700820923,390,0.0,3 +79390,12,0.0,2,1.8271398544311523,391,1.0,3 +79391,12,0.0,2,1.5041439533233643,392,1.0,3 +79392,12,0.0,2,1.3921453952789307,393,1.0,3 +79393,12,0.0,2,1.2071466445922852,394,0.0,3 +79394,12,0.0,2,1.9991376399993896,395,0.0,3 +79395,12,1.0,2,1.8991389274597168,396,0.0,3 +79396,12,1.0,2,1.5681431293487549,397,1.0,3 +79397,12,1.0,2,1.420145034790039,398,0.0,3 +79398,12,0.0,2,2.113140821456909,399,1.0,3 +79399,12,0.0,2,1.1911466121673584,400,0.0,3 +79400,12,0.0,2,1.3081464767456055,401,1.0,3 +79401,12,0.0,2,1.564143180847168,402,1.0,3 +79402,12,0.0,2,1.940138339996338,403,1.0,3 +79403,12,0.0,2,1.1681464910507202,404,1.0,3 +79404,12,0.0,2,2.031137228012085,405,1.0,3 +79405,12,0.0,2,1.377145528793335,406,0.0,3 +79406,12,1.0,2,1.8601393699645996,407,0.0,3 +79407,12,1.0,2,2.27314829826355,408,0.0,3 +79408,12,0.0,2,1.5231436491012573,409,1.0,3 +79409,12,0.0,2,1.373145580291748,410,1.0,3 +79410,12,0.0,2,1.1431465148925781,411,1.0,3 +79411,12,0.0,2,1.2431466579437256,412,1.0,3 +79412,12,1.0,2,1.4111450910568237,413,1.0,3 +79413,12,1.0,2,1.657141923904419,414,0.0,3 +79414,12,1.0,2,1.7641406059265137,415,0.0,3 +79415,12,0.0,2,1.8671393394470215,416,0.0,3 +79416,12,0.0,2,1.795140266418457,417,0.0,3 +79417,12,0.0,2,1.745140790939331,418,1.0,3 +79418,12,0.0,2,2.2021450996398926,419,0.0,3 +79419,12,0.0,2,1.395145297050476,420,1.0,3 +79420,12,0.0,2,1.5111438035964966,421,1.0,3 +79421,12,0.0,2,1.3621457815170288,422,0.0,3 +79422,12,1.0,2,1.4891440868377686,423,0.0,3 +79423,12,0.0,2,1.987137794494629,424,0.0,3 +79424,12,0.0,2,1.3381460905075073,425,1.0,3 +79425,12,0.0,2,1.49014413356781,426,0.0,3 +79426,12,0.0,2,1.5251436233520508,427,1.0,3 +79427,12,0.0,2,1.3161463737487793,428,0.0,3 +79428,12,0.0,2,2.098140239715576,429,0.0,3 +79429,12,0.0,2,1.4891440868377686,430,1.0,3 +79430,12,0.0,2,1.5781430006027222,431,1.0,3 +79431,12,0.0,2,1.608142614364624,432,0.0,3 +79432,12,0.0,2,1.7721405029296875,433,0.0,3 +79433,12,0.0,2,1.491144061088562,434,0.0,3 +79434,12,1.0,2,1.7311410903930664,435,1.0,3 +79435,12,1.0,2,1.450144648551941,436,0.0,3 +79436,12,1.0,2,1.3851454257965088,437,1.0,3 +79437,12,1.0,2,1.6391422748565674,438,0.0,3 +79438,12,1.0,2,1.3051464557647705,439,0.0,3 +79439,12,0.0,2,1.5321435928344727,440,0.0,3 +79440,12,1.0,2,1.5811429023742676,441,1.0,3 +79441,12,1.0,2,1.3081464767456055,442,0.0,3 +79442,12,0.0,2,1.4961440563201904,443,0.0,3 +79443,12,0.0,2,1.5041439533233643,444,0.0,3 +79444,12,0.0,2,1.611142635345459,445,1.0,3 +79445,12,0.0,2,1.3621457815170288,446,0.0,3 +79446,12,0.0,2,1.9731378555297852,447,0.0,3 +79447,12,0.0,2,1.2221466302871704,448,1.0,3 +79448,12,0.0,2,1.2371466159820557,449,0.0,3 +79449,12,0.0,2,1.2341465950012207,450,0.0,3 +79450,12,1.0,2,1.6481420993804932,451,1.0,3 +79451,12,1.0,2,1.2461466789245605,452,0.0,3 +79452,12,1.0,2,1.4991439580917358,453,1.0,3 +79453,12,1.0,2,1.613142490386963,454,1.0,3 +79454,12,0.0,2,1.8831391334533691,455,0.0,3 +79455,12,1.0,2,1.3371460437774658,456,0.0,3 +79456,12,0.0,2,1.6711418628692627,457,1.0,3 +79457,12,0.0,2,1.2121466398239136,458,1.0,3 +79458,12,0.0,2,1.5941427946090698,459,0.0,3 +79459,12,0.0,2,1.56514310836792,460,0.0,3 +79460,12,1.0,2,1.613142490386963,461,0.0,3 +79461,12,0.0,2,1.220146656036377,462,1.0,3 +79462,12,0.0,2,1.2291465997695923,463,1.0,3 +79463,12,0.0,2,1.1991466283798218,464,1.0,3 +79464,12,0.0,2,1.6261423826217651,465,0.0,3 +79465,12,0.0,2,2.078139305114746,466,1.0,3 +79466,12,0.0,2,1.3641457557678223,467,1.0,3 +79467,12,0.0,2,1.4641444683074951,468,1.0,3 +79468,12,0.0,2,1.3261462450027466,469,1.0,3 +79469,12,0.0,2,1.3351460695266724,470,0.0,3 +79470,12,0.0,2,1.4811441898345947,471,1.0,3 +79471,12,0.0,2,1.332146167755127,472,0.0,3 +79472,12,1.0,2,1.935138463973999,473,1.0,3 +79473,12,0.0,2,1.2691466808319092,474,0.0,3 +79474,12,1.0,2,1.5291435718536377,475,1.0,3 +79475,12,1.0,2,1.358145833015442,476,1.0,3 +79476,12,1.0,2,1.613142490386963,477,1.0,3 +79477,12,1.0,2,1.3231462240219116,478,0.0,3 +79478,12,1.0,2,1.4511445760726929,479,1.0,3 +79479,12,1.0,2,1.6541420221328735,480,1.0,3 +79480,12,1.0,2,1.5181437730789185,481,0.0,3 +79481,12,1.0,2,1.7791404724121094,482,1.0,3 +79482,12,1.0,2,1.8931388854980469,483,0.0,3 +79483,12,1.0,2,1.7711405754089355,484,0.0,3 +79484,12,0.0,2,1.841139554977417,485,1.0,3 +79485,12,0.0,2,1.4381448030471802,486,0.0,3 +79486,12,0.0,2,1.9781378507614136,487,0.0,3 +79487,12,1.0,2,2.0021376609802246,488,0.0,3 +79488,12,0.0,2,2.616164207458496,489,0.0,3 +79489,12,1.0,2,1.399145245552063,490,1.0,3 +79490,12,1.0,2,1.244146704673767,491,0.0,3 +79491,12,0.0,2,2.037137269973755,492,0.0,3 +79492,12,1.0,2,1.5501433610916138,493,1.0,3 +79493,12,1.0,2,1.4701443910598755,494,1.0,3 +79494,12,1.0,2,1.2651467323303223,495,0.0,3 +79495,12,1.0,2,1.4571444988250732,496,0.0,3 +79496,12,0.0,2,1.1381464004516602,497,0.0,3 +79497,12,1.0,2,1.7881402969360352,498,1.0,3 +79498,12,1.0,2,1.608142614364624,499,1.0,3 +79499,12,1.0,2,1.3131463527679443,500,0.0,3 +79500,13,1.0,0,2.3656487464904785,1,0.0,3 +79501,13,0.0,0,1.22664213180542,2,0.0,3 +79502,13,0.0,0,1.8226351737976074,3,0.0,3 +79503,13,0.0,0,1.8076353073120117,4,0.0,3 +79504,13,1.0,0,1.7116365432739258,5,1.0,3 +79505,13,1.0,0,1.4256402254104614,6,1.0,3 +79506,13,1.0,0,1.4116404056549072,7,0.0,3 +79507,13,0.0,0,1.2936419248580933,8,0.0,3 +79508,13,0.0,0,1.9026341438293457,9,0.0,3 +79509,13,1.0,0,1.4626398086547852,10,1.0,3 +79510,13,1.0,0,1.8706345558166504,11,1.0,3 +79511,13,1.0,0,1.514639139175415,12,1.0,3 +79512,13,1.0,0,1.1746420860290527,13,1.0,3 +79513,13,0.0,0,1.518639087677002,14,1.0,3 +79514,13,0.0,0,1.982633113861084,15,0.0,3 +79515,13,1.0,0,1.2816420793533325,16,1.0,3 +79516,13,1.0,0,1.419640302658081,17,1.0,3 +79517,13,1.0,0,1.2906420230865479,18,0.0,3 +79518,13,0.0,0,2.0536341667175293,19,0.0,3 +79519,13,1.0,0,1.584638237953186,20,1.0,3 +79520,13,1.0,0,1.3776408433914185,21,1.0,3 +79521,13,1.0,0,1.2206422090530396,22,0.0,3 +79522,13,0.0,0,2.243643283843994,23,0.0,3 +79523,13,0.0,0,1.3666410446166992,24,0.0,3 +79524,13,1.0,0,2.268644332885742,25,1.0,3 +79525,13,1.0,0,1.2966419458389282,26,1.0,3 +79526,13,1.0,0,1.2946419715881348,27,1.0,3 +79527,13,1.0,0,1.4556398391723633,28,0.0,3 +79528,13,1.0,0,1.6196377277374268,29,0.0,3 +79529,13,0.0,0,1.7736358642578125,30,0.0,3 +79530,13,0.0,0,1.4066405296325684,31,0.0,3 +79531,13,0.0,0,1.4076404571533203,32,1.0,3 +79532,13,0.0,0,1.5726383924484253,33,0.0,3 +79533,13,0.0,0,1.5956380367279053,34,0.0,3 +79534,13,0.0,0,1.7576360702514648,35,0.0,3 +79535,13,0.0,0,1.6856369972229004,36,0.0,3 +79536,13,1.0,0,1.4586398601531982,37,0.0,3 +79537,13,0.0,0,1.2236422300338745,38,0.0,3 +79538,13,1.0,0,1.5436387062072754,39,1.0,3 +79539,13,1.0,0,1.3206416368484497,40,1.0,3 +79540,13,1.0,0,1.5436387062072754,41,1.0,3 +79541,13,1.0,0,1.8346350193023682,42,1.0,3 +79542,13,1.0,0,1.2486422061920166,43,1.0,3 +79543,13,1.0,0,1.4036405086517334,44,1.0,3 +79544,13,1.0,0,1.9136340618133545,45,1.0,3 +79545,13,1.0,0,1.1506420373916626,46,1.0,3 +79546,13,1.0,0,1.1846420764923096,47,0.0,3 +79547,13,1.0,0,1.614637851715088,48,1.0,3 +79548,13,1.0,0,1.2586421966552734,49,1.0,3 +79549,13,1.0,0,1.4736396074295044,50,1.0,3 +79550,13,1.0,0,1.4516398906707764,51,0.0,3 +79551,13,1.0,0,1.5176390409469604,52,1.0,3 +79552,13,1.0,0,1.5086392164230347,53,1.0,3 +79553,13,1.0,0,1.562638521194458,54,1.0,3 +79554,13,1.0,0,1.259642243385315,55,1.0,3 +79555,13,1.0,0,1.5126391649246216,56,1.0,3 +79556,13,1.0,0,1.1696420907974243,57,0.0,3 +79557,13,0.0,0,1.2816420793533325,58,0.0,3 +79558,13,1.0,0,1.8626346588134766,59,1.0,3 +79559,13,1.0,0,1.4476399421691895,60,1.0,3 +79560,13,1.0,0,1.2366422414779663,61,1.0,3 +79561,13,1.0,0,1.724636435508728,62,1.0,3 +79562,13,1.0,0,1.2856420278549194,63,1.0,3 +79563,13,1.0,0,1.4076404571533203,64,1.0,3 +79564,13,1.0,0,1.1316419839859009,65,1.0,3 +79565,13,1.0,0,1.308641791343689,66,0.0,3 +79566,13,0.0,0,1.7636358737945557,67,1.0,3 +79567,13,0.0,0,1.6726371049880981,68,0.0,3 +79568,13,0.0,0,1.37864089012146,69,0.0,3 +79569,13,0.0,0,1.493639349937439,70,0.0,3 +79570,13,1.0,0,2.3316473960876465,71,1.0,3 +79571,13,1.0,0,1.4396400451660156,72,1.0,3 +79572,13,1.0,0,1.3416413068771362,73,1.0,3 +79573,13,1.0,0,1.4246402978897095,74,1.0,3 +79574,13,1.0,0,1.154642105102539,75,1.0,3 +79575,13,1.0,0,1.1596421003341675,76,1.0,3 +79576,13,1.0,0,1.4306402206420898,77,1.0,3 +79577,13,1.0,0,1.3546411991119385,78,0.0,3 +79578,13,0.0,0,1.2116421461105347,79,0.0,3 +79579,13,0.0,0,1.610637903213501,80,1.0,3 +79580,13,0.0,0,1.2646422386169434,81,0.0,3 +79581,13,0.0,0,1.2516422271728516,82,1.0,3 +79582,13,0.0,0,1.6626372337341309,83,0.0,3 +79583,13,1.0,0,2.3936500549316406,84,1.0,3 +79584,13,1.0,0,1.3296414613723755,85,0.0,3 +79585,13,0.0,0,1.158642053604126,86,0.0,3 +79586,13,0.0,0,1.1866421699523926,87,0.0,3 +79587,13,0.0,0,1.5776383876800537,88,0.0,3 +79588,13,0.0,0,1.5686384439468384,89,0.0,3 +79589,13,1.0,0,1.6526373624801636,90,1.0,3 +79590,13,1.0,0,1.86463463306427,91,0.0,3 +79591,13,1.0,0,1.705636739730835,92,1.0,3 +79592,13,0.0,0,1.5016392469406128,93,0.0,3 +79593,13,1.0,0,1.2416422367095947,94,1.0,3 +79594,13,1.0,0,1.4946393966674805,95,1.0,3 +79595,13,1.0,0,1.5266389846801758,96,1.0,3 +79596,13,1.0,0,1.3556411266326904,97,1.0,3 +79597,13,1.0,0,1.6856369972229004,98,1.0,3 +79598,13,1.0,0,1.2706422805786133,99,1.0,3 +79599,13,1.0,0,1.219642162322998,100,0.0,3 +79600,13,1.0,0,1.5346388816833496,101,1.0,3 +79601,13,1.0,0,1.3826408386230469,102,1.0,3 +79602,13,1.0,0,1.3186416625976562,103,1.0,3 +79603,13,1.0,0,1.9136340618133545,104,1.0,3 +79604,13,1.0,0,1.151642084121704,105,0.0,3 +79605,13,1.0,0,1.2996418476104736,106,1.0,3 +79606,13,1.0,0,1.2306421995162964,107,1.0,3 +79607,13,1.0,0,2.204641342163086,108,0.0,3 +79608,13,1.0,0,2.444652557373047,109,1.0,3 +79609,13,1.0,0,1.658637285232544,110,0.0,3 +79610,13,0.0,0,1.3396413326263428,111,0.0,3 +79611,13,0.0,0,1.1876420974731445,112,0.0,3 +79612,13,1.0,0,1.985633134841919,113,1.0,3 +79613,13,1.0,0,1.3856407403945923,114,1.0,3 +79614,13,1.0,0,1.4646397829055786,115,1.0,3 +79615,13,1.0,0,1.2326421737670898,116,1.0,3 +79616,13,1.0,0,1.8056354522705078,117,1.0,3 +79617,13,1.0,0,1.2296421527862549,118,1.0,3 +79618,13,1.0,0,1.3636410236358643,119,1.0,3 +79619,13,1.0,0,1.4096404314041138,120,1.0,3 +79620,13,1.0,0,1.2406421899795532,121,0.0,3 +79621,13,0.0,0,1.6026380062103271,122,0.0,3 +79622,13,1.0,0,1.7526360750198364,123,0.0,3 +79623,13,1.0,0,1.1846420764923096,124,1.0,3 +79624,13,1.0,0,1.418640375137329,125,1.0,3 +79625,13,1.0,0,1.1946420669555664,126,1.0,3 +79626,13,1.0,0,1.5326389074325562,127,1.0,3 +79627,13,1.0,0,1.1466419696807861,128,1.0,3 +79628,13,1.0,0,1.8736345767974854,129,1.0,3 +79629,13,0.0,0,1.4876394271850586,130,0.0,3 +79630,13,1.0,0,1.228642225265503,131,1.0,3 +79631,13,1.0,0,1.3596410751342773,132,1.0,3 +79632,13,1.0,0,1.1436420679092407,133,1.0,3 +79633,13,1.0,0,1.2116421461105347,134,1.0,3 +79634,13,1.0,0,1.3476412296295166,135,1.0,3 +79635,13,1.0,0,1.404640555381775,136,0.0,3 +79636,13,0.0,0,1.4616397619247437,137,0.0,3 +79637,13,1.0,0,1.4626398086547852,138,1.0,3 +79638,13,0.0,0,1.611637830734253,139,0.0,3 +79639,13,1.0,0,1.561638593673706,140,1.0,3 +79640,13,1.0,0,1.3846408128738403,141,1.0,3 +79641,13,1.0,0,1.474639654159546,142,1.0,3 +79642,13,1.0,0,1.195642113685608,143,0.0,3 +79643,13,0.0,0,1.6196377277374268,144,0.0,3 +79644,13,0.0,0,1.5756382942199707,145,0.0,3 +79645,13,1.0,0,1.4156403541564941,146,1.0,3 +79646,13,1.0,0,1.3846408128738403,147,1.0,3 +79647,13,1.0,0,1.4036405086517334,148,1.0,3 +79648,13,1.0,0,1.3696409463882446,149,0.0,3 +79649,13,0.0,0,1.5416388511657715,150,1.0,3 +79650,13,1.0,0,1.5436387062072754,151,1.0,3 +79651,13,0.0,0,1.334641456604004,152,0.0,3 +79652,13,1.0,0,1.7746357917785645,153,1.0,3 +79653,13,1.0,0,1.3436412811279297,154,1.0,3 +79654,13,1.0,0,1.4756395816802979,155,1.0,3 +79655,13,1.0,0,1.5486387014389038,156,1.0,3 +79656,13,0.0,0,1.3156416416168213,157,1.0,3 +79657,13,1.0,0,1.426640272140503,158,1.0,3 +79658,13,1.0,0,1.9906330108642578,159,1.0,3 +79659,13,0.0,0,1.3906407356262207,160,0.0,3 +79660,13,1.0,0,1.2206422090530396,161,1.0,3 +79661,13,1.0,0,1.3436412811279297,162,1.0,3 +79662,13,1.0,0,1.5736384391784668,163,1.0,3 +79663,13,1.0,0,1.1866421699523926,164,0.0,3 +79664,13,0.0,0,1.1466419696807861,165,0.0,3 +79665,13,0.0,0,1.1796420812606812,166,0.0,3 +79666,13,0.0,0,1.379640817642212,167,0.0,3 +79667,13,1.0,0,1.3726409673690796,168,1.0,3 +79668,13,1.0,0,1.334641456604004,169,1.0,3 +79669,13,1.0,0,1.2456421852111816,170,1.0,3 +79670,13,1.0,0,1.2966419458389282,171,1.0,3 +79671,13,0.0,0,1.6506373882293701,172,0.0,3 +79672,13,0.0,0,1.1996421813964844,173,1.0,3 +79673,13,0.0,0,1.8756344318389893,174,0.0,3 +79674,13,1.0,0,1.4776395559310913,175,1.0,3 +79675,13,1.0,0,2.0016329288482666,176,1.0,3 +79676,13,1.0,0,1.4696396589279175,177,1.0,3 +79677,13,1.0,0,1.3766409158706665,178,1.0,3 +79678,13,1.0,0,1.1656420230865479,179,1.0,3 +79679,13,1.0,0,1.282642126083374,180,1.0,3 +79680,13,0.0,0,1.1656420230865479,181,1.0,3 +79681,13,0.0,0,1.912634015083313,182,0.0,3 +79682,13,1.0,0,1.6216378211975098,183,1.0,3 +79683,13,1.0,0,1.2146421670913696,184,1.0,3 +79684,13,1.0,0,1.609637975692749,185,1.0,3 +79685,13,0.0,0,1.124642014503479,186,0.0,3 +79686,13,1.0,0,1.2956418991088867,187,1.0,3 +79687,13,1.0,0,1.701636791229248,188,1.0,3 +79688,13,1.0,0,1.3856407403945923,189,0.0,3 +79689,13,0.0,0,1.6566373109817505,190,1.0,3 +79690,13,0.0,0,1.8446348905563354,191,0.0,3 +79691,13,1.0,0,2.196640968322754,192,1.0,3 +79692,13,1.0,0,1.3726409673690796,193,1.0,3 +79693,13,1.0,0,1.7626359462738037,194,1.0,3 +79694,13,1.0,0,1.6266376972198486,195,0.0,3 +79695,13,1.0,0,1.7126365900039673,196,1.0,3 +79696,13,1.0,0,2.0096328258514404,197,1.0,3 +79697,13,1.0,0,1.6716370582580566,198,1.0,3 +79698,13,1.0,0,1.2156422138214111,199,1.0,3 +79699,13,1.0,0,1.5746383666992188,200,1.0,3 +79700,13,1.0,0,1.4986393451690674,201,1.0,3 +79701,13,1.0,0,1.3376413583755493,202,1.0,3 +79702,13,1.0,0,1.5856382846832275,203,1.0,3 +79703,13,1.0,0,1.5476386547088623,204,1.0,3 +79704,13,1.0,0,1.189642071723938,205,1.0,3 +79705,13,1.0,0,1.3176416158676147,206,0.0,3 +79706,13,0.0,0,1.7746357917785645,207,0.0,3 +79707,13,0.0,0,1.4396400451660156,208,0.0,3 +79708,13,0.0,0,2.703664779663086,209,0.0,3 +79709,13,0.0,0,1.6046379804611206,210,0.0,3 +79710,13,1.0,0,1.3616410493850708,211,1.0,3 +79711,13,1.0,0,1.374640941619873,212,1.0,3 +79712,13,1.0,0,1.4766396284103394,213,0.0,3 +79713,13,0.0,0,1.515639066696167,214,0.0,3 +79714,13,1.0,0,1.4876394271850586,215,0.0,3 +79715,13,1.0,0,1.3736408948898315,216,1.0,3 +79716,13,1.0,0,1.4776395559310913,217,1.0,3 +79717,13,1.0,0,1.4786396026611328,218,1.0,3 +79718,13,1.0,0,1.422640323638916,219,1.0,3 +79719,13,1.0,0,1.3626410961151123,220,1.0,3 +79720,13,1.0,0,1.2736421823501587,221,1.0,3 +79721,13,1.0,0,1.1396420001983643,222,1.0,3 +79722,13,1.0,0,1.2506422996520996,223,1.0,3 +79723,13,1.0,0,1.3366414308547974,224,1.0,3 +79724,13,1.0,0,1.4526399374008179,225,1.0,3 +79725,13,1.0,0,1.4076404571533203,226,1.0,3 +79726,13,1.0,0,1.3066418170928955,227,1.0,3 +79727,13,1.0,0,1.3126417398452759,228,0.0,3 +79728,13,0.0,0,1.6246377229690552,229,0.0,3 +79729,13,0.0,0,1.7706358432769775,230,0.0,3 +79730,13,0.0,0,1.3726409673690796,231,1.0,3 +79731,13,0.0,0,1.5716383457183838,232,0.0,3 +79732,13,1.0,0,1.7776358127593994,233,1.0,3 +79733,13,1.0,0,1.5276389122009277,234,1.0,3 +79734,13,1.0,0,1.632637619972229,235,1.0,3 +79735,13,1.0,0,1.5286389589309692,236,1.0,3 +79736,13,1.0,0,1.4256402254104614,237,1.0,3 +79737,13,1.0,0,1.7226364612579346,238,1.0,3 +79738,13,1.0,0,1.2446422576904297,239,1.0,3 +79739,13,1.0,0,1.5466387271881104,240,1.0,3 +79740,13,1.0,0,1.1716420650482178,241,1.0,3 +79741,13,1.0,0,1.3766409158706665,242,1.0,3 +79742,13,1.0,0,1.4356400966644287,243,1.0,3 +79743,13,1.0,0,1.2356421947479248,244,1.0,3 +79744,13,1.0,0,1.565638542175293,245,0.0,3 +79745,13,0.0,0,1.308641791343689,246,0.0,3 +79746,13,0.0,0,1.1146419048309326,247,0.0,3 +79747,13,0.0,0,1.8976342678070068,248,0.0,3 +79748,13,1.0,0,1.7676358222961426,249,1.0,3 +79749,13,1.0,0,1.396640658378601,250,1.0,3 +79750,13,1.0,0,1.3696409463882446,251,1.0,3 +79751,13,1.0,0,1.1566420793533325,252,1.0,3 +79752,13,1.0,0,1.4466400146484375,253,1.0,3 +79753,13,1.0,0,1.5756382942199707,254,1.0,3 +79754,13,1.0,0,1.1236419677734375,255,1.0,3 +79755,13,1.0,0,1.5476386547088623,256,1.0,3 +79756,13,1.0,0,1.5786383152008057,257,0.0,3 +79757,13,1.0,0,1.2716422080993652,258,1.0,3 +79758,13,1.0,0,1.3646410703659058,259,1.0,3 +79759,13,1.0,0,1.2406421899795532,260,0.0,3 +79760,13,1.0,0,1.149641990661621,261,0.0,3 +79761,13,1.0,0,1.6956367492675781,262,1.0,3 +79762,13,0.0,0,1.3376413583755493,263,0.0,3 +79763,13,1.0,0,1.6346375942230225,264,1.0,3 +79764,13,1.0,0,1.3066418170928955,265,1.0,3 +79765,13,1.0,0,1.5926381349563599,266,0.0,3 +79766,13,1.0,0,1.4466400146484375,267,1.0,3 +79767,13,1.0,0,1.309641718864441,268,0.0,3 +79768,13,0.0,0,1.5776383876800537,269,0.0,3 +79769,13,1.0,0,1.4686397314071655,270,1.0,3 +79770,13,0.0,0,2.0106327533721924,271,0.0,3 +79771,13,1.0,0,1.6086379289627075,272,1.0,3 +79772,13,1.0,0,1.331641435623169,273,1.0,3 +79773,13,0.0,0,1.2706422805786133,274,0.0,3 +79774,13,1.0,0,1.2676422595977783,275,1.0,3 +79775,13,1.0,0,1.419640302658081,276,1.0,3 +79776,13,1.0,0,1.3586411476135254,277,1.0,3 +79777,13,1.0,0,1.308641791343689,278,1.0,3 +79778,13,1.0,0,1.2156422138214111,279,1.0,3 +79779,13,1.0,0,1.3246415853500366,280,1.0,3 +79780,13,1.0,0,1.3106417655944824,281,1.0,3 +79781,13,1.0,0,1.253642201423645,282,1.0,3 +79782,13,1.0,0,1.2236422300338745,283,1.0,3 +79783,13,1.0,0,1.448639988899231,284,1.0,3 +79784,13,1.0,0,1.8156352043151855,285,1.0,3 +79785,13,1.0,0,1.5326389074325562,286,1.0,3 +79786,13,1.0,0,1.3656409978866577,287,0.0,3 +79787,13,1.0,0,1.1436420679092407,288,1.0,3 +79788,13,1.0,0,1.4616397619247437,289,1.0,3 +79789,13,1.0,0,1.449639916419983,290,1.0,3 +79790,13,1.0,0,1.301641821861267,291,1.0,3 +79791,13,1.0,0,1.1936421394348145,292,0.0,3 +79792,13,1.0,0,1.1966421604156494,293,1.0,3 +79793,13,1.0,0,2.021632671356201,294,1.0,3 +79794,13,1.0,0,1.2056421041488647,295,1.0,3 +79795,13,1.0,0,1.286642074584961,296,0.0,3 +79796,13,1.0,0,2.0116326808929443,297,1.0,3 +79797,13,1.0,0,1.3996405601501465,298,1.0,3 +79798,13,1.0,0,1.252642273902893,299,1.0,3 +79799,13,1.0,0,1.607637882232666,300,1.0,3 +79800,13,0.0,0,1.2906420230865479,301,0.0,3 +79801,13,1.0,0,1.4976392984390259,302,1.0,3 +79802,13,1.0,0,1.2586421966552734,303,1.0,3 +79803,13,1.0,0,1.2746422290802002,304,0.0,3 +79804,13,0.0,0,2.0366334915161133,305,0.0,3 +79805,13,0.0,0,1.3176416158676147,306,0.0,3 +79806,13,0.0,0,1.396640658378601,307,0.0,3 +79807,13,1.0,0,1.2436422109603882,308,1.0,3 +79808,13,1.0,0,1.4026405811309814,309,1.0,3 +79809,13,1.0,0,1.4296401739120483,310,1.0,3 +79810,13,1.0,0,1.2896419763565063,311,1.0,3 +79811,13,1.0,0,1.4146404266357422,312,1.0,3 +79812,13,1.0,0,1.189642071723938,313,0.0,3 +79813,13,0.0,0,1.2616422176361084,314,0.0,3 +79814,13,0.0,0,1.228642225265503,315,0.0,3 +79815,13,0.0,0,1.3546411991119385,316,0.0,3 +79816,13,0.0,0,1.5256390571594238,317,0.0,3 +79817,13,1.0,0,1.4996392726898193,318,1.0,3 +79818,13,1.0,0,1.496639370918274,319,1.0,3 +79819,13,1.0,0,1.3446413278579712,320,1.0,3 +79820,13,1.0,0,1.2296421527862549,321,1.0,3 +79821,13,1.0,0,1.5266389846801758,322,1.0,3 +79822,13,1.0,0,1.2386422157287598,323,1.0,3 +79823,13,1.0,0,1.5536386966705322,324,0.0,3 +79824,13,1.0,0,1.4156403541564941,325,1.0,3 +79825,13,1.0,0,1.8306350708007812,326,1.0,3 +79826,13,1.0,0,1.218642234802246,327,1.0,3 +79827,13,1.0,0,1.561638593673706,328,1.0,3 +79828,13,1.0,0,1.5516386032104492,329,1.0,3 +79829,13,1.0,0,1.653637409210205,330,1.0,3 +79830,13,1.0,0,1.3826408386230469,331,1.0,3 +79831,13,1.0,0,1.1166419982910156,332,1.0,3 +79832,13,1.0,0,1.9926329851150513,333,1.0,3 +79833,13,1.0,0,1.3886407613754272,334,1.0,3 +79834,13,1.0,0,1.255642294883728,335,0.0,3 +79835,13,1.0,0,1.9026341438293457,336,1.0,3 +79836,13,0.0,0,1.2156422138214111,337,0.0,3 +79837,13,1.0,0,1.5176390409469604,338,0.0,3 +79838,13,0.0,0,1.5496387481689453,339,0.0,3 +79839,13,0.0,0,1.3246415853500366,340,0.0,3 +79840,13,0.0,0,1.2746422290802002,341,0.0,3 +79841,13,1.0,0,1.9066340923309326,342,1.0,3 +79842,13,1.0,0,1.3606411218643188,343,1.0,3 +79843,13,1.0,0,1.3596410751342773,344,1.0,3 +79844,13,1.0,0,1.8826344013214111,345,1.0,3 +79845,13,1.0,0,1.4866394996643066,346,1.0,3 +79846,13,1.0,0,1.4466400146484375,347,1.0,3 +79847,13,1.0,0,1.4286402463912964,348,0.0,3 +79848,13,0.0,0,1.6866369247436523,349,0.0,3 +79849,13,1.0,0,1.3596410751342773,350,1.0,3 +79850,13,1.0,0,1.6636371612548828,351,1.0,3 +79851,13,1.0,0,1.9076340198516846,352,1.0,3 +79852,13,1.0,0,1.3126417398452759,353,1.0,3 +79853,13,1.0,0,1.348641276359558,354,1.0,3 +79854,13,1.0,0,1.422640323638916,355,1.0,3 +79855,13,1.0,0,1.515639066696167,356,1.0,3 +79856,13,1.0,0,1.1506420373916626,357,1.0,3 +79857,13,1.0,0,1.2406421899795532,358,1.0,3 +79858,13,1.0,0,1.466639757156372,359,1.0,3 +79859,13,1.0,0,1.1566420793533325,360,0.0,3 +79860,13,1.0,0,1.161642074584961,361,1.0,3 +79861,13,1.0,0,1.4436399936676025,362,0.0,3 +79862,13,0.0,0,1.379640817642212,363,1.0,3 +79863,13,0.0,0,1.4056404829025269,364,0.0,3 +79864,13,0.0,0,1.6376376152038574,365,0.0,3 +79865,13,0.0,0,1.1706421375274658,366,0.0,3 +79866,13,0.0,0,1.3946406841278076,367,0.0,3 +79867,13,1.0,0,1.2506422996520996,368,1.0,3 +79868,13,1.0,0,1.3326414823532104,369,1.0,3 +79869,13,1.0,0,1.1506420373916626,370,1.0,3 +79870,13,1.0,0,1.3126417398452759,371,1.0,3 +79871,13,1.0,0,1.4986393451690674,372,0.0,3 +79872,13,0.0,0,1.3876407146453857,373,0.0,3 +79873,13,1.0,0,1.4096404314041138,374,1.0,3 +79874,13,1.0,0,1.1446419954299927,375,0.0,3 +79875,13,0.0,0,2.0346333980560303,376,0.0,3 +79876,13,1.0,0,1.2126421928405762,377,0.0,3 +79877,13,1.0,0,1.607637882232666,378,0.0,3 +79878,13,0.0,0,1.937633752822876,379,0.0,3 +79879,13,1.0,0,1.9686332941055298,380,1.0,3 +79880,13,1.0,0,1.7346363067626953,381,1.0,3 +79881,13,1.0,0,1.558638572692871,382,0.0,3 +79882,13,1.0,0,1.301641821861267,383,1.0,3 +79883,13,0.0,0,1.3726409673690796,384,0.0,3 +79884,13,1.0,0,1.4916393756866455,385,1.0,3 +79885,13,1.0,0,1.2276421785354614,386,1.0,3 +79886,13,1.0,0,1.1836421489715576,387,1.0,3 +79887,13,1.0,0,1.2896419763565063,388,1.0,3 +79888,13,1.0,0,2.0446338653564453,389,1.0,3 +79889,13,1.0,0,1.4306402206420898,390,1.0,3 +79890,13,1.0,0,1.6446374654769897,391,0.0,3 +79891,13,1.0,0,1.8446348905563354,392,1.0,3 +79892,13,0.0,0,1.1046419143676758,393,0.0,3 +79893,13,1.0,0,1.2376421689987183,394,1.0,3 +79894,13,1.0,0,1.4026405811309814,395,1.0,3 +79895,13,1.0,0,1.8506348133087158,396,1.0,3 +79896,13,1.0,0,1.7486361265182495,397,1.0,3 +79897,13,1.0,0,1.6306376457214355,398,1.0,3 +79898,13,1.0,0,1.22664213180542,399,1.0,3 +79899,13,1.0,0,1.7336363792419434,400,1.0,3 +79900,13,1.0,0,1.3106417655944824,401,1.0,3 +79901,13,1.0,0,1.3816407918930054,402,0.0,3 +79902,13,1.0,0,1.3236415386199951,403,1.0,3 +79903,13,0.0,0,1.1836421489715576,404,0.0,3 +79904,13,0.0,0,1.0936418771743774,405,0.0,3 +79905,13,1.0,0,1.795635461807251,406,0.0,3 +79906,13,0.0,0,2.3406476974487305,407,0.0,3 +79907,13,0.0,0,1.9586334228515625,408,0.0,3 +79908,13,0.0,0,1.2396422624588013,409,0.0,3 +79909,13,1.0,0,1.37864089012146,410,1.0,3 +79910,13,1.0,0,2.24764347076416,411,1.0,3 +79911,13,1.0,0,1.5076391696929932,412,1.0,3 +79912,13,1.0,0,1.3836407661437988,413,1.0,3 +79913,13,1.0,0,1.278642177581787,414,1.0,3 +79914,13,0.0,0,1.5416388511657715,415,0.0,3 +79915,13,1.0,0,1.4806395769119263,416,1.0,3 +79916,13,1.0,0,1.5016392469406128,417,0.0,3 +79917,13,0.0,0,1.2776421308517456,418,0.0,3 +79918,13,0.0,0,1.6626372337341309,419,1.0,3 +79919,13,0.0,0,1.4356400966644287,420,1.0,3 +79920,13,0.0,0,1.9846330881118774,421,0.0,3 +79921,13,0.0,0,1.6426374912261963,422,1.0,3 +79922,13,0.0,0,1.6836369037628174,423,0.0,3 +79923,13,1.0,0,1.9806331396102905,424,1.0,3 +79924,13,1.0,0,2.0826356410980225,425,0.0,3 +79925,13,0.0,0,1.2666423320770264,426,0.0,3 +79926,13,0.0,0,1.3006418943405151,427,0.0,3 +79927,13,0.0,0,1.1446419954299927,428,0.0,3 +79928,13,1.0,0,1.7656359672546387,429,0.0,3 +79929,13,0.0,0,1.6486374139785767,430,0.0,3 +79930,13,0.0,0,1.8026354312896729,431,0.0,3 +79931,13,0.0,0,1.5906381607055664,432,1.0,3 +79932,13,0.0,0,1.1706421375274658,433,1.0,3 +79933,13,0.0,0,1.189642071723938,434,1.0,3 +79934,13,0.0,0,1.2156422138214111,435,0.0,3 +79935,13,0.0,0,1.628637671470642,436,1.0,3 +79936,13,0.0,0,1.1976420879364014,437,1.0,3 +79937,13,0.0,0,1.3646410703659058,438,0.0,3 +79938,13,1.0,0,1.463639736175537,439,1.0,3 +79939,13,1.0,0,1.632637619972229,440,1.0,3 +79940,13,1.0,0,1.397640585899353,441,1.0,3 +79941,13,1.0,0,2.0436339378356934,442,1.0,3 +79942,13,1.0,0,1.5436387062072754,443,1.0,3 +79943,13,1.0,0,1.353641152381897,444,1.0,3 +79944,13,0.0,0,1.1686420440673828,445,0.0,3 +79945,13,1.0,0,1.5266389846801758,446,1.0,3 +79946,13,1.0,0,1.2456421852111816,447,0.0,3 +79947,13,0.0,0,1.2426421642303467,448,0.0,3 +79948,13,0.0,0,1.6316375732421875,449,0.0,3 +79949,13,0.0,0,2.222642183303833,450,0.0,3 +79950,13,0.0,0,1.1966421604156494,451,0.0,3 +79951,13,1.0,0,2.1446385383605957,452,1.0,3 +79952,13,1.0,0,1.4166404008865356,453,1.0,3 +79953,13,1.0,0,1.6926368474960327,454,1.0,3 +79954,13,1.0,0,1.562638521194458,455,0.0,3 +79955,13,0.0,0,1.6926368474960327,456,0.0,3 +79956,13,0.0,0,1.88763427734375,457,0.0,3 +79957,13,0.0,0,1.6016380786895752,458,0.0,3 +79958,13,1.0,0,2.0346333980560303,459,1.0,3 +79959,13,1.0,0,1.3376413583755493,460,1.0,3 +79960,13,1.0,0,1.5536386966705322,461,1.0,3 +79961,13,1.0,0,1.375640869140625,462,1.0,3 +79962,13,1.0,0,1.7426362037658691,463,0.0,3 +79963,13,0.0,0,1.228642225265503,464,0.0,3 +79964,13,0.0,0,1.1836421489715576,465,0.0,3 +79965,13,0.0,0,1.7296364307403564,466,0.0,3 +79966,13,1.0,0,2.0916361808776855,467,1.0,3 +79967,13,1.0,0,1.4066405296325684,468,1.0,3 +79968,13,1.0,0,1.6696372032165527,469,1.0,3 +79969,13,1.0,0,1.7656359672546387,470,1.0,3 +79970,13,1.0,0,1.2336422204971313,471,0.0,3 +79971,13,0.0,0,1.3926407098770142,472,0.0,3 +79972,13,0.0,0,1.4886394739151,473,0.0,3 +79973,13,0.0,0,1.1776421070098877,474,0.0,3 +79974,13,1.0,0,2.0396337509155273,475,0.0,3 +79975,13,0.0,0,1.4536398649215698,476,0.0,3 +79976,13,1.0,0,1.4586398601531982,477,1.0,3 +79977,13,1.0,0,1.8826344013214111,478,1.0,3 +79978,13,1.0,0,1.6126378774642944,479,1.0,3 +79979,13,1.0,0,1.1666420698165894,480,1.0,3 +79980,13,1.0,0,1.3036417961120605,481,1.0,3 +79981,13,1.0,0,1.6406375169754028,482,1.0,3 +79982,13,1.0,0,1.397640585899353,483,1.0,3 +79983,13,1.0,0,1.3986406326293945,484,1.0,3 +79984,13,1.0,0,1.2936419248580933,485,1.0,3 +79985,13,1.0,0,1.3366414308547974,486,1.0,3 +79986,13,1.0,0,1.2146421670913696,487,1.0,3 +79987,13,1.0,0,1.426640272140503,488,0.0,3 +79988,13,1.0,0,1.2856420278549194,489,1.0,3 +79989,13,1.0,0,1.492639422416687,490,1.0,3 +79990,13,1.0,0,1.2986419200897217,491,1.0,3 +79991,13,1.0,0,1.259642243385315,492,1.0,3 +79992,13,0.0,0,1.5136390924453735,493,0.0,3 +79993,13,1.0,0,1.334641456604004,494,1.0,3 +79994,13,1.0,0,1.445639967918396,495,1.0,3 +79995,13,1.0,0,1.8066353797912598,496,1.0,3 +79996,13,1.0,0,1.2086421251296997,497,1.0,3 +79997,13,1.0,0,1.3616410493850708,498,1.0,3 +79998,13,1.0,0,1.154642105102539,499,1.0,3 +79999,13,1.0,0,1.449639916419983,500,1.0,3 +80000,13,0.0,1,1.5526386499404907,1,0.0,3 +80001,13,1.0,1,2.0996365547180176,2,0.0,3 +80002,13,0.0,1,1.607637882232666,3,0.0,3 +80003,13,1.0,1,1.5686384439468384,4,1.0,3 +80004,13,1.0,1,1.8556346893310547,5,1.0,3 +80005,13,1.0,1,1.5736384391784668,6,1.0,3 +80006,13,1.0,1,1.2076421976089478,7,1.0,3 +80007,13,1.0,1,1.1826421022415161,8,1.0,3 +80008,13,1.0,1,1.4376400709152222,9,1.0,3 +80009,13,1.0,1,1.259642243385315,10,1.0,3 +80010,13,1.0,1,1.5396387577056885,11,1.0,3 +80011,13,0.0,1,1.6686371564865112,12,0.0,3 +80012,13,1.0,1,1.5906381607055664,13,0.0,3 +80013,13,1.0,1,1.5106391906738281,14,1.0,3 +80014,13,1.0,1,1.34964120388031,15,0.0,3 +80015,13,1.0,1,1.185642123222351,16,1.0,3 +80016,13,1.0,1,1.4836394786834717,17,1.0,3 +80017,13,1.0,1,1.5426387786865234,18,1.0,3 +80018,13,1.0,1,1.6696372032165527,19,1.0,3 +80019,13,1.0,1,1.1436420679092407,20,0.0,3 +80020,13,1.0,1,2.3426477909088135,21,1.0,3 +80021,13,1.0,1,1.353641152381897,22,1.0,3 +80022,13,1.0,1,1.5176390409469604,23,0.0,3 +80023,13,0.0,1,1.2916419506072998,24,0.0,3 +80024,13,1.0,1,1.7236363887786865,25,1.0,3 +80025,13,1.0,1,1.6216378211975098,26,1.0,3 +80026,13,1.0,1,1.2666423320770264,27,1.0,3 +80027,13,1.0,1,1.7116365432739258,28,1.0,3 +80028,13,1.0,1,1.3026418685913086,29,0.0,3 +80029,13,0.0,1,1.9286338090896606,30,1.0,3 +80030,13,0.0,1,1.6916368007659912,31,0.0,3 +80031,13,1.0,1,1.9166339635849,32,1.0,3 +80032,13,1.0,1,1.470639705657959,33,0.0,3 +80033,13,0.0,1,1.5536386966705322,34,1.0,3 +80034,13,0.0,1,1.2666423320770264,35,0.0,3 +80035,13,0.0,1,2.0716352462768555,36,0.0,3 +80036,13,1.0,1,1.2846421003341675,37,1.0,3 +80037,13,1.0,1,1.3626410961151123,38,1.0,3 +80038,13,1.0,1,1.3926407098770142,39,0.0,3 +80039,13,0.0,1,1.9116339683532715,40,0.0,3 +80040,13,1.0,1,1.5806382894515991,41,0.0,3 +80041,13,0.0,1,1.5326389074325562,42,1.0,3 +80042,13,0.0,1,1.228642225265503,43,0.0,3 +80043,13,0.0,1,1.749636173248291,44,0.0,3 +80044,13,0.0,1,1.422640323638916,45,0.0,3 +80045,13,0.0,1,1.4256402254104614,46,0.0,3 +80046,13,1.0,1,1.7046366930007935,47,1.0,3 +80047,13,1.0,1,1.3556411266326904,48,1.0,3 +80048,13,1.0,1,1.5676383972167969,49,0.0,3 +80049,13,1.0,1,1.960633397102356,50,0.0,3 +80050,13,0.0,1,1.6026380062103271,51,0.0,3 +80051,13,0.0,1,1.3546411991119385,52,0.0,3 +80052,13,1.0,1,1.4166404008865356,53,1.0,3 +80053,13,0.0,1,1.1736420392990112,54,0.0,3 +80054,13,1.0,1,1.3446413278579712,55,0.0,3 +80055,13,0.0,1,1.4996392726898193,56,0.0,3 +80056,13,0.0,1,1.4816395044326782,57,0.0,3 +80057,13,1.0,1,1.9926329851150513,58,1.0,3 +80058,13,1.0,1,1.3066418170928955,59,1.0,3 +80059,13,1.0,1,1.3236415386199951,60,0.0,3 +80060,13,1.0,1,1.4396400451660156,61,0.0,3 +80061,13,1.0,1,1.8816344738006592,62,1.0,3 +80062,13,1.0,1,1.1336419582366943,63,0.0,3 +80063,13,0.0,1,1.6846369504928589,64,1.0,3 +80064,13,1.0,1,1.6226377487182617,65,1.0,3 +80065,13,0.0,1,1.3576411008834839,66,0.0,3 +80066,13,1.0,1,1.5426387786865234,67,1.0,3 +80067,13,1.0,1,1.7626359462738037,68,0.0,3 +80068,13,0.0,1,1.3596410751342773,69,1.0,3 +80069,13,0.0,1,1.154642105102539,70,0.0,3 +80070,13,0.0,1,1.4086405038833618,71,0.0,3 +80071,13,0.0,1,2.0046329498291016,72,0.0,3 +80072,13,0.0,1,1.6876368522644043,73,0.0,3 +80073,13,1.0,1,1.654637336730957,74,0.0,3 +80074,13,1.0,1,1.7786357402801514,75,1.0,3 +80075,13,1.0,1,1.5136390924453735,76,1.0,3 +80076,13,1.0,1,1.3196415901184082,77,1.0,3 +80077,13,1.0,1,1.521639108657837,78,1.0,3 +80078,13,1.0,1,1.3226416110992432,79,1.0,3 +80079,13,1.0,1,1.3116416931152344,80,0.0,3 +80080,13,1.0,1,1.493639349937439,81,1.0,3 +80081,13,1.0,1,1.9686332941055298,82,1.0,3 +80082,13,1.0,1,1.614637851715088,83,0.0,3 +80083,13,1.0,1,1.496639370918274,84,1.0,3 +80084,13,1.0,1,1.356641173362732,85,1.0,3 +80085,13,1.0,1,1.3816407918930054,86,1.0,3 +80086,13,1.0,1,1.356641173362732,87,1.0,3 +80087,13,1.0,1,1.1306419372558594,88,0.0,3 +80088,13,1.0,1,2.3466479778289795,89,1.0,3 +80089,13,1.0,1,1.471639633178711,90,1.0,3 +80090,13,1.0,1,1.301641821861267,91,0.0,3 +80091,13,0.0,1,1.32664155960083,92,0.0,3 +80092,13,0.0,1,1.2906420230865479,93,1.0,3 +80093,13,0.0,1,1.6606372594833374,94,1.0,3 +80094,13,0.0,1,1.353641152381897,95,0.0,3 +80095,13,1.0,1,1.5316388607025146,96,0.0,3 +80096,13,1.0,1,2.6566624641418457,97,1.0,3 +80097,13,1.0,1,1.6716370582580566,98,0.0,3 +80098,13,0.0,1,1.6896369457244873,99,0.0,3 +80099,13,1.0,1,1.3066418170928955,100,1.0,3 +80100,13,1.0,1,1.2476422786712646,101,0.0,3 +80101,13,0.0,1,1.4826395511627197,102,0.0,3 +80102,13,1.0,1,1.308641791343689,103,1.0,3 +80103,13,1.0,1,1.7606359720230103,104,1.0,3 +80104,13,1.0,1,1.22664213180542,105,0.0,3 +80105,13,1.0,1,2.0676350593566895,106,1.0,3 +80106,13,1.0,1,1.2406421899795532,107,1.0,3 +80107,13,1.0,1,1.1976420879364014,108,0.0,3 +80108,13,1.0,1,1.2946419715881348,109,0.0,3 +80109,13,1.0,1,1.8076353073120117,110,1.0,3 +80110,13,1.0,1,1.1606420278549194,111,1.0,3 +80111,13,1.0,1,1.4516398906707764,112,1.0,3 +80112,13,1.0,1,1.40164053440094,113,1.0,3 +80113,13,1.0,1,1.4076404571533203,114,1.0,3 +80114,13,1.0,1,1.6436374187469482,115,1.0,3 +80115,13,1.0,1,1.2666423320770264,116,0.0,3 +80116,13,0.0,1,2.491654872894287,117,1.0,3 +80117,13,0.0,1,1.1596421003341675,118,1.0,3 +80118,13,0.0,1,1.2336422204971313,119,0.0,3 +80119,13,0.0,1,1.6796369552612305,120,1.0,3 +80120,13,0.0,1,1.1206419467926025,121,1.0,3 +80121,13,0.0,1,1.252642273902893,122,0.0,3 +80122,13,1.0,1,1.705636739730835,123,1.0,3 +80123,13,0.0,1,1.356641173362732,124,0.0,3 +80124,13,0.0,1,1.37864089012146,125,0.0,3 +80125,13,1.0,1,1.287642002105713,126,1.0,3 +80126,13,1.0,1,1.2276421785354614,127,1.0,3 +80127,13,1.0,1,1.3206416368484497,128,1.0,3 +80128,13,1.0,1,1.489639401435852,129,1.0,3 +80129,13,1.0,1,1.4206403493881226,130,1.0,3 +80130,13,1.0,1,1.1736420392990112,131,1.0,3 +80131,13,1.0,1,1.1676421165466309,132,1.0,3 +80132,13,1.0,1,1.6416375637054443,133,0.0,3 +80133,13,0.0,1,1.4946393966674805,134,0.0,3 +80134,13,0.0,1,1.565638542175293,135,0.0,3 +80135,13,1.0,1,1.4586398601531982,136,1.0,3 +80136,13,1.0,1,1.3396413326263428,137,0.0,3 +80137,13,1.0,1,1.5686384439468384,138,1.0,3 +80138,13,0.0,1,1.54063880443573,139,0.0,3 +80139,13,1.0,1,1.613637924194336,140,1.0,3 +80140,13,1.0,1,1.3876407146453857,141,1.0,3 +80141,13,1.0,1,1.3146417140960693,142,1.0,3 +80142,13,1.0,1,1.4776395559310913,143,1.0,3 +80143,13,1.0,1,1.2326421737670898,144,1.0,3 +80144,13,1.0,1,1.3396413326263428,145,1.0,3 +80145,13,1.0,1,1.3416413068771362,146,0.0,3 +80146,13,0.0,1,1.334641456604004,147,0.0,3 +80147,13,1.0,1,1.423640251159668,148,1.0,3 +80148,13,1.0,1,1.283642053604126,149,1.0,3 +80149,13,1.0,1,1.3646410703659058,150,0.0,3 +80150,13,1.0,1,1.816635251045227,151,0.0,3 +80151,13,1.0,1,2.1046366691589355,152,1.0,3 +80152,13,1.0,1,1.728636384010315,153,1.0,3 +80153,13,1.0,1,1.496639370918274,154,1.0,3 +80154,13,1.0,1,1.3426413536071777,155,0.0,3 +80155,13,0.0,1,1.2976418733596802,156,0.0,3 +80156,13,1.0,1,1.6346375942230225,157,1.0,3 +80157,13,1.0,1,1.4176403284072876,158,1.0,3 +80158,13,1.0,1,1.4606398344039917,159,1.0,3 +80159,13,1.0,1,1.400640606880188,160,0.0,3 +80160,13,1.0,1,1.9486335515975952,161,0.0,3 +80161,13,0.0,1,1.54063880443573,162,1.0,3 +80162,13,0.0,1,1.1016418933868408,163,0.0,3 +80163,13,0.0,1,1.515639066696167,164,1.0,3 +80164,13,0.0,1,1.090641975402832,165,0.0,3 +80165,13,1.0,1,1.654637336730957,166,0.0,3 +80166,13,1.0,1,1.1466419696807861,167,0.0,3 +80167,13,1.0,1,2.0066328048706055,168,1.0,3 +80168,13,1.0,1,1.3236415386199951,169,1.0,3 +80169,13,1.0,1,1.5226390361785889,170,1.0,3 +80170,13,1.0,1,1.654637336730957,171,0.0,3 +80171,13,0.0,1,1.9516334533691406,172,1.0,3 +80172,13,1.0,1,1.6946368217468262,173,1.0,3 +80173,13,0.0,1,1.255642294883728,174,0.0,3 +80174,13,0.0,1,1.1876420974731445,175,0.0,3 +80175,13,1.0,1,1.3586411476135254,176,1.0,3 +80176,13,1.0,1,1.3246415853500366,177,1.0,3 +80177,13,1.0,1,1.2686423063278198,178,1.0,3 +80178,13,1.0,1,1.2896419763565063,179,1.0,3 +80179,13,1.0,1,1.4406400918960571,180,1.0,3 +80180,13,0.0,1,1.7146365642547607,181,1.0,3 +80181,13,0.0,1,2.0416336059570312,182,0.0,3 +80182,13,1.0,1,1.1966421604156494,183,1.0,3 +80183,13,1.0,1,1.3696409463882446,184,1.0,3 +80184,13,1.0,1,1.3356413841247559,185,1.0,3 +80185,13,1.0,1,1.4426400661468506,186,1.0,3 +80186,13,0.0,1,1.9396336078643799,187,0.0,3 +80187,13,1.0,1,1.255642294883728,188,1.0,3 +80188,13,1.0,1,1.287642002105713,189,1.0,3 +80189,13,1.0,1,1.5316388607025146,190,1.0,3 +80190,13,1.0,1,1.2416422367095947,191,1.0,3 +80191,13,1.0,1,1.4386401176452637,192,0.0,3 +80192,13,0.0,1,1.7146365642547607,193,1.0,3 +80193,13,0.0,1,1.2726422548294067,194,0.0,3 +80194,13,1.0,1,1.2606422901153564,195,1.0,3 +80195,13,1.0,1,1.5756382942199707,196,1.0,3 +80196,13,1.0,1,1.5736384391784668,197,1.0,3 +80197,13,1.0,1,1.3426413536071777,198,0.0,3 +80198,13,1.0,1,1.930633783340454,199,1.0,3 +80199,13,1.0,1,1.6416375637054443,200,1.0,3 +80200,13,1.0,1,1.515639066696167,201,1.0,3 +80201,13,1.0,1,1.6396374702453613,202,1.0,3 +80202,13,1.0,1,1.5526386499404907,203,0.0,3 +80203,13,0.0,1,1.32664155960083,204,1.0,3 +80204,13,0.0,1,1.3636410236358643,205,0.0,3 +80205,13,1.0,1,1.657637357711792,206,1.0,3 +80206,13,1.0,1,2.0156326293945312,207,0.0,3 +80207,13,1.0,1,1.4326401948928833,208,0.0,3 +80208,13,0.0,1,1.4346401691436768,209,1.0,3 +80209,13,0.0,1,1.279642105102539,210,0.0,3 +80210,13,0.0,1,1.2176421880722046,211,0.0,3 +80211,13,0.0,1,1.698636770248413,212,1.0,3 +80212,13,0.0,1,1.3576411008834839,213,0.0,3 +80213,13,1.0,1,1.4556398391723633,214,1.0,3 +80214,13,1.0,1,2.1466386318206787,215,1.0,3 +80215,13,1.0,1,1.8616347312927246,216,0.0,3 +80216,13,1.0,1,1.558638572692871,217,1.0,3 +80217,13,1.0,1,1.4646397829055786,218,1.0,3 +80218,13,1.0,1,1.3126417398452759,219,0.0,3 +80219,13,0.0,1,1.6016380786895752,220,0.0,3 +80220,13,1.0,1,1.1876420974731445,221,1.0,3 +80221,13,1.0,1,1.2406421899795532,222,1.0,3 +80222,13,1.0,1,1.2446422576904297,223,1.0,3 +80223,13,1.0,1,1.1836421489715576,224,1.0,3 +80224,13,1.0,1,1.331641435623169,225,1.0,3 +80225,13,1.0,1,1.3476412296295166,226,1.0,3 +80226,13,1.0,1,1.231642246246338,227,1.0,3 +80227,13,1.0,1,1.3926407098770142,228,1.0,3 +80228,13,1.0,1,1.1736420392990112,229,0.0,3 +80229,13,0.0,1,1.2046421766281128,230,0.0,3 +80230,13,1.0,1,1.6736371517181396,231,1.0,3 +80231,13,1.0,1,1.3006418943405151,232,1.0,3 +80232,13,1.0,1,1.2906420230865479,233,1.0,3 +80233,13,1.0,1,1.4466400146484375,234,1.0,3 +80234,13,1.0,1,1.4756395816802979,235,1.0,3 +80235,13,1.0,1,1.562638521194458,236,0.0,3 +80236,13,0.0,1,1.3916406631469727,237,1.0,3 +80237,13,0.0,1,1.4336401224136353,238,0.0,3 +80238,13,0.0,1,1.252642273902893,239,0.0,3 +80239,13,0.0,1,1.8086353540420532,240,1.0,3 +80240,13,0.0,1,1.3066418170928955,241,1.0,3 +80241,13,0.0,1,1.860634684562683,242,0.0,3 +80242,13,1.0,1,1.515639066696167,243,1.0,3 +80243,13,1.0,1,1.3916406631469727,244,0.0,3 +80244,13,0.0,1,1.5496387481689453,245,0.0,3 +80245,13,0.0,1,1.1416419744491577,246,0.0,3 +80246,13,0.0,1,1.4836394786834717,247,0.0,3 +80247,13,1.0,1,1.2346422672271729,248,1.0,3 +80248,13,1.0,1,1.282642126083374,249,1.0,3 +80249,13,1.0,1,1.5786383152008057,250,1.0,3 +80250,13,1.0,1,1.375640869140625,251,1.0,3 +80251,13,1.0,1,1.1636420488357544,252,0.0,3 +80252,13,1.0,1,2.1116371154785156,253,1.0,3 +80253,13,1.0,1,1.519639015197754,254,1.0,3 +80254,13,1.0,1,1.305641770362854,255,0.0,3 +80255,13,0.0,1,1.6356375217437744,256,0.0,3 +80256,13,1.0,1,1.753636121749878,257,0.0,3 +80257,13,1.0,1,1.3216415643692017,258,1.0,3 +80258,13,1.0,1,1.396640658378601,259,0.0,3 +80259,13,1.0,1,2.432651996612549,260,1.0,3 +80260,13,1.0,1,1.5716383457183838,261,1.0,3 +80261,13,1.0,1,1.216642141342163,262,0.0,3 +80262,13,0.0,1,1.2546422481536865,263,1.0,3 +80263,13,0.0,1,1.7156364917755127,264,1.0,3 +80264,13,0.0,1,1.603637933731079,265,0.0,3 +80265,13,0.0,1,1.4436399936676025,266,1.0,3 +80266,13,0.0,1,1.701636791229248,267,1.0,3 +80267,13,0.0,1,1.3736408948898315,268,0.0,3 +80268,13,0.0,1,1.4796395301818848,269,0.0,3 +80269,13,1.0,1,1.6086379289627075,270,1.0,3 +80270,13,1.0,1,1.3026418685913086,271,1.0,3 +80271,13,1.0,1,1.287642002105713,272,0.0,3 +80272,13,0.0,1,1.1806421279907227,273,0.0,3 +80273,13,1.0,1,1.56363844871521,274,1.0,3 +80274,13,1.0,1,1.3156416416168213,275,1.0,3 +80275,13,1.0,1,1.6166378259658813,276,1.0,3 +80276,13,1.0,1,1.661637306213379,277,0.0,3 +80277,13,0.0,1,1.3286415338516235,278,0.0,3 +80278,13,1.0,1,1.3626410961151123,279,0.0,3 +80279,13,0.0,1,1.1206419467926025,280,0.0,3 +80280,13,1.0,1,1.492639422416687,281,0.0,3 +80281,13,0.0,1,1.4576398134231567,282,1.0,3 +80282,13,0.0,1,1.5756382942199707,283,0.0,3 +80283,13,1.0,1,2.2806448936462402,284,1.0,3 +80284,13,1.0,1,1.6456375122070312,285,1.0,3 +80285,13,1.0,1,1.2576422691345215,286,0.0,3 +80286,13,0.0,1,1.5386388301849365,287,0.0,3 +80287,13,1.0,1,1.703636646270752,288,1.0,3 +80288,13,1.0,1,1.2656422853469849,289,1.0,3 +80289,13,1.0,1,1.5576386451721191,290,0.0,3 +80290,13,1.0,1,1.1996421813964844,291,1.0,3 +80291,13,1.0,1,1.3676409721374512,292,0.0,3 +80292,13,1.0,1,1.676637053489685,293,1.0,3 +80293,13,1.0,1,1.3646410703659058,294,1.0,3 +80294,13,0.0,1,1.492639422416687,295,0.0,3 +80295,13,1.0,1,1.628637671470642,296,0.0,3 +80296,13,0.0,1,1.651637315750122,297,1.0,3 +80297,13,0.0,1,1.3876407146453857,298,0.0,3 +80298,13,1.0,1,1.5466387271881104,299,1.0,3 +80299,13,1.0,1,1.253642201423645,300,1.0,3 +80300,13,1.0,1,1.4616397619247437,301,1.0,3 +80301,13,1.0,1,1.4116404056549072,302,1.0,3 +80302,13,0.0,1,1.9946329593658447,303,1.0,3 +80303,13,0.0,1,1.9646333456039429,304,0.0,3 +80304,13,1.0,1,1.8096354007720947,305,0.0,3 +80305,13,1.0,1,2.1436386108398438,306,1.0,3 +80306,13,1.0,1,1.4946393966674805,307,1.0,3 +80307,13,1.0,1,1.2306421995162964,308,0.0,3 +80308,13,1.0,1,1.7836356163024902,309,1.0,3 +80309,13,1.0,1,1.5416388511657715,310,0.0,3 +80310,13,1.0,1,2.0536341667175293,311,1.0,3 +80311,13,1.0,1,1.659637212753296,312,0.0,3 +80312,13,0.0,1,1.2916419506072998,313,0.0,3 +80313,13,0.0,1,1.127642035484314,314,1.0,3 +80314,13,0.0,1,1.2456421852111816,315,0.0,3 +80315,13,1.0,1,1.8096354007720947,316,1.0,3 +80316,13,1.0,1,1.4816395044326782,317,1.0,3 +80317,13,1.0,1,1.4616397619247437,318,0.0,3 +80318,13,0.0,1,1.5916380882263184,319,0.0,3 +80319,13,0.0,1,1.1846420764923096,320,0.0,3 +80320,13,0.0,1,1.1126419305801392,321,0.0,3 +80321,13,1.0,1,1.222642183303833,322,1.0,3 +80322,13,1.0,1,1.9296338558197021,323,1.0,3 +80323,13,1.0,1,1.162642002105713,324,1.0,3 +80324,13,1.0,1,1.2546422481536865,325,1.0,3 +80325,13,1.0,1,1.3816407918930054,326,1.0,3 +80326,13,1.0,1,1.463639736175537,327,1.0,3 +80327,13,1.0,1,1.219642162322998,328,1.0,3 +80328,13,1.0,1,1.445639967918396,329,1.0,3 +80329,13,1.0,1,1.1826421022415161,330,1.0,3 +80330,13,1.0,1,1.188642144203186,331,1.0,3 +80331,13,1.0,1,1.191642165184021,332,0.0,3 +80332,13,1.0,1,1.7796356678009033,333,1.0,3 +80333,13,1.0,1,1.4566398859024048,334,1.0,3 +80334,13,1.0,1,1.40164053440094,335,1.0,3 +80335,13,1.0,1,1.25664222240448,336,1.0,3 +80336,13,1.0,1,1.449639916419983,337,1.0,3 +80337,13,1.0,1,1.2306421995162964,338,1.0,3 +80338,13,1.0,1,1.3616410493850708,339,1.0,3 +80339,13,1.0,1,1.426640272140503,340,0.0,3 +80340,13,1.0,1,1.9276337623596191,341,0.0,3 +80341,13,0.0,1,1.4576398134231567,342,0.0,3 +80342,13,1.0,1,1.6846369504928589,343,1.0,3 +80343,13,0.0,1,1.5506386756896973,344,0.0,3 +80344,13,0.0,1,1.6956367492675781,345,1.0,3 +80345,13,1.0,1,2.6046600341796875,346,1.0,3 +80346,13,0.0,1,1.5736384391784668,347,0.0,3 +80347,13,1.0,1,1.5826382637023926,348,0.0,3 +80348,13,0.0,1,1.7116365432739258,349,0.0,3 +80349,13,0.0,1,1.4556398391723633,350,0.0,3 +80350,13,0.0,1,1.1906421184539795,351,0.0,3 +80351,13,1.0,1,1.3726409673690796,352,1.0,3 +80352,13,1.0,1,1.3116416931152344,353,1.0,3 +80353,13,1.0,1,1.4026405811309814,354,1.0,3 +80354,13,1.0,1,2.0316333770751953,355,1.0,3 +80355,13,1.0,1,1.3006418943405151,356,0.0,3 +80356,13,1.0,1,1.3226416110992432,357,1.0,3 +80357,13,1.0,1,1.2506422996520996,358,1.0,3 +80358,13,1.0,1,1.3126417398452759,359,1.0,3 +80359,13,1.0,1,1.4916393756866455,360,0.0,3 +80360,13,0.0,1,1.4096404314041138,361,0.0,3 +80361,13,0.0,1,1.751636028289795,362,0.0,3 +80362,13,1.0,1,1.6486374139785767,363,1.0,3 +80363,13,1.0,1,1.4096404314041138,364,0.0,3 +80364,13,1.0,1,1.6376376152038574,365,1.0,3 +80365,13,1.0,1,1.4876394271850586,366,0.0,3 +80366,13,1.0,1,1.6456375122070312,367,1.0,3 +80367,13,1.0,1,1.4066405296325684,368,0.0,3 +80368,13,0.0,1,2.0006327629089355,369,0.0,3 +80369,13,0.0,1,1.3656409978866577,370,0.0,3 +80370,13,0.0,1,1.2446422576904297,371,0.0,3 +80371,13,0.0,1,2.0026328563690186,372,1.0,3 +80372,13,0.0,1,1.283642053604126,373,1.0,3 +80373,13,0.0,1,1.3336414098739624,374,0.0,3 +80374,13,0.0,1,1.2936419248580933,375,0.0,3 +80375,13,0.0,1,1.2736421823501587,376,0.0,3 +80376,13,1.0,1,1.4376400709152222,377,1.0,3 +80377,13,1.0,1,1.6226377487182617,378,0.0,3 +80378,13,0.0,1,1.2436422109603882,379,0.0,3 +80379,13,1.0,1,1.282642126083374,380,1.0,3 +80380,13,1.0,1,1.4136403799057007,381,1.0,3 +80381,13,1.0,1,1.8736345767974854,382,0.0,3 +80382,13,1.0,1,1.4756395816802979,383,1.0,3 +80383,13,1.0,1,1.2706422805786133,384,1.0,3 +80384,13,1.0,1,1.2056421041488647,385,0.0,3 +80385,13,0.0,1,2.3616485595703125,386,0.0,3 +80386,13,1.0,1,1.4346401691436768,387,0.0,3 +80387,13,1.0,1,2.1236376762390137,388,0.0,3 +80388,13,0.0,1,1.9586334228515625,389,0.0,3 +80389,13,0.0,1,1.4836394786834717,390,1.0,3 +80390,13,0.0,1,1.4916393756866455,391,0.0,3 +80391,13,0.0,1,1.3296414613723755,392,0.0,3 +80392,13,1.0,1,2.3486480712890625,393,0.0,3 +80393,13,1.0,1,1.6176378726959229,394,0.0,3 +80394,13,1.0,1,1.636637568473816,395,0.0,3 +80395,13,1.0,1,2.3526482582092285,396,0.0,3 +80396,13,0.0,1,1.3896406888961792,397,0.0,3 +80397,13,0.0,1,1.930633783340454,398,0.0,3 +80398,13,0.0,1,1.400640606880188,399,0.0,3 +80399,13,0.0,1,1.2036421298980713,400,0.0,3 +80400,13,0.0,1,1.5436387062072754,401,0.0,3 +80401,13,0.0,1,2.0396337509155273,402,0.0,3 +80402,13,0.0,1,1.7856357097625732,403,0.0,3 +80403,13,1.0,1,1.1446419954299927,404,0.0,3 +80404,13,1.0,1,1.8536348342895508,405,0.0,3 +80405,13,1.0,1,2.0986363887786865,406,1.0,3 +80406,13,1.0,1,1.3176416158676147,407,1.0,3 +80407,13,1.0,1,1.868634581565857,408,1.0,3 +80408,13,1.0,1,1.9066340923309326,409,0.0,3 +80409,13,1.0,1,1.7836356163024902,410,1.0,3 +80410,13,1.0,1,1.2506422996520996,411,1.0,3 +80411,13,1.0,1,1.492639422416687,412,0.0,3 +80412,13,0.0,1,1.7966355085372925,413,0.0,3 +80413,13,1.0,1,1.3326414823532104,414,1.0,3 +80414,13,0.0,1,1.2416422367095947,415,1.0,3 +80415,13,1.0,1,1.4336401224136353,416,1.0,3 +80416,13,0.0,1,1.4986393451690674,417,0.0,3 +80417,13,1.0,1,1.3336414098739624,418,0.0,3 +80418,13,1.0,1,1.7296364307403564,419,1.0,3 +80419,13,1.0,1,1.216642141342163,420,1.0,3 +80420,13,0.0,1,1.124642014503479,421,0.0,3 +80421,13,1.0,1,1.4736396074295044,422,1.0,3 +80422,13,1.0,1,1.255642294883728,423,0.0,3 +80423,13,0.0,1,1.2726422548294067,424,1.0,3 +80424,13,0.0,1,1.1826421022415161,425,1.0,3 +80425,13,0.0,1,1.2606422901153564,426,1.0,3 +80426,13,0.0,1,1.2056421041488647,427,1.0,3 +80427,13,0.0,1,1.1566420793533325,428,0.0,3 +80428,13,0.0,1,1.2896419763565063,429,0.0,3 +80429,13,1.0,1,1.8886343240737915,430,1.0,3 +80430,13,1.0,1,1.5526386499404907,431,0.0,3 +80431,13,1.0,1,1.558638572692871,432,1.0,3 +80432,13,1.0,1,1.1536420583724976,433,1.0,3 +80433,13,1.0,1,1.2986419200897217,434,1.0,3 +80434,13,1.0,1,1.2406421899795532,435,0.0,3 +80435,13,0.0,1,1.3516411781311035,436,1.0,3 +80436,13,0.0,1,1.287642002105713,437,0.0,3 +80437,13,1.0,1,1.3006418943405151,438,1.0,3 +80438,13,1.0,1,1.286642074584961,439,1.0,3 +80439,13,1.0,1,1.8086353540420532,440,0.0,3 +80440,13,0.0,1,1.9076340198516846,441,1.0,3 +80441,13,0.0,1,1.7596359252929688,442,1.0,3 +80442,13,1.0,1,1.4056404829025269,443,1.0,3 +80443,13,0.0,1,1.2736421823501587,444,1.0,3 +80444,13,0.0,1,1.4646397829055786,445,0.0,3 +80445,13,1.0,1,1.423640251159668,446,0.0,3 +80446,13,1.0,1,1.5816383361816406,447,1.0,3 +80447,13,1.0,1,1.3136416673660278,448,1.0,3 +80448,13,1.0,1,1.3586411476135254,449,1.0,3 +80449,13,1.0,1,1.5326389074325562,450,1.0,3 +80450,13,1.0,1,1.3066418170928955,451,1.0,3 +80451,13,1.0,1,1.4556398391723633,452,1.0,3 +80452,13,0.0,1,1.4976392984390259,453,0.0,3 +80453,13,1.0,1,1.2976418733596802,454,0.0,3 +80454,13,1.0,1,1.8696346282958984,455,1.0,3 +80455,13,1.0,1,1.379640817642212,456,1.0,3 +80456,13,1.0,1,1.34964120388031,457,1.0,3 +80457,13,1.0,1,1.400640606880188,458,1.0,3 +80458,13,1.0,1,1.252642273902893,459,1.0,3 +80459,13,1.0,1,1.2906420230865479,460,0.0,3 +80460,13,0.0,1,1.5036392211914062,461,0.0,3 +80461,13,0.0,1,1.2766422033309937,462,1.0,3 +80462,13,0.0,1,1.5676383972167969,463,0.0,3 +80463,13,1.0,1,1.489639401435852,464,1.0,3 +80464,13,1.0,1,1.8496348857879639,465,1.0,3 +80465,13,1.0,1,1.253642201423645,466,1.0,3 +80466,13,1.0,1,1.3906407356262207,467,1.0,3 +80467,13,1.0,1,1.400640606880188,468,1.0,3 +80468,13,1.0,1,1.4086405038833618,469,0.0,3 +80469,13,1.0,1,1.985633134841919,470,0.0,3 +80470,13,0.0,1,1.1906421184539795,471,0.0,3 +80471,13,0.0,1,1.9216339588165283,472,0.0,3 +80472,13,1.0,1,1.5976381301879883,473,1.0,3 +80473,13,1.0,1,2.1436386108398438,474,1.0,3 +80474,13,1.0,1,1.2976418733596802,475,1.0,3 +80475,13,1.0,1,1.5676383972167969,476,1.0,3 +80476,13,1.0,1,1.352641224861145,477,0.0,3 +80477,13,1.0,1,1.7566360235214233,478,1.0,3 +80478,13,1.0,1,1.3166416883468628,479,1.0,3 +80479,13,1.0,1,1.2156422138214111,480,1.0,3 +80480,13,1.0,1,1.2076421976089478,481,1.0,3 +80481,13,1.0,1,1.6026380062103271,482,1.0,3 +80482,13,1.0,1,1.5496387481689453,483,1.0,3 +80483,13,1.0,1,1.7156364917755127,484,1.0,3 +80484,13,1.0,1,1.2856420278549194,485,0.0,3 +80485,13,0.0,1,1.6486374139785767,486,0.0,3 +80486,13,0.0,1,1.655637264251709,487,0.0,3 +80487,13,1.0,1,1.4086405038833618,488,1.0,3 +80488,13,0.0,1,1.2206422090530396,489,0.0,3 +80489,13,1.0,1,1.4776395559310913,490,1.0,3 +80490,13,1.0,1,1.2086421251296997,491,1.0,3 +80491,13,1.0,1,1.1476420164108276,492,1.0,3 +80492,13,1.0,1,1.255642294883728,493,0.0,3 +80493,13,1.0,1,1.7816357612609863,494,1.0,3 +80494,13,1.0,1,1.3856407403945923,495,0.0,3 +80495,13,0.0,1,1.4356400966644287,496,0.0,3 +80496,13,1.0,1,1.2056421041488647,497,1.0,3 +80497,13,0.0,1,1.1806421279907227,498,1.0,3 +80498,13,1.0,1,1.5276389122009277,499,1.0,3 +80499,13,1.0,1,1.7176365852355957,500,1.0,3 +80500,13,1.0,2,1.8816344738006592,1,1.0,3 +80501,13,1.0,2,1.2646422386169434,2,0.0,3 +80502,13,0.0,2,1.4146404266357422,3,1.0,3 +80503,13,0.0,2,1.2236422300338745,4,0.0,3 +80504,13,0.0,2,1.445639967918396,5,0.0,3 +80505,13,0.0,2,1.7296364307403564,6,1.0,3 +80506,13,0.0,2,1.2396422624588013,7,1.0,3 +80507,13,0.0,2,1.2246421575546265,8,1.0,3 +80508,13,0.0,2,1.3176416158676147,9,0.0,3 +80509,13,1.0,2,1.790635585784912,10,0.0,3 +80510,13,0.0,2,1.5336389541625977,11,0.0,3 +80511,13,0.0,2,1.3546411991119385,12,0.0,3 +80512,13,0.0,2,1.5506386756896973,13,1.0,3 +80513,13,0.0,2,1.309641718864441,14,0.0,3 +80514,13,1.0,2,1.37864089012146,15,0.0,3 +80515,13,0.0,2,1.6856369972229004,16,0.0,3 +80516,13,0.0,2,1.3936406373977661,17,1.0,3 +80517,13,0.0,2,1.5416388511657715,18,0.0,3 +80518,13,0.0,2,1.2136421203613281,19,0.0,3 +80519,13,0.0,2,2.223642349243164,20,1.0,3 +80520,13,0.0,2,1.8966342210769653,21,1.0,3 +80521,13,0.0,2,1.1906421184539795,22,0.0,3 +80522,13,0.0,2,2.0196328163146973,23,0.0,3 +80523,13,0.0,2,1.1056419610977173,24,1.0,3 +80524,13,0.0,2,1.1746420860290527,25,0.0,3 +80525,13,0.0,2,2.234642744064331,26,1.0,3 +80526,13,0.0,2,1.1336419582366943,27,0.0,3 +80527,13,0.0,2,1.3406413793563843,28,1.0,3 +80528,13,0.0,2,1.3686410188674927,29,1.0,3 +80529,13,0.0,2,1.0966418981552124,30,1.0,3 +80530,13,0.0,2,1.218642234802246,31,0.0,3 +80531,13,1.0,2,1.1776421070098877,32,0.0,3 +80532,13,0.0,2,2.4146511554718018,33,0.0,3 +80533,13,1.0,2,1.5386388301849365,34,1.0,3 +80534,13,1.0,2,1.6236376762390137,35,0.0,3 +80535,13,0.0,2,1.2756421566009521,36,0.0,3 +80536,13,0.0,2,1.7656359672546387,37,0.0,3 +80537,13,0.0,2,2.3676490783691406,38,0.0,3 +80538,13,0.0,2,1.9156339168548584,39,1.0,3 +80539,13,0.0,2,1.3916406631469727,40,1.0,3 +80540,13,0.0,2,1.1816420555114746,41,1.0,3 +80541,13,0.0,2,1.1716420650482178,42,0.0,3 +80542,13,1.0,2,1.6746370792388916,43,0.0,3 +80543,13,0.0,2,1.2296421527862549,44,0.0,3 +80544,13,0.0,2,2.0326333045959473,45,1.0,3 +80545,13,0.0,2,1.218642234802246,46,1.0,3 +80546,13,0.0,2,1.474639654159546,47,1.0,3 +80547,13,0.0,2,1.5296390056610107,48,0.0,3 +80548,13,1.0,2,1.3766409158706665,49,1.0,3 +80549,13,1.0,2,1.2466422319412231,50,1.0,3 +80550,13,1.0,2,1.4346401691436768,51,1.0,3 +80551,13,1.0,2,1.1076419353485107,52,1.0,3 +80552,13,0.0,2,1.7146365642547607,53,0.0,3 +80553,13,1.0,2,1.2456421852111816,54,1.0,3 +80554,13,1.0,2,1.422640323638916,55,0.0,3 +80555,13,0.0,2,1.5576386451721191,56,1.0,3 +80556,13,0.0,2,1.7106366157531738,57,0.0,3 +80557,13,1.0,2,1.653637409210205,58,0.0,3 +80558,13,1.0,2,2.0566344261169434,59,0.0,3 +80559,13,0.0,2,1.5906381607055664,60,1.0,3 +80560,13,0.0,2,1.2406421899795532,61,0.0,3 +80561,13,1.0,2,1.2236422300338745,62,1.0,3 +80562,13,1.0,2,1.5726383924484253,63,1.0,3 +80563,13,1.0,2,1.7136366367340088,64,0.0,3 +80564,13,0.0,2,1.1716420650482178,65,1.0,3 +80565,13,0.0,2,1.2356421947479248,66,1.0,3 +80566,13,0.0,2,1.1426420211791992,67,0.0,3 +80567,13,0.0,2,1.9886330366134644,68,0.0,3 +80568,13,0.0,2,1.5746383666992188,69,0.0,3 +80569,13,1.0,2,1.7576360702514648,70,1.0,3 +80570,13,1.0,2,1.5076391696929932,71,1.0,3 +80571,13,1.0,2,1.2406421899795532,72,1.0,3 +80572,13,1.0,2,1.3836407661437988,73,1.0,3 +80573,13,1.0,2,1.330641508102417,74,1.0,3 +80574,13,1.0,2,1.1966421604156494,75,1.0,3 +80575,13,1.0,2,1.3176416158676147,76,1.0,3 +80576,13,1.0,2,1.3776408433914185,77,0.0,3 +80577,13,1.0,2,1.4566398859024048,78,0.0,3 +80578,13,1.0,2,1.4536398649215698,79,1.0,3 +80579,13,1.0,2,1.3656409978866577,80,0.0,3 +80580,13,0.0,2,1.4096404314041138,81,1.0,3 +80581,13,0.0,2,1.1596421003341675,82,0.0,3 +80582,13,0.0,2,1.8246351480484009,83,1.0,3 +80583,13,0.0,2,1.1476420164108276,84,0.0,3 +80584,13,1.0,2,1.3736408948898315,85,0.0,3 +80585,13,1.0,2,1.868634581565857,86,1.0,3 +80586,13,1.0,2,1.5336389541625977,87,0.0,3 +80587,13,0.0,2,1.4306402206420898,88,0.0,3 +80588,13,0.0,2,1.3856407403945923,89,0.0,3 +80589,13,1.0,2,1.724636435508728,90,0.0,3 +80590,13,1.0,2,1.3286415338516235,91,0.0,3 +80591,13,0.0,2,1.1776421070098877,92,0.0,3 +80592,13,1.0,2,1.3216415643692017,93,0.0,3 +80593,13,1.0,2,1.5956380367279053,94,1.0,3 +80594,13,1.0,2,1.536638855934143,95,0.0,3 +80595,13,1.0,2,1.6756370067596436,96,1.0,3 +80596,13,1.0,2,1.4336401224136353,97,0.0,3 +80597,13,0.0,2,1.6346375942230225,98,0.0,3 +80598,13,1.0,2,1.2326421737670898,99,1.0,3 +80599,13,1.0,2,1.9686332941055298,100,1.0,3 +80600,13,1.0,2,1.448639988899231,101,1.0,3 +80601,13,1.0,2,1.2506422996520996,102,0.0,3 +80602,13,0.0,2,1.9516334533691406,103,1.0,3 +80603,13,0.0,2,1.6686371564865112,104,1.0,3 +80604,13,0.0,2,1.1456420421600342,105,0.0,3 +80605,13,0.0,2,1.2636423110961914,106,0.0,3 +80606,13,0.0,2,1.908634066581726,107,1.0,3 +80607,13,0.0,2,1.2986419200897217,108,1.0,3 +80608,13,0.0,2,1.3226416110992432,109,0.0,3 +80609,13,1.0,2,1.6696372032165527,110,1.0,3 +80610,13,1.0,2,1.5936381816864014,111,0.0,3 +80611,13,0.0,2,2.0436339378356934,112,0.0,3 +80612,13,1.0,2,1.7296364307403564,113,1.0,3 +80613,13,1.0,2,1.3176416158676147,114,0.0,3 +80614,13,0.0,2,1.794635534286499,115,1.0,3 +80615,13,0.0,2,1.3586411476135254,116,1.0,3 +80616,13,0.0,2,1.2046421766281128,117,0.0,3 +80617,13,0.0,2,1.4426400661468506,118,0.0,3 +80618,13,1.0,2,1.2586421966552734,119,1.0,3 +80619,13,1.0,2,1.544638752937317,120,0.0,3 +80620,13,0.0,2,1.3286415338516235,121,0.0,3 +80621,13,1.0,2,1.7116365432739258,122,1.0,3 +80622,13,1.0,2,1.1146419048309326,123,1.0,3 +80623,13,1.0,2,1.1386420726776123,124,1.0,3 +80624,13,1.0,2,1.3656409978866577,125,0.0,3 +80625,13,0.0,2,1.4526399374008179,126,1.0,3 +80626,13,0.0,2,1.308641791343689,127,1.0,3 +80627,13,0.0,2,1.2976418733596802,128,1.0,3 +80628,13,0.0,2,1.305641770362854,129,1.0,3 +80629,13,0.0,2,1.3226416110992432,130,0.0,3 +80630,13,0.0,2,1.9976329803466797,131,0.0,3 +80631,13,1.0,2,1.9146339893341064,132,1.0,3 +80632,13,1.0,2,1.2576422691345215,133,0.0,3 +80633,13,1.0,2,1.6216378211975098,134,0.0,3 +80634,13,0.0,2,1.3456412553787231,135,1.0,3 +80635,13,0.0,2,1.2216421365737915,136,0.0,3 +80636,13,0.0,2,1.1726421117782593,137,1.0,3 +80637,13,0.0,2,1.3646410703659058,138,1.0,3 +80638,13,0.0,2,1.249642252922058,139,0.0,3 +80639,13,0.0,2,1.7156364917755127,140,1.0,3 +80640,13,0.0,2,1.4866394996643066,141,1.0,3 +80641,13,0.0,2,1.2116421461105347,142,1.0,3 +80642,13,0.0,2,1.3636410236358643,143,1.0,3 +80643,13,0.0,2,1.2336422204971313,144,0.0,3 +80644,13,1.0,2,1.4956393241882324,145,0.0,3 +80645,13,1.0,2,2.0306332111358643,146,1.0,3 +80646,13,1.0,2,1.1676421165466309,147,1.0,3 +80647,13,1.0,2,1.6126378774642944,148,1.0,3 +80648,13,1.0,2,1.3606411218643188,149,0.0,3 +80649,13,1.0,2,1.6836369037628174,150,1.0,3 +80650,13,1.0,2,1.4736396074295044,151,1.0,3 +80651,13,1.0,2,1.216642141342163,152,0.0,3 +80652,13,1.0,2,1.2726422548294067,153,1.0,3 +80653,13,1.0,2,1.2486422061920166,154,1.0,3 +80654,13,1.0,2,1.4276401996612549,155,1.0,3 +80655,13,1.0,2,1.6496374607086182,156,0.0,3 +80656,13,1.0,2,1.8086353540420532,157,0.0,3 +80657,13,1.0,2,1.5476386547088623,158,1.0,3 +80658,13,1.0,2,1.2756421566009521,159,1.0,3 +80659,13,1.0,2,1.222642183303833,160,0.0,3 +80660,13,0.0,2,2.496654987335205,161,0.0,3 +80661,13,0.0,2,1.5136390924453735,162,0.0,3 +80662,13,0.0,2,1.636637568473816,163,1.0,3 +80663,13,0.0,2,1.9746332168579102,164,0.0,3 +80664,13,1.0,2,1.5526386499404907,165,1.0,3 +80665,13,1.0,2,1.84163498878479,166,1.0,3 +80666,13,1.0,2,1.5556385517120361,167,1.0,3 +80667,13,1.0,2,1.3696409463882446,168,1.0,3 +80668,13,1.0,2,1.219642162322998,169,1.0,3 +80669,13,1.0,2,1.2356421947479248,170,1.0,3 +80670,13,1.0,2,1.1726421117782593,171,0.0,3 +80671,13,1.0,2,1.7656359672546387,172,0.0,3 +80672,13,1.0,2,1.4116404056549072,173,0.0,3 +80673,13,0.0,2,1.2676422595977783,174,0.0,3 +80674,13,0.0,2,1.6626372337341309,175,1.0,3 +80675,13,0.0,2,1.605638027191162,176,0.0,3 +80676,13,0.0,2,1.4626398086547852,177,0.0,3 +80677,13,0.0,2,1.2426421642303467,178,0.0,3 +80678,13,0.0,2,1.3196415901184082,179,1.0,3 +80679,13,0.0,2,1.5026392936706543,180,0.0,3 +80680,13,0.0,2,1.1506420373916626,181,0.0,3 +80681,13,0.0,2,1.7006367444992065,182,1.0,3 +80682,13,0.0,2,1.327641487121582,183,1.0,3 +80683,13,0.0,2,1.1636420488357544,184,1.0,3 +80684,13,0.0,2,1.3516411781311035,185,0.0,3 +80685,13,0.0,2,1.7636358737945557,186,1.0,3 +80686,13,0.0,2,1.4116404056549072,187,1.0,3 +80687,13,0.0,2,1.2436422109603882,188,1.0,3 +80688,13,0.0,2,1.2276421785354614,189,1.0,3 +80689,13,0.0,2,1.5786383152008057,190,0.0,3 +80690,13,0.0,2,1.3136416673660278,191,0.0,3 +80691,13,0.0,2,1.3956406116485596,192,1.0,3 +80692,13,0.0,2,1.222642183303833,193,0.0,3 +80693,13,0.0,2,1.2236422300338745,194,1.0,3 +80694,13,0.0,2,1.2136421203613281,195,0.0,3 +80695,13,1.0,2,1.6306376457214355,196,1.0,3 +80696,13,1.0,2,1.1936421394348145,197,0.0,3 +80697,13,0.0,2,1.6836369037628174,198,0.0,3 +80698,13,0.0,2,1.7746357917785645,199,1.0,3 +80699,13,0.0,2,1.4846395254135132,200,0.0,3 +80700,13,0.0,2,1.7586359977722168,201,0.0,3 +80701,13,1.0,2,1.724636435508728,202,1.0,3 +80702,13,1.0,2,1.3896406888961792,203,1.0,3 +80703,13,1.0,2,1.1776421070098877,204,1.0,3 +80704,13,1.0,2,1.222642183303833,205,0.0,3 +80705,13,0.0,2,1.6846369504928589,206,1.0,3 +80706,13,1.0,2,1.8716344833374023,207,1.0,3 +80707,13,1.0,2,1.2406421899795532,208,0.0,3 +80708,13,0.0,2,1.3906407356262207,209,0.0,3 +80709,13,1.0,2,1.2246421575546265,210,1.0,3 +80710,13,1.0,2,1.3126417398452759,211,1.0,3 +80711,13,1.0,2,1.6296377182006836,212,0.0,3 +80712,13,0.0,2,1.7486361265182495,213,0.0,3 +80713,13,1.0,2,1.8776345252990723,214,1.0,3 +80714,13,1.0,2,1.2776421308517456,215,1.0,3 +80715,13,1.0,2,1.2126421928405762,216,0.0,3 +80716,13,1.0,2,1.4466400146484375,217,1.0,3 +80717,13,1.0,2,1.4176403284072876,218,0.0,3 +80718,13,0.0,2,1.2426421642303467,219,0.0,3 +80719,13,1.0,2,1.6196377277374268,220,0.0,3 +80720,13,0.0,2,1.1796420812606812,221,1.0,3 +80721,13,0.0,2,1.158642053604126,222,0.0,3 +80722,13,1.0,2,1.8476347923278809,223,1.0,3 +80723,13,1.0,2,1.2156422138214111,224,0.0,3 +80724,13,0.0,2,1.2926419973373413,225,0.0,3 +80725,13,1.0,2,1.4536398649215698,226,0.0,3 +80726,13,0.0,2,1.518639087677002,227,0.0,3 +80727,13,0.0,2,1.6976368427276611,228,0.0,3 +80728,13,1.0,2,1.5756382942199707,229,1.0,3 +80729,13,1.0,2,1.1576420068740845,230,1.0,3 +80730,13,1.0,2,1.5926381349563599,231,0.0,3 +80731,13,1.0,2,1.249642252922058,232,1.0,3 +80732,13,1.0,2,1.4596397876739502,233,0.0,3 +80733,13,1.0,2,1.9226338863372803,234,1.0,3 +80734,13,1.0,2,1.4316401481628418,235,1.0,3 +80735,13,1.0,2,1.2466422319412231,236,1.0,3 +80736,13,1.0,2,1.2096421718597412,237,1.0,3 +80737,13,1.0,2,1.4286402463912964,238,1.0,3 +80738,13,1.0,2,1.2326421737670898,239,1.0,3 +80739,13,1.0,2,1.4956393241882324,240,0.0,3 +80740,13,0.0,2,1.1636420488357544,241,0.0,3 +80741,13,0.0,2,1.699636697769165,242,0.0,3 +80742,13,1.0,2,1.2436422109603882,243,1.0,3 +80743,13,0.0,2,1.745636224746704,244,1.0,3 +80744,13,1.0,2,1.7826356887817383,245,1.0,3 +80745,13,0.0,2,1.5416388511657715,246,0.0,3 +80746,13,1.0,2,1.5176390409469604,247,1.0,3 +80747,13,1.0,2,1.4866394996643066,248,0.0,3 +80748,13,0.0,2,1.4136403799057007,249,0.0,3 +80749,13,1.0,2,1.37864089012146,250,0.0,3 +80750,13,1.0,2,2.3166465759277344,251,1.0,3 +80751,13,1.0,2,1.3386414051055908,252,0.0,3 +80752,13,1.0,2,1.474639654159546,253,1.0,3 +80753,13,1.0,2,1.4096404314041138,254,0.0,3 +80754,13,0.0,2,1.2376421689987183,255,1.0,3 +80755,13,0.0,2,1.1536420583724976,256,0.0,3 +80756,13,0.0,2,1.7426362037658691,257,0.0,3 +80757,13,0.0,2,1.6456375122070312,258,1.0,3 +80758,13,0.0,2,1.2766422033309937,259,1.0,3 +80759,13,0.0,2,1.155642032623291,260,1.0,3 +80760,13,1.0,2,1.4116404056549072,261,1.0,3 +80761,13,1.0,2,2.0836358070373535,262,1.0,3 +80762,13,1.0,2,1.3596410751342773,263,0.0,3 +80763,13,0.0,2,1.7156364917755127,264,1.0,3 +80764,13,0.0,2,1.2896419763565063,265,1.0,3 +80765,13,0.0,2,1.3436412811279297,266,0.0,3 +80766,13,1.0,2,1.3886407613754272,267,1.0,3 +80767,13,1.0,2,1.7346363067626953,268,1.0,3 +80768,13,1.0,2,1.728636384010315,269,0.0,3 +80769,13,1.0,2,1.5346388816833496,270,1.0,3 +80770,13,1.0,2,1.4116404056549072,271,1.0,3 +80771,13,1.0,2,1.3516411781311035,272,1.0,3 +80772,13,1.0,2,1.6656372547149658,273,1.0,3 +80773,13,1.0,2,1.4336401224136353,274,0.0,3 +80774,13,1.0,2,1.304641842842102,275,0.0,3 +80775,13,1.0,2,1.2716422080993652,276,1.0,3 +80776,13,1.0,2,1.4206403493881226,277,1.0,3 +80777,13,1.0,2,1.3626410961151123,278,0.0,3 +80778,13,1.0,2,1.467639684677124,279,0.0,3 +80779,13,0.0,2,1.2066421508789062,280,1.0,3 +80780,13,0.0,2,1.5266389846801758,281,0.0,3 +80781,13,0.0,2,1.3546411991119385,282,0.0,3 +80782,13,1.0,2,1.3476412296295166,283,0.0,3 +80783,13,0.0,2,2.1236376762390137,284,0.0,3 +80784,13,0.0,2,1.3696409463882446,285,0.0,3 +80785,13,0.0,2,1.1946420669555664,286,0.0,3 +80786,13,0.0,2,1.4616397619247437,287,0.0,3 +80787,13,1.0,2,1.5076391696929932,288,1.0,3 +80788,13,1.0,2,1.768635869026184,289,0.0,3 +80789,13,0.0,2,1.3836407661437988,290,1.0,3 +80790,13,0.0,2,1.2426421642303467,291,0.0,3 +80791,13,0.0,2,1.0936418771743774,292,1.0,3 +80792,13,0.0,2,1.2326421737670898,293,1.0,3 +80793,13,0.0,2,1.2006421089172363,294,1.0,3 +80794,13,0.0,2,1.2466422319412231,295,0.0,3 +80795,13,1.0,2,1.8026354312896729,296,1.0,3 +80796,13,1.0,2,1.094641923904419,297,0.0,3 +80797,13,0.0,2,1.3896406888961792,298,0.0,3 +80798,13,1.0,2,2.1316380500793457,299,0.0,3 +80799,13,0.0,2,1.3136416673660278,300,0.0,3 +80800,13,1.0,2,2.2676444053649902,301,0.0,3 +80801,13,0.0,2,1.9636332988739014,302,0.0,3 +80802,13,0.0,2,1.3766409158706665,303,0.0,3 +80803,13,1.0,2,1.2356421947479248,304,1.0,3 +80804,13,1.0,2,1.375640869140625,305,0.0,3 +80805,13,1.0,2,1.4306402206420898,306,1.0,3 +80806,13,0.0,2,1.7786357402801514,307,1.0,3 +80807,13,1.0,2,1.3846408128738403,308,1.0,3 +80808,13,0.0,2,1.7656359672546387,309,0.0,3 +80809,13,1.0,2,1.3586411476135254,310,0.0,3 +80810,13,0.0,2,1.7676358222961426,311,1.0,3 +80811,13,0.0,2,1.1906421184539795,312,0.0,3 +80812,13,0.0,2,1.37864089012146,313,0.0,3 +80813,13,1.0,2,1.8746345043182373,314,1.0,3 +80814,13,1.0,2,1.7376363277435303,315,0.0,3 +80815,13,1.0,2,1.253642201423645,316,1.0,3 +80816,13,1.0,2,1.3586411476135254,317,1.0,3 +80817,13,1.0,2,1.655637264251709,318,0.0,3 +80818,13,1.0,2,1.4056404829025269,319,1.0,3 +80819,13,1.0,2,1.286642074584961,320,1.0,3 +80820,13,1.0,2,1.4256402254104614,321,0.0,3 +80821,13,1.0,2,1.9676332473754883,322,1.0,3 +80822,13,1.0,2,1.8176352977752686,323,0.0,3 +80823,13,0.0,2,1.6396374702453613,324,1.0,3 +80824,13,0.0,2,1.1676421165466309,325,0.0,3 +80825,13,0.0,2,1.2656422853469849,326,0.0,3 +80826,13,1.0,2,1.5226390361785889,327,1.0,3 +80827,13,1.0,2,1.5226390361785889,328,0.0,3 +80828,13,1.0,2,1.6706371307373047,329,0.0,3 +80829,13,0.0,2,1.1876420974731445,330,0.0,3 +80830,13,0.0,2,1.9076340198516846,331,0.0,3 +80831,13,1.0,2,1.839634895324707,332,1.0,3 +80832,13,1.0,2,1.6126378774642944,333,0.0,3 +80833,13,0.0,2,1.9076340198516846,334,1.0,3 +80834,13,0.0,2,1.3816407918930054,335,0.0,3 +80835,13,1.0,2,1.9326337575912476,336,0.0,3 +80836,13,0.0,2,2.191640853881836,337,0.0,3 +80837,13,0.0,2,1.4026405811309814,338,0.0,3 +80838,13,0.0,2,1.155642032623291,339,1.0,3 +80839,13,0.0,2,1.3596410751342773,340,0.0,3 +80840,13,0.0,2,1.937633752822876,341,0.0,3 +80841,13,0.0,2,1.611637830734253,342,0.0,3 +80842,13,1.0,2,1.5536386966705322,343,1.0,3 +80843,13,1.0,2,1.5046392679214478,344,1.0,3 +80844,13,1.0,2,1.8296351432800293,345,0.0,3 +80845,13,1.0,2,1.7776358127593994,346,0.0,3 +80846,13,0.0,2,1.1066420078277588,347,1.0,3 +80847,13,0.0,2,1.2966419458389282,348,0.0,3 +80848,13,0.0,2,1.259642243385315,349,1.0,3 +80849,13,0.0,2,1.0896419286727905,350,0.0,3 +80850,13,0.0,2,1.4206403493881226,351,0.0,3 +80851,13,0.0,2,1.3766409158706665,352,0.0,3 +80852,13,0.0,2,1.6206377744674683,353,0.0,3 +80853,13,0.0,2,1.7376363277435303,354,1.0,3 +80854,13,0.0,2,1.1696420907974243,355,0.0,3 +80855,13,0.0,2,1.1596421003341675,356,0.0,3 +80856,13,1.0,2,1.3656409978866577,357,0.0,3 +80857,13,1.0,2,1.3286415338516235,358,1.0,3 +80858,13,1.0,2,1.2466422319412231,359,0.0,3 +80859,13,0.0,2,1.5426387786865234,360,1.0,3 +80860,13,0.0,2,1.2056421041488647,361,1.0,3 +80861,13,0.0,2,1.6346375942230225,362,1.0,3 +80862,13,0.0,2,1.4056404829025269,363,0.0,3 +80863,13,0.0,2,1.2366422414779663,364,0.0,3 +80864,13,1.0,2,1.282642126083374,365,0.0,3 +80865,13,0.0,2,1.6226377487182617,366,1.0,3 +80866,13,0.0,2,1.6956367492675781,367,0.0,3 +80867,13,0.0,2,1.6726371049880981,368,1.0,3 +80868,13,0.0,2,1.1336419582366943,369,1.0,3 +80869,13,0.0,2,1.2046421766281128,370,0.0,3 +80870,13,1.0,2,1.6866369247436523,371,0.0,3 +80871,13,0.0,2,1.151642084121704,372,0.0,3 +80872,13,1.0,2,1.374640941619873,373,0.0,3 +80873,13,1.0,2,1.565638542175293,374,1.0,3 +80874,13,1.0,2,1.2936419248580933,375,0.0,3 +80875,13,0.0,2,1.6956367492675781,376,1.0,3 +80876,13,0.0,2,1.356641173362732,377,1.0,3 +80877,13,0.0,2,1.1376420259475708,378,1.0,3 +80878,13,0.0,2,1.2486422061920166,379,0.0,3 +80879,13,1.0,2,1.396640658378601,380,0.0,3 +80880,13,0.0,2,1.790635585784912,381,0.0,3 +80881,13,0.0,2,1.795635461807251,382,1.0,3 +80882,13,0.0,2,1.0926419496536255,383,1.0,3 +80883,13,0.0,2,1.1716420650482178,384,0.0,3 +80884,13,0.0,2,1.7106366157531738,385,1.0,3 +80885,13,0.0,2,1.3186416625976562,386,0.0,3 +80886,13,0.0,2,1.6726371049880981,387,0.0,3 +80887,13,0.0,2,1.724636435508728,388,0.0,3 +80888,13,1.0,2,1.7046366930007935,389,1.0,3 +80889,13,1.0,2,1.628637671470642,390,1.0,3 +80890,13,1.0,2,1.791635513305664,391,1.0,3 +80891,13,1.0,2,1.2756421566009521,392,1.0,3 +80892,13,1.0,2,1.4876394271850586,393,1.0,3 +80893,13,1.0,2,1.301641821861267,394,0.0,3 +80894,13,0.0,2,1.3806408643722534,395,1.0,3 +80895,13,0.0,2,1.5266389846801758,396,0.0,3 +80896,13,1.0,2,1.4476399421691895,397,0.0,3 +80897,13,0.0,2,1.441640019416809,398,0.0,3 +80898,13,1.0,2,2.0606346130371094,399,1.0,3 +80899,13,0.0,2,1.4376400709152222,400,1.0,3 +80900,13,1.0,2,1.4086405038833618,401,1.0,3 +80901,13,1.0,2,1.4106404781341553,402,1.0,3 +80902,13,0.0,2,1.5876381397247314,403,1.0,3 +80903,13,1.0,2,1.2476422786712646,404,1.0,3 +80904,13,1.0,2,1.5926381349563599,405,0.0,3 +80905,13,0.0,2,1.4536398649215698,406,1.0,3 +80906,13,0.0,2,1.1606420278549194,407,1.0,3 +80907,13,0.0,2,1.3226416110992432,408,0.0,3 +80908,13,0.0,2,1.2746422290802002,409,1.0,3 +80909,13,0.0,2,1.3616410493850708,410,1.0,3 +80910,13,0.0,2,1.348641276359558,411,1.0,3 +80911,13,0.0,2,1.3036417961120605,412,1.0,3 +80912,13,0.0,2,1.6166378259658813,413,1.0,3 +80913,13,0.0,2,1.474639654159546,414,0.0,3 +80914,13,0.0,2,2.0626347064971924,415,0.0,3 +80915,13,1.0,2,1.3296414613723755,416,0.0,3 +80916,13,1.0,2,1.4356400966644287,417,0.0,3 +80917,13,0.0,2,1.6946368217468262,418,0.0,3 +80918,13,0.0,2,1.768635869026184,419,0.0,3 +80919,13,1.0,2,1.6626372337341309,420,1.0,3 +80920,13,1.0,2,1.8596346378326416,421,1.0,3 +80921,13,1.0,2,1.3126417398452759,422,0.0,3 +80922,13,0.0,2,1.5356388092041016,423,1.0,3 +80923,13,0.0,2,1.249642252922058,424,1.0,3 +80924,13,0.0,2,1.3956406116485596,425,0.0,3 +80925,13,0.0,2,1.2236422300338745,426,1.0,3 +80926,13,0.0,2,1.301641821861267,427,0.0,3 +80927,13,1.0,2,1.605638027191162,428,1.0,3 +80928,13,1.0,2,1.6726371049880981,429,1.0,3 +80929,13,1.0,2,1.4596397876739502,430,1.0,3 +80930,13,1.0,2,1.1946420669555664,431,0.0,3 +80931,13,1.0,2,1.5526386499404907,432,0.0,3 +80932,13,0.0,2,1.4846395254135132,433,0.0,3 +80933,13,0.0,2,2.0576343536376953,434,1.0,3 +80934,13,0.0,2,1.2546422481536865,435,0.0,3 +80935,13,0.0,2,1.3886407613754272,436,0.0,3 +80936,13,0.0,2,1.6446374654769897,437,0.0,3 +80937,13,0.0,2,1.286642074584961,438,0.0,3 +80938,13,0.0,2,2.0066328048706055,439,1.0,3 +80939,13,0.0,2,1.3546411991119385,440,1.0,3 +80940,13,0.0,2,1.2426421642303467,441,1.0,3 +80941,13,0.0,2,1.1446419954299927,442,1.0,3 +80942,13,0.0,2,1.6936368942260742,443,0.0,3 +80943,13,0.0,2,1.2756421566009521,444,0.0,3 +80944,13,0.0,2,1.1836421489715576,445,0.0,3 +80945,13,0.0,2,1.4586398601531982,446,0.0,3 +80946,13,1.0,2,1.1986421346664429,447,0.0,3 +80947,13,0.0,2,1.979633092880249,448,1.0,3 +80948,13,0.0,2,1.8036353588104248,449,0.0,3 +80949,13,1.0,2,1.3736408948898315,450,0.0,3 +80950,13,1.0,2,1.776635766029358,451,0.0,3 +80951,13,0.0,2,2.3296470642089844,452,0.0,3 +80952,13,0.0,2,1.8826344013214111,453,0.0,3 +80953,13,0.0,2,1.838634967803955,454,1.0,3 +80954,13,0.0,2,1.2206422090530396,455,1.0,3 +80955,13,0.0,2,1.219642162322998,456,1.0,3 +80956,13,0.0,2,1.3816407918930054,457,0.0,3 +80957,13,0.0,2,2.1436386108398438,458,1.0,3 +80958,13,0.0,2,1.1396420001983643,459,1.0,3 +80959,13,0.0,2,1.2806421518325806,460,1.0,3 +80960,13,0.0,2,1.6126378774642944,461,0.0,3 +80961,13,0.0,2,1.9146339893341064,462,0.0,3 +80962,13,0.0,2,1.4776395559310913,463,1.0,3 +80963,13,0.0,2,1.2026422023773193,464,0.0,3 +80964,13,0.0,2,1.9326337575912476,465,0.0,3 +80965,13,1.0,2,1.521639108657837,466,0.0,3 +80966,13,0.0,2,1.4426400661468506,467,1.0,3 +80967,13,0.0,2,1.4316401481628418,468,1.0,3 +80968,13,0.0,2,1.5546386241912842,469,0.0,3 +80969,13,0.0,2,1.632637619972229,470,0.0,3 +80970,13,0.0,2,1.3186416625976562,471,0.0,3 +80971,13,1.0,2,1.4206403493881226,472,1.0,3 +80972,13,1.0,2,1.5016392469406128,473,1.0,3 +80973,13,1.0,2,1.3116416931152344,474,1.0,3 +80974,13,1.0,2,1.9946329593658447,475,0.0,3 +80975,13,0.0,2,1.6156377792358398,476,1.0,3 +80976,13,0.0,2,1.4216402769088745,477,1.0,3 +80977,13,0.0,2,1.2156422138214111,478,1.0,3 +80978,13,0.0,2,1.3226416110992432,479,1.0,3 +80979,13,0.0,2,1.1696420907974243,480,0.0,3 +80980,13,0.0,2,1.6656372547149658,481,0.0,3 +80981,13,1.0,2,1.4566398859024048,482,1.0,3 +80982,13,1.0,2,1.3396413326263428,483,0.0,3 +80983,13,1.0,2,1.2886420488357544,484,1.0,3 +80984,13,1.0,2,1.3206416368484497,485,1.0,3 +80985,13,1.0,2,1.449639916419983,486,1.0,3 +80986,13,0.0,2,1.2616422176361084,487,1.0,3 +80987,13,1.0,2,1.5436387062072754,488,1.0,3 +80988,13,1.0,2,1.7596359252929688,489,1.0,3 +80989,13,1.0,2,1.2726422548294067,490,1.0,3 +80990,13,1.0,2,1.4686397314071655,491,0.0,3 +80991,13,0.0,2,1.158642053604126,492,1.0,3 +80992,13,0.0,2,1.1576420068740845,493,0.0,3 +80993,13,1.0,2,1.1976420879364014,494,0.0,3 +80994,13,1.0,2,1.6296377182006836,495,1.0,3 +80995,13,1.0,2,1.2976418733596802,496,1.0,3 +80996,13,1.0,2,1.3066418170928955,497,1.0,3 +80997,13,1.0,2,1.1826421022415161,498,0.0,3 +80998,13,1.0,2,1.798635482788086,499,0.0,3 +80999,13,0.0,2,1.282642126083374,500,1.0,3 +81000,14,1.0,0,1.2718907594680786,1,1.0,3 +81001,14,1.0,0,1.6588859558105469,2,1.0,3 +81002,14,1.0,0,1.7838842868804932,3,1.0,3 +81003,14,0.0,0,1.9408823251724243,4,1.0,3 +81004,14,0.0,0,1.5308876037597656,5,0.0,3 +81005,14,1.0,0,1.699885368347168,6,0.0,3 +81006,14,0.0,0,1.8278837203979492,7,0.0,3 +81007,14,1.0,0,1.4838881492614746,8,1.0,3 +81008,14,1.0,0,1.3688896894454956,9,0.0,3 +81009,14,1.0,0,2.124885320663452,10,1.0,3 +81010,14,1.0,0,1.607886552810669,11,1.0,3 +81011,14,1.0,0,1.5778870582580566,12,1.0,3 +81012,14,1.0,0,1.4948880672454834,13,1.0,3 +81013,14,1.0,0,1.1998906135559082,14,1.0,3 +81014,14,1.0,0,1.470888376235962,15,1.0,3 +81015,14,1.0,0,1.396889328956604,16,1.0,3 +81016,14,1.0,0,1.249890685081482,17,0.0,3 +81017,14,1.0,0,1.2448906898498535,18,1.0,3 +81018,14,1.0,0,1.378889560699463,19,1.0,3 +81019,14,1.0,0,2.077883243560791,20,0.0,3 +81020,14,1.0,0,1.9598820209503174,21,1.0,3 +81021,14,1.0,0,1.610886573791504,22,1.0,3 +81022,14,1.0,0,1.6488860845565796,23,1.0,3 +81023,14,1.0,0,1.5798869132995605,24,1.0,3 +81024,14,1.0,0,1.240890622138977,25,1.0,3 +81025,14,1.0,0,1.4368888139724731,26,1.0,3 +81026,14,1.0,0,1.445888638496399,27,1.0,3 +81027,14,1.0,0,1.5778870582580566,28,1.0,3 +81028,14,1.0,0,1.4338887929916382,29,0.0,3 +81029,14,1.0,0,2.112884759902954,30,1.0,3 +81030,14,1.0,0,1.7838842868804932,31,1.0,3 +81031,14,1.0,0,1.2928906679153442,32,1.0,3 +81032,14,1.0,0,1.2448906898498535,33,1.0,3 +81033,14,1.0,0,1.6648858785629272,34,1.0,3 +81034,14,0.0,0,1.1678905487060547,35,1.0,3 +81035,14,1.0,0,2.330894947052002,36,1.0,3 +81036,14,0.0,0,1.2588906288146973,37,0.0,3 +81037,14,0.0,0,1.6128865480422974,38,0.0,3 +81038,14,1.0,0,1.33089017868042,39,0.0,3 +81039,14,1.0,0,1.9638819694519043,40,1.0,3 +81040,14,1.0,0,1.149890422821045,41,1.0,3 +81041,14,0.0,0,1.812883973121643,42,0.0,3 +81042,14,1.0,0,1.2788907289505005,43,1.0,3 +81043,14,1.0,0,1.4958879947662354,44,1.0,3 +81044,14,1.0,0,1.3538898229599,45,1.0,3 +81045,14,1.0,0,1.3258901834487915,46,1.0,3 +81046,14,1.0,0,1.3038904666900635,47,1.0,3 +81047,14,1.0,0,1.30189049243927,48,1.0,3 +81048,14,1.0,0,1.4168890714645386,49,1.0,3 +81049,14,1.0,0,1.4818881750106812,50,1.0,3 +81050,14,1.0,0,1.4878880977630615,51,1.0,3 +81051,14,1.0,0,1.6178865432739258,52,1.0,3 +81052,14,1.0,0,1.3908894062042236,53,1.0,3 +81053,14,1.0,0,1.4468886852264404,54,1.0,3 +81054,14,1.0,0,1.3888894319534302,55,1.0,3 +81055,14,1.0,0,1.378889560699463,56,1.0,3 +81056,14,1.0,0,1.5098878145217896,57,1.0,3 +81057,14,1.0,0,1.6178865432739258,58,1.0,3 +81058,14,1.0,0,1.4748883247375488,59,1.0,3 +81059,14,1.0,0,1.5128878355026245,60,1.0,3 +81060,14,1.0,0,1.1998906135559082,61,0.0,3 +81061,14,1.0,0,1.8528834581375122,62,1.0,3 +81062,14,1.0,0,1.4148890972137451,63,0.0,3 +81063,14,1.0,0,1.2538906335830688,64,1.0,3 +81064,14,1.0,0,1.6318862438201904,65,0.0,3 +81065,14,0.0,0,1.609886646270752,66,0.0,3 +81066,14,1.0,0,1.8028841018676758,67,0.0,3 +81067,14,0.0,0,1.9788818359375,68,0.0,3 +81068,14,1.0,0,1.605886697769165,69,1.0,3 +81069,14,1.0,0,1.7288850545883179,70,1.0,3 +81070,14,1.0,0,1.210890531539917,71,0.0,3 +81071,14,1.0,0,2.069882869720459,72,0.0,3 +81072,14,1.0,0,1.2268905639648438,73,1.0,3 +81073,14,1.0,0,1.510887861251831,74,0.0,3 +81074,14,1.0,0,1.864883303642273,75,1.0,3 +81075,14,1.0,0,1.485888123512268,76,1.0,3 +81076,14,1.0,0,1.51588773727417,77,1.0,3 +81077,14,1.0,0,1.2288906574249268,78,1.0,3 +81078,14,1.0,0,1.276890754699707,79,1.0,3 +81079,14,1.0,0,1.2148905992507935,80,1.0,3 +81080,14,1.0,0,1.2868907451629639,81,1.0,3 +81081,14,1.0,0,1.6908855438232422,82,1.0,3 +81082,14,1.0,0,1.283890724182129,83,1.0,3 +81083,14,1.0,0,1.7758843898773193,84,0.0,3 +81084,14,1.0,0,1.9388823509216309,85,1.0,3 +81085,14,1.0,0,1.5418875217437744,86,0.0,3 +81086,14,0.0,0,2.1458864212036133,87,0.0,3 +81087,14,1.0,0,1.6608859300613403,88,1.0,3 +81088,14,1.0,0,1.4728883504867554,89,1.0,3 +81089,14,1.0,0,1.4918880462646484,90,1.0,3 +81090,14,1.0,0,1.2988905906677246,91,1.0,3 +81091,14,1.0,0,1.4968880414962769,92,1.0,3 +81092,14,1.0,0,1.5978868007659912,93,0.0,3 +81093,14,1.0,0,1.795884132385254,94,0.0,3 +81094,14,0.0,0,1.6208864450454712,95,0.0,3 +81095,14,0.0,0,1.747884750366211,96,0.0,3 +81096,14,1.0,0,1.418889045715332,97,1.0,3 +81097,14,1.0,0,1.3288902044296265,98,1.0,3 +81098,14,1.0,0,1.4698883295059204,99,1.0,3 +81099,14,1.0,0,1.2958905696868896,100,1.0,3 +81100,14,1.0,0,1.3848894834518433,101,0.0,3 +81101,14,1.0,0,1.246890664100647,102,1.0,3 +81102,14,1.0,0,1.6818857192993164,103,0.0,3 +81103,14,1.0,0,1.6348862648010254,104,1.0,3 +81104,14,1.0,0,1.2668907642364502,105,1.0,3 +81105,14,1.0,0,1.632886290550232,106,1.0,3 +81106,14,1.0,0,1.7538847923278809,107,1.0,3 +81107,14,1.0,0,1.9218826293945312,108,1.0,3 +81108,14,1.0,0,1.4748883247375488,109,0.0,3 +81109,14,0.0,0,1.3908894062042236,110,1.0,3 +81110,14,0.0,0,1.5478873252868652,111,0.0,3 +81111,14,0.0,0,1.6488860845565796,112,0.0,3 +81112,14,1.0,0,1.78788423538208,113,1.0,3 +81113,14,1.0,0,1.400889277458191,114,1.0,3 +81114,14,1.0,0,1.4498885869979858,115,1.0,3 +81115,14,1.0,0,1.6838855743408203,116,0.0,3 +81116,14,1.0,0,1.977881908416748,117,0.0,3 +81117,14,1.0,0,1.9028828144073486,118,1.0,3 +81118,14,1.0,0,1.2048906087875366,119,1.0,3 +81119,14,1.0,0,1.5998866558074951,120,1.0,3 +81120,14,1.0,0,1.2848907709121704,121,1.0,3 +81121,14,1.0,0,1.239890694618225,122,1.0,3 +81122,14,1.0,0,1.558887243270874,123,1.0,3 +81123,14,1.0,0,1.4208890199661255,124,1.0,3 +81124,14,1.0,0,1.280890703201294,125,0.0,3 +81125,14,1.0,0,1.367889642715454,126,1.0,3 +81126,14,1.0,0,1.4978879690170288,127,1.0,3 +81127,14,1.0,0,1.7528847455978394,128,1.0,3 +81128,14,1.0,0,1.3438899517059326,129,1.0,3 +81129,14,1.0,0,1.3918893337249756,130,1.0,3 +81130,14,1.0,0,1.1708905696868896,131,1.0,3 +81131,14,1.0,0,1.2558907270431519,132,1.0,3 +81132,14,1.0,0,1.5218876600265503,133,1.0,3 +81133,14,1.0,0,1.5258876085281372,134,1.0,3 +81134,14,1.0,0,1.326890230178833,135,1.0,3 +81135,14,1.0,0,1.3338900804519653,136,1.0,3 +81136,14,1.0,0,1.485888123512268,137,1.0,3 +81137,14,1.0,0,1.3558897972106934,138,1.0,3 +81138,14,1.0,0,1.3558897972106934,139,1.0,3 +81139,14,1.0,0,1.151890516281128,140,1.0,3 +81140,14,1.0,0,1.4208890199661255,141,1.0,3 +81141,14,1.0,0,1.8278837203979492,142,1.0,3 +81142,14,1.0,0,1.470888376235962,143,1.0,3 +81143,14,1.0,0,1.3158903121948242,144,1.0,3 +81144,14,1.0,0,1.6238863468170166,145,1.0,3 +81145,14,1.0,0,1.2278906106948853,146,1.0,3 +81146,14,1.0,0,1.3418899774551392,147,0.0,3 +81147,14,1.0,0,1.44088876247406,148,1.0,3 +81148,14,1.0,0,1.2308906316757202,149,0.0,3 +81149,14,0.0,0,1.423888921737671,150,0.0,3 +81150,14,0.0,0,2.4559006690979004,151,0.0,3 +81151,14,1.0,0,1.5608872175216675,152,1.0,3 +81152,14,1.0,0,1.4368888139724731,153,1.0,3 +81153,14,1.0,0,1.8568834066390991,154,1.0,3 +81154,14,1.0,0,1.3558897972106934,155,1.0,3 +81155,14,1.0,0,1.3438899517059326,156,0.0,3 +81156,14,0.0,0,1.7988841533660889,157,0.0,3 +81157,14,1.0,0,1.8948829174041748,158,0.0,3 +81158,14,0.0,0,1.8618834018707275,159,0.0,3 +81159,14,0.0,0,1.879883050918579,160,1.0,3 +81160,14,0.0,0,1.5938868522644043,161,0.0,3 +81161,14,0.0,0,1.6838855743408203,162,0.0,3 +81162,14,1.0,0,2.332895040512085,163,1.0,3 +81163,14,0.0,0,1.81688392162323,164,0.0,3 +81164,14,1.0,0,1.2388906478881836,165,0.0,3 +81165,14,1.0,0,1.5248876810073853,166,0.0,3 +81166,14,1.0,0,2.632909059524536,167,1.0,3 +81167,14,1.0,0,1.8558833599090576,168,1.0,3 +81168,14,0.0,0,1.470888376235962,169,1.0,3 +81169,14,1.0,0,1.5498874187469482,170,1.0,3 +81170,14,1.0,0,1.5818870067596436,171,1.0,3 +81171,14,0.0,0,1.6308863162994385,172,0.0,3 +81172,14,1.0,0,1.7278850078582764,173,1.0,3 +81173,14,1.0,0,1.1948904991149902,174,1.0,3 +81174,14,1.0,0,1.3358900547027588,175,1.0,3 +81175,14,1.0,0,1.3368901014328003,176,1.0,3 +81176,14,1.0,0,1.8288837671279907,177,1.0,3 +81177,14,1.0,0,1.565887212753296,178,1.0,3 +81178,14,1.0,0,1.6158864498138428,179,1.0,3 +81179,14,1.0,0,1.3688896894454956,180,1.0,3 +81180,14,1.0,0,1.8538835048675537,181,1.0,3 +81181,14,1.0,0,1.2058905363082886,182,1.0,3 +81182,14,0.0,0,1.8058841228485107,183,0.0,3 +81183,14,1.0,0,1.562887191772461,184,0.0,3 +81184,14,1.0,0,1.8118839263916016,185,1.0,3 +81185,14,1.0,0,1.2638907432556152,186,1.0,3 +81186,14,1.0,0,1.507887840270996,187,1.0,3 +81187,14,1.0,0,1.46388840675354,188,1.0,3 +81188,14,1.0,0,1.5048879384994507,189,1.0,3 +81189,14,1.0,0,1.2878906726837158,190,1.0,3 +81190,14,1.0,0,1.3598897457122803,191,1.0,3 +81191,14,1.0,0,1.374889612197876,192,1.0,3 +81192,14,1.0,0,1.470888376235962,193,1.0,3 +81193,14,1.0,0,1.4548885822296143,194,1.0,3 +81194,14,1.0,0,1.4178889989852905,195,1.0,3 +81195,14,1.0,0,1.4608885049819946,196,1.0,3 +81196,14,1.0,0,1.2308906316757202,197,0.0,3 +81197,14,0.0,0,1.2938905954360962,198,0.0,3 +81198,14,1.0,0,1.9108827114105225,199,1.0,3 +81199,14,1.0,0,1.4648884534835815,200,1.0,3 +81200,14,1.0,0,1.33089017868042,201,1.0,3 +81201,14,1.0,0,1.3518898487091064,202,1.0,3 +81202,14,1.0,0,1.7568846940994263,203,1.0,3 +81203,14,1.0,0,1.7758843898773193,204,1.0,3 +81204,14,1.0,0,1.7098853588104248,205,1.0,3 +81205,14,1.0,0,1.2318906784057617,206,1.0,3 +81206,14,1.0,0,1.374889612197876,207,1.0,3 +81207,14,1.0,0,1.65488600730896,208,1.0,3 +81208,14,1.0,0,1.5088878870010376,209,0.0,3 +81209,14,0.0,0,1.3538898229599,210,0.0,3 +81210,14,0.0,0,1.1648905277252197,211,0.0,3 +81211,14,1.0,0,1.2328906059265137,212,1.0,3 +81212,14,1.0,0,1.2588906288146973,213,1.0,3 +81213,14,1.0,0,1.30189049243927,214,1.0,3 +81214,14,1.0,0,1.2248905897140503,215,0.0,3 +81215,14,0.0,0,2.063882350921631,216,0.0,3 +81216,14,1.0,0,1.252890706062317,217,1.0,3 +81217,14,1.0,0,2.0038814544677734,218,1.0,3 +81218,14,1.0,0,1.5478873252868652,219,0.0,3 +81219,14,1.0,0,1.397889256477356,220,1.0,3 +81220,14,1.0,0,1.1958905458450317,221,1.0,3 +81221,14,1.0,0,1.5168877840042114,222,1.0,3 +81222,14,1.0,0,1.5468873977661133,223,0.0,3 +81223,14,0.0,0,1.375889539718628,224,0.0,3 +81224,14,0.0,0,1.5738871097564697,225,0.0,3 +81225,14,1.0,0,1.6458861827850342,226,1.0,3 +81226,14,1.0,0,1.8368836641311646,227,1.0,3 +81227,14,1.0,0,1.2518906593322754,228,1.0,3 +81228,14,1.0,0,1.3128904104232788,229,1.0,3 +81229,14,1.0,0,1.4168890714645386,230,1.0,3 +81230,14,1.0,0,1.243890643119812,231,1.0,3 +81231,14,1.0,0,1.216890573501587,232,1.0,3 +81232,14,1.0,0,1.2238906621932983,233,1.0,3 +81233,14,1.0,0,1.904882788658142,234,1.0,3 +81234,14,1.0,0,1.60288667678833,235,1.0,3 +81235,14,1.0,0,1.246890664100647,236,1.0,3 +81236,14,1.0,0,1.5758869647979736,237,1.0,3 +81237,14,1.0,0,1.6208864450454712,238,1.0,3 +81238,14,1.0,0,1.4958879947662354,239,1.0,3 +81239,14,1.0,0,1.4388887882232666,240,1.0,3 +81240,14,1.0,0,1.4558885097503662,241,1.0,3 +81241,14,1.0,0,1.2358906269073486,242,1.0,3 +81242,14,1.0,0,1.5398874282836914,243,1.0,3 +81243,14,1.0,0,2.0358810424804688,244,0.0,3 +81244,14,1.0,0,1.5828869342803955,245,1.0,3 +81245,14,1.0,0,1.5908868312835693,246,1.0,3 +81246,14,1.0,0,1.2218905687332153,247,1.0,3 +81247,14,1.0,0,2.059882164001465,248,1.0,3 +81248,14,1.0,0,1.5248876810073853,249,1.0,3 +81249,14,1.0,0,1.5868868827819824,250,1.0,3 +81250,14,1.0,0,1.609886646270752,251,1.0,3 +81251,14,1.0,0,1.5198876857757568,252,1.0,3 +81252,14,1.0,0,1.4178889989852905,253,1.0,3 +81253,14,1.0,0,1.4298888444900513,254,1.0,3 +81254,14,1.0,0,1.2018905878067017,255,0.0,3 +81255,14,1.0,0,1.396889328956604,256,1.0,3 +81256,14,1.0,0,1.610886573791504,257,1.0,3 +81257,14,1.0,0,1.1948904991149902,258,1.0,3 +81258,14,1.0,0,1.4808882474899292,259,1.0,3 +81259,14,1.0,0,1.4018892049789429,260,0.0,3 +81260,14,0.0,0,2.1818881034851074,261,1.0,3 +81261,14,0.0,0,1.3188903331756592,262,0.0,3 +81262,14,1.0,0,1.8458836078643799,263,0.0,3 +81263,14,0.0,0,1.7038853168487549,264,0.0,3 +81264,14,0.0,0,1.7588846683502197,265,0.0,3 +81265,14,0.0,0,1.3028905391693115,266,0.0,3 +81266,14,0.0,0,1.7598845958709717,267,0.0,3 +81267,14,0.0,0,2.2198896408081055,268,0.0,3 +81268,14,0.0,0,1.246890664100647,269,1.0,3 +81269,14,0.0,0,1.280890703201294,270,0.0,3 +81270,14,0.0,0,1.7298851013183594,271,0.0,3 +81271,14,1.0,0,1.9328824281692505,272,0.0,3 +81272,14,0.0,0,1.7778844833374023,273,0.0,3 +81273,14,1.0,0,2.553905487060547,274,1.0,3 +81274,14,1.0,0,1.5048879384994507,275,1.0,3 +81275,14,1.0,0,1.6128865480422974,276,0.0,3 +81276,14,0.0,0,1.83988356590271,277,0.0,3 +81277,14,1.0,0,1.6678857803344727,278,1.0,3 +81278,14,1.0,0,1.628886342048645,279,1.0,3 +81279,14,1.0,0,1.3068904876708984,280,1.0,3 +81280,14,1.0,0,1.3608897924423218,281,1.0,3 +81281,14,1.0,0,1.4618884325027466,282,1.0,3 +81282,14,1.0,0,1.20689058303833,283,1.0,3 +81283,14,1.0,0,1.797884225845337,284,1.0,3 +81284,14,1.0,0,1.5678870677947998,285,1.0,3 +81285,14,1.0,0,1.4968880414962769,286,1.0,3 +81286,14,1.0,0,1.2608907222747803,287,1.0,3 +81287,14,1.0,0,1.699885368347168,288,0.0,3 +81288,14,0.0,0,1.8298838138580322,289,0.0,3 +81289,14,1.0,0,1.5468873977661133,290,1.0,3 +81290,14,1.0,0,1.4568885564804077,291,1.0,3 +81291,14,1.0,0,1.349889874458313,292,1.0,3 +81292,14,1.0,0,1.742884874343872,293,0.0,3 +81293,14,0.0,0,1.4388887882232666,294,0.0,3 +81294,14,1.0,0,1.2148905992507935,295,1.0,3 +81295,14,0.0,0,1.5388875007629395,296,1.0,3 +81296,14,1.0,0,2.2698922157287598,297,1.0,3 +81297,14,1.0,0,1.392889380455017,298,1.0,3 +81298,14,0.0,0,1.7038853168487549,299,0.0,3 +81299,14,0.0,0,1.322890281677246,300,0.0,3 +81300,14,0.0,0,1.1908905506134033,301,0.0,3 +81301,14,1.0,0,1.3218902349472046,302,1.0,3 +81302,14,0.0,0,1.8198838233947754,303,0.0,3 +81303,14,1.0,0,1.4698883295059204,304,0.0,3 +81304,14,0.0,0,1.1898905038833618,305,0.0,3 +81305,14,1.0,0,2.4198989868164062,306,1.0,3 +81306,14,1.0,0,1.1958905458450317,307,1.0,3 +81307,14,1.0,0,1.3908894062042236,308,1.0,3 +81308,14,1.0,0,1.5528873205184937,309,1.0,3 +81309,14,1.0,0,1.305890440940857,310,1.0,3 +81310,14,1.0,0,1.2178906202316284,311,1.0,3 +81311,14,1.0,0,1.213890552520752,312,1.0,3 +81312,14,1.0,0,1.415889024734497,313,1.0,3 +81313,14,1.0,0,1.6758856773376465,314,1.0,3 +81314,14,1.0,0,2.089883804321289,315,1.0,3 +81315,14,1.0,0,1.3618897199630737,316,1.0,3 +81316,14,1.0,0,1.6088865995407104,317,1.0,3 +81317,14,1.0,0,1.270890712738037,318,1.0,3 +81318,14,1.0,0,1.326890230178833,319,1.0,3 +81319,14,1.0,0,1.4488886594772339,320,1.0,3 +81320,14,1.0,0,1.2558907270431519,321,1.0,3 +81321,14,1.0,0,1.8638832569122314,322,1.0,3 +81322,14,1.0,0,1.3728896379470825,323,1.0,3 +81323,14,1.0,0,1.2288906574249268,324,1.0,3 +81324,14,1.0,0,1.3638896942138672,325,1.0,3 +81325,14,0.0,0,1.5088878870010376,326,1.0,3 +81326,14,1.0,0,2.2748923301696777,327,1.0,3 +81327,14,0.0,0,1.300890564918518,328,1.0,3 +81328,14,1.0,0,1.9388823509216309,329,1.0,3 +81329,14,0.0,0,1.7568846940994263,330,0.0,3 +81330,14,1.0,0,1.607886552810669,331,1.0,3 +81331,14,1.0,0,1.2208906412124634,332,1.0,3 +81332,14,1.0,0,1.558887243270874,333,1.0,3 +81333,14,1.0,0,1.467888355255127,334,1.0,3 +81334,14,1.0,0,1.7998840808868408,335,1.0,3 +81335,14,1.0,0,1.8928829431533813,336,0.0,3 +81336,14,1.0,0,1.559887170791626,337,1.0,3 +81337,14,1.0,0,1.5738871097564697,338,0.0,3 +81338,14,1.0,0,1.8658833503723145,339,0.0,3 +81339,14,1.0,0,1.610886573791504,340,1.0,3 +81340,14,1.0,0,1.3078904151916504,341,1.0,3 +81341,14,1.0,0,1.6928855180740356,342,1.0,3 +81342,14,1.0,0,1.4508886337280273,343,1.0,3 +81343,14,1.0,0,1.371889591217041,344,1.0,3 +81344,14,0.0,0,1.17689049243927,345,0.0,3 +81345,14,1.0,0,1.8508834838867188,346,1.0,3 +81346,14,1.0,0,1.889883041381836,347,1.0,3 +81347,14,1.0,0,1.5378875732421875,348,1.0,3 +81348,14,1.0,0,1.6868855953216553,349,1.0,3 +81349,14,1.0,0,1.2598906755447388,350,1.0,3 +81350,14,1.0,0,1.6278862953186035,351,1.0,3 +81351,14,1.0,0,1.2238906621932983,352,1.0,3 +81352,14,1.0,0,1.5978868007659912,353,1.0,3 +81353,14,1.0,0,1.279890775680542,354,0.0,3 +81354,14,0.0,0,1.8958828449249268,355,0.0,3 +81355,14,1.0,0,1.5088878870010376,356,1.0,3 +81356,14,1.0,0,1.3138903379440308,357,1.0,3 +81357,14,1.0,0,1.462888479232788,358,1.0,3 +81358,14,1.0,0,1.2968906164169312,359,0.0,3 +81359,14,1.0,0,1.605886697769165,360,1.0,3 +81360,14,1.0,0,1.280890703201294,361,0.0,3 +81361,14,1.0,0,2.2338905334472656,362,1.0,3 +81362,14,1.0,0,1.514887809753418,363,1.0,3 +81363,14,1.0,0,1.2048906087875366,364,0.0,3 +81364,14,1.0,0,1.9808818101882935,365,1.0,3 +81365,14,1.0,0,1.3428900241851807,366,1.0,3 +81366,14,1.0,0,1.3768895864486694,367,1.0,3 +81367,14,1.0,0,1.2358906269073486,368,0.0,3 +81368,14,0.0,0,2.334895133972168,369,1.0,3 +81369,14,0.0,0,1.44088876247406,370,0.0,3 +81370,14,0.0,0,1.5068879127502441,371,0.0,3 +81371,14,1.0,0,1.252890706062317,372,1.0,3 +81372,14,1.0,0,1.2668907642364502,373,1.0,3 +81373,14,1.0,0,1.3428900241851807,374,1.0,3 +81374,14,1.0,0,1.5608872175216675,375,1.0,3 +81375,14,1.0,0,1.6358861923217773,376,1.0,3 +81376,14,1.0,0,1.6448861360549927,377,1.0,3 +81377,14,1.0,0,2.069882869720459,378,0.0,3 +81378,14,0.0,0,1.8518834114074707,379,0.0,3 +81379,14,1.0,0,1.4688884019851685,380,1.0,3 +81380,14,1.0,0,1.4508886337280273,381,1.0,3 +81381,14,1.0,0,1.5918867588043213,382,1.0,3 +81382,14,1.0,0,1.5218876600265503,383,0.0,3 +81383,14,0.0,0,2.0058815479278564,384,0.0,3 +81384,14,1.0,0,1.4748883247375488,385,1.0,3 +81385,14,1.0,0,1.493888020515442,386,1.0,3 +81386,14,1.0,0,1.5218876600265503,387,1.0,3 +81387,14,1.0,0,1.4648884534835815,388,1.0,3 +81388,14,1.0,0,1.5298875570297241,389,1.0,3 +81389,14,1.0,0,1.1848905086517334,390,0.0,3 +81390,14,1.0,0,1.154890537261963,391,1.0,3 +81391,14,1.0,0,1.6868855953216553,392,0.0,3 +81392,14,1.0,0,1.812883973121643,393,1.0,3 +81393,14,1.0,0,1.3118903636932373,394,1.0,3 +81394,14,1.0,0,1.3508899211883545,395,0.0,3 +81395,14,1.0,0,1.8288837671279907,396,1.0,3 +81396,14,1.0,0,1.7088853120803833,397,1.0,3 +81397,14,1.0,0,1.14689040184021,398,1.0,3 +81398,14,1.0,0,1.2578907012939453,399,1.0,3 +81399,14,1.0,0,1.9268825054168701,400,1.0,3 +81400,14,1.0,0,1.7368849515914917,401,1.0,3 +81401,14,1.0,0,1.3668897151947021,402,1.0,3 +81402,14,1.0,0,1.20689058303833,403,1.0,3 +81403,14,1.0,0,1.5268876552581787,404,1.0,3 +81404,14,1.0,0,1.9878816604614258,405,1.0,3 +81405,14,1.0,0,1.1608904600143433,406,1.0,3 +81406,14,1.0,0,1.4358887672424316,407,1.0,3 +81407,14,1.0,0,2.139885902404785,408,0.0,3 +81408,14,1.0,0,2.075882911682129,409,1.0,3 +81409,14,1.0,0,1.9258825778961182,410,0.0,3 +81410,14,0.0,0,1.142890453338623,411,0.0,3 +81411,14,0.0,0,1.277890682220459,412,0.0,3 +81412,14,0.0,0,1.2788907289505005,413,0.0,3 +81413,14,0.0,0,1.437888741493225,414,0.0,3 +81414,14,1.0,0,1.6348862648010254,415,1.0,3 +81415,14,1.0,0,1.8758831024169922,416,1.0,3 +81416,14,1.0,0,1.3258901834487915,417,1.0,3 +81417,14,1.0,0,1.3298901319503784,418,1.0,3 +81418,14,1.0,0,1.6748857498168945,419,1.0,3 +81419,14,1.0,0,1.305890440940857,420,1.0,3 +81420,14,1.0,0,1.7488847970962524,421,1.0,3 +81421,14,1.0,0,1.4168890714645386,422,1.0,3 +81422,14,1.0,0,1.213890552520752,423,0.0,3 +81423,14,1.0,0,1.367889642715454,424,1.0,3 +81424,14,1.0,0,1.4258888959884644,425,1.0,3 +81425,14,1.0,0,1.649886131286621,426,0.0,3 +81426,14,0.0,0,1.2888907194137573,427,0.0,3 +81427,14,1.0,0,1.3658896684646606,428,1.0,3 +81428,14,1.0,0,1.4148890972137451,429,1.0,3 +81429,14,1.0,0,1.348889946937561,430,1.0,3 +81430,14,1.0,0,2.1698875427246094,431,0.0,3 +81431,14,1.0,0,1.8938829898834229,432,1.0,3 +81432,14,1.0,0,1.3658896684646606,433,1.0,3 +81433,14,1.0,0,1.3188903331756592,434,1.0,3 +81434,14,1.0,0,1.5028879642486572,435,1.0,3 +81435,14,1.0,0,1.172890543937683,436,1.0,3 +81436,14,1.0,0,1.3998892307281494,437,1.0,3 +81437,14,1.0,0,1.982881784439087,438,1.0,3 +81438,14,1.0,0,1.5948867797851562,439,1.0,3 +81439,14,1.0,0,1.419888973236084,440,1.0,3 +81440,14,1.0,0,1.3918893337249756,441,1.0,3 +81441,14,1.0,0,1.4958879947662354,442,1.0,3 +81442,14,1.0,0,1.1698905229568481,443,1.0,3 +81443,14,1.0,0,1.378889560699463,444,1.0,3 +81444,14,1.0,0,1.561887264251709,445,1.0,3 +81445,14,1.0,0,1.6158864498138428,446,1.0,3 +81446,14,1.0,0,1.5708870887756348,447,1.0,3 +81447,14,1.0,0,1.4838881492614746,448,1.0,3 +81448,14,1.0,0,1.3198902606964111,449,1.0,3 +81449,14,1.0,0,1.3738895654678345,450,1.0,3 +81450,14,1.0,0,1.3628897666931152,451,1.0,3 +81451,14,1.0,0,1.46388840675354,452,1.0,3 +81452,14,1.0,0,1.2858906984329224,453,1.0,3 +81453,14,1.0,0,1.6618859767913818,454,1.0,3 +81454,14,1.0,0,1.4318888187408447,455,0.0,3 +81455,14,1.0,0,1.8498835563659668,456,1.0,3 +81456,14,1.0,0,1.9458823204040527,457,0.0,3 +81457,14,0.0,0,1.352889895439148,458,0.0,3 +81458,14,0.0,0,1.49288809299469,459,1.0,3 +81459,14,0.0,0,1.655885934829712,460,1.0,3 +81460,14,0.0,0,1.3798894882202148,461,0.0,3 +81461,14,0.0,0,1.4178889989852905,462,0.0,3 +81462,14,1.0,0,1.2148905992507935,463,1.0,3 +81463,14,1.0,0,1.6868855953216553,464,0.0,3 +81464,14,0.0,0,2.5199036598205566,465,0.0,3 +81465,14,1.0,0,1.8978829383850098,466,1.0,3 +81466,14,1.0,0,1.5038878917694092,467,0.0,3 +81467,14,1.0,0,1.5378875732421875,468,1.0,3 +81468,14,1.0,0,1.2858906984329224,469,1.0,3 +81469,14,1.0,0,1.2588906288146973,470,1.0,3 +81470,14,1.0,0,1.657886028289795,471,1.0,3 +81471,14,1.0,0,1.5388875007629395,472,1.0,3 +81472,14,1.0,0,1.3548898696899414,473,1.0,3 +81473,14,1.0,0,1.3138903379440308,474,1.0,3 +81474,14,1.0,0,1.9518821239471436,475,0.0,3 +81475,14,0.0,0,1.154890537261963,476,0.0,3 +81476,14,0.0,0,1.4968880414962769,477,0.0,3 +81477,14,1.0,0,1.3138903379440308,478,1.0,3 +81478,14,1.0,0,1.3648897409439087,479,0.0,3 +81479,14,0.0,0,2.557905673980713,480,0.0,3 +81480,14,0.0,0,2.132885694503784,481,0.0,3 +81481,14,0.0,0,1.418889045715332,482,0.0,3 +81482,14,1.0,0,1.9238824844360352,483,1.0,3 +81483,14,1.0,0,1.3798894882202148,484,1.0,3 +81484,14,1.0,0,1.4728883504867554,485,1.0,3 +81485,14,1.0,0,1.283890724182129,486,1.0,3 +81486,14,1.0,0,1.4988880157470703,487,1.0,3 +81487,14,0.0,0,1.5748870372772217,488,0.0,3 +81488,14,1.0,0,1.720885157585144,489,1.0,3 +81489,14,1.0,0,1.349889874458313,490,1.0,3 +81490,14,1.0,0,1.4348888397216797,491,0.0,3 +81491,14,0.0,0,1.4138890504837036,492,0.0,3 +81492,14,1.0,0,2.5069031715393066,493,1.0,3 +81493,14,1.0,0,1.4468886852264404,494,1.0,3 +81494,14,1.0,0,1.3098903894424438,495,1.0,3 +81495,14,1.0,0,1.3178902864456177,496,1.0,3 +81496,14,1.0,0,1.2558907270431519,497,1.0,3 +81497,14,1.0,0,1.5768870115280151,498,1.0,3 +81498,14,0.0,0,1.8708832263946533,499,0.0,3 +81499,14,1.0,0,1.2848907709121704,500,1.0,3 +81500,14,0.0,1,1.6598858833312988,1,0.0,3 +81501,14,1.0,1,1.3858894109725952,2,1.0,3 +81502,14,1.0,1,2.31589412689209,3,1.0,3 +81503,14,1.0,1,1.6118865013122559,4,1.0,3 +81504,14,1.0,1,1.3988893032073975,5,1.0,3 +81505,14,0.0,1,1.3538898229599,6,0.0,3 +81506,14,1.0,1,1.7118852138519287,7,1.0,3 +81507,14,1.0,1,1.4538885354995728,8,1.0,3 +81508,14,1.0,1,1.680885672569275,9,0.0,3 +81509,14,0.0,1,1.557887315750122,10,0.0,3 +81510,14,1.0,1,1.5828869342803955,11,1.0,3 +81511,14,1.0,1,1.1988905668258667,12,1.0,3 +81512,14,1.0,1,1.4868881702423096,13,1.0,3 +81513,14,1.0,1,1.4318888187408447,14,0.0,3 +81514,14,0.0,1,1.6718857288360596,15,0.0,3 +81515,14,0.0,1,1.7118852138519287,16,0.0,3 +81516,14,1.0,1,1.7618846893310547,17,1.0,3 +81517,14,1.0,1,1.400889277458191,18,1.0,3 +81518,14,1.0,1,1.8218839168548584,19,0.0,3 +81519,14,1.0,1,1.3508899211883545,20,1.0,3 +81520,14,1.0,1,1.5488873720169067,21,1.0,3 +81521,14,1.0,1,1.5378875732421875,22,1.0,3 +81522,14,1.0,1,1.680885672569275,23,1.0,3 +81523,14,1.0,1,1.5688871145248413,24,1.0,3 +81524,14,1.0,1,1.536887526512146,25,1.0,3 +81525,14,1.0,1,1.371889591217041,26,1.0,3 +81526,14,1.0,1,1.5708870887756348,27,1.0,3 +81527,14,1.0,1,1.9648820161819458,28,1.0,3 +81528,14,1.0,1,2.058882236480713,29,1.0,3 +81529,14,1.0,1,1.2698906660079956,30,1.0,3 +81530,14,1.0,1,1.5528873205184937,31,0.0,3 +81531,14,1.0,1,2.4459004402160645,32,1.0,3 +81532,14,1.0,1,1.4808882474899292,33,1.0,3 +81533,14,1.0,1,2.1978888511657715,34,1.0,3 +81534,14,1.0,1,1.2948906421661377,35,1.0,3 +81535,14,1.0,1,1.3838894367218018,36,1.0,3 +81536,14,1.0,1,1.1928905248641968,37,1.0,3 +81537,14,1.0,1,1.374889612197876,38,1.0,3 +81538,14,1.0,1,1.4048892259597778,39,1.0,3 +81539,14,1.0,1,1.1868906021118164,40,1.0,3 +81540,14,1.0,1,1.3468899726867676,41,1.0,3 +81541,14,1.0,1,1.493888020515442,42,0.0,3 +81542,14,0.0,1,2.2838926315307617,43,1.0,3 +81543,14,0.0,1,1.3218902349472046,44,0.0,3 +81544,14,0.0,1,1.7748844623565674,45,0.0,3 +81545,14,0.0,1,2.105884552001953,46,1.0,3 +81546,14,1.0,1,1.6898856163024902,47,1.0,3 +81547,14,0.0,1,1.6308863162994385,48,0.0,3 +81548,14,1.0,1,1.533887505531311,49,1.0,3 +81549,14,1.0,1,1.672885775566101,50,1.0,3 +81550,14,1.0,1,1.7308850288391113,51,1.0,3 +81551,14,1.0,1,1.3698896169662476,52,1.0,3 +81552,14,1.0,1,1.3878893852233887,53,0.0,3 +81553,14,0.0,1,1.445888638496399,54,0.0,3 +81554,14,1.0,1,1.7108852863311768,55,1.0,3 +81555,14,1.0,1,1.6818857192993164,56,1.0,3 +81556,14,1.0,1,1.2638907432556152,57,0.0,3 +81557,14,0.0,1,1.3358900547027588,58,0.0,3 +81558,14,0.0,1,2.026881217956543,59,1.0,3 +81559,14,0.0,1,1.3248902559280396,60,0.0,3 +81560,14,0.0,1,1.370889663696289,61,0.0,3 +81561,14,1.0,1,1.5308876037597656,62,0.0,3 +81562,14,1.0,1,1.6968854665756226,63,1.0,3 +81563,14,1.0,1,1.5898869037628174,64,0.0,3 +81564,14,0.0,1,1.609886646270752,65,1.0,3 +81565,14,0.0,1,1.212890625,66,0.0,3 +81566,14,1.0,1,1.2918906211853027,67,1.0,3 +81567,14,1.0,1,1.6708858013153076,68,1.0,3 +81568,14,1.0,1,1.533887505531311,69,0.0,3 +81569,14,0.0,1,1.8538835048675537,70,1.0,3 +81570,14,0.0,1,1.3378900289535522,71,0.0,3 +81571,14,0.0,1,1.4768882989883423,72,0.0,3 +81572,14,0.0,1,1.2218905687332153,73,1.0,3 +81573,14,0.0,1,1.3328901529312134,74,0.0,3 +81574,14,0.0,1,1.2428905963897705,75,0.0,3 +81575,14,1.0,1,1.554887294769287,76,1.0,3 +81576,14,1.0,1,1.7368849515914917,77,1.0,3 +81577,14,1.0,1,1.3258901834487915,78,1.0,3 +81578,14,1.0,1,1.4688884019851685,79,1.0,3 +81579,14,1.0,1,1.6648858785629272,80,1.0,3 +81580,14,1.0,1,1.5098878145217896,81,0.0,3 +81581,14,0.0,1,1.2048906087875366,82,0.0,3 +81582,14,0.0,1,1.283890724182129,83,1.0,3 +81583,14,0.0,1,1.1328904628753662,84,0.0,3 +81584,14,0.0,1,1.3948893547058105,85,0.0,3 +81585,14,1.0,1,1.4948880672454834,86,0.0,3 +81586,14,0.0,1,1.252890706062317,87,0.0,3 +81587,14,1.0,1,2.1848881244659424,88,1.0,3 +81588,14,1.0,1,1.7158851623535156,89,1.0,3 +81589,14,1.0,1,1.3838894367218018,90,1.0,3 +81590,14,1.0,1,1.3068904876708984,91,1.0,3 +81591,14,1.0,1,1.6138865947723389,92,1.0,3 +81592,14,1.0,1,1.7078852653503418,93,1.0,3 +81593,14,1.0,1,1.842883586883545,94,1.0,3 +81594,14,1.0,1,1.8808830976486206,95,1.0,3 +81595,14,1.0,1,1.584886908531189,96,0.0,3 +81596,14,1.0,1,1.4028892517089844,97,1.0,3 +81597,14,1.0,1,2.288892984390259,98,1.0,3 +81598,14,1.0,1,1.349889874458313,99,1.0,3 +81599,14,1.0,1,1.2608907222747803,100,1.0,3 +81600,14,1.0,1,1.5868868827819824,101,1.0,3 +81601,14,1.0,1,1.396889328956604,102,1.0,3 +81602,14,1.0,1,1.6438860893249512,103,0.0,3 +81603,14,0.0,1,1.7638845443725586,104,0.0,3 +81604,14,0.0,1,2.911921977996826,105,0.0,3 +81605,14,0.0,1,1.1528904438018799,106,1.0,3 +81606,14,0.0,1,1.5828869342803955,107,0.0,3 +81607,14,0.0,1,1.8238837718963623,108,0.0,3 +81608,14,1.0,1,1.5998866558074951,109,1.0,3 +81609,14,0.0,1,2.1758875846862793,110,0.0,3 +81610,14,1.0,1,1.507887840270996,111,1.0,3 +81611,14,1.0,1,1.4218889474868774,112,1.0,3 +81612,14,1.0,1,1.297890543937683,113,0.0,3 +81613,14,0.0,1,1.8508834838867188,114,1.0,3 +81614,14,0.0,1,1.8548834323883057,115,0.0,3 +81615,14,0.0,1,1.4068892002105713,116,0.0,3 +81616,14,0.0,1,1.3518898487091064,117,0.0,3 +81617,14,0.0,1,1.2458906173706055,118,0.0,3 +81618,14,1.0,1,1.6748857498168945,119,0.0,3 +81619,14,1.0,1,1.9888817071914673,120,1.0,3 +81620,14,1.0,1,1.1868906021118164,121,1.0,3 +81621,14,1.0,1,1.2608907222747803,122,1.0,3 +81622,14,1.0,1,1.7768844366073608,123,0.0,3 +81623,14,0.0,1,2.108884572982788,124,0.0,3 +81624,14,1.0,1,2.070882797241211,125,0.0,3 +81625,14,0.0,1,1.956882119178772,126,0.0,3 +81626,14,1.0,1,2.620908498764038,127,1.0,3 +81627,14,1.0,1,1.4548885822296143,128,0.0,3 +81628,14,0.0,1,1.7138853073120117,129,0.0,3 +81629,14,1.0,1,1.6088865995407104,130,1.0,3 +81630,14,1.0,1,1.276890754699707,131,0.0,3 +81631,14,1.0,1,1.215890645980835,132,1.0,3 +81632,14,1.0,1,1.2688907384872437,133,0.0,3 +81633,14,0.0,1,2.297893524169922,134,0.0,3 +81634,14,0.0,1,1.3258901834487915,135,0.0,3 +81635,14,0.0,1,1.5208877325057983,136,0.0,3 +81636,14,0.0,1,1.2328906059265137,137,1.0,3 +81637,14,1.0,1,2.093883991241455,138,1.0,3 +81638,14,1.0,1,1.8918828964233398,139,0.0,3 +81639,14,0.0,1,1.2198905944824219,140,0.0,3 +81640,14,0.0,1,2.386897563934326,141,0.0,3 +81641,14,0.0,1,1.9418823719024658,142,0.0,3 +81642,14,0.0,1,1.1558904647827148,143,1.0,3 +81643,14,0.0,1,1.3138903379440308,144,0.0,3 +81644,14,1.0,1,1.555887222290039,145,1.0,3 +81645,14,1.0,1,1.4288889169692993,146,0.0,3 +81646,14,0.0,1,2.042881488800049,147,0.0,3 +81647,14,0.0,1,1.2688907384872437,148,1.0,3 +81648,14,0.0,1,1.2508907318115234,149,0.0,3 +81649,14,1.0,1,1.51588773727417,150,1.0,3 +81650,14,1.0,1,1.5248876810073853,151,0.0,3 +81651,14,0.0,1,2.103884220123291,152,0.0,3 +81652,14,1.0,1,1.5708870887756348,153,1.0,3 +81653,14,1.0,1,1.4618884325027466,154,1.0,3 +81654,14,1.0,1,1.7678844928741455,155,1.0,3 +81655,14,1.0,1,1.772884488105774,156,1.0,3 +81656,14,1.0,1,1.4528886079788208,157,1.0,3 +81657,14,1.0,1,1.4868881702423096,158,1.0,3 +81658,14,1.0,1,1.2478907108306885,159,1.0,3 +81659,14,1.0,1,1.1888905763626099,160,1.0,3 +81660,14,1.0,1,1.4218889474868774,161,1.0,3 +81661,14,1.0,1,1.5468873977661133,162,1.0,3 +81662,14,1.0,1,1.7158851623535156,163,1.0,3 +81663,14,1.0,1,1.6138865947723389,164,1.0,3 +81664,14,1.0,1,1.4208890199661255,165,0.0,3 +81665,14,0.0,1,1.243890643119812,166,0.0,3 +81666,14,0.0,1,1.437888741493225,167,0.0,3 +81667,14,1.0,1,1.2208906412124634,168,0.0,3 +81668,14,0.0,1,1.3138903379440308,169,0.0,3 +81669,14,0.0,1,2.2348904609680176,170,0.0,3 +81670,14,0.0,1,1.7888842821121216,171,0.0,3 +81671,14,1.0,1,1.3208903074264526,172,0.0,3 +81672,14,1.0,1,1.606886625289917,173,1.0,3 +81673,14,1.0,1,1.5508873462677002,174,0.0,3 +81674,14,0.0,1,1.6708858013153076,175,0.0,3 +81675,14,0.0,1,1.8338837623596191,176,1.0,3 +81676,14,0.0,1,1.14689040184021,177,1.0,3 +81677,14,1.0,1,1.5928868055343628,178,1.0,3 +81678,14,0.0,1,1.790884256362915,179,1.0,3 +81679,14,0.0,1,1.374889612197876,180,0.0,3 +81680,14,1.0,1,1.747884750366211,181,0.0,3 +81681,14,0.0,1,1.2618906497955322,182,1.0,3 +81682,14,0.0,1,1.7628846168518066,183,0.0,3 +81683,14,0.0,1,1.3208903074264526,184,0.0,3 +81684,14,1.0,1,1.565887212753296,185,1.0,3 +81685,14,1.0,1,1.5398874282836914,186,1.0,3 +81686,14,1.0,1,1.65488600730896,187,1.0,3 +81687,14,1.0,1,2.110884666442871,188,1.0,3 +81688,14,1.0,1,1.240890622138977,189,0.0,3 +81689,14,1.0,1,1.18289053440094,190,1.0,3 +81690,14,1.0,1,1.6938855648040771,191,0.0,3 +81691,14,0.0,1,1.4608885049819946,192,0.0,3 +81692,14,1.0,1,2.2488911151885986,193,0.0,3 +81693,14,0.0,1,1.5948867797851562,194,0.0,3 +81694,14,0.0,1,2.122885227203369,195,0.0,3 +81695,14,0.0,1,1.3068904876708984,196,1.0,3 +81696,14,0.0,1,1.5868868827819824,197,1.0,3 +81697,14,0.0,1,1.8748831748962402,198,0.0,3 +81698,14,0.0,1,1.6298863887786865,199,1.0,3 +81699,14,0.0,1,1.151890516281128,200,0.0,3 +81700,14,1.0,1,1.5488873720169067,201,1.0,3 +81701,14,1.0,1,1.2548906803131104,202,0.0,3 +81702,14,1.0,1,1.6378862857818604,203,1.0,3 +81703,14,1.0,1,1.5168877840042114,204,0.0,3 +81704,14,0.0,1,1.6458861827850342,205,1.0,3 +81705,14,0.0,1,1.3948893547058105,206,0.0,3 +81706,14,0.0,1,1.6798856258392334,207,0.0,3 +81707,14,1.0,1,2.1608870029449463,208,0.0,3 +81708,14,0.0,1,1.1908905506134033,209,0.0,3 +81709,14,0.0,1,1.559887170791626,210,0.0,3 +81710,14,1.0,1,1.7538847923278809,211,0.0,3 +81711,14,1.0,1,1.6828856468200684,212,1.0,3 +81712,14,1.0,1,1.5028879642486572,213,0.0,3 +81713,14,1.0,1,1.2268905639648438,214,0.0,3 +81714,14,0.0,1,1.7308850288391113,215,1.0,3 +81715,14,0.0,1,2.340895414352417,216,0.0,3 +81716,14,0.0,1,2.312894105911255,217,0.0,3 +81717,14,0.0,1,1.270890712738037,218,1.0,3 +81718,14,0.0,1,1.2998905181884766,219,0.0,3 +81719,14,0.0,1,1.6208864450454712,220,1.0,3 +81720,14,0.0,1,1.5478873252868652,221,1.0,3 +81721,14,0.0,1,1.1868906021118164,222,0.0,3 +81722,14,1.0,1,1.7098853588104248,223,1.0,3 +81723,14,1.0,1,1.4178889989852905,224,1.0,3 +81724,14,1.0,1,1.533887505531311,225,1.0,3 +81725,14,1.0,1,1.243890643119812,226,1.0,3 +81726,14,1.0,1,2.1688873767852783,227,0.0,3 +81727,14,1.0,1,1.4598884582519531,228,0.0,3 +81728,14,0.0,1,1.8588833808898926,229,0.0,3 +81729,14,0.0,1,1.7048853635787964,230,0.0,3 +81730,14,0.0,1,2.331894874572754,231,0.0,3 +81731,14,0.0,1,2.296893358230591,232,1.0,3 +81732,14,0.0,1,1.4688884019851685,233,1.0,3 +81733,14,0.0,1,1.422888994216919,234,0.0,3 +81734,14,1.0,1,1.5188877582550049,235,1.0,3 +81735,14,1.0,1,1.2628906965255737,236,1.0,3 +81736,14,1.0,1,1.3128904104232788,237,1.0,3 +81737,14,0.0,1,1.4998879432678223,238,0.0,3 +81738,14,1.0,1,1.276890754699707,239,1.0,3 +81739,14,1.0,1,1.5918867588043213,240,1.0,3 +81740,14,1.0,1,1.4788882732391357,241,0.0,3 +81741,14,1.0,1,2.1748876571655273,242,1.0,3 +81742,14,1.0,1,1.889883041381836,243,1.0,3 +81743,14,1.0,1,1.4958879947662354,244,0.0,3 +81744,14,1.0,1,1.6178865432739258,245,0.0,3 +81745,14,0.0,1,1.5838868618011475,246,0.0,3 +81746,14,0.0,1,1.3408900499343872,247,0.0,3 +81747,14,0.0,1,1.5428874492645264,248,0.0,3 +81748,14,0.0,1,1.8088840246200562,249,0.0,3 +81749,14,1.0,1,1.2178906202316284,250,0.0,3 +81750,14,1.0,1,1.6738858222961426,251,0.0,3 +81751,14,0.0,1,1.6188864707946777,252,0.0,3 +81752,14,0.0,1,1.5308876037597656,253,0.0,3 +81753,14,0.0,1,2.05688214302063,254,0.0,3 +81754,14,1.0,1,1.4218889474868774,255,1.0,3 +81755,14,1.0,1,1.7238850593566895,256,1.0,3 +81756,14,1.0,1,1.5068879127502441,257,1.0,3 +81757,14,1.0,1,1.5048879384994507,258,1.0,3 +81758,14,1.0,1,1.375889539718628,259,1.0,3 +81759,14,1.0,1,1.8728832006454468,260,0.0,3 +81760,14,0.0,1,1.2218905687332153,261,0.0,3 +81761,14,1.0,1,1.7008854150772095,262,1.0,3 +81762,14,1.0,1,1.175890564918518,263,0.0,3 +81763,14,1.0,1,1.9188826084136963,264,0.0,3 +81764,14,1.0,1,1.5218876600265503,265,1.0,3 +81765,14,1.0,1,1.9918816089630127,266,1.0,3 +81766,14,1.0,1,1.279890775680542,267,1.0,3 +81767,14,1.0,1,1.4738882780075073,268,1.0,3 +81768,14,1.0,1,1.2688907384872437,269,1.0,3 +81769,14,1.0,1,1.8808830976486206,270,0.0,3 +81770,14,0.0,1,1.4488886594772339,271,1.0,3 +81771,14,0.0,1,1.209890604019165,272,1.0,3 +81772,14,0.0,1,1.1718904972076416,273,0.0,3 +81773,14,0.0,1,1.5388875007629395,274,1.0,3 +81774,14,0.0,1,1.4298888444900513,275,0.0,3 +81775,14,1.0,1,1.3808895349502563,276,1.0,3 +81776,14,1.0,1,1.8088840246200562,277,1.0,3 +81777,14,1.0,1,1.3838894367218018,278,1.0,3 +81778,14,1.0,1,1.2018905878067017,279,1.0,3 +81779,14,1.0,1,1.6228864192962646,280,1.0,3 +81780,14,1.0,1,1.323890209197998,281,1.0,3 +81781,14,1.0,1,1.8848830461502075,282,1.0,3 +81782,14,1.0,1,1.4988880157470703,283,1.0,3 +81783,14,1.0,1,1.3508899211883545,284,0.0,3 +81784,14,0.0,1,1.860883355140686,285,0.0,3 +81785,14,0.0,1,1.6368862390518188,286,0.0,3 +81786,14,0.0,1,2.2598915100097656,287,0.0,3 +81787,14,1.0,1,1.2538906335830688,288,1.0,3 +81788,14,1.0,1,1.323890209197998,289,0.0,3 +81789,14,1.0,1,1.5538873672485352,290,1.0,3 +81790,14,1.0,1,1.3438899517059326,291,1.0,3 +81791,14,1.0,1,1.7538847923278809,292,0.0,3 +81792,14,1.0,1,1.6458861827850342,293,1.0,3 +81793,14,0.0,1,1.2998905181884766,294,0.0,3 +81794,14,1.0,1,1.3648897409439087,295,1.0,3 +81795,14,1.0,1,2.090883731842041,296,1.0,3 +81796,14,1.0,1,1.2928906679153442,297,1.0,3 +81797,14,1.0,1,1.3738895654678345,298,0.0,3 +81798,14,0.0,1,1.7148852348327637,299,0.0,3 +81799,14,1.0,1,1.252890706062317,300,1.0,3 +81800,14,1.0,1,1.300890564918518,301,1.0,3 +81801,14,1.0,1,1.6308863162994385,302,1.0,3 +81802,14,1.0,1,1.3448899984359741,303,1.0,3 +81803,14,1.0,1,1.4548885822296143,304,1.0,3 +81804,14,1.0,1,1.6438860893249512,305,0.0,3 +81805,14,1.0,1,1.2958905696868896,306,1.0,3 +81806,14,1.0,1,1.9178826808929443,307,1.0,3 +81807,14,1.0,1,1.3258901834487915,308,1.0,3 +81808,14,1.0,1,1.4648884534835815,309,1.0,3 +81809,14,1.0,1,1.4288889169692993,310,1.0,3 +81810,14,1.0,1,1.5988867282867432,311,1.0,3 +81811,14,1.0,1,1.3658896684646606,312,1.0,3 +81812,14,1.0,1,1.5938868522644043,313,0.0,3 +81813,14,0.0,1,1.7008854150772095,314,0.0,3 +81814,14,1.0,1,1.2678906917572021,315,1.0,3 +81815,14,1.0,1,1.7738845348358154,316,1.0,3 +81816,14,1.0,1,1.213890552520752,317,1.0,3 +81817,14,1.0,1,1.3558897972106934,318,1.0,3 +81818,14,1.0,1,1.5458874702453613,319,0.0,3 +81819,14,1.0,1,2.2468910217285156,320,1.0,3 +81820,14,1.0,1,1.6148865222930908,321,1.0,3 +81821,14,1.0,1,1.308890461921692,322,0.0,3 +81822,14,1.0,1,1.3868894577026367,323,1.0,3 +81823,14,1.0,1,1.881883144378662,324,1.0,3 +81824,14,1.0,1,1.4728883504867554,325,0.0,3 +81825,14,1.0,1,2.1768877506256104,326,1.0,3 +81826,14,1.0,1,2.050881862640381,327,1.0,3 +81827,14,1.0,1,1.7838842868804932,328,0.0,3 +81828,14,0.0,1,2.296893358230591,329,0.0,3 +81829,14,1.0,1,1.4478886127471924,330,1.0,3 +81830,14,1.0,1,1.2658907175064087,331,0.0,3 +81831,14,0.0,1,1.5258876085281372,332,0.0,3 +81832,14,0.0,1,2.087883472442627,333,1.0,3 +81833,14,0.0,1,1.3878893852233887,334,1.0,3 +81834,14,0.0,1,1.536887526512146,335,1.0,3 +81835,14,0.0,1,1.2658907175064087,336,0.0,3 +81836,14,0.0,1,1.5728870630264282,337,1.0,3 +81837,14,0.0,1,1.655885934829712,338,0.0,3 +81838,14,1.0,1,1.9598820209503174,339,1.0,3 +81839,14,1.0,1,1.5388875007629395,340,1.0,3 +81840,14,1.0,1,1.2318906784057617,341,1.0,3 +81841,14,1.0,1,1.4138890504837036,342,1.0,3 +81842,14,1.0,1,1.2008905410766602,343,1.0,3 +81843,14,0.0,1,1.9878816604614258,344,0.0,3 +81844,14,1.0,1,1.4208890199661255,345,1.0,3 +81845,14,1.0,1,1.7838842868804932,346,0.0,3 +81846,14,1.0,1,2.367896556854248,347,1.0,3 +81847,14,1.0,1,1.3298901319503784,348,0.0,3 +81848,14,1.0,1,1.4948880672454834,349,0.0,3 +81849,14,1.0,1,1.2578907012939453,350,1.0,3 +81850,14,1.0,1,1.3298901319503784,351,0.0,3 +81851,14,1.0,1,1.6048866510391235,352,1.0,3 +81852,14,1.0,1,1.6888855695724487,353,1.0,3 +81853,14,1.0,1,1.4338887929916382,354,1.0,3 +81854,14,1.0,1,1.820883870124817,355,0.0,3 +81855,14,1.0,1,1.864883303642273,356,1.0,3 +81856,14,1.0,1,1.2548906803131104,357,1.0,3 +81857,14,0.0,1,1.277890682220459,358,1.0,3 +81858,14,0.0,1,1.4398887157440186,359,0.0,3 +81859,14,1.0,1,1.4308888912200928,360,0.0,3 +81860,14,0.0,1,2.4809019565582275,361,1.0,3 +81861,14,0.0,1,1.276890754699707,362,0.0,3 +81862,14,0.0,1,1.2238906621932983,363,0.0,3 +81863,14,1.0,1,2.6789112091064453,364,1.0,3 +81864,14,1.0,1,1.5538873672485352,365,0.0,3 +81865,14,0.0,1,1.797884225845337,366,0.0,3 +81866,14,0.0,1,1.2788907289505005,367,0.0,3 +81867,14,0.0,1,2.2768924236297607,368,0.0,3 +81868,14,1.0,1,1.3958892822265625,369,1.0,3 +81869,14,1.0,1,1.5028879642486572,370,1.0,3 +81870,14,1.0,1,1.2228906154632568,371,1.0,3 +81871,14,1.0,1,1.3638896942138672,372,1.0,3 +81872,14,1.0,1,1.2088905572891235,373,1.0,3 +81873,14,1.0,1,1.2998905181884766,374,1.0,3 +81874,14,1.0,1,1.252890706062317,375,1.0,3 +81875,14,1.0,1,1.3698896169662476,376,1.0,3 +81876,14,1.0,1,1.720885157585144,377,1.0,3 +81877,14,1.0,1,2.023881196975708,378,1.0,3 +81878,14,1.0,1,1.5288876295089722,379,1.0,3 +81879,14,1.0,1,1.2258906364440918,380,0.0,3 +81880,14,0.0,1,1.4518885612487793,381,1.0,3 +81881,14,0.0,1,1.1408904790878296,382,1.0,3 +81882,14,0.0,1,1.5398874282836914,383,0.0,3 +81883,14,1.0,1,1.6698858737945557,384,0.0,3 +81884,14,1.0,1,1.5978868007659912,385,1.0,3 +81885,14,1.0,1,1.419888973236084,386,0.0,3 +81886,14,1.0,1,1.3518898487091064,387,1.0,3 +81887,14,1.0,1,1.3078904151916504,388,1.0,3 +81888,14,1.0,1,1.7288850545883179,389,0.0,3 +81889,14,1.0,1,1.8518834114074707,390,0.0,3 +81890,14,0.0,1,1.701885461807251,391,1.0,3 +81891,14,0.0,1,1.1668905019760132,392,0.0,3 +81892,14,1.0,1,1.8098840713500977,393,1.0,3 +81893,14,1.0,1,1.2938905954360962,394,1.0,3 +81894,14,1.0,1,1.3448899984359741,395,0.0,3 +81895,14,0.0,1,1.240890622138977,396,0.0,3 +81896,14,1.0,1,1.9408823251724243,397,1.0,3 +81897,14,1.0,1,1.3598897457122803,398,0.0,3 +81898,14,0.0,1,2.2708921432495117,399,0.0,3 +81899,14,0.0,1,2.0088815689086914,400,0.0,3 +81900,14,1.0,1,2.286892890930176,401,0.0,3 +81901,14,1.0,1,2.1678872108459473,402,1.0,3 +81902,14,1.0,1,1.935882329940796,403,1.0,3 +81903,14,1.0,1,1.437888741493225,404,1.0,3 +81904,14,1.0,1,1.33089017868042,405,0.0,3 +81905,14,0.0,1,1.4298888444900513,406,0.0,3 +81906,14,1.0,1,1.6778857707977295,407,1.0,3 +81907,14,1.0,1,1.3768895864486694,408,0.0,3 +81908,14,1.0,1,1.4538885354995728,409,1.0,3 +81909,14,1.0,1,1.4658883810043335,410,1.0,3 +81910,14,1.0,1,1.9098827838897705,411,1.0,3 +81911,14,1.0,1,2.1778879165649414,412,1.0,3 +81912,14,1.0,1,1.322890281677246,413,1.0,3 +81913,14,1.0,1,1.7068853378295898,414,1.0,3 +81914,14,1.0,1,1.4488886594772339,415,0.0,3 +81915,14,1.0,1,1.6278862953186035,416,1.0,3 +81916,14,1.0,1,2.078883171081543,417,0.0,3 +81917,14,0.0,1,2.042881488800049,418,0.0,3 +81918,14,0.0,1,1.5358874797821045,419,0.0,3 +81919,14,0.0,1,1.794884204864502,420,0.0,3 +81920,14,0.0,1,1.5698871612548828,421,1.0,3 +81921,14,0.0,1,1.2228906154632568,422,0.0,3 +81922,14,0.0,1,1.7828843593597412,423,0.0,3 +81923,14,1.0,1,1.2228906154632568,424,0.0,3 +81924,14,1.0,1,2.6959118843078613,425,1.0,3 +81925,14,0.0,1,1.4168890714645386,426,0.0,3 +81926,14,1.0,1,1.3798894882202148,427,1.0,3 +81927,14,1.0,1,1.445888638496399,428,1.0,3 +81928,14,1.0,1,1.4428887367248535,429,1.0,3 +81929,14,1.0,1,1.2598906755447388,430,0.0,3 +81930,14,0.0,1,2.273892402648926,431,0.0,3 +81931,14,1.0,1,1.7378849983215332,432,1.0,3 +81932,14,1.0,1,1.1988905668258667,433,1.0,3 +81933,14,1.0,1,1.4268889427185059,434,1.0,3 +81934,14,1.0,1,1.4308888912200928,435,1.0,3 +81935,14,1.0,1,1.3218902349472046,436,1.0,3 +81936,14,1.0,1,1.5678870677947998,437,1.0,3 +81937,14,1.0,1,1.3948893547058105,438,1.0,3 +81938,14,1.0,1,1.6778857707977295,439,0.0,3 +81939,14,1.0,1,2.2838926315307617,440,0.0,3 +81940,14,0.0,1,1.5458874702453613,441,1.0,3 +81941,14,0.0,1,1.2488906383514404,442,0.0,3 +81942,14,1.0,1,2.126885414123535,443,1.0,3 +81943,14,1.0,1,1.8528834581375122,444,1.0,3 +81944,14,1.0,1,1.279890775680542,445,1.0,3 +81945,14,1.0,1,1.3548898696899414,446,0.0,3 +81946,14,0.0,1,1.4918880462646484,447,0.0,3 +81947,14,0.0,1,1.4168890714645386,448,0.0,3 +81948,14,1.0,1,1.4388887882232666,449,1.0,3 +81949,14,1.0,1,1.680885672569275,450,1.0,3 +81950,14,1.0,1,1.6648858785629272,451,0.0,3 +81951,14,0.0,1,2.1768877506256104,452,0.0,3 +81952,14,0.0,1,1.30189049243927,453,0.0,3 +81953,14,0.0,1,1.4918880462646484,454,0.0,3 +81954,14,1.0,1,1.7828843593597412,455,1.0,3 +81955,14,1.0,1,1.3118903636932373,456,1.0,3 +81956,14,1.0,1,1.981881856918335,457,0.0,3 +81957,14,1.0,1,2.4409000873565674,458,1.0,3 +81958,14,1.0,1,1.489888072013855,459,1.0,3 +81959,14,1.0,1,1.9248825311660767,460,0.0,3 +81960,14,0.0,1,1.4478886127471924,461,1.0,3 +81961,14,0.0,1,1.7008854150772095,462,0.0,3 +81962,14,1.0,1,1.5098878145217896,463,1.0,3 +81963,14,1.0,1,1.6708858013153076,464,1.0,3 +81964,14,1.0,1,1.2638907432556152,465,1.0,3 +81965,14,1.0,1,1.4488886594772339,466,0.0,3 +81966,14,1.0,1,1.79388427734375,467,0.0,3 +81967,14,0.0,1,1.5318875312805176,468,0.0,3 +81968,14,1.0,1,1.6658859252929688,469,0.0,3 +81969,14,1.0,1,2.070882797241211,470,1.0,3 +81970,14,1.0,1,1.4978879690170288,471,1.0,3 +81971,14,1.0,1,1.9648820161819458,472,1.0,3 +81972,14,1.0,1,1.348889946937561,473,1.0,3 +81973,14,1.0,1,1.2688907384872437,474,1.0,3 +81974,14,1.0,1,1.8548834323883057,475,1.0,3 +81975,14,1.0,1,1.6608859300613403,476,1.0,3 +81976,14,1.0,1,1.4468886852264404,477,1.0,3 +81977,14,1.0,1,1.5788869857788086,478,1.0,3 +81978,14,1.0,1,1.1968905925750732,479,1.0,3 +81979,14,1.0,1,1.2428905963897705,480,0.0,3 +81980,14,1.0,1,1.4218889474868774,481,0.0,3 +81981,14,0.0,1,1.209890604019165,482,1.0,3 +81982,14,0.0,1,1.3098903894424438,483,1.0,3 +81983,14,0.0,1,1.1298904418945312,484,0.0,3 +81984,14,1.0,1,1.4548885822296143,485,0.0,3 +81985,14,0.0,1,1.5818870067596436,486,0.0,3 +81986,14,0.0,1,1.3028905391693115,487,0.0,3 +81987,14,1.0,1,2.1788878440856934,488,0.0,3 +81988,14,1.0,1,1.5248876810073853,489,1.0,3 +81989,14,1.0,1,1.5248876810073853,490,1.0,3 +81990,14,1.0,1,1.8848830461502075,491,0.0,3 +81991,14,0.0,1,1.8778831958770752,492,0.0,3 +81992,14,1.0,1,1.6688858270645142,493,1.0,3 +81993,14,1.0,1,1.3638896942138672,494,0.0,3 +81994,14,0.0,1,1.5818870067596436,495,1.0,3 +81995,14,0.0,1,1.2908906936645508,496,0.0,3 +81996,14,1.0,1,1.2598906755447388,497,0.0,3 +81997,14,0.0,1,1.2878906726837158,498,0.0,3 +81998,14,0.0,1,1.3148903846740723,499,0.0,3 +81999,14,1.0,1,1.743884801864624,500,0.0,3 +82000,14,0.0,2,1.7868843078613281,1,1.0,3 +82001,14,0.0,2,1.1988905668258667,2,0.0,3 +82002,14,0.0,2,1.418889045715332,3,0.0,3 +82003,14,1.0,2,1.5608872175216675,4,1.0,3 +82004,14,1.0,2,1.9168826341629028,5,1.0,3 +82005,14,1.0,2,1.8658833503723145,6,0.0,3 +82006,14,0.0,2,1.4818881750106812,7,1.0,3 +82007,14,0.0,2,1.2228906154632568,8,0.0,3 +82008,14,0.0,2,1.3668897151947021,9,0.0,3 +82009,14,0.0,2,1.3818894624710083,10,1.0,3 +82010,14,1.0,2,1.396889328956604,11,1.0,3 +82011,14,1.0,2,1.2478907108306885,12,0.0,3 +82012,14,0.0,2,1.1808905601501465,13,0.0,3 +82013,14,0.0,2,1.5718870162963867,14,0.0,3 +82014,14,0.0,2,1.213890552520752,15,1.0,3 +82015,14,0.0,2,1.1588904857635498,16,0.0,3 +82016,14,1.0,2,1.746884822845459,17,0.0,3 +82017,14,0.0,2,1.3548898696899414,18,1.0,3 +82018,14,0.0,2,1.1948904991149902,19,1.0,3 +82019,14,0.0,2,1.2008905410766602,20,0.0,3 +82020,14,0.0,2,2.324894666671753,21,0.0,3 +82021,14,0.0,2,1.3418899774551392,22,0.0,3 +82022,14,1.0,2,2.2338905334472656,23,1.0,3 +82023,14,1.0,2,1.367889642715454,24,1.0,3 +82024,14,1.0,2,1.1568905115127563,25,0.0,3 +82025,14,0.0,2,1.1778905391693115,26,0.0,3 +82026,14,1.0,2,1.8658833503723145,27,1.0,3 +82027,14,1.0,2,1.4248889684677124,28,1.0,3 +82028,14,1.0,2,1.2038905620574951,29,0.0,3 +82029,14,1.0,2,1.9468822479248047,30,0.0,3 +82030,14,0.0,2,1.6718857288360596,31,1.0,3 +82031,14,0.0,2,1.6388862133026123,32,0.0,3 +82032,14,0.0,2,1.3848894834518433,33,0.0,3 +82033,14,0.0,2,1.2478907108306885,34,0.0,3 +82034,14,1.0,2,1.559887170791626,35,1.0,3 +82035,14,1.0,2,1.5478873252868652,36,0.0,3 +82036,14,0.0,2,1.3778895139694214,37,0.0,3 +82037,14,1.0,2,1.739884853363037,38,1.0,3 +82038,14,1.0,2,1.743884801864624,39,0.0,3 +82039,14,1.0,2,2.296893358230591,40,0.0,3 +82040,14,1.0,2,1.7188851833343506,41,1.0,3 +82041,14,1.0,2,1.3888894319534302,42,0.0,3 +82042,14,0.0,2,1.375889539718628,43,0.0,3 +82043,14,1.0,2,2.069882869720459,44,1.0,3 +82044,14,1.0,2,1.2458906173706055,45,0.0,3 +82045,14,0.0,2,1.2428905963897705,46,0.0,3 +82046,14,1.0,2,1.6638858318328857,47,1.0,3 +82047,14,1.0,2,1.7008854150772095,48,0.0,3 +82048,14,0.0,2,1.2258906364440918,49,1.0,3 +82049,14,0.0,2,1.3588898181915283,50,1.0,3 +82050,14,0.0,2,1.7118852138519287,51,0.0,3 +82051,14,0.0,2,1.9118826389312744,52,1.0,3 +82052,14,0.0,2,1.9448822736740112,53,1.0,3 +82053,14,0.0,2,1.2698906660079956,54,1.0,3 +82054,14,0.0,2,1.1788904666900635,55,1.0,3 +82055,14,0.0,2,1.3468899726867676,56,1.0,3 +82056,14,0.0,2,1.3388900756835938,57,0.0,3 +82057,14,1.0,2,1.7368849515914917,58,0.0,3 +82058,14,0.0,2,1.5438873767852783,59,1.0,3 +82059,14,0.0,2,1.2258906364440918,60,0.0,3 +82060,14,0.0,2,1.9648820161819458,61,0.0,3 +82061,14,0.0,2,1.6378862857818604,62,0.0,3 +82062,14,0.0,2,2.334895133972168,63,1.0,3 +82063,14,0.0,2,1.3958892822265625,64,0.0,3 +82064,14,0.0,2,1.345889925956726,65,0.0,3 +82065,14,1.0,2,1.2668907642364502,66,0.0,3 +82066,14,0.0,2,1.2028906345367432,67,0.0,3 +82067,14,1.0,2,2.4088985919952393,68,1.0,3 +82068,14,1.0,2,1.18289053440094,69,0.0,3 +82069,14,0.0,2,1.349889874458313,70,0.0,3 +82070,14,0.0,2,1.533887505531311,71,1.0,3 +82071,14,0.0,2,1.6618859767913818,72,0.0,3 +82072,14,0.0,2,1.4058891534805298,73,1.0,3 +82073,14,0.0,2,1.213890552520752,74,1.0,3 +82074,14,0.0,2,1.797884225845337,75,0.0,3 +82075,14,0.0,2,1.4348888397216797,76,1.0,3 +82076,14,0.0,2,1.603886604309082,77,1.0,3 +82077,14,0.0,2,1.2998905181884766,78,1.0,3 +82078,14,0.0,2,1.305890440940857,79,0.0,3 +82079,14,1.0,2,2.336895227432251,80,0.0,3 +82080,14,1.0,2,2.041881561279297,81,1.0,3 +82081,14,1.0,2,1.493888020515442,82,1.0,3 +82082,14,1.0,2,1.4388887882232666,83,0.0,3 +82083,14,0.0,2,1.6928855180740356,84,0.0,3 +82084,14,1.0,2,1.3148903846740723,85,0.0,3 +82085,14,0.0,2,1.7148852348327637,86,0.0,3 +82086,14,0.0,2,1.908882737159729,87,0.0,3 +82087,14,0.0,2,1.3798894882202148,88,0.0,3 +82088,14,0.0,2,2.085883617401123,89,1.0,3 +82089,14,0.0,2,1.1618905067443848,90,0.0,3 +82090,14,0.0,2,1.3728896379470825,91,1.0,3 +82091,14,0.0,2,1.860883355140686,92,1.0,3 +82092,14,0.0,2,1.7998840808868408,93,0.0,3 +82093,14,0.0,2,1.4908881187438965,94,0.0,3 +82094,14,1.0,2,1.5908868312835693,95,1.0,3 +82095,14,1.0,2,1.699885368347168,96,1.0,3 +82096,14,1.0,2,1.3988893032073975,97,1.0,3 +82097,14,1.0,2,1.1638904809951782,98,0.0,3 +82098,14,1.0,2,1.3378900289535522,99,1.0,3 +82099,14,1.0,2,1.437888741493225,100,1.0,3 +82100,14,1.0,2,1.8298838138580322,101,1.0,3 +82101,14,1.0,2,1.4998879432678223,102,1.0,3 +82102,14,1.0,2,1.4838881492614746,103,0.0,3 +82103,14,0.0,2,1.7528847455978394,104,1.0,3 +82104,14,0.0,2,1.2388906478881836,105,0.0,3 +82105,14,0.0,2,1.745884895324707,106,0.0,3 +82106,14,1.0,2,1.5318875312805176,107,0.0,3 +82107,14,0.0,2,1.6378862857818604,108,0.0,3 +82108,14,0.0,2,1.9448822736740112,109,0.0,3 +82109,14,1.0,2,1.4718883037567139,110,1.0,3 +82110,14,1.0,2,1.4438886642456055,111,1.0,3 +82111,14,1.0,2,1.3778895139694214,112,1.0,3 +82112,14,1.0,2,1.6698858737945557,113,1.0,3 +82113,14,1.0,2,1.8308837413787842,114,0.0,3 +82114,14,0.0,2,1.1648905277252197,115,0.0,3 +82115,14,0.0,2,2.084883451461792,116,0.0,3 +82116,14,1.0,2,1.7268850803375244,117,0.0,3 +82117,14,0.0,2,1.445888638496399,118,0.0,3 +82118,14,0.0,2,2.4639010429382324,119,1.0,3 +82119,14,0.0,2,1.273890733718872,120,1.0,3 +82120,14,0.0,2,1.4648884534835815,121,0.0,3 +82121,14,1.0,2,1.8508834838867188,122,0.0,3 +82122,14,0.0,2,1.3098903894424438,123,0.0,3 +82123,14,1.0,2,1.4978879690170288,124,1.0,3 +82124,14,1.0,2,1.6448861360549927,125,1.0,3 +82125,14,1.0,2,1.4748883247375488,126,0.0,3 +82126,14,0.0,2,2.098884105682373,127,0.0,3 +82127,14,0.0,2,2.131885528564453,128,0.0,3 +82128,14,0.0,2,1.1928905248641968,129,0.0,3 +82129,14,0.0,2,1.1988905668258667,130,0.0,3 +82130,14,0.0,2,1.1938905715942383,131,0.0,3 +82131,14,1.0,2,1.327890157699585,132,1.0,3 +82132,14,0.0,2,1.374889612197876,133,0.0,3 +82133,14,1.0,2,1.400889277458191,134,1.0,3 +82134,14,1.0,2,1.3138903379440308,135,1.0,3 +82135,14,1.0,2,1.6358861923217773,136,1.0,3 +82136,14,1.0,2,1.3688896894454956,137,1.0,3 +82137,14,1.0,2,1.4298888444900513,138,1.0,3 +82138,14,1.0,2,1.2658907175064087,139,0.0,3 +82139,14,1.0,2,1.4878880977630615,140,1.0,3 +82140,14,1.0,2,1.2858906984329224,141,1.0,3 +82141,14,1.0,2,1.4068892002105713,142,1.0,3 +82142,14,1.0,2,1.887882947921753,143,0.0,3 +82143,14,1.0,2,1.975881814956665,144,0.0,3 +82144,14,1.0,2,1.4868881702423096,145,1.0,3 +82145,14,1.0,2,1.7368849515914917,146,0.0,3 +82146,14,1.0,2,1.4118890762329102,147,1.0,3 +82147,14,1.0,2,1.4728883504867554,148,0.0,3 +82148,14,0.0,2,2.6829113960266113,149,1.0,3 +82149,14,0.0,2,1.4998879432678223,150,1.0,3 +82150,14,0.0,2,1.2678906917572021,151,0.0,3 +82151,14,0.0,2,1.2258906364440918,152,0.0,3 +82152,14,1.0,2,1.7768844366073608,153,0.0,3 +82153,14,0.0,2,1.9968816041946411,154,0.0,3 +82154,14,0.0,2,1.4808882474899292,155,1.0,3 +82155,14,0.0,2,1.4308888912200928,156,0.0,3 +82156,14,1.0,2,1.6748857498168945,157,0.0,3 +82157,14,0.0,2,1.367889642715454,158,1.0,3 +82158,14,0.0,2,1.4788882732391357,159,0.0,3 +82159,14,0.0,2,1.694885492324829,160,1.0,3 +82160,14,0.0,2,1.2858906984329224,161,1.0,3 +82161,14,0.0,2,1.142890453338623,162,0.0,3 +82162,14,1.0,2,1.554887294769287,163,1.0,3 +82163,14,1.0,2,1.415889024734497,164,0.0,3 +82164,14,0.0,2,1.2658907175064087,165,0.0,3 +82165,14,0.0,2,1.1708905696868896,166,0.0,3 +82166,14,0.0,2,1.3998892307281494,167,0.0,3 +82167,14,1.0,2,1.2318906784057617,168,1.0,3 +82168,14,1.0,2,1.3878893852233887,169,1.0,3 +82169,14,1.0,2,1.3208903074264526,170,0.0,3 +82170,14,0.0,2,1.148890495300293,171,1.0,3 +82171,14,0.0,2,1.1688904762268066,172,1.0,3 +82172,14,0.0,2,1.1478904485702515,173,0.0,3 +82173,14,0.0,2,2.403898239135742,174,0.0,3 +82174,14,0.0,2,1.2248905897140503,175,1.0,3 +82175,14,0.0,2,1.212890625,176,0.0,3 +82176,14,0.0,2,1.444888710975647,177,1.0,3 +82177,14,0.0,2,1.4108891487121582,178,0.0,3 +82178,14,0.0,2,1.603886604309082,179,0.0,3 +82179,14,0.0,2,1.4098891019821167,180,0.0,3 +82180,14,0.0,2,1.4298888444900513,181,0.0,3 +82181,14,0.0,2,2.111884593963623,182,0.0,3 +82182,14,0.0,2,2.273892402648926,183,0.0,3 +82183,14,0.0,2,1.6908855438232422,184,0.0,3 +82184,14,1.0,2,2.122885227203369,185,0.0,3 +82185,14,1.0,2,1.6878855228424072,186,0.0,3 +82186,14,1.0,2,2.063882350921631,187,0.0,3 +82187,14,0.0,2,1.3068904876708984,188,1.0,3 +82188,14,0.0,2,1.6858856678009033,189,0.0,3 +82189,14,0.0,2,1.5028879642486572,190,0.0,3 +82190,14,0.0,2,1.1838905811309814,191,1.0,3 +82191,14,0.0,2,1.536887526512146,192,1.0,3 +82192,14,0.0,2,1.6348862648010254,193,1.0,3 +82193,14,0.0,2,1.2618906497955322,194,0.0,3 +82194,14,1.0,2,1.9738819599151611,195,0.0,3 +82195,14,0.0,2,1.6968854665756226,196,0.0,3 +82196,14,0.0,2,1.279890775680542,197,1.0,3 +82197,14,0.0,2,1.3688896894454956,198,1.0,3 +82198,14,0.0,2,1.46388840675354,199,0.0,3 +82199,14,1.0,2,1.3558897972106934,200,1.0,3 +82200,14,1.0,2,1.6238863468170166,201,0.0,3 +82201,14,0.0,2,1.3098903894424438,202,0.0,3 +82202,14,1.0,2,1.5088878870010376,203,1.0,3 +82203,14,1.0,2,1.9948816299438477,204,1.0,3 +82204,14,1.0,2,1.4268889427185059,205,1.0,3 +82205,14,1.0,2,2.324894666671753,206,1.0,3 +82206,14,1.0,2,1.2668907642364502,207,1.0,3 +82207,14,1.0,2,1.2018905878067017,208,0.0,3 +82208,14,0.0,2,1.8928829431533813,209,0.0,3 +82209,14,1.0,2,1.4028892517089844,210,0.0,3 +82210,14,1.0,2,1.9658820629119873,211,0.0,3 +82211,14,1.0,2,2.0028815269470215,212,0.0,3 +82212,14,0.0,2,2.022881269454956,213,0.0,3 +82213,14,0.0,2,1.397889256477356,214,0.0,3 +82214,14,0.0,2,2.095883846282959,215,0.0,3 +82215,14,1.0,2,1.3148903846740723,216,0.0,3 +82216,14,1.0,2,2.086883544921875,217,0.0,3 +82217,14,1.0,2,2.054882049560547,218,1.0,3 +82218,14,1.0,2,1.3028905391693115,219,1.0,3 +82219,14,1.0,2,1.4498885869979858,220,1.0,3 +82220,14,1.0,2,1.2928906679153442,221,0.0,3 +82221,14,1.0,2,2.11688494682312,222,1.0,3 +82222,14,1.0,2,1.4348888397216797,223,1.0,3 +82223,14,1.0,2,1.694885492324829,224,1.0,3 +82224,14,1.0,2,1.4298888444900513,225,0.0,3 +82225,14,1.0,2,1.1898905038833618,226,1.0,3 +82226,14,1.0,2,1.2658907175064087,227,0.0,3 +82227,14,0.0,2,1.651885986328125,228,0.0,3 +82228,14,1.0,2,1.2958905696868896,229,0.0,3 +82229,14,1.0,2,1.4748883247375488,230,0.0,3 +82230,14,1.0,2,1.1678905487060547,231,0.0,3 +82231,14,0.0,2,1.5508873462677002,232,0.0,3 +82232,14,0.0,2,1.2648906707763672,233,1.0,3 +82233,14,0.0,2,1.3848894834518433,234,1.0,3 +82234,14,0.0,2,1.562887191772461,235,0.0,3 +82235,14,1.0,2,1.3808895349502563,236,1.0,3 +82236,14,1.0,2,1.3418899774551392,237,0.0,3 +82237,14,1.0,2,1.9058828353881836,238,1.0,3 +82238,14,1.0,2,1.5468873977661133,239,0.0,3 +82239,14,0.0,2,1.9808818101882935,240,0.0,3 +82240,14,0.0,2,1.7848843336105347,241,1.0,3 +82241,14,0.0,2,1.3848894834518433,242,0.0,3 +82242,14,0.0,2,2.028881072998047,243,1.0,3 +82243,14,0.0,2,1.4838881492614746,244,0.0,3 +82244,14,1.0,2,2.028881072998047,245,1.0,3 +82245,14,0.0,2,1.4308888912200928,246,0.0,3 +82246,14,1.0,2,1.30189049243927,247,1.0,3 +82247,14,1.0,2,1.282890796661377,248,1.0,3 +82248,14,1.0,2,1.326890230178833,249,0.0,3 +82249,14,1.0,2,2.1908884048461914,250,0.0,3 +82250,14,0.0,2,1.419888973236084,251,0.0,3 +82251,14,0.0,2,1.4038891792297363,252,1.0,3 +82252,14,0.0,2,1.3808895349502563,253,0.0,3 +82253,14,0.0,2,1.5538873672485352,254,0.0,3 +82254,14,0.0,2,1.6608859300613403,255,1.0,3 +82255,14,0.0,2,1.276890754699707,256,0.0,3 +82256,14,0.0,2,1.5188877582550049,257,1.0,3 +82257,14,0.0,2,1.5178877115249634,258,0.0,3 +82258,14,1.0,2,2.1708874702453613,259,0.0,3 +82259,14,1.0,2,1.5348875522613525,260,0.0,3 +82260,14,1.0,2,1.397889256477356,261,0.0,3 +82261,14,0.0,2,2.0168814659118652,262,0.0,3 +82262,14,0.0,2,1.3338900804519653,263,1.0,3 +82263,14,0.0,2,1.6488860845565796,264,1.0,3 +82264,14,0.0,2,1.4568885564804077,265,1.0,3 +82265,14,0.0,2,1.1918905973434448,266,0.0,3 +82266,14,1.0,2,1.5198876857757568,267,1.0,3 +82267,14,1.0,2,1.2508907318115234,268,1.0,3 +82268,14,0.0,2,1.1938905715942383,269,1.0,3 +82269,14,0.0,2,2.2268900871276855,270,1.0,3 +82270,14,0.0,2,1.5288876295089722,271,0.0,3 +82271,14,1.0,2,1.3118903636932373,272,1.0,3 +82272,14,1.0,2,1.4718883037567139,273,0.0,3 +82273,14,0.0,2,1.3658896684646606,274,1.0,3 +82274,14,0.0,2,1.2678906917572021,275,1.0,3 +82275,14,0.0,2,1.5998866558074951,276,0.0,3 +82276,14,0.0,2,1.1868906021118164,277,0.0,3 +82277,14,1.0,2,1.834883689880371,278,1.0,3 +82278,14,0.0,2,1.2648906707763672,279,1.0,3 +82279,14,0.0,2,1.470888376235962,280,0.0,3 +82280,14,1.0,2,1.4398887157440186,281,1.0,3 +82281,14,1.0,2,1.820883870124817,282,0.0,3 +82282,14,0.0,2,1.1578904390335083,283,1.0,3 +82283,14,0.0,2,1.3858894109725952,284,0.0,3 +82284,14,1.0,2,1.489888072013855,285,1.0,3 +82285,14,1.0,2,1.348889946937561,286,1.0,3 +82286,14,1.0,2,1.2238906621932983,287,0.0,3 +82287,14,1.0,2,1.3178902864456177,288,1.0,3 +82288,14,1.0,2,1.304890513420105,289,0.0,3 +82289,14,1.0,2,1.8918828964233398,290,1.0,3 +82290,14,1.0,2,1.2348906993865967,291,1.0,3 +82291,14,1.0,2,1.6568859815597534,292,1.0,3 +82292,14,1.0,2,1.536887526512146,293,1.0,3 +82293,14,1.0,2,1.2538906335830688,294,1.0,3 +82294,14,1.0,2,1.3368901014328003,295,0.0,3 +82295,14,0.0,2,1.3958892822265625,296,0.0,3 +82296,14,1.0,2,1.628886342048645,297,0.0,3 +82297,14,1.0,2,2.091883659362793,298,1.0,3 +82298,14,0.0,2,1.606886625289917,299,0.0,3 +82299,14,1.0,2,1.2888907194137573,300,0.0,3 +82300,14,1.0,2,1.694885492324829,301,0.0,3 +82301,14,0.0,2,1.8928829431533813,302,0.0,3 +82302,14,0.0,2,1.8298838138580322,303,0.0,3 +82303,14,0.0,2,1.9368823766708374,304,1.0,3 +82304,14,0.0,2,1.2718907594680786,305,0.0,3 +82305,14,1.0,2,1.4748883247375488,306,0.0,3 +82306,14,0.0,2,1.554887294769287,307,0.0,3 +82307,14,0.0,2,1.5538873672485352,308,0.0,3 +82308,14,0.0,2,1.750884771347046,309,1.0,3 +82309,14,0.0,2,1.610886573791504,310,0.0,3 +82310,14,1.0,2,1.7228851318359375,311,1.0,3 +82311,14,1.0,2,1.305890440940857,312,1.0,3 +82312,14,1.0,2,1.367889642715454,313,0.0,3 +82313,14,0.0,2,1.3288902044296265,314,0.0,3 +82314,14,0.0,2,1.8938829898834229,315,1.0,3 +82315,14,0.0,2,1.2558907270431519,316,0.0,3 +82316,14,1.0,2,1.7818844318389893,317,1.0,3 +82317,14,1.0,2,1.6658859252929688,318,1.0,3 +82318,14,1.0,2,1.3118903636932373,319,1.0,3 +82319,14,1.0,2,1.1948904991149902,320,1.0,3 +82320,14,1.0,2,2.1948885917663574,321,1.0,3 +82321,14,1.0,2,1.367889642715454,322,1.0,3 +82322,14,1.0,2,1.3188903331756592,323,0.0,3 +82323,14,0.0,2,1.8988828659057617,324,1.0,3 +82324,14,0.0,2,1.5238876342773438,325,0.0,3 +82325,14,1.0,2,1.4778882265090942,326,1.0,3 +82326,14,1.0,2,1.8848830461502075,327,0.0,3 +82327,14,1.0,2,1.2488906383514404,328,1.0,3 +82328,14,1.0,2,1.2418906688690186,329,0.0,3 +82329,14,0.0,2,1.8018841743469238,330,0.0,3 +82330,14,1.0,2,1.2518906593322754,331,0.0,3 +82331,14,1.0,2,1.4498885869979858,332,1.0,3 +82332,14,1.0,2,1.4578884840011597,333,1.0,3 +82333,14,1.0,2,1.5178877115249634,334,1.0,3 +82334,14,1.0,2,1.283890724182129,335,1.0,3 +82335,14,1.0,2,1.6608859300613403,336,1.0,3 +82336,14,1.0,2,1.3298901319503784,337,1.0,3 +82337,14,1.0,2,1.4358887672424316,338,1.0,3 +82338,14,1.0,2,1.8748831748962402,339,1.0,3 +82339,14,1.0,2,1.3888894319534302,340,1.0,3 +82340,14,1.0,2,2.090883731842041,341,1.0,3 +82341,14,1.0,2,1.3808895349502563,342,1.0,3 +82342,14,0.0,2,1.6138865947723389,343,1.0,3 +82343,14,0.0,2,2.041881561279297,344,0.0,3 +82344,14,1.0,2,1.8938829898834229,345,0.0,3 +82345,14,1.0,2,2.4298996925354004,346,1.0,3 +82346,14,1.0,2,1.3288902044296265,347,0.0,3 +82347,14,1.0,2,1.345889925956726,348,1.0,3 +82348,14,1.0,2,1.1578904390335083,349,1.0,3 +82349,14,1.0,2,1.209890604019165,350,1.0,3 +82350,14,1.0,2,1.3988893032073975,351,0.0,3 +82351,14,0.0,2,2.6879115104675293,352,1.0,3 +82352,14,0.0,2,1.6608859300613403,353,0.0,3 +82353,14,0.0,2,1.8248838186264038,354,0.0,3 +82354,14,1.0,2,1.5988867282867432,355,1.0,3 +82355,14,1.0,2,1.4948880672454834,356,1.0,3 +82356,14,1.0,2,1.5128878355026245,357,1.0,3 +82357,14,1.0,2,1.282890796661377,358,1.0,3 +82358,14,1.0,2,1.3128904104232788,359,0.0,3 +82359,14,1.0,2,1.252890706062317,360,0.0,3 +82360,14,0.0,2,1.212890625,361,1.0,3 +82361,14,0.0,2,1.51588773727417,362,0.0,3 +82362,14,1.0,2,1.493888020515442,363,0.0,3 +82363,14,0.0,2,1.2518906593322754,364,1.0,3 +82364,14,0.0,2,1.2888907194137573,365,0.0,3 +82365,14,0.0,2,1.5448874235153198,366,1.0,3 +82366,14,0.0,2,1.7078852653503418,367,0.0,3 +82367,14,0.0,2,1.2038905620574951,368,1.0,3 +82368,14,0.0,2,1.5888868570327759,369,1.0,3 +82369,14,0.0,2,1.1378904581069946,370,1.0,3 +82370,14,0.0,2,1.2368906736373901,371,0.0,3 +82371,14,0.0,2,1.8968828916549683,372,0.0,3 +82372,14,0.0,2,1.9398822784423828,373,0.0,3 +82373,14,0.0,2,2.304893732070923,374,0.0,3 +82374,14,0.0,2,1.6368862390518188,375,0.0,3 +82375,14,0.0,2,1.4128891229629517,376,1.0,3 +82376,14,0.0,2,1.4328888654708862,377,0.0,3 +82377,14,1.0,2,1.6918854713439941,378,1.0,3 +82378,14,1.0,2,1.624886393547058,379,1.0,3 +82379,14,0.0,2,2.2588915824890137,380,0.0,3 +82380,14,1.0,2,1.2508907318115234,381,1.0,3 +82381,14,1.0,2,1.4828882217407227,382,1.0,3 +82382,14,1.0,2,1.7288850545883179,383,1.0,3 +82383,14,1.0,2,1.1988905668258667,384,1.0,3 +82384,14,1.0,2,1.3598897457122803,385,0.0,3 +82385,14,1.0,2,1.6698858737945557,386,1.0,3 +82386,14,1.0,2,1.5018879175186157,387,1.0,3 +82387,14,1.0,2,1.697885513305664,388,0.0,3 +82388,14,0.0,2,2.1738877296447754,389,0.0,3 +82389,14,1.0,2,2.589907169342041,390,1.0,3 +82390,14,1.0,2,1.6598858833312988,391,0.0,3 +82391,14,0.0,2,1.374889612197876,392,0.0,3 +82392,14,1.0,2,1.2278906106948853,393,0.0,3 +82393,14,0.0,2,1.6158864498138428,394,1.0,3 +82394,14,0.0,2,1.280890703201294,395,0.0,3 +82395,14,1.0,2,1.2858906984329224,396,1.0,3 +82396,14,1.0,2,1.1718904972076416,397,1.0,3 +82397,14,1.0,2,1.927882432937622,398,0.0,3 +82398,14,1.0,2,1.7328850030899048,399,1.0,3 +82399,14,1.0,2,1.7668845653533936,400,1.0,3 +82400,14,1.0,2,1.5678870677947998,401,1.0,3 +82401,14,1.0,2,1.4838881492614746,402,1.0,3 +82402,14,1.0,2,1.6388862133026123,403,1.0,3 +82403,14,1.0,2,1.441888689994812,404,1.0,3 +82404,14,1.0,2,1.3398900032043457,405,1.0,3 +82405,14,1.0,2,1.610886573791504,406,1.0,3 +82406,14,1.0,2,1.8018841743469238,407,1.0,3 +82407,14,1.0,2,1.2718907594680786,408,0.0,3 +82408,14,0.0,2,1.3248902559280396,409,1.0,3 +82409,14,0.0,2,1.3538898229599,410,0.0,3 +82410,14,0.0,2,1.2148905992507935,411,1.0,3 +82411,14,0.0,2,1.2788907289505005,412,0.0,3 +82412,14,1.0,2,1.952882170677185,413,1.0,3 +82413,14,1.0,2,1.2598906755447388,414,1.0,3 +82414,14,1.0,2,1.2348906993865967,415,0.0,3 +82415,14,1.0,2,1.9038827419281006,416,0.0,3 +82416,14,0.0,2,1.3598897457122803,417,0.0,3 +82417,14,1.0,2,1.5958867073059082,418,0.0,3 +82418,14,0.0,2,1.51588773727417,419,1.0,3 +82419,14,0.0,2,1.1238903999328613,420,1.0,3 +82420,14,0.0,2,1.4178889989852905,421,0.0,3 +82421,14,1.0,2,1.393889307975769,422,1.0,3 +82422,14,1.0,2,1.30189049243927,423,1.0,3 +82423,14,1.0,2,1.2938905954360962,424,1.0,3 +82424,14,1.0,2,1.3548898696899414,425,0.0,3 +82425,14,0.0,2,1.3828895092010498,426,1.0,3 +82426,14,0.0,2,1.3178902864456177,427,0.0,3 +82427,14,1.0,2,1.7868843078613281,428,1.0,3 +82428,14,1.0,2,1.1478904485702515,429,1.0,3 +82429,14,1.0,2,1.422888994216919,430,0.0,3 +82430,14,0.0,2,1.3918893337249756,431,0.0,3 +82431,14,0.0,2,1.7088853120803833,432,0.0,3 +82432,14,0.0,2,1.6348862648010254,433,0.0,3 +82433,14,0.0,2,2.024881362915039,434,0.0,3 +82434,14,0.0,2,1.1978905200958252,435,0.0,3 +82435,14,0.0,2,1.4268889427185059,436,0.0,3 +82436,14,0.0,2,1.6938855648040771,437,1.0,3 +82437,14,0.0,2,1.540887475013733,438,1.0,3 +82438,14,0.0,2,1.8658833503723145,439,0.0,3 +82439,14,1.0,2,1.4828882217407227,440,0.0,3 +82440,14,0.0,2,1.4048892259597778,441,0.0,3 +82441,14,1.0,2,1.5468873977661133,442,0.0,3 +82442,14,0.0,2,1.9658820629119873,443,0.0,3 +82443,14,0.0,2,1.5198876857757568,444,0.0,3 +82444,14,0.0,2,2.4388999938964844,445,1.0,3 +82445,14,0.0,2,1.422888994216919,446,0.0,3 +82446,14,0.0,2,1.8538835048675537,447,0.0,3 +82447,14,0.0,2,1.415889024734497,448,0.0,3 +82448,14,1.0,2,1.7828843593597412,449,0.0,3 +82449,14,0.0,2,1.3608897924423218,450,0.0,3 +82450,14,1.0,2,2.054882049560547,451,0.0,3 +82451,14,1.0,2,1.5258876085281372,452,1.0,3 +82452,14,1.0,2,1.3248902559280396,453,1.0,3 +82453,14,1.0,2,1.8698832988739014,454,0.0,3 +82454,14,0.0,2,1.8468835353851318,455,0.0,3 +82455,14,1.0,2,2.2258901596069336,456,0.0,3 +82456,14,1.0,2,1.7448848485946655,457,1.0,3 +82457,14,1.0,2,1.5928868055343628,458,0.0,3 +82458,14,0.0,2,1.1588904857635498,459,1.0,3 +82459,14,0.0,2,2.082883358001709,460,0.0,3 +82460,14,1.0,2,1.8978829383850098,461,1.0,3 +82461,14,1.0,2,1.3188903331756592,462,1.0,3 +82462,14,0.0,2,1.3738895654678345,463,1.0,3 +82463,14,1.0,2,1.7038853168487549,464,1.0,3 +82464,14,1.0,2,1.6858856678009033,465,0.0,3 +82465,14,0.0,2,1.327890157699585,466,0.0,3 +82466,14,0.0,2,1.4088891744613647,467,0.0,3 +82467,14,0.0,2,1.4618884325027466,468,0.0,3 +82468,14,0.0,2,1.5668871402740479,469,1.0,3 +82469,14,0.0,2,1.4128891229629517,470,0.0,3 +82470,14,0.0,2,2.1788878440856934,471,1.0,3 +82471,14,0.0,2,1.3608897924423218,472,1.0,3 +82472,14,0.0,2,1.371889591217041,473,0.0,3 +82473,14,1.0,2,1.5378875732421875,474,1.0,3 +82474,14,1.0,2,1.2898906469345093,475,1.0,3 +82475,14,1.0,2,1.557887315750122,476,1.0,3 +82476,14,1.0,2,1.3338900804519653,477,1.0,3 +82477,14,0.0,2,1.701885461807251,478,1.0,3 +82478,14,0.0,2,1.422888994216919,479,1.0,3 +82479,14,0.0,2,1.5818870067596436,480,0.0,3 +82480,14,1.0,2,1.2558907270431519,481,0.0,3 +82481,14,0.0,2,1.352889895439148,482,0.0,3 +82482,14,0.0,2,2.5319042205810547,483,0.0,3 +82483,14,0.0,2,1.6798856258392334,484,0.0,3 +82484,14,0.0,2,1.4058891534805298,485,1.0,3 +82485,14,0.0,2,1.4998879432678223,486,1.0,3 +82486,14,0.0,2,1.437888741493225,487,1.0,3 +82487,14,0.0,2,2.051881790161133,488,1.0,3 +82488,14,0.0,2,1.4558885097503662,489,1.0,3 +82489,14,0.0,2,1.18289053440094,490,1.0,3 +82490,14,0.0,2,1.2458906173706055,491,1.0,3 +82491,14,0.0,2,1.7008854150772095,492,0.0,3 +82492,14,0.0,2,2.1648871898651123,493,0.0,3 +82493,14,0.0,2,1.536887526512146,494,1.0,3 +82494,14,0.0,2,1.1938905715942383,495,0.0,3 +82495,14,0.0,2,1.3138903379440308,496,1.0,3 +82496,14,0.0,2,1.4108891487121582,497,1.0,3 +82497,14,0.0,2,1.2648906707763672,498,0.0,3 +82498,14,1.0,2,1.5508873462677002,499,1.0,3 +82499,14,1.0,2,1.5128878355026245,500,0.0,3 +82500,15,1.0,0,1.4860758781433105,1,1.0,3 +82501,15,1.0,0,2.145071506500244,2,1.0,3 +82502,15,1.0,0,2.12307071685791,3,1.0,3 +82503,15,1.0,0,1.3140778541564941,4,1.0,3 +82504,15,1.0,0,1.6610736846923828,5,1.0,3 +82505,15,0.0,0,1.5910744667053223,6,0.0,3 +82506,15,1.0,0,1.5450750589370728,7,1.0,3 +82507,15,1.0,0,1.3690773248672485,8,1.0,3 +82508,15,1.0,0,1.4270765781402588,9,1.0,3 +82509,15,1.0,0,1.5720747709274292,10,1.0,3 +82510,15,1.0,0,1.6800733804702759,11,0.0,3 +82511,15,0.0,0,1.3980770111083984,12,0.0,3 +82512,15,1.0,0,1.9470698833465576,13,1.0,3 +82513,15,1.0,0,1.5700747966766357,14,1.0,3 +82514,15,1.0,0,1.764072299003601,15,1.0,3 +82515,15,1.0,0,1.3240779638290405,16,1.0,3 +82516,15,1.0,0,1.4230766296386719,17,1.0,3 +82517,15,1.0,0,1.5920745134353638,18,1.0,3 +82518,15,1.0,0,1.599074363708496,19,0.0,3 +82519,15,1.0,0,1.5080755949020386,20,0.0,3 +82520,15,1.0,0,1.2730778455734253,21,0.0,3 +82521,15,0.0,0,1.470076084136963,22,1.0,3 +82522,15,0.0,0,1.6210741996765137,23,1.0,3 +82523,15,0.0,0,1.3100779056549072,24,0.0,3 +82524,15,0.0,0,1.5300753116607666,25,0.0,3 +82525,15,1.0,0,1.419076681137085,26,1.0,3 +82526,15,1.0,0,1.797071933746338,27,0.0,3 +82527,15,1.0,0,1.4080768823623657,28,1.0,3 +82528,15,1.0,0,1.4290765523910522,29,1.0,3 +82529,15,1.0,0,1.2680778503417969,30,1.0,3 +82530,15,1.0,0,1.2710778713226318,31,1.0,3 +82531,15,1.0,0,1.3510775566101074,32,0.0,3 +82532,15,0.0,0,1.4530762434005737,33,0.0,3 +82533,15,0.0,0,1.7690722942352295,34,0.0,3 +82534,15,1.0,0,1.3950769901275635,35,1.0,3 +82535,15,1.0,0,1.295077919960022,36,0.0,3 +82536,15,0.0,0,1.562074899673462,37,0.0,3 +82537,15,0.0,0,1.5000756978988647,38,0.0,3 +82538,15,1.0,0,1.971069574356079,39,1.0,3 +82539,15,1.0,0,1.4970756769180298,40,1.0,3 +82540,15,1.0,0,1.5120755434036255,41,1.0,3 +82541,15,1.0,0,1.2480777502059937,42,1.0,3 +82542,15,1.0,0,1.4250766038894653,43,1.0,3 +82543,15,1.0,0,1.9550697803497314,44,1.0,3 +82544,15,1.0,0,1.646073818206787,45,1.0,3 +82545,15,1.0,0,1.6230740547180176,46,1.0,3 +82546,15,1.0,0,1.2170777320861816,47,1.0,3 +82547,15,1.0,0,1.4800759553909302,48,1.0,3 +82548,15,0.0,0,1.3420777320861816,49,0.0,3 +82549,15,1.0,0,1.3650773763656616,50,1.0,3 +82550,15,1.0,0,1.4760760068893433,51,1.0,3 +82551,15,1.0,0,1.3650773763656616,52,1.0,3 +82552,15,1.0,0,1.1990777254104614,53,1.0,3 +82553,15,1.0,0,1.5520750284194946,54,0.0,3 +82554,15,1.0,0,1.5490750074386597,55,1.0,3 +82555,15,1.0,0,1.6600736379623413,56,1.0,3 +82556,15,1.0,0,1.8300714492797852,57,1.0,3 +82557,15,0.0,0,1.441076397895813,58,0.0,3 +82558,15,1.0,0,1.6840733289718628,59,1.0,3 +82559,15,1.0,0,1.5670747756958008,60,1.0,3 +82560,15,1.0,0,1.323077917098999,61,1.0,3 +82561,15,1.0,0,1.4100768566131592,62,1.0,3 +82562,15,0.0,0,1.8060717582702637,63,0.0,3 +82563,15,1.0,0,1.3390777111053467,64,1.0,3 +82564,15,1.0,0,1.189077615737915,65,0.0,3 +82565,15,0.0,0,1.646073818206787,66,0.0,3 +82566,15,0.0,0,1.647073745727539,67,0.0,3 +82567,15,0.0,0,1.392077088356018,68,0.0,3 +82568,15,1.0,0,1.5230753421783447,69,1.0,3 +82569,15,1.0,0,1.265077829360962,70,0.0,3 +82570,15,1.0,0,1.3860771656036377,71,1.0,3 +82571,15,1.0,0,1.5250753164291382,72,1.0,3 +82572,15,1.0,0,1.3550775051116943,73,1.0,3 +82573,15,1.0,0,1.5560749769210815,74,0.0,3 +82574,15,1.0,0,1.8260715007781982,75,1.0,3 +82575,15,1.0,0,1.7520724534988403,76,1.0,3 +82576,15,1.0,0,2.137071132659912,77,1.0,3 +82577,15,1.0,0,1.5820746421813965,78,1.0,3 +82578,15,1.0,0,1.1970776319503784,79,1.0,3 +82579,15,1.0,0,1.392077088356018,80,1.0,3 +82580,15,1.0,0,1.5050755739212036,81,1.0,3 +82581,15,1.0,0,1.3630774021148682,82,0.0,3 +82582,15,1.0,0,1.2770777940750122,83,1.0,3 +82583,15,1.0,0,1.4690760374069214,84,0.0,3 +82584,15,0.0,0,1.6690735816955566,85,0.0,3 +82585,15,1.0,0,1.5500750541687012,86,1.0,3 +82586,15,1.0,0,1.415076732635498,87,1.0,3 +82587,15,1.0,0,2.118070363998413,88,1.0,3 +82588,15,1.0,0,1.400076985359192,89,1.0,3 +82589,15,1.0,0,1.5080755949020386,90,0.0,3 +82590,15,0.0,0,1.6830732822418213,91,0.0,3 +82591,15,0.0,0,1.319077968597412,92,0.0,3 +82592,15,1.0,0,1.5880745649337769,93,1.0,3 +82593,15,1.0,0,1.2180776596069336,94,1.0,3 +82594,15,1.0,0,1.6390738487243652,95,1.0,3 +82595,15,1.0,0,1.4500763416290283,96,1.0,3 +82596,15,1.0,0,1.4900758266448975,97,1.0,3 +82597,15,1.0,0,1.5180754661560059,98,1.0,3 +82598,15,1.0,0,1.7320727109909058,99,1.0,3 +82599,15,1.0,0,1.3760772943496704,100,1.0,3 +82600,15,1.0,0,1.3120778799057007,101,1.0,3 +82601,15,1.0,0,1.414076805114746,102,1.0,3 +82602,15,1.0,0,1.3130779266357422,103,1.0,3 +82603,15,1.0,0,1.6220741271972656,104,1.0,3 +82604,15,1.0,0,1.929070234298706,105,1.0,3 +82605,15,1.0,0,1.3980770111083984,106,1.0,3 +82606,15,1.0,0,1.4910757541656494,107,1.0,3 +82607,15,1.0,0,1.6620736122131348,108,1.0,3 +82608,15,1.0,0,1.4130767583847046,109,1.0,3 +82609,15,1.0,0,1.392077088356018,110,1.0,3 +82610,15,1.0,0,1.4130767583847046,111,1.0,3 +82611,15,1.0,0,1.3310778141021729,112,1.0,3 +82612,15,1.0,0,1.4020769596099854,113,1.0,3 +82613,15,1.0,0,1.7790720462799072,114,1.0,3 +82614,15,1.0,0,1.440076470375061,115,1.0,3 +82615,15,1.0,0,1.3310778141021729,116,1.0,3 +82616,15,1.0,0,1.4770759344100952,117,0.0,3 +82617,15,1.0,0,2.1820733547210693,118,1.0,3 +82618,15,0.0,0,1.253077745437622,119,0.0,3 +82619,15,1.0,0,1.3940770626068115,120,1.0,3 +82620,15,1.0,0,1.330077886581421,121,1.0,3 +82621,15,1.0,0,1.651073694229126,122,1.0,3 +82622,15,1.0,0,1.2330777645111084,123,0.0,3 +82623,15,1.0,0,1.657073736190796,124,1.0,3 +82624,15,1.0,0,1.5860745906829834,125,0.0,3 +82625,15,0.0,0,1.2730778455734253,126,1.0,3 +82626,15,0.0,0,1.5720747709274292,127,1.0,3 +82627,15,0.0,0,1.2120777368545532,128,0.0,3 +82628,15,0.0,0,1.5250753164291382,129,0.0,3 +82629,15,0.0,0,1.9840694665908813,130,0.0,3 +82630,15,1.0,0,1.4100768566131592,131,1.0,3 +82631,15,1.0,0,1.225077748298645,132,1.0,3 +82632,15,0.0,0,1.4760760068893433,133,0.0,3 +82633,15,1.0,0,1.2740778923034668,134,1.0,3 +82634,15,1.0,0,1.7130730152130127,135,1.0,3 +82635,15,1.0,0,1.6200741529464722,136,1.0,3 +82636,15,1.0,0,1.296077847480774,137,1.0,3 +82637,15,1.0,0,1.4790759086608887,138,1.0,3 +82638,15,1.0,0,1.1970776319503784,139,1.0,3 +82639,15,1.0,0,1.8960705995559692,140,1.0,3 +82640,15,1.0,0,1.4090768098831177,141,0.0,3 +82641,15,1.0,0,1.5050755739212036,142,1.0,3 +82642,15,1.0,0,1.1990777254104614,143,1.0,3 +82643,15,1.0,0,1.3050779104232788,144,1.0,3 +82644,15,1.0,0,1.3840771913528442,145,1.0,3 +82645,15,1.0,0,1.4270765781402588,146,1.0,3 +82646,15,1.0,0,1.2690777778625488,147,1.0,3 +82647,15,1.0,0,1.7830719947814941,148,1.0,3 +82648,15,1.0,0,1.7300727367401123,149,1.0,3 +82649,15,1.0,0,1.3250778913497925,150,1.0,3 +82650,15,1.0,0,1.6520737409591675,151,0.0,3 +82651,15,0.0,0,1.4690760374069214,152,0.0,3 +82652,15,1.0,0,1.8060717582702637,153,1.0,3 +82653,15,1.0,0,1.6190741062164307,154,1.0,3 +82654,15,1.0,0,1.2980778217315674,155,1.0,3 +82655,15,1.0,0,1.39307701587677,156,0.0,3 +82656,15,0.0,0,1.647073745727539,157,0.0,3 +82657,15,1.0,0,1.6700735092163086,158,1.0,3 +82658,15,1.0,0,1.466076135635376,159,1.0,3 +82659,15,1.0,0,1.3000779151916504,160,1.0,3 +82660,15,1.0,0,1.6040743589401245,161,1.0,3 +82661,15,1.0,0,1.628074049949646,162,1.0,3 +82662,15,1.0,0,1.4710760116577148,163,1.0,3 +82663,15,1.0,0,1.7550723552703857,164,1.0,3 +82664,15,1.0,0,1.3060779571533203,165,1.0,3 +82665,15,1.0,0,1.3540775775909424,166,1.0,3 +82666,15,1.0,0,1.5340752601623535,167,1.0,3 +82667,15,1.0,0,1.3820772171020508,168,1.0,3 +82668,15,1.0,0,1.3580775260925293,169,1.0,3 +82669,15,0.0,0,1.4570761919021606,170,0.0,3 +82670,15,1.0,0,1.3470776081085205,171,1.0,3 +82671,15,1.0,0,1.7090730667114258,172,1.0,3 +82672,15,1.0,0,1.6890733242034912,173,1.0,3 +82673,15,1.0,0,1.5310752391815186,174,1.0,3 +82674,15,1.0,0,1.3380777835845947,175,1.0,3 +82675,15,1.0,0,1.632073998451233,176,1.0,3 +82676,15,1.0,0,1.3680773973464966,177,0.0,3 +82677,15,1.0,0,1.1750776767730713,178,1.0,3 +82678,15,1.0,0,1.4870758056640625,179,1.0,3 +82679,15,1.0,0,1.253077745437622,180,1.0,3 +82680,15,1.0,0,1.2210776805877686,181,1.0,3 +82681,15,1.0,0,1.232077717781067,182,1.0,3 +82682,15,1.0,0,1.5630748271942139,183,1.0,3 +82683,15,0.0,0,1.133077621459961,184,0.0,3 +82684,15,1.0,0,1.5400751829147339,185,1.0,3 +82685,15,1.0,0,1.3060779571533203,186,0.0,3 +82686,15,1.0,0,1.8210716247558594,187,1.0,3 +82687,15,1.0,0,1.9380700588226318,188,1.0,3 +82688,15,1.0,0,1.6330740451812744,189,1.0,3 +82689,15,0.0,0,1.7810721397399902,190,1.0,3 +82690,15,1.0,0,1.8070716857910156,191,0.0,3 +82691,15,0.0,0,1.2490777969360352,192,0.0,3 +82692,15,0.0,0,1.6120742559432983,193,0.0,3 +82693,15,1.0,0,1.7100729942321777,194,1.0,3 +82694,15,1.0,0,1.3980770111083984,195,1.0,3 +82695,15,1.0,0,1.320077896118164,196,1.0,3 +82696,15,1.0,0,1.791071891784668,197,1.0,3 +82697,15,1.0,0,1.6880732774734497,198,0.0,3 +82698,15,0.0,0,1.4510762691497803,199,0.0,3 +82699,15,0.0,0,1.3400777578353882,200,0.0,3 +82700,15,1.0,0,1.4090768098831177,201,1.0,3 +82701,15,1.0,0,1.8880707025527954,202,1.0,3 +82702,15,1.0,0,1.5120755434036255,203,0.0,3 +82703,15,1.0,0,1.330077886581421,204,1.0,3 +82704,15,1.0,0,1.2840778827667236,205,1.0,3 +82705,15,1.0,0,1.3400777578353882,206,1.0,3 +82706,15,1.0,0,1.7740721702575684,207,1.0,3 +82707,15,1.0,0,1.3140778541564941,208,1.0,3 +82708,15,1.0,0,1.467076063156128,209,1.0,3 +82709,15,0.0,0,1.345077633857727,210,0.0,3 +82710,15,1.0,0,1.6650736331939697,211,1.0,3 +82711,15,1.0,0,1.5080755949020386,212,1.0,3 +82712,15,1.0,0,1.2710778713226318,213,1.0,3 +82713,15,1.0,0,1.323077917098999,214,1.0,3 +82714,15,1.0,0,1.3570774793624878,215,1.0,3 +82715,15,1.0,0,1.2810778617858887,216,1.0,3 +82716,15,1.0,0,1.5880745649337769,217,1.0,3 +82717,15,1.0,0,1.3160779476165771,218,1.0,3 +82718,15,1.0,0,1.317077875137329,219,0.0,3 +82719,15,0.0,0,1.649073839187622,220,0.0,3 +82720,15,1.0,0,2.0390686988830566,221,0.0,3 +82721,15,1.0,0,1.5740747451782227,222,1.0,3 +82722,15,1.0,0,1.4950757026672363,223,1.0,3 +82723,15,1.0,0,1.6040743589401245,224,1.0,3 +82724,15,1.0,0,1.4600762128829956,225,1.0,3 +82725,15,0.0,0,1.624074101448059,226,0.0,3 +82726,15,1.0,0,1.6390738487243652,227,1.0,3 +82727,15,1.0,0,1.5300753116607666,228,1.0,3 +82728,15,1.0,0,1.5390751361846924,229,1.0,3 +82729,15,1.0,0,1.255077838897705,230,1.0,3 +82730,15,1.0,0,1.3000779151916504,231,1.0,3 +82731,15,1.0,0,1.4080768823623657,232,1.0,3 +82732,15,1.0,0,1.256077766418457,233,0.0,3 +82733,15,1.0,0,1.3150779008865356,234,1.0,3 +82734,15,1.0,0,1.4130767583847046,235,1.0,3 +82735,15,1.0,0,1.6820733547210693,236,1.0,3 +82736,15,1.0,0,1.4310765266418457,237,0.0,3 +82737,15,1.0,0,1.926070213317871,238,1.0,3 +82738,15,1.0,0,1.5090755224227905,239,1.0,3 +82739,15,1.0,0,1.5640748739242554,240,1.0,3 +82740,15,1.0,0,1.4780759811401367,241,1.0,3 +82741,15,1.0,0,1.4480763673782349,242,1.0,3 +82742,15,1.0,0,1.2690777778625488,243,1.0,3 +82743,15,1.0,0,1.4510762691497803,244,1.0,3 +82744,15,1.0,0,1.2810778617858887,245,1.0,3 +82745,15,1.0,0,1.4280766248703003,246,1.0,3 +82746,15,1.0,0,1.6610736846923828,247,1.0,3 +82747,15,1.0,0,1.6640735864639282,248,1.0,3 +82748,15,1.0,0,1.9060704708099365,249,1.0,3 +82749,15,1.0,0,1.4950757026672363,250,1.0,3 +82750,15,1.0,0,1.3410776853561401,251,0.0,3 +82751,15,0.0,0,1.860071063041687,252,1.0,3 +82752,15,0.0,0,1.1700775623321533,253,0.0,3 +82753,15,0.0,0,1.515075445175171,254,0.0,3 +82754,15,1.0,0,1.6110742092132568,255,1.0,3 +82755,15,1.0,0,1.533075213432312,256,1.0,3 +82756,15,0.0,0,1.7990717887878418,257,0.0,3 +82757,15,1.0,0,1.5680748224258423,258,0.0,3 +82758,15,0.0,0,1.2850778102874756,259,0.0,3 +82759,15,1.0,0,1.6230740547180176,260,1.0,3 +82760,15,1.0,0,1.4980757236480713,261,1.0,3 +82761,15,1.0,0,1.4740760326385498,262,1.0,3 +82762,15,1.0,0,1.437076449394226,263,1.0,3 +82763,15,1.0,0,1.440076470375061,264,1.0,3 +82764,15,1.0,0,1.606074333190918,265,0.0,3 +82765,15,1.0,0,1.7360726594924927,266,1.0,3 +82766,15,1.0,0,1.2850778102874756,267,1.0,3 +82767,15,1.0,0,1.2990778684616089,268,1.0,3 +82768,15,1.0,0,1.459076166152954,269,1.0,3 +82769,15,1.0,0,1.5500750541687012,270,1.0,3 +82770,15,1.0,0,1.6180741786956787,271,1.0,3 +82771,15,1.0,0,1.5850746631622314,272,1.0,3 +82772,15,1.0,0,1.3820772171020508,273,0.0,3 +82773,15,1.0,0,1.9180703163146973,274,1.0,3 +82774,15,1.0,0,1.9630696773529053,275,1.0,3 +82775,15,0.0,0,1.418076753616333,276,0.0,3 +82776,15,1.0,0,1.2630778551101685,277,0.0,3 +82777,15,0.0,0,1.5270752906799316,278,0.0,3 +82778,15,1.0,0,1.4730759859085083,279,0.0,3 +82779,15,0.0,0,1.3940770626068115,280,1.0,3 +82780,15,0.0,0,1.4490762948989868,281,0.0,3 +82781,15,0.0,0,1.2690777778625488,282,0.0,3 +82782,15,0.0,0,1.8940706253051758,283,0.0,3 +82783,15,0.0,0,1.4050768613815308,284,0.0,3 +82784,15,0.0,0,1.8690710067749023,285,1.0,3 +82785,15,0.0,0,1.2340776920318604,286,1.0,3 +82786,15,0.0,0,1.1350775957107544,287,0.0,3 +82787,15,1.0,0,1.414076805114746,288,1.0,3 +82788,15,1.0,0,2.296078681945801,289,1.0,3 +82789,15,1.0,0,1.4970756769180298,290,1.0,3 +82790,15,1.0,0,1.4860758781433105,291,1.0,3 +82791,15,1.0,0,1.3940770626068115,292,1.0,3 +82792,15,1.0,0,1.440076470375061,293,1.0,3 +82793,15,1.0,0,1.3020778894424438,294,1.0,3 +82794,15,1.0,0,1.296077847480774,295,1.0,3 +82795,15,1.0,0,1.5410751104354858,296,1.0,3 +82796,15,1.0,0,1.4120768308639526,297,1.0,3 +82797,15,1.0,0,1.2870779037475586,298,1.0,3 +82798,15,1.0,0,1.2160776853561401,299,0.0,3 +82799,15,1.0,0,1.6270740032196045,300,1.0,3 +82800,15,1.0,0,1.3810771703720093,301,1.0,3 +82801,15,1.0,0,1.419076681137085,302,1.0,3 +82802,15,1.0,0,1.5390751361846924,303,1.0,3 +82803,15,1.0,0,1.6220741271972656,304,0.0,3 +82804,15,1.0,0,1.5160754919052124,305,0.0,3 +82805,15,1.0,0,1.484075903892517,306,1.0,3 +82806,15,1.0,0,1.419076681137085,307,1.0,3 +82807,15,1.0,0,1.7110729217529297,308,0.0,3 +82808,15,0.0,0,1.6260740756988525,309,0.0,3 +82809,15,1.0,0,1.9830694198608398,310,1.0,3 +82810,15,1.0,0,1.9240702390670776,311,1.0,3 +82811,15,1.0,0,1.492075800895691,312,1.0,3 +82812,15,1.0,0,1.3940770626068115,313,1.0,3 +82813,15,1.0,0,1.8170716762542725,314,1.0,3 +82814,15,1.0,0,1.4770759344100952,315,1.0,3 +82815,15,1.0,0,1.3860771656036377,316,0.0,3 +82816,15,1.0,0,1.7570724487304688,317,1.0,3 +82817,15,1.0,0,1.537075161933899,318,1.0,3 +82818,15,1.0,0,1.624074101448059,319,1.0,3 +82819,15,1.0,0,1.4060769081115723,320,1.0,3 +82820,15,1.0,0,1.3880771398544312,321,1.0,3 +82821,15,1.0,0,1.3910770416259766,322,1.0,3 +82822,15,1.0,0,1.601074457168579,323,1.0,3 +82823,15,1.0,0,1.2030776739120483,324,0.0,3 +82824,15,0.0,0,1.2370777130126953,325,1.0,3 +82825,15,0.0,0,1.256077766418457,326,0.0,3 +82826,15,0.0,0,1.3000779151916504,327,0.0,3 +82827,15,0.0,0,1.739072561264038,328,0.0,3 +82828,15,1.0,0,1.5940744876861572,329,1.0,3 +82829,15,1.0,0,1.7090730667114258,330,1.0,3 +82830,15,0.0,0,1.3660774230957031,331,0.0,3 +82831,15,1.0,0,1.2820777893066406,332,1.0,3 +82832,15,1.0,0,1.515075445175171,333,1.0,3 +82833,15,1.0,0,1.9620697498321533,334,1.0,3 +82834,15,1.0,0,1.7040730714797974,335,1.0,3 +82835,15,1.0,0,1.4360765218734741,336,1.0,3 +82836,15,1.0,0,1.5530749559402466,337,1.0,3 +82837,15,1.0,0,1.5350751876831055,338,1.0,3 +82838,15,1.0,0,1.322077989578247,339,1.0,3 +82839,15,1.0,0,1.7980718612670898,340,1.0,3 +82840,15,1.0,0,1.6420738697052002,341,1.0,3 +82841,15,1.0,0,1.19207763671875,342,1.0,3 +82842,15,0.0,0,1.348077654838562,343,0.0,3 +82843,15,1.0,0,1.5830745697021484,344,1.0,3 +82844,15,1.0,0,1.653073787689209,345,1.0,3 +82845,15,1.0,0,2.091069221496582,346,1.0,3 +82846,15,1.0,0,1.7990717887878418,347,1.0,3 +82847,15,1.0,0,1.3530775308609009,348,1.0,3 +82848,15,1.0,0,1.812071681022644,349,1.0,3 +82849,15,1.0,0,1.6960731744766235,350,1.0,3 +82850,15,1.0,0,1.397076964378357,351,1.0,3 +82851,15,1.0,0,1.5560749769210815,352,1.0,3 +82852,15,1.0,0,1.4330765008926392,353,1.0,3 +82853,15,1.0,0,1.3420777320861816,354,1.0,3 +82854,15,1.0,0,1.7060730457305908,355,1.0,3 +82855,15,1.0,0,1.2240777015686035,356,1.0,3 +82856,15,1.0,0,1.5260753631591797,357,1.0,3 +82857,15,1.0,0,1.533075213432312,358,1.0,3 +82858,15,0.0,0,1.3340778350830078,359,0.0,3 +82859,15,0.0,0,1.601074457168579,360,0.0,3 +82860,15,1.0,0,1.5660748481750488,361,1.0,3 +82861,15,1.0,0,1.510075569152832,362,1.0,3 +82862,15,1.0,0,1.606074333190918,363,0.0,3 +82863,15,0.0,0,1.8630709648132324,364,0.0,3 +82864,15,0.0,0,1.69407320022583,365,0.0,3 +82865,15,0.0,0,1.6220741271972656,366,0.0,3 +82866,15,0.0,0,1.841071367263794,367,0.0,3 +82867,15,0.0,0,1.2610777616500854,368,0.0,3 +82868,15,0.0,0,2.0100691318511963,369,0.0,3 +82869,15,1.0,0,1.749072551727295,370,1.0,3 +82870,15,1.0,0,1.5430750846862793,371,1.0,3 +82871,15,1.0,0,1.2750778198242188,372,1.0,3 +82872,15,1.0,0,1.2410777807235718,373,1.0,3 +82873,15,1.0,0,1.7180728912353516,374,1.0,3 +82874,15,1.0,0,1.982069492340088,375,1.0,3 +82875,15,1.0,0,1.982069492340088,376,1.0,3 +82876,15,1.0,0,1.562074899673462,377,1.0,3 +82877,15,1.0,0,1.3640774488449097,378,1.0,3 +82878,15,1.0,0,1.8460712432861328,379,0.0,3 +82879,15,0.0,0,1.4800759553909302,380,1.0,3 +82880,15,0.0,0,1.4610761404037476,381,0.0,3 +82881,15,1.0,0,1.6800733804702759,382,1.0,3 +82882,15,1.0,0,1.2520778179168701,383,1.0,3 +82883,15,1.0,0,1.8550710678100586,384,1.0,3 +82884,15,1.0,0,1.3530775308609009,385,1.0,3 +82885,15,1.0,0,1.419076681137085,386,1.0,3 +82886,15,1.0,0,1.5000756978988647,387,1.0,3 +82887,15,1.0,0,1.7600723505020142,388,1.0,3 +82888,15,1.0,0,1.319077968597412,389,1.0,3 +82889,15,1.0,0,1.3830771446228027,390,1.0,3 +82890,15,1.0,0,1.602074384689331,391,1.0,3 +82891,15,1.0,0,1.6270740032196045,392,1.0,3 +82892,15,0.0,0,1.3390777111053467,393,0.0,3 +82893,15,1.0,0,1.9610698223114014,394,1.0,3 +82894,15,1.0,0,1.6580736637115479,395,1.0,3 +82895,15,0.0,0,1.2730778455734253,396,0.0,3 +82896,15,1.0,0,1.3380777835845947,397,1.0,3 +82897,15,1.0,0,1.5490750074386597,398,1.0,3 +82898,15,0.0,0,1.437076449394226,399,0.0,3 +82899,15,1.0,0,1.4350764751434326,400,0.0,3 +82900,15,1.0,0,1.4320765733718872,401,1.0,3 +82901,15,1.0,0,1.4810758829116821,402,0.0,3 +82902,15,1.0,0,1.8240715265274048,403,1.0,3 +82903,15,1.0,0,1.4860758781433105,404,1.0,3 +82904,15,1.0,0,1.4390764236450195,405,0.0,3 +82905,15,1.0,0,1.4300765991210938,406,0.0,3 +82906,15,0.0,0,1.8070716857910156,407,0.0,3 +82907,15,0.0,0,1.4210766553878784,408,0.0,3 +82908,15,0.0,0,1.9140703678131104,409,0.0,3 +82909,15,0.0,0,1.745072603225708,410,0.0,3 +82910,15,1.0,0,2.157072067260742,411,0.0,3 +82911,15,0.0,0,1.6410739421844482,412,0.0,3 +82912,15,0.0,0,1.5240753889083862,413,0.0,3 +82913,15,1.0,0,2.08306884765625,414,1.0,3 +82914,15,1.0,0,1.4260766506195068,415,1.0,3 +82915,15,0.0,0,1.6690735816955566,416,0.0,3 +82916,15,1.0,0,1.8900706768035889,417,1.0,3 +82917,15,1.0,0,1.3320778608322144,418,0.0,3 +82918,15,0.0,0,1.2910778522491455,419,0.0,3 +82919,15,0.0,0,1.4070768356323242,420,0.0,3 +82920,15,0.0,0,1.3340778350830078,421,0.0,3 +82921,15,1.0,0,1.9940693378448486,422,1.0,3 +82922,15,1.0,0,1.323077917098999,423,1.0,3 +82923,15,0.0,0,1.5670747756958008,424,0.0,3 +82924,15,1.0,0,1.4420764446258545,425,1.0,3 +82925,15,1.0,0,1.2120777368545532,426,1.0,3 +82926,15,1.0,0,1.418076753616333,427,1.0,3 +82927,15,1.0,0,1.624074101448059,428,1.0,3 +82928,15,1.0,0,1.441076397895813,429,1.0,3 +82929,15,1.0,0,1.352077603340149,430,0.0,3 +82930,15,1.0,0,1.4820759296417236,431,1.0,3 +82931,15,1.0,0,1.5530749559402466,432,1.0,3 +82932,15,1.0,0,1.9400700330734253,433,0.0,3 +82933,15,0.0,0,1.7800720930099487,434,0.0,3 +82934,15,0.0,0,1.772072196006775,435,0.0,3 +82935,15,1.0,0,1.975069522857666,436,1.0,3 +82936,15,1.0,0,1.3180779218673706,437,1.0,3 +82937,15,1.0,0,1.5080755949020386,438,0.0,3 +82938,15,0.0,0,1.1830776929855347,439,0.0,3 +82939,15,1.0,0,1.7990717887878418,440,1.0,3 +82940,15,1.0,0,1.837071418762207,441,1.0,3 +82941,15,1.0,0,1.6730735301971436,442,1.0,3 +82942,15,1.0,0,1.400076985359192,443,1.0,3 +82943,15,1.0,0,1.2810778617858887,444,1.0,3 +82944,15,1.0,0,1.655073642730713,445,1.0,3 +82945,15,1.0,0,1.400076985359192,446,1.0,3 +82946,15,1.0,0,1.2940778732299805,447,1.0,3 +82947,15,1.0,0,1.93107008934021,448,1.0,3 +82948,15,1.0,0,1.3250778913497925,449,0.0,3 +82949,15,0.0,0,1.1790776252746582,450,0.0,3 +82950,15,0.0,0,1.6790733337402344,451,0.0,3 +82951,15,1.0,0,1.6670734882354736,452,1.0,3 +82952,15,1.0,0,1.7580723762512207,453,1.0,3 +82953,15,1.0,0,1.3990769386291504,454,1.0,3 +82954,15,0.0,0,1.2600778341293335,455,0.0,3 +82955,15,1.0,0,1.3250778913497925,456,1.0,3 +82956,15,1.0,0,1.3030779361724854,457,1.0,3 +82957,15,1.0,0,1.3240779638290405,458,1.0,3 +82958,15,1.0,0,1.4570761919021606,459,1.0,3 +82959,15,1.0,0,1.5570749044418335,460,0.0,3 +82960,15,1.0,0,1.8750708103179932,461,1.0,3 +82961,15,1.0,0,1.2770777940750122,462,1.0,3 +82962,15,1.0,0,1.188077688217163,463,0.0,3 +82963,15,0.0,0,1.881070852279663,464,0.0,3 +82964,15,0.0,0,1.2760778665542603,465,1.0,3 +82965,15,0.0,0,1.229077696800232,466,0.0,3 +82966,15,0.0,0,1.164077639579773,467,1.0,3 +82967,15,0.0,0,1.2240777015686035,468,0.0,3 +82968,15,1.0,0,1.6590735912322998,469,1.0,3 +82969,15,1.0,0,1.3940770626068115,470,1.0,3 +82970,15,1.0,0,1.25807785987854,471,1.0,3 +82971,15,1.0,0,1.2680778503417969,472,0.0,3 +82972,15,0.0,0,1.4320765733718872,473,0.0,3 +82973,15,1.0,0,1.562074899673462,474,1.0,3 +82974,15,1.0,0,1.7080730199813843,475,0.0,3 +82975,15,1.0,0,1.8400713205337524,476,1.0,3 +82976,15,1.0,0,1.4510762691497803,477,1.0,3 +82977,15,1.0,0,1.4450763463974,478,1.0,3 +82978,15,1.0,0,1.4340765476226807,479,1.0,3 +82979,15,1.0,0,1.5880745649337769,480,1.0,3 +82980,15,1.0,0,1.3780772686004639,481,1.0,3 +82981,15,1.0,0,1.3680773973464966,482,1.0,3 +82982,15,1.0,0,1.2230777740478516,483,1.0,3 +82983,15,1.0,0,1.2800778150558472,484,0.0,3 +82984,15,0.0,0,1.5190753936767578,485,0.0,3 +82985,15,1.0,0,1.5510749816894531,486,1.0,3 +82986,15,1.0,0,1.841071367263794,487,1.0,3 +82987,15,1.0,0,1.605074405670166,488,1.0,3 +82988,15,1.0,0,1.4110767841339111,489,1.0,3 +82989,15,1.0,0,1.4770759344100952,490,0.0,3 +82990,15,0.0,0,1.2940778732299805,491,0.0,3 +82991,15,1.0,0,1.9070703983306885,492,1.0,3 +82992,15,1.0,0,1.467076063156128,493,1.0,3 +82993,15,1.0,0,1.4430763721466064,494,1.0,3 +82994,15,1.0,0,1.2970778942108154,495,0.0,3 +82995,15,1.0,0,1.3850771188735962,496,1.0,3 +82996,15,1.0,0,1.5240753889083862,497,1.0,3 +82997,15,0.0,0,1.4490762948989868,498,0.0,3 +82998,15,1.0,0,1.3050779104232788,499,1.0,3 +82999,15,1.0,0,1.4900758266448975,500,1.0,3 +83000,15,0.0,1,1.5610748529434204,1,0.0,3 +83001,15,1.0,1,1.3580775260925293,2,0.0,3 +83002,15,1.0,1,1.6850733757019043,3,1.0,3 +83003,15,1.0,1,1.772072196006775,4,0.0,3 +83004,15,1.0,1,2.2130746841430664,5,1.0,3 +83005,15,1.0,1,1.3410776853561401,6,1.0,3 +83006,15,1.0,1,1.5630748271942139,7,1.0,3 +83007,15,1.0,1,1.4640761613845825,8,1.0,3 +83008,15,1.0,1,1.8540711402893066,9,0.0,3 +83009,15,1.0,1,1.322077989578247,10,0.0,3 +83010,15,1.0,1,1.4460763931274414,11,1.0,3 +83011,15,1.0,1,1.7600723505020142,12,1.0,3 +83012,15,1.0,1,1.317077875137329,13,0.0,3 +83013,15,1.0,1,1.6420738697052002,14,1.0,3 +83014,15,1.0,1,1.842071294784546,15,1.0,3 +83015,15,1.0,1,1.7130730152130127,16,1.0,3 +83016,15,1.0,1,1.4160767793655396,17,1.0,3 +83017,15,1.0,1,1.259077787399292,18,0.0,3 +83018,15,0.0,1,1.5570749044418335,19,0.0,3 +83019,15,1.0,1,1.4550762176513672,20,1.0,3 +83020,15,1.0,1,1.4010769128799438,21,1.0,3 +83021,15,1.0,1,1.3870770931243896,22,0.0,3 +83022,15,0.0,1,1.5900745391845703,23,1.0,3 +83023,15,0.0,1,1.4760760068893433,24,1.0,3 +83024,15,0.0,1,1.374077320098877,25,0.0,3 +83025,15,0.0,1,1.9690697193145752,26,0.0,3 +83026,15,0.0,1,1.930070161819458,27,0.0,3 +83027,15,0.0,1,1.3310778141021729,28,0.0,3 +83028,15,0.0,1,1.158077597618103,29,1.0,3 +83029,15,0.0,1,1.5180754661560059,30,1.0,3 +83030,15,0.0,1,1.6900732517242432,31,0.0,3 +83031,15,0.0,1,1.745072603225708,32,0.0,3 +83032,15,0.0,1,1.4080768823623657,33,1.0,3 +83033,15,0.0,1,1.4950757026672363,34,0.0,3 +83034,15,1.0,1,1.440076470375061,35,1.0,3 +83035,15,1.0,1,1.2480777502059937,36,1.0,3 +83036,15,1.0,1,1.418076753616333,37,0.0,3 +83037,15,1.0,1,1.8500711917877197,38,1.0,3 +83038,15,0.0,1,1.6190741062164307,39,0.0,3 +83039,15,1.0,1,1.6900732517242432,40,1.0,3 +83040,15,1.0,1,1.4800759553909302,41,1.0,3 +83041,15,1.0,1,1.2210776805877686,42,1.0,3 +83042,15,1.0,1,1.3050779104232788,43,1.0,3 +83043,15,1.0,1,2.0380687713623047,44,1.0,3 +83044,15,1.0,1,1.7400726079940796,45,1.0,3 +83045,15,1.0,1,1.2680778503417969,46,1.0,3 +83046,15,1.0,1,1.2850778102874756,47,1.0,3 +83047,15,1.0,1,1.2400777339935303,48,1.0,3 +83048,15,1.0,1,1.4520763158798218,49,0.0,3 +83049,15,0.0,1,1.3430776596069336,50,0.0,3 +83050,15,0.0,1,1.5240753889083862,51,1.0,3 +83051,15,0.0,1,1.4800759553909302,52,0.0,3 +83052,15,1.0,1,1.374077320098877,53,1.0,3 +83053,15,1.0,1,1.374077320098877,54,1.0,3 +83054,15,0.0,1,2.0490686893463135,55,0.0,3 +83055,15,1.0,1,1.2400777339935303,56,1.0,3 +83056,15,1.0,1,1.8000718355178833,57,1.0,3 +83057,15,1.0,1,1.7360726594924927,58,1.0,3 +83058,15,1.0,1,1.5410751104354858,59,1.0,3 +83059,15,1.0,1,1.4340765476226807,60,1.0,3 +83060,15,1.0,1,1.7100729942321777,61,1.0,3 +83061,15,1.0,1,1.3540775775909424,62,0.0,3 +83062,15,0.0,1,1.676073431968689,63,0.0,3 +83063,15,1.0,1,1.2450777292251587,64,0.0,3 +83064,15,0.0,1,1.6790733337402344,65,0.0,3 +83065,15,1.0,1,1.7350726127624512,66,1.0,3 +83066,15,1.0,1,1.3600775003433228,67,1.0,3 +83067,15,1.0,1,1.4340765476226807,68,1.0,3 +83068,15,1.0,1,1.3120778799057007,69,1.0,3 +83069,15,1.0,1,1.265077829360962,70,0.0,3 +83070,15,1.0,1,1.470076084136963,71,1.0,3 +83071,15,1.0,1,1.6430737972259521,72,1.0,3 +83072,15,1.0,1,1.4460763931274414,73,1.0,3 +83073,15,1.0,1,1.562074899673462,74,1.0,3 +83074,15,1.0,1,1.4230766296386719,75,1.0,3 +83075,15,1.0,1,1.6450738906860352,76,1.0,3 +83076,15,1.0,1,1.6930732727050781,77,1.0,3 +83077,15,1.0,1,1.3050779104232788,78,1.0,3 +83078,15,1.0,1,1.37007737159729,79,0.0,3 +83079,15,0.0,1,1.3590774536132812,80,1.0,3 +83080,15,0.0,1,1.2230777740478516,81,0.0,3 +83081,15,1.0,1,1.8290715217590332,82,1.0,3 +83082,15,1.0,1,1.9480699300765991,83,0.0,3 +83083,15,1.0,1,1.9030704498291016,84,1.0,3 +83084,15,1.0,1,1.3640774488449097,85,1.0,3 +83085,15,1.0,1,1.3950769901275635,86,1.0,3 +83086,15,1.0,1,1.4740760326385498,87,1.0,3 +83087,15,1.0,1,1.7830719947814941,88,1.0,3 +83088,15,1.0,1,1.6230740547180176,89,1.0,3 +83089,15,1.0,1,1.7250728607177734,90,0.0,3 +83090,15,1.0,1,1.745072603225708,91,1.0,3 +83091,15,1.0,1,1.3910770416259766,92,0.0,3 +83092,15,0.0,1,1.7880719900131226,93,1.0,3 +83093,15,0.0,1,1.9700696468353271,94,0.0,3 +83094,15,0.0,1,1.3680773973464966,95,0.0,3 +83095,15,1.0,1,2.01806902885437,96,1.0,3 +83096,15,1.0,1,1.3430776596069336,97,1.0,3 +83097,15,1.0,1,1.3000779151916504,98,1.0,3 +83098,15,1.0,1,1.6180741786956787,99,0.0,3 +83099,15,1.0,1,1.3850771188735962,100,1.0,3 +83100,15,1.0,1,1.2510777711868286,101,1.0,3 +83101,15,1.0,1,1.3120778799057007,102,0.0,3 +83102,15,1.0,1,1.459076166152954,103,0.0,3 +83103,15,0.0,1,1.793071985244751,104,0.0,3 +83104,15,0.0,1,1.9650697708129883,105,0.0,3 +83105,15,0.0,1,1.7880719900131226,106,1.0,3 +83106,15,0.0,1,1.7000731229782104,107,0.0,3 +83107,15,0.0,1,1.8300714492797852,108,0.0,3 +83108,15,1.0,1,1.5740747451782227,109,1.0,3 +83109,15,1.0,1,1.5190753936767578,110,0.0,3 +83110,15,1.0,1,1.5230753421783447,111,1.0,3 +83111,15,1.0,1,1.367077350616455,112,0.0,3 +83112,15,1.0,1,1.466076135635376,113,0.0,3 +83113,15,0.0,1,1.349077582359314,114,0.0,3 +83114,15,1.0,1,1.253077745437622,115,1.0,3 +83115,15,1.0,1,1.4360765218734741,116,1.0,3 +83116,15,1.0,1,1.466076135635376,117,1.0,3 +83117,15,1.0,1,1.19807767868042,118,1.0,3 +83118,15,1.0,1,1.536075234413147,119,1.0,3 +83119,15,1.0,1,1.295077919960022,120,1.0,3 +83120,15,1.0,1,1.4790759086608887,121,1.0,3 +83121,15,1.0,1,1.4990756511688232,122,0.0,3 +83122,15,1.0,1,1.7600723505020142,123,1.0,3 +83123,15,1.0,1,1.39307701587677,124,1.0,3 +83124,15,1.0,1,1.4490762948989868,125,0.0,3 +83125,15,0.0,1,1.9510698318481445,126,0.0,3 +83126,15,1.0,1,1.601074457168579,127,1.0,3 +83127,15,1.0,1,2.0340688228607178,128,1.0,3 +83128,15,1.0,1,1.3100779056549072,129,0.0,3 +83129,15,0.0,1,2.0400686264038086,130,0.0,3 +83130,15,0.0,1,1.5090755224227905,131,0.0,3 +83131,15,0.0,1,1.191077709197998,132,0.0,3 +83132,15,0.0,1,1.7840720415115356,133,0.0,3 +83133,15,1.0,1,1.4710760116577148,134,0.0,3 +83134,15,1.0,1,1.9880694150924683,135,1.0,3 +83135,15,0.0,1,1.536075234413147,136,1.0,3 +83136,15,1.0,1,1.8930706977844238,137,1.0,3 +83137,15,0.0,1,1.9570698738098145,138,0.0,3 +83138,15,1.0,1,1.5960744619369507,139,1.0,3 +83139,15,1.0,1,1.4330765008926392,140,0.0,3 +83140,15,1.0,1,1.2370777130126953,141,0.0,3 +83141,15,0.0,1,2.383082866668701,142,0.0,3 +83142,15,0.0,1,1.2020776271820068,143,0.0,3 +83143,15,1.0,1,1.5440751314163208,144,0.0,3 +83144,15,1.0,1,1.5640748739242554,145,1.0,3 +83145,15,1.0,1,1.3360778093338013,146,1.0,3 +83146,15,1.0,1,1.4720760583877563,147,1.0,3 +83147,15,1.0,1,1.2740778923034668,148,0.0,3 +83148,15,1.0,1,1.2720777988433838,149,1.0,3 +83149,15,1.0,1,1.232077717781067,150,0.0,3 +83150,15,0.0,1,1.418076753616333,151,1.0,3 +83151,15,0.0,1,1.1660776138305664,152,1.0,3 +83152,15,0.0,1,1.2610777616500854,153,1.0,3 +83153,15,0.0,1,1.3990769386291504,154,1.0,3 +83154,15,0.0,1,1.4750759601593018,155,0.0,3 +83155,15,0.0,1,1.6520737409591675,156,0.0,3 +83156,15,0.0,1,1.4380764961242676,157,0.0,3 +83157,15,1.0,1,1.3530775308609009,158,1.0,3 +83158,15,0.0,1,1.4580762386322021,159,0.0,3 +83159,15,1.0,1,1.3580775260925293,160,0.0,3 +83160,15,1.0,1,1.6640735864639282,161,1.0,3 +83161,15,1.0,1,1.2670778036117554,162,0.0,3 +83162,15,1.0,1,1.3780772686004639,163,1.0,3 +83163,15,1.0,1,1.4460763931274414,164,1.0,3 +83164,15,1.0,1,1.5350751876831055,165,1.0,3 +83165,15,1.0,1,1.2720777988433838,166,1.0,3 +83166,15,1.0,1,1.2990778684616089,167,1.0,3 +83167,15,1.0,1,1.6140742301940918,168,0.0,3 +83168,15,0.0,1,1.5860745906829834,169,0.0,3 +83169,15,1.0,1,1.437076449394226,170,0.0,3 +83170,15,0.0,1,1.5380752086639404,171,0.0,3 +83171,15,0.0,1,1.470076084136963,172,0.0,3 +83172,15,0.0,1,1.265077829360962,173,1.0,3 +83173,15,0.0,1,1.515075445175171,174,0.0,3 +83174,15,0.0,1,1.8580710887908936,175,1.0,3 +83175,15,0.0,1,1.437076449394226,176,0.0,3 +83176,15,0.0,1,1.8070716857910156,177,1.0,3 +83177,15,0.0,1,1.2600778341293335,178,0.0,3 +83178,15,0.0,1,1.4980757236480713,179,0.0,3 +83179,15,0.0,1,1.3380777835845947,180,1.0,3 +83180,15,0.0,1,1.6680735349655151,181,0.0,3 +83181,15,1.0,1,1.9850695133209229,182,1.0,3 +83182,15,1.0,1,1.2370777130126953,183,1.0,3 +83183,15,1.0,1,1.5230753421783447,184,1.0,3 +83184,15,1.0,1,2.078068494796753,185,1.0,3 +83185,15,1.0,1,1.3060779571533203,186,1.0,3 +83186,15,1.0,1,1.3810771703720093,187,1.0,3 +83187,15,1.0,1,1.2910778522491455,188,1.0,3 +83188,15,0.0,1,1.4090768098831177,189,0.0,3 +83189,15,1.0,1,1.8300714492797852,190,1.0,3 +83190,15,1.0,1,1.2790778875350952,191,0.0,3 +83191,15,0.0,1,1.467076063156128,192,0.0,3 +83192,15,0.0,1,1.529075264930725,193,0.0,3 +83193,15,1.0,1,1.470076084136963,194,1.0,3 +83194,15,1.0,1,1.4050768613815308,195,1.0,3 +83195,15,1.0,1,1.2260777950286865,196,1.0,3 +83196,15,1.0,1,1.2880778312683105,197,1.0,3 +83197,15,1.0,1,1.6220741271972656,198,1.0,3 +83198,15,1.0,1,1.485075831413269,199,1.0,3 +83199,15,1.0,1,1.3990769386291504,200,0.0,3 +83200,15,0.0,1,1.5750746726989746,201,0.0,3 +83201,15,0.0,1,1.2430777549743652,202,0.0,3 +83202,15,1.0,1,1.533075213432312,203,0.0,3 +83203,15,0.0,1,1.8950705528259277,204,0.0,3 +83204,15,0.0,1,2.080068588256836,205,0.0,3 +83205,15,0.0,1,2.0580685138702393,206,0.0,3 +83206,15,1.0,1,1.4200767278671265,207,1.0,3 +83207,15,1.0,1,1.250077724456787,208,1.0,3 +83208,15,1.0,1,1.4530762434005737,209,1.0,3 +83209,15,1.0,1,1.4570761919021606,210,1.0,3 +83210,15,1.0,1,1.7790720462799072,211,0.0,3 +83211,15,0.0,1,1.7830719947814941,212,0.0,3 +83212,15,0.0,1,1.5210753679275513,213,0.0,3 +83213,15,0.0,1,1.529075264930725,214,0.0,3 +83214,15,0.0,1,1.7310726642608643,215,0.0,3 +83215,15,1.0,1,2.0570685863494873,216,1.0,3 +83216,15,1.0,1,1.5680748224258423,217,1.0,3 +83217,15,1.0,1,1.5170754194259644,218,1.0,3 +83218,15,1.0,1,1.4970756769180298,219,1.0,3 +83219,15,1.0,1,1.603074312210083,220,1.0,3 +83220,15,1.0,1,1.4250766038894653,221,1.0,3 +83221,15,1.0,1,1.4230766296386719,222,1.0,3 +83222,15,1.0,1,1.599074363708496,223,1.0,3 +83223,15,1.0,1,1.5810747146606445,224,1.0,3 +83224,15,1.0,1,1.348077654838562,225,1.0,3 +83225,15,1.0,1,1.195077657699585,226,1.0,3 +83226,15,1.0,1,1.5790746212005615,227,1.0,3 +83227,15,1.0,1,1.4050768613815308,228,0.0,3 +83228,15,0.0,1,1.8360713720321655,229,0.0,3 +83229,15,1.0,1,1.9550697803497314,230,0.0,3 +83230,15,1.0,1,2.0090692043304443,231,0.0,3 +83231,15,1.0,1,2.1580722332000732,232,1.0,3 +83232,15,1.0,1,1.5220754146575928,233,1.0,3 +83233,15,1.0,1,1.2720777988433838,234,1.0,3 +83234,15,1.0,1,1.2340776920318604,235,1.0,3 +83235,15,1.0,1,1.8210716247558594,236,0.0,3 +83236,15,0.0,1,1.2450777292251587,237,1.0,3 +83237,15,0.0,1,1.3240779638290405,238,0.0,3 +83238,15,0.0,1,1.2780778408050537,239,0.0,3 +83239,15,1.0,1,1.58407461643219,240,1.0,3 +83240,15,1.0,1,1.3090778589248657,241,1.0,3 +83241,15,1.0,1,1.3660774230957031,242,1.0,3 +83242,15,0.0,1,1.3110779523849487,243,0.0,3 +83243,15,1.0,1,1.7380726337432861,244,1.0,3 +83244,15,1.0,1,1.4970756769180298,245,1.0,3 +83245,15,1.0,1,1.2830778360366821,246,0.0,3 +83246,15,0.0,1,2.1660726070404053,247,1.0,3 +83247,15,0.0,1,1.4740760326385498,248,0.0,3 +83248,15,1.0,1,1.5650748014450073,249,0.0,3 +83249,15,0.0,1,1.296077847480774,250,1.0,3 +83250,15,0.0,1,1.4690760374069214,251,0.0,3 +83251,15,1.0,1,1.7000731229782104,252,1.0,3 +83252,15,1.0,1,2.0550684928894043,253,1.0,3 +83253,15,1.0,1,1.232077717781067,254,0.0,3 +83254,15,0.0,1,1.7300727367401123,255,0.0,3 +83255,15,0.0,1,1.9700696468353271,256,0.0,3 +83256,15,0.0,1,1.5700747966766357,257,0.0,3 +83257,15,0.0,1,1.322077989578247,258,0.0,3 +83258,15,0.0,1,1.195077657699585,259,0.0,3 +83259,15,1.0,1,1.3500776290893555,260,0.0,3 +83260,15,0.0,1,1.6830732822418213,261,0.0,3 +83261,15,1.0,1,1.389077067375183,262,1.0,3 +83262,15,1.0,1,2.11607027053833,263,1.0,3 +83263,15,1.0,1,1.4600762128829956,264,1.0,3 +83264,15,1.0,1,1.655073642730713,265,1.0,3 +83265,15,1.0,1,1.3210779428482056,266,1.0,3 +83266,15,1.0,1,1.7670722007751465,267,0.0,3 +83267,15,0.0,1,1.69407320022583,268,1.0,3 +83268,15,0.0,1,1.253077745437622,269,0.0,3 +83269,15,0.0,1,1.7950718402862549,270,0.0,3 +83270,15,0.0,1,1.4020769596099854,271,0.0,3 +83271,15,0.0,1,1.3590774536132812,272,0.0,3 +83272,15,1.0,1,1.7070729732513428,273,1.0,3 +83273,15,1.0,1,1.2830778360366821,274,1.0,3 +83274,15,1.0,1,1.5940744876861572,275,0.0,3 +83275,15,1.0,1,1.4280766248703003,276,1.0,3 +83276,15,1.0,1,1.232077717781067,277,1.0,3 +83277,15,1.0,1,1.7190728187561035,278,1.0,3 +83278,15,1.0,1,1.53207528591156,279,1.0,3 +83279,15,1.0,1,1.3950769901275635,280,0.0,3 +83280,15,1.0,1,1.5770747661590576,281,1.0,3 +83281,15,1.0,1,1.2430777549743652,282,1.0,3 +83282,15,1.0,1,1.6340739727020264,283,1.0,3 +83283,15,1.0,1,1.5350751876831055,284,1.0,3 +83284,15,1.0,1,1.437076449394226,285,1.0,3 +83285,15,1.0,1,1.5130754709243774,286,0.0,3 +83286,15,1.0,1,1.9420700073242188,287,1.0,3 +83287,15,1.0,1,1.3810771703720093,288,1.0,3 +83288,15,0.0,1,1.2050776481628418,289,0.0,3 +83289,15,1.0,1,1.289077877998352,290,0.0,3 +83290,15,0.0,1,1.418076753616333,291,0.0,3 +83291,15,1.0,1,1.676073431968689,292,1.0,3 +83292,15,1.0,1,1.3800772428512573,293,0.0,3 +83293,15,1.0,1,1.952069878578186,294,0.0,3 +83294,15,1.0,1,1.6890733242034912,295,1.0,3 +83295,15,1.0,1,1.367077350616455,296,1.0,3 +83296,15,1.0,1,1.37007737159729,297,1.0,3 +83297,15,1.0,1,1.3470776081085205,298,0.0,3 +83298,15,1.0,1,2.340080738067627,299,1.0,3 +83299,15,1.0,1,1.4460763931274414,300,1.0,3 +83300,15,1.0,1,1.7690722942352295,301,1.0,3 +83301,15,1.0,1,1.4230766296386719,302,0.0,3 +83302,15,1.0,1,1.5970745086669922,303,1.0,3 +83303,15,1.0,1,1.2060776948928833,304,1.0,3 +83304,15,1.0,1,1.5390751361846924,305,0.0,3 +83305,15,0.0,1,2.114070177078247,306,1.0,3 +83306,15,0.0,1,1.2440778017044067,307,0.0,3 +83307,15,1.0,1,1.4830758571624756,308,1.0,3 +83308,15,1.0,1,1.6860733032226562,309,0.0,3 +83309,15,1.0,1,1.695073127746582,310,1.0,3 +83310,15,1.0,1,1.6170742511749268,311,1.0,3 +83311,15,0.0,1,1.602074384689331,312,1.0,3 +83312,15,1.0,1,2.4290847778320312,313,1.0,3 +83313,15,1.0,1,1.3360778093338013,314,1.0,3 +83314,15,1.0,1,1.537075161933899,315,1.0,3 +83315,15,0.0,1,1.2450777292251587,316,0.0,3 +83316,15,1.0,1,1.6340739727020264,317,1.0,3 +83317,15,1.0,1,1.5940744876861572,318,1.0,3 +83318,15,1.0,1,1.3500776290893555,319,1.0,3 +83319,15,1.0,1,1.2830778360366821,320,0.0,3 +83320,15,1.0,1,2.08906888961792,321,1.0,3 +83321,15,0.0,1,1.5890746116638184,322,0.0,3 +83322,15,1.0,1,1.4020769596099854,323,1.0,3 +83323,15,0.0,1,1.3240779638290405,324,1.0,3 +83324,15,0.0,1,1.2940778732299805,325,1.0,3 +83325,15,1.0,1,1.3620774745941162,326,1.0,3 +83326,15,0.0,1,1.3940770626068115,327,0.0,3 +83327,15,1.0,1,1.9280701875686646,328,1.0,3 +83328,15,1.0,1,1.3000779151916504,329,1.0,3 +83329,15,1.0,1,1.7260727882385254,330,1.0,3 +83330,15,1.0,1,1.4740760326385498,331,1.0,3 +83331,15,1.0,1,1.5460751056671143,332,1.0,3 +83332,15,1.0,1,1.292077898979187,333,0.0,3 +83333,15,0.0,1,1.883070707321167,334,1.0,3 +83334,15,0.0,1,1.4070768356323242,335,1.0,3 +83335,15,0.0,1,1.1870776414871216,336,1.0,3 +83336,15,0.0,1,1.2850778102874756,337,1.0,3 +83337,15,0.0,1,1.606074333190918,338,0.0,3 +83338,15,1.0,1,1.4330765008926392,339,0.0,3 +83339,15,0.0,1,1.2460777759552002,340,0.0,3 +83340,15,0.0,1,1.2760778665542603,341,1.0,3 +83341,15,0.0,1,1.4980757236480713,342,0.0,3 +83342,15,0.0,1,1.415076732635498,343,0.0,3 +83343,15,0.0,1,1.7400726079940796,344,1.0,3 +83344,15,0.0,1,2.0050692558288574,345,1.0,3 +83345,15,0.0,1,1.320077896118164,346,0.0,3 +83346,15,1.0,1,1.5780746936798096,347,0.0,3 +83347,15,0.0,1,1.5870745182037354,348,1.0,3 +83348,15,0.0,1,1.4110767841339111,349,1.0,3 +83349,15,0.0,1,1.3210779428482056,350,0.0,3 +83350,15,0.0,1,1.2300777435302734,351,0.0,3 +83351,15,0.0,1,1.5080755949020386,352,0.0,3 +83352,15,1.0,1,1.515075445175171,353,1.0,3 +83353,15,1.0,1,1.3570774793624878,354,1.0,3 +83354,15,1.0,1,1.3180779218673706,355,1.0,3 +83355,15,1.0,1,2.338080644607544,356,1.0,3 +83356,15,1.0,1,1.5960744619369507,357,0.0,3 +83357,15,1.0,1,1.5530749559402466,358,1.0,3 +83358,15,1.0,1,1.4330765008926392,359,0.0,3 +83359,15,1.0,1,1.9530699253082275,360,1.0,3 +83360,15,1.0,1,2.0000691413879395,361,1.0,3 +83361,15,1.0,1,1.3280779123306274,362,0.0,3 +83362,15,0.0,1,1.3150779008865356,363,0.0,3 +83363,15,1.0,1,1.5450750589370728,364,1.0,3 +83364,15,1.0,1,1.8000718355178833,365,1.0,3 +83365,15,1.0,1,1.4860758781433105,366,1.0,3 +83366,15,1.0,1,1.3350777626037598,367,0.0,3 +83367,15,1.0,1,2.01806902885437,368,1.0,3 +83368,15,1.0,1,1.3020778894424438,369,1.0,3 +83369,15,0.0,1,1.2690777778625488,370,1.0,3 +83370,15,1.0,1,1.462076187133789,371,0.0,3 +83371,15,0.0,1,1.6690735816955566,372,0.0,3 +83372,15,0.0,1,1.4330765008926392,373,0.0,3 +83373,15,1.0,1,1.7520724534988403,374,1.0,3 +83374,15,1.0,1,1.2880778312683105,375,1.0,3 +83375,15,1.0,1,2.10306978225708,376,1.0,3 +83376,15,1.0,1,1.5180754661560059,377,1.0,3 +83377,15,1.0,1,1.371077299118042,378,0.0,3 +83378,15,0.0,1,1.295077919960022,379,0.0,3 +83379,15,1.0,1,1.4730759859085083,380,1.0,3 +83380,15,1.0,1,1.886070728302002,381,1.0,3 +83381,15,1.0,1,1.4230766296386719,382,1.0,3 +83382,15,1.0,1,1.4160767793655396,383,0.0,3 +83383,15,1.0,1,1.2370777130126953,384,1.0,3 +83384,15,1.0,1,1.419076681137085,385,1.0,3 +83385,15,1.0,1,1.647073745727539,386,0.0,3 +83386,15,0.0,1,1.2760778665542603,387,0.0,3 +83387,15,1.0,1,2.2220752239227295,388,1.0,3 +83388,15,1.0,1,1.5490750074386597,389,1.0,3 +83389,15,1.0,1,1.5350751876831055,390,1.0,3 +83390,15,1.0,1,1.628074049949646,391,0.0,3 +83391,15,1.0,1,1.7480725049972534,392,1.0,3 +83392,15,0.0,1,1.7850720882415771,393,0.0,3 +83393,15,1.0,1,1.4780759811401367,394,1.0,3 +83394,15,1.0,1,1.816071629524231,395,1.0,3 +83395,15,1.0,1,1.6260740756988525,396,1.0,3 +83396,15,1.0,1,1.697073221206665,397,1.0,3 +83397,15,1.0,1,1.6310739517211914,398,0.0,3 +83398,15,1.0,1,1.7630722522735596,399,1.0,3 +83399,15,1.0,1,1.6210741996765137,400,1.0,3 +83400,15,1.0,1,1.6880732774734497,401,0.0,3 +83401,15,1.0,1,1.3060779571533203,402,1.0,3 +83402,15,1.0,1,1.5750746726989746,403,1.0,3 +83403,15,1.0,1,1.3860771656036377,404,0.0,3 +83404,15,0.0,1,1.4050768613815308,405,0.0,3 +83405,15,0.0,1,1.6700735092163086,406,0.0,3 +83406,15,1.0,1,1.90807044506073,407,1.0,3 +83407,15,1.0,1,1.515075445175171,408,1.0,3 +83408,15,0.0,1,1.3820772171020508,409,1.0,3 +83409,15,1.0,1,1.5790746212005615,410,0.0,3 +83410,15,0.0,1,1.3380777835845947,411,0.0,3 +83411,15,0.0,1,1.4160767793655396,412,1.0,3 +83412,15,1.0,1,1.3950769901275635,413,0.0,3 +83413,15,0.0,1,1.2570778131484985,414,1.0,3 +83414,15,0.0,1,1.2130776643753052,415,0.0,3 +83415,15,0.0,1,1.253077745437622,416,1.0,3 +83416,15,0.0,1,1.225077748298645,417,1.0,3 +83417,15,0.0,1,1.6290740966796875,418,0.0,3 +83418,15,0.0,1,1.489075779914856,419,0.0,3 +83419,15,0.0,1,2.068068504333496,420,0.0,3 +83420,15,0.0,1,1.4020769596099854,421,1.0,3 +83421,15,0.0,1,1.255077838897705,422,1.0,3 +83422,15,0.0,1,1.4010769128799438,423,0.0,3 +83423,15,0.0,1,1.8760708570480347,424,1.0,3 +83424,15,0.0,1,1.2520778179168701,425,0.0,3 +83425,15,1.0,1,2.033068895339966,426,1.0,3 +83426,15,1.0,1,1.4300765991210938,427,0.0,3 +83427,15,0.0,1,1.7320727109909058,428,1.0,3 +83428,15,0.0,1,1.2390778064727783,429,1.0,3 +83429,15,0.0,1,1.2540777921676636,430,0.0,3 +83430,15,1.0,1,1.9670696258544922,431,1.0,3 +83431,15,1.0,1,1.4310765266418457,432,1.0,3 +83432,15,1.0,1,1.8200715780258179,433,1.0,3 +83433,15,1.0,1,1.8760708570480347,434,1.0,3 +83434,15,0.0,1,1.3280779123306274,435,0.0,3 +83435,15,1.0,1,1.4090768098831177,436,0.0,3 +83436,15,0.0,1,2.327080249786377,437,1.0,3 +83437,15,0.0,1,1.698073148727417,438,1.0,3 +83438,15,0.0,1,1.3560775518417358,439,0.0,3 +83439,15,1.0,1,1.3330777883529663,440,0.0,3 +83440,15,0.0,1,1.225077748298645,441,0.0,3 +83441,15,1.0,1,1.4780759811401367,442,1.0,3 +83442,15,1.0,1,1.3420777320861816,443,1.0,3 +83443,15,1.0,1,1.8710708618164062,444,0.0,3 +83444,15,1.0,1,1.7100729942321777,445,1.0,3 +83445,15,1.0,1,1.459076166152954,446,1.0,3 +83446,15,1.0,1,1.4830758571624756,447,0.0,3 +83447,15,0.0,1,1.6200741529464722,448,0.0,3 +83448,15,1.0,1,1.3010778427124023,449,1.0,3 +83449,15,1.0,1,1.927070140838623,450,1.0,3 +83450,15,1.0,1,1.4160767793655396,451,1.0,3 +83451,15,1.0,1,1.2700778245925903,452,1.0,3 +83452,15,0.0,1,1.7850720882415771,453,0.0,3 +83453,15,1.0,1,1.2350777387619019,454,0.0,3 +83454,15,1.0,1,1.9460699558258057,455,1.0,3 +83455,15,1.0,1,1.4390764236450195,456,0.0,3 +83456,15,0.0,1,1.292077898979187,457,0.0,3 +83457,15,1.0,1,1.371077299118042,458,1.0,3 +83458,15,1.0,1,1.768072247505188,459,1.0,3 +83459,15,0.0,1,1.470076084136963,460,0.0,3 +83460,15,1.0,1,1.6080743074417114,461,1.0,3 +83461,15,1.0,1,1.2660777568817139,462,1.0,3 +83462,15,1.0,1,1.488075852394104,463,1.0,3 +83463,15,1.0,1,1.4060769081115723,464,1.0,3 +83464,15,1.0,1,1.4120768308639526,465,0.0,3 +83465,15,1.0,1,1.7520724534988403,466,1.0,3 +83466,15,1.0,1,1.5680748224258423,467,1.0,3 +83467,15,1.0,1,1.8690710067749023,468,1.0,3 +83468,15,1.0,1,1.3110779523849487,469,1.0,3 +83469,15,1.0,1,1.53207528591156,470,0.0,3 +83470,15,1.0,1,1.4690760374069214,471,1.0,3 +83471,15,1.0,1,1.5900745391845703,472,1.0,3 +83472,15,1.0,1,1.293077826499939,473,0.0,3 +83473,15,0.0,1,1.2610777616500854,474,0.0,3 +83474,15,1.0,1,1.3340778350830078,475,1.0,3 +83475,15,1.0,1,1.4320765733718872,476,0.0,3 +83476,15,1.0,1,1.7740721702575684,477,1.0,3 +83477,15,1.0,1,1.323077917098999,478,0.0,3 +83478,15,0.0,1,1.8450713157653809,479,0.0,3 +83479,15,0.0,1,1.6650736331939697,480,0.0,3 +83480,15,1.0,1,1.467076063156128,481,1.0,3 +83481,15,1.0,1,1.609074354171753,482,1.0,3 +83482,15,1.0,1,1.352077603340149,483,1.0,3 +83483,15,0.0,1,1.3690773248672485,484,1.0,3 +83484,15,0.0,1,1.4780759811401367,485,0.0,3 +83485,15,1.0,1,1.904070496559143,486,1.0,3 +83486,15,1.0,1,1.4930757284164429,487,1.0,3 +83487,15,1.0,1,1.7310726642608643,488,1.0,3 +83488,15,1.0,1,1.2520778179168701,489,0.0,3 +83489,15,1.0,1,1.8950705528259277,490,0.0,3 +83490,15,0.0,1,1.8620710372924805,491,0.0,3 +83491,15,0.0,1,1.2760778665542603,492,0.0,3 +83492,15,0.0,1,1.4350764751434326,493,1.0,3 +83493,15,0.0,1,1.22807776927948,494,1.0,3 +83494,15,0.0,1,1.2340776920318604,495,0.0,3 +83495,15,0.0,1,1.7850720882415771,496,0.0,3 +83496,15,1.0,1,1.3500776290893555,497,1.0,3 +83497,15,1.0,1,1.5790746212005615,498,0.0,3 +83498,15,0.0,1,1.4720760583877563,499,1.0,3 +83499,15,0.0,1,1.2780778408050537,500,0.0,3 +83500,15,1.0,2,1.5300753116607666,1,0.0,3 +83501,15,1.0,2,1.6710734367370605,2,1.0,3 +83502,15,0.0,2,1.2690777778625488,3,1.0,3 +83503,15,0.0,2,1.628074049949646,4,0.0,3 +83504,15,0.0,2,1.9110703468322754,5,1.0,3 +83505,15,0.0,2,1.2400777339935303,6,1.0,3 +83506,15,0.0,2,1.5120755434036255,7,0.0,3 +83507,15,1.0,2,1.8320714235305786,8,1.0,3 +83508,15,1.0,2,1.3580775260925293,9,0.0,3 +83509,15,1.0,2,1.7540724277496338,10,1.0,3 +83510,15,1.0,2,1.5080755949020386,11,1.0,3 +83511,15,1.0,2,1.256077766418457,12,0.0,3 +83512,15,1.0,2,2.2860782146453857,13,0.0,3 +83513,15,0.0,2,1.3060779571533203,14,1.0,3 +83514,15,0.0,2,1.344077706336975,15,0.0,3 +83515,15,1.0,2,1.3640774488449097,16,0.0,3 +83516,15,0.0,2,1.5090755224227905,17,1.0,3 +83517,15,0.0,2,1.4340765476226807,18,0.0,3 +83518,15,1.0,2,1.3860771656036377,19,0.0,3 +83519,15,0.0,2,1.2210776805877686,20,1.0,3 +83520,15,0.0,2,1.7440725564956665,21,1.0,3 +83521,15,0.0,2,1.2370777130126953,22,0.0,3 +83522,15,0.0,2,1.349077582359314,23,0.0,3 +83523,15,0.0,2,1.3080779314041138,24,1.0,3 +83524,15,0.0,2,1.4930757284164429,25,1.0,3 +83525,15,0.0,2,1.5020756721496582,26,0.0,3 +83526,15,1.0,2,1.9700696468353271,27,0.0,3 +83527,15,0.0,2,1.323077917098999,28,1.0,3 +83528,15,0.0,2,1.5940744876861572,29,0.0,3 +83529,15,0.0,2,1.3570774793624878,30,0.0,3 +83530,15,1.0,2,2.372082233428955,31,1.0,3 +83531,15,1.0,2,1.745072603225708,32,0.0,3 +83532,15,0.0,2,1.952069878578186,33,0.0,3 +83533,15,1.0,2,1.250077724456787,34,1.0,3 +83534,15,1.0,2,1.655073642730713,35,0.0,3 +83535,15,1.0,2,1.3310778141021729,36,0.0,3 +83536,15,0.0,2,1.459076166152954,37,1.0,3 +83537,15,0.0,2,1.2540777921676636,38,0.0,3 +83538,15,1.0,2,1.6650736331939697,39,1.0,3 +83539,15,1.0,2,2.105069637298584,40,0.0,3 +83540,15,0.0,2,1.9430699348449707,41,0.0,3 +83541,15,1.0,2,1.6480737924575806,42,0.0,3 +83542,15,0.0,2,1.6610736846923828,43,0.0,3 +83543,15,1.0,2,1.5120755434036255,44,1.0,3 +83544,15,1.0,2,2.1950740814208984,45,1.0,3 +83545,15,1.0,2,1.6560736894607544,46,1.0,3 +83546,15,1.0,2,1.4720760583877563,47,0.0,3 +83547,15,1.0,2,1.4790759086608887,48,1.0,3 +83548,15,1.0,2,1.5390751361846924,49,0.0,3 +83549,15,1.0,2,1.4820759296417236,50,0.0,3 +83550,15,0.0,2,1.7790720462799072,51,0.0,3 +83551,15,0.0,2,1.4330765008926392,52,1.0,3 +83552,15,0.0,2,1.4080768823623657,53,0.0,3 +83553,15,0.0,2,1.4760760068893433,54,0.0,3 +83554,15,0.0,2,1.982069492340088,55,0.0,3 +83555,15,1.0,2,1.4280766248703003,56,1.0,3 +83556,15,1.0,2,1.4330765008926392,57,1.0,3 +83557,15,1.0,2,1.6380739212036133,58,0.0,3 +83558,15,0.0,2,1.2130776643753052,59,0.0,3 +83559,15,1.0,2,1.6610736846923828,60,1.0,3 +83560,15,1.0,2,1.3630774021148682,61,0.0,3 +83561,15,1.0,2,1.323077917098999,62,0.0,3 +83562,15,0.0,2,1.9910693168640137,63,1.0,3 +83563,15,0.0,2,1.2600778341293335,64,0.0,3 +83564,15,0.0,2,1.397076964378357,65,0.0,3 +83565,15,0.0,2,1.74607253074646,66,0.0,3 +83566,15,0.0,2,2.165072441101074,67,1.0,3 +83567,15,0.0,2,1.3610774278640747,68,1.0,3 +83568,15,0.0,2,1.1800776720046997,69,1.0,3 +83569,15,1.0,2,1.4110767841339111,70,0.0,3 +83570,15,0.0,2,1.1790776252746582,71,1.0,3 +83571,15,0.0,2,1.295077919960022,72,1.0,3 +83572,15,0.0,2,1.165077567100525,73,0.0,3 +83573,15,1.0,2,1.8400713205337524,74,1.0,3 +83574,15,1.0,2,1.4870758056640625,75,1.0,3 +83575,15,1.0,2,1.3140778541564941,76,1.0,3 +83576,15,1.0,2,1.441076397895813,77,1.0,3 +83577,15,1.0,2,1.747072458267212,78,1.0,3 +83578,15,1.0,2,1.2210776805877686,79,0.0,3 +83579,15,0.0,2,1.6870732307434082,80,0.0,3 +83580,15,0.0,2,1.7500724792480469,81,0.0,3 +83581,15,0.0,2,1.3160779476165771,82,0.0,3 +83582,15,1.0,2,1.628074049949646,83,1.0,3 +83583,15,1.0,2,1.8680709600448608,84,1.0,3 +83584,15,1.0,2,1.293077826499939,85,1.0,3 +83585,15,1.0,2,1.4480763673782349,86,1.0,3 +83586,15,1.0,2,1.488075852394104,87,1.0,3 +83587,15,1.0,2,1.3840771913528442,88,1.0,3 +83588,15,1.0,2,1.4320765733718872,89,1.0,3 +83589,15,1.0,2,1.484075903892517,90,0.0,3 +83590,15,0.0,2,1.6390738487243652,91,0.0,3 +83591,15,1.0,2,1.42207670211792,92,0.0,3 +83592,15,0.0,2,1.8510711193084717,93,0.0,3 +83593,15,0.0,2,1.8440712690353394,94,0.0,3 +83594,15,0.0,2,1.3660774230957031,95,1.0,3 +83595,15,0.0,2,1.2360777854919434,96,1.0,3 +83596,15,0.0,2,1.2260777950286865,97,0.0,3 +83597,15,0.0,2,1.2300777435302734,98,0.0,3 +83598,15,0.0,2,1.4030768871307373,99,1.0,3 +83599,15,0.0,2,1.330077886581421,100,0.0,3 +83600,15,0.0,2,1.4040769338607788,101,1.0,3 +83601,15,0.0,2,1.3880771398544312,102,0.0,3 +83602,15,1.0,2,2.14907169342041,103,0.0,3 +83603,15,0.0,2,1.19807767868042,104,0.0,3 +83604,15,0.0,2,1.7250728607177734,105,0.0,3 +83605,15,0.0,2,1.6170742511749268,106,1.0,3 +83606,15,0.0,2,1.6820733547210693,107,1.0,3 +83607,15,0.0,2,1.467076063156128,108,0.0,3 +83608,15,0.0,2,1.2110776901245117,109,1.0,3 +83609,15,0.0,2,1.2020776271820068,110,0.0,3 +83610,15,0.0,2,1.3610774278640747,111,0.0,3 +83611,15,1.0,2,1.2820777893066406,112,1.0,3 +83612,15,1.0,2,1.3160779476165771,113,0.0,3 +83613,15,0.0,2,1.6670734882354736,114,1.0,3 +83614,15,0.0,2,1.3310778141021729,115,1.0,3 +83615,15,0.0,2,1.2760778665542603,116,0.0,3 +83616,15,1.0,2,2.363081932067871,117,0.0,3 +83617,15,0.0,2,1.8010718822479248,118,0.0,3 +83618,15,0.0,2,1.7670722007751465,119,0.0,3 +83619,15,0.0,2,1.6780734062194824,120,0.0,3 +83620,15,0.0,2,1.4250766038894653,121,1.0,3 +83621,15,0.0,2,1.5180754661560059,122,1.0,3 +83622,15,0.0,2,1.3250778913497925,123,0.0,3 +83623,15,0.0,2,1.2710778713226318,124,0.0,3 +83624,15,1.0,2,1.6660735607147217,125,1.0,3 +83625,15,1.0,2,1.293077826499939,126,1.0,3 +83626,15,1.0,2,1.2470778226852417,127,0.0,3 +83627,15,1.0,2,1.791071891784668,128,1.0,3 +83628,15,1.0,2,1.603074312210083,129,0.0,3 +83629,15,1.0,2,1.7500724792480469,130,1.0,3 +83630,15,1.0,2,1.3820772171020508,131,0.0,3 +83631,15,1.0,2,1.9720696210861206,132,0.0,3 +83632,15,0.0,2,1.1770776510238647,133,0.0,3 +83633,15,1.0,2,2.3010787963867188,134,0.0,3 +83634,15,0.0,2,1.1770776510238647,135,0.0,3 +83635,15,0.0,2,1.4470763206481934,136,0.0,3 +83636,15,0.0,2,1.5300753116607666,137,0.0,3 +83637,15,1.0,2,1.3790771961212158,138,0.0,3 +83638,15,1.0,2,1.8610711097717285,139,0.0,3 +83639,15,1.0,2,2.1850733757019043,140,0.0,3 +83640,15,0.0,2,2.0030691623687744,141,1.0,3 +83641,15,1.0,2,1.7980718612670898,142,1.0,3 +83642,15,0.0,2,1.5180754661560059,143,1.0,3 +83643,15,0.0,2,2.07606840133667,144,0.0,3 +83644,15,1.0,2,1.7000731229782104,145,0.0,3 +83645,15,0.0,2,1.672073483467102,146,0.0,3 +83646,15,1.0,2,1.2300777435302734,147,1.0,3 +83647,15,1.0,2,1.8780708312988281,148,1.0,3 +83648,15,1.0,2,1.4870758056640625,149,0.0,3 +83649,15,1.0,2,1.5460751056671143,150,1.0,3 +83650,15,1.0,2,1.889070749282837,151,1.0,3 +83651,15,1.0,2,1.5910744667053223,152,1.0,3 +83652,15,1.0,2,1.400076985359192,153,0.0,3 +83653,15,0.0,2,2.093069076538086,154,1.0,3 +83654,15,0.0,2,1.4870758056640625,155,0.0,3 +83655,15,1.0,2,2.120070457458496,156,1.0,3 +83656,15,1.0,2,1.6260740756988525,157,1.0,3 +83657,15,1.0,2,1.794071912765503,158,1.0,3 +83658,15,1.0,2,1.5040756464004517,159,1.0,3 +83659,15,1.0,2,1.3910770416259766,160,0.0,3 +83660,15,1.0,2,1.349077582359314,161,1.0,3 +83661,15,1.0,2,1.839071273803711,162,1.0,3 +83662,15,1.0,2,1.400076985359192,163,0.0,3 +83663,15,0.0,2,1.6750733852386475,164,1.0,3 +83664,15,0.0,2,1.4280766248703003,165,0.0,3 +83665,15,0.0,2,1.4310765266418457,166,0.0,3 +83666,15,0.0,2,1.8770709037780762,167,0.0,3 +83667,15,1.0,2,1.4640761613845825,168,1.0,3 +83668,15,1.0,2,1.8910706043243408,169,1.0,3 +83669,15,1.0,2,1.4090768098831177,170,1.0,3 +83670,15,1.0,2,1.6600736379623413,171,1.0,3 +83671,15,1.0,2,1.7600723505020142,172,0.0,3 +83672,15,1.0,2,1.5900745391845703,173,1.0,3 +83673,15,1.0,2,1.9590697288513184,174,1.0,3 +83674,15,1.0,2,1.747072458267212,175,0.0,3 +83675,15,1.0,2,1.4330765008926392,176,1.0,3 +83676,15,1.0,2,1.3290778398513794,177,0.0,3 +83677,15,1.0,2,1.441076397895813,178,1.0,3 +83678,15,0.0,2,1.2850778102874756,179,1.0,3 +83679,15,1.0,2,1.7600723505020142,180,0.0,3 +83680,15,0.0,2,1.2680778503417969,181,0.0,3 +83681,15,0.0,2,1.912070393562317,182,0.0,3 +83682,15,1.0,2,1.7280727624893188,183,1.0,3 +83683,15,1.0,2,1.4680761098861694,184,1.0,3 +83684,15,1.0,2,1.88507080078125,185,0.0,3 +83685,15,1.0,2,1.4210766553878784,186,1.0,3 +83686,15,1.0,2,1.5910744667053223,187,1.0,3 +83687,15,1.0,2,1.5090755224227905,188,0.0,3 +83688,15,0.0,2,1.320077896118164,189,0.0,3 +83689,15,0.0,2,1.2070777416229248,190,0.0,3 +83690,15,0.0,2,1.716072916984558,191,0.0,3 +83691,15,0.0,2,2.1640725135803223,192,1.0,3 +83692,15,0.0,2,1.8070716857910156,193,1.0,3 +83693,15,0.0,2,1.835071325302124,194,0.0,3 +83694,15,1.0,2,1.5450750589370728,195,1.0,3 +83695,15,1.0,2,1.6260740756988525,196,0.0,3 +83696,15,0.0,2,1.2210776805877686,197,0.0,3 +83697,15,1.0,2,1.6130743026733398,198,0.0,3 +83698,15,0.0,2,1.250077724456787,199,0.0,3 +83699,15,1.0,2,1.7500724792480469,200,0.0,3 +83700,15,0.0,2,1.5750746726989746,201,0.0,3 +83701,15,0.0,2,1.3610774278640747,202,1.0,3 +83702,15,0.0,2,1.2180776596069336,203,1.0,3 +83703,15,0.0,2,1.2900779247283936,204,0.0,3 +83704,15,0.0,2,1.3280779123306274,205,1.0,3 +83705,15,0.0,2,1.4270765781402588,206,0.0,3 +83706,15,0.0,2,1.606074333190918,207,0.0,3 +83707,15,0.0,2,1.6740734577178955,208,1.0,3 +83708,15,0.0,2,1.3810771703720093,209,1.0,3 +83709,15,0.0,2,1.2680778503417969,210,0.0,3 +83710,15,0.0,2,1.5600749254226685,211,1.0,3 +83711,15,0.0,2,1.3180779218673706,212,0.0,3 +83712,15,1.0,2,1.3280779123306274,213,0.0,3 +83713,15,0.0,2,1.53207528591156,214,0.0,3 +83714,15,0.0,2,1.397076964378357,215,0.0,3 +83715,15,0.0,2,1.7600723505020142,216,0.0,3 +83716,15,0.0,2,1.3500776290893555,217,0.0,3 +83717,15,0.0,2,1.6140742301940918,218,1.0,3 +83718,15,0.0,2,1.440076470375061,219,0.0,3 +83719,15,1.0,2,1.9500699043273926,220,1.0,3 +83720,15,0.0,2,1.7790720462799072,221,0.0,3 +83721,15,1.0,2,1.4230766296386719,222,1.0,3 +83722,15,1.0,2,1.3140778541564941,223,1.0,3 +83723,15,1.0,2,1.2910778522491455,224,0.0,3 +83724,15,0.0,2,1.5940744876861572,225,0.0,3 +83725,15,0.0,2,1.9640697240829468,226,1.0,3 +83726,15,1.0,2,1.2720777988433838,227,0.0,3 +83727,15,0.0,2,1.5460751056671143,228,0.0,3 +83728,15,0.0,2,1.7590723037719727,229,0.0,3 +83729,15,1.0,2,1.5720747709274292,230,1.0,3 +83730,15,0.0,2,1.1740776300430298,231,1.0,3 +83731,15,0.0,2,1.580074667930603,232,0.0,3 +83732,15,1.0,2,1.5450750589370728,233,0.0,3 +83733,15,0.0,2,1.5380752086639404,234,0.0,3 +83734,15,1.0,2,1.4980757236480713,235,1.0,3 +83735,15,1.0,2,1.3360778093338013,236,1.0,3 +83736,15,1.0,2,1.37007737159729,237,1.0,3 +83737,15,0.0,2,1.467076063156128,238,1.0,3 +83738,15,0.0,2,1.6080743074417114,239,0.0,3 +83739,15,1.0,2,2.0000691413879395,240,1.0,3 +83740,15,1.0,2,1.3120778799057007,241,1.0,3 +83741,15,1.0,2,1.3420777320861816,242,0.0,3 +83742,15,1.0,2,2.074068307876587,243,1.0,3 +83743,15,0.0,2,1.6410739421844482,244,0.0,3 +83744,15,1.0,2,1.3530775308609009,245,1.0,3 +83745,15,1.0,2,1.3650773763656616,246,0.0,3 +83746,15,0.0,2,1.6290740966796875,247,1.0,3 +83747,15,0.0,2,1.319077968597412,248,1.0,3 +83748,15,1.0,2,1.8040717840194702,249,0.0,3 +83749,15,0.0,2,1.632073998451233,250,0.0,3 +83750,15,1.0,2,2.1770730018615723,251,0.0,3 +83751,15,0.0,2,1.2790778875350952,252,0.0,3 +83752,15,0.0,2,2.0370688438415527,253,0.0,3 +83753,15,1.0,2,2.0350687503814697,254,0.0,3 +83754,15,0.0,2,1.4340765476226807,255,0.0,3 +83755,15,0.0,2,1.6820733547210693,256,1.0,3 +83756,15,0.0,2,1.4820759296417236,257,0.0,3 +83757,15,0.0,2,1.2460777759552002,258,0.0,3 +83758,15,1.0,2,1.654073715209961,259,0.0,3 +83759,15,0.0,2,1.9230701923370361,260,1.0,3 +83760,15,0.0,2,1.6260740756988525,261,1.0,3 +83761,15,0.0,2,1.2030776739120483,262,1.0,3 +83762,15,0.0,2,1.2630778551101685,263,1.0,3 +83763,15,0.0,2,1.7530725002288818,264,1.0,3 +83764,15,0.0,2,1.3910770416259766,265,0.0,3 +83765,15,0.0,2,1.8920706510543823,266,0.0,3 +83766,15,1.0,2,1.4480763673782349,267,1.0,3 +83767,15,1.0,2,1.6400738954544067,268,1.0,3 +83768,15,1.0,2,1.3940770626068115,269,1.0,3 +83769,15,0.0,2,1.3070778846740723,270,1.0,3 +83770,15,1.0,2,1.4120768308639526,271,0.0,3 +83771,15,0.0,2,1.3250778913497925,272,0.0,3 +83772,15,0.0,2,1.6110742092132568,273,1.0,3 +83773,15,0.0,2,1.4010769128799438,274,0.0,3 +83774,15,1.0,2,1.7180728912353516,275,1.0,3 +83775,15,1.0,2,1.484075903892517,276,1.0,3 +83776,15,1.0,2,1.415076732635498,277,0.0,3 +83777,15,0.0,2,1.3600775003433228,278,1.0,3 +83778,15,0.0,2,1.441076397895813,279,1.0,3 +83779,15,0.0,2,1.327077865600586,280,0.0,3 +83780,15,1.0,2,1.9240702390670776,281,1.0,3 +83781,15,1.0,2,1.4800759553909302,282,1.0,3 +83782,15,1.0,2,1.6770734786987305,283,1.0,3 +83783,15,1.0,2,1.2300777435302734,284,0.0,3 +83784,15,1.0,2,1.2080776691436768,285,1.0,3 +83785,15,1.0,2,1.8490712642669678,286,1.0,3 +83786,15,1.0,2,1.3510775566101074,287,1.0,3 +83787,15,1.0,2,1.4710760116577148,288,1.0,3 +83788,15,1.0,2,1.5460751056671143,289,1.0,3 +83789,15,0.0,2,1.7790720462799072,290,0.0,3 +83790,15,1.0,2,1.295077919960022,291,1.0,3 +83791,15,1.0,2,1.4520763158798218,292,0.0,3 +83792,15,1.0,2,2.071068286895752,293,1.0,3 +83793,15,1.0,2,1.5090755224227905,294,1.0,3 +83794,15,1.0,2,1.5470750331878662,295,0.0,3 +83795,15,1.0,2,1.7750720977783203,296,1.0,3 +83796,15,1.0,2,1.6740734577178955,297,1.0,3 +83797,15,1.0,2,1.3510775566101074,298,1.0,3 +83798,15,1.0,2,1.3250778913497925,299,0.0,3 +83799,15,0.0,2,1.4870758056640625,300,0.0,3 +83800,15,1.0,2,1.7380726337432861,301,1.0,3 +83801,15,1.0,2,1.3180779218673706,302,1.0,3 +83802,15,1.0,2,1.834071397781372,303,1.0,3 +83803,15,1.0,2,1.2780778408050537,304,1.0,3 +83804,15,1.0,2,1.9460699558258057,305,0.0,3 +83805,15,1.0,2,1.5920745134353638,306,1.0,3 +83806,15,1.0,2,1.4260766506195068,307,0.0,3 +83807,15,1.0,2,1.6670734882354736,308,1.0,3 +83808,15,1.0,2,1.229077696800232,309,1.0,3 +83809,15,1.0,2,1.5740747451782227,310,0.0,3 +83810,15,1.0,2,2.0510685443878174,311,1.0,3 +83811,15,1.0,2,1.389077067375183,312,0.0,3 +83812,15,1.0,2,2.1470718383789062,313,0.0,3 +83813,15,0.0,2,1.7830719947814941,314,1.0,3 +83814,15,0.0,2,1.6660735607147217,315,0.0,3 +83815,15,0.0,2,1.7350726127624512,316,1.0,3 +83816,15,0.0,2,1.255077838897705,317,1.0,3 +83817,15,0.0,2,1.3060779571533203,318,0.0,3 +83818,15,0.0,2,1.3870770931243896,319,1.0,3 +83819,15,0.0,2,1.2110776901245117,320,0.0,3 +83820,15,1.0,2,1.4160767793655396,321,0.0,3 +83821,15,0.0,2,1.2440778017044067,322,1.0,3 +83822,15,0.0,2,1.4110767841339111,323,0.0,3 +83823,15,0.0,2,1.4690760374069214,324,1.0,3 +83824,15,0.0,2,1.2400777339935303,325,0.0,3 +83825,15,0.0,2,1.6480737924575806,326,0.0,3 +83826,15,1.0,2,1.6220741271972656,327,0.0,3 +83827,15,0.0,2,1.6330740451812744,328,0.0,3 +83828,15,1.0,2,1.6770734786987305,329,1.0,3 +83829,15,1.0,2,1.5780746936798096,330,0.0,3 +83830,15,1.0,2,1.3910770416259766,331,0.0,3 +83831,15,0.0,2,1.3420777320861816,332,1.0,3 +83832,15,0.0,2,1.3280779123306274,333,1.0,3 +83833,15,0.0,2,1.580074667930603,334,0.0,3 +83834,15,0.0,2,1.3380777835845947,335,0.0,3 +83835,15,0.0,2,1.971069574356079,336,1.0,3 +83836,15,0.0,2,1.2170777320861816,337,0.0,3 +83837,15,0.0,2,1.7670722007751465,338,0.0,3 +83838,15,1.0,2,1.8700709342956543,339,1.0,3 +83839,15,1.0,2,1.5890746116638184,340,1.0,3 +83840,15,1.0,2,1.396077036857605,341,1.0,3 +83841,15,1.0,2,1.5040756464004517,342,1.0,3 +83842,15,1.0,2,1.5090755224227905,343,0.0,3 +83843,15,1.0,2,1.649073839187622,344,0.0,3 +83844,15,0.0,2,1.7050731182098389,345,0.0,3 +83845,15,0.0,2,1.8200715780258179,346,0.0,3 +83846,15,1.0,2,1.8630709648132324,347,0.0,3 +83847,15,0.0,2,1.259077787399292,348,0.0,3 +83848,15,1.0,2,1.2630778551101685,349,0.0,3 +83849,15,0.0,2,1.4320765733718872,350,0.0,3 +83850,15,0.0,2,1.8470711708068848,351,0.0,3 +83851,15,0.0,2,2.069068431854248,352,0.0,3 +83852,15,0.0,2,1.4520763158798218,353,1.0,3 +83853,15,0.0,2,1.6270740032196045,354,1.0,3 +83854,15,0.0,2,1.7840720415115356,355,0.0,3 +83855,15,1.0,2,1.7700722217559814,356,0.0,3 +83856,15,0.0,2,1.8360713720321655,357,1.0,3 +83857,15,0.0,2,1.3620774745941162,358,1.0,3 +83858,15,0.0,2,1.2830778360366821,359,0.0,3 +83859,15,0.0,2,1.289077877998352,360,0.0,3 +83860,15,1.0,2,1.929070234298706,361,0.0,3 +83861,15,1.0,2,1.5350751876831055,362,1.0,3 +83862,15,1.0,2,1.6590735912322998,363,1.0,3 +83863,15,1.0,2,1.2670778036117554,364,1.0,3 +83864,15,1.0,2,1.292077898979187,365,0.0,3 +83865,15,1.0,2,1.7830719947814941,366,1.0,3 +83866,15,0.0,2,1.9720696210861206,367,0.0,3 +83867,15,1.0,2,2.326080083847046,368,0.0,3 +83868,15,0.0,2,1.4580762386322021,369,1.0,3 +83869,15,0.0,2,1.996069312095642,370,0.0,3 +83870,15,1.0,2,2.087069034576416,371,0.0,3 +83871,15,0.0,2,1.6310739517211914,372,1.0,3 +83872,15,0.0,2,1.2330777645111084,373,1.0,3 +83873,15,0.0,2,1.2180776596069336,374,0.0,3 +83874,15,0.0,2,1.485075831413269,375,1.0,3 +83875,15,0.0,2,1.6180741786956787,376,1.0,3 +83876,15,0.0,2,1.19207763671875,377,1.0,3 +83877,15,0.0,2,1.1790776252746582,378,0.0,3 +83878,15,0.0,2,1.647073745727539,379,0.0,3 +83879,15,0.0,2,1.3870770931243896,380,0.0,3 +83880,15,1.0,2,1.7960718870162964,381,0.0,3 +83881,15,0.0,2,1.8630709648132324,382,0.0,3 +83882,15,0.0,2,1.2630778551101685,383,0.0,3 +83883,15,1.0,2,2.1730728149414062,384,0.0,3 +83884,15,1.0,2,1.747072458267212,385,0.0,3 +83885,15,0.0,2,1.599074363708496,386,1.0,3 +83886,15,0.0,2,1.2800778150558472,387,0.0,3 +83887,15,0.0,2,1.5730746984481812,388,1.0,3 +83888,15,0.0,2,1.250077724456787,389,0.0,3 +83889,15,1.0,2,1.6700735092163086,390,0.0,3 +83890,15,0.0,2,1.4290765523910522,391,1.0,3 +83891,15,0.0,2,1.2780778408050537,392,1.0,3 +83892,15,0.0,2,1.2420778274536133,393,0.0,3 +83893,15,0.0,2,1.5760747194290161,394,0.0,3 +83894,15,0.0,2,1.3570774793624878,395,0.0,3 +83895,15,0.0,2,1.8580710887908936,396,0.0,3 +83896,15,0.0,2,2.11607027053833,397,0.0,3 +83897,15,1.0,2,1.437076449394226,398,0.0,3 +83898,15,1.0,2,1.6690735816955566,399,0.0,3 +83899,15,0.0,2,1.514075517654419,400,1.0,3 +83900,15,0.0,2,1.231077790260315,401,1.0,3 +83901,15,0.0,2,1.5610748529434204,402,1.0,3 +83902,15,0.0,2,1.58407461643219,403,1.0,3 +83903,15,0.0,2,1.4770759344100952,404,0.0,3 +83904,15,0.0,2,1.5530749559402466,405,0.0,3 +83905,15,0.0,2,1.812071681022644,406,0.0,3 +83906,15,1.0,2,2.065068483352661,407,0.0,3 +83907,15,1.0,2,1.5180754661560059,408,1.0,3 +83908,15,1.0,2,1.739072561264038,409,0.0,3 +83909,15,0.0,2,1.4990756511688232,410,0.0,3 +83910,15,1.0,2,1.4300765991210938,411,0.0,3 +83911,15,0.0,2,1.5970745086669922,412,1.0,3 +83912,15,0.0,2,1.558074951171875,413,0.0,3 +83913,15,0.0,2,1.418076753616333,414,0.0,3 +83914,15,0.0,2,1.6650736331939697,415,0.0,3 +83915,15,1.0,2,1.6910731792449951,416,0.0,3 +83916,15,0.0,2,2.2450761795043945,417,0.0,3 +83917,15,1.0,2,1.2710778713226318,418,0.0,3 +83918,15,0.0,2,1.2430777549743652,419,0.0,3 +83919,15,1.0,2,1.605074405670166,420,1.0,3 +83920,15,1.0,2,1.2900779247283936,421,0.0,3 +83921,15,0.0,2,1.8940706253051758,422,0.0,3 +83922,15,1.0,2,1.654073715209961,423,1.0,3 +83923,15,1.0,2,1.5740747451782227,424,1.0,3 +83924,15,1.0,2,1.4060769081115723,425,1.0,3 +83925,15,1.0,2,1.4120768308639526,426,0.0,3 +83926,15,1.0,2,1.5490750074386597,427,1.0,3 +83927,15,1.0,2,1.8140716552734375,428,1.0,3 +83928,15,1.0,2,1.262077808380127,429,1.0,3 +83929,15,1.0,2,1.3880771398544312,430,0.0,3 +83930,15,1.0,2,1.232077717781067,431,1.0,3 +83931,15,1.0,2,1.9190702438354492,432,0.0,3 +83932,15,0.0,2,1.529075264930725,433,0.0,3 +83933,15,0.0,2,1.3770772218704224,434,1.0,3 +83934,15,0.0,2,1.286077857017517,435,1.0,3 +83935,15,0.0,2,1.8150715827941895,436,0.0,3 +83936,15,1.0,2,1.4980757236480713,437,1.0,3 +83937,15,1.0,2,1.2340776920318604,438,1.0,3 +83938,15,1.0,2,1.400076985359192,439,1.0,3 +83939,15,1.0,2,1.4090768098831177,440,0.0,3 +83940,15,0.0,2,1.5640748739242554,441,1.0,3 +83941,15,0.0,2,1.3640774488449097,442,0.0,3 +83942,15,0.0,2,2.161072254180908,443,0.0,3 +83943,15,1.0,2,1.790071964263916,444,1.0,3 +83944,15,1.0,2,2.0580685138702393,445,1.0,3 +83945,15,1.0,2,1.4770759344100952,446,0.0,3 +83946,15,1.0,2,1.5390751361846924,447,0.0,3 +83947,15,0.0,2,1.887070655822754,448,1.0,3 +83948,15,0.0,2,1.2260777950286865,449,0.0,3 +83949,15,0.0,2,1.7120729684829712,450,0.0,3 +83950,15,1.0,2,1.4810758829116821,451,0.0,3 +83951,15,0.0,2,1.5020756721496582,452,1.0,3 +83952,15,0.0,2,1.296077847480774,453,1.0,3 +83953,15,0.0,2,1.2430777549743652,454,1.0,3 +83954,15,0.0,2,1.322077989578247,455,1.0,3 +83955,15,0.0,2,1.232077717781067,456,1.0,3 +83956,15,0.0,2,1.259077787399292,457,0.0,3 +83957,15,0.0,2,1.4380764961242676,458,1.0,3 +83958,15,0.0,2,1.4980757236480713,459,1.0,3 +83959,15,0.0,2,1.322077989578247,460,1.0,3 +83960,15,0.0,2,1.121077537536621,461,0.0,3 +83961,15,0.0,2,1.225077748298645,462,0.0,3 +83962,15,0.0,2,1.741072654724121,463,1.0,3 +83963,15,0.0,2,1.5390751361846924,464,1.0,3 +83964,15,0.0,2,1.4450763463974,465,0.0,3 +83965,15,0.0,2,1.2900779247283936,466,1.0,3 +83966,15,0.0,2,1.3180779218673706,467,0.0,3 +83967,15,1.0,2,1.9910693168640137,468,1.0,3 +83968,15,1.0,2,1.4480763673782349,469,1.0,3 +83969,15,1.0,2,1.2880778312683105,470,0.0,3 +83970,15,0.0,2,1.8230714797973633,471,0.0,3 +83971,15,1.0,2,1.4520763158798218,472,0.0,3 +83972,15,0.0,2,1.3370777368545532,473,1.0,3 +83973,15,0.0,2,1.6640735864639282,474,1.0,3 +83974,15,0.0,2,1.349077582359314,475,1.0,3 +83975,15,0.0,2,1.2030776739120483,476,1.0,3 +83976,15,0.0,2,1.2270777225494385,477,0.0,3 +83977,15,0.0,2,1.4770759344100952,478,1.0,3 +83978,15,0.0,2,1.1790776252746582,479,0.0,3 +83979,15,0.0,2,1.88507080078125,480,1.0,3 +83980,15,0.0,2,1.837071418762207,481,0.0,3 +83981,15,0.0,2,1.624074101448059,482,1.0,3 +83982,15,0.0,2,1.4450763463974,483,1.0,3 +83983,15,0.0,2,1.4110767841339111,484,0.0,3 +83984,15,0.0,2,1.3760772943496704,485,1.0,3 +83985,15,0.0,2,1.42207670211792,486,1.0,3 +83986,15,0.0,2,1.3570774793624878,487,1.0,3 +83987,15,0.0,2,1.3620774745941162,488,0.0,3 +83988,15,1.0,2,1.4510762691497803,489,1.0,3 +83989,15,1.0,2,1.9550697803497314,490,0.0,3 +83990,15,0.0,2,1.3380777835845947,491,0.0,3 +83991,15,0.0,2,1.389077067375183,492,0.0,3 +83992,15,1.0,2,2.0050692558288574,493,1.0,3 +83993,15,1.0,2,1.5240753889083862,494,1.0,3 +83994,15,1.0,2,1.4870758056640625,495,1.0,3 +83995,15,1.0,2,1.5000756978988647,496,1.0,3 +83996,15,1.0,2,1.6790733337402344,497,1.0,3 +83997,15,1.0,2,1.229077696800232,498,1.0,3 +83998,15,1.0,2,1.7690722942352295,499,1.0,3 +83999,15,1.0,2,1.2840778827667236,500,0.0,3 +84000,16,1.0,0,1.7678580284118652,1,0.0,3 +84001,16,0.0,0,2.060858726501465,2,0.0,3 +84002,16,1.0,0,2.401874542236328,3,1.0,3 +84003,16,1.0,0,2.129861831665039,4,1.0,3 +84004,16,1.0,0,1.262864589691162,5,1.0,3 +84005,16,1.0,0,1.4798617362976074,6,1.0,3 +84006,16,1.0,0,1.2698644399642944,7,1.0,3 +84007,16,1.0,0,1.7418584823608398,8,1.0,3 +84008,16,1.0,0,1.2358648777008057,9,1.0,3 +84009,16,1.0,0,1.6538596153259277,10,0.0,3 +84010,16,0.0,0,1.2018648386001587,11,0.0,3 +84011,16,0.0,0,1.7688580751419067,12,1.0,3 +84012,16,0.0,0,2.079859495162964,13,0.0,3 +84013,16,0.0,0,1.9528557062149048,14,0.0,3 +84014,16,1.0,0,1.4608620405197144,15,0.0,3 +84015,16,0.0,0,2.407874822616577,16,0.0,3 +84016,16,0.0,0,1.6008602380752563,17,0.0,3 +84017,16,0.0,0,1.2008647918701172,18,0.0,3 +84018,16,1.0,0,2.0458579063415527,19,1.0,3 +84019,16,1.0,0,1.2278648614883423,20,1.0,3 +84020,16,1.0,0,1.3688632249832153,21,1.0,3 +84021,16,1.0,0,1.2688645124435425,22,1.0,3 +84022,16,1.0,0,1.5238611698150635,23,1.0,3 +84023,16,1.0,0,1.285864233970642,24,1.0,3 +84024,16,1.0,0,1.2828643321990967,25,1.0,3 +84025,16,1.0,0,1.2738643884658813,26,1.0,3 +84026,16,1.0,0,1.727858543395996,27,1.0,3 +84027,16,1.0,0,2.044857978820801,28,1.0,3 +84028,16,1.0,0,1.14886474609375,29,0.0,3 +84029,16,1.0,0,1.355863332748413,30,1.0,3 +84030,16,1.0,0,1.5678606033325195,31,1.0,3 +84031,16,1.0,0,1.5188612937927246,32,1.0,3 +84032,16,1.0,0,1.8138575553894043,33,1.0,3 +84033,16,1.0,0,1.921856164932251,34,1.0,3 +84034,16,1.0,0,1.2738643884658813,35,0.0,3 +84035,16,1.0,0,1.1778647899627686,36,1.0,3 +84036,16,1.0,0,1.3508634567260742,37,1.0,3 +84037,16,1.0,0,1.7738580703735352,38,1.0,3 +84038,16,0.0,0,1.454862117767334,39,0.0,3 +84039,16,1.0,0,1.4908616542816162,40,1.0,3 +84040,16,1.0,0,1.402862787246704,41,1.0,3 +84041,16,1.0,0,1.3448635339736938,42,1.0,3 +84042,16,1.0,0,1.3288637399673462,43,1.0,3 +84043,16,1.0,0,1.2238647937774658,44,1.0,3 +84044,16,1.0,0,1.4138625860214233,45,1.0,3 +84045,16,1.0,0,1.3518633842468262,46,1.0,3 +84046,16,1.0,0,1.5488609075546265,47,1.0,3 +84047,16,0.0,0,1.645859718322754,48,0.0,3 +84048,16,1.0,0,1.1908648014068604,49,1.0,3 +84049,16,1.0,0,1.2968641519546509,50,1.0,3 +84050,16,1.0,0,1.616860032081604,51,1.0,3 +84051,16,1.0,0,1.8398571014404297,52,0.0,3 +84052,16,0.0,0,1.1148645877838135,53,0.0,3 +84053,16,1.0,0,1.363863229751587,54,1.0,3 +84054,16,1.0,0,1.3428635597229004,55,1.0,3 +84055,16,1.0,0,1.4348623752593994,56,1.0,3 +84056,16,1.0,0,1.3138638734817505,57,1.0,3 +84057,16,1.0,0,1.6158599853515625,58,1.0,3 +84058,16,1.0,0,1.3708631992340088,59,1.0,3 +84059,16,1.0,0,1.2318648099899292,60,1.0,3 +84060,16,1.0,0,1.6618595123291016,61,1.0,3 +84061,16,1.0,0,1.2348648309707642,62,0.0,3 +84062,16,0.0,0,1.3838629722595215,63,0.0,3 +84063,16,1.0,0,2.10386061668396,64,1.0,3 +84064,16,1.0,0,1.4088627099990845,65,1.0,3 +84065,16,1.0,0,1.262864589691162,66,1.0,3 +84066,16,1.0,0,1.1718647480010986,67,1.0,3 +84067,16,1.0,0,1.6728593111038208,68,1.0,3 +84068,16,1.0,0,1.337863564491272,69,1.0,3 +84069,16,1.0,0,1.3098639249801636,70,1.0,3 +84070,16,1.0,0,1.2288649082183838,71,1.0,3 +84071,16,0.0,0,1.0778645277023315,72,0.0,3 +84072,16,1.0,0,1.1818647384643555,73,1.0,3 +84073,16,1.0,0,1.4638619422912598,74,1.0,3 +84074,16,1.0,0,1.2958641052246094,75,1.0,3 +84075,16,1.0,0,1.1708647012710571,76,1.0,3 +84076,16,1.0,0,1.9438557624816895,77,1.0,3 +84077,16,1.0,0,1.4658619165420532,78,1.0,3 +84078,16,1.0,0,1.3388636112213135,79,0.0,3 +84079,16,1.0,0,1.639859676361084,80,1.0,3 +84080,16,1.0,0,1.3028640747070312,81,1.0,3 +84081,16,1.0,0,1.6318597793579102,82,1.0,3 +84082,16,1.0,0,1.7538583278656006,83,1.0,3 +84083,16,1.0,0,1.4688619375228882,84,1.0,3 +84084,16,1.0,0,1.4638619422912598,85,1.0,3 +84085,16,0.0,0,1.2378648519515991,86,0.0,3 +84086,16,1.0,0,1.727858543395996,87,1.0,3 +84087,16,1.0,0,1.2388648986816406,88,1.0,3 +84088,16,1.0,0,1.2428648471832275,89,1.0,3 +84089,16,0.0,0,1.5318610668182373,90,0.0,3 +84090,16,1.0,0,1.5338611602783203,91,1.0,3 +84091,16,1.0,0,1.2258648872375488,92,1.0,3 +84092,16,1.0,0,1.4498621225357056,93,0.0,3 +84093,16,1.0,0,2.386873722076416,94,1.0,3 +84094,16,1.0,0,1.1808648109436035,95,1.0,3 +84095,16,1.0,0,1.501861572265625,96,0.0,3 +84096,16,1.0,0,2.117861270904541,97,1.0,3 +84097,16,0.0,0,1.2568646669387817,98,0.0,3 +84098,16,1.0,0,1.1908648014068604,99,1.0,3 +84099,16,1.0,0,1.6578595638275146,100,1.0,3 +84100,16,1.0,0,1.4348623752593994,101,1.0,3 +84101,16,1.0,0,1.1778647899627686,102,1.0,3 +84102,16,1.0,0,1.7918577194213867,103,1.0,3 +84103,16,1.0,0,1.472861886024475,104,0.0,3 +84104,16,1.0,0,1.2988641262054443,105,1.0,3 +84105,16,1.0,0,1.3418635129928589,106,1.0,3 +84106,16,1.0,0,1.4488621950149536,107,0.0,3 +84107,16,1.0,0,1.2208647727966309,108,1.0,3 +84108,16,1.0,0,1.3758630752563477,109,1.0,3 +84109,16,1.0,0,1.1608647108078003,110,1.0,3 +84110,16,1.0,0,1.4818617105484009,111,1.0,3 +84111,16,1.0,0,1.1228646039962769,112,1.0,3 +84112,16,1.0,0,1.5068614482879639,113,1.0,3 +84113,16,1.0,0,1.3918628692626953,114,1.0,3 +84114,16,1.0,0,1.524861216545105,115,1.0,3 +84115,16,1.0,0,1.311863899230957,116,1.0,3 +84116,16,1.0,0,1.3498634099960327,117,1.0,3 +84117,16,1.0,0,1.572860598564148,118,0.0,3 +84118,16,1.0,0,2.0538582801818848,119,1.0,3 +84119,16,1.0,0,1.3678631782531738,120,0.0,3 +84120,16,1.0,0,2.1848645210266113,121,1.0,3 +84121,16,1.0,0,1.68985915184021,122,1.0,3 +84122,16,1.0,0,1.2908642292022705,123,1.0,3 +84123,16,1.0,0,1.5078613758087158,124,1.0,3 +84124,16,1.0,0,1.2878642082214355,125,1.0,3 +84125,16,1.0,0,1.63785982131958,126,1.0,3 +84126,16,1.0,0,1.1758646965026855,127,1.0,3 +84127,16,1.0,0,1.5778605937957764,128,1.0,3 +84128,16,1.0,0,1.332863688468933,129,1.0,3 +84129,16,1.0,0,1.5858604907989502,130,1.0,3 +84130,16,1.0,0,1.1928647756576538,131,0.0,3 +84131,16,1.0,0,2.1608633995056152,132,1.0,3 +84132,16,1.0,0,1.2868642807006836,133,1.0,3 +84133,16,1.0,0,1.4178625345230103,134,1.0,3 +84134,16,1.0,0,1.5158612728118896,135,1.0,3 +84135,16,1.0,0,1.3458634614944458,136,1.0,3 +84136,16,1.0,0,1.3058639764785767,137,1.0,3 +84137,16,1.0,0,1.3048640489578247,138,1.0,3 +84138,16,1.0,0,1.5308611392974854,139,1.0,3 +84139,16,1.0,0,1.2028647661209106,140,1.0,3 +84140,16,1.0,0,1.8558568954467773,141,1.0,3 +84141,16,1.0,0,1.5738606452941895,142,1.0,3 +84142,16,1.0,0,1.3538633584976196,143,0.0,3 +84143,16,1.0,0,1.3608633279800415,144,1.0,3 +84144,16,1.0,0,1.2558646202087402,145,1.0,3 +84145,16,1.0,0,1.8548569679260254,146,1.0,3 +84146,16,1.0,0,1.2258648872375488,147,1.0,3 +84147,16,1.0,0,1.1518646478652954,148,0.0,3 +84148,16,0.0,0,1.1508647203445435,149,0.0,3 +84149,16,1.0,0,1.1978647708892822,150,1.0,3 +84150,16,0.0,0,1.450862169265747,151,0.0,3 +84151,16,1.0,0,2.14386248588562,152,1.0,3 +84152,16,1.0,0,1.1658647060394287,153,1.0,3 +84153,16,1.0,0,1.3068640232086182,154,1.0,3 +84154,16,0.0,0,1.1288646459579468,155,0.0,3 +84155,16,1.0,0,1.2818642854690552,156,1.0,3 +84156,16,1.0,0,1.782857894897461,157,1.0,3 +84157,16,1.0,0,1.4138625860214233,158,1.0,3 +84158,16,1.0,0,1.3388636112213135,159,1.0,3 +84159,16,0.0,0,1.1658647060394287,160,0.0,3 +84160,16,1.0,0,2.067858934402466,161,1.0,3 +84161,16,1.0,0,1.8848565816879272,162,1.0,3 +84162,16,1.0,0,1.8688567876815796,163,1.0,3 +84163,16,1.0,0,1.1818647384643555,164,1.0,3 +84164,16,1.0,0,1.4928616285324097,165,1.0,3 +84165,16,1.0,0,1.1228646039962769,166,1.0,3 +84166,16,1.0,0,1.1508647203445435,167,1.0,3 +84167,16,1.0,0,1.756858229637146,168,1.0,3 +84168,16,1.0,0,1.267864465713501,169,1.0,3 +84169,16,1.0,0,1.4438621997833252,170,1.0,3 +84170,16,1.0,0,1.0808645486831665,171,1.0,3 +84171,16,1.0,0,1.473861813545227,172,1.0,3 +84172,16,1.0,0,1.8218574523925781,173,1.0,3 +84173,16,1.0,0,1.245864748954773,174,1.0,3 +84174,16,1.0,0,1.355863332748413,175,1.0,3 +84175,16,1.0,0,1.2338649034500122,176,1.0,3 +84176,16,1.0,0,1.3348636627197266,177,1.0,3 +84177,16,1.0,0,1.3798630237579346,178,1.0,3 +84178,16,1.0,0,1.1538647413253784,179,1.0,3 +84179,16,1.0,0,1.2878642082214355,180,1.0,3 +84180,16,1.0,0,1.2778643369674683,181,1.0,3 +84181,16,1.0,0,1.2118648290634155,182,1.0,3 +84182,16,1.0,0,1.266864538192749,183,1.0,3 +84183,16,1.0,0,1.2358648777008057,184,1.0,3 +84184,16,1.0,0,1.2808643579483032,185,1.0,3 +84185,16,1.0,0,1.8408571481704712,186,1.0,3 +84186,16,1.0,0,1.591860294342041,187,1.0,3 +84187,16,1.0,0,1.8128575086593628,188,1.0,3 +84188,16,1.0,0,1.3998627662658691,189,1.0,3 +84189,16,1.0,0,1.1748647689819336,190,1.0,3 +84190,16,1.0,0,1.318863868713379,191,0.0,3 +84191,16,0.0,0,1.9328559637069702,192,0.0,3 +84192,16,1.0,0,1.593860387802124,193,1.0,3 +84193,16,1.0,0,1.149864673614502,194,1.0,3 +84194,16,1.0,0,1.8858566284179688,195,1.0,3 +84195,16,1.0,0,1.2398648262023926,196,1.0,3 +84196,16,1.0,0,1.1548646688461304,197,0.0,3 +84197,16,0.0,0,1.0948646068572998,198,0.0,3 +84198,16,0.0,0,1.1238646507263184,199,0.0,3 +84199,16,1.0,0,1.6288598775863647,200,0.0,3 +84200,16,0.0,0,2.061858654022217,201,1.0,3 +84201,16,0.0,0,1.244864821434021,202,1.0,3 +84202,16,0.0,0,1.1958647966384888,203,0.0,3 +84203,16,1.0,0,1.2088648080825806,204,1.0,3 +84204,16,1.0,0,1.4278624057769775,205,1.0,3 +84205,16,1.0,0,1.240864872932434,206,0.0,3 +84206,16,1.0,0,1.6038601398468018,207,1.0,3 +84207,16,1.0,0,1.3708631992340088,208,1.0,3 +84208,16,1.0,0,1.476861834526062,209,1.0,3 +84209,16,1.0,0,1.3078639507293701,210,1.0,3 +84210,16,1.0,0,1.4638619422912598,211,1.0,3 +84211,16,1.0,0,1.9858553409576416,212,1.0,3 +84212,16,1.0,0,1.727858543395996,213,1.0,3 +84213,16,1.0,0,1.5578608512878418,214,1.0,3 +84214,16,1.0,0,1.9078562259674072,215,1.0,3 +84215,16,1.0,0,1.3788630962371826,216,1.0,3 +84216,16,1.0,0,1.1748647689819336,217,1.0,3 +84217,16,1.0,0,1.1618647575378418,218,1.0,3 +84218,16,1.0,0,1.4468622207641602,219,0.0,3 +84219,16,0.0,0,1.4908616542816162,220,0.0,3 +84220,16,1.0,0,1.3898628950119019,221,1.0,3 +84221,16,1.0,0,1.6048601865768433,222,1.0,3 +84222,16,1.0,0,1.473861813545227,223,0.0,3 +84223,16,1.0,0,2.0158565044403076,224,1.0,3 +84224,16,1.0,0,1.6088601350784302,225,1.0,3 +84225,16,1.0,0,1.3618632555007935,226,1.0,3 +84226,16,1.0,0,1.1208646297454834,227,1.0,3 +84227,16,1.0,0,1.1878647804260254,228,1.0,3 +84228,16,1.0,0,1.3288637399673462,229,1.0,3 +84229,16,1.0,0,1.6508595943450928,230,1.0,3 +84230,16,0.0,0,1.7218587398529053,231,0.0,3 +84231,16,0.0,0,1.2058647871017456,232,0.0,3 +84232,16,1.0,0,1.2018648386001587,233,1.0,3 +84233,16,1.0,0,1.3138638734817505,234,1.0,3 +84234,16,1.0,0,1.207864761352539,235,1.0,3 +84235,16,1.0,0,1.2968641519546509,236,0.0,3 +84236,16,1.0,0,1.5608607530593872,237,0.0,3 +84237,16,0.0,0,1.729858636856079,238,0.0,3 +84238,16,0.0,0,2.0308570861816406,239,1.0,3 +84239,16,0.0,0,1.244864821434021,240,0.0,3 +84240,16,0.0,0,1.3288637399673462,241,1.0,3 +84241,16,0.0,0,1.428862452507019,242,0.0,3 +84242,16,0.0,0,1.332863688468933,243,0.0,3 +84243,16,1.0,0,1.4598619937896729,244,1.0,3 +84244,16,1.0,0,1.4158625602722168,245,1.0,3 +84245,16,1.0,0,1.4568620920181274,246,1.0,3 +84246,16,1.0,0,1.204864740371704,247,1.0,3 +84247,16,1.0,0,1.6118600368499756,248,1.0,3 +84248,16,1.0,0,1.2508647441864014,249,1.0,3 +84249,16,1.0,0,1.1678646802902222,250,1.0,3 +84250,16,1.0,0,1.2148648500442505,251,1.0,3 +84251,16,1.0,0,1.384863018989563,252,1.0,3 +84252,16,1.0,0,1.4148626327514648,253,1.0,3 +84253,16,1.0,0,1.3178638219833374,254,1.0,3 +84254,16,1.0,0,1.3388636112213135,255,1.0,3 +84255,16,1.0,0,1.311863899230957,256,0.0,3 +84256,16,1.0,0,1.3298636674880981,257,1.0,3 +84257,16,1.0,0,1.3398635387420654,258,1.0,3 +84258,16,1.0,0,1.3958628177642822,259,1.0,3 +84259,16,1.0,0,1.1878647804260254,260,1.0,3 +84260,16,1.0,0,1.8598568439483643,261,1.0,3 +84261,16,1.0,0,1.3568633794784546,262,1.0,3 +84262,16,1.0,0,1.9268560409545898,263,1.0,3 +84263,16,1.0,0,1.5318610668182373,264,1.0,3 +84264,16,1.0,0,1.4428622722625732,265,1.0,3 +84265,16,1.0,0,1.73585844039917,266,1.0,3 +84266,16,1.0,0,1.1678646802902222,267,1.0,3 +84267,16,1.0,0,1.333863615989685,268,1.0,3 +84268,16,1.0,0,2.0028557777404785,269,1.0,3 +84269,16,1.0,0,1.5368610620498657,270,1.0,3 +84270,16,1.0,0,1.1548646688461304,271,0.0,3 +84271,16,1.0,0,1.6408597230911255,272,0.0,3 +84272,16,0.0,0,1.476861834526062,273,0.0,3 +84273,16,0.0,0,1.5088614225387573,274,0.0,3 +84274,16,1.0,0,1.3688632249832153,275,1.0,3 +84275,16,1.0,0,1.6468596458435059,276,0.0,3 +84276,16,1.0,0,1.3098639249801636,277,1.0,3 +84277,16,1.0,0,1.568860650062561,278,1.0,3 +84278,16,1.0,0,1.7548582553863525,279,1.0,3 +84279,16,1.0,0,1.179864764213562,280,1.0,3 +84280,16,1.0,0,1.1338646411895752,281,1.0,3 +84281,16,1.0,0,1.6588594913482666,282,1.0,3 +84282,16,1.0,0,1.3348636627197266,283,1.0,3 +84283,16,1.0,0,1.3948628902435303,284,1.0,3 +84284,16,1.0,0,1.82285737991333,285,0.0,3 +84285,16,0.0,0,1.7718579769134521,286,0.0,3 +84286,16,0.0,0,1.7668581008911133,287,0.0,3 +84287,16,0.0,0,1.4918615818023682,288,0.0,3 +84288,16,0.0,0,1.4948616027832031,289,1.0,3 +84289,16,0.0,0,1.241864800453186,290,0.0,3 +84290,16,1.0,0,1.921856164932251,291,1.0,3 +84291,16,1.0,0,1.782857894897461,292,1.0,3 +84292,16,1.0,0,2.0008559226989746,293,1.0,3 +84293,16,1.0,0,1.3128639459609985,294,1.0,3 +84294,16,1.0,0,1.4188625812530518,295,1.0,3 +84295,16,1.0,0,1.3138638734817505,296,0.0,3 +84296,16,0.0,0,1.2158647775650024,297,0.0,3 +84297,16,1.0,0,1.5708606243133545,298,1.0,3 +84298,16,0.0,0,1.2738643884658813,299,0.0,3 +84299,16,1.0,0,1.4088627099990845,300,1.0,3 +84300,16,1.0,0,1.6798591613769531,301,1.0,3 +84301,16,1.0,0,1.3218637704849243,302,1.0,3 +84302,16,1.0,0,1.213864803314209,303,0.0,3 +84303,16,1.0,0,1.5188612937927246,304,1.0,3 +84304,16,1.0,0,1.1248645782470703,305,1.0,3 +84305,16,1.0,0,1.3038640022277832,306,1.0,3 +84306,16,1.0,0,1.315863847732544,307,1.0,3 +84307,16,1.0,0,1.4868617057800293,308,1.0,3 +84308,16,1.0,0,1.2438647747039795,309,1.0,3 +84309,16,1.0,0,1.7248586416244507,310,1.0,3 +84310,16,1.0,0,1.2518646717071533,311,1.0,3 +84311,16,1.0,0,1.1168646812438965,312,0.0,3 +84312,16,1.0,0,1.2558646202087402,313,0.0,3 +84313,16,0.0,0,1.4528621435165405,314,0.0,3 +84314,16,0.0,0,1.3458634614944458,315,0.0,3 +84315,16,1.0,0,1.5738606452941895,316,1.0,3 +84316,16,1.0,0,1.5578608512878418,317,1.0,3 +84317,16,1.0,0,1.4198625087738037,318,1.0,3 +84318,16,1.0,0,1.3018640279769897,319,1.0,3 +84319,16,1.0,0,2.2748684883117676,320,1.0,3 +84320,16,1.0,0,1.7768579721450806,321,1.0,3 +84321,16,1.0,0,1.14886474609375,322,1.0,3 +84322,16,1.0,0,1.8558568954467773,323,1.0,3 +84323,16,1.0,0,1.209864854812622,324,1.0,3 +84324,16,1.0,0,1.362863302230835,325,1.0,3 +84325,16,1.0,0,1.5828604698181152,326,0.0,3 +84326,16,0.0,0,1.4278624057769775,327,0.0,3 +84327,16,1.0,0,1.2348648309707642,328,0.0,3 +84328,16,1.0,0,1.207864761352539,329,1.0,3 +84329,16,1.0,0,1.3018640279769897,330,1.0,3 +84330,16,1.0,0,2.0108561515808105,331,1.0,3 +84331,16,1.0,0,1.8578569889068604,332,1.0,3 +84332,16,0.0,0,1.6058602333068848,333,0.0,3 +84333,16,1.0,0,1.216864824295044,334,1.0,3 +84334,16,1.0,0,1.2268648147583008,335,0.0,3 +84335,16,1.0,0,1.5388610363006592,336,1.0,3 +84336,16,1.0,0,1.4938616752624512,337,1.0,3 +84337,16,1.0,0,1.4168626070022583,338,1.0,3 +84338,16,1.0,0,1.204864740371704,339,1.0,3 +84339,16,1.0,0,1.450862169265747,340,1.0,3 +84340,16,1.0,0,1.109864592552185,341,1.0,3 +84341,16,1.0,0,1.2958641052246094,342,1.0,3 +84342,16,1.0,0,1.7618582248687744,343,1.0,3 +84343,16,1.0,0,1.4198625087738037,344,0.0,3 +84344,16,0.0,0,2.2338666915893555,345,0.0,3 +84345,16,1.0,0,1.4488621950149536,346,1.0,3 +84346,16,1.0,0,1.266864538192749,347,1.0,3 +84347,16,1.0,0,1.4668619632720947,348,1.0,3 +84348,16,1.0,0,1.5008615255355835,349,0.0,3 +84349,16,0.0,0,1.7328585386276245,350,0.0,3 +84350,16,0.0,0,1.3468635082244873,351,1.0,3 +84351,16,0.0,0,1.183864712715149,352,0.0,3 +84352,16,1.0,0,1.9588556289672852,353,1.0,3 +84353,16,1.0,0,1.3788630962371826,354,1.0,3 +84354,16,1.0,0,1.2428648471832275,355,0.0,3 +84355,16,0.0,0,2.2788686752319336,356,0.0,3 +84356,16,0.0,0,1.4938616752624512,357,0.0,3 +84357,16,1.0,0,2.413875102996826,358,1.0,3 +84358,16,1.0,0,1.7538583278656006,359,1.0,3 +84359,16,1.0,0,1.4608620405197144,360,1.0,3 +84360,16,1.0,0,1.591860294342041,361,1.0,3 +84361,16,1.0,0,1.209864854812622,362,1.0,3 +84362,16,1.0,0,1.2568646669387817,363,1.0,3 +84363,16,1.0,0,1.4278624057769775,364,1.0,3 +84364,16,1.0,0,1.2598645687103271,365,1.0,3 +84365,16,1.0,0,1.3208638429641724,366,1.0,3 +84366,16,1.0,0,1.6688593626022339,367,1.0,3 +84367,16,1.0,0,1.2958641052246094,368,1.0,3 +84368,16,1.0,0,1.3178638219833374,369,1.0,3 +84369,16,1.0,0,1.209864854812622,370,1.0,3 +84370,16,1.0,0,1.7038588523864746,371,1.0,3 +84371,16,0.0,0,1.6508595943450928,372,1.0,3 +84372,16,1.0,0,1.7698581218719482,373,1.0,3 +84373,16,0.0,0,1.2398648262023926,374,0.0,3 +84374,16,1.0,0,1.5748605728149414,375,1.0,3 +84375,16,1.0,0,1.1718647480010986,376,1.0,3 +84376,16,1.0,0,1.2768644094467163,377,1.0,3 +84377,16,1.0,0,1.5388610363006592,378,1.0,3 +84378,16,1.0,0,1.179864764213562,379,0.0,3 +84379,16,1.0,0,1.8028576374053955,380,1.0,3 +84380,16,1.0,0,1.340863585472107,381,1.0,3 +84381,16,1.0,0,1.1808648109436035,382,1.0,3 +84382,16,1.0,0,1.2268648147583008,383,0.0,3 +84383,16,0.0,0,1.4148626327514648,384,0.0,3 +84384,16,1.0,0,1.212864875793457,385,1.0,3 +84385,16,1.0,0,1.4538620710372925,386,0.0,3 +84386,16,1.0,0,1.6928590536117554,387,1.0,3 +84387,16,1.0,0,1.664859414100647,388,1.0,3 +84388,16,1.0,0,1.5748605728149414,389,1.0,3 +84389,16,0.0,0,1.2578645944595337,390,1.0,3 +84390,16,1.0,0,1.2528647184371948,391,1.0,3 +84391,16,1.0,0,1.645859718322754,392,1.0,3 +84392,16,1.0,0,1.8378572463989258,393,1.0,3 +84393,16,0.0,0,1.4748618602752686,394,0.0,3 +84394,16,1.0,0,1.9518556594848633,395,0.0,3 +84395,16,0.0,0,1.4128626585006714,396,0.0,3 +84396,16,1.0,0,1.3978627920150757,397,1.0,3 +84397,16,1.0,0,1.9568556547164917,398,1.0,3 +84398,16,1.0,0,1.5488609075546265,399,1.0,3 +84399,16,1.0,0,1.209864854812622,400,0.0,3 +84400,16,1.0,0,1.2298648357391357,401,1.0,3 +84401,16,1.0,0,1.4248625040054321,402,1.0,3 +84402,16,1.0,0,1.4668619632720947,403,1.0,3 +84403,16,1.0,0,1.2298648357391357,404,1.0,3 +84404,16,1.0,0,1.2368648052215576,405,1.0,3 +84405,16,1.0,0,1.5538609027862549,406,0.0,3 +84406,16,0.0,0,1.5768605470657349,407,0.0,3 +84407,16,0.0,0,1.1358646154403687,408,0.0,3 +84408,16,1.0,0,1.6478595733642578,409,1.0,3 +84409,16,1.0,0,1.616860032081604,410,1.0,3 +84410,16,1.0,0,1.2618645429611206,411,1.0,3 +84411,16,0.0,0,1.3128639459609985,412,1.0,3 +84412,16,0.0,0,1.1578646898269653,413,0.0,3 +84413,16,1.0,0,1.4438621997833252,414,1.0,3 +84414,16,1.0,0,1.6478595733642578,415,1.0,3 +84415,16,1.0,0,1.212864875793457,416,0.0,3 +84416,16,1.0,0,1.4888616800308228,417,1.0,3 +84417,16,1.0,0,1.6148600578308105,418,1.0,3 +84418,16,1.0,0,1.5808604955673218,419,0.0,3 +84419,16,0.0,0,1.2948641777038574,420,0.0,3 +84420,16,1.0,0,2.599883794784546,421,1.0,3 +84421,16,1.0,0,1.2058647871017456,422,1.0,3 +84422,16,1.0,0,1.7718579769134521,423,1.0,3 +84423,16,1.0,0,1.7418584823608398,424,1.0,3 +84424,16,1.0,0,1.267864465713501,425,1.0,3 +84425,16,1.0,0,1.1878647804260254,426,1.0,3 +84426,16,1.0,0,1.3168638944625854,427,1.0,3 +84427,16,1.0,0,1.3778630495071411,428,1.0,3 +84428,16,1.0,0,1.2698644399642944,429,1.0,3 +84429,16,1.0,0,1.3488634824752808,430,1.0,3 +84430,16,1.0,0,1.2268648147583008,431,1.0,3 +84431,16,1.0,0,1.1398646831512451,432,1.0,3 +84432,16,1.0,0,1.355863332748413,433,1.0,3 +84433,16,1.0,0,1.6038601398468018,434,1.0,3 +84434,16,1.0,0,1.4898617267608643,435,1.0,3 +84435,16,1.0,0,1.2658644914627075,436,0.0,3 +84436,16,1.0,0,1.8918564319610596,437,1.0,3 +84437,16,1.0,0,1.3788630962371826,438,1.0,3 +84438,16,1.0,0,1.4568620920181274,439,0.0,3 +84439,16,0.0,0,1.6478595733642578,440,1.0,3 +84440,16,0.0,0,1.3438634872436523,441,0.0,3 +84441,16,1.0,0,1.4488621950149536,442,1.0,3 +84442,16,0.0,0,1.33686363697052,443,0.0,3 +84443,16,1.0,0,1.5628607273101807,444,1.0,3 +84444,16,1.0,0,1.6528595685958862,445,1.0,3 +84445,16,1.0,0,1.4658619165420532,446,1.0,3 +84446,16,1.0,0,1.2608646154403687,447,1.0,3 +84447,16,1.0,0,1.6778593063354492,448,0.0,3 +84448,16,1.0,0,1.2728644609451294,449,1.0,3 +84449,16,1.0,0,1.3678631782531738,450,1.0,3 +84450,16,1.0,0,1.3068640232086182,451,1.0,3 +84451,16,1.0,0,1.179864764213562,452,1.0,3 +84452,16,1.0,0,1.4918615818023682,453,0.0,3 +84453,16,1.0,0,2.0348572731018066,454,1.0,3 +84454,16,1.0,0,1.6158599853515625,455,1.0,3 +84455,16,1.0,0,1.213864803314209,456,0.0,3 +84456,16,1.0,0,2.2458672523498535,457,1.0,3 +84457,16,0.0,0,2.372873306274414,458,0.0,3 +84458,16,1.0,0,1.63785982131958,459,1.0,3 +84459,16,1.0,0,1.869856834411621,460,1.0,3 +84460,16,1.0,0,1.5588607788085938,461,1.0,3 +84461,16,1.0,0,1.4468622207641602,462,1.0,3 +84462,16,1.0,0,1.450862169265747,463,1.0,3 +84463,16,1.0,0,1.6238598823547363,464,0.0,3 +84464,16,1.0,0,1.1878647804260254,465,1.0,3 +84465,16,1.0,0,1.4858616590499878,466,1.0,3 +84466,16,1.0,0,1.477861762046814,467,1.0,3 +84467,16,0.0,0,1.1998647451400757,468,0.0,3 +84468,16,0.0,0,1.212864875793457,469,0.0,3 +84469,16,1.0,0,1.3008641004562378,470,1.0,3 +84470,16,1.0,0,1.2228648662567139,471,1.0,3 +84471,16,1.0,0,1.33686363697052,472,1.0,3 +84472,16,1.0,0,1.4938616752624512,473,1.0,3 +84473,16,1.0,0,1.4948616027832031,474,1.0,3 +84474,16,1.0,0,1.432862401008606,475,0.0,3 +84475,16,1.0,0,1.3208638429641724,476,1.0,3 +84476,16,1.0,0,1.240864872932434,477,1.0,3 +84477,16,1.0,0,1.4758617877960205,478,0.0,3 +84478,16,1.0,0,1.3038640022277832,479,1.0,3 +84479,16,0.0,0,1.1118645668029785,480,0.0,3 +84480,16,1.0,0,1.5708606243133545,481,1.0,3 +84481,16,1.0,0,1.2118648290634155,482,1.0,3 +84482,16,1.0,0,1.4638619422912598,483,1.0,3 +84483,16,1.0,0,1.3018640279769897,484,1.0,3 +84484,16,1.0,0,1.1678646802902222,485,1.0,3 +84485,16,1.0,0,1.3298636674880981,486,1.0,3 +84486,16,1.0,0,1.2348648309707642,487,1.0,3 +84487,16,1.0,0,1.0938645601272583,488,1.0,3 +84488,16,1.0,0,1.293864130973816,489,0.0,3 +84489,16,1.0,0,1.5218613147735596,490,0.0,3 +84490,16,0.0,0,1.310863971710205,491,1.0,3 +84491,16,0.0,0,1.6098601818084717,492,0.0,3 +84492,16,1.0,0,1.547860860824585,493,1.0,3 +84493,16,1.0,0,1.7978577613830566,494,1.0,3 +84494,16,1.0,0,1.1628646850585938,495,1.0,3 +84495,16,1.0,0,1.358863353729248,496,1.0,3 +84496,16,1.0,0,1.1988648176193237,497,1.0,3 +84497,16,1.0,0,1.2808643579483032,498,1.0,3 +84498,16,1.0,0,1.4018627405166626,499,1.0,3 +84499,16,1.0,0,1.3698631525039673,500,1.0,3 +84500,16,1.0,1,1.5808604955673218,1,1.0,3 +84501,16,1.0,1,1.6508595943450928,2,1.0,3 +84502,16,0.0,1,1.262864589691162,3,0.0,3 +84503,16,1.0,1,1.3698631525039673,4,0.0,3 +84504,16,0.0,1,1.3658632040023804,5,0.0,3 +84505,16,1.0,1,1.7878577709197998,6,0.0,3 +84506,16,1.0,1,1.4878616333007812,7,1.0,3 +84507,16,1.0,1,1.3788630962371826,8,1.0,3 +84508,16,1.0,1,1.7438583374023438,9,1.0,3 +84509,16,1.0,1,1.2348648309707642,10,1.0,3 +84510,16,1.0,1,1.2508647441864014,11,1.0,3 +84511,16,1.0,1,1.7068588733673096,12,1.0,3 +84512,16,1.0,1,1.1658647060394287,13,1.0,3 +84513,16,1.0,1,2.2688684463500977,14,0.0,3 +84514,16,1.0,1,1.2828643321990967,15,0.0,3 +84515,16,0.0,1,1.4648619890213013,16,0.0,3 +84516,16,0.0,1,1.1978647708892822,17,0.0,3 +84517,16,0.0,1,1.3268637657165527,18,0.0,3 +84518,16,0.0,1,1.6298599243164062,19,0.0,3 +84519,16,0.0,1,2.100860595703125,20,0.0,3 +84520,16,1.0,1,1.774857997894287,21,1.0,3 +84521,16,1.0,1,1.2338649034500122,22,1.0,3 +84522,16,1.0,1,1.2908642292022705,23,1.0,3 +84523,16,1.0,1,1.2548646926879883,24,1.0,3 +84524,16,1.0,1,1.5368610620498657,25,0.0,3 +84525,16,0.0,1,1.4538620710372925,26,0.0,3 +84526,16,1.0,1,1.3278636932373047,27,1.0,3 +84527,16,1.0,1,1.3068640232086182,28,1.0,3 +84528,16,1.0,1,1.5758605003356934,29,1.0,3 +84529,16,1.0,1,1.6248599290847778,30,0.0,3 +84530,16,1.0,1,1.8168574571609497,31,1.0,3 +84531,16,1.0,1,1.340863585472107,32,1.0,3 +84532,16,1.0,1,2.0098562240600586,33,0.0,3 +84533,16,0.0,1,1.1778647899627686,34,0.0,3 +84534,16,1.0,1,2.1948647499084473,35,1.0,3 +84535,16,1.0,1,1.5088614225387573,36,1.0,3 +84536,16,1.0,1,1.3238637447357178,37,0.0,3 +84537,16,1.0,1,2.2158658504486084,38,1.0,3 +84538,16,1.0,1,1.1028646230697632,39,0.0,3 +84539,16,1.0,1,1.7418584823608398,40,1.0,3 +84540,16,1.0,1,1.7908577919006348,41,0.0,3 +84541,16,1.0,1,1.5618607997894287,42,1.0,3 +84542,16,1.0,1,1.3538633584976196,43,0.0,3 +84543,16,1.0,1,1.4608620405197144,44,0.0,3 +84544,16,0.0,1,1.146864652633667,45,1.0,3 +84545,16,0.0,1,1.8668568134307861,46,1.0,3 +84546,16,0.0,1,1.4448622465133667,47,1.0,3 +84547,16,0.0,1,1.8508570194244385,48,0.0,3 +84548,16,1.0,1,1.6048601865768433,49,1.0,3 +84549,16,1.0,1,1.7238585948944092,50,0.0,3 +84550,16,1.0,1,1.3718631267547607,51,0.0,3 +84551,16,0.0,1,1.1238646507263184,52,0.0,3 +84552,16,0.0,1,1.4498621225357056,53,0.0,3 +84553,16,0.0,1,1.1598646640777588,54,1.0,3 +84554,16,0.0,1,1.6468596458435059,55,1.0,3 +84555,16,0.0,1,1.1968648433685303,56,0.0,3 +84556,16,1.0,1,1.7868578433990479,57,1.0,3 +84557,16,0.0,1,1.5538609027862549,58,1.0,3 +84558,16,0.0,1,1.830857276916504,59,0.0,3 +84559,16,1.0,1,1.4488621950149536,60,0.0,3 +84560,16,1.0,1,1.362863302230835,61,1.0,3 +84561,16,1.0,1,1.3458634614944458,62,1.0,3 +84562,16,0.0,1,1.1318646669387817,63,1.0,3 +84563,16,0.0,1,1.2478647232055664,64,0.0,3 +84564,16,1.0,1,1.2118648290634155,65,1.0,3 +84565,16,1.0,1,1.925856113433838,66,1.0,3 +84566,16,1.0,1,1.5168613195419312,67,1.0,3 +84567,16,1.0,1,1.219864845275879,68,0.0,3 +84568,16,1.0,1,2.1928648948669434,69,1.0,3 +84569,16,0.0,1,1.6368597745895386,70,0.0,3 +84570,16,0.0,1,1.432862401008606,71,0.0,3 +84571,16,1.0,1,1.6448596715927124,72,1.0,3 +84572,16,1.0,1,1.5668606758117676,73,1.0,3 +84573,16,1.0,1,1.3568633794784546,74,0.0,3 +84574,16,1.0,1,1.5858604907989502,75,1.0,3 +84575,16,1.0,1,1.6678593158721924,76,1.0,3 +84576,16,1.0,1,1.3968628644943237,77,1.0,3 +84577,16,1.0,1,1.3988628387451172,78,1.0,3 +84578,16,1.0,1,1.4568620920181274,79,0.0,3 +84579,16,1.0,1,2.327871084213257,80,1.0,3 +84580,16,1.0,1,1.2028647661209106,81,1.0,3 +84581,16,1.0,1,1.433862328529358,82,1.0,3 +84582,16,1.0,1,1.5738606452941895,83,1.0,3 +84583,16,1.0,1,1.333863615989685,84,0.0,3 +84584,16,1.0,1,2.4738779067993164,85,1.0,3 +84585,16,0.0,1,2.5348806381225586,86,0.0,3 +84586,16,1.0,1,1.7148587703704834,87,1.0,3 +84587,16,1.0,1,1.185864806175232,88,1.0,3 +84588,16,1.0,1,1.727858543395996,89,1.0,3 +84589,16,1.0,1,1.3138638734817505,90,1.0,3 +84590,16,1.0,1,1.641859769821167,91,1.0,3 +84591,16,1.0,1,1.4968615770339966,92,0.0,3 +84592,16,1.0,1,1.3458634614944458,93,1.0,3 +84593,16,1.0,1,1.454862117767334,94,0.0,3 +84594,16,0.0,1,1.9458558559417725,95,1.0,3 +84595,16,0.0,1,1.3168638944625854,96,0.0,3 +84596,16,0.0,1,1.4698618650436401,97,0.0,3 +84597,16,0.0,1,1.3468635082244873,98,1.0,3 +84598,16,0.0,1,1.152864694595337,99,0.0,3 +84599,16,1.0,1,1.727858543395996,100,1.0,3 +84600,16,0.0,1,1.3718631267547607,101,0.0,3 +84601,16,1.0,1,1.5968602895736694,102,1.0,3 +84602,16,1.0,1,1.1238646507263184,103,0.0,3 +84603,16,0.0,1,1.5048614740371704,104,0.0,3 +84604,16,0.0,1,1.3028640747070312,105,0.0,3 +84605,16,1.0,1,1.6798591613769531,106,1.0,3 +84606,16,1.0,1,1.2918641567230225,107,0.0,3 +84607,16,0.0,1,1.6318597793579102,108,1.0,3 +84608,16,0.0,1,1.2228648662567139,109,0.0,3 +84609,16,0.0,1,1.4198625087738037,110,1.0,3 +84610,16,0.0,1,1.7548582553863525,111,0.0,3 +84611,16,1.0,1,1.3318636417388916,112,1.0,3 +84612,16,1.0,1,1.2238647937774658,113,1.0,3 +84613,16,1.0,1,1.11286461353302,114,1.0,3 +84614,16,1.0,1,1.5558607578277588,115,0.0,3 +84615,16,0.0,1,1.0678645372390747,116,0.0,3 +84616,16,1.0,1,1.3248637914657593,117,0.0,3 +84617,16,1.0,1,1.594860315322876,118,1.0,3 +84618,16,1.0,1,1.4828617572784424,119,1.0,3 +84619,16,1.0,1,1.385862946510315,120,1.0,3 +84620,16,1.0,1,1.447862148284912,121,1.0,3 +84621,16,0.0,1,1.182864785194397,122,0.0,3 +84622,16,1.0,1,1.3688632249832153,123,0.0,3 +84623,16,0.0,1,1.852856993675232,124,0.0,3 +84624,16,1.0,1,1.5788605213165283,125,1.0,3 +84625,16,1.0,1,1.4118626117706299,126,1.0,3 +84626,16,1.0,1,1.1718647480010986,127,1.0,3 +84627,16,1.0,1,1.639859676361084,128,1.0,3 +84628,16,1.0,1,1.289864182472229,129,0.0,3 +84629,16,1.0,1,1.9998557567596436,130,0.0,3 +84630,16,1.0,1,1.9398558139801025,131,1.0,3 +84631,16,1.0,1,1.664859414100647,132,1.0,3 +84632,16,1.0,1,1.292864203453064,133,1.0,3 +84633,16,1.0,1,1.3088639974594116,134,1.0,3 +84634,16,1.0,1,1.263864517211914,135,1.0,3 +84635,16,1.0,1,1.8158574104309082,136,1.0,3 +84636,16,1.0,1,1.1718647480010986,137,0.0,3 +84637,16,1.0,1,1.455862045288086,138,1.0,3 +84638,16,1.0,1,1.2728644609451294,139,0.0,3 +84639,16,1.0,1,1.212864875793457,140,1.0,3 +84640,16,1.0,1,1.5668606758117676,141,0.0,3 +84641,16,0.0,1,2.0128564834594727,142,0.0,3 +84642,16,0.0,1,1.7698581218719482,143,0.0,3 +84643,16,1.0,1,1.68385910987854,144,1.0,3 +84644,16,1.0,1,1.8588569164276123,145,1.0,3 +84645,16,1.0,1,1.2838642597198486,146,0.0,3 +84646,16,1.0,1,2.120861530303955,147,0.0,3 +84647,16,0.0,1,1.4008628129959106,148,0.0,3 +84648,16,0.0,1,1.8118574619293213,149,0.0,3 +84649,16,1.0,1,2.131861925125122,150,1.0,3 +84650,16,1.0,1,1.2348648309707642,151,1.0,3 +84651,16,1.0,1,1.455862045288086,152,1.0,3 +84652,16,1.0,1,1.4858616590499878,153,1.0,3 +84653,16,1.0,1,1.2748644351959229,154,1.0,3 +84654,16,0.0,1,1.1248645782470703,155,0.0,3 +84655,16,1.0,1,1.5358610153198242,156,1.0,3 +84656,16,1.0,1,1.3128639459609985,157,0.0,3 +84657,16,0.0,1,1.310863971710205,158,0.0,3 +84658,16,1.0,1,1.547860860824585,159,1.0,3 +84659,16,1.0,1,1.3648632764816284,160,1.0,3 +84660,16,0.0,1,2.084859848022461,161,1.0,3 +84661,16,1.0,1,1.1948647499084473,162,0.0,3 +84662,16,0.0,1,1.2188647985458374,163,1.0,3 +84663,16,0.0,1,1.4888616800308228,164,1.0,3 +84664,16,0.0,1,1.4088627099990845,165,1.0,3 +84665,16,0.0,1,1.213864803314209,166,0.0,3 +84666,16,0.0,1,1.638859748840332,167,0.0,3 +84667,16,1.0,1,1.3658632040023804,168,1.0,3 +84668,16,1.0,1,1.8078575134277344,169,1.0,3 +84669,16,1.0,1,1.3348636627197266,170,1.0,3 +84670,16,1.0,1,1.7618582248687744,171,1.0,3 +84671,16,1.0,1,1.3178638219833374,172,1.0,3 +84672,16,1.0,1,1.5738606452941895,173,0.0,3 +84673,16,0.0,1,1.5358610153198242,174,0.0,3 +84674,16,1.0,1,2.1858644485473633,175,1.0,3 +84675,16,1.0,1,1.3068640232086182,176,1.0,3 +84676,16,1.0,1,2.084859848022461,177,0.0,3 +84677,16,0.0,1,1.5268611907958984,178,0.0,3 +84678,16,0.0,1,1.5188612937927246,179,0.0,3 +84679,16,1.0,1,1.7288585901260376,180,1.0,3 +84680,16,1.0,1,1.1778647899627686,181,1.0,3 +84681,16,1.0,1,2.2968697547912598,182,1.0,3 +84682,16,1.0,1,1.5548608303070068,183,1.0,3 +84683,16,1.0,1,1.7998576164245605,184,1.0,3 +84684,16,1.0,1,1.2948641777038574,185,1.0,3 +84685,16,1.0,1,1.33686363697052,186,1.0,3 +84686,16,1.0,1,1.5258612632751465,187,1.0,3 +84687,16,1.0,1,1.3718631267547607,188,1.0,3 +84688,16,1.0,1,1.7458584308624268,189,1.0,3 +84689,16,1.0,1,1.340863585472107,190,1.0,3 +84690,16,1.0,1,1.1418646574020386,191,1.0,3 +84691,16,1.0,1,1.4918615818023682,192,1.0,3 +84692,16,1.0,1,1.4278624057769775,193,0.0,3 +84693,16,0.0,1,1.7118587493896484,194,0.0,3 +84694,16,0.0,1,1.3508634567260742,195,0.0,3 +84695,16,1.0,1,1.4318623542785645,196,1.0,3 +84696,16,1.0,1,1.458862066268921,197,0.0,3 +84697,16,1.0,1,1.5738606452941895,198,0.0,3 +84698,16,1.0,1,2.2908692359924316,199,1.0,3 +84699,16,1.0,1,1.2528647184371948,200,0.0,3 +84700,16,1.0,1,1.206864833831787,201,0.0,3 +84701,16,0.0,1,1.5628607273101807,202,0.0,3 +84702,16,1.0,1,1.2648645639419556,203,1.0,3 +84703,16,0.0,1,1.2868642807006836,204,0.0,3 +84704,16,1.0,1,1.2498646974563599,205,1.0,3 +84705,16,1.0,1,1.3498634099960327,206,1.0,3 +84706,16,1.0,1,1.267864465713501,207,1.0,3 +84707,16,1.0,1,1.332863688468933,208,1.0,3 +84708,16,1.0,1,1.263864517211914,209,1.0,3 +84709,16,1.0,1,1.4408622980117798,210,0.0,3 +84710,16,1.0,1,1.3318636417388916,211,1.0,3 +84711,16,1.0,1,1.3668632507324219,212,0.0,3 +84712,16,1.0,1,1.5868604183197021,213,1.0,3 +84713,16,1.0,1,1.1818647384643555,214,1.0,3 +84714,16,1.0,1,1.3878629207611084,215,1.0,3 +84715,16,1.0,1,1.2338649034500122,216,1.0,3 +84716,16,1.0,1,1.5188612937927246,217,0.0,3 +84717,16,1.0,1,1.7498583793640137,218,1.0,3 +84718,16,1.0,1,1.5668606758117676,219,0.0,3 +84719,16,0.0,1,1.5398609638214111,220,0.0,3 +84720,16,0.0,1,1.4348623752593994,221,0.0,3 +84721,16,1.0,1,1.641859769821167,222,0.0,3 +84722,16,0.0,1,1.71285879611969,223,0.0,3 +84723,16,0.0,1,1.3008641004562378,224,0.0,3 +84724,16,1.0,1,1.3798630237579346,225,0.0,3 +84725,16,1.0,1,1.4858616590499878,226,1.0,3 +84726,16,1.0,1,1.4348623752593994,227,1.0,3 +84727,16,0.0,1,1.267864465713501,228,0.0,3 +84728,16,1.0,1,1.3348636627197266,229,0.0,3 +84729,16,1.0,1,1.708858847618103,230,1.0,3 +84730,16,1.0,1,1.502861499786377,231,1.0,3 +84731,16,1.0,1,1.5278611183166504,232,0.0,3 +84732,16,0.0,1,1.4818617105484009,233,0.0,3 +84733,16,0.0,1,1.7198586463928223,234,0.0,3 +84734,16,0.0,1,1.6628594398498535,235,0.0,3 +84735,16,1.0,1,1.49886155128479,236,0.0,3 +84736,16,1.0,1,1.2188647985458374,237,1.0,3 +84737,16,1.0,1,1.5348610877990723,238,0.0,3 +84738,16,1.0,1,2.4368762969970703,239,1.0,3 +84739,16,1.0,1,1.2288649082183838,240,0.0,3 +84740,16,1.0,1,2.0168566703796387,241,0.0,3 +84741,16,0.0,1,2.140862464904785,242,0.0,3 +84742,16,1.0,1,1.503861427307129,243,1.0,3 +84743,16,0.0,1,1.568860650062561,244,0.0,3 +84744,16,0.0,1,1.183864712715149,245,0.0,3 +84745,16,1.0,1,1.2288649082183838,246,0.0,3 +84746,16,0.0,1,1.263864517211914,247,0.0,3 +84747,16,1.0,1,1.6098601818084717,248,0.0,3 +84748,16,0.0,1,1.8138575553894043,249,0.0,3 +84749,16,1.0,1,1.9048563241958618,250,1.0,3 +84750,16,1.0,1,1.4308624267578125,251,0.0,3 +84751,16,1.0,1,1.844857096672058,252,0.0,3 +84752,16,0.0,1,1.4498621225357056,253,1.0,3 +84753,16,0.0,1,2.109860897064209,254,1.0,3 +84754,16,0.0,1,1.3688632249832153,255,0.0,3 +84755,16,0.0,1,1.8638567924499512,256,0.0,3 +84756,16,0.0,1,1.6958589553833008,257,1.0,3 +84757,16,0.0,1,1.2238647937774658,258,0.0,3 +84758,16,0.0,1,2.118861198425293,259,1.0,3 +84759,16,0.0,1,1.0908645391464233,260,1.0,3 +84760,16,0.0,1,1.1638647317886353,261,0.0,3 +84761,16,1.0,1,1.3878629207611084,262,0.0,3 +84762,16,0.0,1,1.5358610153198242,263,1.0,3 +84763,16,0.0,1,1.4358623027801514,264,0.0,3 +84764,16,1.0,1,1.1718647480010986,265,0.0,3 +84765,16,1.0,1,1.922856092453003,266,0.0,3 +84766,16,0.0,1,2.0498580932617188,267,0.0,3 +84767,16,1.0,1,1.8028576374053955,268,1.0,3 +84768,16,1.0,1,1.244864821434021,269,1.0,3 +84769,16,1.0,1,1.3388636112213135,270,0.0,3 +84770,16,0.0,1,1.3688632249832153,271,0.0,3 +84771,16,0.0,1,2.0558583736419678,272,0.0,3 +84772,16,1.0,1,1.1378647089004517,273,1.0,3 +84773,16,1.0,1,1.6268599033355713,274,1.0,3 +84774,16,1.0,1,1.2548646926879883,275,0.0,3 +84775,16,1.0,1,2.10386061668396,276,1.0,3 +84776,16,1.0,1,1.472861886024475,277,1.0,3 +84777,16,1.0,1,1.8148574829101562,278,1.0,3 +84778,16,1.0,1,1.173864722251892,279,0.0,3 +84779,16,0.0,1,1.2828643321990967,280,1.0,3 +84780,16,0.0,1,1.262864589691162,281,0.0,3 +84781,16,0.0,1,1.9438557624816895,282,0.0,3 +84782,16,1.0,1,1.1978647708892822,283,1.0,3 +84783,16,0.0,1,1.0668644905090332,284,0.0,3 +84784,16,1.0,1,1.3468635082244873,285,0.0,3 +84785,16,1.0,1,1.2118648290634155,286,0.0,3 +84786,16,0.0,1,1.1398646831512451,287,1.0,3 +84787,16,0.0,1,1.2348648309707642,288,1.0,3 +84788,16,0.0,1,1.0968645811080933,289,0.0,3 +84789,16,0.0,1,1.7138588428497314,290,0.0,3 +84790,16,0.0,1,1.1888647079467773,291,1.0,3 +84791,16,0.0,1,1.1388646364212036,292,1.0,3 +84792,16,0.0,1,1.0628645420074463,293,0.0,3 +84793,16,1.0,1,1.5388610363006592,294,1.0,3 +84794,16,1.0,1,1.4438621997833252,295,1.0,3 +84795,16,1.0,1,1.869856834411621,296,1.0,3 +84796,16,1.0,1,1.8628568649291992,297,0.0,3 +84797,16,0.0,1,1.7248586416244507,298,0.0,3 +84798,16,0.0,1,1.5418610572814941,299,0.0,3 +84799,16,0.0,1,2.1688637733459473,300,1.0,3 +84800,16,0.0,1,1.5598607063293457,301,0.0,3 +84801,16,1.0,1,1.2758643627166748,302,1.0,3 +84802,16,1.0,1,2.0358574390411377,303,1.0,3 +84803,16,1.0,1,1.3688632249832153,304,1.0,3 +84804,16,1.0,1,1.3488634824752808,305,1.0,3 +84805,16,1.0,1,1.402862787246704,306,1.0,3 +84806,16,1.0,1,1.473861813545227,307,1.0,3 +84807,16,1.0,1,1.6068601608276367,308,1.0,3 +84808,16,1.0,1,1.5718605518341064,309,1.0,3 +84809,16,1.0,1,1.5388610363006592,310,1.0,3 +84810,16,0.0,1,1.3568633794784546,311,0.0,3 +84811,16,1.0,1,1.825857400894165,312,1.0,3 +84812,16,1.0,1,1.3298636674880981,313,1.0,3 +84813,16,1.0,1,1.7018589973449707,314,1.0,3 +84814,16,1.0,1,1.2838642597198486,315,1.0,3 +84815,16,1.0,1,1.2578645944595337,316,1.0,3 +84816,16,1.0,1,1.2088648080825806,317,1.0,3 +84817,16,1.0,1,1.1918647289276123,318,1.0,3 +84818,16,1.0,1,1.1648647785186768,319,0.0,3 +84819,16,0.0,1,1.7118587493896484,320,0.0,3 +84820,16,0.0,1,1.206864833831787,321,0.0,3 +84821,16,1.0,1,1.2208647727966309,322,0.0,3 +84822,16,0.0,1,1.1358646154403687,323,1.0,3 +84823,16,0.0,1,1.5558607578277588,324,0.0,3 +84824,16,1.0,1,1.7418584823608398,325,1.0,3 +84825,16,1.0,1,1.2528647184371948,326,1.0,3 +84826,16,1.0,1,1.3668632507324219,327,1.0,3 +84827,16,0.0,1,1.2658644914627075,328,0.0,3 +84828,16,1.0,1,1.3398635387420654,329,1.0,3 +84829,16,1.0,1,1.5148613452911377,330,1.0,3 +84830,16,1.0,1,1.7168587446212769,331,0.0,3 +84831,16,1.0,1,1.406862735748291,332,1.0,3 +84832,16,1.0,1,1.4058626890182495,333,1.0,3 +84833,16,1.0,1,1.4408622980117798,334,0.0,3 +84834,16,1.0,1,1.5928603410720825,335,1.0,3 +84835,16,1.0,1,1.6668593883514404,336,0.0,3 +84836,16,0.0,1,2.5118796825408936,337,1.0,3 +84837,16,0.0,1,1.262864589691162,338,0.0,3 +84838,16,0.0,1,1.4928616285324097,339,1.0,3 +84839,16,0.0,1,1.4468622207641602,340,1.0,3 +84840,16,0.0,1,1.2318648099899292,341,1.0,3 +84841,16,0.0,1,1.1618647575378418,342,0.0,3 +84842,16,0.0,1,2.4428763389587402,343,0.0,3 +84843,16,0.0,1,2.612884521484375,344,0.0,3 +84844,16,0.0,1,1.7398583889007568,345,0.0,3 +84845,16,1.0,1,1.7898578643798828,346,1.0,3 +84846,16,1.0,1,1.612860083580017,347,0.0,3 +84847,16,0.0,1,1.337863564491272,348,1.0,3 +84848,16,1.0,1,1.3288637399673462,349,1.0,3 +84849,16,0.0,1,1.7418584823608398,350,0.0,3 +84850,16,1.0,1,1.35986328125,351,1.0,3 +84851,16,1.0,1,2.4678776264190674,352,0.0,3 +84852,16,0.0,1,2.142862319946289,353,0.0,3 +84853,16,1.0,1,1.8078575134277344,354,1.0,3 +84854,16,1.0,1,1.210864782333374,355,1.0,3 +84855,16,1.0,1,1.8288573026657104,356,1.0,3 +84856,16,1.0,1,1.848857045173645,357,1.0,3 +84857,16,1.0,1,1.3578633069992065,358,1.0,3 +84858,16,1.0,1,1.458862066268921,359,1.0,3 +84859,16,1.0,1,1.8688567876815796,360,0.0,3 +84860,16,1.0,1,1.5268611907958984,361,1.0,3 +84861,16,1.0,1,1.6148600578308105,362,1.0,3 +84862,16,1.0,1,1.4448622465133667,363,0.0,3 +84863,16,1.0,1,2.413875102996826,364,1.0,3 +84864,16,0.0,1,2.1758639812469482,365,0.0,3 +84865,16,1.0,1,1.2328648567199707,366,0.0,3 +84866,16,1.0,1,1.6998589038848877,367,1.0,3 +84867,16,1.0,1,1.4148626327514648,368,0.0,3 +84868,16,1.0,1,1.0688645839691162,369,0.0,3 +84869,16,0.0,1,1.5928603410720825,370,1.0,3 +84870,16,0.0,1,1.2608646154403687,371,0.0,3 +84871,16,0.0,1,1.428862452507019,372,0.0,3 +84872,16,1.0,1,1.5328611135482788,373,1.0,3 +84873,16,1.0,1,1.2318648099899292,374,1.0,3 +84874,16,1.0,1,1.7648581266403198,375,1.0,3 +84875,16,1.0,1,1.3488634824752808,376,0.0,3 +84876,16,1.0,1,1.5168613195419312,377,1.0,3 +84877,16,1.0,1,1.185864806175232,378,1.0,3 +84878,16,1.0,1,1.5068614482879639,379,1.0,3 +84879,16,1.0,1,1.4828617572784424,380,1.0,3 +84880,16,1.0,1,1.3438634872436523,381,0.0,3 +84881,16,1.0,1,1.4848617315292358,382,0.0,3 +84882,16,1.0,1,1.3978627920150757,383,0.0,3 +84883,16,1.0,1,2.162863254547119,384,0.0,3 +84884,16,1.0,1,1.2268648147583008,385,0.0,3 +84885,16,0.0,1,1.5238611698150635,386,0.0,3 +84886,16,0.0,1,1.4048627614974976,387,1.0,3 +84887,16,0.0,1,1.1078646183013916,388,0.0,3 +84888,16,1.0,1,2.0008559226989746,389,1.0,3 +84889,16,1.0,1,1.2248648405075073,390,1.0,3 +84890,16,1.0,1,1.8598568439483643,391,0.0,3 +84891,16,0.0,1,2.078859329223633,392,0.0,3 +84892,16,1.0,1,1.7368584871292114,393,1.0,3 +84893,16,1.0,1,1.3128639459609985,394,1.0,3 +84894,16,1.0,1,1.204864740371704,395,1.0,3 +84895,16,1.0,1,1.10686457157135,396,1.0,3 +84896,16,1.0,1,1.314863920211792,397,1.0,3 +84897,16,1.0,1,1.204864740371704,398,1.0,3 +84898,16,1.0,1,1.8878564834594727,399,1.0,3 +84899,16,1.0,1,1.2498646974563599,400,1.0,3 +84900,16,1.0,1,1.2868642807006836,401,1.0,3 +84901,16,1.0,1,2.0098562240600586,402,1.0,3 +84902,16,1.0,1,1.3678631782531738,403,0.0,3 +84903,16,0.0,1,1.6798591613769531,404,1.0,3 +84904,16,0.0,1,1.2468647956848145,405,1.0,3 +84905,16,0.0,1,1.0728645324707031,406,1.0,3 +84906,16,0.0,1,1.1978647708892822,407,1.0,3 +84907,16,0.0,1,1.3258637189865112,408,0.0,3 +84908,16,1.0,1,1.3288637399673462,409,0.0,3 +84909,16,0.0,1,1.7438583374023438,410,0.0,3 +84910,16,1.0,1,1.140864610671997,411,1.0,3 +84911,16,1.0,1,1.2618645429611206,412,1.0,3 +84912,16,1.0,1,1.3428635597229004,413,1.0,3 +84913,16,1.0,1,1.2248648405075073,414,1.0,3 +84914,16,1.0,1,1.6538596153259277,415,1.0,3 +84915,16,1.0,1,1.2738643884658813,416,0.0,3 +84916,16,0.0,1,1.4878616333007812,417,1.0,3 +84917,16,0.0,1,1.5548608303070068,418,0.0,3 +84918,16,1.0,1,1.3018640279769897,419,1.0,3 +84919,16,1.0,1,1.3088639974594116,420,1.0,3 +84920,16,1.0,1,1.6488596200942993,421,1.0,3 +84921,16,1.0,1,1.6298599243164062,422,1.0,3 +84922,16,1.0,1,1.4838616847991943,423,1.0,3 +84923,16,0.0,1,1.1588647365570068,424,1.0,3 +84924,16,1.0,1,2.2158658504486084,425,0.0,3 +84925,16,0.0,1,2.324871063232422,426,1.0,3 +84926,16,0.0,1,1.99085533618927,427,0.0,3 +84927,16,1.0,1,1.3878629207611084,428,1.0,3 +84928,16,1.0,1,1.779857873916626,429,1.0,3 +84929,16,1.0,1,1.5148613452911377,430,1.0,3 +84930,16,1.0,1,1.2918641567230225,431,1.0,3 +84931,16,1.0,1,1.4268624782562256,432,1.0,3 +84932,16,1.0,1,1.428862452507019,433,0.0,3 +84933,16,1.0,1,1.4238624572753906,434,1.0,3 +84934,16,1.0,1,1.68385910987854,435,1.0,3 +84935,16,1.0,1,1.2988641262054443,436,0.0,3 +84936,16,0.0,1,2.5038793087005615,437,1.0,3 +84937,16,1.0,1,1.7808579206466675,438,1.0,3 +84938,16,0.0,1,1.3508634567260742,439,0.0,3 +84939,16,1.0,1,1.473861813545227,440,1.0,3 +84940,16,1.0,1,1.7218587398529053,441,1.0,3 +84941,16,1.0,1,2.1918647289276123,442,0.0,3 +84942,16,1.0,1,1.2948641777038574,443,1.0,3 +84943,16,0.0,1,1.173864722251892,444,1.0,3 +84944,16,0.0,1,1.5328611135482788,445,1.0,3 +84945,16,1.0,1,1.9468557834625244,446,1.0,3 +84946,16,1.0,1,2.410874843597412,447,0.0,3 +84947,16,0.0,1,1.292864203453064,448,0.0,3 +84948,16,1.0,1,1.4208625555038452,449,1.0,3 +84949,16,1.0,1,1.5388610363006592,450,0.0,3 +84950,16,1.0,1,1.9038562774658203,451,1.0,3 +84951,16,1.0,1,1.7078588008880615,452,0.0,3 +84952,16,0.0,1,1.8428571224212646,453,0.0,3 +84953,16,1.0,1,1.5788605213165283,454,1.0,3 +84954,16,1.0,1,1.3518633842468262,455,0.0,3 +84955,16,1.0,1,1.5578608512878418,456,0.0,3 +84956,16,1.0,1,1.2428648471832275,457,0.0,3 +84957,16,1.0,1,1.4428622722625732,458,1.0,3 +84958,16,1.0,1,1.3698631525039673,459,1.0,3 +84959,16,0.0,1,1.3868629932403564,460,1.0,3 +84960,16,0.0,1,1.2118648290634155,461,1.0,3 +84961,16,0.0,1,2.170863628387451,462,0.0,3 +84962,16,0.0,1,1.1618647575378418,463,0.0,3 +84963,16,1.0,1,1.5128613710403442,464,1.0,3 +84964,16,1.0,1,1.3258637189865112,465,0.0,3 +84965,16,1.0,1,1.827857255935669,466,0.0,3 +84966,16,0.0,1,1.2318648099899292,467,1.0,3 +84967,16,0.0,1,1.7078588008880615,468,0.0,3 +84968,16,0.0,1,1.1448646783828735,469,1.0,3 +84969,16,0.0,1,1.1668647527694702,470,0.0,3 +84970,16,0.0,1,1.4178625345230103,471,1.0,3 +84971,16,0.0,1,1.1708647012710571,472,0.0,3 +84972,16,0.0,1,1.7078588008880615,473,1.0,3 +84973,16,0.0,1,1.1978647708892822,474,0.0,3 +84974,16,0.0,1,1.2958641052246094,475,0.0,3 +84975,16,0.0,1,1.2328648567199707,476,0.0,3 +84976,16,0.0,1,1.109864592552185,477,0.0,3 +84977,16,1.0,1,1.2598645687103271,478,1.0,3 +84978,16,1.0,1,1.2318648099899292,479,1.0,3 +84979,16,1.0,1,1.1578646898269653,480,0.0,3 +84980,16,0.0,1,1.962855577468872,481,0.0,3 +84981,16,1.0,1,1.7728580236434937,482,1.0,3 +84982,16,1.0,1,1.3608633279800415,483,1.0,3 +84983,16,1.0,1,1.1968648433685303,484,1.0,3 +84984,16,1.0,1,1.6048601865768433,485,0.0,3 +84985,16,0.0,1,2.415875196456909,486,0.0,3 +84986,16,1.0,1,1.1938648223876953,487,1.0,3 +84987,16,1.0,1,1.1698647737503052,488,1.0,3 +84988,16,1.0,1,1.6118600368499756,489,0.0,3 +84989,16,1.0,1,1.5538609027862549,490,0.0,3 +84990,16,0.0,1,1.2828643321990967,491,1.0,3 +84991,16,0.0,1,1.210864782333374,492,1.0,3 +84992,16,0.0,1,1.219864845275879,493,1.0,3 +84993,16,0.0,1,1.2998640537261963,494,1.0,3 +84994,16,0.0,1,1.7478582859039307,495,0.0,3 +84995,16,1.0,1,1.8128575086593628,496,1.0,3 +84996,16,1.0,1,1.2308648824691772,497,0.0,3 +84997,16,1.0,1,1.7658581733703613,498,1.0,3 +84998,16,1.0,1,1.5858604907989502,499,1.0,3 +84999,16,1.0,1,1.2428648471832275,500,0.0,3 +85000,16,0.0,2,2.339871644973755,1,0.0,3 +85001,16,1.0,2,1.3648632764816284,2,1.0,3 +85002,16,1.0,2,1.3088639974594116,3,1.0,3 +85003,16,1.0,2,1.2618645429611206,4,1.0,3 +85004,16,1.0,2,1.6028602123260498,5,0.0,3 +85005,16,0.0,2,1.3228638172149658,6,0.0,3 +85006,16,0.0,2,1.179864764213562,7,0.0,3 +85007,16,0.0,2,1.4418622255325317,8,1.0,3 +85008,16,0.0,2,1.1728646755218506,9,1.0,3 +85009,16,0.0,2,1.0958645343780518,10,1.0,3 +85010,16,0.0,2,1.173864722251892,11,0.0,3 +85011,16,0.0,2,1.270864486694336,12,0.0,3 +85012,16,1.0,2,1.5418610572814941,13,0.0,3 +85013,16,1.0,2,1.1818647384643555,14,0.0,3 +85014,16,1.0,2,2.0418577194213867,15,0.0,3 +85015,16,0.0,2,1.245864748954773,16,1.0,3 +85016,16,0.0,2,1.55086088180542,17,0.0,3 +85017,16,0.0,2,1.182864785194397,18,1.0,3 +85018,16,0.0,2,1.410862684249878,19,1.0,3 +85019,16,0.0,2,1.402862787246704,20,0.0,3 +85020,16,0.0,2,1.8348572254180908,21,1.0,3 +85021,16,0.0,2,1.2018648386001587,22,1.0,3 +85022,16,0.0,2,1.9338560104370117,23,1.0,3 +85023,16,0.0,2,1.5568608045578003,24,0.0,3 +85024,16,1.0,2,1.5668606758117676,25,0.0,3 +85025,16,0.0,2,1.7478582859039307,26,1.0,3 +85026,16,0.0,2,1.4638619422912598,27,1.0,3 +85027,16,0.0,2,1.3488634824752808,28,1.0,3 +85028,16,0.0,2,1.1308646202087402,29,1.0,3 +85029,16,0.0,2,1.7258586883544922,30,1.0,3 +85030,16,0.0,2,1.1848647594451904,31,0.0,3 +85031,16,0.0,2,1.1888647079467773,32,0.0,3 +85032,16,0.0,2,1.6948590278625488,33,0.0,3 +85033,16,0.0,2,1.641859769821167,34,0.0,3 +85034,16,0.0,2,1.4938616752624512,35,0.0,3 +85035,16,0.0,2,1.9588556289672852,36,0.0,3 +85036,16,1.0,2,2.5198800563812256,37,1.0,3 +85037,16,1.0,2,1.3068640232086182,38,1.0,3 +85038,16,1.0,2,1.8078575134277344,39,1.0,3 +85039,16,1.0,2,1.33686363697052,40,1.0,3 +85040,16,1.0,2,1.4788618087768555,41,0.0,3 +85041,16,1.0,2,1.3798630237579346,42,1.0,3 +85042,16,1.0,2,1.598860263824463,43,1.0,3 +85043,16,1.0,2,1.3668632507324219,44,1.0,3 +85044,16,1.0,2,1.2688645124435425,45,1.0,3 +85045,16,1.0,2,1.3978627920150757,46,1.0,3 +85046,16,1.0,2,1.55086088180542,47,1.0,3 +85047,16,1.0,2,1.7548582553863525,48,0.0,3 +85048,16,0.0,2,2.364872932434082,49,1.0,3 +85049,16,0.0,2,1.293864130973816,50,1.0,3 +85050,16,0.0,2,1.140864610671997,51,0.0,3 +85051,16,0.0,2,2.34987211227417,52,0.0,3 +85052,16,0.0,2,1.823857307434082,53,0.0,3 +85053,16,0.0,2,1.2318648099899292,54,1.0,3 +85054,16,0.0,2,1.4398622512817383,55,1.0,3 +85055,16,0.0,2,1.871856689453125,56,0.0,3 +85056,16,1.0,2,1.7908577919006348,57,1.0,3 +85057,16,1.0,2,1.1348646879196167,58,0.0,3 +85058,16,0.0,2,1.9108562469482422,59,0.0,3 +85059,16,1.0,2,2.596883773803711,60,0.0,3 +85060,16,1.0,2,2.157863140106201,61,1.0,3 +85061,16,1.0,2,1.3238637447357178,62,0.0,3 +85062,16,1.0,2,1.6578595638275146,63,1.0,3 +85063,16,1.0,2,1.5848604440689087,64,0.0,3 +85064,16,0.0,2,1.5558607578277588,65,1.0,3 +85065,16,0.0,2,1.2088648080825806,66,0.0,3 +85066,16,1.0,2,1.6368597745895386,67,1.0,3 +85067,16,1.0,2,1.7288585901260376,68,0.0,3 +85068,16,0.0,2,1.8108575344085693,69,1.0,3 +85069,16,0.0,2,1.5748605728149414,70,0.0,3 +85070,16,1.0,2,1.852856993675232,71,1.0,3 +85071,16,1.0,2,2.156863212585449,72,1.0,3 +85072,16,0.0,2,2.115861177444458,73,1.0,3 +85073,16,0.0,2,1.3938628435134888,74,0.0,3 +85074,16,1.0,2,1.3198637962341309,75,1.0,3 +85075,16,1.0,2,1.8248573541641235,76,1.0,3 +85076,16,1.0,2,1.682859182357788,77,0.0,3 +85077,16,1.0,2,2.0558583736419678,78,0.0,3 +85078,16,1.0,2,1.3068640232086182,79,0.0,3 +85079,16,0.0,2,1.3778630495071411,80,0.0,3 +85080,16,0.0,2,1.477861762046814,81,1.0,3 +85081,16,0.0,2,1.1478646993637085,82,0.0,3 +85082,16,1.0,2,1.7208586931228638,83,0.0,3 +85083,16,0.0,2,1.635859727859497,84,1.0,3 +85084,16,0.0,2,1.3928629159927368,85,0.0,3 +85085,16,0.0,2,1.4858616590499878,86,0.0,3 +85086,16,0.0,2,1.6448596715927124,87,0.0,3 +85087,16,1.0,2,1.4688619375228882,88,1.0,3 +85088,16,1.0,2,1.407862663269043,89,1.0,3 +85089,16,1.0,2,1.240864872932434,90,0.0,3 +85090,16,1.0,2,1.1778647899627686,91,0.0,3 +85091,16,1.0,2,1.2278648614883423,92,1.0,3 +85092,16,1.0,2,2.112861156463623,93,1.0,3 +85093,16,1.0,2,1.311863899230957,94,1.0,3 +85094,16,1.0,2,1.3698631525039673,95,0.0,3 +85095,16,0.0,2,1.9838552474975586,96,0.0,3 +85096,16,0.0,2,2.097860336303711,97,1.0,3 +85097,16,0.0,2,1.3018640279769897,98,1.0,3 +85098,16,0.0,2,1.2508647441864014,99,0.0,3 +85099,16,0.0,2,1.183864712715149,100,0.0,3 +85100,16,1.0,2,1.3778630495071411,101,1.0,3 +85101,16,1.0,2,2.4288759231567383,102,1.0,3 +85102,16,1.0,2,1.4238624572753906,103,0.0,3 +85103,16,1.0,2,1.3478634357452393,104,1.0,3 +85104,16,1.0,2,1.635859727859497,105,0.0,3 +85105,16,1.0,2,2.0258569717407227,106,1.0,3 +85106,16,1.0,2,1.2288649082183838,107,0.0,3 +85107,16,0.0,2,1.8368571996688843,108,1.0,3 +85108,16,0.0,2,1.380863070487976,109,0.0,3 +85109,16,1.0,2,1.5998601913452148,110,0.0,3 +85110,16,1.0,2,1.33686363697052,111,0.0,3 +85111,16,0.0,2,1.1758646965026855,112,1.0,3 +85112,16,0.0,2,1.3518633842468262,113,1.0,3 +85113,16,0.0,2,1.2008647918701172,114,1.0,3 +85114,16,0.0,2,1.731858491897583,115,0.0,3 +85115,16,0.0,2,1.1378647089004517,116,0.0,3 +85116,16,1.0,2,1.3288637399673462,117,1.0,3 +85117,16,1.0,2,1.8618569374084473,118,0.0,3 +85118,16,1.0,2,1.5928603410720825,119,1.0,3 +85119,16,1.0,2,1.6688593626022339,120,1.0,3 +85120,16,1.0,2,1.207864761352539,121,1.0,3 +85121,16,1.0,2,1.2238647937774658,122,1.0,3 +85122,16,1.0,2,1.3648632764816284,123,0.0,3 +85123,16,1.0,2,1.2838642597198486,124,0.0,3 +85124,16,1.0,2,1.8998563289642334,125,1.0,3 +85125,16,1.0,2,2.2448673248291016,126,0.0,3 +85126,16,1.0,2,1.4218624830245972,127,0.0,3 +85127,16,1.0,2,1.7948577404022217,128,0.0,3 +85128,16,1.0,2,1.4668619632720947,129,1.0,3 +85129,16,1.0,2,1.6928590536117554,130,0.0,3 +85130,16,0.0,2,1.2218648195266724,131,1.0,3 +85131,16,0.0,2,1.1648647785186768,132,0.0,3 +85132,16,0.0,2,1.8908565044403076,133,1.0,3 +85133,16,0.0,2,1.2588646411895752,134,0.0,3 +85134,16,0.0,2,1.5708606243133545,135,0.0,3 +85135,16,0.0,2,1.7948577404022217,136,0.0,3 +85136,16,0.0,2,1.752858281135559,137,1.0,3 +85137,16,0.0,2,1.4378622770309448,138,1.0,3 +85138,16,0.0,2,1.3298636674880981,139,0.0,3 +85139,16,0.0,2,1.262864589691162,140,0.0,3 +85140,16,0.0,2,2.111860990524292,141,0.0,3 +85141,16,0.0,2,1.708858847618103,142,0.0,3 +85142,16,1.0,2,1.734858512878418,143,0.0,3 +85143,16,0.0,2,1.7468583583831787,144,0.0,3 +85144,16,1.0,2,1.6658594608306885,145,1.0,3 +85145,16,1.0,2,1.140864610671997,146,0.0,3 +85146,16,1.0,2,1.5928603410720825,147,1.0,3 +85147,16,1.0,2,1.266864538192749,148,0.0,3 +85148,16,0.0,2,1.6448596715927124,149,1.0,3 +85149,16,0.0,2,1.315863847732544,150,1.0,3 +85150,16,0.0,2,1.664859414100647,151,0.0,3 +85151,16,0.0,2,1.8458571434020996,152,1.0,3 +85152,16,0.0,2,1.2258648872375488,153,1.0,3 +85153,16,0.0,2,1.3288637399673462,154,0.0,3 +85154,16,0.0,2,1.6098601818084717,155,0.0,3 +85155,16,0.0,2,1.8128575086593628,156,0.0,3 +85156,16,1.0,2,1.775857925415039,157,1.0,3 +85157,16,1.0,2,1.781857967376709,158,1.0,3 +85158,16,1.0,2,1.1388646364212036,159,1.0,3 +85159,16,1.0,2,2.096860408782959,160,1.0,3 +85160,16,1.0,2,1.5048614740371704,161,1.0,3 +85161,16,1.0,2,1.3958628177642822,162,0.0,3 +85162,16,0.0,2,1.781857967376709,163,1.0,3 +85163,16,0.0,2,1.6408597230911255,164,1.0,3 +85164,16,0.0,2,1.4438621997833252,165,0.0,3 +85165,16,1.0,2,1.5568608045578003,166,0.0,3 +85166,16,0.0,2,1.7708580493927002,167,0.0,3 +85167,16,0.0,2,2.323870897293091,168,1.0,3 +85168,16,0.0,2,1.1758646965026855,169,1.0,3 +85169,16,0.0,2,1.179864764213562,170,1.0,3 +85170,16,0.0,2,1.2868642807006836,171,1.0,3 +85171,16,0.0,2,1.729858636856079,172,0.0,3 +85172,16,1.0,2,1.5048614740371704,173,0.0,3 +85173,16,0.0,2,1.3908629417419434,174,0.0,3 +85174,16,0.0,2,1.385862946510315,175,1.0,3 +85175,16,0.0,2,1.2258648872375488,176,0.0,3 +85176,16,1.0,2,2.0178565979003906,177,0.0,3 +85177,16,1.0,2,1.4618619680404663,178,0.0,3 +85178,16,1.0,2,1.8998563289642334,179,1.0,3 +85179,16,1.0,2,1.1178646087646484,180,1.0,3 +85180,16,1.0,2,1.216864824295044,181,1.0,3 +85181,16,1.0,2,1.4788618087768555,182,0.0,3 +85182,16,1.0,2,1.6538596153259277,183,0.0,3 +85183,16,0.0,2,1.403862714767456,184,1.0,3 +85184,16,0.0,2,1.3708631992340088,185,1.0,3 +85185,16,0.0,2,1.1868647336959839,186,0.0,3 +85186,16,1.0,2,1.9548556804656982,187,0.0,3 +85187,16,1.0,2,1.5648607015609741,188,1.0,3 +85188,16,1.0,2,1.332863688468933,189,1.0,3 +85189,16,1.0,2,1.9518556594848633,190,0.0,3 +85190,16,0.0,2,1.245864748954773,191,0.0,3 +85191,16,0.0,2,2.067858934402466,192,1.0,3 +85192,16,0.0,2,1.362863302230835,193,0.0,3 +85193,16,1.0,2,1.7048588991165161,194,0.0,3 +85194,16,0.0,2,1.4678618907928467,195,1.0,3 +85195,16,0.0,2,1.3508634567260742,196,0.0,3 +85196,16,0.0,2,2.118861198425293,197,0.0,3 +85197,16,0.0,2,1.635859727859497,198,0.0,3 +85198,16,1.0,2,1.3468635082244873,199,0.0,3 +85199,16,1.0,2,1.3648632764816284,200,1.0,3 +85200,16,1.0,2,1.5238611698150635,201,0.0,3 +85201,16,1.0,2,1.5118613243103027,202,0.0,3 +85202,16,1.0,2,1.572860598564148,203,0.0,3 +85203,16,1.0,2,1.8438570499420166,204,0.0,3 +85204,16,0.0,2,2.0318572521209717,205,1.0,3 +85205,16,0.0,2,1.3868629932403564,206,0.0,3 +85206,16,0.0,2,1.8088575601577759,207,0.0,3 +85207,16,1.0,2,1.8498570919036865,208,0.0,3 +85208,16,1.0,2,1.1518646478652954,209,0.0,3 +85209,16,0.0,2,1.2808643579483032,210,1.0,3 +85210,16,0.0,2,1.2378648519515991,211,0.0,3 +85211,16,0.0,2,1.473861813545227,212,0.0,3 +85212,16,1.0,2,1.9748554229736328,213,0.0,3 +85213,16,1.0,2,2.0378575325012207,214,1.0,3 +85214,16,1.0,2,1.213864803314209,215,1.0,3 +85215,16,1.0,2,1.966855525970459,216,1.0,3 +85216,16,1.0,2,1.2568646669387817,217,0.0,3 +85217,16,0.0,2,1.3028640747070312,218,0.0,3 +85218,16,1.0,2,1.4578620195388794,219,1.0,3 +85219,16,1.0,2,1.6638593673706055,220,0.0,3 +85220,16,0.0,2,1.9058563709259033,221,1.0,3 +85221,16,0.0,2,1.3568633794784546,222,0.0,3 +85222,16,1.0,2,1.1748647689819336,223,0.0,3 +85223,16,0.0,2,1.4878616333007812,224,1.0,3 +85224,16,0.0,2,1.2388648986816406,225,0.0,3 +85225,16,1.0,2,2.071859121322632,226,1.0,3 +85226,16,1.0,2,1.1108646392822266,227,0.0,3 +85227,16,0.0,2,1.4278624057769775,228,1.0,3 +85228,16,0.0,2,2.2338666915893555,229,1.0,3 +85229,16,0.0,2,1.635859727859497,230,1.0,3 +85230,16,0.0,2,1.2848643064498901,231,0.0,3 +85231,16,1.0,2,1.6158599853515625,232,0.0,3 +85232,16,0.0,2,1.6118600368499756,233,0.0,3 +85233,16,1.0,2,1.3288637399673462,234,1.0,3 +85234,16,1.0,2,2.1818642616271973,235,1.0,3 +85235,16,1.0,2,1.38886296749115,236,0.0,3 +85236,16,1.0,2,1.5638606548309326,237,1.0,3 +85237,16,1.0,2,1.121864676475525,238,0.0,3 +85238,16,1.0,2,1.6568595170974731,239,1.0,3 +85239,16,1.0,2,2.0088562965393066,240,1.0,3 +85240,16,1.0,2,1.3768631219863892,241,1.0,3 +85241,16,1.0,2,1.1868647336959839,242,0.0,3 +85242,16,1.0,2,1.3788630962371826,243,1.0,3 +85243,16,1.0,2,1.0878645181655884,244,1.0,3 +85244,16,0.0,2,1.1638647317886353,245,0.0,3 +85245,16,1.0,2,1.3978627920150757,246,0.0,3 +85246,16,1.0,2,1.8338572978973389,247,0.0,3 +85247,16,0.0,2,1.4138625860214233,248,1.0,3 +85248,16,0.0,2,1.2758643627166748,249,0.0,3 +85249,16,1.0,2,1.38886296749115,250,0.0,3 +85250,16,0.0,2,1.9508557319641113,251,0.0,3 +85251,16,0.0,2,1.433862328529358,252,1.0,3 +85252,16,0.0,2,1.1168646812438965,253,0.0,3 +85253,16,1.0,2,1.5668606758117676,254,0.0,3 +85254,16,0.0,2,1.1728646755218506,255,1.0,3 +85255,16,0.0,2,1.8878564834594727,256,0.0,3 +85256,16,0.0,2,2.2428669929504395,257,0.0,3 +85257,16,0.0,2,1.5558607578277588,258,0.0,3 +85258,16,1.0,2,2.084859848022461,259,1.0,3 +85259,16,1.0,2,1.7048588991165161,260,1.0,3 +85260,16,1.0,2,1.3138638734817505,261,1.0,3 +85261,16,1.0,2,1.4628620147705078,262,1.0,3 +85262,16,1.0,2,1.1638647317886353,263,0.0,3 +85263,16,1.0,2,1.3278636932373047,264,1.0,3 +85264,16,1.0,2,1.2968641519546509,265,1.0,3 +85265,16,1.0,2,2.0028557777404785,266,1.0,3 +85266,16,1.0,2,1.210864782333374,267,0.0,3 +85267,16,0.0,2,1.2328648567199707,268,0.0,3 +85268,16,1.0,2,1.183864712715149,269,0.0,3 +85269,16,0.0,2,1.8068575859069824,270,1.0,3 +85270,16,0.0,2,1.5788605213165283,271,0.0,3 +85271,16,0.0,2,1.1588647365570068,272,1.0,3 +85272,16,0.0,2,1.219864845275879,273,0.0,3 +85273,16,0.0,2,1.310863971710205,274,1.0,3 +85274,16,0.0,2,1.6348598003387451,275,0.0,3 +85275,16,0.0,2,1.4628620147705078,276,1.0,3 +85276,16,0.0,2,1.2578645944595337,277,1.0,3 +85277,16,0.0,2,1.1988648176193237,278,0.0,3 +85278,16,1.0,2,2.2758686542510986,279,0.0,3 +85279,16,1.0,2,1.68985915184021,280,0.0,3 +85280,16,1.0,2,1.263864517211914,281,1.0,3 +85281,16,1.0,2,1.2328648567199707,282,0.0,3 +85282,16,1.0,2,1.285864233970642,283,0.0,3 +85283,16,1.0,2,2.095860242843628,284,0.0,3 +85284,16,0.0,2,1.3678631782531738,285,1.0,3 +85285,16,0.0,2,1.1478646993637085,286,0.0,3 +85286,16,1.0,2,1.5628607273101807,287,1.0,3 +85287,16,1.0,2,1.1648647785186768,288,1.0,3 +85288,16,1.0,2,1.2348648309707642,289,1.0,3 +85289,16,1.0,2,1.3658632040023804,290,0.0,3 +85290,16,0.0,2,1.4318623542785645,291,1.0,3 +85291,16,0.0,2,1.5808604955673218,292,0.0,3 +85292,16,0.0,2,1.4418622255325317,293,0.0,3 +85293,16,1.0,2,1.524861216545105,294,0.0,3 +85294,16,0.0,2,1.241864800453186,295,0.0,3 +85295,16,0.0,2,1.385862946510315,296,1.0,3 +85296,16,1.0,2,1.2658644914627075,297,0.0,3 +85297,16,0.0,2,1.7018589973449707,298,1.0,3 +85298,16,0.0,2,1.1568646430969238,299,1.0,3 +85299,16,0.0,2,1.4088627099990845,300,0.0,3 +85300,16,0.0,2,1.959855556488037,301,0.0,3 +85301,16,1.0,2,2.4508767127990723,302,1.0,3 +85302,16,1.0,2,1.6278598308563232,303,0.0,3 +85303,16,1.0,2,2.2868690490722656,304,1.0,3 +85304,16,1.0,2,1.5858604907989502,305,0.0,3 +85305,16,0.0,2,1.782857894897461,306,0.0,3 +85306,16,0.0,2,1.4618619680404663,307,0.0,3 +85307,16,1.0,2,1.3058639764785767,308,1.0,3 +85308,16,1.0,2,1.1518646478652954,309,0.0,3 +85309,16,1.0,2,1.8378572463989258,310,1.0,3 +85310,16,1.0,2,1.4488621950149536,311,1.0,3 +85311,16,1.0,2,1.3088639974594116,312,1.0,3 +85312,16,1.0,2,1.2018648386001587,313,1.0,3 +85313,16,1.0,2,1.8438570499420166,314,0.0,3 +85314,16,1.0,2,1.915856122970581,315,1.0,3 +85315,16,1.0,2,1.263864517211914,316,0.0,3 +85316,16,0.0,2,1.248864769935608,317,0.0,3 +85317,16,1.0,2,1.8178575038909912,318,1.0,3 +85318,16,1.0,2,1.4048627614974976,319,0.0,3 +85319,16,0.0,2,1.2948641777038574,320,1.0,3 +85320,16,0.0,2,1.5368610620498657,321,0.0,3 +85321,16,0.0,2,1.2178648710250854,322,0.0,3 +85322,16,1.0,2,1.867856740951538,323,1.0,3 +85323,16,1.0,2,1.2228648662567139,324,0.0,3 +85324,16,1.0,2,1.4628620147705078,325,0.0,3 +85325,16,0.0,2,1.914856195449829,326,0.0,3 +85326,16,0.0,2,1.5138614177703857,327,1.0,3 +85327,16,0.0,2,1.2478647232055664,328,0.0,3 +85328,16,1.0,2,2.052858352661133,329,1.0,3 +85329,16,1.0,2,1.288864254951477,330,0.0,3 +85330,16,1.0,2,1.730858564376831,331,0.0,3 +85331,16,1.0,2,1.9328559637069702,332,1.0,3 +85332,16,1.0,2,1.6318597793579102,333,1.0,3 +85333,16,1.0,2,1.3128639459609985,334,0.0,3 +85334,16,0.0,2,2.619884729385376,335,1.0,3 +85335,16,0.0,2,1.241864800453186,336,1.0,3 +85336,16,0.0,2,1.4128626585006714,337,0.0,3 +85337,16,0.0,2,1.3208638429641724,338,1.0,3 +85338,16,0.0,2,1.1178646087646484,339,0.0,3 +85339,16,0.0,2,1.33686363697052,340,1.0,3 +85340,16,0.0,2,1.2828643321990967,341,0.0,3 +85341,16,0.0,2,1.2528647184371948,342,1.0,3 +85342,16,0.0,2,1.9718554019927979,343,0.0,3 +85343,16,1.0,2,2.392874240875244,344,0.0,3 +85344,16,0.0,2,1.480861783027649,345,0.0,3 +85345,16,1.0,2,1.5298612117767334,346,1.0,3 +85346,16,1.0,2,1.244864821434021,347,0.0,3 +85347,16,1.0,2,1.4628620147705078,348,0.0,3 +85348,16,0.0,2,1.4678618907928467,349,1.0,3 +85349,16,0.0,2,1.1728646755218506,350,1.0,3 +85350,16,0.0,2,1.315863847732544,351,1.0,3 +85351,16,0.0,2,1.5758605003356934,352,1.0,3 +85352,16,0.0,2,1.6778593063354492,353,1.0,3 +85353,16,0.0,2,1.8558568954467773,354,0.0,3 +85354,16,1.0,2,2.10386061668396,355,1.0,3 +85355,16,0.0,2,1.458862066268921,356,1.0,3 +85356,16,0.0,2,1.5838603973388672,357,0.0,3 +85357,16,1.0,2,1.4968615770339966,358,0.0,3 +85358,16,1.0,2,2.142862319946289,359,0.0,3 +85359,16,1.0,2,1.9868552684783936,360,0.0,3 +85360,16,1.0,2,1.8438570499420166,361,1.0,3 +85361,16,1.0,2,1.612860083580017,362,0.0,3 +85362,16,0.0,2,1.783857822418213,363,0.0,3 +85363,16,1.0,2,1.311863899230957,364,0.0,3 +85364,16,0.0,2,2.2128658294677734,365,0.0,3 +85365,16,1.0,2,1.3468635082244873,366,1.0,3 +85366,16,1.0,2,1.6548595428466797,367,0.0,3 +85367,16,1.0,2,1.6738593578338623,368,0.0,3 +85368,16,0.0,2,2.082859516143799,369,0.0,3 +85369,16,1.0,2,1.5118613243103027,370,0.0,3 +85370,16,0.0,2,2.5618820190429688,371,0.0,3 +85371,16,0.0,2,1.9718554019927979,372,0.0,3 +85372,16,0.0,2,1.8068575859069824,373,0.0,3 +85373,16,1.0,2,1.4128626585006714,374,1.0,3 +85374,16,1.0,2,1.2338649034500122,375,0.0,3 +85375,16,0.0,2,2.2758686542510986,376,1.0,3 +85376,16,0.0,2,1.1568646430969238,377,0.0,3 +85377,16,1.0,2,1.1028646230697632,378,1.0,3 +85378,16,1.0,2,1.1658647060394287,379,1.0,3 +85379,16,1.0,2,1.433862328529358,380,1.0,3 +85380,16,1.0,2,1.642859697341919,381,1.0,3 +85381,16,1.0,2,1.6528595685958862,382,1.0,3 +85382,16,1.0,2,1.2918641567230225,383,0.0,3 +85383,16,0.0,2,1.1998647451400757,384,1.0,3 +85384,16,0.0,2,1.4528621435165405,385,0.0,3 +85385,16,0.0,2,1.7558581829071045,386,0.0,3 +85386,16,1.0,2,1.7058589458465576,387,1.0,3 +85387,16,1.0,2,1.7678580284118652,388,1.0,3 +85388,16,1.0,2,1.1108646392822266,389,0.0,3 +85389,16,1.0,2,1.4858616590499878,390,1.0,3 +85390,16,1.0,2,1.6448596715927124,391,1.0,3 +85391,16,1.0,2,1.7248586416244507,392,0.0,3 +85392,16,0.0,2,1.8558568954467773,393,0.0,3 +85393,16,1.0,2,2.111860990524292,394,0.0,3 +85394,16,1.0,2,1.3988628387451172,395,1.0,3 +85395,16,1.0,2,1.2218648195266724,396,1.0,3 +85396,16,1.0,2,1.1958647966384888,397,1.0,3 +85397,16,1.0,2,1.406862735748291,398,0.0,3 +85398,16,1.0,2,1.921856164932251,399,1.0,3 +85399,16,1.0,2,1.6108601093292236,400,0.0,3 +85400,16,0.0,2,1.3208638429641724,401,0.0,3 +85401,16,0.0,2,1.3418635129928589,402,0.0,3 +85402,16,0.0,2,2.064858913421631,403,0.0,3 +85403,16,0.0,2,1.480861783027649,404,1.0,3 +85404,16,0.0,2,1.2388648986816406,405,0.0,3 +85405,16,1.0,2,1.8918564319610596,406,0.0,3 +85406,16,1.0,2,1.406862735748291,407,0.0,3 +85407,16,0.0,2,1.8428571224212646,408,0.0,3 +85408,16,0.0,2,1.3648632764816284,409,0.0,3 +85409,16,0.0,2,1.5558607578277588,410,0.0,3 +85410,16,0.0,2,1.1348646879196167,411,1.0,3 +85411,16,0.0,2,1.075864553451538,412,0.0,3 +85412,16,0.0,2,1.4248625040054321,413,0.0,3 +85413,16,0.0,2,1.2268648147583008,414,0.0,3 +85414,16,0.0,2,1.384863018989563,415,1.0,3 +85415,16,0.0,2,1.1598646640777588,416,1.0,3 +85416,16,0.0,2,1.1908648014068604,417,1.0,3 +85417,16,0.0,2,1.3898628950119019,418,0.0,3 +85418,16,0.0,2,1.7258586883544922,419,1.0,3 +85419,16,0.0,2,1.4158625602722168,420,1.0,3 +85420,16,0.0,2,1.2258648872375488,421,0.0,3 +85421,16,1.0,2,1.5128613710403442,422,0.0,3 +85422,16,0.0,2,1.4868617057800293,423,1.0,3 +85423,16,0.0,2,1.2538646459579468,424,1.0,3 +85424,16,0.0,2,1.2278648614883423,425,1.0,3 +85425,16,0.0,2,1.2338649034500122,426,1.0,3 +85426,16,0.0,2,1.1318646669387817,427,1.0,3 +85427,16,0.0,2,1.0918645858764648,428,1.0,3 +85428,16,0.0,2,1.206864833831787,429,0.0,3 +85429,16,1.0,2,1.7078588008880615,430,1.0,3 +85430,16,1.0,2,1.7558581829071045,431,0.0,3 +85431,16,1.0,2,1.9828553199768066,432,1.0,3 +85432,16,1.0,2,1.35986328125,433,0.0,3 +85433,16,1.0,2,1.6138601303100586,434,1.0,3 +85434,16,1.0,2,1.4698618650436401,435,1.0,3 +85435,16,1.0,2,1.185864806175232,436,1.0,3 +85436,16,0.0,2,1.3688632249832153,437,0.0,3 +85437,16,1.0,2,1.6058602333068848,438,1.0,3 +85438,16,1.0,2,1.1248645782470703,439,1.0,3 +85439,16,1.0,2,1.2688645124435425,440,1.0,3 +85440,16,1.0,2,1.8188574314117432,441,1.0,3 +85441,16,1.0,2,1.1638647317886353,442,1.0,3 +85442,16,1.0,2,1.4268624782562256,443,1.0,3 +85443,16,1.0,2,1.6408597230911255,444,0.0,3 +85444,16,0.0,2,2.087859869003296,445,0.0,3 +85445,16,0.0,2,1.4578620195388794,446,1.0,3 +85446,16,0.0,2,1.2268648147583008,447,0.0,3 +85447,16,1.0,2,1.9088562726974487,448,1.0,3 +85448,16,0.0,2,1.2008647918701172,449,0.0,3 +85449,16,1.0,2,1.212864875793457,450,0.0,3 +85450,16,0.0,2,1.9788553714752197,451,0.0,3 +85451,16,0.0,2,1.288864254951477,452,0.0,3 +85452,16,0.0,2,1.1998647451400757,453,1.0,3 +85453,16,0.0,2,1.1418646574020386,454,0.0,3 +85454,16,1.0,2,1.2528647184371948,455,1.0,3 +85455,16,1.0,2,1.5078613758087158,456,1.0,3 +85456,16,0.0,2,1.4908616542816162,457,1.0,3 +85457,16,1.0,2,1.3358635902404785,458,0.0,3 +85458,16,0.0,2,1.3068640232086182,459,0.0,3 +85459,16,1.0,2,2.6898880004882812,460,1.0,3 +85460,16,1.0,2,1.5588607788085938,461,0.0,3 +85461,16,0.0,2,1.2748644351959229,462,1.0,3 +85462,16,0.0,2,1.5658607482910156,463,1.0,3 +85463,16,0.0,2,1.2398648262023926,464,0.0,3 +85464,16,1.0,2,1.3928629159927368,465,0.0,3 +85465,16,0.0,2,2.4518768787384033,466,1.0,3 +85466,16,0.0,2,1.497861623764038,467,0.0,3 +85467,16,0.0,2,1.7038588523864746,468,0.0,3 +85468,16,0.0,2,1.2598645687103271,469,0.0,3 +85469,16,1.0,2,2.089859962463379,470,1.0,3 +85470,16,1.0,2,1.9038562774658203,471,1.0,3 +85471,16,1.0,2,1.2658644914627075,472,1.0,3 +85472,16,1.0,2,1.380863070487976,473,1.0,3 +85473,16,1.0,2,1.6018602848052979,474,1.0,3 +85474,16,1.0,2,1.9738554954528809,475,0.0,3 +85475,16,0.0,2,1.3828630447387695,476,1.0,3 +85476,16,0.0,2,1.5148613452911377,477,0.0,3 +85477,16,0.0,2,2.128861904144287,478,0.0,3 +85478,16,1.0,2,1.7168587446212769,479,1.0,3 +85479,16,1.0,2,1.3718631267547607,480,0.0,3 +85480,16,1.0,2,1.3988628387451172,481,1.0,3 +85481,16,1.0,2,1.318863868713379,482,0.0,3 +85482,16,1.0,2,1.8838565349578857,483,0.0,3 +85483,16,0.0,2,1.472861886024475,484,0.0,3 +85484,16,1.0,2,1.8848565816879272,485,0.0,3 +85485,16,1.0,2,1.6228599548339844,486,1.0,3 +85486,16,1.0,2,1.3968628644943237,487,1.0,3 +85487,16,1.0,2,1.8468570709228516,488,0.0,3 +85488,16,1.0,2,2.2358667850494385,489,0.0,3 +85489,16,0.0,2,1.965855598449707,490,1.0,3 +85490,16,0.0,2,1.3718631267547607,491,1.0,3 +85491,16,0.0,2,1.2798643112182617,492,0.0,3 +85492,16,0.0,2,1.8498570919036865,493,0.0,3 +85493,16,0.0,2,1.5658607482910156,494,1.0,3 +85494,16,0.0,2,1.3758630752563477,495,1.0,3 +85495,16,0.0,2,1.5238611698150635,496,0.0,3 +85496,16,1.0,2,2.3108701705932617,497,0.0,3 +85497,16,1.0,2,1.804857611656189,498,1.0,3 +85498,16,1.0,2,1.547860860824585,499,1.0,3 +85499,16,1.0,2,1.0968645811080933,500,1.0,3 +85500,17,0.0,0,1.2807902097702026,1,0.0,3 +85501,17,1.0,0,1.3557894229888916,2,0.0,3 +85502,17,0.0,0,1.9567816257476807,3,1.0,3 +85503,17,0.0,0,1.409788727760315,4,0.0,3 +85504,17,0.0,0,1.8787827491760254,5,0.0,3 +85505,17,0.0,0,1.4157886505126953,6,0.0,3 +85506,17,0.0,0,1.5757865905761719,7,0.0,3 +85507,17,0.0,0,1.5067874193191528,8,0.0,3 +85508,17,0.0,0,1.1817899942398071,9,0.0,3 +85509,17,0.0,0,1.3197898864746094,10,0.0,3 +85510,17,1.0,0,2.066781759262085,11,1.0,3 +85511,17,1.0,0,1.4677879810333252,12,1.0,3 +85512,17,1.0,0,1.2767901420593262,13,1.0,3 +85513,17,1.0,0,1.2677901983261108,14,1.0,3 +85514,17,1.0,0,1.317789912223816,15,1.0,3 +85515,17,1.0,0,1.340789556503296,16,0.0,3 +85516,17,1.0,0,1.4917876720428467,17,1.0,3 +85517,17,1.0,0,1.1937899589538574,18,1.0,3 +85518,17,1.0,0,1.4637880325317383,19,0.0,3 +85519,17,1.0,0,1.8117835521697998,20,1.0,3 +85520,17,1.0,0,1.566786766052246,21,1.0,3 +85521,17,1.0,0,1.5827865600585938,22,1.0,3 +85522,17,1.0,0,1.2127900123596191,23,1.0,3 +85523,17,1.0,0,1.2597901821136475,24,1.0,3 +85524,17,1.0,0,1.289790153503418,25,1.0,3 +85525,17,1.0,0,1.3297897577285767,26,0.0,3 +85526,17,1.0,0,1.800783634185791,27,1.0,3 +85527,17,1.0,0,1.3387895822525024,28,0.0,3 +85528,17,0.0,0,1.497787594795227,29,0.0,3 +85529,17,1.0,0,1.7417844533920288,30,1.0,3 +85530,17,1.0,0,1.2697901725769043,31,1.0,3 +85531,17,1.0,0,1.362789273262024,32,0.0,3 +85532,17,0.0,0,1.616786003112793,33,0.0,3 +85533,17,0.0,0,1.6217859983444214,34,0.0,3 +85534,17,0.0,0,1.8177834749221802,35,0.0,3 +85535,17,1.0,0,1.5107873678207397,36,1.0,3 +85536,17,1.0,0,1.6207859516143799,37,1.0,3 +85537,17,1.0,0,1.3817890882492065,38,1.0,3 +85538,17,1.0,0,1.5327870845794678,39,0.0,3 +85539,17,1.0,0,1.3757891654968262,40,1.0,3 +85540,17,1.0,0,1.5737866163253784,41,1.0,3 +85541,17,1.0,0,1.1727899312973022,42,1.0,3 +85542,17,1.0,0,1.6097861528396606,43,0.0,3 +85543,17,1.0,0,1.618786096572876,44,1.0,3 +85544,17,1.0,0,1.3827890157699585,45,1.0,3 +85545,17,1.0,0,1.0947898626327515,46,1.0,3 +85546,17,1.0,0,1.3047900199890137,47,0.0,3 +85547,17,0.0,0,1.6657854318618774,48,0.0,3 +85548,17,0.0,0,1.4397883415222168,49,0.0,3 +85549,17,0.0,0,1.8977824449539185,50,0.0,3 +85550,17,1.0,0,1.5267871618270874,51,1.0,3 +85551,17,1.0,0,1.502787470817566,52,1.0,3 +85552,17,1.0,0,1.3947888612747192,53,1.0,3 +85553,17,1.0,0,1.254790186882019,54,1.0,3 +85554,17,0.0,0,1.2597901821136475,55,1.0,3 +85555,17,0.0,0,1.6437857151031494,56,1.0,3 +85556,17,0.0,0,1.7267847061157227,57,1.0,3 +85557,17,0.0,0,1.2087900638580322,58,0.0,3 +85558,17,1.0,0,1.5787866115570068,59,0.0,3 +85559,17,0.0,0,1.3457895517349243,60,1.0,3 +85560,17,0.0,0,1.710784912109375,61,0.0,3 +85561,17,0.0,0,1.2797901630401611,62,0.0,3 +85562,17,0.0,0,1.358789324760437,63,0.0,3 +85563,17,1.0,0,1.6237859725952148,64,1.0,3 +85564,17,1.0,0,1.8587830066680908,65,0.0,3 +85565,17,1.0,0,1.6867852210998535,66,1.0,3 +85566,17,1.0,0,1.3597893714904785,67,1.0,3 +85567,17,1.0,0,1.2477900981903076,68,1.0,3 +85568,17,1.0,0,1.2637901306152344,69,1.0,3 +85569,17,1.0,0,1.8557829856872559,70,1.0,3 +85570,17,1.0,0,1.4417883157730103,71,1.0,3 +85571,17,1.0,0,1.3527894020080566,72,1.0,3 +85572,17,1.0,0,1.4217885732650757,73,1.0,3 +85573,17,1.0,0,1.3157899379730225,74,0.0,3 +85574,17,1.0,0,1.4937876462936401,75,1.0,3 +85575,17,1.0,0,1.387789011001587,76,1.0,3 +85576,17,1.0,0,1.282790184020996,77,1.0,3 +85577,17,1.0,0,1.217790126800537,78,1.0,3 +85578,17,1.0,0,1.7677841186523438,79,0.0,3 +85579,17,1.0,0,1.84678316116333,80,1.0,3 +85580,17,1.0,0,1.4367883205413818,81,1.0,3 +85581,17,1.0,0,1.2457901239395142,82,1.0,3 +85582,17,1.0,0,1.5117874145507812,83,0.0,3 +85583,17,0.0,0,1.5997862815856934,84,0.0,3 +85584,17,1.0,0,1.612786054611206,85,1.0,3 +85585,17,1.0,0,1.7687840461730957,86,1.0,3 +85586,17,1.0,0,1.3377896547317505,87,1.0,3 +85587,17,1.0,0,1.3447895050048828,88,1.0,3 +85588,17,1.0,0,1.3867889642715454,89,1.0,3 +85589,17,1.0,0,1.567786693572998,90,1.0,3 +85590,17,1.0,0,1.362789273262024,91,0.0,3 +85591,17,1.0,0,1.6697853803634644,92,1.0,3 +85592,17,1.0,0,1.6107861995697021,93,1.0,3 +85593,17,1.0,0,1.1927900314331055,94,0.0,3 +85594,17,0.0,0,1.3377896547317505,95,0.0,3 +85595,17,1.0,0,1.2667901515960693,96,1.0,3 +85596,17,1.0,0,1.6177860498428345,97,1.0,3 +85597,17,1.0,0,1.148789882659912,98,1.0,3 +85598,17,1.0,0,1.3907889127731323,99,1.0,3 +85599,17,1.0,0,1.228790044784546,100,1.0,3 +85600,17,1.0,0,1.4677879810333252,101,1.0,3 +85601,17,1.0,0,1.317789912223816,102,1.0,3 +85602,17,1.0,0,1.480787754058838,103,1.0,3 +85603,17,1.0,0,1.3047900199890137,104,1.0,3 +85604,17,1.0,0,1.2567901611328125,105,1.0,3 +85605,17,1.0,0,1.6717853546142578,106,1.0,3 +85606,17,1.0,0,1.291790246963501,107,1.0,3 +85607,17,1.0,0,1.2467901706695557,108,1.0,3 +85608,17,1.0,0,1.3247897624969482,109,1.0,3 +85609,17,1.0,0,1.6077861785888672,110,1.0,3 +85610,17,1.0,0,1.1827900409698486,111,1.0,3 +85611,17,1.0,0,1.8377832174301147,112,1.0,3 +85612,17,1.0,0,1.2237900495529175,113,1.0,3 +85613,17,1.0,0,1.1737899780273438,114,1.0,3 +85614,17,1.0,0,1.5067874193191528,115,1.0,3 +85615,17,1.0,0,1.2507901191711426,116,1.0,3 +85616,17,1.0,0,1.254790186882019,117,1.0,3 +85617,17,1.0,0,1.2507901191711426,118,1.0,3 +85618,17,1.0,0,1.1957900524139404,119,1.0,3 +85619,17,1.0,0,1.3027900457382202,120,1.0,3 +85620,17,1.0,0,1.7057849168777466,121,0.0,3 +85621,17,1.0,0,1.5567867755889893,122,1.0,3 +85622,17,1.0,0,1.2427901029586792,123,0.0,3 +85623,17,0.0,0,1.4637880325317383,124,0.0,3 +85624,17,1.0,0,2.046780824661255,125,1.0,3 +85625,17,1.0,0,1.3297897577285767,126,1.0,3 +85626,17,1.0,0,1.618786096572876,127,1.0,3 +85627,17,1.0,0,1.410788655281067,128,1.0,3 +85628,17,1.0,0,1.380789041519165,129,1.0,3 +85629,17,1.0,0,1.3487894535064697,130,1.0,3 +85630,17,1.0,0,1.3077900409698486,131,1.0,3 +85631,17,1.0,0,1.3567893505096436,132,0.0,3 +85632,17,1.0,0,1.1957900524139404,133,1.0,3 +85633,17,1.0,0,1.1747900247573853,134,1.0,3 +85634,17,1.0,0,1.224790096282959,135,1.0,3 +85635,17,1.0,0,1.4017888307571411,136,1.0,3 +85636,17,1.0,0,1.2417900562286377,137,1.0,3 +85637,17,1.0,0,1.3557894229888916,138,1.0,3 +85638,17,1.0,0,1.799783706665039,139,1.0,3 +85639,17,1.0,0,1.3057900667190552,140,1.0,3 +85640,17,1.0,0,1.1867899894714355,141,1.0,3 +85641,17,1.0,0,1.3027900457382202,142,1.0,3 +85642,17,1.0,0,1.7727839946746826,143,0.0,3 +85643,17,0.0,0,1.317789912223816,144,0.0,3 +85644,17,1.0,0,1.7317845821380615,145,1.0,3 +85645,17,1.0,0,1.2987900972366333,146,1.0,3 +85646,17,1.0,0,1.5947864055633545,147,0.0,3 +85647,17,1.0,0,1.7447843551635742,148,1.0,3 +85648,17,1.0,0,1.2537901401519775,149,0.0,3 +85649,17,0.0,0,1.541787028312683,150,0.0,3 +85650,17,1.0,0,1.3057900667190552,151,1.0,3 +85651,17,1.0,0,1.3007900714874268,152,1.0,3 +85652,17,1.0,0,1.3937889337539673,153,1.0,3 +85653,17,1.0,0,1.4567880630493164,154,0.0,3 +85654,17,1.0,0,2.054781198501587,155,1.0,3 +85655,17,1.0,0,1.4897876977920532,156,0.0,3 +85656,17,1.0,0,1.6657854318618774,157,1.0,3 +85657,17,1.0,0,1.3977888822555542,158,0.0,3 +85658,17,0.0,0,1.384788990020752,159,0.0,3 +85659,17,1.0,0,1.7897838354110718,160,1.0,3 +85660,17,1.0,0,1.7687840461730957,161,1.0,3 +85661,17,1.0,0,1.3257898092269897,162,1.0,3 +85662,17,1.0,0,1.362789273262024,163,1.0,3 +85663,17,1.0,0,1.4877877235412598,164,1.0,3 +85664,17,1.0,0,1.4467881917953491,165,1.0,3 +85665,17,1.0,0,1.6887850761413574,166,1.0,3 +85666,17,1.0,0,1.7507843971252441,167,1.0,3 +85667,17,1.0,0,1.5577868223190308,168,1.0,3 +85668,17,1.0,0,1.336789608001709,169,1.0,3 +85669,17,1.0,0,1.6747853755950928,170,0.0,3 +85670,17,0.0,0,1.3827890157699585,171,0.0,3 +85671,17,1.0,0,1.4207885265350342,172,1.0,3 +85672,17,1.0,0,1.3597893714904785,173,1.0,3 +85673,17,1.0,0,1.3047900199890137,174,1.0,3 +85674,17,1.0,0,1.2837902307510376,175,1.0,3 +85675,17,1.0,0,1.6007862091064453,176,1.0,3 +85676,17,1.0,0,1.611786127090454,177,1.0,3 +85677,17,1.0,0,1.1717900037765503,178,1.0,3 +85678,17,1.0,0,1.6047861576080322,179,0.0,3 +85679,17,0.0,0,1.9677815437316895,180,1.0,3 +85680,17,0.0,0,1.4667879343032837,181,0.0,3 +85681,17,1.0,0,1.7007849216461182,182,1.0,3 +85682,17,1.0,0,1.4157886505126953,183,1.0,3 +85683,17,1.0,0,1.3007900714874268,184,1.0,3 +85684,17,1.0,0,1.4937876462936401,185,1.0,3 +85685,17,1.0,0,1.3307896852493286,186,0.0,3 +85686,17,1.0,0,1.4957876205444336,187,1.0,3 +85687,17,1.0,0,2.2127885818481445,188,1.0,3 +85688,17,1.0,0,1.4677879810333252,189,0.0,3 +85689,17,0.0,0,1.802783727645874,190,0.0,3 +85690,17,1.0,0,1.6327857971191406,191,1.0,3 +85691,17,1.0,0,1.2747901678085327,192,1.0,3 +85692,17,1.0,0,1.2597901821136475,193,1.0,3 +85693,17,1.0,0,1.1927900314331055,194,1.0,3 +85694,17,1.0,0,1.502787470817566,195,1.0,3 +85695,17,1.0,0,1.7357845306396484,196,1.0,3 +85696,17,1.0,0,1.40678870677948,197,1.0,3 +85697,17,1.0,0,1.3657892942428589,198,1.0,3 +85698,17,1.0,0,1.3157899379730225,199,1.0,3 +85699,17,1.0,0,1.251790165901184,200,1.0,3 +85700,17,1.0,0,1.339789628982544,201,1.0,3 +85701,17,1.0,0,1.5217872858047485,202,0.0,3 +85702,17,0.0,0,1.8247833251953125,203,0.0,3 +85703,17,1.0,0,1.6067862510681152,204,1.0,3 +85704,17,1.0,0,1.2727901935577393,205,1.0,3 +85705,17,0.0,0,1.4927875995635986,206,0.0,3 +85706,17,1.0,0,1.2997901439666748,207,1.0,3 +85707,17,1.0,0,1.340789556503296,208,1.0,3 +85708,17,1.0,0,1.2967901229858398,209,1.0,3 +85709,17,1.0,0,1.3337897062301636,210,1.0,3 +85710,17,1.0,0,1.2067900896072388,211,1.0,3 +85711,17,1.0,0,1.2947901487350464,212,1.0,3 +85712,17,1.0,0,1.317789912223816,213,1.0,3 +85713,17,1.0,0,1.291790246963501,214,1.0,3 +85714,17,1.0,0,1.3287897109985352,215,0.0,3 +85715,17,0.0,0,1.1777899265289307,216,0.0,3 +85716,17,0.0,0,1.3857890367507935,217,1.0,3 +85717,17,0.0,0,1.2947901487350464,218,1.0,3 +85718,17,0.0,0,1.1497899293899536,219,1.0,3 +85719,17,0.0,0,1.2677901983261108,220,0.0,3 +85720,17,0.0,0,1.2937902212142944,221,0.0,3 +85721,17,1.0,0,2.1737866401672363,222,1.0,3 +85722,17,1.0,0,1.3727891445159912,223,1.0,3 +85723,17,1.0,0,1.663785457611084,224,1.0,3 +85724,17,1.0,0,1.6837852001190186,225,0.0,3 +85725,17,1.0,0,1.5547869205474854,226,1.0,3 +85726,17,1.0,0,1.2767901420593262,227,1.0,3 +85727,17,1.0,0,1.3017901182174683,228,1.0,3 +85728,17,1.0,0,1.457788109779358,229,1.0,3 +85729,17,1.0,0,1.5377870798110962,230,0.0,3 +85730,17,0.0,0,1.7797839641571045,231,0.0,3 +85731,17,1.0,0,2.133784770965576,232,1.0,3 +85732,17,1.0,0,1.7477843761444092,233,1.0,3 +85733,17,1.0,0,1.387789011001587,234,1.0,3 +85734,17,1.0,0,1.2977901697158813,235,1.0,3 +85735,17,1.0,0,1.7887837886810303,236,1.0,3 +85736,17,1.0,0,1.157789945602417,237,1.0,3 +85737,17,1.0,0,1.3557894229888916,238,1.0,3 +85738,17,1.0,0,1.800783634185791,239,1.0,3 +85739,17,1.0,0,1.380789041519165,240,0.0,3 +85740,17,0.0,0,1.9307820796966553,241,0.0,3 +85741,17,1.0,0,1.7957837581634521,242,1.0,3 +85742,17,1.0,0,1.2337901592254639,243,1.0,3 +85743,17,1.0,0,1.2027900218963623,244,1.0,3 +85744,17,1.0,0,1.3047900199890137,245,1.0,3 +85745,17,1.0,0,1.2037900686264038,246,1.0,3 +85746,17,1.0,0,1.3727891445159912,247,0.0,3 +85747,17,0.0,0,1.314789891242981,248,0.0,3 +85748,17,0.0,0,1.8777827024459839,249,0.0,3 +85749,17,0.0,0,1.7497843503952026,250,0.0,3 +85750,17,0.0,0,1.4417883157730103,251,0.0,3 +85751,17,0.0,0,1.5327870845794678,252,0.0,3 +85752,17,0.0,0,1.9507818222045898,253,0.0,3 +85753,17,0.0,0,1.453788161277771,254,0.0,3 +85754,17,1.0,0,1.7637841701507568,255,1.0,3 +85755,17,1.0,0,1.6047861576080322,256,1.0,3 +85756,17,1.0,0,1.5977863073349,257,0.0,3 +85757,17,1.0,0,1.729784607887268,258,1.0,3 +85758,17,1.0,0,1.3057900667190552,259,0.0,3 +85759,17,0.0,0,1.224790096282959,260,0.0,3 +85760,17,1.0,0,1.5227872133255005,261,1.0,3 +85761,17,1.0,0,1.3477895259857178,262,1.0,3 +85762,17,1.0,0,1.5327870845794678,263,0.0,3 +85763,17,0.0,0,1.3467894792556763,264,0.0,3 +85764,17,1.0,0,2.1757869720458984,265,1.0,3 +85765,17,1.0,0,1.498787522315979,266,0.0,3 +85766,17,1.0,0,1.829783320426941,267,1.0,3 +85767,17,1.0,0,1.9077823162078857,268,1.0,3 +85768,17,1.0,0,1.379789113998413,269,1.0,3 +85769,17,1.0,0,1.4677879810333252,270,1.0,3 +85770,17,1.0,0,1.3667892217636108,271,0.0,3 +85771,17,0.0,0,1.5467870235443115,272,0.0,3 +85772,17,1.0,0,1.4337884187698364,273,1.0,3 +85773,17,1.0,0,1.3727891445159912,274,1.0,3 +85774,17,1.0,0,1.7487843036651611,275,1.0,3 +85775,17,1.0,0,1.7267847061157227,276,1.0,3 +85776,17,1.0,0,1.2437901496887207,277,1.0,3 +85777,17,1.0,0,1.2717901468276978,278,0.0,3 +85778,17,1.0,0,1.6687853336334229,279,1.0,3 +85779,17,1.0,0,1.9777814149856567,280,1.0,3 +85780,17,1.0,0,1.1777899265289307,281,0.0,3 +85781,17,1.0,0,1.57478666305542,282,1.0,3 +85782,17,1.0,0,1.3607892990112305,283,1.0,3 +85783,17,1.0,0,1.2427901029586792,284,1.0,3 +85784,17,1.0,0,1.295790195465088,285,1.0,3 +85785,17,1.0,0,1.2627902030944824,286,1.0,3 +85786,17,1.0,0,1.4267884492874146,287,1.0,3 +85787,17,1.0,0,1.2197901010513306,288,1.0,3 +85788,17,1.0,0,1.56878662109375,289,1.0,3 +85789,17,1.0,0,1.6697853803634644,290,1.0,3 +85790,17,1.0,0,1.850783109664917,291,0.0,3 +85791,17,1.0,0,1.5047874450683594,292,0.0,3 +85792,17,1.0,0,1.7387845516204834,293,0.0,3 +85793,17,0.0,0,1.6177860498428345,294,0.0,3 +85794,17,1.0,0,1.4887876510620117,295,0.0,3 +85795,17,0.0,0,1.940781831741333,296,1.0,3 +85796,17,0.0,0,1.5077874660491943,297,0.0,3 +85797,17,0.0,0,1.1457898616790771,298,0.0,3 +85798,17,0.0,0,1.148789882659912,299,0.0,3 +85799,17,0.0,0,1.3967888355255127,300,0.0,3 +85800,17,0.0,0,1.4937876462936401,301,0.0,3 +85801,17,0.0,0,1.2537901401519775,302,0.0,3 +85802,17,0.0,0,1.899782419204712,303,0.0,3 +85803,17,1.0,0,1.8707828521728516,304,1.0,3 +85804,17,1.0,0,1.4387882947921753,305,1.0,3 +85805,17,1.0,0,1.2497901916503906,306,1.0,3 +85806,17,1.0,0,1.502787470817566,307,1.0,3 +85807,17,1.0,0,1.432788372039795,308,1.0,3 +85808,17,1.0,0,1.5797865390777588,309,1.0,3 +85809,17,1.0,0,1.2087900638580322,310,0.0,3 +85810,17,0.0,0,1.3117899894714355,311,0.0,3 +85811,17,1.0,0,1.5587868690490723,312,1.0,3 +85812,17,1.0,0,1.3057900667190552,313,0.0,3 +85813,17,1.0,0,1.3337897062301636,314,0.0,3 +85814,17,0.0,0,1.612786054611206,315,1.0,3 +85815,17,0.0,0,1.9677815437316895,316,0.0,3 +85816,17,1.0,0,1.2047899961471558,317,1.0,3 +85817,17,1.0,0,1.6037862300872803,318,1.0,3 +85818,17,1.0,0,1.387789011001587,319,1.0,3 +85819,17,1.0,0,1.228790044784546,320,1.0,3 +85820,17,1.0,0,1.2317900657653809,321,0.0,3 +85821,17,0.0,0,1.1997900009155273,322,0.0,3 +85822,17,0.0,0,1.2027900218963623,323,0.0,3 +85823,17,1.0,0,1.6697853803634644,324,1.0,3 +85824,17,1.0,0,1.4517881870269775,325,1.0,3 +85825,17,1.0,0,1.2807902097702026,326,1.0,3 +85826,17,1.0,0,1.758784294128418,327,1.0,3 +85827,17,1.0,0,1.2707902193069458,328,1.0,3 +85828,17,1.0,0,1.2407901287078857,329,1.0,3 +85829,17,1.0,0,1.3027900457382202,330,1.0,3 +85830,17,1.0,0,1.5767865180969238,331,1.0,3 +85831,17,1.0,0,1.7247846126556396,332,1.0,3 +85832,17,1.0,0,1.8667829036712646,333,1.0,3 +85833,17,1.0,0,1.3317897319793701,334,0.0,3 +85834,17,0.0,0,1.3677892684936523,335,1.0,3 +85835,17,0.0,0,1.1937899589538574,336,0.0,3 +85836,17,1.0,0,1.70778489112854,337,0.0,3 +85837,17,1.0,0,1.9777814149856567,338,1.0,3 +85838,17,0.0,0,2.366795778274536,339,0.0,3 +85839,17,1.0,0,1.6207859516143799,340,1.0,3 +85840,17,1.0,0,1.424788475036621,341,1.0,3 +85841,17,1.0,0,1.3447895050048828,342,1.0,3 +85842,17,1.0,0,1.8197834491729736,343,1.0,3 +85843,17,1.0,0,1.3707891702651978,344,0.0,3 +85844,17,1.0,0,1.4367883205413818,345,1.0,3 +85845,17,0.0,0,1.2417900562286377,346,0.0,3 +85846,17,1.0,0,1.3257898092269897,347,1.0,3 +85847,17,1.0,0,1.4437882900238037,348,1.0,3 +85848,17,1.0,0,1.541787028312683,349,1.0,3 +85849,17,1.0,0,1.3157899379730225,350,0.0,3 +85850,17,1.0,0,1.4827877283096313,351,1.0,3 +85851,17,1.0,0,1.1867899894714355,352,0.0,3 +85852,17,0.0,0,1.8667829036712646,353,0.0,3 +85853,17,1.0,0,2.1367850303649902,354,1.0,3 +85854,17,1.0,0,1.572786569595337,355,1.0,3 +85855,17,1.0,0,1.2767901420593262,356,1.0,3 +85856,17,1.0,0,1.4857877492904663,357,1.0,3 +85857,17,1.0,0,1.571786642074585,358,1.0,3 +85858,17,1.0,0,1.4047887325286865,359,1.0,3 +85859,17,1.0,0,1.2327901124954224,360,1.0,3 +85860,17,1.0,0,1.2197901010513306,361,1.0,3 +85861,17,1.0,0,1.218790054321289,362,0.0,3 +85862,17,0.0,0,1.8667829036712646,363,0.0,3 +85863,17,0.0,0,1.2737901210784912,364,0.0,3 +85864,17,0.0,0,1.6937850713729858,365,0.0,3 +85865,17,1.0,0,1.622786045074463,366,1.0,3 +85866,17,1.0,0,1.2057900428771973,367,1.0,3 +85867,17,1.0,0,1.1567898988723755,368,0.0,3 +85868,17,1.0,0,1.5117874145507812,369,1.0,3 +85869,17,1.0,0,1.5547869205474854,370,1.0,3 +85870,17,1.0,0,1.2137900590896606,371,1.0,3 +85871,17,1.0,0,1.2127900123596191,372,1.0,3 +85872,17,1.0,0,1.4127886295318604,373,1.0,3 +85873,17,1.0,0,1.2097899913787842,374,1.0,3 +85874,17,1.0,0,1.3777891397476196,375,1.0,3 +85875,17,1.0,0,1.285790205001831,376,1.0,3 +85876,17,1.0,0,1.4897876977920532,377,1.0,3 +85877,17,1.0,0,1.4457882642745972,378,1.0,3 +85878,17,1.0,0,1.2697901725769043,379,1.0,3 +85879,17,1.0,0,1.358789324760437,380,0.0,3 +85880,17,1.0,0,1.571786642074585,381,1.0,3 +85881,17,1.0,0,1.332789659500122,382,0.0,3 +85882,17,1.0,0,1.7427845001220703,383,0.0,3 +85883,17,0.0,0,1.221790075302124,384,0.0,3 +85884,17,1.0,0,1.6527855396270752,385,1.0,3 +85885,17,1.0,0,1.310789942741394,386,1.0,3 +85886,17,1.0,0,1.2127900123596191,387,1.0,3 +85887,17,1.0,0,1.6497856378555298,388,1.0,3 +85888,17,1.0,0,1.3497895002365112,389,1.0,3 +85889,17,1.0,0,1.2087900638580322,390,1.0,3 +85890,17,1.0,0,1.4227885007858276,391,1.0,3 +85891,17,1.0,0,1.5347870588302612,392,1.0,3 +85892,17,1.0,0,1.285790205001831,393,0.0,3 +85893,17,1.0,0,1.5397870540618896,394,0.0,3 +85894,17,0.0,0,1.472787857055664,395,0.0,3 +85895,17,0.0,0,1.2997901439666748,396,0.0,3 +85896,17,0.0,0,1.2137900590896606,397,0.0,3 +85897,17,0.0,0,1.5867865085601807,398,0.0,3 +85898,17,0.0,0,1.9117822647094727,399,0.0,3 +85899,17,0.0,0,1.4417883157730103,400,0.0,3 +85900,17,0.0,0,1.7977837324142456,401,0.0,3 +85901,17,0.0,0,1.6397857666015625,402,0.0,3 +85902,17,0.0,0,1.2577900886535645,403,0.0,3 +85903,17,0.0,0,1.7787840366363525,404,0.0,3 +85904,17,1.0,0,1.6547856330871582,405,1.0,3 +85905,17,1.0,0,1.917782187461853,406,1.0,3 +85906,17,1.0,0,1.336789608001709,407,1.0,3 +85907,17,1.0,0,1.4437882900238037,408,1.0,3 +85908,17,1.0,0,1.291790246963501,409,1.0,3 +85909,17,1.0,0,1.295790195465088,410,1.0,3 +85910,17,1.0,0,1.5777865648269653,411,1.0,3 +85911,17,1.0,0,1.2237900495529175,412,1.0,3 +85912,17,1.0,0,1.6467857360839844,413,1.0,3 +85913,17,1.0,0,1.891782522201538,414,1.0,3 +85914,17,1.0,0,1.3597893714904785,415,1.0,3 +85915,17,1.0,0,1.7007849216461182,416,1.0,3 +85916,17,1.0,0,2.1387851238250732,417,1.0,3 +85917,17,1.0,0,1.4647879600524902,418,1.0,3 +85918,17,1.0,0,1.4957876205444336,419,0.0,3 +85919,17,0.0,0,1.56878662109375,420,0.0,3 +85920,17,1.0,0,1.848783016204834,421,1.0,3 +85921,17,1.0,0,1.4667879343032837,422,1.0,3 +85922,17,1.0,0,1.2007900476455688,423,1.0,3 +85923,17,0.0,0,1.310789942741394,424,0.0,3 +85924,17,1.0,0,1.410788655281067,425,1.0,3 +85925,17,1.0,0,1.7437844276428223,426,1.0,3 +85926,17,1.0,0,1.5987863540649414,427,1.0,3 +85927,17,1.0,0,1.428788423538208,428,1.0,3 +85928,17,1.0,0,1.4777878522872925,429,1.0,3 +85929,17,1.0,0,1.8017836809158325,430,1.0,3 +85930,17,1.0,0,1.4047887325286865,431,1.0,3 +85931,17,1.0,0,1.6297858953475952,432,0.0,3 +85932,17,1.0,0,1.4737879037857056,433,1.0,3 +85933,17,1.0,0,1.4597880840301514,434,1.0,3 +85934,17,1.0,0,1.428788423538208,435,1.0,3 +85935,17,1.0,0,1.2877901792526245,436,1.0,3 +85936,17,1.0,0,1.4647879600524902,437,1.0,3 +85937,17,0.0,0,1.4087886810302734,438,0.0,3 +85938,17,1.0,0,1.3457895517349243,439,1.0,3 +85939,17,1.0,0,1.3857890367507935,440,1.0,3 +85940,17,1.0,0,1.5407869815826416,441,1.0,3 +85941,17,1.0,0,1.3817890882492065,442,0.0,3 +85942,17,1.0,0,1.2837902307510376,443,1.0,3 +85943,17,1.0,0,1.4377883672714233,444,0.0,3 +85944,17,0.0,0,1.4387882947921753,445,0.0,3 +85945,17,0.0,0,1.56878662109375,446,1.0,3 +85946,17,0.0,0,1.756784200668335,447,1.0,3 +85947,17,0.0,0,1.56878662109375,448,0.0,3 +85948,17,1.0,0,1.4397883415222168,449,1.0,3 +85949,17,1.0,0,1.282790184020996,450,0.0,3 +85950,17,1.0,0,1.5317871570587158,451,1.0,3 +85951,17,1.0,0,1.8327832221984863,452,0.0,3 +85952,17,0.0,0,1.9267821311950684,453,0.0,3 +85953,17,1.0,0,2.048780918121338,454,1.0,3 +85954,17,1.0,0,1.527787208557129,455,1.0,3 +85955,17,1.0,0,1.4617880582809448,456,1.0,3 +85956,17,1.0,0,1.2867902517318726,457,1.0,3 +85957,17,1.0,0,1.5657867193222046,458,1.0,3 +85958,17,1.0,0,1.5927863121032715,459,1.0,3 +85959,17,1.0,0,1.4417883157730103,460,1.0,3 +85960,17,1.0,0,1.5797865390777588,461,1.0,3 +85961,17,1.0,0,1.4207885265350342,462,1.0,3 +85962,17,1.0,0,1.336789608001709,463,0.0,3 +85963,17,1.0,0,1.7027850151062012,464,0.0,3 +85964,17,1.0,0,1.335789680480957,465,1.0,3 +85965,17,1.0,0,1.1457898616790771,466,1.0,3 +85966,17,1.0,0,1.3677892684936523,467,1.0,3 +85967,17,0.0,0,1.8267834186553955,468,0.0,3 +85968,17,1.0,0,1.4237885475158691,469,1.0,3 +85969,17,1.0,0,1.3827890157699585,470,1.0,3 +85970,17,1.0,0,1.5337871313095093,471,0.0,3 +85971,17,1.0,0,1.8117835521697998,472,1.0,3 +85972,17,1.0,0,1.5957863330841064,473,1.0,3 +85973,17,1.0,0,1.4367883205413818,474,0.0,3 +85974,17,0.0,0,1.5177873373031616,475,1.0,3 +85975,17,0.0,0,1.255790114402771,476,0.0,3 +85976,17,0.0,0,1.5227872133255005,477,0.0,3 +85977,17,0.0,0,1.4047887325286865,478,0.0,3 +85978,17,0.0,0,2.329793930053711,479,0.0,3 +85979,17,0.0,0,1.1467899084091187,480,1.0,3 +85980,17,0.0,0,1.8727827072143555,481,0.0,3 +85981,17,1.0,0,1.6477856636047363,482,1.0,3 +85982,17,1.0,0,1.2117900848388672,483,1.0,3 +85983,17,1.0,0,1.3267897367477417,484,1.0,3 +85984,17,1.0,0,1.1047898530960083,485,0.0,3 +85985,17,0.0,0,1.5597867965698242,486,0.0,3 +85986,17,0.0,0,1.1837899684906006,487,0.0,3 +85987,17,1.0,0,1.2207900285720825,488,1.0,3 +85988,17,1.0,0,1.4707878828048706,489,1.0,3 +85989,17,1.0,0,1.7197847366333008,490,1.0,3 +85990,17,1.0,0,1.4827877283096313,491,1.0,3 +85991,17,1.0,0,1.3157899379730225,492,1.0,3 +85992,17,1.0,0,1.295790195465088,493,1.0,3 +85993,17,1.0,0,1.7717840671539307,494,1.0,3 +85994,17,1.0,0,1.2657902240753174,495,1.0,3 +85995,17,1.0,0,1.3717892169952393,496,0.0,3 +85996,17,0.0,0,1.6097861528396606,497,0.0,3 +85997,17,1.0,0,1.9637815952301025,498,1.0,3 +85998,17,1.0,0,1.424788475036621,499,1.0,3 +85999,17,1.0,0,1.5037875175476074,500,0.0,3 +86000,17,0.0,1,1.3167898654937744,1,0.0,3 +86001,17,0.0,1,1.708784818649292,2,0.0,3 +86002,17,1.0,1,1.4407882690429688,3,1.0,3 +86003,17,1.0,1,1.3437895774841309,4,1.0,3 +86004,17,1.0,1,1.2847901582717896,5,0.0,3 +86005,17,1.0,1,1.4917876720428467,6,0.0,3 +86006,17,0.0,1,1.6827852725982666,7,0.0,3 +86007,17,0.0,1,1.6407856941223145,8,0.0,3 +86008,17,0.0,1,1.2137900590896606,9,0.0,3 +86009,17,1.0,1,1.6017862558364868,10,1.0,3 +86010,17,1.0,1,1.2777901887893677,11,0.0,3 +86011,17,0.0,1,1.589786410331726,12,0.0,3 +86012,17,1.0,1,1.946781873703003,13,1.0,3 +86013,17,1.0,1,1.3477895259857178,14,1.0,3 +86014,17,1.0,1,1.4847877025604248,15,1.0,3 +86015,17,1.0,1,1.317789912223816,16,1.0,3 +86016,17,1.0,1,1.5867865085601807,17,1.0,3 +86017,17,1.0,1,1.2867902517318726,18,0.0,3 +86018,17,1.0,1,1.4467881917953491,19,1.0,3 +86019,17,1.0,1,1.614786148071289,20,0.0,3 +86020,17,1.0,1,1.3277897834777832,21,0.0,3 +86021,17,0.0,1,1.7867839336395264,22,0.0,3 +86022,17,0.0,1,2.2157888412475586,23,1.0,3 +86023,17,0.0,1,1.2197901010513306,24,0.0,3 +86024,17,0.0,1,1.2807902097702026,25,1.0,3 +86025,17,0.0,1,1.2337901592254639,26,1.0,3 +86026,17,0.0,1,1.4657880067825317,27,0.0,3 +86027,17,0.0,1,1.3087899684906006,28,0.0,3 +86028,17,0.0,1,1.5977863073349,29,1.0,3 +86029,17,0.0,1,1.2267900705337524,30,0.0,3 +86030,17,1.0,1,2.1627862453460693,31,1.0,3 +86031,17,1.0,1,1.2777901887893677,32,1.0,3 +86032,17,1.0,1,1.616786003112793,33,1.0,3 +86033,17,1.0,1,1.5587868690490723,34,1.0,3 +86034,17,1.0,1,1.3567893505096436,35,1.0,3 +86035,17,1.0,1,1.224790096282959,36,1.0,3 +86036,17,1.0,1,1.2327901124954224,37,1.0,3 +86037,17,1.0,1,1.3567893505096436,38,1.0,3 +86038,17,1.0,1,1.2357901334762573,39,0.0,3 +86039,17,0.0,1,1.3347896337509155,40,1.0,3 +86040,17,0.0,1,1.340789556503296,41,0.0,3 +86041,17,1.0,1,1.5047874450683594,42,0.0,3 +86042,17,1.0,1,1.4407882690429688,43,1.0,3 +86043,17,1.0,1,1.5537868738174438,44,1.0,3 +86044,17,1.0,1,1.453788161277771,45,0.0,3 +86045,17,0.0,1,1.5577868223190308,46,1.0,3 +86046,17,0.0,1,1.472787857055664,47,0.0,3 +86047,17,0.0,1,2.2487902641296387,48,1.0,3 +86048,17,0.0,1,1.1767899990081787,49,1.0,3 +86049,17,0.0,1,1.4847877025604248,50,0.0,3 +86050,17,0.0,1,1.4337884187698364,51,0.0,3 +86051,17,0.0,1,2.121784210205078,52,0.0,3 +86052,17,1.0,1,1.6177860498428345,53,0.0,3 +86053,17,0.0,1,1.75978422164917,54,0.0,3 +86054,17,0.0,1,1.471787929534912,55,0.0,3 +86055,17,1.0,1,1.5907864570617676,56,1.0,3 +86056,17,1.0,1,1.704784870147705,57,1.0,3 +86057,17,1.0,1,2.0017809867858887,58,0.0,3 +86058,17,0.0,1,1.733784556388855,59,0.0,3 +86059,17,0.0,1,1.4207885265350342,60,0.0,3 +86060,17,0.0,1,1.4017888307571411,61,0.0,3 +86061,17,1.0,1,1.6067862510681152,62,1.0,3 +86062,17,1.0,1,1.804783582687378,63,1.0,3 +86063,17,1.0,1,1.663785457611084,64,0.0,3 +86064,17,1.0,1,1.4557881355285645,65,1.0,3 +86065,17,1.0,1,1.3007900714874268,66,1.0,3 +86066,17,0.0,1,1.4137886762619019,67,0.0,3 +86067,17,1.0,1,1.3927888870239258,68,1.0,3 +86068,17,1.0,1,1.2067900896072388,69,1.0,3 +86069,17,1.0,1,1.357789397239685,70,0.0,3 +86070,17,1.0,1,1.2747901678085327,71,1.0,3 +86071,17,1.0,1,1.4077887535095215,72,0.0,3 +86072,17,1.0,1,1.3387895822525024,73,1.0,3 +86073,17,1.0,1,1.520787239074707,74,0.0,3 +86074,17,1.0,1,1.8617829084396362,75,1.0,3 +86075,17,1.0,1,1.501787543296814,76,1.0,3 +86076,17,1.0,1,1.4697879552841187,77,1.0,3 +86077,17,1.0,1,1.5537868738174438,78,1.0,3 +86078,17,1.0,1,1.295790195465088,79,0.0,3 +86079,17,1.0,1,1.3487894535064697,80,1.0,3 +86080,17,1.0,1,1.310789942741394,81,1.0,3 +86081,17,1.0,1,1.5117874145507812,82,1.0,3 +86082,17,1.0,1,1.2397900819778442,83,1.0,3 +86083,17,1.0,1,1.332789659500122,84,1.0,3 +86084,17,1.0,1,1.1867899894714355,85,1.0,3 +86085,17,1.0,1,1.615786075592041,86,1.0,3 +86086,17,1.0,1,1.4467881917953491,87,0.0,3 +86087,17,1.0,1,1.405788779258728,88,1.0,3 +86088,17,1.0,1,1.571786642074585,89,0.0,3 +86089,17,0.0,1,1.6247859001159668,90,0.0,3 +86090,17,1.0,1,2.2227890491485596,91,1.0,3 +86091,17,1.0,1,2.064781665802002,92,0.0,3 +86092,17,0.0,1,1.4897876977920532,93,0.0,3 +86093,17,0.0,1,1.7227847576141357,94,1.0,3 +86094,17,0.0,1,1.2017900943756104,95,0.0,3 +86095,17,1.0,1,2.2777915000915527,96,1.0,3 +86096,17,1.0,1,1.75978422164917,97,1.0,3 +86097,17,1.0,1,1.4747878313064575,98,1.0,3 +86098,17,1.0,1,1.6057862043380737,99,1.0,3 +86099,17,1.0,1,1.5177873373031616,100,1.0,3 +86100,17,1.0,1,1.254790186882019,101,0.0,3 +86101,17,0.0,1,1.5127873420715332,102,0.0,3 +86102,17,1.0,1,1.9027824401855469,103,0.0,3 +86103,17,0.0,1,1.9317820072174072,104,0.0,3 +86104,17,0.0,1,2.084782600402832,105,1.0,3 +86105,17,0.0,1,1.475787878036499,106,0.0,3 +86106,17,0.0,1,1.3057900667190552,107,0.0,3 +86107,17,0.0,1,1.7357845306396484,108,0.0,3 +86108,17,0.0,1,2.2267892360687256,109,1.0,3 +86109,17,0.0,1,1.215790033340454,110,0.0,3 +86110,17,0.0,1,1.3027900457382202,111,0.0,3 +86111,17,0.0,1,1.2297900915145874,112,1.0,3 +86112,17,0.0,1,1.2807902097702026,113,1.0,3 +86113,17,0.0,1,1.2737901210784912,114,0.0,3 +86114,17,1.0,1,1.6747853755950928,115,0.0,3 +86115,17,1.0,1,1.4587880373001099,116,1.0,3 +86116,17,0.0,1,1.5157873630523682,117,1.0,3 +86117,17,0.0,1,1.457788109779358,118,0.0,3 +86118,17,1.0,1,1.2317900657653809,119,1.0,3 +86119,17,1.0,1,1.56878662109375,120,0.0,3 +86120,17,1.0,1,1.5597867965698242,121,0.0,3 +86121,17,1.0,1,1.7707841396331787,122,1.0,3 +86122,17,1.0,1,1.2747901678085327,123,1.0,3 +86123,17,1.0,1,1.292790174484253,124,1.0,3 +86124,17,1.0,1,1.227790117263794,125,0.0,3 +86125,17,1.0,1,1.9677815437316895,126,1.0,3 +86126,17,1.0,1,1.362789273262024,127,0.0,3 +86127,17,1.0,1,1.2107900381088257,128,0.0,3 +86128,17,0.0,1,1.9347820281982422,129,1.0,3 +86129,17,0.0,1,1.4657880067825317,130,0.0,3 +86130,17,0.0,1,2.361795425415039,131,0.0,3 +86131,17,0.0,1,1.854783058166504,132,0.0,3 +86132,17,0.0,1,1.3477895259857178,133,1.0,3 +86133,17,0.0,1,1.2567901611328125,134,0.0,3 +86134,17,1.0,1,1.7727839946746826,135,1.0,3 +86135,17,1.0,1,1.35478937625885,136,1.0,3 +86136,17,1.0,1,1.4927875995635986,137,0.0,3 +86137,17,0.0,1,1.7367844581604004,138,0.0,3 +86138,17,0.0,1,1.3907889127731323,139,0.0,3 +86139,17,0.0,1,1.754784345626831,140,1.0,3 +86140,17,0.0,1,1.379789113998413,141,0.0,3 +86141,17,1.0,1,1.7007849216461182,142,0.0,3 +86142,17,0.0,1,1.8907825946807861,143,1.0,3 +86143,17,0.0,1,1.361789345741272,144,1.0,3 +86144,17,0.0,1,1.4037888050079346,145,0.0,3 +86145,17,1.0,1,1.410788655281067,146,1.0,3 +86146,17,1.0,1,1.4787877798080444,147,1.0,3 +86147,17,1.0,1,1.2797901630401611,148,0.0,3 +86148,17,1.0,1,1.3037900924682617,149,1.0,3 +86149,17,1.0,1,1.5337871313095093,150,1.0,3 +86150,17,1.0,1,1.3707891702651978,151,1.0,3 +86151,17,1.0,1,1.5397870540618896,152,1.0,3 +86152,17,1.0,1,1.4407882690429688,153,1.0,3 +86153,17,1.0,1,1.217790126800537,154,0.0,3 +86154,17,0.0,1,1.1647899150848389,155,0.0,3 +86155,17,0.0,1,1.4907876253128052,156,0.0,3 +86156,17,1.0,1,1.3027900457382202,157,1.0,3 +86157,17,1.0,1,1.3377896547317505,158,0.0,3 +86158,17,1.0,1,1.5157873630523682,159,1.0,3 +86159,17,1.0,1,1.2867902517318726,160,0.0,3 +86160,17,0.0,1,1.7837839126586914,161,0.0,3 +86161,17,0.0,1,1.847783088684082,162,0.0,3 +86162,17,1.0,1,1.428788423538208,163,0.0,3 +86163,17,0.0,1,1.4817878007888794,164,0.0,3 +86164,17,0.0,1,1.752784252166748,165,0.0,3 +86165,17,0.0,1,1.9057823419570923,166,0.0,3 +86166,17,1.0,1,2.2047882080078125,167,1.0,3 +86167,17,1.0,1,1.5657867193222046,168,1.0,3 +86168,17,1.0,1,1.2417900562286377,169,1.0,3 +86169,17,1.0,1,1.2047899961471558,170,1.0,3 +86170,17,1.0,1,1.7137848138809204,171,1.0,3 +86171,17,1.0,1,1.4657880067825317,172,0.0,3 +86172,17,1.0,1,1.4777878522872925,173,1.0,3 +86173,17,1.0,1,1.3697892427444458,174,1.0,3 +86174,17,1.0,1,1.7167847156524658,175,1.0,3 +86175,17,1.0,1,1.4687879085540771,176,1.0,3 +86176,17,1.0,1,1.282790184020996,177,1.0,3 +86177,17,1.0,1,1.3837890625,178,1.0,3 +86178,17,1.0,1,1.289790153503418,179,0.0,3 +86179,17,0.0,1,1.2057900428771973,180,0.0,3 +86180,17,1.0,1,1.6257859468460083,181,1.0,3 +86181,17,1.0,1,1.8427832126617432,182,1.0,3 +86182,17,1.0,1,1.2777901887893677,183,1.0,3 +86183,17,1.0,1,1.7097848653793335,184,0.0,3 +86184,17,0.0,1,1.5767865180969238,185,0.0,3 +86185,17,0.0,1,1.3517894744873047,186,0.0,3 +86186,17,0.0,1,1.2297900915145874,187,0.0,3 +86187,17,1.0,1,1.8847825527191162,188,1.0,3 +86188,17,1.0,1,1.5467870235443115,189,1.0,3 +86189,17,1.0,1,1.2567901611328125,190,1.0,3 +86190,17,1.0,1,1.4297884702682495,191,1.0,3 +86191,17,1.0,1,1.261790156364441,192,1.0,3 +86192,17,1.0,1,1.5097874402999878,193,1.0,3 +86193,17,1.0,1,1.4127886295318604,194,1.0,3 +86194,17,1.0,1,1.1837899684906006,195,1.0,3 +86195,17,1.0,1,1.2997901439666748,196,1.0,3 +86196,17,1.0,1,1.194790005683899,197,1.0,3 +86197,17,1.0,1,1.6277859210968018,198,1.0,3 +86198,17,1.0,1,1.619786024093628,199,1.0,3 +86199,17,1.0,1,1.6327857971191406,200,1.0,3 +86200,17,1.0,1,1.56878662109375,201,1.0,3 +86201,17,1.0,1,1.3237898349761963,202,1.0,3 +86202,17,1.0,1,1.432788372039795,203,1.0,3 +86203,17,1.0,1,1.1647899150848389,204,1.0,3 +86204,17,1.0,1,1.1647899150848389,205,1.0,3 +86205,17,1.0,1,1.4377883672714233,206,1.0,3 +86206,17,1.0,1,1.1627899408340454,207,0.0,3 +86207,17,0.0,1,1.5967862606048584,208,1.0,3 +86208,17,0.0,1,1.2767901420593262,209,1.0,3 +86209,17,0.0,1,1.7757840156555176,210,1.0,3 +86210,17,1.0,1,1.986781358718872,211,1.0,3 +86211,17,1.0,1,1.291790246963501,212,0.0,3 +86212,17,0.0,1,1.1767899990081787,213,0.0,3 +86213,17,0.0,1,2.2477903366088867,214,0.0,3 +86214,17,0.0,1,2.309792995452881,215,0.0,3 +86215,17,1.0,1,1.806783676147461,216,1.0,3 +86216,17,1.0,1,1.340789556503296,217,1.0,3 +86217,17,1.0,1,1.2767901420593262,218,0.0,3 +86218,17,1.0,1,1.4147886037826538,219,1.0,3 +86219,17,1.0,1,1.7647840976715088,220,1.0,3 +86220,17,1.0,1,1.6407856941223145,221,1.0,3 +86221,17,1.0,1,1.2577900886535645,222,0.0,3 +86222,17,0.0,1,1.2867902517318726,223,0.0,3 +86223,17,1.0,1,1.471787929534912,224,1.0,3 +86224,17,1.0,1,1.387789011001587,225,1.0,3 +86225,17,1.0,1,1.570786714553833,226,0.0,3 +86226,17,1.0,1,1.5697866678237915,227,0.0,3 +86227,17,0.0,1,1.1587899923324585,228,0.0,3 +86228,17,0.0,1,1.194790005683899,229,0.0,3 +86229,17,1.0,1,2.3877968788146973,230,0.0,3 +86230,17,0.0,1,1.4017888307571411,231,1.0,3 +86231,17,0.0,1,1.527787208557129,232,0.0,3 +86232,17,0.0,1,1.3927888870239258,233,0.0,3 +86233,17,0.0,1,1.1527899503707886,234,0.0,3 +86234,17,0.0,1,1.2967901229858398,235,1.0,3 +86235,17,0.0,1,1.217790126800537,236,0.0,3 +86236,17,1.0,1,1.4257885217666626,237,0.0,3 +86237,17,1.0,1,1.358789324760437,238,1.0,3 +86238,17,1.0,1,1.3557894229888916,239,0.0,3 +86239,17,1.0,1,1.7357845306396484,240,1.0,3 +86240,17,1.0,1,1.3207898139953613,241,1.0,3 +86241,17,1.0,1,1.4557881355285645,242,1.0,3 +86242,17,1.0,1,1.847783088684082,243,1.0,3 +86243,17,1.0,1,1.3997888565063477,244,1.0,3 +86244,17,1.0,1,1.3487894535064697,245,1.0,3 +86245,17,1.0,1,1.4077887535095215,246,1.0,3 +86246,17,1.0,1,1.190790057182312,247,1.0,3 +86247,17,1.0,1,1.4517881870269775,248,1.0,3 +86248,17,1.0,1,1.387789011001587,249,1.0,3 +86249,17,1.0,1,1.2457901239395142,250,0.0,3 +86250,17,0.0,1,1.4937876462936401,251,1.0,3 +86251,17,0.0,1,1.227790117263794,252,1.0,3 +86252,17,0.0,1,1.2937902212142944,253,1.0,3 +86253,17,0.0,1,1.4167885780334473,254,0.0,3 +86254,17,1.0,1,1.656785488128662,255,1.0,3 +86255,17,1.0,1,1.70778489112854,256,0.0,3 +86256,17,1.0,1,1.3457895517349243,257,1.0,3 +86257,17,1.0,1,1.7267847061157227,258,0.0,3 +86258,17,1.0,1,1.2207900285720825,259,0.0,3 +86259,17,0.0,1,1.2777901887893677,260,0.0,3 +86260,17,0.0,1,2.092782974243164,261,0.0,3 +86261,17,1.0,1,2.0017809867858887,262,1.0,3 +86262,17,1.0,1,1.2777901887893677,263,1.0,3 +86263,17,1.0,1,1.3257898092269897,264,1.0,3 +86264,17,1.0,1,1.3867889642715454,265,1.0,3 +86265,17,1.0,1,1.2777901887893677,266,0.0,3 +86266,17,0.0,1,1.7757840156555176,267,1.0,3 +86267,17,0.0,1,1.2727901935577393,268,0.0,3 +86268,17,1.0,1,1.7957837581634521,269,1.0,3 +86269,17,1.0,1,1.6867852210998535,270,1.0,3 +86270,17,1.0,1,2.363795757293701,271,0.0,3 +86271,17,0.0,1,1.9237821102142334,272,0.0,3 +86272,17,1.0,1,1.6337858438491821,273,0.0,3 +86273,17,0.0,1,1.4887876510620117,274,0.0,3 +86274,17,0.0,1,1.1707899570465088,275,0.0,3 +86275,17,1.0,1,1.501787543296814,276,1.0,3 +86276,17,1.0,1,1.2677901983261108,277,1.0,3 +86277,17,1.0,1,1.480787754058838,278,1.0,3 +86278,17,1.0,1,2.078782320022583,279,1.0,3 +86279,17,1.0,1,1.3297897577285767,280,1.0,3 +86280,17,1.0,1,1.291790246963501,281,0.0,3 +86281,17,0.0,1,2.1997880935668945,282,0.0,3 +86282,17,1.0,1,1.714784860610962,283,1.0,3 +86283,17,1.0,1,1.1817899942398071,284,1.0,3 +86284,17,1.0,1,1.3417896032333374,285,1.0,3 +86285,17,1.0,1,1.3537894487380981,286,1.0,3 +86286,17,1.0,1,1.3607892990112305,287,1.0,3 +86287,17,1.0,1,1.5037875175476074,288,1.0,3 +86288,17,1.0,1,1.157789945602417,289,1.0,3 +86289,17,1.0,1,1.2297900915145874,290,1.0,3 +86290,17,1.0,1,1.317789912223816,291,0.0,3 +86291,17,0.0,1,1.5997862815856934,292,1.0,3 +86292,17,0.0,1,1.4177886247634888,293,1.0,3 +86293,17,0.0,1,1.1817899942398071,294,1.0,3 +86294,17,0.0,1,1.218790054321289,295,0.0,3 +86295,17,0.0,1,1.616786003112793,296,0.0,3 +86296,17,1.0,1,1.5907864570617676,297,0.0,3 +86297,17,0.0,1,1.2787902355194092,298,1.0,3 +86298,17,0.0,1,1.502787470817566,299,1.0,3 +86299,17,0.0,1,1.7637841701507568,300,1.0,3 +86300,17,0.0,1,1.5047874450683594,301,0.0,3 +86301,17,0.0,1,1.2337901592254639,302,0.0,3 +86302,17,0.0,1,1.9597816467285156,303,0.0,3 +86303,17,1.0,1,1.252790093421936,304,0.0,3 +86304,17,1.0,1,1.7177847623825073,305,1.0,3 +86305,17,1.0,1,1.4297884702682495,306,1.0,3 +86306,17,1.0,1,1.664785385131836,307,1.0,3 +86307,17,1.0,1,1.432788372039795,308,1.0,3 +86308,17,1.0,1,1.3517894744873047,309,1.0,3 +86309,17,1.0,1,1.5557868480682373,310,1.0,3 +86310,17,1.0,1,1.2637901306152344,311,0.0,3 +86311,17,1.0,1,1.4637880325317383,312,1.0,3 +86312,17,1.0,1,1.1797900199890137,313,0.0,3 +86313,17,0.0,1,1.2327901124954224,314,0.0,3 +86314,17,0.0,1,1.5397870540618896,315,0.0,3 +86315,17,1.0,1,1.6177860498428345,316,0.0,3 +86316,17,0.0,1,1.1657899618148804,317,0.0,3 +86317,17,1.0,1,1.8837826251983643,318,1.0,3 +86318,17,1.0,1,1.5047874450683594,319,1.0,3 +86319,17,1.0,1,1.3897889852523804,320,0.0,3 +86320,17,1.0,1,1.251790165901184,321,0.0,3 +86321,17,1.0,1,2.0157809257507324,322,1.0,3 +86322,17,1.0,1,1.6967849731445312,323,1.0,3 +86323,17,1.0,1,1.4357883930206299,324,1.0,3 +86324,17,1.0,1,1.2317900657653809,325,1.0,3 +86325,17,1.0,1,1.566786766052246,326,1.0,3 +86326,17,1.0,1,1.3737891912460327,327,1.0,3 +86327,17,1.0,1,1.1727899312973022,328,0.0,3 +86328,17,0.0,1,1.3697892427444458,329,0.0,3 +86329,17,0.0,1,1.2777901887893677,330,0.0,3 +86330,17,1.0,1,1.5467870235443115,331,1.0,3 +86331,17,1.0,1,1.4467881917953491,332,1.0,3 +86332,17,1.0,1,1.2727901935577393,333,1.0,3 +86333,17,1.0,1,1.6107861995697021,334,0.0,3 +86334,17,0.0,1,1.56878662109375,335,1.0,3 +86335,17,0.0,1,1.428788423538208,336,0.0,3 +86336,17,1.0,1,1.7287845611572266,337,1.0,3 +86337,17,1.0,1,1.1727899312973022,338,0.0,3 +86338,17,0.0,1,1.4397883415222168,339,0.0,3 +86339,17,1.0,1,1.2327901124954224,340,1.0,3 +86340,17,1.0,1,1.3057900667190552,341,1.0,3 +86341,17,1.0,1,1.564786672592163,342,0.0,3 +86342,17,1.0,1,1.57478666305542,343,1.0,3 +86343,17,1.0,1,1.6357858180999756,344,0.0,3 +86344,17,0.0,1,2.2657909393310547,345,0.0,3 +86345,17,0.0,1,1.571786642074585,346,0.0,3 +86346,17,1.0,1,1.3957889080047607,347,1.0,3 +86347,17,1.0,1,1.5337871313095093,348,1.0,3 +86348,17,1.0,1,1.3697892427444458,349,1.0,3 +86349,17,1.0,1,1.2097899913787842,350,1.0,3 +86350,17,1.0,1,1.2437901496887207,351,1.0,3 +86351,17,1.0,1,1.255790114402771,352,1.0,3 +86352,17,1.0,1,1.3187898397445679,353,0.0,3 +86353,17,1.0,1,1.2467901706695557,354,1.0,3 +86354,17,1.0,1,1.6787853240966797,355,0.0,3 +86355,17,1.0,1,1.7367844581604004,356,1.0,3 +86356,17,1.0,1,1.5087873935699463,357,0.0,3 +86357,17,1.0,1,1.619786024093628,358,1.0,3 +86358,17,1.0,1,1.3457895517349243,359,1.0,3 +86359,17,1.0,1,1.5507869720458984,360,0.0,3 +86360,17,1.0,1,1.4127886295318604,361,1.0,3 +86361,17,1.0,1,1.3047900199890137,362,1.0,3 +86362,17,1.0,1,1.4137886762619019,363,1.0,3 +86363,17,1.0,1,1.3067899942398071,364,1.0,3 +86364,17,1.0,1,1.35478937625885,365,1.0,3 +86365,17,1.0,1,1.2437901496887207,366,1.0,3 +86366,17,1.0,1,1.4517881870269775,367,1.0,3 +86367,17,1.0,1,1.5117874145507812,368,1.0,3 +86368,17,1.0,1,1.3687891960144043,369,1.0,3 +86369,17,1.0,1,1.5877864360809326,370,1.0,3 +86370,17,1.0,1,1.6257859468460083,371,1.0,3 +86371,17,0.0,1,1.1757899522781372,372,1.0,3 +86372,17,0.0,1,1.523787260055542,373,0.0,3 +86373,17,1.0,1,1.4087886810302734,374,1.0,3 +86374,17,1.0,1,1.754784345626831,375,1.0,3 +86375,17,1.0,1,1.4487881660461426,376,1.0,3 +86376,17,0.0,1,1.3717892169952393,377,1.0,3 +86377,17,1.0,1,1.454788088798523,378,0.0,3 +86378,17,0.0,1,1.2947901487350464,379,0.0,3 +86379,17,0.0,1,1.3837890625,380,1.0,3 +86380,17,0.0,1,1.3347896337509155,381,0.0,3 +86381,17,0.0,1,1.224790096282959,382,0.0,3 +86382,17,1.0,1,1.3337897062301636,383,0.0,3 +86383,17,1.0,1,1.8227834701538086,384,1.0,3 +86384,17,1.0,1,1.3707891702651978,385,0.0,3 +86385,17,1.0,1,1.4147886037826538,386,1.0,3 +86386,17,1.0,1,1.4907876253128052,387,1.0,3 +86387,17,1.0,1,1.5737866163253784,388,1.0,3 +86388,17,1.0,1,1.6557855606079102,389,0.0,3 +86389,17,1.0,1,1.4867876768112183,390,1.0,3 +86390,17,1.0,1,1.5387870073318481,391,1.0,3 +86391,17,1.0,1,1.2507901191711426,392,0.0,3 +86392,17,0.0,1,2.1847872734069824,393,0.0,3 +86393,17,0.0,1,1.126789927482605,394,0.0,3 +86394,17,1.0,1,1.5637867450714111,395,1.0,3 +86395,17,1.0,1,1.251790165901184,396,0.0,3 +86396,17,1.0,1,1.4707878828048706,397,1.0,3 +86397,17,1.0,1,1.2407901287078857,398,1.0,3 +86398,17,1.0,1,1.3267897367477417,399,1.0,3 +86399,17,1.0,1,1.9967811107635498,400,1.0,3 +86400,17,1.0,1,1.3737891912460327,401,1.0,3 +86401,17,1.0,1,1.2427901029586792,402,0.0,3 +86402,17,1.0,1,1.7707841396331787,403,0.0,3 +86403,17,0.0,1,1.6617854833602905,404,0.0,3 +86404,17,1.0,1,1.4897876977920532,405,1.0,3 +86405,17,1.0,1,1.4457882642745972,406,0.0,3 +86406,17,0.0,1,1.3867889642715454,407,1.0,3 +86407,17,0.0,1,1.457788109779358,408,0.0,3 +86408,17,0.0,1,2.1567859649658203,409,1.0,3 +86409,17,0.0,1,1.2107900381088257,410,0.0,3 +86410,17,1.0,1,1.5107873678207397,411,1.0,3 +86411,17,1.0,1,2.1437854766845703,412,1.0,3 +86412,17,1.0,1,1.476787805557251,413,1.0,3 +86413,17,1.0,1,1.4907876253128052,414,0.0,3 +86414,17,1.0,1,1.4627879858016968,415,1.0,3 +86415,17,1.0,1,1.4037888050079346,416,1.0,3 +86416,17,1.0,1,1.2867902517318726,417,1.0,3 +86417,17,1.0,1,1.4697879552841187,418,0.0,3 +86418,17,1.0,1,1.5797865390777588,419,1.0,3 +86419,17,1.0,1,1.2447900772094727,420,0.0,3 +86420,17,0.0,1,1.252790093421936,421,0.0,3 +86421,17,1.0,1,1.2777901887893677,422,1.0,3 +86422,17,1.0,1,1.361789345741272,423,1.0,3 +86423,17,0.0,1,1.4567880630493164,424,0.0,3 +86424,17,1.0,1,1.410788655281067,425,1.0,3 +86425,17,1.0,1,1.5817865133285522,426,1.0,3 +86426,17,1.0,1,1.2267900705337524,427,0.0,3 +86427,17,0.0,1,1.8667829036712646,428,0.0,3 +86428,17,1.0,1,1.4687879085540771,429,1.0,3 +86429,17,1.0,1,1.2057900428771973,430,1.0,3 +86430,17,1.0,1,1.6517856121063232,431,1.0,3 +86431,17,1.0,1,1.6557855606079102,432,0.0,3 +86432,17,1.0,1,1.9317820072174072,433,1.0,3 +86433,17,1.0,1,1.3317897319793701,434,0.0,3 +86434,17,0.0,1,1.3467894792556763,435,0.0,3 +86435,17,1.0,1,1.4897876977920532,436,1.0,3 +86436,17,1.0,1,1.1747900247573853,437,0.0,3 +86437,17,1.0,1,1.472787857055664,438,1.0,3 +86438,17,1.0,1,1.6037862300872803,439,1.0,3 +86439,17,1.0,1,1.3157899379730225,440,1.0,3 +86440,17,1.0,1,1.457788109779358,441,0.0,3 +86441,17,1.0,1,1.2717901468276978,442,0.0,3 +86442,17,0.0,1,1.7717840671539307,443,0.0,3 +86443,17,1.0,1,1.292790174484253,444,0.0,3 +86444,17,1.0,1,1.4857877492904663,445,1.0,3 +86445,17,1.0,1,1.2697901725769043,446,0.0,3 +86446,17,1.0,1,1.7187848091125488,447,1.0,3 +86447,17,1.0,1,1.252790093421936,448,0.0,3 +86448,17,0.0,1,1.2537901401519775,449,0.0,3 +86449,17,0.0,1,1.611786127090454,450,0.0,3 +86450,17,1.0,1,1.9347820281982422,451,1.0,3 +86451,17,1.0,1,1.6317858695983887,452,1.0,3 +86452,17,1.0,1,1.4177886247634888,453,1.0,3 +86453,17,1.0,1,1.2787902355194092,454,1.0,3 +86454,17,1.0,1,1.2427901029586792,455,0.0,3 +86455,17,1.0,1,2.2517905235290527,456,1.0,3 +86456,17,1.0,1,1.6777852773666382,457,0.0,3 +86457,17,0.0,1,1.475787878036499,458,0.0,3 +86458,17,1.0,1,1.844783067703247,459,1.0,3 +86459,17,1.0,1,1.2487901449203491,460,1.0,3 +86460,17,1.0,1,1.4147886037826538,461,1.0,3 +86461,17,1.0,1,1.641785740852356,462,1.0,3 +86462,17,1.0,1,1.6237859725952148,463,0.0,3 +86463,17,0.0,1,1.4737879037857056,464,0.0,3 +86464,17,1.0,1,1.424788475036621,465,1.0,3 +86465,17,1.0,1,1.5397870540618896,466,0.0,3 +86466,17,0.0,1,1.7657841444015503,467,0.0,3 +86467,17,1.0,1,1.317789912223816,468,1.0,3 +86468,17,1.0,1,1.5697866678237915,469,1.0,3 +86469,17,1.0,1,1.2667901515960693,470,1.0,3 +86470,17,1.0,1,1.549786925315857,471,1.0,3 +86471,17,1.0,1,1.3907889127731323,472,1.0,3 +86472,17,1.0,1,1.4667879343032837,473,1.0,3 +86473,17,1.0,1,1.2667901515960693,474,1.0,3 +86474,17,1.0,1,1.410788655281067,475,1.0,3 +86475,17,1.0,1,1.309790015220642,476,1.0,3 +86476,17,1.0,1,1.4397883415222168,477,1.0,3 +86477,17,1.0,1,1.3777891397476196,478,1.0,3 +86478,17,1.0,1,1.288790225982666,479,0.0,3 +86479,17,0.0,1,1.7397844791412354,480,1.0,3 +86480,17,0.0,1,1.1717900037765503,481,0.0,3 +86481,17,1.0,1,1.3947888612747192,482,0.0,3 +86482,17,0.0,1,1.194790005683899,483,0.0,3 +86483,17,1.0,1,1.7417844533920288,484,0.0,3 +86484,17,1.0,1,1.8057836294174194,485,1.0,3 +86485,17,1.0,1,1.6067862510681152,486,1.0,3 +86486,17,1.0,1,1.2037900686264038,487,1.0,3 +86487,17,1.0,1,1.5077874660491943,488,0.0,3 +86488,17,0.0,1,1.5107873678207397,489,0.0,3 +86489,17,1.0,1,1.7227847576141357,490,1.0,3 +86490,17,1.0,1,1.8197834491729736,491,1.0,3 +86491,17,1.0,1,1.2997901439666748,492,1.0,3 +86492,17,1.0,1,1.1747900247573853,493,1.0,3 +86493,17,1.0,1,1.2197901010513306,494,0.0,3 +86494,17,0.0,1,1.802783727645874,495,0.0,3 +86495,17,0.0,1,1.3007900714874268,496,1.0,3 +86496,17,0.0,1,1.497787594795227,497,1.0,3 +86497,17,0.0,1,1.3067899942398071,498,0.0,3 +86498,17,0.0,1,1.1777899265289307,499,1.0,3 +86499,17,0.0,1,1.2637901306152344,500,0.0,3 +86500,17,0.0,2,1.9937812089920044,1,1.0,3 +86501,17,0.0,2,1.6757853031158447,2,1.0,3 +86502,17,0.0,2,1.1587899923324585,3,1.0,3 +86503,17,0.0,2,1.6287858486175537,4,0.0,3 +86504,17,1.0,2,1.3647892475128174,5,0.0,3 +86505,17,0.0,2,1.6927850246429443,6,0.0,3 +86506,17,0.0,2,1.3057900667190552,7,1.0,3 +86507,17,0.0,2,1.2367900609970093,8,0.0,3 +86508,17,1.0,2,1.6137861013412476,9,0.0,3 +86509,17,0.0,2,1.5337871313095093,10,1.0,3 +86510,17,0.0,2,1.184790015220642,11,0.0,3 +86511,17,1.0,2,1.3017901182174683,12,0.0,3 +86512,17,0.0,2,1.4457882642745972,13,0.0,3 +86513,17,1.0,2,1.5697866678237915,14,0.0,3 +86514,17,0.0,2,1.124789834022522,15,0.0,3 +86515,17,1.0,2,2.4698004722595215,16,0.0,3 +86516,17,0.0,2,1.5257872343063354,17,0.0,3 +86517,17,1.0,2,1.5807864665985107,18,0.0,3 +86518,17,0.0,2,1.3467894792556763,19,0.0,3 +86519,17,0.0,2,1.380789041519165,20,1.0,3 +86520,17,0.0,2,1.2297900915145874,21,0.0,3 +86521,17,1.0,2,1.4137886762619019,22,1.0,3 +86522,17,1.0,2,1.2507901191711426,23,1.0,3 +86523,17,1.0,2,1.475787878036499,24,1.0,3 +86524,17,0.0,2,1.3927888870239258,25,0.0,3 +86525,17,1.0,2,1.6207859516143799,26,0.0,3 +86526,17,0.0,2,1.896782398223877,27,0.0,3 +86527,17,0.0,2,1.5767865180969238,28,0.0,3 +86528,17,1.0,2,1.5327870845794678,29,1.0,3 +86529,17,1.0,2,1.3697892427444458,30,1.0,3 +86530,17,1.0,2,1.3037900924682617,31,1.0,3 +86531,17,1.0,2,1.2467901706695557,32,0.0,3 +86532,17,0.0,2,1.3927888870239258,33,0.0,3 +86533,17,0.0,2,1.1357898712158203,34,1.0,3 +86534,17,0.0,2,1.2117900848388672,35,1.0,3 +86535,17,0.0,2,1.1687899827957153,36,0.0,3 +86536,17,0.0,2,1.409788727760315,37,0.0,3 +86537,17,0.0,2,1.622786045074463,38,0.0,3 +86538,17,1.0,2,1.5977863073349,39,1.0,3 +86539,17,1.0,2,1.288790225982666,40,1.0,3 +86540,17,1.0,2,1.3607892990112305,41,1.0,3 +86541,17,1.0,2,1.2677901983261108,42,1.0,3 +86542,17,1.0,2,1.314789891242981,43,1.0,3 +86543,17,1.0,2,1.2317900657653809,44,1.0,3 +86544,17,0.0,2,1.7227847576141357,45,1.0,3 +86545,17,0.0,2,1.4177886247634888,46,1.0,3 +86546,17,1.0,2,1.2637901306152344,47,1.0,3 +86547,17,0.0,2,1.5917863845825195,48,0.0,3 +86548,17,1.0,2,1.3787890672683716,49,1.0,3 +86549,17,1.0,2,1.288790225982666,50,0.0,3 +86550,17,0.0,2,1.2017900943756104,51,0.0,3 +86551,17,1.0,2,1.5607867240905762,52,1.0,3 +86552,17,1.0,2,1.4197885990142822,53,0.0,3 +86553,17,1.0,2,1.2807902097702026,54,0.0,3 +86554,17,0.0,2,1.5827865600585938,55,0.0,3 +86555,17,1.0,2,1.9627816677093506,56,1.0,3 +86556,17,1.0,2,1.2377901077270508,57,1.0,3 +86557,17,1.0,2,1.295790195465088,58,0.0,3 +86558,17,0.0,2,2.4007973670959473,59,1.0,3 +86559,17,0.0,2,1.4297884702682495,60,1.0,3 +86560,17,0.0,2,1.4657880067825317,61,0.0,3 +86561,17,0.0,2,1.9717814922332764,62,1.0,3 +86562,17,0.0,2,1.5057874917984009,63,0.0,3 +86563,17,1.0,2,1.3267897367477417,64,0.0,3 +86564,17,0.0,2,1.6257859468460083,65,1.0,3 +86565,17,0.0,2,1.2007900476455688,66,0.0,3 +86566,17,1.0,2,1.5527868270874023,67,0.0,3 +86567,17,0.0,2,1.2107900381088257,68,0.0,3 +86568,17,1.0,2,1.758784294128418,69,0.0,3 +86569,17,0.0,2,1.1987900733947754,70,0.0,3 +86570,17,1.0,2,1.5927863121032715,71,0.0,3 +86571,17,0.0,2,1.7387845516204834,72,0.0,3 +86572,17,1.0,2,1.4997875690460205,73,1.0,3 +86573,17,1.0,2,1.4457882642745972,74,0.0,3 +86574,17,0.0,2,1.4007887840270996,75,0.0,3 +86575,17,1.0,2,1.7097848653793335,76,1.0,3 +86576,17,1.0,2,1.432788372039795,77,1.0,3 +86577,17,1.0,2,1.8327832221984863,78,0.0,3 +86578,17,1.0,2,1.8557829856872559,79,0.0,3 +86579,17,1.0,2,1.7897838354110718,80,0.0,3 +86580,17,1.0,2,1.4677879810333252,81,1.0,3 +86581,17,1.0,2,1.3347896337509155,82,1.0,3 +86582,17,1.0,2,1.5627868175506592,83,1.0,3 +86583,17,1.0,2,1.1787899732589722,84,1.0,3 +86584,17,1.0,2,1.2767901420593262,85,0.0,3 +86585,17,0.0,2,1.3557894229888916,86,1.0,3 +86586,17,0.0,2,1.2747901678085327,87,0.0,3 +86587,17,0.0,2,1.4647879600524902,88,1.0,3 +86588,17,0.0,2,1.292790174484253,89,1.0,3 +86589,17,0.0,2,1.7647840976715088,90,1.0,3 +86590,17,0.0,2,1.5987863540649414,91,1.0,3 +86591,17,0.0,2,1.2397900819778442,92,0.0,3 +86592,17,1.0,2,1.9897812604904175,93,1.0,3 +86593,17,1.0,2,1.8907825946807861,94,1.0,3 +86594,17,1.0,2,1.1627899408340454,95,0.0,3 +86595,17,0.0,2,1.2497901916503906,96,1.0,3 +86596,17,0.0,2,2.1627862453460693,97,0.0,3 +86597,17,0.0,2,1.4367883205413818,98,1.0,3 +86598,17,0.0,2,1.1677899360656738,99,0.0,3 +86599,17,0.0,2,1.2457901239395142,100,0.0,3 +86600,17,1.0,2,1.2967901229858398,101,1.0,3 +86601,17,1.0,2,1.254790186882019,102,1.0,3 +86602,17,1.0,2,1.3047900199890137,103,1.0,3 +86603,17,1.0,2,1.427788496017456,104,1.0,3 +86604,17,1.0,2,1.5347870588302612,105,1.0,3 +86605,17,1.0,2,1.2867902517318726,106,0.0,3 +86606,17,0.0,2,1.7237846851348877,107,0.0,3 +86607,17,1.0,2,1.8317832946777344,108,1.0,3 +86608,17,1.0,2,1.4347883462905884,109,1.0,3 +86609,17,1.0,2,1.3487894535064697,110,1.0,3 +86610,17,1.0,2,1.163789987564087,111,1.0,3 +86611,17,1.0,2,1.2747901678085327,112,1.0,3 +86612,17,1.0,2,1.2367900609970093,113,1.0,3 +86613,17,1.0,2,1.6517856121063232,114,1.0,3 +86614,17,1.0,2,1.8397831916809082,115,1.0,3 +86615,17,1.0,2,1.336789608001709,116,0.0,3 +86616,17,1.0,2,1.5547869205474854,117,1.0,3 +86617,17,1.0,2,1.5117874145507812,118,1.0,3 +86618,17,1.0,2,1.3767890930175781,119,1.0,3 +86619,17,1.0,2,1.3517894744873047,120,0.0,3 +86620,17,1.0,2,1.5997862815856934,121,1.0,3 +86621,17,1.0,2,1.6497856378555298,122,1.0,3 +86622,17,1.0,2,1.6037862300872803,123,0.0,3 +86623,17,1.0,2,1.9347820281982422,124,1.0,3 +86624,17,1.0,2,1.2877901792526245,125,0.0,3 +86625,17,0.0,2,2.360795497894287,126,1.0,3 +86626,17,0.0,2,1.2327901124954224,127,1.0,3 +86627,17,0.0,2,1.3027900457382202,128,0.0,3 +86628,17,0.0,2,2.2857918739318848,129,1.0,3 +86629,17,0.0,2,1.2697901725769043,130,1.0,3 +86630,17,0.0,2,1.8417831659317017,131,0.0,3 +86631,17,0.0,2,1.851783037185669,132,1.0,3 +86632,17,0.0,2,1.4707878828048706,133,1.0,3 +86633,17,0.0,2,1.2807902097702026,134,1.0,3 +86634,17,0.0,2,1.4967875480651855,135,0.0,3 +86635,17,1.0,2,1.3997888565063477,136,0.0,3 +86636,17,0.0,2,1.3337897062301636,137,1.0,3 +86637,17,0.0,2,1.1407898664474487,138,0.0,3 +86638,17,0.0,2,1.224790096282959,139,1.0,3 +86639,17,0.0,2,1.8877825736999512,140,0.0,3 +86640,17,0.0,2,1.825783371925354,141,0.0,3 +86641,17,0.0,2,1.806783676147461,142,0.0,3 +86642,17,1.0,2,1.5287871360778809,143,1.0,3 +86643,17,1.0,2,1.3487894535064697,144,1.0,3 +86644,17,1.0,2,1.2027900218963623,145,0.0,3 +86645,17,0.0,2,1.5467870235443115,146,0.0,3 +86646,17,1.0,2,1.2647901773452759,147,1.0,3 +86647,17,1.0,2,1.5407869815826416,148,1.0,3 +86648,17,1.0,2,1.2097899913787842,149,0.0,3 +86649,17,1.0,2,1.3287897109985352,150,0.0,3 +86650,17,0.0,2,1.5047874450683594,151,0.0,3 +86651,17,0.0,2,1.4467881917953491,152,0.0,3 +86652,17,0.0,2,1.6777852773666382,153,1.0,3 +86653,17,0.0,2,1.1717900037765503,154,0.0,3 +86654,17,1.0,2,1.4397883415222168,155,1.0,3 +86655,17,1.0,2,1.6577855348587036,156,0.0,3 +86656,17,0.0,2,1.2607901096343994,157,0.0,3 +86657,17,1.0,2,1.571786642074585,158,1.0,3 +86658,17,1.0,2,1.3187898397445679,159,1.0,3 +86659,17,1.0,2,1.5977863073349,160,0.0,3 +86660,17,1.0,2,1.6697853803634644,161,0.0,3 +86661,17,0.0,2,1.476787805557251,162,1.0,3 +86662,17,0.0,2,1.2717901468276978,163,0.0,3 +86663,17,0.0,2,1.519787311553955,164,0.0,3 +86664,17,0.0,2,1.8457831144332886,165,0.0,3 +86665,17,1.0,2,1.4347883462905884,166,1.0,3 +86666,17,1.0,2,1.472787857055664,167,0.0,3 +86667,17,1.0,2,1.3767890930175781,168,0.0,3 +86668,17,1.0,2,1.7727839946746826,169,1.0,3 +86669,17,1.0,2,1.9507818222045898,170,0.0,3 +86670,17,0.0,2,1.410788655281067,171,1.0,3 +86671,17,0.0,2,1.1647899150848389,172,1.0,3 +86672,17,0.0,2,1.1597899198532104,173,0.0,3 +86673,17,0.0,2,1.3817890882492065,174,0.0,3 +86674,17,1.0,2,1.424788475036621,175,1.0,3 +86675,17,1.0,2,1.5697866678237915,176,1.0,3 +86676,17,1.0,2,1.1757899522781372,177,1.0,3 +86677,17,1.0,2,1.2837902307510376,178,1.0,3 +86678,17,1.0,2,1.3437895774841309,179,0.0,3 +86679,17,1.0,2,1.8807826042175293,180,0.0,3 +86680,17,0.0,2,1.5997862815856934,181,0.0,3 +86681,17,1.0,2,1.2477900981903076,182,0.0,3 +86682,17,0.0,2,1.3427895307540894,183,0.0,3 +86683,17,1.0,2,1.3457895517349243,184,0.0,3 +86684,17,1.0,2,2.4377989768981934,185,1.0,3 +86685,17,1.0,2,1.5107873678207397,186,1.0,3 +86686,17,1.0,2,1.5377870798110962,187,0.0,3 +86687,17,0.0,2,1.5227872133255005,188,0.0,3 +86688,17,1.0,2,1.4747878313064575,189,1.0,3 +86689,17,1.0,2,1.2627902030944824,190,0.0,3 +86690,17,0.0,2,1.295790195465088,191,0.0,3 +86691,17,1.0,2,1.5847864151000977,192,0.0,3 +86692,17,1.0,2,1.8867826461791992,193,0.0,3 +86693,17,0.0,2,1.3247897624969482,194,0.0,3 +86694,17,0.0,2,1.2977901697158813,195,1.0,3 +86695,17,0.0,2,1.282790184020996,196,0.0,3 +86696,17,0.0,2,2.1367850303649902,197,0.0,3 +86697,17,0.0,2,1.3127899169921875,198,0.0,3 +86698,17,0.0,2,1.3967888355255127,199,1.0,3 +86699,17,0.0,2,1.1797900199890137,200,1.0,3 +86700,17,0.0,2,1.3057900667190552,201,0.0,3 +86701,17,0.0,2,1.7417844533920288,202,1.0,3 +86702,17,0.0,2,1.3287897109985352,203,1.0,3 +86703,17,0.0,2,1.2937902212142944,204,0.0,3 +86704,17,0.0,2,1.12378990650177,205,0.0,3 +86705,17,1.0,2,1.5997862815856934,206,0.0,3 +86706,17,0.0,2,1.6247859001159668,207,0.0,3 +86707,17,0.0,2,1.9817813634872437,208,0.0,3 +86708,17,0.0,2,1.622786045074463,209,0.0,3 +86709,17,0.0,2,1.2987900972366333,210,1.0,3 +86710,17,0.0,2,1.2967901229858398,211,1.0,3 +86711,17,0.0,2,1.251790165901184,212,0.0,3 +86712,17,0.0,2,2.1397852897644043,213,0.0,3 +86713,17,0.0,2,1.1417899131774902,214,0.0,3 +86714,17,0.0,2,2.053781032562256,215,0.0,3 +86715,17,0.0,2,1.5737866163253784,216,1.0,3 +86716,17,0.0,2,1.4077887535095215,217,0.0,3 +86717,17,0.0,2,1.480787754058838,218,1.0,3 +86718,17,0.0,2,1.2657902240753174,219,1.0,3 +86719,17,0.0,2,1.3907889127731323,220,0.0,3 +86720,17,0.0,2,1.4877877235412598,221,0.0,3 +86721,17,1.0,2,1.8537830114364624,222,1.0,3 +86722,17,1.0,2,1.4827877283096313,223,0.0,3 +86723,17,0.0,2,1.2647901773452759,224,0.0,3 +86724,17,0.0,2,1.6977850198745728,225,1.0,3 +86725,17,1.0,2,1.409788727760315,226,1.0,3 +86726,17,0.0,2,1.7187848091125488,227,0.0,3 +86727,17,1.0,2,1.285790205001831,228,0.0,3 +86728,17,1.0,2,1.3307896852493286,229,1.0,3 +86729,17,1.0,2,1.332789659500122,230,0.0,3 +86730,17,1.0,2,1.292790174484253,231,1.0,3 +86731,17,1.0,2,1.2387901544570923,232,1.0,3 +86732,17,1.0,2,1.4817878007888794,233,0.0,3 +86733,17,0.0,2,1.227790117263794,234,0.0,3 +86734,17,1.0,2,1.990781307220459,235,0.0,3 +86735,17,1.0,2,1.4017888307571411,236,0.0,3 +86736,17,0.0,2,1.2227901220321655,237,0.0,3 +86737,17,0.0,2,1.527787208557129,238,1.0,3 +86738,17,0.0,2,1.2877901792526245,239,0.0,3 +86739,17,0.0,2,1.225790023803711,240,1.0,3 +86740,17,0.0,2,1.3417896032333374,241,1.0,3 +86741,17,0.0,2,1.2197901010513306,242,0.0,3 +86742,17,0.0,2,1.7247846126556396,243,1.0,3 +86743,17,0.0,2,1.3677892684936523,244,0.0,3 +86744,17,0.0,2,1.2987900972366333,245,0.0,3 +86745,17,1.0,2,1.8707828521728516,246,1.0,3 +86746,17,1.0,2,1.3347896337509155,247,0.0,3 +86747,17,0.0,2,1.2747901678085327,248,1.0,3 +86748,17,0.0,2,1.1697900295257568,249,0.0,3 +86749,17,0.0,2,1.2027900218963623,250,1.0,3 +86750,17,0.0,2,1.4637880325317383,251,1.0,3 +86751,17,0.0,2,1.4037888050079346,252,0.0,3 +86752,17,0.0,2,1.2337901592254639,253,1.0,3 +86753,17,0.0,2,1.5257872343063354,254,0.0,3 +86754,17,0.0,2,1.1987900733947754,255,1.0,3 +86755,17,0.0,2,1.2417900562286377,256,0.0,3 +86756,17,0.0,2,1.6427857875823975,257,0.0,3 +86757,17,1.0,2,1.943781852722168,258,0.0,3 +86758,17,0.0,2,1.7657841444015503,259,0.0,3 +86759,17,1.0,2,1.5997862815856934,260,0.0,3 +86760,17,0.0,2,2.2537903785705566,261,0.0,3 +86761,17,1.0,2,1.4737879037857056,262,1.0,3 +86762,17,1.0,2,1.4127886295318604,263,0.0,3 +86763,17,1.0,2,1.664785385131836,264,1.0,3 +86764,17,1.0,2,1.6947851181030273,265,1.0,3 +86765,17,1.0,2,1.431788444519043,266,1.0,3 +86766,17,0.0,2,1.317789912223816,267,0.0,3 +86767,17,1.0,2,1.387789011001587,268,0.0,3 +86768,17,1.0,2,1.8207833766937256,269,0.0,3 +86769,17,0.0,2,1.1977900266647339,270,1.0,3 +86770,17,0.0,2,1.1447899341583252,271,0.0,3 +86771,17,1.0,2,1.7227847576141357,272,1.0,3 +86772,17,1.0,2,1.332789659500122,273,0.0,3 +86773,17,0.0,2,1.335789680480957,274,0.0,3 +86774,17,1.0,2,1.7357845306396484,275,1.0,3 +86775,17,1.0,2,1.5817865133285522,276,0.0,3 +86776,17,1.0,2,1.3227897882461548,277,1.0,3 +86777,17,1.0,2,1.254790186882019,278,0.0,3 +86778,17,1.0,2,1.6177860498428345,279,0.0,3 +86779,17,0.0,2,1.450788140296936,280,1.0,3 +86780,17,0.0,2,1.1147898435592651,281,0.0,3 +86781,17,0.0,2,1.1807899475097656,282,0.0,3 +86782,17,0.0,2,2.296792507171631,283,0.0,3 +86783,17,1.0,2,1.2497901916503906,284,1.0,3 +86784,17,1.0,2,1.4457882642745972,285,1.0,3 +86785,17,1.0,2,1.252790093421936,286,1.0,3 +86786,17,1.0,2,1.5307871103286743,287,0.0,3 +86787,17,1.0,2,1.519787311553955,288,0.0,3 +86788,17,1.0,2,1.663785457611084,289,0.0,3 +86789,17,0.0,2,1.1777899265289307,290,0.0,3 +86790,17,0.0,2,2.080782413482666,291,0.0,3 +86791,17,0.0,2,1.8577829599380493,292,0.0,3 +86792,17,0.0,2,1.2727901935577393,293,0.0,3 +86793,17,0.0,2,1.3777891397476196,294,1.0,3 +86794,17,1.0,2,1.6747853755950928,295,1.0,3 +86795,17,0.0,2,1.9567816257476807,296,0.0,3 +86796,17,1.0,2,1.2767901420593262,297,0.0,3 +86797,17,1.0,2,1.453788161277771,298,0.0,3 +86798,17,1.0,2,1.5367870330810547,299,1.0,3 +86799,17,1.0,2,1.340789556503296,300,0.0,3 +86800,17,0.0,2,1.3077900409698486,301,0.0,3 +86801,17,0.0,2,2.2177886962890625,302,1.0,3 +86802,17,0.0,2,1.567786693572998,303,0.0,3 +86803,17,0.0,2,1.2997901439666748,304,0.0,3 +86804,17,0.0,2,2.141785144805908,305,0.0,3 +86805,17,0.0,2,1.541787028312683,306,0.0,3 +86806,17,1.0,2,1.7167847156524658,307,0.0,3 +86807,17,0.0,2,1.7627842426300049,308,1.0,3 +86808,17,0.0,2,1.3317897319793701,309,1.0,3 +86809,17,0.0,2,1.1677899360656738,310,0.0,3 +86810,17,0.0,2,1.9627816677093506,311,0.0,3 +86811,17,0.0,2,1.4587880373001099,312,1.0,3 +86812,17,0.0,2,1.2637901306152344,313,0.0,3 +86813,17,0.0,2,1.289790153503418,314,0.0,3 +86814,17,0.0,2,1.848783016204834,315,1.0,3 +86815,17,0.0,2,1.154789924621582,316,1.0,3 +86816,17,0.0,2,1.3887889385223389,317,1.0,3 +86817,17,0.0,2,1.4157886505126953,318,0.0,3 +86818,17,1.0,2,1.5227872133255005,319,1.0,3 +86819,17,1.0,2,1.2407901287078857,320,0.0,3 +86820,17,1.0,2,1.8137835264205933,321,1.0,3 +86821,17,0.0,2,1.2727901935577393,322,1.0,3 +86822,17,0.0,2,1.3337897062301636,323,1.0,3 +86823,17,1.0,2,1.3857890367507935,324,0.0,3 +86824,17,0.0,2,1.2007900476455688,325,1.0,3 +86825,17,0.0,2,1.3777891397476196,326,1.0,3 +86826,17,0.0,2,2.368795871734619,327,0.0,3 +86827,17,0.0,2,1.291790246963501,328,1.0,3 +86828,17,0.0,2,1.54578697681427,329,0.0,3 +86829,17,0.0,2,2.1787869930267334,330,0.0,3 +86830,17,0.0,2,1.5557868480682373,331,1.0,3 +86831,17,0.0,2,1.6337858438491821,332,1.0,3 +86832,17,0.0,2,1.228790044784546,333,0.0,3 +86833,17,1.0,2,1.3837890625,334,0.0,3 +86834,17,1.0,2,1.8717827796936035,335,0.0,3 +86835,17,0.0,2,1.5137873888015747,336,0.0,3 +86836,17,1.0,2,1.9417818784713745,337,0.0,3 +86837,17,1.0,2,1.6427857875823975,338,1.0,3 +86838,17,1.0,2,1.225790023803711,339,1.0,3 +86839,17,1.0,2,1.163789987564087,340,0.0,3 +86840,17,0.0,2,1.357789397239685,341,0.0,3 +86841,17,0.0,2,2.1857872009277344,342,0.0,3 +86842,17,1.0,2,1.5147873163223267,343,1.0,3 +86843,17,1.0,2,1.387789011001587,344,0.0,3 +86844,17,1.0,2,1.5297871828079224,345,0.0,3 +86845,17,0.0,2,1.3027900457382202,346,0.0,3 +86846,17,0.0,2,1.7427845001220703,347,1.0,3 +86847,17,0.0,2,1.7617841958999634,348,0.0,3 +86848,17,1.0,2,1.449788212776184,349,0.0,3 +86849,17,0.0,2,1.6217859983444214,350,0.0,3 +86850,17,0.0,2,1.2367900609970093,351,0.0,3 +86851,17,0.0,2,1.2237900495529175,352,0.0,3 +86852,17,0.0,2,1.9347820281982422,353,0.0,3 +86853,17,0.0,2,1.4267884492874146,354,0.0,3 +86854,17,1.0,2,2.119784355163574,355,1.0,3 +86855,17,1.0,2,1.4897876977920532,356,1.0,3 +86856,17,1.0,2,1.291790246963501,357,0.0,3 +86857,17,1.0,2,1.6797852516174316,358,0.0,3 +86858,17,0.0,2,1.258790135383606,359,0.0,3 +86859,17,0.0,2,1.7657841444015503,360,0.0,3 +86860,17,0.0,2,1.9007823467254639,361,0.0,3 +86861,17,1.0,2,1.3917889595031738,362,1.0,3 +86862,17,1.0,2,1.1857900619506836,363,1.0,3 +86863,17,1.0,2,1.2067900896072388,364,0.0,3 +86864,17,0.0,2,1.218790054321289,365,0.0,3 +86865,17,0.0,2,1.2647901773452759,366,1.0,3 +86866,17,0.0,2,1.6957850456237793,367,0.0,3 +86867,17,0.0,2,1.3267897367477417,368,0.0,3 +86868,17,1.0,2,1.497787594795227,369,0.0,3 +86869,17,0.0,2,1.9497817754745483,370,1.0,3 +86870,17,0.0,2,1.4967875480651855,371,0.0,3 +86871,17,1.0,2,1.6887850761413574,372,0.0,3 +86872,17,1.0,2,1.854783058166504,373,0.0,3 +86873,17,0.0,2,1.2907902002334595,374,0.0,3 +86874,17,1.0,2,1.9937812089920044,375,1.0,3 +86875,17,1.0,2,1.6937850713729858,376,0.0,3 +86876,17,0.0,2,1.3687891960144043,377,0.0,3 +86877,17,1.0,2,1.288790225982666,378,1.0,3 +86878,17,1.0,2,1.5857864618301392,379,1.0,3 +86879,17,1.0,2,1.3787890672683716,380,1.0,3 +86880,17,1.0,2,1.2297900915145874,381,0.0,3 +86881,17,0.0,2,1.7257846593856812,382,0.0,3 +86882,17,1.0,2,2.1487855911254883,383,1.0,3 +86883,17,1.0,2,1.2237900495529175,384,0.0,3 +86884,17,0.0,2,1.228790044784546,385,1.0,3 +86885,17,0.0,2,1.291790246963501,386,0.0,3 +86886,17,0.0,2,1.6057862043380737,387,1.0,3 +86887,17,0.0,2,1.1127898693084717,388,1.0,3 +86888,17,0.0,2,1.2137900590896606,389,1.0,3 +86889,17,0.0,2,1.428788423538208,390,0.0,3 +86890,17,1.0,2,1.5227872133255005,391,1.0,3 +86891,17,1.0,2,1.4267884492874146,392,0.0,3 +86892,17,0.0,2,1.2047899961471558,393,1.0,3 +86893,17,0.0,2,1.6977850198745728,394,0.0,3 +86894,17,0.0,2,1.358789324760437,395,0.0,3 +86895,17,1.0,2,1.3957889080047607,396,1.0,3 +86896,17,1.0,2,1.3657892942428589,397,1.0,3 +86897,17,1.0,2,1.5547869205474854,398,0.0,3 +86898,17,0.0,2,1.3467894792556763,399,1.0,3 +86899,17,0.0,2,1.1977900266647339,400,0.0,3 +86900,17,0.0,2,1.3377896547317505,401,0.0,3 +86901,17,0.0,2,1.616786003112793,402,0.0,3 +86902,17,0.0,2,1.282790184020996,403,1.0,3 +86903,17,0.0,2,1.6137861013412476,404,0.0,3 +86904,17,0.0,2,1.681785225868225,405,0.0,3 +86905,17,1.0,2,1.8827826976776123,406,0.0,3 +86906,17,1.0,2,1.7677841186523438,407,0.0,3 +86907,17,0.0,2,1.379789113998413,408,0.0,3 +86908,17,1.0,2,1.894782543182373,409,1.0,3 +86909,17,0.0,2,1.228790044784546,410,0.0,3 +86910,17,0.0,2,1.339789628982544,411,0.0,3 +86911,17,1.0,2,1.2777901887893677,412,1.0,3 +86912,17,1.0,2,1.2607901096343994,413,0.0,3 +86913,17,0.0,2,1.7907838821411133,414,0.0,3 +86914,17,1.0,2,1.5397870540618896,415,1.0,3 +86915,17,1.0,2,1.498787522315979,416,1.0,3 +86916,17,1.0,2,1.4337884187698364,417,1.0,3 +86917,17,1.0,2,1.618786096572876,418,0.0,3 +86918,17,0.0,2,1.7417844533920288,419,0.0,3 +86919,17,1.0,2,1.5817865133285522,420,0.0,3 +86920,17,1.0,2,1.992781162261963,421,1.0,3 +86921,17,1.0,2,1.190790057182312,422,0.0,3 +86922,17,1.0,2,1.6407856941223145,423,0.0,3 +86923,17,1.0,2,1.40678870677948,424,0.0,3 +86924,17,0.0,2,1.2997901439666748,425,1.0,3 +86925,17,0.0,2,1.807783603668213,426,1.0,3 +86926,17,0.0,2,1.35478937625885,427,0.0,3 +86927,17,0.0,2,1.5917863845825195,428,0.0,3 +86928,17,0.0,2,1.4627879858016968,429,0.0,3 +86929,17,0.0,2,1.2117900848388672,430,1.0,3 +86930,17,0.0,2,1.4407882690429688,431,0.0,3 +86931,17,0.0,2,1.3027900457382202,432,0.0,3 +86932,17,1.0,2,1.9627816677093506,433,1.0,3 +86933,17,1.0,2,1.3507894277572632,434,0.0,3 +86934,17,1.0,2,2.044780731201172,435,1.0,3 +86935,17,1.0,2,1.3157899379730225,436,1.0,3 +86936,17,1.0,2,1.2367900609970093,437,1.0,3 +86937,17,1.0,2,1.4477882385253906,438,1.0,3 +86938,17,1.0,2,1.2407901287078857,439,1.0,3 +86939,17,1.0,2,1.2477900981903076,440,0.0,3 +86940,17,1.0,2,1.472787857055664,441,0.0,3 +86941,17,0.0,2,1.2227901220321655,442,0.0,3 +86942,17,1.0,2,1.796783685684204,443,1.0,3 +86943,17,0.0,2,2.0137810707092285,444,0.0,3 +86944,17,1.0,2,1.4307883977890015,445,0.0,3 +86945,17,1.0,2,1.5097874402999878,446,1.0,3 +86946,17,0.0,2,1.5467870235443115,447,0.0,3 +86947,17,0.0,2,1.6937850713729858,448,0.0,3 +86948,17,1.0,2,1.3967888355255127,449,1.0,3 +86949,17,1.0,2,1.6977850198745728,450,0.0,3 +86950,17,0.0,2,1.6317858695983887,451,0.0,3 +86951,17,1.0,2,1.3057900667190552,452,1.0,3 +86952,17,1.0,2,1.2047899961471558,453,1.0,3 +86953,17,1.0,2,1.7017849683761597,454,1.0,3 +86954,17,1.0,2,1.1757899522781372,455,1.0,3 +86955,17,1.0,2,1.4257885217666626,456,0.0,3 +86956,17,1.0,2,1.6087861061096191,457,1.0,3 +86957,17,1.0,2,1.2987900972366333,458,1.0,3 +86958,17,1.0,2,1.3087899684906006,459,1.0,3 +86959,17,1.0,2,1.340789556503296,460,0.0,3 +86960,17,1.0,2,1.4907876253128052,461,0.0,3 +86961,17,1.0,2,1.2417900562286377,462,1.0,3 +86962,17,1.0,2,1.4607880115509033,463,0.0,3 +86963,17,0.0,2,1.1147898435592651,464,0.0,3 +86964,17,0.0,2,1.8857825994491577,465,1.0,3 +86965,17,0.0,2,1.2877901792526245,466,0.0,3 +86966,17,1.0,2,1.8857825994491577,467,1.0,3 +86967,17,1.0,2,1.6757853031158447,468,0.0,3 +86968,17,1.0,2,1.9567816257476807,469,1.0,3 +86969,17,0.0,2,1.501787543296814,470,0.0,3 +86970,17,1.0,2,1.3287897109985352,471,0.0,3 +86971,17,0.0,2,1.472787857055664,472,0.0,3 +86972,17,0.0,2,1.2817902565002441,473,0.0,3 +86973,17,0.0,2,1.895782470703125,474,1.0,3 +86974,17,0.0,2,1.6277859210968018,475,0.0,3 +86975,17,1.0,2,1.3767890930175781,476,1.0,3 +86976,17,1.0,2,1.8637828826904297,477,1.0,3 +86977,17,1.0,2,1.3457895517349243,478,1.0,3 +86978,17,1.0,2,1.3927888870239258,479,1.0,3 +86979,17,1.0,2,1.4217885732650757,480,1.0,3 +86980,17,1.0,2,1.4997875690460205,481,0.0,3 +86981,17,0.0,2,1.799783706665039,482,0.0,3 +86982,17,0.0,2,1.6727852821350098,483,1.0,3 +86983,17,0.0,2,1.4417883157730103,484,1.0,3 +86984,17,0.0,2,1.1347899436950684,485,1.0,3 +86985,17,0.0,2,1.7657841444015503,486,0.0,3 +86986,17,0.0,2,2.032780647277832,487,0.0,3 +86987,17,0.0,2,1.4857877492904663,488,1.0,3 +86988,17,0.0,2,1.5977863073349,489,0.0,3 +86989,17,1.0,2,1.5467870235443115,490,0.0,3 +86990,17,1.0,2,1.9317820072174072,491,0.0,3 +86991,17,0.0,2,1.4627879858016968,492,1.0,3 +86992,17,0.0,2,1.7477843761444092,493,1.0,3 +86993,17,0.0,2,1.1257898807525635,494,0.0,3 +86994,17,0.0,2,1.3267897367477417,495,1.0,3 +86995,17,0.0,2,1.3227897882461548,496,1.0,3 +86996,17,0.0,2,1.4997875690460205,497,0.0,3 +86997,17,0.0,2,1.5087873935699463,498,0.0,3 +86998,17,0.0,2,1.549786925315857,499,0.0,3 +86999,17,0.0,2,1.3317897319793701,500,0.0,3 +87000,18,1.0,0,1.6950339078903198,1,1.0,3 +87001,18,0.0,0,1.2720386981964111,2,0.0,3 +87002,18,0.0,0,1.7720329761505127,3,0.0,3 +87003,18,1.0,0,2.3050403594970703,4,0.0,3 +87004,18,0.0,0,2.5720529556274414,5,0.0,3 +87005,18,0.0,0,2.0720295906066895,6,0.0,3 +87006,18,1.0,0,1.687034010887146,7,1.0,3 +87007,18,1.0,0,1.831032156944275,8,1.0,3 +87008,18,1.0,0,1.754033088684082,9,1.0,3 +87009,18,0.0,0,2.181034564971924,10,0.0,3 +87010,18,1.0,0,1.4910365343093872,11,1.0,3 +87011,18,1.0,0,1.7550331354141235,12,1.0,3 +87012,18,1.0,0,1.9680304527282715,13,1.0,3 +87013,18,1.0,0,1.804032564163208,14,1.0,3 +87014,18,1.0,0,1.6730341911315918,15,1.0,3 +87015,18,1.0,0,1.3000388145446777,16,1.0,3 +87016,18,1.0,0,1.683034062385559,17,1.0,3 +87017,18,1.0,0,1.639034628868103,18,1.0,3 +87018,18,1.0,0,1.288038730621338,19,1.0,3 +87019,18,1.0,0,1.6340346336364746,20,1.0,3 +87020,18,1.0,0,1.963030457496643,21,1.0,3 +87021,18,1.0,0,1.5420358180999756,22,0.0,3 +87022,18,1.0,0,2.2970399856567383,23,1.0,3 +87023,18,1.0,0,1.5120362043380737,24,1.0,3 +87024,18,1.0,0,1.4750367403030396,25,0.0,3 +87025,18,1.0,0,1.5780353546142578,26,1.0,3 +87026,18,1.0,0,2.155033588409424,27,1.0,3 +87027,18,1.0,0,1.473036766052246,28,1.0,3 +87028,18,1.0,0,1.5070363283157349,29,1.0,3 +87029,18,1.0,0,2.2980401515960693,30,1.0,3 +87030,18,0.0,0,1.8160324096679688,31,0.0,3 +87031,18,1.0,0,1.7760329246520996,32,1.0,3 +87032,18,1.0,0,1.2770386934280396,33,1.0,3 +87033,18,1.0,0,1.7260334491729736,34,0.0,3 +87034,18,1.0,0,2.237037181854248,35,1.0,3 +87035,18,1.0,0,1.6530344486236572,36,1.0,3 +87036,18,1.0,0,1.2900387048721313,37,0.0,3 +87037,18,1.0,0,1.6550344228744507,38,1.0,3 +87038,18,1.0,0,1.6450345516204834,39,1.0,3 +87039,18,1.0,0,1.6890339851379395,40,1.0,3 +87040,18,0.0,0,2.719059944152832,41,0.0,3 +87041,18,1.0,0,1.5580356121063232,42,1.0,3 +87042,18,1.0,0,1.4380371570587158,43,1.0,3 +87043,18,1.0,0,1.2740386724472046,44,1.0,3 +87044,18,1.0,0,1.4880365133285522,45,1.0,3 +87045,18,0.0,0,1.9360308647155762,46,0.0,3 +87046,18,0.0,0,1.668034315109253,47,1.0,3 +87047,18,0.0,0,1.1670384407043457,48,1.0,3 +87048,18,0.0,0,1.7300333976745605,49,0.0,3 +87049,18,0.0,0,1.6020350456237793,50,0.0,3 +87050,18,1.0,0,1.3790379762649536,51,1.0,3 +87051,18,1.0,0,1.2520387172698975,52,1.0,3 +87052,18,1.0,0,1.7690329551696777,53,1.0,3 +87053,18,1.0,0,1.4670368432998657,54,1.0,3 +87054,18,0.0,0,1.9970300197601318,55,0.0,3 +87055,18,1.0,0,1.5670355558395386,56,1.0,3 +87056,18,1.0,0,1.5930352210998535,57,1.0,3 +87057,18,1.0,0,1.5820353031158447,58,1.0,3 +87058,18,1.0,0,1.2470386028289795,59,1.0,3 +87059,18,1.0,0,1.6790341138839722,60,1.0,3 +87060,18,1.0,0,1.573035478591919,61,0.0,3 +87061,18,1.0,0,1.775032877922058,62,1.0,3 +87062,18,1.0,0,1.4790366888046265,63,0.0,3 +87063,18,0.0,0,1.3050388097763062,64,1.0,3 +87064,18,0.0,0,2.189034938812256,65,1.0,3 +87065,18,0.0,0,1.6940338611602783,66,0.0,3 +87066,18,0.0,0,2.210036039352417,67,0.0,3 +87067,18,1.0,0,1.433037281036377,68,1.0,3 +87068,18,1.0,0,1.3940377235412598,69,1.0,3 +87069,18,1.0,0,1.6590343713760376,70,0.0,3 +87070,18,1.0,0,1.706033706665039,71,1.0,3 +87071,18,1.0,0,1.433037281036377,72,1.0,3 +87072,18,1.0,0,1.6410346031188965,73,1.0,3 +87073,18,1.0,0,2.0670294761657715,74,1.0,3 +87074,18,1.0,0,2.1230320930480957,75,1.0,3 +87075,18,1.0,0,1.2930387258529663,76,1.0,3 +87076,18,1.0,0,1.2470386028289795,77,0.0,3 +87077,18,1.0,0,2.2760391235351562,78,1.0,3 +87078,18,1.0,0,1.254038691520691,79,1.0,3 +87079,18,1.0,0,1.526036024093628,80,1.0,3 +87080,18,1.0,0,1.4640368223190308,81,1.0,3 +87081,18,1.0,0,1.8890314102172852,82,1.0,3 +87082,18,1.0,0,1.798032522201538,83,1.0,3 +87083,18,0.0,0,2.477048397064209,84,1.0,3 +87084,18,0.0,0,2.675057888031006,85,0.0,3 +87085,18,1.0,0,2.143033027648926,86,1.0,3 +87086,18,1.0,0,1.3450384140014648,87,1.0,3 +87087,18,1.0,0,1.9520306587219238,88,1.0,3 +87088,18,1.0,0,2.499049663543701,89,1.0,3 +87089,18,0.0,0,1.7740328311920166,90,0.0,3 +87090,18,1.0,0,1.2560386657714844,91,1.0,3 +87091,18,1.0,0,1.8430320024490356,92,0.0,3 +87092,18,1.0,0,1.4380371570587158,93,1.0,3 +87093,18,1.0,0,1.5450358390808105,94,1.0,3 +87094,18,1.0,0,1.4130375385284424,95,1.0,3 +87095,18,1.0,0,1.3650381565093994,96,1.0,3 +87096,18,1.0,0,1.3050388097763062,97,1.0,3 +87097,18,1.0,0,1.80503249168396,98,1.0,3 +87098,18,1.0,0,1.364038109779358,99,0.0,3 +87099,18,0.0,0,2.143033027648926,100,0.0,3 +87100,18,0.0,0,1.7290334701538086,101,0.0,3 +87101,18,0.0,0,1.710033655166626,102,0.0,3 +87102,18,0.0,0,1.2120386362075806,103,1.0,3 +87103,18,0.0,0,1.9290308952331543,104,1.0,3 +87104,18,0.0,0,1.3980376720428467,105,0.0,3 +87105,18,1.0,0,1.8870314359664917,106,0.0,3 +87106,18,0.0,0,1.660034418106079,107,0.0,3 +87107,18,0.0,0,1.1640385389328003,108,0.0,3 +87108,18,1.0,0,2.452047348022461,109,0.0,3 +87109,18,0.0,0,1.574035406112671,110,1.0,3 +87110,18,0.0,0,1.621034860610962,111,0.0,3 +87111,18,1.0,0,1.8790315389633179,112,1.0,3 +87112,18,1.0,0,1.279038667678833,113,1.0,3 +87113,18,1.0,0,1.2630386352539062,114,1.0,3 +87114,18,1.0,0,1.551035761833191,115,1.0,3 +87115,18,1.0,0,1.6450345516204834,116,1.0,3 +87116,18,1.0,0,1.8890314102172852,117,1.0,3 +87117,18,1.0,0,1.8400321006774902,118,1.0,3 +87118,18,0.0,0,2.0160298347473145,119,0.0,3 +87119,18,1.0,0,1.4450371265411377,120,1.0,3 +87120,18,1.0,0,1.706033706665039,121,1.0,3 +87121,18,1.0,0,1.5040363073349,122,1.0,3 +87122,18,1.0,0,1.5280359983444214,123,1.0,3 +87123,18,1.0,0,1.5080362558364868,124,1.0,3 +87124,18,1.0,0,1.2730387449264526,125,1.0,3 +87125,18,1.0,0,1.6730341911315918,126,1.0,3 +87126,18,1.0,0,1.9330308437347412,127,1.0,3 +87127,18,1.0,0,1.6760342121124268,128,1.0,3 +87128,18,1.0,0,1.7210335731506348,129,1.0,3 +87129,18,1.0,0,2.8120641708374023,130,1.0,3 +87130,18,1.0,0,1.845031976699829,131,1.0,3 +87131,18,1.0,0,1.7470332384109497,132,1.0,3 +87132,18,1.0,0,2.0490293502807617,133,0.0,3 +87133,18,0.0,0,1.66603422164917,134,0.0,3 +87134,18,0.0,0,1.4920364618301392,135,0.0,3 +87135,18,1.0,0,1.7810328006744385,136,1.0,3 +87136,18,1.0,0,2.163033962249756,137,1.0,3 +87137,18,1.0,0,1.5160361528396606,138,1.0,3 +87138,18,1.0,0,1.7400333881378174,139,1.0,3 +87139,18,1.0,0,1.4660367965698242,140,1.0,3 +87140,18,1.0,0,1.455036997795105,141,1.0,3 +87141,18,1.0,0,2.200035572052002,142,1.0,3 +87142,18,1.0,0,1.7190335988998413,143,0.0,3 +87143,18,1.0,0,1.7930326461791992,144,1.0,3 +87144,18,1.0,0,1.306038737297058,145,1.0,3 +87145,18,1.0,0,1.6850340366363525,146,1.0,3 +87146,18,1.0,0,1.4640368223190308,147,1.0,3 +87147,18,1.0,0,1.595035195350647,148,1.0,3 +87148,18,1.0,0,2.0580291748046875,149,1.0,3 +87149,18,1.0,0,1.5450358390808105,150,1.0,3 +87150,18,1.0,0,1.5550357103347778,151,0.0,3 +87151,18,1.0,0,1.473036766052246,152,1.0,3 +87152,18,1.0,0,1.547035813331604,153,1.0,3 +87153,18,0.0,0,1.6520345211029053,154,0.0,3 +87154,18,1.0,0,1.4360371828079224,155,1.0,3 +87155,18,1.0,0,1.5870352983474731,156,1.0,3 +87156,18,1.0,0,1.9290308952331543,157,1.0,3 +87157,18,1.0,0,1.5460357666015625,158,1.0,3 +87158,18,1.0,0,1.8400321006774902,159,1.0,3 +87159,18,1.0,0,1.382037878036499,160,1.0,3 +87160,18,0.0,0,2.1280322074890137,161,1.0,3 +87161,18,0.0,0,2.190035104751587,162,0.0,3 +87162,18,1.0,0,1.683034062385559,163,1.0,3 +87163,18,1.0,0,1.529036045074463,164,1.0,3 +87164,18,1.0,0,1.572035551071167,165,1.0,3 +87165,18,1.0,0,1.8850314617156982,166,1.0,3 +87166,18,0.0,0,1.6300346851348877,167,0.0,3 +87167,18,0.0,0,1.3520382642745972,168,0.0,3 +87168,18,0.0,0,1.849031925201416,169,0.0,3 +87169,18,1.0,0,1.333038568496704,170,1.0,3 +87170,18,1.0,0,1.6370346546173096,171,1.0,3 +87171,18,1.0,0,2.256038188934326,172,1.0,3 +87172,18,1.0,0,1.7150336503982544,173,1.0,3 +87173,18,1.0,0,1.5420358180999756,174,1.0,3 +87174,18,1.0,0,1.3510383367538452,175,1.0,3 +87175,18,1.0,0,1.2070386409759521,176,1.0,3 +87176,18,0.0,0,1.5980350971221924,177,0.0,3 +87177,18,1.0,0,1.992030143737793,178,1.0,3 +87178,18,1.0,0,1.5540356636047363,179,1.0,3 +87179,18,1.0,0,1.6400346755981445,180,1.0,3 +87180,18,1.0,0,1.4230374097824097,181,1.0,3 +87181,18,1.0,0,1.8210322856903076,182,1.0,3 +87182,18,1.0,0,1.801032543182373,183,1.0,3 +87183,18,1.0,0,1.451037049293518,184,1.0,3 +87184,18,0.0,0,1.5410358905792236,185,0.0,3 +87185,18,1.0,0,1.8670316934585571,186,1.0,3 +87186,18,1.0,0,2.236037254333496,187,1.0,3 +87187,18,1.0,0,1.4940364360809326,188,1.0,3 +87188,18,1.0,0,1.3540382385253906,189,1.0,3 +87189,18,1.0,0,2.041029453277588,190,0.0,3 +87190,18,1.0,0,2.0750298500061035,191,1.0,3 +87191,18,1.0,0,1.287038803100586,192,1.0,3 +87192,18,1.0,0,1.389037847518921,193,1.0,3 +87193,18,1.0,0,1.6190348863601685,194,0.0,3 +87194,18,1.0,0,1.5980350971221924,195,0.0,3 +87195,18,1.0,0,1.99003005027771,196,1.0,3 +87196,18,1.0,0,1.2460386753082275,197,1.0,3 +87197,18,1.0,0,1.621034860610962,198,1.0,3 +87198,18,1.0,0,1.6020350456237793,199,1.0,3 +87199,18,1.0,0,1.901031255722046,200,1.0,3 +87200,18,1.0,0,2.201035499572754,201,1.0,3 +87201,18,1.0,0,1.8740315437316895,202,1.0,3 +87202,18,0.0,0,1.4020376205444336,203,0.0,3 +87203,18,1.0,0,1.5590356588363647,204,1.0,3 +87204,18,1.0,0,2.0040299892425537,205,1.0,3 +87205,18,1.0,0,1.6760342121124268,206,1.0,3 +87206,18,1.0,0,1.3550382852554321,207,1.0,3 +87207,18,1.0,0,1.4760366678237915,208,1.0,3 +87208,18,1.0,0,2.5390515327453613,209,1.0,3 +87209,18,1.0,0,2.029029607772827,210,1.0,3 +87210,18,1.0,0,2.0890302658081055,211,1.0,3 +87211,18,0.0,0,1.6010351181030273,212,1.0,3 +87212,18,0.0,0,1.806032419204712,213,0.0,3 +87213,18,1.0,0,1.5460357666015625,214,1.0,3 +87214,18,1.0,0,1.7110337018966675,215,1.0,3 +87215,18,1.0,0,1.6560344696044922,216,1.0,3 +87216,18,1.0,0,1.3770380020141602,217,1.0,3 +87217,18,1.0,0,1.6900339126586914,218,1.0,3 +87218,18,1.0,0,1.309038758277893,219,1.0,3 +87219,18,1.0,0,1.5400358438491821,220,1.0,3 +87220,18,1.0,0,2.0820300579071045,221,1.0,3 +87221,18,1.0,0,1.6080350875854492,222,1.0,3 +87222,18,1.0,0,1.316038727760315,223,1.0,3 +87223,18,1.0,0,1.5350359678268433,224,1.0,3 +87224,18,1.0,0,1.4750367403030396,225,1.0,3 +87225,18,1.0,0,1.61403489112854,226,1.0,3 +87226,18,1.0,0,1.3610382080078125,227,1.0,3 +87227,18,1.0,0,1.8810315132141113,228,0.0,3 +87228,18,1.0,0,1.7760329246520996,229,1.0,3 +87229,18,0.0,0,2.000030040740967,230,1.0,3 +87230,18,0.0,0,1.2590386867523193,231,1.0,3 +87231,18,1.0,0,1.378037929534912,232,1.0,3 +87232,18,1.0,0,1.9120311737060547,233,1.0,3 +87233,18,0.0,0,1.3360384702682495,234,0.0,3 +87234,18,1.0,0,2.0580291748046875,235,0.0,3 +87235,18,1.0,0,1.798032522201538,236,1.0,3 +87236,18,1.0,0,1.5190361738204956,237,1.0,3 +87237,18,1.0,0,1.9140310287475586,238,1.0,3 +87238,18,1.0,0,1.3510383367538452,239,1.0,3 +87239,18,1.0,0,1.45203697681427,240,1.0,3 +87240,18,0.0,0,2.774062395095825,241,0.0,3 +87241,18,1.0,0,1.7180335521697998,242,1.0,3 +87242,18,1.0,0,1.7470332384109497,243,1.0,3 +87243,18,1.0,0,1.5990351438522339,244,1.0,3 +87244,18,1.0,0,2.415045738220215,245,1.0,3 +87245,18,1.0,0,1.5820353031158447,246,1.0,3 +87246,18,1.0,0,1.5530357360839844,247,1.0,3 +87247,18,1.0,0,2.3700435161590576,248,1.0,3 +87248,18,1.0,0,1.4540369510650635,249,1.0,3 +87249,18,1.0,0,1.7680330276489258,250,1.0,3 +87250,18,1.0,0,1.7890326976776123,251,1.0,3 +87251,18,1.0,0,1.518036127090454,252,0.0,3 +87252,18,0.0,0,1.808032512664795,253,0.0,3 +87253,18,0.0,0,2.3790440559387207,254,0.0,3 +87254,18,1.0,0,1.7400333881378174,255,1.0,3 +87255,18,1.0,0,1.451037049293518,256,1.0,3 +87256,18,1.0,0,1.6380345821380615,257,0.0,3 +87257,18,0.0,0,1.3050388097763062,258,0.0,3 +87258,18,1.0,0,1.4860365390777588,259,1.0,3 +87259,18,1.0,0,1.3040387630462646,260,1.0,3 +87260,18,1.0,0,1.407037615776062,261,1.0,3 +87261,18,1.0,0,2.3730435371398926,262,0.0,3 +87262,18,1.0,0,1.448037028312683,263,1.0,3 +87263,18,1.0,0,1.5710355043411255,264,1.0,3 +87264,18,1.0,0,1.5960352420806885,265,1.0,3 +87265,18,1.0,0,1.4750367403030396,266,1.0,3 +87266,18,1.0,0,1.708033800125122,267,1.0,3 +87267,18,1.0,0,1.3510383367538452,268,1.0,3 +87268,18,1.0,0,1.5940351486206055,269,1.0,3 +87269,18,1.0,0,1.3900377750396729,270,1.0,3 +87270,18,1.0,0,1.2130385637283325,271,1.0,3 +87271,18,1.0,0,2.1570334434509277,272,1.0,3 +87272,18,1.0,0,1.3900377750396729,273,1.0,3 +87273,18,1.0,0,1.456036925315857,274,0.0,3 +87274,18,0.0,0,2.269038677215576,275,0.0,3 +87275,18,1.0,0,1.901031255722046,276,1.0,3 +87276,18,1.0,0,1.5330359935760498,277,0.0,3 +87277,18,0.0,0,1.389037847518921,278,0.0,3 +87278,18,0.0,0,1.8770315647125244,279,0.0,3 +87279,18,1.0,0,1.5590356588363647,280,1.0,3 +87280,18,1.0,0,1.8800315856933594,281,1.0,3 +87281,18,1.0,0,1.9030312299728394,282,1.0,3 +87282,18,1.0,0,1.2800387144088745,283,0.0,3 +87283,18,0.0,0,1.8510318994522095,284,0.0,3 +87284,18,1.0,0,1.801032543182373,285,1.0,3 +87285,18,1.0,0,1.56803560256958,286,1.0,3 +87286,18,0.0,0,1.3440383672714233,287,0.0,3 +87287,18,1.0,0,1.62003493309021,288,1.0,3 +87288,18,1.0,0,1.6240348815917969,289,1.0,3 +87289,18,1.0,0,1.5840353965759277,290,0.0,3 +87290,18,0.0,0,1.4690368175506592,291,0.0,3 +87291,18,0.0,0,1.4580368995666504,292,0.0,3 +87292,18,1.0,0,1.3980376720428467,293,1.0,3 +87293,18,1.0,0,1.875031590461731,294,0.0,3 +87294,18,0.0,0,1.9070311784744263,295,0.0,3 +87295,18,0.0,0,2.1570334434509277,296,0.0,3 +87296,18,0.0,0,1.2050385475158691,297,0.0,3 +87297,18,0.0,0,1.665034294128418,298,0.0,3 +87298,18,0.0,0,1.4100375175476074,299,0.0,3 +87299,18,0.0,0,1.3530383110046387,300,0.0,3 +87300,18,0.0,0,1.7260334491729736,301,0.0,3 +87301,18,0.0,0,1.576035499572754,302,0.0,3 +87302,18,0.0,0,1.7400333881378174,303,0.0,3 +87303,18,1.0,0,1.5840353965759277,304,1.0,3 +87304,18,1.0,0,1.407037615776062,305,1.0,3 +87305,18,0.0,0,2.6430563926696777,306,0.0,3 +87306,18,1.0,0,1.3880378007888794,307,1.0,3 +87307,18,1.0,0,1.4050376415252686,308,1.0,3 +87308,18,0.0,0,1.2670387029647827,309,0.0,3 +87309,18,1.0,0,1.411037564277649,310,1.0,3 +87310,18,0.0,0,1.218038558959961,311,0.0,3 +87311,18,0.0,0,2.748061180114746,312,1.0,3 +87312,18,0.0,0,1.5970351696014404,313,0.0,3 +87313,18,1.0,0,1.5970351696014404,314,1.0,3 +87314,18,1.0,0,2.1460330486297607,315,1.0,3 +87315,18,1.0,0,1.382037878036499,316,1.0,3 +87316,18,1.0,0,1.48103666305542,317,1.0,3 +87317,18,1.0,0,1.245038628578186,318,1.0,3 +87318,18,1.0,0,1.6950339078903198,319,1.0,3 +87319,18,1.0,0,1.3470383882522583,320,1.0,3 +87320,18,1.0,0,1.8100323677062988,321,1.0,3 +87321,18,1.0,0,1.9220309257507324,322,0.0,3 +87322,18,0.0,0,2.5950541496276855,323,0.0,3 +87323,18,1.0,0,1.9220309257507324,324,1.0,3 +87324,18,1.0,0,2.0670294761657715,325,1.0,3 +87325,18,1.0,0,1.4580368995666504,326,0.0,3 +87326,18,1.0,0,1.451037049293518,327,1.0,3 +87327,18,1.0,0,2.0510292053222656,328,1.0,3 +87328,18,0.0,0,1.2310385704040527,329,0.0,3 +87329,18,1.0,0,1.3990377187728882,330,1.0,3 +87330,18,1.0,0,1.898031234741211,331,1.0,3 +87331,18,1.0,0,1.3080388307571411,332,0.0,3 +87332,18,1.0,0,1.426037311553955,333,1.0,3 +87333,18,0.0,0,2.1110315322875977,334,0.0,3 +87334,18,1.0,0,1.4530370235443115,335,1.0,3 +87335,18,1.0,0,2.0730295181274414,336,1.0,3 +87336,18,1.0,0,1.6560344696044922,337,1.0,3 +87337,18,1.0,0,1.59103524684906,338,1.0,3 +87338,18,1.0,0,1.6740341186523438,339,1.0,3 +87339,18,1.0,0,2.501049518585205,340,1.0,3 +87340,18,1.0,0,1.6370346546173096,341,1.0,3 +87341,18,1.0,0,1.3700380325317383,342,1.0,3 +87342,18,1.0,0,1.288038730621338,343,1.0,3 +87343,18,1.0,0,1.2640386819839478,344,1.0,3 +87344,18,1.0,0,1.8380320072174072,345,1.0,3 +87345,18,1.0,0,1.6500344276428223,346,0.0,3 +87346,18,0.0,0,2.0230298042297363,347,0.0,3 +87347,18,0.0,0,2.8330650329589844,348,0.0,3 +87348,18,0.0,0,1.9530305862426758,349,0.0,3 +87349,18,0.0,0,1.3960376977920532,350,0.0,3 +87350,18,1.0,0,2.476048469543457,351,1.0,3 +87351,18,1.0,0,1.4350372552871704,352,1.0,3 +87352,18,1.0,0,1.3180387020111084,353,1.0,3 +87353,18,1.0,0,1.2730387449264526,354,1.0,3 +87354,18,0.0,0,1.4580368995666504,355,1.0,3 +87355,18,0.0,0,1.6510344743728638,356,0.0,3 +87356,18,1.0,0,1.2550387382507324,357,1.0,3 +87357,18,1.0,0,1.3520382642745972,358,1.0,3 +87358,18,1.0,0,1.3430384397506714,359,1.0,3 +87359,18,1.0,0,2.216036319732666,360,1.0,3 +87360,18,1.0,0,1.3750380277633667,361,1.0,3 +87361,18,1.0,0,1.6090350151062012,362,1.0,3 +87362,18,1.0,0,1.985030174255371,363,1.0,3 +87363,18,1.0,0,1.459036946296692,364,1.0,3 +87364,18,1.0,0,1.389037847518921,365,1.0,3 +87365,18,1.0,0,2.045029401779175,366,1.0,3 +87366,18,1.0,0,1.3910378217697144,367,0.0,3 +87367,18,1.0,0,2.0860302448272705,368,1.0,3 +87368,18,1.0,0,1.42903733253479,369,1.0,3 +87369,18,1.0,0,1.710033655166626,370,1.0,3 +87370,18,1.0,0,2.0080299377441406,371,1.0,3 +87371,18,1.0,0,2.1410326957702637,372,1.0,3 +87372,18,1.0,0,1.8610317707061768,373,1.0,3 +87373,18,1.0,0,2.3490424156188965,374,0.0,3 +87374,18,0.0,0,1.3510383367538452,375,0.0,3 +87375,18,0.0,0,2.0620291233062744,376,0.0,3 +87376,18,1.0,0,1.5300359725952148,377,1.0,3 +87377,18,1.0,0,1.5970351696014404,378,0.0,3 +87378,18,0.0,0,1.3300385475158691,379,0.0,3 +87379,18,0.0,0,2.033029556274414,380,0.0,3 +87380,18,1.0,0,1.2940387725830078,381,1.0,3 +87381,18,1.0,0,1.7940325736999512,382,1.0,3 +87382,18,0.0,0,1.7850327491760254,383,0.0,3 +87383,18,1.0,0,1.3700380325317383,384,1.0,3 +87384,18,0.0,0,1.2680387496948242,385,0.0,3 +87385,18,1.0,0,1.971030354499817,386,1.0,3 +87386,18,0.0,0,1.288038730621338,387,0.0,3 +87387,18,1.0,0,1.3400384187698364,388,1.0,3 +87388,18,1.0,0,1.3770380020141602,389,1.0,3 +87389,18,1.0,0,1.4910365343093872,390,1.0,3 +87390,18,1.0,0,1.2970387935638428,391,1.0,3 +87391,18,1.0,0,2.3880443572998047,392,1.0,3 +87392,18,1.0,0,1.5830353498458862,393,1.0,3 +87393,18,1.0,0,1.3360384702682495,394,1.0,3 +87394,18,1.0,0,1.5200361013412476,395,1.0,3 +87395,18,1.0,0,1.5040363073349,396,1.0,3 +87396,18,1.0,0,1.2250386476516724,397,1.0,3 +87397,18,1.0,0,1.434037208557129,398,0.0,3 +87398,18,1.0,0,1.3940377235412598,399,1.0,3 +87399,18,1.0,0,1.7340333461761475,400,1.0,3 +87400,18,1.0,0,1.5600355863571167,401,0.0,3 +87401,18,1.0,0,2.221036434173584,402,1.0,3 +87402,18,1.0,0,1.5770354270935059,403,1.0,3 +87403,18,1.0,0,1.7860326766967773,404,1.0,3 +87404,18,1.0,0,2.0670294761657715,405,1.0,3 +87405,18,1.0,0,1.9260308742523193,406,1.0,3 +87406,18,1.0,0,1.6690342426300049,407,1.0,3 +87407,18,1.0,0,1.9320309162139893,408,1.0,3 +87408,18,1.0,0,1.7810328006744385,409,1.0,3 +87409,18,1.0,0,1.5100362300872803,410,0.0,3 +87410,18,1.0,0,1.709033727645874,411,1.0,3 +87411,18,1.0,0,1.948030710220337,412,1.0,3 +87412,18,1.0,0,1.4130375385284424,413,1.0,3 +87413,18,0.0,0,1.5560356378555298,414,1.0,3 +87414,18,0.0,0,1.3170387744903564,415,1.0,3 +87415,18,0.0,0,1.5640356540679932,416,0.0,3 +87416,18,1.0,0,1.389037847518921,417,1.0,3 +87417,18,1.0,0,2.168034076690674,418,0.0,3 +87418,18,1.0,0,2.0480294227600098,419,1.0,3 +87419,18,1.0,0,1.8360321521759033,420,1.0,3 +87420,18,1.0,0,1.5520356893539429,421,1.0,3 +87421,18,1.0,0,2.218036413192749,422,1.0,3 +87422,18,1.0,0,2.1250319480895996,423,1.0,3 +87423,18,1.0,0,2.0190296173095703,424,1.0,3 +87424,18,1.0,0,1.9740302562713623,425,1.0,3 +87425,18,1.0,0,1.341038465499878,426,1.0,3 +87426,18,1.0,0,1.2890387773513794,427,1.0,3 +87427,18,1.0,0,1.6450345516204834,428,1.0,3 +87428,18,1.0,0,2.0770297050476074,429,0.0,3 +87429,18,1.0,0,1.6630343198776245,430,1.0,3 +87430,18,0.0,0,1.3280385732650757,431,0.0,3 +87431,18,1.0,0,2.162033796310425,432,1.0,3 +87432,18,1.0,0,1.4180374145507812,433,1.0,3 +87433,18,1.0,0,1.6260347366333008,434,1.0,3 +87434,18,1.0,0,1.3700380325317383,435,1.0,3 +87435,18,1.0,0,2.1450328826904297,436,1.0,3 +87436,18,0.0,0,2.1180317401885986,437,0.0,3 +87437,18,1.0,0,1.989030122756958,438,0.0,3 +87438,18,1.0,0,1.6490345001220703,439,1.0,3 +87439,18,1.0,0,1.6950339078903198,440,1.0,3 +87440,18,1.0,0,1.5340359210968018,441,1.0,3 +87441,18,1.0,0,2.1260321140289307,442,0.0,3 +87442,18,0.0,0,1.3680380582809448,443,0.0,3 +87443,18,1.0,0,1.5600355863571167,444,1.0,3 +87444,18,1.0,0,1.7910326719284058,445,1.0,3 +87445,18,1.0,0,1.3620381355285645,446,1.0,3 +87446,18,1.0,0,1.66603422164917,447,0.0,3 +87447,18,1.0,0,2.696058750152588,448,1.0,3 +87448,18,1.0,0,2.041029453277588,449,0.0,3 +87449,18,0.0,0,1.6250348091125488,450,0.0,3 +87450,18,0.0,0,2.440046787261963,451,1.0,3 +87451,18,0.0,0,1.5020363330841064,452,0.0,3 +87452,18,1.0,0,1.8190323114395142,453,1.0,3 +87453,18,1.0,0,1.5100362300872803,454,1.0,3 +87454,18,1.0,0,1.7200336456298828,455,1.0,3 +87455,18,1.0,0,1.8800315856933594,456,0.0,3 +87456,18,1.0,0,1.4120374917984009,457,1.0,3 +87457,18,1.0,0,1.5990351438522339,458,1.0,3 +87458,18,1.0,0,1.7240335941314697,459,0.0,3 +87459,18,0.0,0,1.3740379810333252,460,1.0,3 +87460,18,0.0,0,1.6460344791412354,461,0.0,3 +87461,18,0.0,0,1.4390372037887573,462,0.0,3 +87462,18,0.0,0,2.248037815093994,463,0.0,3 +87463,18,0.0,0,1.385037899017334,464,0.0,3 +87464,18,0.0,0,1.6850340366363525,465,0.0,3 +87465,18,1.0,0,1.618034839630127,466,1.0,3 +87466,18,1.0,0,2.0110297203063965,467,1.0,3 +87467,18,1.0,0,1.426037311553955,468,1.0,3 +87468,18,1.0,0,1.6880340576171875,469,1.0,3 +87469,18,1.0,0,1.459036946296692,470,1.0,3 +87470,18,0.0,0,1.8650317192077637,471,0.0,3 +87471,18,1.0,0,1.5500357151031494,472,1.0,3 +87472,18,1.0,0,1.64303457736969,473,1.0,3 +87473,18,0.0,0,1.4670368432998657,474,0.0,3 +87474,18,1.0,0,1.3450384140014648,475,1.0,3 +87475,18,1.0,0,1.544035792350769,476,1.0,3 +87476,18,1.0,0,1.7220335006713867,477,1.0,3 +87477,18,1.0,0,2.0930304527282715,478,1.0,3 +87478,18,1.0,0,1.6900339126586914,479,1.0,3 +87479,18,1.0,0,2.0530292987823486,480,1.0,3 +87480,18,1.0,0,1.823032259941101,481,1.0,3 +87481,18,1.0,0,1.7040338516235352,482,1.0,3 +87482,18,1.0,0,1.62003493309021,483,1.0,3 +87483,18,1.0,0,1.5800354480743408,484,1.0,3 +87484,18,1.0,0,2.3310418128967285,485,1.0,3 +87485,18,1.0,0,1.99003005027771,486,1.0,3 +87486,18,0.0,0,1.2670387029647827,487,0.0,3 +87487,18,1.0,0,2.504049777984619,488,1.0,3 +87488,18,0.0,0,1.4840365648269653,489,0.0,3 +87489,18,1.0,0,1.5420358180999756,490,1.0,3 +87490,18,1.0,0,1.6570343971252441,491,1.0,3 +87491,18,1.0,0,1.9510306119918823,492,1.0,3 +87492,18,1.0,0,1.285038709640503,493,1.0,3 +87493,18,1.0,0,1.2630386352539062,494,1.0,3 +87494,18,1.0,0,1.3260385990142822,495,1.0,3 +87495,18,0.0,0,1.551035761833191,496,0.0,3 +87496,18,1.0,0,2.426046133041382,497,0.0,3 +87497,18,1.0,0,1.783032774925232,498,1.0,3 +87498,18,1.0,0,2.178034543991089,499,1.0,3 +87499,18,1.0,0,1.4240373373031616,500,1.0,3 +87500,18,0.0,1,1.312038779258728,1,0.0,3 +87501,18,1.0,1,2.5550522804260254,2,1.0,3 +87502,18,0.0,1,2.3030405044555664,3,1.0,3 +87503,18,0.0,1,1.7520332336425781,4,1.0,3 +87504,18,1.0,1,1.7900326251983643,5,1.0,3 +87505,18,1.0,1,1.48103666305542,6,1.0,3 +87506,18,0.0,1,1.9750303030014038,7,0.0,3 +87507,18,1.0,1,1.7650330066680908,8,0.0,3 +87508,18,1.0,1,1.4700367450714111,9,1.0,3 +87509,18,0.0,1,1.8700315952301025,10,0.0,3 +87510,18,1.0,1,1.9830302000045776,11,0.0,3 +87511,18,1.0,1,1.9940299987792969,12,1.0,3 +87512,18,1.0,1,2.2860395908355713,13,0.0,3 +87513,18,0.0,1,1.4640368223190308,14,0.0,3 +87514,18,0.0,1,2.0110297203063965,15,1.0,3 +87515,18,0.0,1,1.5040363073349,16,0.0,3 +87516,18,0.0,1,1.2400386333465576,17,1.0,3 +87517,18,0.0,1,1.6890339851379395,18,1.0,3 +87518,18,0.0,1,1.496036410331726,19,0.0,3 +87519,18,0.0,1,1.529036045074463,20,0.0,3 +87520,18,1.0,1,1.716033697128296,21,0.0,3 +87521,18,1.0,1,1.2560386657714844,22,1.0,3 +87522,18,1.0,1,1.9160311222076416,23,1.0,3 +87523,18,1.0,1,1.8590317964553833,24,1.0,3 +87524,18,1.0,1,1.9720304012298584,25,1.0,3 +87525,18,0.0,1,1.1920385360717773,26,0.0,3 +87526,18,1.0,1,1.9160311222076416,27,1.0,3 +87527,18,1.0,1,2.3660433292388916,28,1.0,3 +87528,18,1.0,1,2.5340511798858643,29,1.0,3 +87529,18,1.0,1,1.5080362558364868,30,1.0,3 +87530,18,1.0,1,1.9610304832458496,31,0.0,3 +87531,18,0.0,1,2.3530426025390625,32,0.0,3 +87532,18,1.0,1,1.6150349378585815,33,0.0,3 +87533,18,0.0,1,1.360038161277771,34,0.0,3 +87534,18,0.0,1,2.0120298862457275,35,0.0,3 +87535,18,0.0,1,1.451037049293518,36,1.0,3 +87536,18,1.0,1,1.7070337533950806,37,0.0,3 +87537,18,0.0,1,2.455047607421875,38,1.0,3 +87538,18,1.0,1,1.404037594795227,39,1.0,3 +87539,18,0.0,1,1.4380371570587158,40,0.0,3 +87540,18,1.0,1,1.5920352935791016,41,1.0,3 +87541,18,0.0,1,1.2610386610031128,42,1.0,3 +87542,18,1.0,1,1.8180322647094727,43,0.0,3 +87543,18,0.0,1,1.154038429260254,44,1.0,3 +87544,18,0.0,1,1.8340320587158203,45,0.0,3 +87545,18,1.0,1,1.8580317497253418,46,0.0,3 +87546,18,0.0,1,2.6490564346313477,47,0.0,3 +87547,18,0.0,1,2.15903377532959,48,1.0,3 +87548,18,0.0,1,1.543035864830017,49,0.0,3 +87549,18,0.0,1,2.488049030303955,50,1.0,3 +87550,18,0.0,1,1.2950387001037598,51,0.0,3 +87551,18,1.0,1,2.237037181854248,52,1.0,3 +87552,18,0.0,1,1.80503249168396,53,0.0,3 +87553,18,0.0,1,1.220038652420044,54,0.0,3 +87554,18,1.0,1,1.4820365905761719,55,0.0,3 +87555,18,0.0,1,2.1290321350097656,56,1.0,3 +87556,18,0.0,1,1.942030668258667,57,1.0,3 +87557,18,0.0,1,1.6400346755981445,58,0.0,3 +87558,18,1.0,1,1.5150362253189087,59,1.0,3 +87559,18,1.0,1,1.5280359983444214,60,0.0,3 +87560,18,0.0,1,1.7070337533950806,61,0.0,3 +87561,18,1.0,1,1.5080362558364868,62,1.0,3 +87562,18,1.0,1,1.7620329856872559,63,1.0,3 +87563,18,1.0,1,1.5970351696014404,64,0.0,3 +87564,18,0.0,1,1.4120374917984009,65,1.0,3 +87565,18,0.0,1,1.220038652420044,66,0.0,3 +87566,18,0.0,1,2.0660293102264404,67,0.0,3 +87567,18,1.0,1,1.3250386714935303,68,1.0,3 +87568,18,1.0,1,1.6860339641571045,69,1.0,3 +87569,18,1.0,1,1.6090350151062012,70,1.0,3 +87570,18,1.0,1,2.0840301513671875,71,1.0,3 +87571,18,1.0,1,1.5120362043380737,72,1.0,3 +87572,18,1.0,1,1.4490370750427246,73,1.0,3 +87573,18,1.0,1,1.5050363540649414,74,1.0,3 +87574,18,1.0,1,1.5820353031158447,75,1.0,3 +87575,18,0.0,1,1.6630343198776245,76,0.0,3 +87576,18,1.0,1,1.572035551071167,77,1.0,3 +87577,18,1.0,1,1.341038465499878,78,1.0,3 +87578,18,0.0,1,1.2410386800765991,79,0.0,3 +87579,18,1.0,1,1.6020350456237793,80,1.0,3 +87580,18,1.0,1,1.6710342168807983,81,1.0,3 +87581,18,1.0,1,1.312038779258728,82,0.0,3 +87582,18,1.0,1,1.385037899017334,83,0.0,3 +87583,18,1.0,1,1.275038719177246,84,1.0,3 +87584,18,1.0,1,1.8030325174331665,85,1.0,3 +87585,18,1.0,1,2.0570292472839355,86,0.0,3 +87586,18,0.0,1,1.378037929534912,87,1.0,3 +87587,18,1.0,1,2.3190412521362305,88,1.0,3 +87588,18,0.0,1,1.378037929534912,89,0.0,3 +87589,18,1.0,1,2.763062000274658,90,1.0,3 +87590,18,1.0,1,1.2220386266708374,91,1.0,3 +87591,18,1.0,1,1.4660367965698242,92,0.0,3 +87592,18,0.0,1,1.6010351181030273,93,0.0,3 +87593,18,1.0,1,1.4220373630523682,94,1.0,3 +87594,18,0.0,1,1.7200336456298828,95,1.0,3 +87595,18,0.0,1,1.4170374870300293,96,0.0,3 +87596,18,1.0,1,1.8470319509506226,97,1.0,3 +87597,18,0.0,1,1.45203697681427,98,1.0,3 +87598,18,1.0,1,1.4660367965698242,99,1.0,3 +87599,18,0.0,1,1.2650387287139893,100,0.0,3 +87600,18,1.0,1,1.525036096572876,101,1.0,3 +87601,18,0.0,1,2.772062301635742,102,1.0,3 +87602,18,0.0,1,1.31903874874115,103,0.0,3 +87603,18,1.0,1,2.037029504776001,104,0.0,3 +87604,18,0.0,1,1.6690342426300049,105,1.0,3 +87605,18,0.0,1,1.6950339078903198,106,0.0,3 +87606,18,1.0,1,1.2270386219024658,107,1.0,3 +87607,18,0.0,1,2.180034637451172,108,0.0,3 +87608,18,1.0,1,1.5670355558395386,109,0.0,3 +87609,18,0.0,1,1.8630317449569702,110,1.0,3 +87610,18,0.0,1,1.6590343713760376,111,0.0,3 +87611,18,1.0,1,1.709033727645874,112,1.0,3 +87612,18,1.0,1,2.217036247253418,113,0.0,3 +87613,18,0.0,1,1.7280335426330566,114,0.0,3 +87614,18,1.0,1,1.3710380792617798,115,1.0,3 +87615,18,1.0,1,1.3290386199951172,116,1.0,3 +87616,18,1.0,1,2.0150299072265625,117,0.0,3 +87617,18,1.0,1,2.1360325813293457,118,1.0,3 +87618,18,1.0,1,1.6810340881347656,119,0.0,3 +87619,18,1.0,1,2.6290555000305176,120,1.0,3 +87620,18,1.0,1,1.8030325174331665,121,1.0,3 +87621,18,1.0,1,1.6290347576141357,122,0.0,3 +87622,18,0.0,1,1.278038740158081,123,1.0,3 +87623,18,0.0,1,1.1330384016036987,124,1.0,3 +87624,18,0.0,1,1.6970338821411133,125,1.0,3 +87625,18,0.0,1,1.5070363283157349,126,0.0,3 +87626,18,1.0,1,2.68405818939209,127,0.0,3 +87627,18,0.0,1,1.9530305862426758,128,1.0,3 +87628,18,0.0,1,1.6850340366363525,129,0.0,3 +87629,18,1.0,1,2.529050827026367,130,1.0,3 +87630,18,1.0,1,1.6720342636108398,131,1.0,3 +87631,18,1.0,1,1.802032470703125,132,0.0,3 +87632,18,0.0,1,1.8890314102172852,133,1.0,3 +87633,18,0.0,1,1.2580386400222778,134,1.0,3 +87634,18,0.0,1,1.181038498878479,135,0.0,3 +87635,18,0.0,1,1.1650384664535522,136,0.0,3 +87636,18,1.0,1,2.2900397777557373,137,0.0,3 +87637,18,0.0,1,1.4450371265411377,138,1.0,3 +87638,18,0.0,1,2.3730435371398926,139,0.0,3 +87639,18,0.0,1,2.0820300579071045,140,0.0,3 +87640,18,0.0,1,1.2580386400222778,141,1.0,3 +87641,18,0.0,1,1.4100375175476074,142,0.0,3 +87642,18,1.0,1,1.5300359725952148,143,1.0,3 +87643,18,1.0,1,2.3340418338775635,144,1.0,3 +87644,18,0.0,1,1.6490345001220703,145,0.0,3 +87645,18,0.0,1,1.6840341091156006,146,1.0,3 +87646,18,1.0,1,1.9210309982299805,147,1.0,3 +87647,18,1.0,1,2.151033401489258,148,0.0,3 +87648,18,0.0,1,1.1600384712219238,149,0.0,3 +87649,18,1.0,1,1.9940299987792969,150,1.0,3 +87650,18,1.0,1,1.5100362300872803,151,0.0,3 +87651,18,0.0,1,1.8660316467285156,152,0.0,3 +87652,18,0.0,1,1.7460331916809082,153,1.0,3 +87653,18,0.0,1,1.404037594795227,154,0.0,3 +87654,18,1.0,1,1.7420332431793213,155,0.0,3 +87655,18,0.0,1,1.288038730621338,156,0.0,3 +87656,18,0.0,1,1.5650355815887451,157,1.0,3 +87657,18,0.0,1,1.9550305604934692,158,0.0,3 +87658,18,1.0,1,1.760033130645752,159,1.0,3 +87659,18,0.0,1,1.8660316467285156,160,0.0,3 +87660,18,1.0,1,2.2990403175354004,161,1.0,3 +87661,18,1.0,1,1.6690342426300049,162,1.0,3 +87662,18,1.0,1,2.3330416679382324,163,1.0,3 +87663,18,1.0,1,1.3910378217697144,164,0.0,3 +87664,18,1.0,1,1.389037847518921,165,1.0,3 +87665,18,1.0,1,1.4140374660491943,166,1.0,3 +87666,18,0.0,1,1.9730303287506104,167,0.0,3 +87667,18,1.0,1,1.3500382900238037,168,1.0,3 +87668,18,1.0,1,1.890031337738037,169,1.0,3 +87669,18,1.0,1,1.618034839630127,170,1.0,3 +87670,18,1.0,1,1.408037543296814,171,0.0,3 +87671,18,0.0,1,1.661034345626831,172,0.0,3 +87672,18,1.0,1,1.618034839630127,173,1.0,3 +87673,18,1.0,1,1.5300359725952148,174,1.0,3 +87674,18,1.0,1,1.7690329551696777,175,0.0,3 +87675,18,1.0,1,2.448047161102295,176,0.0,3 +87676,18,0.0,1,2.3080406188964844,177,1.0,3 +87677,18,0.0,1,2.537051200866699,178,1.0,3 +87678,18,1.0,1,1.6150349378585815,179,0.0,3 +87679,18,0.0,1,1.779032826423645,180,1.0,3 +87680,18,0.0,1,1.220038652420044,181,0.0,3 +87681,18,1.0,1,2.26503849029541,182,1.0,3 +87682,18,1.0,1,1.448037028312683,183,1.0,3 +87683,18,1.0,1,2.5190505981445312,184,0.0,3 +87684,18,0.0,1,2.030029535293579,185,0.0,3 +87685,18,1.0,1,1.4010376930236816,186,1.0,3 +87686,18,1.0,1,2.0050299167633057,187,1.0,3 +87687,18,1.0,1,1.709033727645874,188,0.0,3 +87688,18,1.0,1,1.4720367193222046,189,0.0,3 +87689,18,1.0,1,2.028029680252075,190,1.0,3 +87690,18,1.0,1,1.5400358438491821,191,0.0,3 +87691,18,1.0,1,1.875031590461731,192,1.0,3 +87692,18,1.0,1,1.4160374402999878,193,0.0,3 +87693,18,1.0,1,1.4830366373062134,194,1.0,3 +87694,18,0.0,1,1.8870314359664917,195,0.0,3 +87695,18,1.0,1,1.3300385475158691,196,1.0,3 +87696,18,1.0,1,1.8290321826934814,197,1.0,3 +87697,18,1.0,1,1.4090375900268555,198,1.0,3 +87698,18,1.0,1,1.386037826538086,199,1.0,3 +87699,18,1.0,1,1.360038161277771,200,1.0,3 +87700,18,0.0,1,2.0740296840667725,201,0.0,3 +87701,18,1.0,1,1.8600318431854248,202,0.0,3 +87702,18,0.0,1,1.5810353755950928,203,0.0,3 +87703,18,1.0,1,1.848031997680664,204,0.0,3 +87704,18,1.0,1,1.5330359935760498,205,0.0,3 +87705,18,0.0,1,1.4420371055603027,206,1.0,3 +87706,18,0.0,1,1.61403489112854,207,0.0,3 +87707,18,1.0,1,2.0830302238464355,208,0.0,3 +87708,18,1.0,1,1.808032512664795,209,0.0,3 +87709,18,0.0,1,1.6840341091156006,210,0.0,3 +87710,18,0.0,1,1.4050376415252686,211,0.0,3 +87711,18,1.0,1,2.1190319061279297,212,0.0,3 +87712,18,0.0,1,1.4360371828079224,213,0.0,3 +87713,18,1.0,1,1.500036358833313,214,1.0,3 +87714,18,1.0,1,1.7440333366394043,215,0.0,3 +87715,18,0.0,1,1.211038589477539,216,0.0,3 +87716,18,0.0,1,1.2920387983322144,217,1.0,3 +87717,18,0.0,1,1.1520384550094604,218,0.0,3 +87718,18,1.0,1,1.4610369205474854,219,1.0,3 +87719,18,0.0,1,1.3350385427474976,220,0.0,3 +87720,18,0.0,1,1.665034294128418,221,0.0,3 +87721,18,1.0,1,1.3730380535125732,222,1.0,3 +87722,18,1.0,1,1.5010364055633545,223,1.0,3 +87723,18,0.0,1,1.6260347366333008,224,0.0,3 +87724,18,1.0,1,1.4580368995666504,225,1.0,3 +87725,18,1.0,1,1.8160324096679688,226,1.0,3 +87726,18,1.0,1,1.8470319509506226,227,1.0,3 +87727,18,1.0,1,1.521036148071289,228,0.0,3 +87728,18,1.0,1,1.940030813217163,229,0.0,3 +87729,18,1.0,1,1.8430320024490356,230,1.0,3 +87730,18,1.0,1,1.2610386610031128,231,1.0,3 +87731,18,1.0,1,2.5270509719848633,232,1.0,3 +87732,18,1.0,1,2.034029483795166,233,1.0,3 +87733,18,1.0,1,2.209035873413086,234,1.0,3 +87734,18,1.0,1,1.7210335731506348,235,1.0,3 +87735,18,0.0,1,1.714033603668213,236,0.0,3 +87736,18,1.0,1,1.4390372037887573,237,1.0,3 +87737,18,1.0,1,1.2640386819839478,238,1.0,3 +87738,18,1.0,1,1.2990387678146362,239,1.0,3 +87739,18,1.0,1,2.1080312728881836,240,1.0,3 +87740,18,1.0,1,1.7990325689315796,241,1.0,3 +87741,18,1.0,1,1.282038688659668,242,0.0,3 +87742,18,1.0,1,1.5300359725952148,243,0.0,3 +87743,18,0.0,1,1.4850366115570068,244,0.0,3 +87744,18,0.0,1,1.378037929534912,245,0.0,3 +87745,18,0.0,1,2.169034004211426,246,0.0,3 +87746,18,1.0,1,1.6730341911315918,247,1.0,3 +87747,18,1.0,1,2.043029308319092,248,0.0,3 +87748,18,0.0,1,1.3540382385253906,249,1.0,3 +87749,18,0.0,1,1.6250348091125488,250,0.0,3 +87750,18,0.0,1,1.3500382900238037,251,1.0,3 +87751,18,0.0,1,1.4350372552871704,252,1.0,3 +87752,18,0.0,1,1.337038516998291,253,1.0,3 +87753,18,0.0,1,1.613034963607788,254,0.0,3 +87754,18,0.0,1,1.6320347785949707,255,0.0,3 +87755,18,1.0,1,1.5350359678268433,256,0.0,3 +87756,18,1.0,1,1.2730387449264526,257,1.0,3 +87757,18,1.0,1,1.5890352725982666,258,0.0,3 +87758,18,0.0,1,2.776062488555908,259,0.0,3 +87759,18,1.0,1,1.5550357103347778,260,0.0,3 +87760,18,1.0,1,1.5310360193252563,261,1.0,3 +87761,18,1.0,1,1.2100385427474976,262,1.0,3 +87762,18,1.0,1,1.360038161277771,263,1.0,3 +87763,18,1.0,1,1.5770354270935059,264,1.0,3 +87764,18,1.0,1,1.2960387468338013,265,1.0,3 +87765,18,1.0,1,1.6340346336364746,266,0.0,3 +87766,18,0.0,1,2.681057929992676,267,1.0,3 +87767,18,1.0,1,1.544035792350769,268,1.0,3 +87768,18,1.0,1,1.5070363283157349,269,1.0,3 +87769,18,1.0,1,1.9980299472808838,270,1.0,3 +87770,18,0.0,1,1.7000339031219482,271,0.0,3 +87771,18,1.0,1,1.9280309677124023,272,1.0,3 +87772,18,1.0,1,1.683034062385559,273,1.0,3 +87773,18,1.0,1,1.3710380792617798,274,0.0,3 +87774,18,0.0,1,1.4460370540618896,275,1.0,3 +87775,18,0.0,1,1.381037950515747,276,1.0,3 +87776,18,0.0,1,1.6540343761444092,277,0.0,3 +87777,18,0.0,1,1.386037826538086,278,1.0,3 +87778,18,0.0,1,1.543035864830017,279,0.0,3 +87779,18,0.0,1,1.3140387535095215,280,0.0,3 +87780,18,0.0,1,1.356038212776184,281,0.0,3 +87781,18,0.0,1,1.9620304107666016,282,1.0,3 +87782,18,0.0,1,1.6980338096618652,283,0.0,3 +87783,18,1.0,1,1.6760342121124268,284,1.0,3 +87784,18,1.0,1,1.5530357360839844,285,0.0,3 +87785,18,0.0,1,1.3320385217666626,286,1.0,3 +87786,18,0.0,1,1.4120374917984009,287,0.0,3 +87787,18,1.0,1,2.169034004211426,288,1.0,3 +87788,18,1.0,1,2.188035011291504,289,0.0,3 +87789,18,0.0,1,1.1570384502410889,290,0.0,3 +87790,18,1.0,1,1.800032615661621,291,0.0,3 +87791,18,0.0,1,1.802032470703125,292,0.0,3 +87792,18,1.0,1,1.4440370798110962,293,1.0,3 +87793,18,1.0,1,1.59103524684906,294,0.0,3 +87794,18,0.0,1,1.5830353498458862,295,0.0,3 +87795,18,1.0,1,2.5950541496276855,296,1.0,3 +87796,18,1.0,1,1.306038737297058,297,0.0,3 +87797,18,1.0,1,1.8370320796966553,298,1.0,3 +87798,18,0.0,1,1.4120374917984009,299,0.0,3 +87799,18,1.0,1,1.2320386171340942,300,1.0,3 +87800,18,1.0,1,1.662034273147583,301,1.0,3 +87801,18,1.0,1,1.503036379814148,302,1.0,3 +87802,18,1.0,1,1.6340346336364746,303,1.0,3 +87803,18,1.0,1,1.3880378007888794,304,1.0,3 +87804,18,1.0,1,1.455036997795105,305,1.0,3 +87805,18,1.0,1,1.941030740737915,306,1.0,3 +87806,18,0.0,1,1.2250386476516724,307,1.0,3 +87807,18,0.0,1,3.007073402404785,308,0.0,3 +87808,18,1.0,1,1.3700380325317383,309,1.0,3 +87809,18,1.0,1,1.4880365133285522,310,1.0,3 +87810,18,1.0,1,2.3250412940979004,311,1.0,3 +87811,18,0.0,1,1.5570356845855713,312,0.0,3 +87812,18,1.0,1,1.3690381050109863,313,1.0,3 +87813,18,1.0,1,1.4890365600585938,314,1.0,3 +87814,18,1.0,1,1.1750385761260986,315,1.0,3 +87815,18,1.0,1,1.3450384140014648,316,1.0,3 +87816,18,1.0,1,1.4720367193222046,317,0.0,3 +87817,18,0.0,1,1.5960352420806885,318,1.0,3 +87818,18,0.0,1,1.5830353498458862,319,1.0,3 +87819,18,0.0,1,1.5880353450775146,320,1.0,3 +87820,18,0.0,1,1.1950385570526123,321,0.0,3 +87821,18,1.0,1,1.4940364360809326,322,0.0,3 +87822,18,0.0,1,1.6590343713760376,323,1.0,3 +87823,18,0.0,1,1.5050363540649414,324,1.0,3 +87824,18,0.0,1,1.3010387420654297,325,0.0,3 +87825,18,0.0,1,1.4660367965698242,326,0.0,3 +87826,18,1.0,1,1.7450332641601562,327,1.0,3 +87827,18,1.0,1,1.595035195350647,328,0.0,3 +87828,18,0.0,1,2.513050079345703,329,1.0,3 +87829,18,0.0,1,1.2700387239456177,330,0.0,3 +87830,18,0.0,1,1.7910326719284058,331,1.0,3 +87831,18,0.0,1,1.284038782119751,332,1.0,3 +87832,18,0.0,1,1.2980387210845947,333,0.0,3 +87833,18,1.0,1,1.9980299472808838,334,1.0,3 +87834,18,1.0,1,1.9500305652618408,335,1.0,3 +87835,18,0.0,1,1.4870365858078003,336,0.0,3 +87836,18,1.0,1,1.5970351696014404,337,1.0,3 +87837,18,1.0,1,1.3870378732681274,338,1.0,3 +87838,18,0.0,1,1.8200323581695557,339,0.0,3 +87839,18,1.0,1,2.032029628753662,340,1.0,3 +87840,18,1.0,1,1.8770315647125244,341,1.0,3 +87841,18,1.0,1,1.779032826423645,342,0.0,3 +87842,18,0.0,1,2.3300416469573975,343,1.0,3 +87843,18,0.0,1,1.2690386772155762,344,0.0,3 +87844,18,1.0,1,1.8870314359664917,345,1.0,3 +87845,18,0.0,1,1.7840328216552734,346,0.0,3 +87846,18,0.0,1,1.5400358438491821,347,0.0,3 +87847,18,1.0,1,1.9020311832427979,348,0.0,3 +87848,18,1.0,1,2.740060806274414,349,1.0,3 +87849,18,1.0,1,1.7170336246490479,350,1.0,3 +87850,18,0.0,1,1.5840353965759277,351,0.0,3 +87851,18,0.0,1,1.6630343198776245,352,0.0,3 +87852,18,0.0,1,1.5300359725952148,353,0.0,3 +87853,18,1.0,1,1.6770341396331787,354,1.0,3 +87854,18,1.0,1,1.948030710220337,355,0.0,3 +87855,18,0.0,1,2.201035499572754,356,0.0,3 +87856,18,0.0,1,1.456036925315857,357,0.0,3 +87857,18,1.0,1,1.3180387020111084,358,1.0,3 +87858,18,1.0,1,1.9650304317474365,359,1.0,3 +87859,18,1.0,1,1.3650381565093994,360,1.0,3 +87860,18,1.0,1,1.378037929534912,361,1.0,3 +87861,18,1.0,1,1.849031925201416,362,1.0,3 +87862,18,1.0,1,1.9080312252044678,363,0.0,3 +87863,18,1.0,1,2.484048843383789,364,1.0,3 +87864,18,1.0,1,1.4400371313095093,365,1.0,3 +87865,18,1.0,1,1.2040386199951172,366,1.0,3 +87866,18,1.0,1,1.4020376205444336,367,1.0,3 +87867,18,1.0,1,1.5520356893539429,368,1.0,3 +87868,18,0.0,1,2.6770577430725098,369,0.0,3 +87869,18,1.0,1,1.668034315109253,370,1.0,3 +87870,18,1.0,1,1.278038740158081,371,0.0,3 +87871,18,0.0,1,2.0560293197631836,372,0.0,3 +87872,18,0.0,1,1.5240360498428345,373,0.0,3 +87873,18,0.0,1,1.7880327701568604,374,0.0,3 +87874,18,0.0,1,2.3620431423187256,375,0.0,3 +87875,18,1.0,1,1.6860339641571045,376,0.0,3 +87876,18,0.0,1,1.316038727760315,377,0.0,3 +87877,18,0.0,1,1.7420332431793213,378,1.0,3 +87878,18,0.0,1,1.334038496017456,379,1.0,3 +87879,18,0.0,1,1.4450371265411377,380,0.0,3 +87880,18,0.0,1,1.683034062385559,381,0.0,3 +87881,18,1.0,1,2.5650525093078613,382,1.0,3 +87882,18,1.0,1,2.183034896850586,383,1.0,3 +87883,18,0.0,1,1.993030071258545,384,1.0,3 +87884,18,1.0,1,1.7450332641601562,385,1.0,3 +87885,18,1.0,1,2.6150550842285156,386,0.0,3 +87886,18,0.0,1,1.2130385637283325,387,0.0,3 +87887,18,0.0,1,1.3460383415222168,388,0.0,3 +87888,18,0.0,1,1.618034839630127,389,0.0,3 +87889,18,0.0,1,2.204035758972168,390,0.0,3 +87890,18,1.0,1,1.9600305557250977,391,1.0,3 +87891,18,1.0,1,1.898031234741211,392,1.0,3 +87892,18,1.0,1,1.4390372037887573,393,1.0,3 +87893,18,1.0,1,1.2940387725830078,394,1.0,3 +87894,18,1.0,1,1.48103666305542,395,1.0,3 +87895,18,1.0,1,1.3020387887954712,396,0.0,3 +87896,18,0.0,1,1.2570387125015259,397,1.0,3 +87897,18,1.0,1,1.48103666305542,398,0.0,3 +87898,18,0.0,1,1.5270360708236694,399,1.0,3 +87899,18,0.0,1,1.2310385704040527,400,0.0,3 +87900,18,0.0,1,1.451037049293518,401,0.0,3 +87901,18,1.0,1,1.948030710220337,402,1.0,3 +87902,18,1.0,1,1.5810353755950928,403,0.0,3 +87903,18,0.0,1,1.5890352725982666,404,0.0,3 +87904,18,0.0,1,2.047029495239258,405,0.0,3 +87905,18,1.0,1,1.8340320587158203,406,1.0,3 +87906,18,0.0,1,1.403037667274475,407,1.0,3 +87907,18,0.0,1,1.2570387125015259,408,1.0,3 +87908,18,0.0,1,1.496036410331726,409,1.0,3 +87909,18,0.0,1,1.2980387210845947,410,1.0,3 +87910,18,0.0,1,1.2470386028289795,411,0.0,3 +87911,18,1.0,1,1.6880340576171875,412,1.0,3 +87912,18,1.0,1,2.708059310913086,413,1.0,3 +87913,18,1.0,1,1.9510306119918823,414,1.0,3 +87914,18,1.0,1,2.1000308990478516,415,1.0,3 +87915,18,1.0,1,1.6250348091125488,416,1.0,3 +87916,18,1.0,1,2.6090545654296875,417,1.0,3 +87917,18,1.0,1,1.4120374917984009,418,1.0,3 +87918,18,1.0,1,1.6590343713760376,419,1.0,3 +87919,18,1.0,1,1.3540382385253906,420,0.0,3 +87920,18,1.0,1,2.0500292778015137,421,0.0,3 +87921,18,0.0,1,2.722059965133667,422,0.0,3 +87922,18,0.0,1,1.3830379247665405,423,0.0,3 +87923,18,0.0,1,1.278038740158081,424,1.0,3 +87924,18,0.0,1,1.3240386247634888,425,0.0,3 +87925,18,0.0,1,1.2930387258529663,426,0.0,3 +87926,18,0.0,1,2.3030405044555664,427,0.0,3 +87927,18,0.0,1,1.455036997795105,428,0.0,3 +87928,18,1.0,1,1.7800328731536865,429,0.0,3 +87929,18,0.0,1,1.4660367965698242,430,0.0,3 +87930,18,0.0,1,1.993030071258545,431,0.0,3 +87931,18,0.0,1,1.2070386409759521,432,1.0,3 +87932,18,0.0,1,1.5640356540679932,433,0.0,3 +87933,18,0.0,1,1.242038607597351,434,0.0,3 +87934,18,0.0,1,1.1860384941101074,435,0.0,3 +87935,18,1.0,1,2.429046154022217,436,1.0,3 +87936,18,1.0,1,1.278038740158081,437,1.0,3 +87937,18,1.0,1,1.8590317964553833,438,0.0,3 +87938,18,1.0,1,2.1460330486297607,439,0.0,3 +87939,18,1.0,1,1.7420332431793213,440,0.0,3 +87940,18,0.0,1,1.5090363025665283,441,0.0,3 +87941,18,0.0,1,2.22503662109375,442,0.0,3 +87942,18,0.0,1,1.8570318222045898,443,0.0,3 +87943,18,0.0,1,2.220036506652832,444,1.0,3 +87944,18,0.0,1,1.1760385036468506,445,1.0,3 +87945,18,0.0,1,1.3980376720428467,446,0.0,3 +87946,18,0.0,1,1.7490332126617432,447,1.0,3 +87947,18,0.0,1,1.3770380020141602,448,1.0,3 +87948,18,0.0,1,1.3440383672714233,449,0.0,3 +87949,18,0.0,1,1.3460383415222168,450,0.0,3 +87950,18,0.0,1,1.3210387229919434,451,0.0,3 +87951,18,1.0,1,1.3170387744903564,452,1.0,3 +87952,18,1.0,1,1.499036431312561,453,1.0,3 +87953,18,1.0,1,1.9120311737060547,454,1.0,3 +87954,18,0.0,1,1.3400384187698364,455,1.0,3 +87955,18,1.0,1,1.5050363540649414,456,0.0,3 +87956,18,0.0,1,1.1950385570526123,457,0.0,3 +87957,18,0.0,1,1.8090324401855469,458,0.0,3 +87958,18,0.0,1,1.7410333156585693,459,1.0,3 +87959,18,0.0,1,1.6190348863601685,460,0.0,3 +87960,18,0.0,1,2.1650338172912598,461,0.0,3 +87961,18,1.0,1,1.544035792350769,462,1.0,3 +87962,18,1.0,1,1.6990338563919067,463,0.0,3 +87963,18,1.0,1,2.3500425815582275,464,0.0,3 +87964,18,1.0,1,1.7400333881378174,465,0.0,3 +87965,18,1.0,1,1.3110387325286865,466,0.0,3 +87966,18,0.0,1,1.7850327491760254,467,0.0,3 +87967,18,0.0,1,1.4100375175476074,468,0.0,3 +87968,18,0.0,1,1.6670342683792114,469,0.0,3 +87969,18,1.0,1,1.616034984588623,470,1.0,3 +87970,18,1.0,1,1.618034839630127,471,0.0,3 +87971,18,1.0,1,1.709033727645874,472,1.0,3 +87972,18,1.0,1,1.7490332126617432,473,1.0,3 +87973,18,1.0,1,2.0050299167633057,474,0.0,3 +87974,18,1.0,1,1.4420371055603027,475,1.0,3 +87975,18,1.0,1,1.4800366163253784,476,1.0,3 +87976,18,0.0,1,1.2010385990142822,477,0.0,3 +87977,18,0.0,1,1.6670342683792114,478,0.0,3 +87978,18,1.0,1,1.8170323371887207,479,0.0,3 +87979,18,1.0,1,1.5370359420776367,480,0.0,3 +87980,18,0.0,1,2.529050827026367,481,1.0,3 +87981,18,0.0,1,1.3650381565093994,482,1.0,3 +87982,18,0.0,1,1.3460383415222168,483,0.0,3 +87983,18,1.0,1,2.03102970123291,484,0.0,3 +87984,18,1.0,1,1.735033392906189,485,1.0,3 +87985,18,1.0,1,1.566035509109497,486,0.0,3 +87986,18,1.0,1,1.7770328521728516,487,0.0,3 +87987,18,0.0,1,1.6040351390838623,488,0.0,3 +87988,18,0.0,1,1.7740328311920166,489,0.0,3 +87989,18,1.0,1,1.2600387334823608,490,1.0,3 +87990,18,1.0,1,2.182034730911255,491,1.0,3 +87991,18,0.0,1,1.8770315647125244,492,1.0,3 +87992,18,1.0,1,1.3610382080078125,493,1.0,3 +87993,18,0.0,1,1.2350386381149292,494,0.0,3 +87994,18,1.0,1,1.716033697128296,495,0.0,3 +87995,18,1.0,1,2.429046154022217,496,0.0,3 +87996,18,0.0,1,1.5010364055633545,497,0.0,3 +87997,18,0.0,1,1.2380386590957642,498,0.0,3 +87998,18,0.0,1,1.2690386772155762,499,0.0,3 +87999,18,1.0,1,2.231037139892578,500,0.0,3 +88000,18,0.0,2,1.7740328311920166,1,1.0,3 +88001,18,1.0,2,1.5710355043411255,2,0.0,3 +88002,18,0.0,2,1.8130323886871338,3,1.0,3 +88003,18,1.0,2,2.1100313663482666,4,1.0,3 +88004,18,0.0,2,1.287038803100586,5,0.0,3 +88005,18,1.0,2,1.9800302982330322,6,1.0,3 +88006,18,1.0,2,1.61403489112854,7,1.0,3 +88007,18,1.0,2,2.1380326747894287,8,0.0,3 +88008,18,0.0,2,1.4380371570587158,9,0.0,3 +88009,18,0.0,2,1.4650368690490723,10,0.0,3 +88010,18,0.0,2,1.8330321311950684,11,1.0,3 +88011,18,0.0,2,1.61403489112854,12,0.0,3 +88012,18,0.0,2,1.4470371007919312,13,0.0,3 +88013,18,1.0,2,1.8160324096679688,14,0.0,3 +88014,18,1.0,2,2.255038261413574,15,0.0,3 +88015,18,0.0,2,1.5960352420806885,16,0.0,3 +88016,18,1.0,2,1.4130375385284424,17,1.0,3 +88017,18,1.0,2,1.2720386981964111,18,1.0,3 +88018,18,1.0,2,1.6780340671539307,19,0.0,3 +88019,18,0.0,2,1.783032774925232,20,0.0,3 +88020,18,0.0,2,1.5580356121063232,21,0.0,3 +88021,18,0.0,2,1.1880385875701904,22,0.0,3 +88022,18,0.0,2,1.6760342121124268,23,0.0,3 +88023,18,1.0,2,1.3920377492904663,24,0.0,3 +88024,18,1.0,2,1.6150349378585815,25,0.0,3 +88025,18,0.0,2,1.5670355558395386,26,0.0,3 +88026,18,0.0,2,1.178038477897644,27,0.0,3 +88027,18,1.0,2,1.8240323066711426,28,1.0,3 +88028,18,1.0,2,2.213036060333252,29,1.0,3 +88029,18,1.0,2,1.6030350923538208,30,1.0,3 +88030,18,1.0,2,1.4320372343063354,31,0.0,3 +88031,18,0.0,2,1.3270386457443237,32,0.0,3 +88032,18,1.0,2,2.8210644721984863,33,1.0,3 +88033,18,1.0,2,1.496036410331726,34,0.0,3 +88034,18,0.0,2,2.2900397777557373,35,1.0,3 +88035,18,0.0,2,1.42903733253479,36,1.0,3 +88036,18,0.0,2,1.1820385456085205,37,1.0,3 +88037,18,0.0,2,1.1880385875701904,38,0.0,3 +88038,18,0.0,2,1.897031307220459,39,1.0,3 +88039,18,0.0,2,1.386037826538086,40,1.0,3 +88040,18,0.0,2,1.341038465499878,41,1.0,3 +88041,18,0.0,2,1.1860384941101074,42,1.0,3 +88042,18,0.0,2,1.9680304527282715,43,0.0,3 +88043,18,1.0,2,1.7940325736999512,44,0.0,3 +88044,18,1.0,2,1.8890314102172852,45,1.0,3 +88045,18,1.0,2,1.8370320796966553,46,0.0,3 +88046,18,0.0,2,2.0710296630859375,47,1.0,3 +88047,18,1.0,2,1.4890365600585938,48,1.0,3 +88048,18,1.0,2,1.8870314359664917,49,1.0,3 +88049,18,1.0,2,1.898031234741211,50,0.0,3 +88050,18,0.0,2,1.3280385732650757,51,0.0,3 +88051,18,0.0,2,1.6010351181030273,52,0.0,3 +88052,18,0.0,2,1.1610385179519653,53,1.0,3 +88053,18,0.0,2,1.4020376205444336,54,0.0,3 +88054,18,1.0,2,2.3340418338775635,55,1.0,3 +88055,18,1.0,2,1.5330359935760498,56,1.0,3 +88056,18,0.0,2,1.8120324611663818,57,1.0,3 +88057,18,1.0,2,2.164033889770508,58,0.0,3 +88058,18,0.0,2,1.1390384435653687,59,0.0,3 +88059,18,1.0,2,1.503036379814148,60,1.0,3 +88060,18,0.0,2,1.4650368690490723,61,1.0,3 +88061,18,0.0,2,1.4440370798110962,62,0.0,3 +88062,18,1.0,2,1.4650368690490723,63,0.0,3 +88063,18,0.0,2,1.9910300970077515,64,0.0,3 +88064,18,1.0,2,1.6340346336364746,65,1.0,3 +88065,18,1.0,2,1.3970377445220947,66,0.0,3 +88066,18,0.0,2,1.338038444519043,67,1.0,3 +88067,18,0.0,2,1.5130362510681152,68,0.0,3 +88068,18,0.0,2,1.2930387258529663,69,0.0,3 +88069,18,1.0,2,2.3930444717407227,70,1.0,3 +88070,18,1.0,2,2.49804949760437,71,1.0,3 +88071,18,1.0,2,1.5500357151031494,72,0.0,3 +88072,18,1.0,2,1.7620329856872559,73,1.0,3 +88073,18,1.0,2,1.4010376930236816,74,1.0,3 +88074,18,1.0,2,1.7940325736999512,75,1.0,3 +88075,18,1.0,2,1.3650381565093994,76,1.0,3 +88076,18,1.0,2,1.4210374355316162,77,1.0,3 +88077,18,1.0,2,1.6960339546203613,78,0.0,3 +88078,18,0.0,2,1.3520382642745972,79,0.0,3 +88079,18,1.0,2,1.6840341091156006,80,0.0,3 +88080,18,1.0,2,1.3470383882522583,81,1.0,3 +88081,18,1.0,2,1.3950377702713013,82,1.0,3 +88082,18,1.0,2,1.3490383625030518,83,0.0,3 +88083,18,1.0,2,1.761033058166504,84,0.0,3 +88084,18,0.0,2,1.80503249168396,85,1.0,3 +88085,18,0.0,2,1.4970364570617676,86,0.0,3 +88086,18,1.0,2,1.7020337581634521,87,1.0,3 +88087,18,1.0,2,1.5550357103347778,88,0.0,3 +88088,18,0.0,2,1.9800302982330322,89,1.0,3 +88089,18,0.0,2,1.48103666305542,90,0.0,3 +88090,18,0.0,2,1.1830384731292725,91,1.0,3 +88091,18,0.0,2,1.6320347785949707,92,0.0,3 +88092,18,1.0,2,2.2590384483337402,93,0.0,3 +88093,18,1.0,2,1.8190323114395142,94,0.0,3 +88094,18,1.0,2,1.8780314922332764,95,1.0,3 +88095,18,1.0,2,1.4630368947982788,96,1.0,3 +88096,18,1.0,2,1.7240335941314697,97,1.0,3 +88097,18,1.0,2,1.6090350151062012,98,1.0,3 +88098,18,1.0,2,1.4820365905761719,99,0.0,3 +88099,18,1.0,2,1.7220335006713867,100,0.0,3 +88100,18,0.0,2,1.337038516998291,101,1.0,3 +88101,18,0.0,2,1.7840328216552734,102,0.0,3 +88102,18,1.0,2,2.437046527862549,103,0.0,3 +88103,18,0.0,2,1.9170310497283936,104,1.0,3 +88104,18,0.0,2,1.660034418106079,105,1.0,3 +88105,18,0.0,2,1.2660386562347412,106,0.0,3 +88106,18,1.0,2,1.8260321617126465,107,0.0,3 +88107,18,0.0,2,2.4040451049804688,108,1.0,3 +88108,18,0.0,2,2.043029308319092,109,0.0,3 +88109,18,0.0,2,1.426037311553955,110,1.0,3 +88110,18,0.0,2,1.2600387334823608,111,1.0,3 +88111,18,0.0,2,1.2920387983322144,112,0.0,3 +88112,18,0.0,2,1.6090350151062012,113,0.0,3 +88113,18,1.0,2,1.4430371522903442,114,0.0,3 +88114,18,0.0,2,2.227036952972412,115,0.0,3 +88115,18,0.0,2,2.0710296630859375,116,0.0,3 +88116,18,0.0,2,2.0930304527282715,117,1.0,3 +88117,18,0.0,2,2.399044990539551,118,0.0,3 +88118,18,0.0,2,1.7290334701538086,119,1.0,3 +88119,18,0.0,2,1.6190348863601685,120,0.0,3 +88120,18,0.0,2,2.21903657913208,121,0.0,3 +88121,18,1.0,2,1.7360334396362305,122,1.0,3 +88122,18,1.0,2,1.3650381565093994,123,1.0,3 +88123,18,1.0,2,1.3790379762649536,124,0.0,3 +88124,18,0.0,2,2.1160316467285156,125,1.0,3 +88125,18,0.0,2,2.039029598236084,126,0.0,3 +88126,18,1.0,2,1.8350321054458618,127,1.0,3 +88127,18,1.0,2,2.189034938812256,128,1.0,3 +88128,18,1.0,2,1.6860339641571045,129,1.0,3 +88129,18,1.0,2,1.3280385732650757,130,1.0,3 +88130,18,1.0,2,1.404037594795227,131,1.0,3 +88131,18,1.0,2,1.7280335426330566,132,1.0,3 +88132,18,1.0,2,1.7690329551696777,133,1.0,3 +88133,18,1.0,2,1.411037564277649,134,0.0,3 +88134,18,1.0,2,2.173034191131592,135,1.0,3 +88135,18,1.0,2,1.7890326976776123,136,0.0,3 +88136,18,0.0,2,1.7900326251983643,137,1.0,3 +88137,18,0.0,2,1.5980350971221924,138,1.0,3 +88138,18,0.0,2,1.901031255722046,139,0.0,3 +88139,18,0.0,2,1.4710367918014526,140,0.0,3 +88140,18,1.0,2,1.5900352001190186,141,0.0,3 +88141,18,1.0,2,2.1450328826904297,142,0.0,3 +88142,18,1.0,2,2.3860442638397217,143,1.0,3 +88143,18,1.0,2,2.0920305252075195,144,1.0,3 +88144,18,1.0,2,1.4620368480682373,145,1.0,3 +88145,18,0.0,2,1.8850314617156982,146,0.0,3 +88146,18,0.0,2,1.9260308742523193,147,1.0,3 +88147,18,1.0,2,1.6920340061187744,148,0.0,3 +88148,18,0.0,2,1.245038628578186,149,0.0,3 +88149,18,0.0,2,1.5710355043411255,150,1.0,3 +88150,18,0.0,2,1.3300385475158691,151,1.0,3 +88151,18,0.0,2,1.8950313329696655,152,0.0,3 +88152,18,0.0,2,2.463047981262207,153,0.0,3 +88153,18,0.0,2,1.3390384912490845,154,0.0,3 +88154,18,1.0,2,1.6510344743728638,155,1.0,3 +88155,18,0.0,2,1.316038727760315,156,0.0,3 +88156,18,1.0,2,1.403037667274475,157,1.0,3 +88157,18,1.0,2,1.4970364570617676,158,1.0,3 +88158,18,1.0,2,1.7270334959030151,159,1.0,3 +88159,18,1.0,2,2.0480294227600098,160,0.0,3 +88160,18,0.0,2,1.8170323371887207,161,1.0,3 +88161,18,0.0,2,1.434037208557129,162,0.0,3 +88162,18,0.0,2,1.7380332946777344,163,0.0,3 +88163,18,1.0,2,1.4920364618301392,164,0.0,3 +88164,18,0.0,2,1.2310385704040527,165,0.0,3 +88165,18,1.0,2,1.4900364875793457,166,1.0,3 +88166,18,1.0,2,1.5310360193252563,167,1.0,3 +88167,18,1.0,2,1.7300333976745605,168,0.0,3 +88168,18,0.0,2,1.278038740158081,169,1.0,3 +88169,18,0.0,2,1.6220347881317139,170,1.0,3 +88170,18,0.0,2,2.221036434173584,171,0.0,3 +88171,18,0.0,2,1.4530370235443115,172,1.0,3 +88172,18,0.0,2,1.5130362510681152,173,1.0,3 +88173,18,0.0,2,1.288038730621338,174,0.0,3 +88174,18,1.0,2,2.223036766052246,175,1.0,3 +88175,18,1.0,2,1.6000351905822754,176,1.0,3 +88176,18,1.0,2,1.6770341396331787,177,0.0,3 +88177,18,0.0,2,2.196035385131836,178,0.0,3 +88178,18,1.0,2,2.1140315532684326,179,1.0,3 +88179,18,1.0,2,1.900031328201294,180,1.0,3 +88180,18,1.0,2,1.6530344486236572,181,1.0,3 +88181,18,1.0,2,1.5360358953475952,182,0.0,3 +88182,18,0.0,2,1.6110349893569946,183,0.0,3 +88183,18,1.0,2,2.0480294227600098,184,0.0,3 +88184,18,1.0,2,1.573035478591919,185,0.0,3 +88185,18,0.0,2,1.691033959388733,186,0.0,3 +88186,18,1.0,2,1.802032470703125,187,1.0,3 +88187,18,1.0,2,1.661034345626831,188,0.0,3 +88188,18,0.0,2,2.3580429553985596,189,1.0,3 +88189,18,0.0,2,1.281038761138916,190,0.0,3 +88190,18,0.0,2,2.0740296840667725,191,1.0,3 +88191,18,0.0,2,1.5190361738204956,192,0.0,3 +88192,18,1.0,2,1.309038758277893,193,1.0,3 +88193,18,1.0,2,1.798032522201538,194,0.0,3 +88194,18,0.0,2,1.574035406112671,195,0.0,3 +88195,18,1.0,2,1.5140361785888672,196,1.0,3 +88196,18,1.0,2,1.616034984588623,197,0.0,3 +88197,18,0.0,2,1.5640356540679932,198,0.0,3 +88198,18,1.0,2,1.93803071975708,199,0.0,3 +88199,18,0.0,2,2.6110548973083496,200,1.0,3 +88200,18,0.0,2,1.3980376720428467,201,1.0,3 +88201,18,0.0,2,1.3200386762619019,202,0.0,3 +88202,18,0.0,2,1.6980338096618652,203,1.0,3 +88203,18,0.0,2,1.6360347270965576,204,0.0,3 +88204,18,1.0,2,1.4390372037887573,205,1.0,3 +88205,18,0.0,2,1.7910326719284058,206,0.0,3 +88206,18,0.0,2,1.8600318431854248,207,1.0,3 +88207,18,0.0,2,2.516050338745117,208,1.0,3 +88208,18,0.0,2,1.7770328521728516,209,0.0,3 +88209,18,1.0,2,1.3290386199951172,210,0.0,3 +88210,18,0.0,2,1.2240386009216309,211,0.0,3 +88211,18,0.0,2,1.312038779258728,212,1.0,3 +88212,18,0.0,2,1.7550331354141235,213,0.0,3 +88213,18,1.0,2,1.4400371313095093,214,0.0,3 +88214,18,0.0,2,1.2220386266708374,215,0.0,3 +88215,18,0.0,2,1.661034345626831,216,1.0,3 +88216,18,1.0,2,2.2910399436950684,217,0.0,3 +88217,18,0.0,2,2.1180317401885986,218,1.0,3 +88218,18,0.0,2,1.2590386867523193,219,1.0,3 +88219,18,0.0,2,1.6440346240997314,220,1.0,3 +88220,18,0.0,2,1.3220386505126953,221,1.0,3 +88221,18,1.0,2,1.5840353965759277,222,1.0,3 +88222,18,1.0,2,2.452047348022461,223,1.0,3 +88223,18,0.0,2,1.4820365905761719,224,1.0,3 +88224,18,1.0,2,1.8440320491790771,225,0.0,3 +88225,18,0.0,2,1.5590356588363647,226,0.0,3 +88226,18,0.0,2,1.2900387048721313,227,0.0,3 +88227,18,1.0,2,1.6970338821411133,228,1.0,3 +88228,18,1.0,2,1.6080350875854492,229,1.0,3 +88229,18,1.0,2,1.5860352516174316,230,0.0,3 +88230,18,1.0,2,1.9160311222076416,231,0.0,3 +88231,18,1.0,2,2.491049289703369,232,0.0,3 +88232,18,0.0,2,1.7880327701568604,233,1.0,3 +88233,18,0.0,2,1.3790379762649536,234,1.0,3 +88234,18,0.0,2,1.4690368175506592,235,0.0,3 +88235,18,0.0,2,1.6350346803665161,236,0.0,3 +88236,18,0.0,2,1.433037281036377,237,0.0,3 +88237,18,0.0,2,1.6740341186523438,238,1.0,3 +88238,18,1.0,2,2.198035478591919,239,1.0,3 +88239,18,0.0,2,1.5310360193252563,240,0.0,3 +88240,18,1.0,2,1.9500305652618408,241,0.0,3 +88241,18,1.0,2,1.9030312299728394,242,0.0,3 +88242,18,0.0,2,1.4600368738174438,243,0.0,3 +88243,18,1.0,2,1.806032419204712,244,0.0,3 +88244,18,0.0,2,1.4920364618301392,245,0.0,3 +88245,18,0.0,2,1.683034062385559,246,0.0,3 +88246,18,1.0,2,2.1320323944091797,247,1.0,3 +88247,18,1.0,2,1.6340346336364746,248,0.0,3 +88248,18,1.0,2,1.5120362043380737,249,0.0,3 +88249,18,1.0,2,1.639034628868103,250,0.0,3 +88250,18,0.0,2,1.7410333156585693,251,1.0,3 +88251,18,0.0,2,1.306038737297058,252,0.0,3 +88252,18,1.0,2,1.7810328006744385,253,0.0,3 +88253,18,0.0,2,1.8800315856933594,254,0.0,3 +88254,18,1.0,2,1.2680387496948242,255,1.0,3 +88255,18,1.0,2,1.4800366163253784,256,1.0,3 +88256,18,0.0,2,1.4900364875793457,257,0.0,3 +88257,18,1.0,2,1.8470319509506226,258,1.0,3 +88258,18,0.0,2,1.4010376930236816,259,0.0,3 +88259,18,1.0,2,1.6410346031188965,260,1.0,3 +88260,18,1.0,2,1.621034860610962,261,1.0,3 +88261,18,1.0,2,1.45203697681427,262,0.0,3 +88262,18,0.0,2,1.3790379762649536,263,0.0,3 +88263,18,0.0,2,2.3460423946380615,264,0.0,3 +88264,18,1.0,2,1.801032543182373,265,1.0,3 +88265,18,1.0,2,1.7020337581634521,266,1.0,3 +88266,18,1.0,2,1.993030071258545,267,0.0,3 +88267,18,0.0,2,1.5490357875823975,268,0.0,3 +88268,18,1.0,2,1.551035761833191,269,1.0,3 +88269,18,1.0,2,1.4060375690460205,270,1.0,3 +88270,18,1.0,2,1.6100349426269531,271,0.0,3 +88271,18,1.0,2,2.033029556274414,272,0.0,3 +88272,18,0.0,2,1.281038761138916,273,0.0,3 +88273,18,0.0,2,1.8420319557189941,274,1.0,3 +88274,18,0.0,2,1.2270386219024658,275,0.0,3 +88275,18,0.0,2,1.434037208557129,276,1.0,3 +88276,18,0.0,2,1.2650387287139893,277,0.0,3 +88277,18,0.0,2,1.284038782119751,278,0.0,3 +88278,18,0.0,2,1.714033603668213,279,1.0,3 +88279,18,0.0,2,1.4630368947982788,280,0.0,3 +88280,18,0.0,2,2.3500425815582275,281,1.0,3 +88281,18,0.0,2,1.456036925315857,282,0.0,3 +88282,18,1.0,2,1.5930352210998535,283,1.0,3 +88283,18,1.0,2,1.4310373067855835,284,1.0,3 +88284,18,1.0,2,1.7340333461761475,285,1.0,3 +88285,18,1.0,2,1.430037260055542,286,0.0,3 +88286,18,0.0,2,1.8290321826934814,287,0.0,3 +88287,18,0.0,2,2.2800393104553223,288,1.0,3 +88288,18,0.0,2,2.1010308265686035,289,0.0,3 +88289,18,0.0,2,1.5060362815856934,290,1.0,3 +88290,18,0.0,2,1.215038537979126,291,1.0,3 +88291,18,0.0,2,1.4680367708206177,292,0.0,3 +88292,18,1.0,2,1.9970300197601318,293,1.0,3 +88293,18,1.0,2,1.7520332336425781,294,1.0,3 +88294,18,1.0,2,1.6550344228744507,295,0.0,3 +88295,18,0.0,2,1.4270373582839966,296,1.0,3 +88296,18,0.0,2,1.3210387229919434,297,1.0,3 +88297,18,0.0,2,2.0050299167633057,298,0.0,3 +88298,18,0.0,2,2.1120314598083496,299,0.0,3 +88299,18,1.0,2,1.4890365600585938,300,1.0,3 +88300,18,1.0,2,1.7270334959030151,301,0.0,3 +88301,18,0.0,2,1.6040351390838623,302,1.0,3 +88302,18,0.0,2,1.714033603668213,303,1.0,3 +88303,18,0.0,2,1.9570305347442627,304,0.0,3 +88304,18,0.0,2,2.178034543991089,305,0.0,3 +88305,18,1.0,2,1.4230374097824097,306,1.0,3 +88306,18,1.0,2,2.1110315322875977,307,0.0,3 +88307,18,0.0,2,2.5610523223876953,308,1.0,3 +88308,18,0.0,2,2.0770297050476074,309,1.0,3 +88309,18,0.0,2,1.5200361013412476,310,0.0,3 +88310,18,1.0,2,1.7710329294204712,311,1.0,3 +88311,18,1.0,2,1.3210387229919434,312,0.0,3 +88312,18,0.0,2,1.6850340366363525,313,0.0,3 +88313,18,1.0,2,2.6430563926696777,314,0.0,3 +88314,18,0.0,2,1.7040338516235352,315,1.0,3 +88315,18,0.0,2,1.9070311784744263,316,1.0,3 +88316,18,0.0,2,1.4220373630523682,317,0.0,3 +88317,18,0.0,2,1.5160361528396606,318,1.0,3 +88318,18,0.0,2,1.1490384340286255,319,0.0,3 +88319,18,0.0,2,1.8670316934585571,320,1.0,3 +88320,18,0.0,2,1.2060385942459106,321,0.0,3 +88321,18,0.0,2,2.0670294761657715,322,0.0,3 +88322,18,0.0,2,1.6820340156555176,323,1.0,3 +88323,18,1.0,2,1.5040363073349,324,1.0,3 +88324,18,1.0,2,1.992030143737793,325,0.0,3 +88325,18,0.0,2,1.3200386762619019,326,0.0,3 +88326,18,0.0,2,2.1420328617095947,327,0.0,3 +88327,18,1.0,2,2.0750298500061035,328,1.0,3 +88328,18,0.0,2,1.2220386266708374,329,1.0,3 +88329,18,1.0,2,1.6460344791412354,330,1.0,3 +88330,18,0.0,2,1.2890387773513794,331,1.0,3 +88331,18,0.0,2,1.223038673400879,332,1.0,3 +88332,18,1.0,2,1.404037594795227,333,1.0,3 +88333,18,0.0,2,1.731033444404602,334,1.0,3 +88334,18,1.0,2,1.5920352935791016,335,1.0,3 +88335,18,0.0,2,1.6540343761444092,336,0.0,3 +88336,18,1.0,2,1.7040338516235352,337,0.0,3 +88337,18,0.0,2,2.1530332565307617,338,0.0,3 +88338,18,1.0,2,1.3610382080078125,339,1.0,3 +88339,18,0.0,2,1.3660380840301514,340,0.0,3 +88340,18,0.0,2,2.1100313663482666,341,0.0,3 +88341,18,0.0,2,2.3560428619384766,342,0.0,3 +88342,18,1.0,2,1.8260321617126465,343,1.0,3 +88343,18,1.0,2,1.7190335988998413,344,1.0,3 +88344,18,0.0,2,1.315038800239563,345,1.0,3 +88345,18,0.0,2,1.2980387210845947,346,1.0,3 +88346,18,1.0,2,1.5590356588363647,347,1.0,3 +88347,18,0.0,2,1.4700367450714111,348,0.0,3 +88348,18,1.0,2,2.2630386352539062,349,1.0,3 +88349,18,1.0,2,1.4170374870300293,350,0.0,3 +88350,18,1.0,2,1.451037049293518,351,0.0,3 +88351,18,0.0,2,1.4540369510650635,352,0.0,3 +88352,18,0.0,2,2.0030298233032227,353,0.0,3 +88353,18,1.0,2,1.896031379699707,354,1.0,3 +88354,18,1.0,2,1.3290386199951172,355,1.0,3 +88355,18,1.0,2,1.9110311269760132,356,1.0,3 +88356,18,1.0,2,1.3180387020111084,357,1.0,3 +88357,18,1.0,2,1.62003493309021,358,1.0,3 +88358,18,0.0,2,1.4980363845825195,359,0.0,3 +88359,18,1.0,2,1.386037826538086,360,1.0,3 +88360,18,0.0,2,1.8400321006774902,361,1.0,3 +88361,18,1.0,2,1.853031873703003,362,0.0,3 +88362,18,0.0,2,1.3030388355255127,363,1.0,3 +88363,18,0.0,2,1.9740302562713623,364,0.0,3 +88364,18,0.0,2,1.7810328006744385,365,1.0,3 +88365,18,0.0,2,1.7190335988998413,366,0.0,3 +88366,18,0.0,2,1.9090311527252197,367,1.0,3 +88367,18,0.0,2,1.6990338563919067,368,0.0,3 +88368,18,0.0,2,1.456036925315857,369,0.0,3 +88369,18,1.0,2,1.6880340576171875,370,1.0,3 +88370,18,1.0,2,1.7440333366394043,371,0.0,3 +88371,18,1.0,2,1.7240335941314697,372,0.0,3 +88372,18,0.0,2,2.474048376083374,373,1.0,3 +88373,18,0.0,2,1.6930339336395264,374,0.0,3 +88374,18,1.0,2,2.670057535171509,375,1.0,3 +88375,18,1.0,2,2.242037534713745,376,1.0,3 +88376,18,1.0,2,1.5360358953475952,377,1.0,3 +88377,18,1.0,2,1.8630317449569702,378,0.0,3 +88378,18,0.0,2,1.6690342426300049,379,1.0,3 +88379,18,0.0,2,1.525036096572876,380,1.0,3 +88380,18,0.0,2,1.9390307664871216,381,1.0,3 +88381,18,0.0,2,1.9370307922363281,382,0.0,3 +88382,18,1.0,2,1.6590343713760376,383,0.0,3 +88383,18,1.0,2,1.616034984588623,384,0.0,3 +88384,18,0.0,2,1.6940338611602783,385,0.0,3 +88385,18,1.0,2,1.3570382595062256,386,0.0,3 +88386,18,0.0,2,1.5040363073349,387,1.0,3 +88387,18,0.0,2,2.3910446166992188,388,1.0,3 +88388,18,0.0,2,1.8180322647094727,389,1.0,3 +88389,18,0.0,2,1.658034324645996,390,1.0,3 +88390,18,0.0,2,1.477036714553833,391,1.0,3 +88391,18,0.0,2,1.4000376462936401,392,0.0,3 +88392,18,0.0,2,1.5300359725952148,393,1.0,3 +88393,18,0.0,2,1.5610356330871582,394,0.0,3 +88394,18,0.0,2,1.3670381307601929,395,0.0,3 +88395,18,1.0,2,2.0860302448272705,396,1.0,3 +88396,18,1.0,2,1.8870314359664917,397,0.0,3 +88397,18,1.0,2,1.9730303287506104,398,0.0,3 +88398,18,1.0,2,1.7480332851409912,399,0.0,3 +88399,18,0.0,2,2.198035478591919,400,0.0,3 +88400,18,1.0,2,1.754033088684082,401,0.0,3 +88401,18,1.0,2,1.496036410331726,402,0.0,3 +88402,18,0.0,2,1.529036045074463,403,1.0,3 +88403,18,0.0,2,1.5280359983444214,404,0.0,3 +88404,18,0.0,2,1.4890365600585938,405,0.0,3 +88405,18,0.0,2,2.3000402450561523,406,0.0,3 +88406,18,1.0,2,1.4230374097824097,407,0.0,3 +88407,18,0.0,2,2.229036808013916,408,1.0,3 +88408,18,0.0,2,1.9040312767028809,409,0.0,3 +88409,18,1.0,2,2.0890302658081055,410,0.0,3 +88410,18,0.0,2,1.4920364618301392,411,1.0,3 +88411,18,0.0,2,1.3770380020141602,412,0.0,3 +88412,18,1.0,2,1.521036148071289,413,1.0,3 +88413,18,0.0,2,1.3740379810333252,414,0.0,3 +88414,18,1.0,2,1.7770328521728516,415,1.0,3 +88415,18,1.0,2,1.9490306377410889,416,0.0,3 +88416,18,0.0,2,1.705033779144287,417,1.0,3 +88417,18,0.0,2,2.2590384483337402,418,1.0,3 +88418,18,0.0,2,1.8440320491790771,419,0.0,3 +88419,18,0.0,2,1.7770328521728516,420,1.0,3 +88420,18,0.0,2,1.3730380535125732,421,0.0,3 +88421,18,0.0,2,1.2030385732650757,422,0.0,3 +88422,18,0.0,2,1.8410320281982422,423,1.0,3 +88423,18,0.0,2,1.59103524684906,424,1.0,3 +88424,18,1.0,2,1.6420345306396484,425,1.0,3 +88425,18,0.0,2,1.9170310497283936,426,1.0,3 +88426,18,1.0,2,1.9070311784744263,427,1.0,3 +88427,18,1.0,2,1.856031894683838,428,0.0,3 +88428,18,0.0,2,1.6700341701507568,429,0.0,3 +88429,18,0.0,2,2.039029598236084,430,0.0,3 +88430,18,1.0,2,2.3120408058166504,431,1.0,3 +88431,18,1.0,2,1.214038610458374,432,1.0,3 +88432,18,1.0,2,1.7620329856872559,433,0.0,3 +88433,18,0.0,2,1.7180335521697998,434,0.0,3 +88434,18,0.0,2,1.7670329809188843,435,1.0,3 +88435,18,0.0,2,1.2830387353897095,436,1.0,3 +88436,18,0.0,2,1.1680384874343872,437,0.0,3 +88437,18,1.0,2,1.6230348348617554,438,0.0,3 +88438,18,0.0,2,1.7740328311920166,439,0.0,3 +88439,18,0.0,2,1.285038709640503,440,1.0,3 +88440,18,0.0,2,1.2000385522842407,441,1.0,3 +88441,18,1.0,2,1.4930365085601807,442,1.0,3 +88442,18,1.0,2,1.893031358718872,443,0.0,3 +88443,18,0.0,2,1.6190348863601685,444,0.0,3 +88444,18,1.0,2,1.946030616760254,445,1.0,3 +88445,18,1.0,2,2.0710296630859375,446,1.0,3 +88446,18,1.0,2,1.3790379762649536,447,1.0,3 +88447,18,1.0,2,1.3670381307601929,448,1.0,3 +88448,18,1.0,2,1.9550305604934692,449,0.0,3 +88449,18,1.0,2,1.242038607597351,450,1.0,3 +88450,18,1.0,2,2.1360325813293457,451,1.0,3 +88451,18,1.0,2,2.1060311794281006,452,0.0,3 +88452,18,1.0,2,1.2570387125015259,453,1.0,3 +88453,18,1.0,2,1.5360358953475952,454,1.0,3 +88454,18,1.0,2,1.8130323886871338,455,1.0,3 +88455,18,1.0,2,1.7040338516235352,456,0.0,3 +88456,18,0.0,2,1.3720380067825317,457,0.0,3 +88457,18,0.0,2,1.9640305042266846,458,0.0,3 +88458,18,0.0,2,1.215038537979126,459,1.0,3 +88459,18,0.0,2,1.5170361995697021,460,1.0,3 +88460,18,0.0,2,1.3050388097763062,461,0.0,3 +88461,18,0.0,2,1.5890352725982666,462,0.0,3 +88462,18,0.0,2,1.3220386505126953,463,0.0,3 +88463,18,0.0,2,2.0660293102264404,464,0.0,3 +88464,18,0.0,2,2.0580291748046875,465,1.0,3 +88465,18,0.0,2,2.3130407333374023,466,1.0,3 +88466,18,0.0,2,1.2590386867523193,467,1.0,3 +88467,18,0.0,2,1.5490357875823975,468,0.0,3 +88468,18,0.0,2,1.6540343761444092,469,0.0,3 +88469,18,1.0,2,1.2660386562347412,470,0.0,3 +88470,18,1.0,2,1.3960376977920532,471,0.0,3 +88471,18,0.0,2,2.480048656463623,472,1.0,3 +88472,18,0.0,2,1.3360384702682495,473,1.0,3 +88473,18,0.0,2,1.5930352210998535,474,0.0,3 +88474,18,0.0,2,1.716033697128296,475,1.0,3 +88475,18,0.0,2,1.7970325946807861,476,1.0,3 +88476,18,0.0,2,1.334038496017456,477,1.0,3 +88477,18,0.0,2,1.2720386981964111,478,0.0,3 +88478,18,0.0,2,1.478036642074585,479,1.0,3 +88479,18,0.0,2,1.4350372552871704,480,1.0,3 +88480,18,0.0,2,1.2610386610031128,481,0.0,3 +88481,18,1.0,2,1.5120362043380737,482,1.0,3 +88482,18,1.0,2,1.5300359725952148,483,0.0,3 +88483,18,1.0,2,1.2520387172698975,484,0.0,3 +88484,18,1.0,2,1.6230348348617554,485,1.0,3 +88485,18,1.0,2,1.408037543296814,486,0.0,3 +88486,18,0.0,2,1.525036096572876,487,1.0,3 +88487,18,0.0,2,1.1420384645462036,488,0.0,3 +88488,18,0.0,2,1.3420383930206299,489,1.0,3 +88489,18,0.0,2,1.356038212776184,490,0.0,3 +88490,18,0.0,2,2.2720389366149902,491,1.0,3 +88491,18,0.0,2,1.306038737297058,492,0.0,3 +88492,18,0.0,2,1.3010387420654297,493,1.0,3 +88493,18,0.0,2,1.4620368480682373,494,1.0,3 +88494,18,0.0,2,1.6330347061157227,495,1.0,3 +88495,18,1.0,2,1.6350346803665161,496,0.0,3 +88496,18,0.0,2,1.2700387239456177,497,1.0,3 +88497,18,0.0,2,1.4430371522903442,498,1.0,3 +88498,18,1.0,2,2.8160643577575684,499,1.0,3 +88499,18,1.0,2,1.8100323677062988,500,1.0,3 +88500,19,0.0,0,1.318328619003296,1,0.0,3 +88501,19,1.0,0,1.349328637123108,2,1.0,3 +88502,19,1.0,0,2.0093207359313965,3,1.0,3 +88503,19,0.0,0,1.6433253288269043,4,1.0,3 +88504,19,0.0,0,2.4863357543945312,5,0.0,3 +88505,19,0.0,0,2.072319746017456,6,0.0,3 +88506,19,1.0,0,1.2873284816741943,7,1.0,3 +88507,19,1.0,0,1.6473252773284912,8,1.0,3 +88508,19,1.0,0,1.7123243808746338,9,1.0,3 +88509,19,1.0,0,1.6383254528045654,10,1.0,3 +88510,19,1.0,0,1.748323917388916,11,1.0,3 +88511,19,1.0,0,1.339328646659851,12,0.0,3 +88512,19,0.0,0,2.0283203125,13,0.0,3 +88513,19,0.0,0,1.4863272905349731,14,0.0,3 +88514,19,1.0,0,1.2533284425735474,15,1.0,3 +88515,19,1.0,0,1.6173256635665894,16,0.0,3 +88516,19,1.0,0,1.8543226718902588,17,0.0,3 +88517,19,0.0,0,1.7273242473602295,18,1.0,3 +88518,19,0.0,0,1.4633276462554932,19,0.0,3 +88519,19,0.0,0,1.917321801185608,20,1.0,3 +88520,19,0.0,0,1.3863285779953003,21,0.0,3 +88521,19,0.0,0,2.2273237705230713,22,0.0,3 +88522,19,1.0,0,1.9443213939666748,23,1.0,3 +88523,19,1.0,0,1.4543277025222778,24,1.0,3 +88524,19,1.0,0,1.3923285007476807,25,1.0,3 +88525,19,1.0,0,1.4133282899856567,26,0.0,3 +88526,19,1.0,0,1.9493213891983032,27,1.0,3 +88527,19,1.0,0,1.2953286170959473,28,1.0,3 +88528,19,1.0,0,1.3203285932540894,29,1.0,3 +88529,19,1.0,0,1.3773287534713745,30,1.0,3 +88530,19,1.0,0,1.615325689315796,31,1.0,3 +88531,19,0.0,0,1.5753262042999268,32,0.0,3 +88532,19,0.0,0,2.2123231887817383,33,0.0,3 +88533,19,1.0,0,1.7633237838745117,34,1.0,3 +88534,19,0.0,0,1.3323286771774292,35,0.0,3 +88535,19,1.0,0,1.3663287162780762,36,1.0,3 +88536,19,1.0,0,1.5403265953063965,37,0.0,3 +88537,19,0.0,0,1.6843247413635254,38,0.0,3 +88538,19,1.0,0,1.6023257970809937,39,0.0,3 +88539,19,1.0,0,1.7433240413665771,40,1.0,3 +88540,19,1.0,0,1.8193230628967285,41,1.0,3 +88541,19,1.0,0,1.4633276462554932,42,1.0,3 +88542,19,1.0,0,1.3853286504745483,43,1.0,3 +88543,19,1.0,0,1.702324628829956,44,1.0,3 +88544,19,1.0,0,1.2923285961151123,45,1.0,3 +88545,19,0.0,0,1.560326337814331,46,0.0,3 +88546,19,1.0,0,1.8093231916427612,47,1.0,3 +88547,19,1.0,0,1.4383279085159302,48,1.0,3 +88548,19,1.0,0,1.9973207712173462,49,1.0,3 +88549,19,1.0,0,2.1103193759918213,50,1.0,3 +88550,19,1.0,0,1.2323284149169922,51,1.0,3 +88551,19,1.0,0,1.6953246593475342,52,1.0,3 +88552,19,1.0,0,1.5023270845413208,53,1.0,3 +88553,19,1.0,0,1.4983271360397339,54,0.0,3 +88554,19,0.0,0,1.7283241748809814,55,0.0,3 +88555,19,0.0,0,1.9053219556808472,56,0.0,3 +88556,19,1.0,0,2.3113276958465576,57,1.0,3 +88557,19,0.0,0,1.8753223419189453,58,0.0,3 +88558,19,1.0,0,1.3473286628723145,59,0.0,3 +88559,19,1.0,0,1.8263230323791504,60,1.0,3 +88560,19,1.0,0,1.6883246898651123,61,1.0,3 +88561,19,1.0,0,1.6103256940841675,62,1.0,3 +88562,19,1.0,0,1.2903285026550293,63,0.0,3 +88563,19,1.0,0,1.9183218479156494,64,0.0,3 +88564,19,0.0,0,2.674344539642334,65,0.0,3 +88565,19,1.0,0,2.7453479766845703,66,1.0,3 +88566,19,1.0,0,1.5873260498046875,67,0.0,3 +88567,19,1.0,0,1.4263280630111694,68,1.0,3 +88568,19,1.0,0,1.3323286771774292,69,0.0,3 +88569,19,1.0,0,1.7093244791030884,70,1.0,3 +88570,19,1.0,0,1.5473265647888184,71,1.0,3 +88571,19,1.0,0,1.6283254623413086,72,1.0,3 +88572,19,1.0,0,1.7863235473632812,73,1.0,3 +88573,19,1.0,0,1.3563287258148193,74,1.0,3 +88574,19,0.0,0,1.9043219089508057,75,1.0,3 +88575,19,0.0,0,2.1003193855285645,76,0.0,3 +88576,19,1.0,0,1.7833235263824463,77,1.0,3 +88577,19,1.0,0,1.6713249683380127,78,1.0,3 +88578,19,1.0,0,1.4383279085159302,79,0.0,3 +88579,19,1.0,0,1.6613250970840454,80,1.0,3 +88580,19,1.0,0,1.5813261270523071,81,1.0,3 +88581,19,1.0,0,1.515326976776123,82,1.0,3 +88582,19,1.0,0,2.174321174621582,83,1.0,3 +88583,19,1.0,0,1.8573225736618042,84,1.0,3 +88584,19,1.0,0,1.5883259773254395,85,0.0,3 +88585,19,1.0,0,2.082319736480713,86,1.0,3 +88586,19,0.0,0,1.2093284130096436,87,0.0,3 +88587,19,1.0,0,1.7183244228363037,88,0.0,3 +88588,19,1.0,0,1.7723236083984375,89,1.0,3 +88589,19,1.0,0,1.6323254108428955,90,1.0,3 +88590,19,1.0,0,1.5023270845413208,91,0.0,3 +88591,19,1.0,0,2.0043206214904785,92,1.0,3 +88592,19,1.0,0,1.5363266468048096,93,1.0,3 +88593,19,0.0,0,1.3773287534713745,94,1.0,3 +88594,19,0.0,0,2.136319637298584,95,0.0,3 +88595,19,1.0,0,1.6183255910873413,96,1.0,3 +88596,19,1.0,0,1.589326024055481,97,0.0,3 +88597,19,1.0,0,2.184321880340576,98,1.0,3 +88598,19,1.0,0,1.5133270025253296,99,1.0,3 +88599,19,1.0,0,1.5543264150619507,100,1.0,3 +88600,19,1.0,0,2.5223374366760254,101,1.0,3 +88601,19,1.0,0,1.3343286514282227,102,1.0,3 +88602,19,1.0,0,1.7433240413665771,103,1.0,3 +88603,19,1.0,0,1.703324556350708,104,1.0,3 +88604,19,1.0,0,1.4413279294967651,105,1.0,3 +88605,19,1.0,0,1.4963271617889404,106,0.0,3 +88606,19,1.0,0,1.817323088645935,107,1.0,3 +88607,19,0.0,0,1.4603276252746582,108,0.0,3 +88608,19,1.0,0,1.3373286724090576,109,0.0,3 +88609,19,1.0,0,1.9533213376998901,110,1.0,3 +88610,19,1.0,0,1.7183244228363037,111,1.0,3 +88611,19,1.0,0,1.9113218784332275,112,0.0,3 +88612,19,0.0,0,2.3163280487060547,113,0.0,3 +88613,19,1.0,0,1.3883285522460938,114,1.0,3 +88614,19,1.0,0,1.49032723903656,115,1.0,3 +88615,19,1.0,0,1.7723236083984375,116,1.0,3 +88616,19,1.0,0,1.5293267965316772,117,1.0,3 +88617,19,1.0,0,1.2883285284042358,118,0.0,3 +88618,19,1.0,0,1.3943284749984741,119,1.0,3 +88619,19,1.0,0,1.2863285541534424,120,1.0,3 +88620,19,1.0,0,1.6353254318237305,121,1.0,3 +88621,19,1.0,0,1.747323989868164,122,1.0,3 +88622,19,1.0,0,1.4913272857666016,123,1.0,3 +88623,19,1.0,0,1.5393266677856445,124,1.0,3 +88624,19,1.0,0,1.3593287467956543,125,1.0,3 +88625,19,1.0,0,1.7323241233825684,126,1.0,3 +88626,19,1.0,0,1.4613276720046997,127,1.0,3 +88627,19,1.0,0,1.401328444480896,128,1.0,3 +88628,19,1.0,0,1.5793261528015137,129,1.0,3 +88629,19,1.0,0,1.4813274145126343,130,1.0,3 +88630,19,1.0,0,2.0993194580078125,131,1.0,3 +88631,19,1.0,0,1.4123282432556152,132,1.0,3 +88632,19,1.0,0,1.9883208274841309,133,1.0,3 +88633,19,1.0,0,1.8483226299285889,134,1.0,3 +88634,19,1.0,0,1.4033284187316895,135,1.0,3 +88635,19,1.0,0,1.346328616142273,136,1.0,3 +88636,19,1.0,0,1.4783273935317993,137,1.0,3 +88637,19,1.0,0,1.6873247623443604,138,1.0,3 +88638,19,1.0,0,1.5693262815475464,139,1.0,3 +88639,19,1.0,0,1.5363266468048096,140,1.0,3 +88640,19,1.0,0,2.2193233966827393,141,1.0,3 +88641,19,1.0,0,1.4373279809951782,142,1.0,3 +88642,19,0.0,0,1.5873260498046875,143,0.0,3 +88643,19,1.0,0,1.6023257970809937,144,1.0,3 +88644,19,0.0,0,1.6633250713348389,145,1.0,3 +88645,19,0.0,0,1.7013245820999146,146,0.0,3 +88646,19,1.0,0,1.4843273162841797,147,1.0,3 +88647,19,1.0,0,1.6823248863220215,148,1.0,3 +88648,19,1.0,0,1.4433279037475586,149,1.0,3 +88649,19,1.0,0,1.6303255558013916,150,1.0,3 +88650,19,1.0,0,1.4953272342681885,151,0.0,3 +88651,19,1.0,0,1.4413279294967651,152,1.0,3 +88652,19,1.0,0,1.2223284244537354,153,1.0,3 +88653,19,1.0,0,2.2003226280212402,154,1.0,3 +88654,19,1.0,0,1.8543226718902588,155,1.0,3 +88655,19,1.0,0,1.3873286247253418,156,1.0,3 +88656,19,1.0,0,1.5533264875411987,157,1.0,3 +88657,19,1.0,0,1.4523277282714844,158,1.0,3 +88658,19,1.0,0,1.7153244018554688,159,1.0,3 +88659,19,1.0,0,1.5103269815444946,160,1.0,3 +88660,19,1.0,0,1.8303229808807373,161,1.0,3 +88661,19,1.0,0,1.3433287143707275,162,1.0,3 +88662,19,1.0,0,1.4513278007507324,163,1.0,3 +88663,19,1.0,0,1.5103269815444946,164,1.0,3 +88664,19,0.0,0,1.4873273372650146,165,0.0,3 +88665,19,1.0,0,1.655325174331665,166,0.0,3 +88666,19,0.0,0,1.5103269815444946,167,0.0,3 +88667,19,1.0,0,2.6073415279388428,168,1.0,3 +88668,19,1.0,0,1.7603237628936768,169,1.0,3 +88669,19,1.0,0,1.7413240671157837,170,1.0,3 +88670,19,1.0,0,1.5063270330429077,171,1.0,3 +88671,19,1.0,0,1.4573277235031128,172,1.0,3 +88672,19,1.0,0,1.4963271617889404,173,0.0,3 +88673,19,1.0,0,2.074319839477539,174,1.0,3 +88674,19,1.0,0,1.545326590538025,175,1.0,3 +88675,19,1.0,0,1.5513265132904053,176,1.0,3 +88676,19,1.0,0,1.2973285913467407,177,1.0,3 +88677,19,1.0,0,1.3633286952972412,178,0.0,3 +88678,19,1.0,0,1.6963245868682861,179,1.0,3 +88679,19,1.0,0,1.5943259000778198,180,1.0,3 +88680,19,1.0,0,1.5763261318206787,181,1.0,3 +88681,19,1.0,0,1.5353267192840576,182,1.0,3 +88682,19,1.0,0,1.3133286237716675,183,1.0,3 +88683,19,0.0,0,2.0573201179504395,184,0.0,3 +88684,19,1.0,0,1.8993220329284668,185,1.0,3 +88685,19,1.0,0,1.3403286933898926,186,1.0,3 +88686,19,1.0,0,1.4113283157348633,187,0.0,3 +88687,19,0.0,0,2.2923269271850586,188,0.0,3 +88688,19,0.0,0,1.840322732925415,189,0.0,3 +88689,19,1.0,0,1.6423254013061523,190,1.0,3 +88690,19,1.0,0,1.6933246850967407,191,1.0,3 +88691,19,1.0,0,1.984320878982544,192,1.0,3 +88692,19,1.0,0,1.607325792312622,193,1.0,3 +88693,19,1.0,0,1.6893247365951538,194,1.0,3 +88694,19,1.0,0,1.9013220071792603,195,1.0,3 +88695,19,1.0,0,1.3813287019729614,196,1.0,3 +88696,19,0.0,0,1.5073270797729492,197,0.0,3 +88697,19,1.0,0,1.3873286247253418,198,1.0,3 +88698,19,1.0,0,1.4763274192810059,199,1.0,3 +88699,19,1.0,0,1.8893221616744995,200,0.0,3 +88700,19,1.0,0,1.6383254528045654,201,1.0,3 +88701,19,1.0,0,1.5003271102905273,202,1.0,3 +88702,19,1.0,0,1.6053258180618286,203,1.0,3 +88703,19,1.0,0,1.4213281869888306,204,1.0,3 +88704,19,1.0,0,1.3883285522460938,205,1.0,3 +88705,19,1.0,0,1.3563287258148193,206,0.0,3 +88706,19,1.0,0,1.9933208227157593,207,1.0,3 +88707,19,1.0,0,1.560326337814331,208,0.0,3 +88708,19,1.0,0,1.6203255653381348,209,1.0,3 +88709,19,1.0,0,1.7373241186141968,210,1.0,3 +88710,19,1.0,0,1.6353254318237305,211,1.0,3 +88711,19,1.0,0,1.3593287467956543,212,1.0,3 +88712,19,1.0,0,1.3333286046981812,213,1.0,3 +88713,19,1.0,0,1.7133244276046753,214,1.0,3 +88714,19,0.0,0,1.4093283414840698,215,0.0,3 +88715,19,1.0,0,1.4783273935317993,216,0.0,3 +88716,19,0.0,0,1.2613284587860107,217,0.0,3 +88717,19,1.0,0,1.7793235778808594,218,1.0,3 +88718,19,0.0,0,1.7103245258331299,219,1.0,3 +88719,19,0.0,0,1.6823248863220215,220,0.0,3 +88720,19,1.0,0,1.586326003074646,221,1.0,3 +88721,19,1.0,0,1.5223268270492554,222,1.0,3 +88722,19,1.0,0,1.8603224754333496,223,1.0,3 +88723,19,1.0,0,1.6413253545761108,224,1.0,3 +88724,19,1.0,0,1.7843234539031982,225,0.0,3 +88725,19,1.0,0,1.9753210544586182,226,1.0,3 +88726,19,1.0,0,1.7103245258331299,227,1.0,3 +88727,19,1.0,0,1.7113244533538818,228,1.0,3 +88728,19,1.0,0,1.9733210802078247,229,1.0,3 +88729,19,1.0,0,2.020320415496826,230,1.0,3 +88730,19,1.0,0,2.041320323944092,231,0.0,3 +88731,19,1.0,0,2.397331714630127,232,1.0,3 +88732,19,1.0,0,1.9743211269378662,233,1.0,3 +88733,19,1.0,0,1.7153244018554688,234,0.0,3 +88734,19,0.0,0,1.6363253593444824,235,0.0,3 +88735,19,0.0,0,1.318328619003296,236,0.0,3 +88736,19,0.0,0,1.4843273162841797,237,0.0,3 +88737,19,0.0,0,1.7203242778778076,238,0.0,3 +88738,19,0.0,0,1.4623275995254517,239,0.0,3 +88739,19,0.0,0,1.3373286724090576,240,0.0,3 +88740,19,0.0,0,1.3193285465240479,241,0.0,3 +88741,19,0.0,0,1.6653250455856323,242,0.0,3 +88742,19,1.0,0,2.021320343017578,243,1.0,3 +88743,19,1.0,0,1.372328758239746,244,0.0,3 +88744,19,1.0,0,2.370330333709717,245,0.0,3 +88745,19,0.0,0,1.493327260017395,246,0.0,3 +88746,19,1.0,0,1.6213256120681763,247,1.0,3 +88747,19,1.0,0,1.3643287420272827,248,1.0,3 +88748,19,1.0,0,1.3593287467956543,249,1.0,3 +88749,19,1.0,0,2.1043193340301514,250,0.0,3 +88750,19,0.0,0,1.4823273420333862,251,0.0,3 +88751,19,1.0,0,1.6833248138427734,252,1.0,3 +88752,19,1.0,0,1.3903285264968872,253,0.0,3 +88753,19,1.0,0,2.5603394508361816,254,0.0,3 +88754,19,0.0,0,2.2803263664245605,255,0.0,3 +88755,19,0.0,0,1.4373279809951782,256,0.0,3 +88756,19,0.0,0,1.4703274965286255,257,0.0,3 +88757,19,0.0,0,1.4293280839920044,258,0.0,3 +88758,19,0.0,0,1.7083244323730469,259,0.0,3 +88759,19,1.0,0,1.8583226203918457,260,1.0,3 +88760,19,1.0,0,1.6483252048492432,261,1.0,3 +88761,19,1.0,0,1.2863285541534424,262,1.0,3 +88762,19,1.0,0,1.4593276977539062,263,1.0,3 +88763,19,1.0,0,1.4123282432556152,264,0.0,3 +88764,19,0.0,0,1.4993271827697754,265,0.0,3 +88765,19,1.0,0,1.7403240203857422,266,1.0,3 +88766,19,1.0,0,1.3443286418914795,267,1.0,3 +88767,19,1.0,0,2.0953195095062256,268,1.0,3 +88768,19,1.0,0,1.5663262605667114,269,1.0,3 +88769,19,1.0,0,1.450327754020691,270,0.0,3 +88770,19,1.0,0,1.5133270025253296,271,1.0,3 +88771,19,1.0,0,1.6013258695602417,272,1.0,3 +88772,19,1.0,0,1.6343255043029785,273,0.0,3 +88773,19,1.0,0,1.4563276767730713,274,0.0,3 +88774,19,1.0,0,1.6893247365951538,275,1.0,3 +88775,19,1.0,0,1.3103286027908325,276,1.0,3 +88776,19,1.0,0,1.4113283157348633,277,1.0,3 +88777,19,1.0,0,1.5663262605667114,278,1.0,3 +88778,19,1.0,0,1.4483277797698975,279,0.0,3 +88779,19,1.0,0,1.6313254833221436,280,1.0,3 +88780,19,1.0,0,2.189321994781494,281,0.0,3 +88781,19,1.0,0,1.585326075553894,282,1.0,3 +88782,19,1.0,0,1.4853273630142212,283,1.0,3 +88783,19,1.0,0,1.5243268013000488,284,1.0,3 +88784,19,0.0,0,1.3743287324905396,285,0.0,3 +88785,19,1.0,0,1.4743274450302124,286,1.0,3 +88786,19,1.0,0,1.4763274192810059,287,1.0,3 +88787,19,1.0,0,1.5873260498046875,288,1.0,3 +88788,19,0.0,0,1.846322774887085,289,1.0,3 +88789,19,1.0,0,1.6243255138397217,290,1.0,3 +88790,19,1.0,0,2.5073368549346924,291,1.0,3 +88791,19,0.0,0,2.181321620941162,292,0.0,3 +88792,19,1.0,0,2.164320945739746,293,1.0,3 +88793,19,1.0,0,1.7893234491348267,294,1.0,3 +88794,19,1.0,0,1.3643287420272827,295,1.0,3 +88795,19,0.0,0,1.6273255348205566,296,0.0,3 +88796,19,1.0,0,1.5353267192840576,297,0.0,3 +88797,19,0.0,0,1.349328637123108,298,0.0,3 +88798,19,0.0,0,1.940321445465088,299,0.0,3 +88799,19,1.0,0,1.2643284797668457,300,0.0,3 +88800,19,1.0,0,1.6383254528045654,301,1.0,3 +88801,19,1.0,0,1.3573286533355713,302,1.0,3 +88802,19,1.0,0,1.6463253498077393,303,1.0,3 +88803,19,1.0,0,1.6903247833251953,304,1.0,3 +88804,19,1.0,0,1.3403286933898926,305,1.0,3 +88805,19,0.0,0,1.5183268785476685,306,1.0,3 +88806,19,0.0,0,1.244328498840332,307,0.0,3 +88807,19,1.0,0,1.6063257455825806,308,1.0,3 +88808,19,1.0,0,1.4953272342681885,309,0.0,3 +88809,19,1.0,0,1.4853273630142212,310,1.0,3 +88810,19,1.0,0,1.5763261318206787,311,1.0,3 +88811,19,1.0,0,1.9473214149475098,312,1.0,3 +88812,19,1.0,0,1.4143282175064087,313,1.0,3 +88813,19,1.0,0,1.6143256425857544,314,1.0,3 +88814,19,1.0,0,1.662325143814087,315,1.0,3 +88815,19,1.0,0,1.4303280115127563,316,1.0,3 +88816,19,1.0,0,2.156320571899414,317,1.0,3 +88817,19,1.0,0,1.9783210754394531,318,1.0,3 +88818,19,0.0,0,1.2303284406661987,319,0.0,3 +88819,19,1.0,0,1.8183231353759766,320,1.0,3 +88820,19,1.0,0,1.4763274192810059,321,0.0,3 +88821,19,1.0,0,1.8373228311538696,322,1.0,3 +88822,19,1.0,0,1.7113244533538818,323,1.0,3 +88823,19,1.0,0,1.590325951576233,324,1.0,3 +88824,19,1.0,0,1.3303285837173462,325,1.0,3 +88825,19,1.0,0,1.5403265953063965,326,1.0,3 +88826,19,1.0,0,1.4543277025222778,327,1.0,3 +88827,19,1.0,0,1.746324062347412,328,1.0,3 +88828,19,1.0,0,1.6223255395889282,329,1.0,3 +88829,19,1.0,0,1.3023285865783691,330,1.0,3 +88830,19,1.0,0,1.346328616142273,331,1.0,3 +88831,19,0.0,0,1.6923246383666992,332,0.0,3 +88832,19,1.0,0,1.3563287258148193,333,1.0,3 +88833,19,1.0,0,1.4413279294967651,334,0.0,3 +88834,19,1.0,0,1.3253285884857178,335,1.0,3 +88835,19,1.0,0,1.2593284845352173,336,1.0,3 +88836,19,1.0,0,1.9473214149475098,337,1.0,3 +88837,19,0.0,0,1.9673211574554443,338,0.0,3 +88838,19,1.0,0,1.4563276767730713,339,0.0,3 +88839,19,1.0,0,1.5083270072937012,340,1.0,3 +88840,19,1.0,0,1.306328535079956,341,1.0,3 +88841,19,1.0,0,1.5283267498016357,342,1.0,3 +88842,19,1.0,0,1.4533277750015259,343,1.0,3 +88843,19,1.0,0,1.7103245258331299,344,1.0,3 +88844,19,1.0,0,1.7883234024047852,345,1.0,3 +88845,19,1.0,0,1.4373279809951782,346,1.0,3 +88846,19,1.0,0,1.348328709602356,347,0.0,3 +88847,19,1.0,0,1.5013271570205688,348,1.0,3 +88848,19,1.0,0,1.3993284702301025,349,1.0,3 +88849,19,1.0,0,1.7613238096237183,350,1.0,3 +88850,19,1.0,0,2.1053194999694824,351,1.0,3 +88851,19,1.0,0,1.7913234233856201,352,1.0,3 +88852,19,1.0,0,1.373328685760498,353,1.0,3 +88853,19,1.0,0,1.8413227796554565,354,1.0,3 +88854,19,0.0,0,1.8323228359222412,355,0.0,3 +88855,19,1.0,0,1.9003219604492188,356,0.0,3 +88856,19,0.0,0,1.5083270072937012,357,1.0,3 +88857,19,0.0,0,1.5183268785476685,358,0.0,3 +88858,19,0.0,0,1.3953285217285156,359,0.0,3 +88859,19,0.0,0,2.123319149017334,360,0.0,3 +88860,19,0.0,0,1.2773284912109375,361,0.0,3 +88861,19,1.0,0,2.123319149017334,362,1.0,3 +88862,19,1.0,0,1.5003271102905273,363,1.0,3 +88863,19,1.0,0,1.379328727722168,364,1.0,3 +88864,19,1.0,0,1.5753262042999268,365,1.0,3 +88865,19,1.0,0,1.5353267192840576,366,1.0,3 +88866,19,1.0,0,1.342328667640686,367,1.0,3 +88867,19,1.0,0,1.4403278827667236,368,1.0,3 +88868,19,1.0,0,1.5613263845443726,369,1.0,3 +88869,19,1.0,0,1.3373286724090576,370,1.0,3 +88870,19,1.0,0,1.5063270330429077,371,1.0,3 +88871,19,1.0,0,1.700324535369873,372,1.0,3 +88872,19,1.0,0,1.8303229808807373,373,1.0,3 +88873,19,1.0,0,1.5043270587921143,374,1.0,3 +88874,19,1.0,0,1.4343279600143433,375,1.0,3 +88875,19,1.0,0,1.773323655128479,376,0.0,3 +88876,19,1.0,0,2.11531925201416,377,0.0,3 +88877,19,0.0,0,2.403331995010376,378,0.0,3 +88878,19,0.0,0,1.2313284873962402,379,0.0,3 +88879,19,1.0,0,2.1003193855285645,380,1.0,3 +88880,19,1.0,0,1.5683262348175049,381,0.0,3 +88881,19,1.0,0,2.2153232097625732,382,1.0,3 +88882,19,1.0,0,1.4263280630111694,383,1.0,3 +88883,19,1.0,0,1.3473286628723145,384,1.0,3 +88884,19,1.0,0,1.2713284492492676,385,1.0,3 +88885,19,1.0,0,1.9063220024108887,386,1.0,3 +88886,19,1.0,0,1.4303280115127563,387,1.0,3 +88887,19,1.0,0,1.8713223934173584,388,0.0,3 +88888,19,1.0,0,1.5763261318206787,389,0.0,3 +88889,19,0.0,0,1.8113231658935547,390,0.0,3 +88890,19,0.0,0,2.0523200035095215,391,0.0,3 +88891,19,1.0,0,2.361330032348633,392,1.0,3 +88892,19,1.0,0,1.3313286304473877,393,1.0,3 +88893,19,1.0,0,1.2853285074234009,394,1.0,3 +88894,19,1.0,0,1.51932692527771,395,0.0,3 +88895,19,1.0,0,1.8153231143951416,396,1.0,3 +88896,19,1.0,0,1.3633286952972412,397,1.0,3 +88897,19,1.0,0,1.3373286724090576,398,1.0,3 +88898,19,1.0,0,1.615325689315796,399,1.0,3 +88899,19,1.0,0,1.5063270330429077,400,1.0,3 +88900,19,1.0,0,1.4033284187316895,401,1.0,3 +88901,19,1.0,0,1.3693287372589111,402,1.0,3 +88902,19,1.0,0,1.4533277750015259,403,0.0,3 +88903,19,0.0,0,2.0113205909729004,404,1.0,3 +88904,19,0.0,0,1.5013271570205688,405,0.0,3 +88905,19,1.0,0,2.16632080078125,406,1.0,3 +88906,19,0.0,0,1.746324062347412,407,0.0,3 +88907,19,1.0,0,1.6383254528045654,408,1.0,3 +88908,19,1.0,0,1.8303229808807373,409,0.0,3 +88909,19,1.0,0,2.019320487976074,410,1.0,3 +88910,19,1.0,0,1.3693287372589111,411,1.0,3 +88911,19,0.0,0,1.3313286304473877,412,0.0,3 +88912,19,1.0,0,1.2993285655975342,413,1.0,3 +88913,19,1.0,0,1.468327522277832,414,1.0,3 +88914,19,1.0,0,1.3773287534713745,415,0.0,3 +88915,19,1.0,0,1.703324556350708,416,1.0,3 +88916,19,1.0,0,1.424328088760376,417,1.0,3 +88917,19,1.0,0,1.5813261270523071,418,1.0,3 +88918,19,1.0,0,1.4063283205032349,419,1.0,3 +88919,19,1.0,0,1.5273268222808838,420,1.0,3 +88920,19,1.0,0,1.49032723903656,421,1.0,3 +88921,19,1.0,0,1.4773274660110474,422,1.0,3 +88922,19,1.0,0,1.402328372001648,423,1.0,3 +88923,19,1.0,0,1.7183244228363037,424,1.0,3 +88924,19,1.0,0,1.5883259773254395,425,1.0,3 +88925,19,1.0,0,2.197322368621826,426,1.0,3 +88926,19,0.0,0,1.699324607849121,427,0.0,3 +88927,19,1.0,0,1.3683286905288696,428,1.0,3 +88928,19,1.0,0,1.4783273935317993,429,1.0,3 +88929,19,1.0,0,1.884322166442871,430,1.0,3 +88930,19,1.0,0,1.582326054573059,431,1.0,3 +88931,19,1.0,0,1.375328779220581,432,1.0,3 +88932,19,1.0,0,1.699324607849121,433,1.0,3 +88933,19,1.0,0,1.5923259258270264,434,1.0,3 +88934,19,1.0,0,1.442327857017517,435,1.0,3 +88935,19,1.0,0,2.207322835922241,436,1.0,3 +88936,19,1.0,0,1.5233268737792969,437,1.0,3 +88937,19,1.0,0,1.5483264923095703,438,1.0,3 +88938,19,1.0,0,1.4443278312683105,439,1.0,3 +88939,19,1.0,0,2.0053205490112305,440,1.0,3 +88940,19,1.0,0,1.4963271617889404,441,1.0,3 +88941,19,1.0,0,1.284328579902649,442,1.0,3 +88942,19,1.0,0,2.0083205699920654,443,1.0,3 +88943,19,1.0,0,1.662325143814087,444,1.0,3 +88944,19,1.0,0,1.51932692527771,445,1.0,3 +88945,19,1.0,0,1.4223281145095825,446,1.0,3 +88946,19,1.0,0,1.4363279342651367,447,0.0,3 +88947,19,1.0,0,1.9853209257125854,448,1.0,3 +88948,19,1.0,0,1.3953285217285156,449,1.0,3 +88949,19,1.0,0,1.4213281869888306,450,1.0,3 +88950,19,1.0,0,1.6493252515792847,451,1.0,3 +88951,19,1.0,0,1.4223281145095825,452,1.0,3 +88952,19,1.0,0,1.2703285217285156,453,1.0,3 +88953,19,1.0,0,1.3643287420272827,454,1.0,3 +88954,19,1.0,0,1.493327260017395,455,1.0,3 +88955,19,1.0,0,1.4043283462524414,456,0.0,3 +88956,19,1.0,0,1.5793261528015137,457,0.0,3 +88957,19,0.0,0,2.5483388900756836,458,0.0,3 +88958,19,0.0,0,1.8583226203918457,459,0.0,3 +88959,19,0.0,0,1.2853285074234009,460,0.0,3 +88960,19,0.0,0,1.7323241233825684,461,0.0,3 +88961,19,0.0,0,1.1973283290863037,462,0.0,3 +88962,19,0.0,0,1.5033271312713623,463,0.0,3 +88963,19,0.0,0,1.2683285474777222,464,0.0,3 +88964,19,0.0,0,2.222323417663574,465,1.0,3 +88965,19,0.0,0,2.084319591522217,466,0.0,3 +88966,19,0.0,0,1.590325951576233,467,0.0,3 +88967,19,0.0,0,1.9743211269378662,468,0.0,3 +88968,19,0.0,0,1.8363227844238281,469,0.0,3 +88969,19,0.0,0,1.2793285846710205,470,1.0,3 +88970,19,0.0,0,1.5783261060714722,471,0.0,3 +88971,19,0.0,0,1.2953286170959473,472,0.0,3 +88972,19,1.0,0,1.3713287115097046,473,1.0,3 +88973,19,1.0,0,1.8073232173919678,474,1.0,3 +88974,19,1.0,0,1.424328088760376,475,1.0,3 +88975,19,1.0,0,1.4543277025222778,476,1.0,3 +88976,19,1.0,0,2.0863196849823,477,1.0,3 +88977,19,1.0,0,1.7403240203857422,478,0.0,3 +88978,19,0.0,0,1.4763274192810059,479,0.0,3 +88979,19,0.0,0,2.167320966720581,480,0.0,3 +88980,19,1.0,0,1.541326642036438,481,1.0,3 +88981,19,1.0,0,1.7053245306015015,482,1.0,3 +88982,19,1.0,0,1.4173282384872437,483,0.0,3 +88983,19,0.0,0,1.4263280630111694,484,0.0,3 +88984,19,1.0,0,1.8263230323791504,485,1.0,3 +88985,19,1.0,0,1.6533252000808716,486,1.0,3 +88986,19,1.0,0,2.026320457458496,487,1.0,3 +88987,19,1.0,0,1.6133257150650024,488,1.0,3 +88988,19,1.0,0,1.5733262300491333,489,1.0,3 +88989,19,1.0,0,1.445327877998352,490,1.0,3 +88990,19,1.0,0,1.9143218994140625,491,1.0,3 +88991,19,1.0,0,1.4343279600143433,492,1.0,3 +88992,19,1.0,0,2.032320261001587,493,1.0,3 +88993,19,1.0,0,1.3223285675048828,494,1.0,3 +88994,19,1.0,0,1.4393279552459717,495,1.0,3 +88995,19,1.0,0,1.3103286027908325,496,1.0,3 +88996,19,1.0,0,1.5263267755508423,497,1.0,3 +88997,19,1.0,0,2.2293238639831543,498,0.0,3 +88998,19,1.0,0,1.8893221616744995,499,1.0,3 +88999,19,0.0,0,1.537326693534851,500,0.0,3 +89000,19,1.0,1,1.939321517944336,1,1.0,3 +89001,19,1.0,1,1.8483226299285889,2,0.0,3 +89002,19,0.0,1,1.4393279552459717,3,0.0,3 +89003,19,0.0,1,1.4063283205032349,4,1.0,3 +89004,19,0.0,1,1.748323917388916,5,0.0,3 +89005,19,0.0,1,1.7323241233825684,6,0.0,3 +89006,19,1.0,1,1.84332275390625,7,0.0,3 +89007,19,1.0,1,1.7083244323730469,8,1.0,3 +89008,19,1.0,1,1.6003258228302002,9,1.0,3 +89009,19,1.0,1,1.847322702407837,10,1.0,3 +89010,19,1.0,1,1.725324273109436,11,1.0,3 +89011,19,1.0,1,1.654325246810913,12,1.0,3 +89012,19,1.0,1,1.3783286809921265,13,1.0,3 +89013,19,1.0,1,1.7453240156173706,14,0.0,3 +89014,19,0.0,1,1.3993284702301025,15,1.0,3 +89015,19,0.0,1,1.7793235778808594,16,0.0,3 +89016,19,0.0,1,1.311328649520874,17,1.0,3 +89017,19,0.0,1,1.5973259210586548,18,0.0,3 +89018,19,1.0,1,1.8353228569030762,19,1.0,3 +89019,19,1.0,1,1.5053271055221558,20,1.0,3 +89020,19,1.0,1,1.445327877998352,21,0.0,3 +89021,19,0.0,1,1.563326358795166,22,0.0,3 +89022,19,0.0,1,1.5113270282745361,23,1.0,3 +89023,19,0.0,1,1.2743284702301025,24,0.0,3 +89024,19,0.0,1,1.869322419166565,25,0.0,3 +89025,19,0.0,1,1.5623263120651245,26,0.0,3 +89026,19,0.0,1,2.348329544067383,27,0.0,3 +89027,19,1.0,1,1.935321569442749,28,0.0,3 +89028,19,1.0,1,1.655325174331665,29,1.0,3 +89029,19,1.0,1,1.427328109741211,30,0.0,3 +89030,19,0.0,1,1.4073283672332764,31,0.0,3 +89031,19,0.0,1,1.5533264875411987,32,0.0,3 +89032,19,1.0,1,1.7123243808746338,33,1.0,3 +89033,19,1.0,1,1.6723248958587646,34,1.0,3 +89034,19,1.0,1,1.6183255910873413,35,0.0,3 +89035,19,0.0,1,1.887322187423706,36,1.0,3 +89036,19,0.0,1,1.6803247928619385,37,0.0,3 +89037,19,0.0,1,1.6473252773284912,38,0.0,3 +89038,19,1.0,1,2.462334632873535,39,1.0,3 +89039,19,1.0,1,1.794323444366455,40,1.0,3 +89040,19,1.0,1,1.3223285675048828,41,1.0,3 +89041,19,1.0,1,1.4363279342651367,42,1.0,3 +89042,19,1.0,1,1.4353280067443848,43,1.0,3 +89043,19,1.0,1,1.516326904296875,44,1.0,3 +89044,19,1.0,1,1.961321234703064,45,0.0,3 +89045,19,0.0,1,1.5953259468078613,46,0.0,3 +89046,19,0.0,1,2.5173373222351074,47,0.0,3 +89047,19,0.0,1,1.8603224754333496,48,0.0,3 +89048,19,1.0,1,1.5873260498046875,49,1.0,3 +89049,19,1.0,1,1.5143269300460815,50,1.0,3 +89050,19,1.0,1,2.0543200969696045,51,0.0,3 +89051,19,0.0,1,2.2303237915039062,52,0.0,3 +89052,19,0.0,1,1.662325143814087,53,0.0,3 +89053,19,0.0,1,1.5463265180587769,54,1.0,3 +89054,19,0.0,1,1.5953259468078613,55,0.0,3 +89055,19,1.0,1,1.6753249168395996,56,1.0,3 +89056,19,0.0,1,1.493327260017395,57,0.0,3 +89057,19,1.0,1,1.9953207969665527,58,1.0,3 +89058,19,1.0,1,1.3203285932540894,59,1.0,3 +89059,19,1.0,1,1.4803273677825928,60,1.0,3 +89060,19,1.0,1,1.6483252048492432,61,1.0,3 +89061,19,0.0,1,1.4393279552459717,62,0.0,3 +89062,19,1.0,1,1.4153282642364502,63,1.0,3 +89063,19,1.0,1,1.5293267965316772,64,0.0,3 +89064,19,1.0,1,1.6413253545761108,65,1.0,3 +89065,19,1.0,1,1.8713223934173584,66,0.0,3 +89066,19,1.0,1,1.46732759475708,67,1.0,3 +89067,19,1.0,1,1.4263280630111694,68,0.0,3 +89068,19,0.0,1,1.3663287162780762,69,0.0,3 +89069,19,1.0,1,2.177321434020996,70,1.0,3 +89070,19,1.0,1,1.5933259725570679,71,1.0,3 +89071,19,1.0,1,1.6703250408172607,72,0.0,3 +89072,19,0.0,1,1.3193285465240479,73,0.0,3 +89073,19,1.0,1,1.8273229598999023,74,0.0,3 +89074,19,0.0,1,1.3813287019729614,75,0.0,3 +89075,19,0.0,1,1.5433266162872314,76,0.0,3 +89076,19,1.0,1,1.7723236083984375,77,1.0,3 +89077,19,1.0,1,1.4553277492523193,78,1.0,3 +89078,19,1.0,1,1.9123218059539795,79,0.0,3 +89079,19,1.0,1,2.3243284225463867,80,0.0,3 +89080,19,1.0,1,1.8963220119476318,81,1.0,3 +89081,19,1.0,1,1.4653276205062866,82,1.0,3 +89082,19,1.0,1,1.6913247108459473,83,0.0,3 +89083,19,0.0,1,1.7873234748840332,84,0.0,3 +89084,19,1.0,1,1.9493213891983032,85,0.0,3 +89085,19,0.0,1,1.349328637123108,86,0.0,3 +89086,19,0.0,1,1.2763285636901855,87,0.0,3 +89087,19,0.0,1,1.4403278827667236,88,0.0,3 +89088,19,0.0,1,1.4313280582427979,89,1.0,3 +89089,19,0.0,1,1.373328685760498,90,0.0,3 +89090,19,1.0,1,2.409332275390625,91,1.0,3 +89091,19,1.0,1,1.4843273162841797,92,1.0,3 +89092,19,0.0,1,1.7303242683410645,93,0.0,3 +89093,19,1.0,1,1.7973233461380005,94,1.0,3 +89094,19,1.0,1,2.2563252449035645,95,1.0,3 +89095,19,1.0,1,1.7633237838745117,96,1.0,3 +89096,19,1.0,1,1.4883272647857666,97,1.0,3 +89097,19,1.0,1,1.957321286201477,98,1.0,3 +89098,19,1.0,1,1.2463284730911255,99,1.0,3 +89099,19,1.0,1,2.5453386306762695,100,1.0,3 +89100,19,0.0,1,1.9583213329315186,101,0.0,3 +89101,19,1.0,1,1.4363279342651367,102,1.0,3 +89102,19,1.0,1,1.8193230628967285,103,1.0,3 +89103,19,1.0,1,1.8133231401443481,104,0.0,3 +89104,19,1.0,1,1.5913259983062744,105,0.0,3 +89105,19,1.0,1,1.3963284492492676,106,1.0,3 +89106,19,1.0,1,1.5583263635635376,107,1.0,3 +89107,19,1.0,1,1.3023285865783691,108,1.0,3 +89108,19,1.0,1,1.3603286743164062,109,1.0,3 +89109,19,1.0,1,1.6983246803283691,110,1.0,3 +89110,19,1.0,1,1.4043283462524414,111,1.0,3 +89111,19,1.0,1,1.402328372001648,112,0.0,3 +89112,19,0.0,1,2.461334705352783,113,0.0,3 +89113,19,0.0,1,1.3363286256790161,114,0.0,3 +89114,19,0.0,1,1.2003283500671387,115,0.0,3 +89115,19,0.0,1,1.6573251485824585,116,0.0,3 +89116,19,1.0,1,1.401328444480896,117,1.0,3 +89117,19,0.0,1,1.4393279552459717,118,0.0,3 +89118,19,1.0,1,1.493327260017395,119,0.0,3 +89119,19,1.0,1,1.8113231658935547,120,1.0,3 +89120,19,1.0,1,1.6453253030776978,121,0.0,3 +89121,19,1.0,1,2.0083205699920654,122,1.0,3 +89122,19,1.0,1,1.449327826499939,123,1.0,3 +89123,19,1.0,1,1.5693262815475464,124,1.0,3 +89124,19,1.0,1,1.7393240928649902,125,0.0,3 +89125,19,1.0,1,1.8153231143951416,126,1.0,3 +89126,19,1.0,1,1.3643287420272827,127,1.0,3 +89127,19,1.0,1,1.3043285608291626,128,1.0,3 +89128,19,0.0,1,1.5173269510269165,129,0.0,3 +89129,19,1.0,1,2.0523200035095215,130,0.0,3 +89130,19,0.0,1,1.315328598022461,131,1.0,3 +89131,19,0.0,1,1.349328637123108,132,1.0,3 +89132,19,0.0,1,1.2683285474777222,133,0.0,3 +89133,19,0.0,1,1.5693262815475464,134,1.0,3 +89134,19,0.0,1,1.3313286304473877,135,0.0,3 +89135,19,0.0,1,2.407332181930542,136,0.0,3 +89136,19,1.0,1,2.381330966949463,137,1.0,3 +89137,19,1.0,1,1.7853235006332397,138,1.0,3 +89138,19,1.0,1,1.3413286209106445,139,1.0,3 +89139,19,1.0,1,1.3473286628723145,140,0.0,3 +89140,19,1.0,1,1.6683249473571777,141,1.0,3 +89141,19,1.0,1,1.5263267755508423,142,0.0,3 +89142,19,0.0,1,2.029320240020752,143,0.0,3 +89143,19,0.0,1,1.520326852798462,144,0.0,3 +89144,19,1.0,1,2.4773354530334473,145,1.0,3 +89145,19,1.0,1,1.4143282175064087,146,1.0,3 +89146,19,1.0,1,1.7863235473632812,147,0.0,3 +89147,19,0.0,1,1.4133282899856567,148,0.0,3 +89148,19,0.0,1,1.8603224754333496,149,0.0,3 +89149,19,1.0,1,1.5103269815444946,150,1.0,3 +89150,19,1.0,1,1.9453214406967163,151,1.0,3 +89151,19,1.0,1,1.4833273887634277,152,1.0,3 +89152,19,1.0,1,2.0023207664489746,153,1.0,3 +89153,19,1.0,1,1.7393240928649902,154,1.0,3 +89154,19,1.0,1,1.2463284730911255,155,1.0,3 +89155,19,1.0,1,1.3253285884857178,156,1.0,3 +89156,19,1.0,1,1.4773274660110474,157,0.0,3 +89157,19,1.0,1,1.6743249893188477,158,1.0,3 +89158,19,0.0,1,1.311328649520874,159,0.0,3 +89159,19,1.0,1,1.3873286247253418,160,0.0,3 +89160,19,0.0,1,1.2373284101486206,161,1.0,3 +89161,19,0.0,1,1.4863272905349731,162,0.0,3 +89162,19,1.0,1,1.6753249168395996,163,1.0,3 +89163,19,1.0,1,1.6243255138397217,164,1.0,3 +89164,19,1.0,1,1.8033232688903809,165,1.0,3 +89165,19,1.0,1,1.9693211317062378,166,1.0,3 +89166,19,1.0,1,1.6683249473571777,167,1.0,3 +89167,19,1.0,1,2.188322067260742,168,1.0,3 +89168,19,0.0,1,1.245328426361084,169,0.0,3 +89169,19,1.0,1,1.842322826385498,170,1.0,3 +89170,19,1.0,1,1.5963258743286133,171,1.0,3 +89171,19,1.0,1,2.191322088241577,172,0.0,3 +89172,19,0.0,1,1.5233268737792969,173,1.0,3 +89173,19,0.0,1,1.5983258485794067,174,1.0,3 +89174,19,0.0,1,1.3323286771774292,175,0.0,3 +89175,19,0.0,1,1.4093283414840698,176,0.0,3 +89176,19,0.0,1,1.4653276205062866,177,1.0,3 +89177,19,0.0,1,1.2463284730911255,178,1.0,3 +89178,19,0.0,1,1.4733275175094604,179,0.0,3 +89179,19,0.0,1,1.5693262815475464,180,0.0,3 +89180,19,1.0,1,1.5263267755508423,181,1.0,3 +89181,19,0.0,1,2.0853195190429688,182,0.0,3 +89182,19,0.0,1,1.4843273162841797,183,0.0,3 +89183,19,1.0,1,1.5503264665603638,184,1.0,3 +89184,19,1.0,1,1.6093257665634155,185,1.0,3 +89185,19,1.0,1,1.3373286724090576,186,1.0,3 +89186,19,1.0,1,1.8073232173919678,187,0.0,3 +89187,19,1.0,1,2.3223280906677246,188,0.0,3 +89188,19,1.0,1,2.0583200454711914,189,1.0,3 +89189,19,1.0,1,1.890322208404541,190,1.0,3 +89190,19,1.0,1,1.821323037147522,191,1.0,3 +89191,19,0.0,1,1.376328706741333,192,1.0,3 +89192,19,1.0,1,1.7053245306015015,193,1.0,3 +89193,19,1.0,1,2.185321807861328,194,1.0,3 +89194,19,1.0,1,1.7353241443634033,195,0.0,3 +89195,19,0.0,1,1.5323266983032227,196,0.0,3 +89196,19,0.0,1,1.7083244323730469,197,1.0,3 +89197,19,0.0,1,1.6533252000808716,198,1.0,3 +89198,19,0.0,1,1.4983271360397339,199,1.0,3 +89199,19,0.0,1,1.560326337814331,200,0.0,3 +89200,19,0.0,1,1.8323228359222412,201,0.0,3 +89201,19,1.0,1,1.821323037147522,202,0.0,3 +89202,19,1.0,1,1.567326307296753,203,0.0,3 +89203,19,1.0,1,1.9583213329315186,204,1.0,3 +89204,19,0.0,1,1.3903285264968872,205,0.0,3 +89205,19,1.0,1,2.0493202209472656,206,1.0,3 +89206,19,1.0,1,1.3403286933898926,207,0.0,3 +89207,19,0.0,1,1.6503252983093262,208,0.0,3 +89208,19,1.0,1,2.406332015991211,209,1.0,3 +89209,19,1.0,1,1.703324556350708,210,1.0,3 +89210,19,0.0,1,1.5243268013000488,211,0.0,3 +89211,19,1.0,1,1.6383254528045654,212,1.0,3 +89212,19,1.0,1,2.2683258056640625,213,1.0,3 +89213,19,1.0,1,1.427328109741211,214,1.0,3 +89214,19,1.0,1,1.7133244276046753,215,1.0,3 +89215,19,1.0,1,1.3143285512924194,216,0.0,3 +89216,19,0.0,1,1.4123282432556152,217,0.0,3 +89217,19,0.0,1,1.6013258695602417,218,0.0,3 +89218,19,0.0,1,1.2733285427093506,219,0.0,3 +89219,19,1.0,1,2.2403244972229004,220,0.0,3 +89220,19,0.0,1,1.2613284587860107,221,0.0,3 +89221,19,1.0,1,1.3903285264968872,222,1.0,3 +89222,19,1.0,1,2.374330520629883,223,1.0,3 +89223,19,1.0,1,1.2233283519744873,224,1.0,3 +89224,19,1.0,1,1.3533287048339844,225,1.0,3 +89225,19,1.0,1,1.6443252563476562,226,0.0,3 +89226,19,1.0,1,2.2583250999450684,227,0.0,3 +89227,19,0.0,1,1.282328486442566,228,0.0,3 +89228,19,0.0,1,1.792323350906372,229,0.0,3 +89229,19,1.0,1,1.8203229904174805,230,1.0,3 +89230,19,0.0,1,1.5003271102905273,231,0.0,3 +89231,19,1.0,1,1.7213243246078491,232,0.0,3 +89232,19,1.0,1,2.2163233757019043,233,1.0,3 +89233,19,1.0,1,1.4213281869888306,234,1.0,3 +89234,19,1.0,1,1.6673250198364258,235,1.0,3 +89235,19,1.0,1,1.3383285999298096,236,1.0,3 +89236,19,1.0,1,1.7883234024047852,237,1.0,3 +89237,19,1.0,1,1.5733262300491333,238,1.0,3 +89238,19,1.0,1,1.3343286514282227,239,0.0,3 +89239,19,0.0,1,1.9913208484649658,240,0.0,3 +89240,19,1.0,1,1.9493213891983032,241,1.0,3 +89241,19,1.0,1,1.750324010848999,242,0.0,3 +89242,19,0.0,1,1.6733249425888062,243,1.0,3 +89243,19,0.0,1,1.6033258438110352,244,0.0,3 +89244,19,1.0,1,1.8553225994110107,245,1.0,3 +89245,19,1.0,1,1.4093283414840698,246,0.0,3 +89246,19,0.0,1,1.9043219089508057,247,0.0,3 +89247,19,0.0,1,1.3263286352157593,248,0.0,3 +89248,19,0.0,1,2.2233235836029053,249,0.0,3 +89249,19,0.0,1,2.082319736480713,250,0.0,3 +89250,19,0.0,1,2.151320219039917,251,1.0,3 +89251,19,0.0,1,1.612325668334961,252,0.0,3 +89252,19,1.0,1,1.442327857017517,253,1.0,3 +89253,19,1.0,1,1.9333215951919556,254,1.0,3 +89254,19,0.0,1,1.278328537940979,255,1.0,3 +89255,19,0.0,1,1.567326307296753,256,1.0,3 +89256,19,1.0,1,1.9913208484649658,257,1.0,3 +89257,19,0.0,1,1.5093270540237427,258,1.0,3 +89258,19,1.0,1,1.4703274965286255,259,1.0,3 +89259,19,0.0,1,1.9723210334777832,260,1.0,3 +89260,19,0.0,1,1.2373284101486206,261,0.0,3 +89261,19,1.0,1,1.842322826385498,262,1.0,3 +89262,19,1.0,1,1.373328685760498,263,0.0,3 +89263,19,0.0,1,1.98232102394104,264,0.0,3 +89264,19,0.0,1,1.744323968887329,265,0.0,3 +89265,19,0.0,1,1.4813274145126343,266,0.0,3 +89266,19,0.0,1,2.2583250999450684,267,1.0,3 +89267,19,0.0,1,1.4843273162841797,268,0.0,3 +89268,19,0.0,1,1.342328667640686,269,1.0,3 +89269,19,0.0,1,1.7133244276046753,270,0.0,3 +89270,19,0.0,1,1.8563225269317627,271,0.0,3 +89271,19,1.0,1,1.744323968887329,272,0.0,3 +89272,19,1.0,1,1.9473214149475098,273,1.0,3 +89273,19,1.0,1,1.345328688621521,274,1.0,3 +89274,19,1.0,1,1.582326054573059,275,1.0,3 +89275,19,1.0,1,1.472327470779419,276,1.0,3 +89276,19,1.0,1,1.2883285284042358,277,0.0,3 +89277,19,1.0,1,2.3183279037475586,278,0.0,3 +89278,19,1.0,1,1.6233255863189697,279,1.0,3 +89279,19,1.0,1,1.802323341369629,280,1.0,3 +89280,19,1.0,1,1.7593238353729248,281,1.0,3 +89281,19,1.0,1,1.7573238611221313,282,0.0,3 +89282,19,0.0,1,2.021320343017578,283,0.0,3 +89283,19,1.0,1,1.9753210544586182,284,1.0,3 +89284,19,1.0,1,2.078319787979126,285,0.0,3 +89285,19,1.0,1,2.3293285369873047,286,0.0,3 +89286,19,0.0,1,1.5733262300491333,287,0.0,3 +89287,19,0.0,1,1.5983258485794067,288,1.0,3 +89288,19,0.0,1,1.4863272905349731,289,0.0,3 +89289,19,1.0,1,1.4063283205032349,290,0.0,3 +89290,19,0.0,1,1.7053245306015015,291,1.0,3 +89291,19,0.0,1,1.751323938369751,292,0.0,3 +89292,19,1.0,1,2.0943195819854736,293,1.0,3 +89293,19,0.0,1,1.5473265647888184,294,0.0,3 +89294,19,1.0,1,1.5523264408111572,295,1.0,3 +89295,19,1.0,1,1.6263254880905151,296,1.0,3 +89296,19,1.0,1,1.4343279600143433,297,1.0,3 +89297,19,1.0,1,2.0153205394744873,298,1.0,3 +89298,19,1.0,1,1.746324062347412,299,0.0,3 +89299,19,1.0,1,1.4383279085159302,300,0.0,3 +89300,19,0.0,1,1.891322135925293,301,1.0,3 +89301,19,0.0,1,1.318328619003296,302,0.0,3 +89302,19,0.0,1,1.424328088760376,303,0.0,3 +89303,19,1.0,1,1.6483252048492432,304,1.0,3 +89304,19,1.0,1,1.5363266468048096,305,0.0,3 +89305,19,0.0,1,2.2323241233825684,306,0.0,3 +89306,19,0.0,1,1.5393266677856445,307,0.0,3 +89307,19,0.0,1,1.3833286762237549,308,0.0,3 +89308,19,0.0,1,1.4383279085159302,309,1.0,3 +89309,19,0.0,1,1.5833261013031006,310,1.0,3 +89310,19,0.0,1,1.5013271570205688,311,0.0,3 +89311,19,1.0,1,1.6233255863189697,312,0.0,3 +89312,19,1.0,1,2.158320426940918,313,0.0,3 +89313,19,0.0,1,1.6183255910873413,314,0.0,3 +89314,19,0.0,1,1.3433287143707275,315,1.0,3 +89315,19,0.0,1,1.7183244228363037,316,0.0,3 +89316,19,1.0,1,1.564326286315918,317,0.0,3 +89317,19,0.0,1,1.9553213119506836,318,1.0,3 +89318,19,0.0,1,1.6473252773284912,319,0.0,3 +89319,19,1.0,1,1.607325792312622,320,1.0,3 +89320,19,1.0,1,1.497327208518982,321,1.0,3 +89321,19,0.0,1,1.4853273630142212,322,0.0,3 +89322,19,1.0,1,1.308328628540039,323,0.0,3 +89323,19,1.0,1,2.8493528366088867,324,0.0,3 +89324,19,0.0,1,2.3343286514282227,325,0.0,3 +89325,19,0.0,1,2.5403385162353516,326,0.0,3 +89326,19,1.0,1,1.6313254833221436,327,1.0,3 +89327,19,1.0,1,1.339328646659851,328,1.0,3 +89328,19,1.0,1,1.3413286209106445,329,0.0,3 +89329,19,1.0,1,1.3863285779953003,330,0.0,3 +89330,19,0.0,1,1.5623263120651245,331,1.0,3 +89331,19,1.0,1,2.0043206214904785,332,1.0,3 +89332,19,0.0,1,1.769323706626892,333,1.0,3 +89333,19,0.0,1,1.348328709602356,334,0.0,3 +89334,19,0.0,1,1.3293286561965942,335,0.0,3 +89335,19,1.0,1,1.5023270845413208,336,0.0,3 +89336,19,0.0,1,2.020320415496826,337,0.0,3 +89337,19,1.0,1,1.6583251953125,338,1.0,3 +89338,19,1.0,1,1.3633286952972412,339,0.0,3 +89339,19,0.0,1,1.6513252258300781,340,0.0,3 +89340,19,1.0,1,1.4303280115127563,341,0.0,3 +89341,19,0.0,1,1.84332275390625,342,0.0,3 +89342,19,0.0,1,1.4583276510238647,343,0.0,3 +89343,19,1.0,1,1.8193230628967285,344,1.0,3 +89344,19,1.0,1,1.3903285264968872,345,1.0,3 +89345,19,1.0,1,1.7713236808776855,346,0.0,3 +89346,19,0.0,1,1.5953259468078613,347,1.0,3 +89347,19,0.0,1,1.398328423500061,348,0.0,3 +89348,19,0.0,1,1.4823273420333862,349,1.0,3 +89349,19,0.0,1,1.251328468322754,350,0.0,3 +89350,19,0.0,1,1.4953272342681885,351,1.0,3 +89351,19,0.0,1,1.5273268222808838,352,0.0,3 +89352,19,0.0,1,2.2623252868652344,353,1.0,3 +89353,19,0.0,1,1.5753262042999268,354,1.0,3 +89354,19,0.0,1,1.6503252983093262,355,0.0,3 +89355,19,0.0,1,1.375328779220581,356,1.0,3 +89356,19,0.0,1,1.2583284378051758,357,0.0,3 +89357,19,1.0,1,1.4653276205062866,358,1.0,3 +89358,19,1.0,1,1.4003283977508545,359,1.0,3 +89359,19,1.0,1,2.145319938659668,360,0.0,3 +89360,19,1.0,1,1.305328607559204,361,0.0,3 +89361,19,1.0,1,1.6783249378204346,362,0.0,3 +89362,19,0.0,1,1.349328637123108,363,0.0,3 +89363,19,1.0,1,1.51932692527771,364,1.0,3 +89364,19,1.0,1,1.612325668334961,365,0.0,3 +89365,19,0.0,1,1.2233283519744873,366,0.0,3 +89366,19,1.0,1,1.6343255043029785,367,1.0,3 +89367,19,1.0,1,1.7913234233856201,368,0.0,3 +89368,19,0.0,1,1.7303242683410645,369,1.0,3 +89369,19,0.0,1,1.339328646659851,370,1.0,3 +89370,19,0.0,1,1.5983258485794067,371,0.0,3 +89371,19,0.0,1,1.3573286533355713,372,0.0,3 +89372,19,1.0,1,1.303328514099121,373,1.0,3 +89373,19,1.0,1,1.6763248443603516,374,1.0,3 +89374,19,1.0,1,1.545326590538025,375,1.0,3 +89375,19,1.0,1,1.305328607559204,376,1.0,3 +89376,19,1.0,1,1.3383285999298096,377,1.0,3 +89377,19,1.0,1,1.420328140258789,378,1.0,3 +89378,19,1.0,1,1.4923272132873535,379,1.0,3 +89379,19,1.0,1,1.38032865524292,380,1.0,3 +89380,19,1.0,1,1.9953207969665527,381,1.0,3 +89381,19,1.0,1,1.305328607559204,382,1.0,3 +89382,19,1.0,1,1.892322063446045,383,1.0,3 +89383,19,1.0,1,1.3443286418914795,384,0.0,3 +89384,19,1.0,1,1.6453253030776978,385,1.0,3 +89385,19,1.0,1,1.4163281917572021,386,0.0,3 +89386,19,0.0,1,2.0503201484680176,387,0.0,3 +89387,19,0.0,1,2.2473247051239014,388,1.0,3 +89388,19,0.0,1,1.656325101852417,389,0.0,3 +89389,19,0.0,1,2.3393290042877197,390,0.0,3 +89390,19,1.0,1,1.5573264360427856,391,1.0,3 +89391,19,1.0,1,1.348328709602356,392,0.0,3 +89392,19,0.0,1,1.9223217964172363,393,0.0,3 +89393,19,0.0,1,1.744323968887329,394,0.0,3 +89394,19,0.0,1,1.6783249378204346,395,0.0,3 +89395,19,1.0,1,2.029320240020752,396,0.0,3 +89396,19,0.0,1,1.3323286771774292,397,1.0,3 +89397,19,0.0,1,1.284328579902649,398,1.0,3 +89398,19,0.0,1,1.538326621055603,399,1.0,3 +89399,19,0.0,1,1.2583284378051758,400,0.0,3 +89400,19,0.0,1,2.0133204460144043,401,1.0,3 +89401,19,0.0,1,1.278328537940979,402,0.0,3 +89402,19,0.0,1,1.5343266725540161,403,1.0,3 +89403,19,0.0,1,1.585326075553894,404,1.0,3 +89404,19,0.0,1,1.2043284177780151,405,0.0,3 +89405,19,0.0,1,2.174321174621582,406,1.0,3 +89406,19,0.0,1,1.3373286724090576,407,0.0,3 +89407,19,0.0,1,1.4693275690078735,408,1.0,3 +89408,19,0.0,1,1.752323865890503,409,1.0,3 +89409,19,1.0,1,1.6733249425888062,410,1.0,3 +89410,19,0.0,1,1.2693284749984741,411,0.0,3 +89411,19,0.0,1,1.9583213329315186,412,0.0,3 +89412,19,0.0,1,1.5773261785507202,413,0.0,3 +89413,19,1.0,1,1.8263230323791504,414,0.0,3 +89414,19,0.0,1,2.023320436477661,415,0.0,3 +89415,19,1.0,1,1.3603286743164062,416,1.0,3 +89416,19,1.0,1,1.2923285961151123,417,1.0,3 +89417,19,1.0,1,1.5463265180587769,418,1.0,3 +89418,19,1.0,1,1.9203217029571533,419,0.0,3 +89419,19,1.0,1,1.8953220844268799,420,1.0,3 +89420,19,1.0,1,1.4113283157348633,421,1.0,3 +89421,19,1.0,1,1.5223268270492554,422,1.0,3 +89422,19,1.0,1,1.3513286113739014,423,0.0,3 +89423,19,0.0,1,1.4853273630142212,424,0.0,3 +89424,19,1.0,1,1.6893247365951538,425,1.0,3 +89425,19,1.0,1,1.397328495979309,426,1.0,3 +89426,19,1.0,1,1.3443286418914795,427,1.0,3 +89427,19,1.0,1,1.8613225221633911,428,1.0,3 +89428,19,1.0,1,1.6003258228302002,429,1.0,3 +89429,19,1.0,1,1.7283241748809814,430,0.0,3 +89430,19,0.0,1,1.405328392982483,431,1.0,3 +89431,19,0.0,1,1.272328495979309,432,0.0,3 +89432,19,0.0,1,1.2593284845352173,433,0.0,3 +89433,19,1.0,1,1.612325668334961,434,1.0,3 +89434,19,1.0,1,1.7423241138458252,435,1.0,3 +89435,19,1.0,1,1.9253216981887817,436,0.0,3 +89436,19,0.0,1,1.6053258180618286,437,0.0,3 +89437,19,1.0,1,1.7663238048553467,438,1.0,3 +89438,19,1.0,1,1.5023270845413208,439,0.0,3 +89439,19,1.0,1,1.4383279085159302,440,1.0,3 +89440,19,1.0,1,1.7393240928649902,441,1.0,3 +89441,19,1.0,1,1.6883246898651123,442,1.0,3 +89442,19,1.0,1,1.4653276205062866,443,1.0,3 +89443,19,1.0,1,1.5913259983062744,444,0.0,3 +89444,19,1.0,1,1.3683286905288696,445,1.0,3 +89445,19,1.0,1,1.4303280115127563,446,1.0,3 +89446,19,1.0,1,1.4343279600143433,447,0.0,3 +89447,19,1.0,1,1.373328685760498,448,1.0,3 +89448,19,1.0,1,1.3813287019729614,449,0.0,3 +89449,19,0.0,1,1.3193285465240479,450,0.0,3 +89450,19,1.0,1,1.6393253803253174,451,0.0,3 +89451,19,1.0,1,2.026320457458496,452,0.0,3 +89452,19,1.0,1,1.3133286237716675,453,1.0,3 +89453,19,1.0,1,1.3503286838531494,454,1.0,3 +89454,19,1.0,1,1.9653211832046509,455,0.0,3 +89455,19,0.0,1,1.515326976776123,456,1.0,3 +89456,19,0.0,1,1.4003283977508545,457,0.0,3 +89457,19,0.0,1,2.079319715499878,458,1.0,3 +89458,19,1.0,1,1.3623286485671997,459,1.0,3 +89459,19,1.0,1,1.7133244276046753,460,0.0,3 +89460,19,0.0,1,1.3313286304473877,461,1.0,3 +89461,19,0.0,1,1.2353284358978271,462,0.0,3 +89462,19,0.0,1,1.9103219509124756,463,0.0,3 +89463,19,1.0,1,1.6803247928619385,464,1.0,3 +89464,19,1.0,1,1.8283228874206543,465,1.0,3 +89465,19,1.0,1,1.3003286123275757,466,1.0,3 +89466,19,1.0,1,1.4623275995254517,467,1.0,3 +89467,19,1.0,1,1.471327543258667,468,0.0,3 +89468,19,1.0,1,2.0033206939697266,469,1.0,3 +89469,19,1.0,1,1.2263283729553223,470,1.0,3 +89470,19,1.0,1,1.3773287534713745,471,1.0,3 +89471,19,1.0,1,1.4253281354904175,472,1.0,3 +89472,19,1.0,1,1.7663238048553467,473,1.0,3 +89473,19,1.0,1,1.794323444366455,474,0.0,3 +89474,19,1.0,1,1.8273229598999023,475,0.0,3 +89475,19,1.0,1,1.49032723903656,476,1.0,3 +89476,19,1.0,1,1.3863285779953003,477,1.0,3 +89477,19,1.0,1,2.2173233032226562,478,0.0,3 +89478,19,1.0,1,2.165320873260498,479,1.0,3 +89479,19,1.0,1,1.5063270330429077,480,1.0,3 +89480,19,1.0,1,2.2653255462646484,481,1.0,3 +89481,19,1.0,1,1.6613250970840454,482,1.0,3 +89482,19,1.0,1,1.2943285703659058,483,1.0,3 +89483,19,1.0,1,1.7373241186141968,484,1.0,3 +89484,19,1.0,1,2.08031964302063,485,0.0,3 +89485,19,0.0,1,1.2773284912109375,486,0.0,3 +89486,19,1.0,1,1.3313286304473877,487,1.0,3 +89487,19,1.0,1,2.185321807861328,488,1.0,3 +89488,19,1.0,1,1.9673211574554443,489,1.0,3 +89489,19,1.0,1,1.3813287019729614,490,1.0,3 +89490,19,1.0,1,1.5353267192840576,491,1.0,3 +89491,19,1.0,1,1.5533264875411987,492,1.0,3 +89492,19,1.0,1,1.4063283205032349,493,1.0,3 +89493,19,1.0,1,1.7313241958618164,494,1.0,3 +89494,19,1.0,1,1.4573277235031128,495,1.0,3 +89495,19,0.0,1,1.376328706741333,496,0.0,3 +89496,19,1.0,1,1.3023285865783691,497,0.0,3 +89497,19,1.0,1,1.6443252563476562,498,1.0,3 +89498,19,1.0,1,1.563326358795166,499,1.0,3 +89499,19,0.0,1,1.2973285913467407,500,0.0,3 +89500,19,0.0,2,1.70432448387146,1,1.0,3 +89501,19,0.0,2,1.6833248138427734,2,1.0,3 +89502,19,1.0,2,1.3633286952972412,3,1.0,3 +89503,19,0.0,2,1.7093244791030884,4,0.0,3 +89504,19,1.0,2,1.3353285789489746,5,0.0,3 +89505,19,0.0,2,2.0153205394744873,6,0.0,3 +89506,19,0.0,2,2.2383241653442383,7,0.0,3 +89507,19,0.0,2,1.4853273630142212,8,0.0,3 +89508,19,0.0,2,1.3293286561965942,9,0.0,3 +89509,19,1.0,2,1.7053245306015015,10,1.0,3 +89510,19,0.0,2,1.6663250923156738,11,0.0,3 +89511,19,1.0,2,1.6013258695602417,12,1.0,3 +89512,19,1.0,2,1.339328646659851,13,0.0,3 +89513,19,0.0,2,1.545326590538025,14,0.0,3 +89514,19,0.0,2,1.4143282175064087,15,1.0,3 +89515,19,0.0,2,1.4653276205062866,16,1.0,3 +89516,19,0.0,2,1.423328161239624,17,0.0,3 +89517,19,1.0,2,1.6093257665634155,18,1.0,3 +89518,19,1.0,2,1.7363240718841553,19,1.0,3 +89519,19,1.0,2,1.3643287420272827,20,0.0,3 +89520,19,0.0,2,1.6193256378173828,21,0.0,3 +89521,19,1.0,2,1.9213217496871948,22,0.0,3 +89522,19,0.0,2,1.3813287019729614,23,1.0,3 +89523,19,1.0,2,1.6673250198364258,24,0.0,3 +89524,19,0.0,2,1.7593238353729248,25,0.0,3 +89525,19,1.0,2,1.6883246898651123,26,0.0,3 +89526,19,0.0,2,1.800323247909546,27,0.0,3 +89527,19,1.0,2,2.424333095550537,28,1.0,3 +89528,19,1.0,2,1.6213256120681763,29,1.0,3 +89529,19,1.0,2,1.4113283157348633,30,1.0,3 +89530,19,1.0,2,1.5323266983032227,31,1.0,3 +89531,19,1.0,2,1.7153244018554688,32,0.0,3 +89532,19,1.0,2,2.1053194999694824,33,1.0,3 +89533,19,1.0,2,2.2803263664245605,34,1.0,3 +89534,19,1.0,2,1.4703274965286255,35,1.0,3 +89535,19,1.0,2,1.345328688621521,36,1.0,3 +89536,19,1.0,2,1.6533252000808716,37,0.0,3 +89537,19,1.0,2,2.041320323944092,38,1.0,3 +89538,19,1.0,2,2.022320508956909,39,1.0,3 +89539,19,1.0,2,1.7413240671157837,40,0.0,3 +89540,19,1.0,2,1.6303255558013916,41,1.0,3 +89541,19,1.0,2,1.419328212738037,42,0.0,3 +89542,19,0.0,2,1.8293229341506958,43,1.0,3 +89543,19,0.0,2,1.563326358795166,44,0.0,3 +89544,19,1.0,2,1.5983258485794067,45,0.0,3 +89545,19,0.0,2,1.9113218784332275,46,1.0,3 +89546,19,0.0,2,2.171321153640747,47,1.0,3 +89547,19,0.0,2,1.2523285150527954,48,1.0,3 +89548,19,0.0,2,1.472327470779419,49,0.0,3 +89549,19,0.0,2,1.748323917388916,50,0.0,3 +89550,19,0.0,2,1.3833286762237549,51,1.0,3 +89551,19,0.0,2,1.5233268737792969,52,1.0,3 +89552,19,0.0,2,1.4353280067443848,53,0.0,3 +89553,19,0.0,2,1.373328685760498,54,0.0,3 +89554,19,0.0,2,1.7353241443634033,55,0.0,3 +89555,19,1.0,2,2.119319200515747,56,0.0,3 +89556,19,1.0,2,1.424328088760376,57,1.0,3 +89557,19,1.0,2,1.3653286695480347,58,1.0,3 +89558,19,1.0,2,1.6723248958587646,59,0.0,3 +89559,19,1.0,2,2.2463245391845703,60,1.0,3 +89560,19,1.0,2,1.5463265180587769,61,0.0,3 +89561,19,0.0,2,1.2523285150527954,62,0.0,3 +89562,19,1.0,2,1.8363227844238281,63,1.0,3 +89563,19,1.0,2,1.6743249893188477,64,0.0,3 +89564,19,0.0,2,1.8703224658966064,65,0.0,3 +89565,19,0.0,2,1.7323241233825684,66,1.0,3 +89566,19,0.0,2,1.420328140258789,67,0.0,3 +89567,19,0.0,2,1.707324504852295,68,0.0,3 +89568,19,0.0,2,1.9143218994140625,69,1.0,3 +89569,19,0.0,2,1.2563284635543823,70,0.0,3 +89570,19,1.0,2,1.520326852798462,71,1.0,3 +89571,19,1.0,2,1.5083270072937012,72,1.0,3 +89572,19,0.0,2,1.3663287162780762,73,1.0,3 +89573,19,0.0,2,1.567326307296753,74,1.0,3 +89574,19,0.0,2,2.0943195819854736,75,1.0,3 +89575,19,1.0,2,1.560326337814331,76,1.0,3 +89576,19,0.0,2,1.9263217449188232,77,0.0,3 +89577,19,1.0,2,1.6933246850967407,78,1.0,3 +89578,19,0.0,2,1.3473286628723145,79,0.0,3 +89579,19,1.0,2,1.6013258695602417,80,0.0,3 +89580,19,0.0,2,2.033320426940918,81,0.0,3 +89581,19,1.0,2,1.7093244791030884,82,1.0,3 +89582,19,1.0,2,1.516326904296875,83,1.0,3 +89583,19,1.0,2,1.4343279600143433,84,0.0,3 +89584,19,0.0,2,1.3213286399841309,85,1.0,3 +89585,19,0.0,2,1.3223285675048828,86,1.0,3 +89586,19,0.0,2,1.5703262090682983,87,1.0,3 +89587,19,0.0,2,1.3843286037445068,88,1.0,3 +89588,19,0.0,2,1.2943285703659058,89,1.0,3 +89589,19,0.0,2,1.3563287258148193,90,1.0,3 +89590,19,0.0,2,1.3203285932540894,91,0.0,3 +89591,19,1.0,2,1.5133270025253296,92,1.0,3 +89592,19,1.0,2,1.4353280067443848,93,0.0,3 +89593,19,1.0,2,2.164320945739746,94,0.0,3 +89594,19,1.0,2,1.312328577041626,95,1.0,3 +89595,19,1.0,2,1.585326075553894,96,0.0,3 +89596,19,1.0,2,1.2803285121917725,97,1.0,3 +89597,19,0.0,2,2.5593392848968506,98,0.0,3 +89598,19,1.0,2,1.4333280324935913,99,1.0,3 +89599,19,1.0,2,1.5723261833190918,100,0.0,3 +89600,19,1.0,2,2.0173206329345703,101,1.0,3 +89601,19,1.0,2,1.3243286609649658,102,1.0,3 +89602,19,1.0,2,1.5253268480300903,103,1.0,3 +89603,19,1.0,2,1.493327260017395,104,1.0,3 +89604,19,1.0,2,1.6013258695602417,105,1.0,3 +89605,19,1.0,2,1.5313267707824707,106,0.0,3 +89606,19,0.0,2,1.6213256120681763,107,0.0,3 +89607,19,0.0,2,1.247328519821167,108,0.0,3 +89608,19,0.0,2,1.4593276977539062,109,1.0,3 +89609,19,0.0,2,1.3663287162780762,110,0.0,3 +89610,19,1.0,2,1.7013245820999146,111,1.0,3 +89611,19,0.0,2,2.5563392639160156,112,0.0,3 +89612,19,1.0,2,1.3343286514282227,113,0.0,3 +89613,19,0.0,2,1.4163281917572021,114,0.0,3 +89614,19,1.0,2,1.446327805519104,115,1.0,3 +89615,19,1.0,2,1.6233255863189697,116,1.0,3 +89616,19,1.0,2,1.4363279342651367,117,1.0,3 +89617,19,1.0,2,1.2663284540176392,118,1.0,3 +89618,19,1.0,2,1.5313267707824707,119,1.0,3 +89619,19,1.0,2,1.3693287372589111,120,1.0,3 +89620,19,1.0,2,1.8203229904174805,121,1.0,3 +89621,19,0.0,2,1.7333241701126099,122,1.0,3 +89622,19,0.0,2,1.3383285999298096,123,1.0,3 +89623,19,1.0,2,1.3623286485671997,124,1.0,3 +89624,19,0.0,2,2.209322929382324,125,0.0,3 +89625,19,0.0,2,2.3263282775878906,126,1.0,3 +89626,19,0.0,2,1.936321496963501,127,1.0,3 +89627,19,0.0,2,1.4323279857635498,128,1.0,3 +89628,19,0.0,2,1.9163217544555664,129,1.0,3 +89629,19,0.0,2,1.2873284816741943,130,0.0,3 +89630,19,0.0,2,1.8573225736618042,131,0.0,3 +89631,19,1.0,2,1.6143256425857544,132,0.0,3 +89632,19,1.0,2,2.3243284225463867,133,0.0,3 +89633,19,0.0,2,1.5303267240524292,134,0.0,3 +89634,19,0.0,2,1.9073219299316406,135,0.0,3 +89635,19,1.0,2,1.7233242988586426,136,1.0,3 +89636,19,1.0,2,1.9553213119506836,137,1.0,3 +89637,19,0.0,2,1.442327857017517,138,1.0,3 +89638,19,1.0,2,1.538326621055603,139,0.0,3 +89639,19,0.0,2,1.346328616142273,140,1.0,3 +89640,19,0.0,2,1.4133282899856567,141,1.0,3 +89641,19,0.0,2,2.020320415496826,142,0.0,3 +89642,19,1.0,2,1.9433214664459229,143,1.0,3 +89643,19,0.0,2,1.318328619003296,144,1.0,3 +89644,19,1.0,2,2.16032075881958,145,1.0,3 +89645,19,0.0,2,2.2863264083862305,146,0.0,3 +89646,19,1.0,2,1.472327470779419,147,0.0,3 +89647,19,0.0,2,2.168321132659912,148,1.0,3 +89648,19,0.0,2,1.2503284215927124,149,0.0,3 +89649,19,1.0,2,1.4163281917572021,150,1.0,3 +89650,19,1.0,2,1.839322805404663,151,1.0,3 +89651,19,1.0,2,1.8643224239349365,152,0.0,3 +89652,19,0.0,2,1.489327311515808,153,0.0,3 +89653,19,0.0,2,1.2703285217285156,154,1.0,3 +89654,19,0.0,2,1.3143285512924194,155,0.0,3 +89655,19,1.0,2,1.5263267755508423,156,1.0,3 +89656,19,1.0,2,1.423328161239624,157,1.0,3 +89657,19,1.0,2,1.3233286142349243,158,1.0,3 +89658,19,1.0,2,1.5473265647888184,159,1.0,3 +89659,19,1.0,2,1.9203217029571533,160,0.0,3 +89660,19,0.0,2,1.4563276767730713,161,1.0,3 +89661,19,0.0,2,1.46732759475708,162,0.0,3 +89662,19,0.0,2,1.6823248863220215,163,1.0,3 +89663,19,0.0,2,1.9143218994140625,164,0.0,3 +89664,19,0.0,2,2.0653200149536133,165,1.0,3 +89665,19,0.0,2,1.3253285884857178,166,1.0,3 +89666,19,0.0,2,1.38032865524292,167,0.0,3 +89667,19,0.0,2,2.2463245391845703,168,1.0,3 +89668,19,1.0,2,1.4163281917572021,169,1.0,3 +89669,19,0.0,2,1.8233230113983154,170,1.0,3 +89670,19,0.0,2,2.18632173538208,171,1.0,3 +89671,19,1.0,2,2.0503201484680176,172,1.0,3 +89672,19,0.0,2,1.9673211574554443,173,1.0,3 +89673,19,1.0,2,1.7153244018554688,174,1.0,3 +89674,19,1.0,2,1.3863285779953003,175,0.0,3 +89675,19,0.0,2,1.4183281660079956,176,1.0,3 +89676,19,0.0,2,1.9523212909698486,177,0.0,3 +89677,19,0.0,2,2.367330312728882,178,1.0,3 +89678,19,0.0,2,1.2983285188674927,179,1.0,3 +89679,19,0.0,2,1.3013285398483276,180,0.0,3 +89680,19,0.0,2,1.308328628540039,181,0.0,3 +89681,19,1.0,2,1.4403278827667236,182,1.0,3 +89682,19,0.0,2,1.4603276252746582,183,0.0,3 +89683,19,1.0,2,1.4183281660079956,184,0.0,3 +89684,19,1.0,2,1.7283241748809814,185,0.0,3 +89685,19,0.0,2,1.4693275690078735,186,0.0,3 +89686,19,0.0,2,2.0073206424713135,187,0.0,3 +89687,19,1.0,2,1.5833261013031006,188,1.0,3 +89688,19,1.0,2,1.3303285837173462,189,0.0,3 +89689,19,0.0,2,1.2683285474777222,190,1.0,3 +89690,19,0.0,2,1.7743237018585205,191,0.0,3 +89691,19,1.0,2,1.7853235006332397,192,0.0,3 +89692,19,0.0,2,1.2943285703659058,193,0.0,3 +89693,19,1.0,2,1.370328664779663,194,0.0,3 +89694,19,0.0,2,1.2543284893035889,195,1.0,3 +89695,19,0.0,2,1.2623285055160522,196,0.0,3 +89696,19,0.0,2,1.4033284187316895,197,0.0,3 +89697,19,1.0,2,2.0933194160461426,198,1.0,3 +89698,19,1.0,2,1.3673286437988281,199,0.0,3 +89699,19,1.0,2,1.7183244228363037,200,1.0,3 +89700,19,1.0,2,1.3073285818099976,201,0.0,3 +89701,19,0.0,2,1.750324010848999,202,0.0,3 +89702,19,1.0,2,1.5743261575698853,203,1.0,3 +89703,19,0.0,2,1.3403286933898926,204,0.0,3 +89704,19,1.0,2,1.746324062347412,205,1.0,3 +89705,19,1.0,2,1.4003283977508545,206,1.0,3 +89706,19,1.0,2,1.3473286628723145,207,0.0,3 +89707,19,1.0,2,2.2573251724243164,208,1.0,3 +89708,19,1.0,2,1.9973207712173462,209,1.0,3 +89709,19,1.0,2,1.7763235569000244,210,0.0,3 +89710,19,0.0,2,2.123319149017334,211,1.0,3 +89711,19,0.0,2,1.3543286323547363,212,0.0,3 +89712,19,0.0,2,1.4263280630111694,213,1.0,3 +89713,19,0.0,2,1.2833285331726074,214,0.0,3 +89714,19,0.0,2,1.9713211059570312,215,0.0,3 +89715,19,0.0,2,2.7333474159240723,216,1.0,3 +89716,19,0.0,2,1.938321590423584,217,0.0,3 +89717,19,1.0,2,2.0533199310302734,218,1.0,3 +89718,19,1.0,2,1.5053271055221558,219,1.0,3 +89719,19,1.0,2,1.6573251485824585,220,1.0,3 +89720,19,1.0,2,1.559326410293579,221,1.0,3 +89721,19,1.0,2,1.3133286237716675,222,0.0,3 +89722,19,0.0,2,1.3823286294937134,223,1.0,3 +89723,19,0.0,2,2.071319818496704,224,0.0,3 +89724,19,0.0,2,1.4733275175094604,225,1.0,3 +89725,19,0.0,2,1.5323266983032227,226,1.0,3 +89726,19,0.0,2,1.2803285121917725,227,1.0,3 +89727,19,0.0,2,1.3673286437988281,228,0.0,3 +89728,19,0.0,2,1.8613225221633911,229,1.0,3 +89729,19,0.0,2,1.339328646659851,230,1.0,3 +89730,19,0.0,2,1.5993258953094482,231,0.0,3 +89731,19,1.0,2,2.036320209503174,232,0.0,3 +89732,19,0.0,2,1.4403278827667236,233,1.0,3 +89733,19,0.0,2,1.4373279809951782,234,0.0,3 +89734,19,1.0,2,1.7103245258331299,235,0.0,3 +89735,19,0.0,2,1.342328667640686,236,1.0,3 +89736,19,0.0,2,1.5253268480300903,237,1.0,3 +89737,19,0.0,2,1.2883285284042358,238,0.0,3 +89738,19,0.0,2,1.5913259983062744,239,1.0,3 +89739,19,0.0,2,1.8323228359222412,240,1.0,3 +89740,19,0.0,2,1.5053271055221558,241,0.0,3 +89741,19,1.0,2,1.8283228874206543,242,0.0,3 +89742,19,0.0,2,2.670344352722168,243,1.0,3 +89743,19,0.0,2,1.5953259468078613,244,1.0,3 +89744,19,0.0,2,1.497327208518982,245,1.0,3 +89745,19,0.0,2,1.5503264665603638,246,0.0,3 +89746,19,0.0,2,1.637325406074524,247,0.0,3 +89747,19,0.0,2,1.751323938369751,248,0.0,3 +89748,19,0.0,2,2.130319118499756,249,1.0,3 +89749,19,0.0,2,1.5613263845443726,250,0.0,3 +89750,19,0.0,2,2.3083276748657227,251,1.0,3 +89751,19,0.0,2,1.311328649520874,252,0.0,3 +89752,19,1.0,2,1.9603211879730225,253,0.0,3 +89753,19,0.0,2,1.4163281917572021,254,1.0,3 +89754,19,0.0,2,1.4213281869888306,255,1.0,3 +89755,19,0.0,2,1.515326976776123,256,0.0,3 +89756,19,0.0,2,1.208328366279602,257,1.0,3 +89757,19,0.0,2,1.4063283205032349,258,0.0,3 +89758,19,0.0,2,2.1103193759918213,259,0.0,3 +89759,19,0.0,2,1.5473265647888184,260,0.0,3 +89760,19,0.0,2,1.6763248443603516,261,0.0,3 +89761,19,0.0,2,2.196322441101074,262,0.0,3 +89762,19,1.0,2,2.0073206424713135,263,0.0,3 +89763,19,0.0,2,1.3373286724090576,264,0.0,3 +89764,19,0.0,2,1.9663212299346924,265,0.0,3 +89765,19,1.0,2,1.5553264617919922,266,1.0,3 +89766,19,1.0,2,1.4743274450302124,267,0.0,3 +89767,19,1.0,2,1.6173256635665894,268,1.0,3 +89768,19,1.0,2,1.472327470779419,269,0.0,3 +89769,19,0.0,2,1.349328637123108,270,1.0,3 +89770,19,0.0,2,1.2303284406661987,271,1.0,3 +89771,19,0.0,2,1.7893234491348267,272,0.0,3 +89772,19,1.0,2,1.46732759475708,273,0.0,3 +89773,19,1.0,2,2.070319890975952,274,0.0,3 +89774,19,0.0,2,2.2153232097625732,275,0.0,3 +89775,19,0.0,2,1.3543286323547363,276,0.0,3 +89776,19,1.0,2,1.428328037261963,277,1.0,3 +89777,19,1.0,2,1.5473265647888184,278,0.0,3 +89778,19,1.0,2,1.4653276205062866,279,1.0,3 +89779,19,1.0,2,1.308328628540039,280,0.0,3 +89780,19,1.0,2,1.275328516960144,281,1.0,3 +89781,19,1.0,2,1.604325771331787,282,1.0,3 +89782,19,1.0,2,1.7123243808746338,283,1.0,3 +89783,19,1.0,2,1.3923285007476807,284,1.0,3 +89784,19,1.0,2,1.5833261013031006,285,0.0,3 +89785,19,1.0,2,2.067319869995117,286,0.0,3 +89786,19,1.0,2,1.4863272905349731,287,0.0,3 +89787,19,0.0,2,1.5223268270492554,288,0.0,3 +89788,19,0.0,2,1.4003283977508545,289,0.0,3 +89789,19,1.0,2,1.7233242988586426,290,0.0,3 +89790,19,0.0,2,1.5753262042999268,291,1.0,3 +89791,19,0.0,2,1.4633276462554932,292,0.0,3 +89792,19,0.0,2,1.3073285818099976,293,0.0,3 +89793,19,1.0,2,2.123319149017334,294,0.0,3 +89794,19,0.0,2,1.3363286256790161,295,1.0,3 +89795,19,0.0,2,1.446327805519104,296,0.0,3 +89796,19,0.0,2,1.4803273677825928,297,0.0,3 +89797,19,1.0,2,1.699324607849121,298,1.0,3 +89798,19,1.0,2,2.161320686340332,299,0.0,3 +89799,19,1.0,2,1.4353280067443848,300,1.0,3 +89800,19,0.0,2,2.5103368759155273,301,0.0,3 +89801,19,1.0,2,1.9253216981887817,302,1.0,3 +89802,19,1.0,2,1.9223217964172363,303,0.0,3 +89803,19,1.0,2,1.3293286561965942,304,1.0,3 +89804,19,1.0,2,1.4373279809951782,305,1.0,3 +89805,19,1.0,2,1.586326003074646,306,1.0,3 +89806,19,1.0,2,1.7843234539031982,307,0.0,3 +89807,19,1.0,2,1.5883259773254395,308,0.0,3 +89808,19,0.0,2,1.4383279085159302,309,0.0,3 +89809,19,0.0,2,1.700324535369873,310,0.0,3 +89810,19,1.0,2,1.9223217964172363,311,1.0,3 +89811,19,1.0,2,1.6193256378173828,312,0.0,3 +89812,19,0.0,2,1.8773223161697388,313,0.0,3 +89813,19,1.0,2,2.5383381843566895,314,1.0,3 +89814,19,0.0,2,2.0173206329345703,315,0.0,3 +89815,19,1.0,2,1.3433287143707275,316,1.0,3 +89816,19,1.0,2,1.5983258485794067,317,0.0,3 +89817,19,1.0,2,2.076319694519043,318,1.0,3 +89818,19,1.0,2,1.6613250970840454,319,0.0,3 +89819,19,1.0,2,1.6643249988555908,320,0.0,3 +89820,19,1.0,2,1.7603237628936768,321,1.0,3 +89821,19,1.0,2,1.6033258438110352,322,1.0,3 +89822,19,1.0,2,2.5373382568359375,323,1.0,3 +89823,19,1.0,2,1.3543286323547363,324,1.0,3 +89824,19,1.0,2,1.6713249683380127,325,0.0,3 +89825,19,1.0,2,1.3903285264968872,326,1.0,3 +89826,19,1.0,2,1.2563284635543823,327,1.0,3 +89827,19,1.0,2,1.3583287000656128,328,1.0,3 +89828,19,1.0,2,1.3243286609649658,329,1.0,3 +89829,19,1.0,2,2.0903196334838867,330,1.0,3 +89830,19,1.0,2,1.3383285999298096,331,0.0,3 +89831,19,1.0,2,1.3653286695480347,332,0.0,3 +89832,19,1.0,2,1.376328706741333,333,0.0,3 +89833,19,0.0,2,1.9273216724395752,334,1.0,3 +89834,19,0.0,2,1.2133283615112305,335,1.0,3 +89835,19,0.0,2,1.312328577041626,336,0.0,3 +89836,19,1.0,2,1.445327877998352,337,0.0,3 +89837,19,1.0,2,1.9433214664459229,338,0.0,3 +89838,19,1.0,2,2.136319637298584,339,0.0,3 +89839,19,0.0,2,2.444334030151367,340,0.0,3 +89840,19,1.0,2,1.4853273630142212,341,0.0,3 +89841,19,0.0,2,1.3143285512924194,342,0.0,3 +89842,19,0.0,2,1.935321569442749,343,0.0,3 +89843,19,1.0,2,1.3863285779953003,344,1.0,3 +89844,19,1.0,2,1.4073283672332764,345,0.0,3 +89845,19,1.0,2,1.5393266677856445,346,1.0,3 +89846,19,1.0,2,1.4063283205032349,347,1.0,3 +89847,19,1.0,2,1.6013258695602417,348,0.0,3 +89848,19,1.0,2,1.7363240718841553,349,0.0,3 +89849,19,1.0,2,1.9563212394714355,350,0.0,3 +89850,19,0.0,2,1.3543286323547363,351,0.0,3 +89851,19,0.0,2,1.5083270072937012,352,1.0,3 +89852,19,0.0,2,1.6283254623413086,353,0.0,3 +89853,19,0.0,2,2.2253236770629883,354,0.0,3 +89854,19,1.0,2,1.5803260803222656,355,1.0,3 +89855,19,1.0,2,1.585326075553894,356,0.0,3 +89856,19,0.0,2,1.8613225221633911,357,1.0,3 +89857,19,0.0,2,1.2703285217285156,358,1.0,3 +89858,19,0.0,2,1.449327826499939,359,1.0,3 +89859,19,0.0,2,1.6793248653411865,360,0.0,3 +89860,19,1.0,2,1.6183255910873413,361,0.0,3 +89861,19,0.0,2,1.3823286294937134,362,0.0,3 +89862,19,1.0,2,1.9433214664459229,363,1.0,3 +89863,19,1.0,2,1.9213217496871948,364,1.0,3 +89864,19,1.0,2,1.3893285989761353,365,1.0,3 +89865,19,1.0,2,1.9993207454681396,366,1.0,3 +89866,19,1.0,2,1.7593238353729248,367,1.0,3 +89867,19,1.0,2,1.70432448387146,368,0.0,3 +89868,19,1.0,2,1.7863235473632812,369,1.0,3 +89869,19,1.0,2,1.6163256168365479,370,1.0,3 +89870,19,1.0,2,1.541326642036438,371,0.0,3 +89871,19,0.0,2,1.4213281869888306,372,1.0,3 +89872,19,0.0,2,1.4353280067443848,373,0.0,3 +89873,19,0.0,2,1.419328212738037,374,0.0,3 +89874,19,0.0,2,1.4403278827667236,375,0.0,3 +89875,19,1.0,2,2.4753353595733643,376,1.0,3 +89876,19,1.0,2,1.38032865524292,377,0.0,3 +89877,19,0.0,2,1.3653286695480347,378,1.0,3 +89878,19,0.0,2,1.6133257150650024,379,1.0,3 +89879,19,0.0,2,1.3633286952972412,380,1.0,3 +89880,19,1.0,2,1.6033258438110352,381,0.0,3 +89881,19,0.0,2,1.4983271360397339,382,1.0,3 +89882,19,0.0,2,1.2573285102844238,383,0.0,3 +89883,19,0.0,2,1.892322063446045,384,1.0,3 +89884,19,0.0,2,1.4563276767730713,385,1.0,3 +89885,19,0.0,2,1.700324535369873,386,0.0,3 +89886,19,0.0,2,1.9583213329315186,387,1.0,3 +89887,19,0.0,2,1.315328598022461,388,0.0,3 +89888,19,0.0,2,1.2913285493850708,389,1.0,3 +89889,19,0.0,2,2.197322368621826,390,1.0,3 +89890,19,0.0,2,1.8723223209381104,391,0.0,3 +89891,19,0.0,2,2.3163280487060547,392,0.0,3 +89892,19,0.0,2,2.2803263664245605,393,1.0,3 +89893,19,0.0,2,1.4223281145095825,394,0.0,3 +89894,19,1.0,2,1.754323959350586,395,1.0,3 +89895,19,1.0,2,1.9663212299346924,396,1.0,3 +89896,19,1.0,2,2.0903196334838867,397,0.0,3 +89897,19,0.0,2,1.8453227281570435,398,0.0,3 +89898,19,0.0,2,1.4983271360397339,399,0.0,3 +89899,19,1.0,2,1.5483264923095703,400,0.0,3 +89900,19,0.0,2,1.7183244228363037,401,1.0,3 +89901,19,0.0,2,1.3653286695480347,402,0.0,3 +89902,19,1.0,2,1.7563238143920898,403,1.0,3 +89903,19,1.0,2,1.349328637123108,404,0.0,3 +89904,19,1.0,2,1.373328685760498,405,1.0,3 +89905,19,1.0,2,1.585326075553894,406,0.0,3 +89906,19,0.0,2,1.5253268480300903,407,1.0,3 +89907,19,0.0,2,1.545326590538025,408,0.0,3 +89908,19,1.0,2,1.5463265180587769,409,1.0,3 +89909,19,1.0,2,1.6343255043029785,410,1.0,3 +89910,19,1.0,2,1.7533239126205444,411,1.0,3 +89911,19,1.0,2,1.494327187538147,412,0.0,3 +89912,19,1.0,2,1.7143244743347168,413,1.0,3 +89913,19,1.0,2,1.3303285837173462,414,1.0,3 +89914,19,1.0,2,1.8933221101760864,415,1.0,3 +89915,19,1.0,2,1.2973285913467407,416,1.0,3 +89916,19,1.0,2,1.559326410293579,417,1.0,3 +89917,19,1.0,2,1.8253229856491089,418,0.0,3 +89918,19,1.0,2,1.8493226766586304,419,1.0,3 +89919,19,1.0,2,1.5523264408111572,420,0.0,3 +89920,19,0.0,2,1.6433253288269043,421,0.0,3 +89921,19,0.0,2,1.65232515335083,422,0.0,3 +89922,19,1.0,2,1.5773261785507202,423,0.0,3 +89923,19,0.0,2,2.377330780029297,424,1.0,3 +89924,19,0.0,2,1.3893285989761353,425,1.0,3 +89925,19,0.0,2,1.318328619003296,426,0.0,3 +89926,19,0.0,2,1.2833285331726074,427,0.0,3 +89927,19,0.0,2,1.3813287019729614,428,1.0,3 +89928,19,0.0,2,1.4543277025222778,429,1.0,3 +89929,19,0.0,2,1.2333284616470337,430,0.0,3 +89930,19,0.0,2,1.9253216981887817,431,1.0,3 +89931,19,0.0,2,1.493327260017395,432,0.0,3 +89932,19,1.0,2,1.3323286771774292,433,0.0,3 +89933,19,1.0,2,1.6883246898651123,434,0.0,3 +89934,19,0.0,2,2.5163373947143555,435,1.0,3 +89935,19,0.0,2,1.6703250408172607,436,1.0,3 +89936,19,0.0,2,1.3933285474777222,437,0.0,3 +89937,19,0.0,2,1.3633286952972412,438,0.0,3 +89938,19,0.0,2,2.2193233966827393,439,1.0,3 +89939,19,0.0,2,1.3023285865783691,440,1.0,3 +89940,19,0.0,2,1.312328577041626,441,0.0,3 +89941,19,0.0,2,1.9033219814300537,442,0.0,3 +89942,19,0.0,2,1.275328516960144,443,1.0,3 +89943,19,0.0,2,1.7353241443634033,444,0.0,3 +89944,19,0.0,2,1.8503227233886719,445,1.0,3 +89945,19,0.0,2,1.5883259773254395,446,1.0,3 +89946,19,0.0,2,1.3593287467956543,447,0.0,3 +89947,19,0.0,2,1.2333284616470337,448,1.0,3 +89948,19,0.0,2,1.2463284730911255,449,1.0,3 +89949,19,0.0,2,1.3623286485671997,450,0.0,3 +89950,19,1.0,2,1.5753262042999268,451,1.0,3 +89951,19,1.0,2,1.3203285932540894,452,0.0,3 +89952,19,1.0,2,1.3373286724090576,453,0.0,3 +89953,19,1.0,2,1.750324010848999,454,0.0,3 +89954,19,0.0,2,1.5793261528015137,455,0.0,3 +89955,19,1.0,2,2.8133511543273926,456,1.0,3 +89956,19,1.0,2,1.559326410293579,457,1.0,3 +89957,19,0.0,2,1.475327491760254,458,1.0,3 +89958,19,0.0,2,1.8783223628997803,459,0.0,3 +89959,19,0.0,2,1.272328495979309,460,1.0,3 +89960,19,0.0,2,1.729324221611023,461,1.0,3 +89961,19,0.0,2,1.6353254318237305,462,1.0,3 +89962,19,0.0,2,1.5763261318206787,463,0.0,3 +89963,19,1.0,2,1.312328577041626,464,1.0,3 +89964,19,1.0,2,1.5293267965316772,465,1.0,3 +89965,19,1.0,2,1.6953246593475342,466,0.0,3 +89966,19,0.0,2,1.5723261833190918,467,0.0,3 +89967,19,1.0,2,1.9893208742141724,468,1.0,3 +89968,19,1.0,2,1.3683286905288696,469,1.0,3 +89969,19,1.0,2,1.9493213891983032,470,1.0,3 +89970,19,1.0,2,1.7683236598968506,471,1.0,3 +89971,19,1.0,2,2.030320405960083,472,0.0,3 +89972,19,0.0,2,1.4393279552459717,473,0.0,3 +89973,19,0.0,2,1.494327187538147,474,1.0,3 +89974,19,0.0,2,1.4433279037475586,475,0.0,3 +89975,19,1.0,2,1.9753210544586182,476,0.0,3 +89976,19,0.0,2,1.3443286418914795,477,1.0,3 +89977,19,0.0,2,2.3493294715881348,478,0.0,3 +89978,19,1.0,2,1.6783249378204346,479,1.0,3 +89979,19,0.0,2,1.2303284406661987,480,1.0,3 +89980,19,1.0,2,1.567326307296753,481,1.0,3 +89981,19,1.0,2,1.6923246383666992,482,1.0,3 +89982,19,1.0,2,1.662325143814087,483,0.0,3 +89983,19,0.0,2,1.51932692527771,484,0.0,3 +89984,19,1.0,2,1.8503227233886719,485,1.0,3 +89985,19,1.0,2,2.0883195400238037,486,1.0,3 +89986,19,1.0,2,1.3403286933898926,487,0.0,3 +89987,19,0.0,2,2.2583250999450684,488,1.0,3 +89988,19,0.0,2,1.5683262348175049,489,0.0,3 +89989,19,0.0,2,1.281328558921814,490,1.0,3 +89990,19,0.0,2,1.2863285541534424,491,0.0,3 +89991,19,0.0,2,1.3553286790847778,492,0.0,3 +89992,19,1.0,2,2.2503247261047363,493,1.0,3 +89993,19,1.0,2,1.4553277492523193,494,1.0,3 +89994,19,1.0,2,1.5003271102905273,495,1.0,3 +89995,19,1.0,2,1.5253268480300903,496,1.0,3 +89996,19,1.0,2,1.3303285837173462,497,1.0,3 +89997,19,1.0,2,1.564326286315918,498,0.0,3 +89998,19,1.0,2,1.342328667640686,499,0.0,3 +89999,19,0.0,2,2.5013365745544434,500,1.0,3 diff --git a/hddm/examples/demo_HDDMnnRL/rlssm_model b/hddm/examples/demo_HDDMnnRL/rlssm_model new file mode 100644 index 000000000..176e72d99 Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/rlssm_model differ diff --git a/hddm/examples/demo_HDDMnnRL/traces.db b/hddm/examples/demo_HDDMnnRL/traces.db new file mode 100644 index 000000000..fa4053149 Binary files /dev/null and b/hddm/examples/demo_HDDMnnRL/traces.db differ diff --git a/hddm/examples/traces.db b/hddm/examples/traces.db deleted file mode 100755 index 28c696cfa..000000000 Binary files a/hddm/examples/traces.db and /dev/null differ diff --git a/hddm/generate.py b/hddm/generate.py index 4a548c328..99715692e 100644 --- a/hddm/generate.py +++ b/hddm/generate.py @@ -5,6 +5,7 @@ from numpy.random import rand from scipy.stats import uniform, norm from copy import copy +from hddm.simulators.basic_simulator import * def gen_single_params_set(include=()): @@ -475,6 +476,229 @@ def gen_rand_data(params=None, n_fast_outliers=0, n_slow_outliers=0, **kwargs): return data, subj_params +def gen_rand_rlssm_data_MAB_RWupdate( + model, + ssm_param, + rl_param, + dual=False, + size=1, + p_upper=1, + p_lower=0, + q_init=0.5, + subjs=1, + split_by=0, + mu_upper=1, + mu_lower=0, + sd_upper=0.1, + sd_lower=0.1, + binary_outcome=True, + uncertainty=False, +): + """Generate RLSSM datasets on 2-armed bandit task. + + :Arguments: + model: str + String that determines which sequential sampling model to use. + ssm_param: list + List of sequential sampling model parameters (in the order of what you define in model_config). + rl_param: list + List of reinforcement learning parameters (in the order of what you define in model_config_rl). + dual: bool + Flag to denote if use of separate learning rates for positive and negative RPEs. + size: int + Number of trials to simulate. + p_upper: float + Probability of reward for the upper action/choice. + p_lower: float + Probability of reward for the lower action/choice. + q_init: int + Initial q-values. + subjs: int + Number of subjects to simulate. + split_by: int + Denotes the condition number/index in the experiment. + mu_upper: float + Mean of the (normal) reward distribution for the upper action/choice. + mu_lower: float + Mean of the (normal) reward distribution for the lower action/choice. + sd_upper: float + Std. dev. of the (normal) reward distribution for the upper action/choice. + sd_lower: float + Std. dev. of the (normal) reward distribution for the lower action/choice. + binary_outcome: bool + Denotes if the reward scheme is binary (as opposed to non-binary). Non-binary rewards are sampled from normal distributions. + + + :Returns: + all_data: Pandas.Dataframe + Pandas DataFrame containing all the simulated data. + """ + + scaler = ssm_param[0] + alpha = rl_param[0] + if dual: + pos_alfa = rl_param[1] + else: + pos_alfa = alpha + + all_data = [] + + for s in range(0, subjs): + n = size + q_up = np.tile([q_init], n) + q_low = np.tile([q_init], n) + response = np.tile([0.5], n) + feedback = np.tile([0.5], n) + rt = np.tile([0], n) + if binary_outcome: + rew_up = np.random.binomial(1, p_upper, n).astype(float) + rew_low = np.random.binomial(1, p_lower, n).astype(float) + else: + rew_up = np.random.normal(mu_upper, sd_upper, n) + rew_low = np.random.normal(mu_lower, sd_lower, n) + sim_drift = np.tile([0], n) + subj_idx = np.tile([s], n) + d = { + "q_up": q_up, + "q_low": q_low, + "sim_drift": sim_drift, + "rew_up": rew_up, + "rew_low": rew_low, + "response": response, + "rt": rt, + "feedback": feedback, + "subj_idx": subj_idx, + "split_by": split_by, + "trial": 1, + } + df = pd.DataFrame(data=d) + df = df[ + [ + "q_up", + "q_low", + "sim_drift", + "rew_up", + "rew_low", + "response", + "rt", + "feedback", + "subj_idx", + "split_by", + "trial", + ] + ] + + # Get sim_params for passing into the simulator + sim_params = np.append([df.loc[0, "sim_drift"]], ssm_param[1:]) + + # simulate model with given params + res = simulator( + sim_params, + model=model, + n_samples=1, + delta_t=0.001, # n_trials + max_t=20, + no_noise=False, + bin_dim=None, + bin_pointwise=False, + ) + # get the results in desired df format [rt, response] -- from np.array (1, 2) + tres = np.transpose(np.squeeze(np.array(list(res[0:2])), axis=1)) + data = pd.DataFrame(tres, columns=["rt", "response"]) + # flip the responses to [1,0] + data.loc[data["response"] < 1, "response"] = 0 + + df.loc[0, "response"] = data.response[0] + df.loc[0, "rt"] = data.rt[0] + if data.response[0] == 1.0: + df.loc[0, "feedback"] = df.loc[0, "rew_up"] + if df.loc[0, "feedback"] > df.loc[0, "q_up"]: + alfa = pos_alfa + else: + alfa = alpha + else: + df.loc[0, "feedback"] = df.loc[0, "rew_low"] + if df.loc[0, "feedback"] > df.loc[0, "q_low"]: + alfa = pos_alfa + else: + alfa = alpha + + for i in range(1, n): + df.loc[i, "trial"] = i + 1 + df.loc[i, "q_up"] = ( + df.loc[i - 1, "q_up"] * (1 - df.loc[i - 1, "response"]) + ) + ( + (df.loc[i - 1, "response"]) + * ( + df.loc[i - 1, "q_up"] + + (alfa * (df.loc[i - 1, "rew_up"] - df.loc[i - 1, "q_up"])) + ) + ) + df.loc[i, "q_low"] = ( + df.loc[i - 1, "q_low"] * (df.loc[i - 1, "response"]) + ) + ( + (1 - df.loc[i - 1, "response"]) + * ( + df.loc[i - 1, "q_low"] + + (alfa * (df.loc[i - 1, "rew_low"] - df.loc[i - 1, "q_low"])) + ) + ) + df.loc[i, "sim_drift"] = (df.loc[i, "q_up"] - df.loc[i, "q_low"]) * (scaler) + + # Get sim_params for passing into the simulator + sim_params = np.append([df.loc[i, "sim_drift"]], ssm_param[1:]) + + # simulate model with given params + res = simulator( + sim_params, + model=model, + n_samples=1, + delta_t=0.001, # n_trials + max_t=20, + no_noise=False, + bin_dim=None, + bin_pointwise=False, + ) + # get the results in desired df format [rt, response] -- from np.array (1, 2) + tres = np.transpose(np.squeeze(np.array(list(res[0:2])), axis=1)) + data = pd.DataFrame(tres, columns=["rt", "response"]) + # flip the responses to [1,0] + data.loc[data["response"] < 1, "response"] = 0 + + df.loc[i, "response"] = data.response[0] + df.loc[i, "rt"] = data.rt[0] + if data.response[0] == 1.0: + df.loc[i, "feedback"] = df.loc[i, "rew_up"] + if df.loc[i, "feedback"] > df.loc[i, "q_up"]: + alfa = pos_alfa + else: + alfa = alpha + else: + df.loc[i, "feedback"] = df.loc[i, "rew_low"] + if df.loc[i, "feedback"] > df.loc[i, "q_low"]: + alfa = pos_alfa + else: + alfa = alpha + + all_data.append(df) + all_data = pd.concat(all_data, axis=0) + all_data = all_data[ + [ + "q_up", + "q_low", + "sim_drift", + "response", + "rt", + "feedback", + "subj_idx", + "split_by", + "trial", + ] + ] + + return all_data + + def gen_rand_rlddm_data( a, t, diff --git a/hddm/likelihoods_mlp.py b/hddm/likelihoods_mlp.py index 326b047e3..2a6d1df26 100644 --- a/hddm/likelihoods_mlp.py +++ b/hddm/likelihoods_mlp.py @@ -8,16 +8,19 @@ from hddm.simulators import * from hddm.utils import * -def __prepare_indirect_regressors(model_config = {}): + +def __prepare_indirect_regressors(model_config={}): # Prepare indirect regressors # From dictionary that has indirect regressors as keys and links to parameters # To dictionary that has parameters as keys and links them to any potential indirect regressor param_links = {} indirect_regressors_present = False - if 'indirect_regressors' in model_config: + if "indirect_regressors" in model_config: indirect_regressors_present = True - for indirect_regressor_tmp in model_config['indirect_regressors'].keys(): - for links_to_tmp in model_config['indirect_regressors'][indirect_regressor_tmp]['links_to']: + for indirect_regressor_tmp in model_config["indirect_regressors"].keys(): + for links_to_tmp in model_config["indirect_regressors"][ + indirect_regressor_tmp + ]["links_to"]: if links_to_tmp in param_links.keys(): param_links[links_to_tmp].add(indirect_regressor_tmp) else: @@ -35,28 +38,45 @@ def __prepare_indirect_regressors(model_config = {}): return param_links, indirect_regressors_present -def __prepare_indirect_betas(model_config = {}): + +def __prepare_indirect_betas(model_config={}): # Prepare indirect betas param_links_betas = {} indirect_betas_present = False # Loop over indirect betas - if 'indirect_betas' in model_config: + if "indirect_betas" in model_config: indirect_betas_present = True - for indirect_beta_tmp in model_config['indirect_betas'].keys(): + for indirect_beta_tmp in model_config["indirect_betas"].keys(): # For particular indirect beta loop over the # parameters it links to - for links_to_tmp in model_config['indirect_betas'][indirect_beta_tmp]['links_to'].keys(): + for links_to_tmp in model_config["indirect_betas"][indirect_beta_tmp][ + "links_to" + ].keys(): # If param links has respective key already # just add the indirect beta to it if links_to_tmp in param_links_betas.keys(): - param_links_betas[links_to_tmp].add((indirect_beta_tmp, model_config['indirect_betas'][indirect_beta_tmp]['links_to'][links_to_tmp])) + param_links_betas[links_to_tmp].add( + ( + indirect_beta_tmp, + model_config["indirect_betas"][indirect_beta_tmp][ + "links_to" + ][links_to_tmp], + ) + ) - # Otherwise first crete empty set then add the indirect + # Otherwise first crete empty set then add the indirect # regressor else: param_links_betas[links_to_tmp] = set() - param_links_betas[links_to_tmp].add((indirect_beta_tmp, model_config['indirect_betas'][indirect_beta_tmp]['links_to'][links_to_tmp])) + param_links_betas[links_to_tmp].add( + ( + indirect_beta_tmp, + model_config["indirect_betas"][indirect_beta_tmp][ + "links_to" + ][links_to_tmp], + ) + ) # For remaining parameters that haven't been linked to anything # we let them link to an empty set @@ -66,9 +86,10 @@ def __prepare_indirect_betas(model_config = {}): pass else: param_links_betas[param] = set() - + return param_links_betas, indirect_betas_present + # LIKELIHOODS def make_mlp_likelihood(model=None, model_config=None, wiener_params=None, **kwargs): """Defines the likelihoods for the MLP networks. @@ -182,6 +203,48 @@ def make_likelihood(): wfpt_nn.random = random return wfpt_nn + +def make_mlp_likelihood_rlssm( + model=None, model_config=None, model_config_rl=None, wiener_params=None, **kwargs +): + """Defines the likelihoods for the MLP networks for RLSSMs. + + :Arguments: + model: str + String that determines which model you would like to fit your data to. + Currently available models are: 'ddm', 'full_ddm', 'angle', 'weibull', 'ornstein', 'levy' + model_config: dict + Config dictionary for the sequential sampling model, necessary for construction of likelihood. In the style of what you find under hddm.model_config. + model_config_rl: dict + Config dictionary for the reinforcement learning model, necessary for construction of likelihood. In the style of what you find under hddm.model_config_rl. + kwargs: dict + Dictionary of additional keyword arguments. + Importantly here, this carries the preloaded CNN. + + :Returns: + Returns a pymc.object stochastic object as defined by PyMC2 + """ + + def make_likelihood(): + likelihood_str = make_likelihood_str_mlp_rlssm( + model=model, + config=model_config, + config_rl=model_config_rl, + wiener_params=wiener_params, + ) + exec(likelihood_str) + my_fun = locals()["custom_likelihood"] + return my_fun + + likelihood_ = make_likelihood() + + wfpt_nn_rl = stochastic_from_dist( + "WienernnRL_" + model, partial(likelihood_, **kwargs) + ) + + return wfpt_nn_rl + + # REGRESSOR LIKELIHOODS def make_mlp_likelihood_reg( model=None, model_config=None, wiener_params=None, **kwargs @@ -211,7 +274,7 @@ def random( add_model_parameters=False, add_outliers=False, keep_subj_idx=False, - ): + ): """ Function to sample from a regressor based likelihood. Conditions on the covariates. """ @@ -227,11 +290,16 @@ def random( if tmp_str in self.parents["reg_outcomes"]: param_data[:, cnt] = param_dict[tmp_str].values for linked_indirect_regressor in param_links[tmp_str]: - param_data[:, cnt] = param_data[:, cnt] + \ - param_dict[linked_indirect_regressor].values + param_data[:, cnt] = ( + param_data[:, cnt] + + param_dict[linked_indirect_regressor].values + ) for linked_indirect_beta in param_links_betas[tmp_str]: - param_data[:, cnt] = param_data[:, cnt] + \ - param_dict[linked_indirect_beta[0]] * self.value[linked_indirect_beta[1]] + param_data[:, cnt] = ( + param_data[:, cnt] + + param_dict[linked_indirect_beta[0]] + * self.value[linked_indirect_beta[1]] + ) else: param_data[:, cnt] = param_dict[tmp_str] cnt += 1 @@ -271,14 +339,14 @@ def cdf(self, x): def make_likelihood(): if indirect_betas_present or indirect_regressors_present: likelihood_str = make_reg_likelihood_str_mlp( - config=model_config, - wiener_params=wiener_params, - param_links=param_links, - param_links_betas=param_links_betas, - ) + config=model_config, + wiener_params=wiener_params, + param_links=param_links, + param_links_betas=param_links_betas, + ) else: likelihood_str = make_reg_likelihood_str_mlp_basic( - config = model_config, + config=model_config, wiener_params=wiener_params, ) @@ -286,12 +354,16 @@ def make_likelihood(): my_fun = locals()["custom_likelihood_reg"] return my_fun - param_links, indirect_regressors_present = __prepare_indirect_regressors(model_config = model_config) - param_links_betas, indirect_betas_present = __prepare_indirect_betas(model_config = model_config) + param_links, indirect_regressors_present = __prepare_indirect_regressors( + model_config=model_config + ) + param_links_betas, indirect_betas_present = __prepare_indirect_betas( + model_config=model_config + ) likelihood_ = make_likelihood() stoch = stochastic_from_dist("wfpt_reg", partial(likelihood_, **kwargs)) stoch.pdf = pdf stoch.cdf = cdf stoch.random = random - return stoch \ No newline at end of file + return stoch diff --git a/hddm/model_config.py b/hddm/model_config.py index 0a15c76c2..c15353a1c 100644 --- a/hddm/model_config.py +++ b/hddm/model_config.py @@ -85,7 +85,7 @@ "params_std_upper": [1.5, 1.0, None, 1.0, 1.0], "param_bounds": [[-3.0, 0.3, 0.1, 1e-3, -0.1], [3.0, 3.0, 0.9, 2.0, 1.3]], "boundary": bf.angle, - "params_default": [0.0, 1.0, 0.5, 1e-3, 0.0], + "params_default": [0.0, 1.0, 0.5, 1e-3, 0.1], "hddm_include": ["z", "theta"], "choices": [-1, 1], "slice_widths": { @@ -235,11 +235,14 @@ "params": ["v", "a", "z", "t", "shape", "scale", "c"], "params_trans": [0, 0, 1, 0, 0, 0, 0], "params_std_upper": [1.5, 1.0, None, 1.0, 2.0, 2.0, 1.5], - "param_bounds": [[-3.0, 0.3, 0.1, 1e-3, 2.0, 0.01, -3.0], [3.0, 3.0, 0.9, 2.0, 10.0, 1.0, 3.0]], + "param_bounds": [ + [-3.0, 0.3, 0.1, 1e-3, 2.0, 0.01, -3.0], + [3.0, 3.0, 0.9, 2.0, 10.0, 1.0, 3.0], + ], "boundary": bf.constant, "params_default": [0.0, 1.0, 0.5, 0.25, 5.0, 0.5, 1.0], "hddm_include": ["z", "shape", "scale", "c"], - "choices":[-1, 1], + "choices": [-1, 1], "slice_widths": { "v": 1.5, "v_std": 1, @@ -254,7 +257,7 @@ "scale": 1, "scale_std": 1, "c": 1, - "c_std": 1 + "c_std": 1, }, }, "gamma_drift_angle": { @@ -262,11 +265,14 @@ "params": ["v", "a", "z", "t", "theta", "shape", "scale", "c"], "params_trans": [0, 0, 1, 0, 0, 0, 0, 0], "params_std_upper": [1.5, 1.0, None, 1.0, 1.0, 2.0, 2.0, 1.5], - "param_bounds": [[-3.0, 0.3, 0.1, 1e-3, -0.1, 2.0, 0.01, -3.0], [3.0, 3.0, 0.9, 2.0, 1.3, 10.0, 1.0, 3.0]], + "param_bounds": [ + [-3.0, 0.3, 0.1, 1e-3, -0.1, 2.0, 0.01, -3.0], + [3.0, 3.0, 0.9, 2.0, 1.3, 10.0, 1.0, 3.0], + ], "boundary": bf.angle, "params_default": [0.0, 1.0, 0.5, 0.25, 0.0, 5.0, 0.5, 1.0], "hddm_include": ["z", "shape", "scale", "c", "theta"], - "choices":[-1, 1], + "choices": [-1, 1], "slice_widths": { "v": 1.5, "v_std": 1, @@ -283,18 +289,42 @@ "scale": 1, "scale_std": 1, "c": 1, - "c_std": 1 + "c_std": 1, }, }, "ds_conflict_drift": { "doc": "Meant for use with LAN extension.", - "params": ['a', 'z', 't', 'tinit', 'dinit', 'tslope', 'dslope', 'tfixedp', 'tcoh', 'dcoh'], - "param_bounds": [[0.3, 0.1, 1e-3, 0, 0, 0.01, 0.01, 0, -1.0, -1.0], - [3.0, 0.9, 2.0, 5.0, 5.0, 5.0, 5.0, 5.0, 1.0, 1.0]], + "params": [ + "a", + "z", + "t", + "tinit", + "dinit", + "tslope", + "dslope", + "tfixedp", + "tcoh", + "dcoh", + ], + "param_bounds": [ + [0.3, 0.1, 1e-3, 0, 0, 0.01, 0.01, 0, -1.0, -1.0], + [3.0, 0.9, 2.0, 5.0, 5.0, 5.0, 5.0, 5.0, 1.0, 1.0], + ], "params_trans": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "params_std_upper": [1.0, None, 1.0, 1.5, 1.5, 1.5, 1.5, 1.5, 1.0, 1.0], "params_default": [0.0, 0.0, 0.0, 1.0, 0.5, 0.5, 0.5, 1.0], - "hddm_include": ['a', 'z', 't', 'tinit', 'dinit', 'tslope', 'dslope', 'tfixedp', 'tcoh', 'dcoh'], + "hddm_include": [ + "a", + "z", + "t", + "tinit", + "dinit", + "tslope", + "dslope", + "tfixedp", + "tcoh", + "dcoh", + ], "boundary": bf.constant, "choices": [-1, 1], "slice_widhts": { @@ -324,13 +354,39 @@ }, "ds_conflict_drift_angle": { "doc": "Meant for use with LAN extension.", - "params": ['a', 'z', 't', 'tinit', 'dinit', 'tslope', 'dslope', 'tfixedp', 'tcoh', 'dcoh', 'angle'], - "param_bounds": [[0.3, 0.1, 1e-3, 0, 0, 0.01, 0.01, 0, -1.0, -1.0, -0.1], - [3.0, 0.9, 2.0, 5.0, 5.0, 5.0, 5.0, 5.0, 1.0, 1.0, 1.3]], + "params": [ + "a", + "z", + "t", + "tinit", + "dinit", + "tslope", + "dslope", + "tfixedp", + "tcoh", + "dcoh", + "angle", + ], + "param_bounds": [ + [0.3, 0.1, 1e-3, 0, 0, 0.01, 0.01, 0, -1.0, -1.0, -0.1], + [3.0, 0.9, 2.0, 5.0, 5.0, 5.0, 5.0, 5.0, 1.0, 1.0, 1.3], + ], "params_trans": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "params_std_upper": [1.0, None, 1.0, 1.5, 1.5, 1.5, 1.5, 1.5, 1.0, 1.0, 1.0], "params_default": [0.0, 0.0, 0.0, 1.0, 0.5, 0.5, 0.5, 1.0, 0.0], - "hddm_include": ['a', 'z', 't', 'tinit', 'dinit', 'tslope', 'dslope', 'tfixedp', 'tcoh', 'dcoh', 'theta'], + "hddm_include": [ + "a", + "z", + "t", + "tinit", + "dinit", + "tslope", + "dslope", + "tfixedp", + "tcoh", + "dcoh", + "theta", + ], "boundary": bf.angle, "choices": [-1, 1], "slice_widhts": { diff --git a/hddm/model_config_rl.py b/hddm/model_config_rl.py new file mode 100644 index 000000000..b2afae4c5 --- /dev/null +++ b/hddm/model_config_rl.py @@ -0,0 +1,20 @@ +import numpy as np + +model_config_rl = { + "RWupdate": { + "doc": "Rescorla-Wagner update rule.", + "params": ["rl_alpha"], + "params_trans": [0], + "params_std_upper": [None], + "param_bounds": [[0.0], [1.0]], + "params_default": [0.5], + }, + "RWupdate_dual": { + "doc": "Rescorla-Wagner update with two learning rates", + "params": ["rl_alpha", "rl_pos_alpha"], + "params_trans": [0, 0], + "params_std_upper": [None, None], + "param_bounds": [[0.0, 0.0], [1.0, 1.0]], + "params_default": [0.5, 0.5], + }, +} diff --git a/hddm/models/__init__.py b/hddm/models/__init__.py index 85b05679e..88f688e56 100644 --- a/hddm/models/__init__.py +++ b/hddm/models/__init__.py @@ -11,6 +11,7 @@ from .hddm_nn import HDDMnn from .hddm_nn_regression import HDDMnnRegressor from .hddm_nn_stimcoding import HDDMnnStimCoding +from .hddm_nn_rl import HDDMnnRL __all__ = [ "AccumulatorModel", @@ -26,4 +27,5 @@ "HDDMnn", "HDDMnnRegressor", "HDDMnnStimCoding", + "HDDMnnRL", ] diff --git a/hddm/models/base.py b/hddm/models/base.py index 41d0d2047..ac4897ef6 100644 --- a/hddm/models/base.py +++ b/hddm/models/base.py @@ -339,7 +339,7 @@ def objective(values): while inf_objective: values_iter += 1 values = original_values + np.random.randn(len(values)) * ( - 2 ** -values_iter + 2**-values_iter ) self.set_values(dict(list(zip(names, values)))) inf_objective = np.isinf(objective(values)) @@ -384,7 +384,7 @@ def _create_family_normal( name, value=0, g_mu=None, - g_tau=15 ** -2, + g_tau=15**-2, std_lower=1e-10, std_upper=100, std_value=0.1, @@ -443,7 +443,7 @@ def _create_family_normal( pm.Deterministic, "%s_tau" % name, doc="%s_tau" % name, - eval=lambda x: x ** -2, + eval=lambda x: x**-2, x=std, plot=False, trace=False, @@ -519,7 +519,7 @@ def _create_family_trunc_normal( pm.Deterministic, "%s_tau" % name, doc="%s_tau" % name, - eval=lambda x: x ** -2, + eval=lambda x: x**-2, x=std, plot=False, trace=False, @@ -584,7 +584,7 @@ def _create_family_trunc_normal_trunc_normal( pm.TruncatedNormal, "%s" % name, mu=g_mu, - tau=1 / (g_std ** 2), + tau=1 / (g_std**2), lower=lower, upper=upper, value=value, @@ -604,7 +604,7 @@ def _create_family_trunc_normal_trunc_normal( pm.Deterministic, "%s_tau" % name, doc="%s_tau" % name, - eval=lambda x: x ** -2, + eval=lambda x: x**-2, x=std, plot=False, trace=False, @@ -634,7 +634,7 @@ def _create_family_trunc_normal_trunc_normal( pm.TruncatedNormal, name, mu=g_mu, - tau=1 / (g_std ** 2), + tau=1 / (g_std**2), lower=lower, upper=upper, value=value, @@ -670,7 +670,7 @@ def _create_family_trunc_normal_trunc_normal_hnormal( pm.TruncatedNormal, "%s" % name, mu=g_mu, - tau=1 / (g_std ** 2), + tau=1 / (g_std**2), lower=lower, upper=upper, value=value, @@ -681,7 +681,7 @@ def _create_family_trunc_normal_trunc_normal_hnormal( std = Knode( pm.HalfNormal, "%s_std" % name, - tau=std_std ** -2, + tau=std_std**-2, value=std_value, depends=depends_std, ) @@ -689,7 +689,7 @@ def _create_family_trunc_normal_trunc_normal_hnormal( pm.Deterministic, "%s_tau" % name, doc="%s_tau" % name, - eval=lambda x: x ** -2, + eval=lambda x: x**-2, x=std, plot=False, trace=False, @@ -719,7 +719,7 @@ def _create_family_trunc_normal_trunc_normal_hnormal( pm.TruncatedNormal, name, mu=g_mu, - tau=1 / (g_std ** 2), + tau=1 / (g_std**2), lower=lower, upper=upper, value=value, @@ -734,7 +734,7 @@ def _create_family_normal_non_centered( name, value=0, g_mu=None, - g_tau=15 ** -2, + g_tau=15**-2, std_lower=1e-10, std_upper=100, std_value=0.1, @@ -772,7 +772,7 @@ def _create_family_normal_non_centered( pm.Normal, "%s_offset_subj" % name, mu=0, - tau=5 ** -2, + tau=5**-2, value=0, depends=("subj_idx",), subj=True, @@ -816,7 +816,7 @@ def _create_family_invlogit( name, value, g_mu=None, - g_tau=15 ** -2, + g_tau=15**-2, std_std=0.2, std_value=0.1, lower=0.0, # previously the lower and upper arguments were not there ! @@ -879,7 +879,7 @@ def _create_family_invlogit( std = Knode( pm.HalfNormal, "%s_std" % name, - tau=std_std ** -2, + tau=std_std**-2, value=std_value, depends=depends_std, ) @@ -888,7 +888,7 @@ def _create_family_invlogit( pm.Deterministic, "%s_tau" % name, doc="%s_tau" % name, - eval=lambda x: x ** -2, + eval=lambda x: x**-2, x=std, plot=False, trace=False, @@ -975,7 +975,7 @@ def _create_family_exp( name, value=0, g_mu=None, - g_tau=15 ** -2, + g_tau=15**-2, std_lower=1e-10, std_upper=100, std_value=0.1, @@ -1027,7 +1027,7 @@ def _create_family_exp( tau = Knode( pm.Deterministic, "%s_tau" % name, - eval=lambda x: x ** -2, + eval=lambda x: x**-2, x=std, plot=False, trace=False, @@ -1090,7 +1090,7 @@ def _create_family_exp( return knodes def _create_family_normal_normal_hnormal( - self, name, value=0, g_mu=None, g_tau=15 ** -2, std_std=2, std_value=0.1 + self, name, value=0, g_mu=None, g_tau=15**-2, std_std=2, std_value=0.1 ): """Create a family of knodes. A family is a group of knodes that belong together. @@ -1137,7 +1137,7 @@ def _create_family_normal_normal_hnormal( std = Knode( pm.HalfNormal, "%s_std" % name, - tau=std_std ** -2, + tau=std_std**-2, value=std_value, depends=depends_std, ) @@ -1145,7 +1145,7 @@ def _create_family_normal_normal_hnormal( pm.Deterministic, "%s_tau" % name, doc="%s_tau" % name, - eval=lambda x: x ** -2, + eval=lambda x: x**-2, x=std, plot=False, trace=False, @@ -1194,8 +1194,8 @@ def _create_family_gamma_gamma_hnormal( # AF-Comment: previously std_std = 2, std_value = 0.1 --> inconsistent with paper ? knodes = OrderedDict() - g_shape = (g_mean ** 2) / (g_std ** 2) - g_rate = g_mean / (g_std ** 2) + g_shape = (g_mean**2) / (g_std**2) + g_rate = g_mean / (g_std**2) if self.is_group_model and name not in self.group_only_nodes: g = Knode( pm.Gamma, @@ -1210,7 +1210,7 @@ def _create_family_gamma_gamma_hnormal( std = Knode( pm.HalfNormal, "%s_std" % name, - tau=std_std ** -2, + tau=std_std**-2, value=std_value, depends=depends_std, ) @@ -1218,7 +1218,7 @@ def _create_family_gamma_gamma_hnormal( shape = Knode( pm.Deterministic, "%s_shape" % name, - eval=lambda x, y: (x ** 2) / (y ** 2), + eval=lambda x, y: (x**2) / (y**2), x=g, y=std, plot=False, @@ -1229,7 +1229,7 @@ def _create_family_gamma_gamma_hnormal( rate = Knode( pm.Deterministic, "%s_rate" % name, - eval=lambda x, y: x / (y ** 2), + eval=lambda x, y: x / (y**2), x=g, y=std, plot=False, @@ -1316,7 +1316,16 @@ def __init__( # Automate possible_parameters if self.nn: - possible_parameters = tuple(self.model_config["params"]) + ("p_outlier",) + if self.rlssm_model: + possible_parameters = ( + tuple(self.model_config["params"]) + + tuple(self.model_config_rl["params"]) + + ("p_outlier",) + ) + else: + possible_parameters = tuple(self.model_config["params"]) + ( + "p_outlier", + ) else: possible_parameters = ( "v", @@ -1396,19 +1405,26 @@ def _create_wfpt_parents_dict(self, knodes): ] ) - # Indirect regressors (this is used in HDDMnnRegressor) - if 'indirect_regressors' in self.model_config: - for tmp_param in self.model_config['indirect_regressors'].keys(): + if self.rlssm_model: + # RL model parameters + for tmp_param in self.model_config_rl["params"]: wfpt_parents[tmp_param] = ( knodes[tmp_param + "_bottom"] - ) + if tmp_param in self.include + else self.model_config_rl["params_default"][ + self.model_config_rl["params"].index(tmp_param) + ] + ) + + # Indirect regressors (this is used in HDDMnnRegressor) + if "indirect_regressors" in self.model_config: + for tmp_param in self.model_config["indirect_regressors"].keys(): + wfpt_parents[tmp_param] = knodes[tmp_param + "_bottom"] + + if "indirect_betas" in self.model_config: + for tmp_param in self.model_config["indirect_betas"].keys(): + wfpt_parents[tmp_param] = knodes[tmp_param + "_bottom"] - if 'indirect_betas' in self.model_config: - for tmp_param in self.model_config['indirect_betas'].keys(): - wfpt_parents[tmp_param] = ( - knodes[tmp_param + "_bottom"] - ) - wfpt_parents["p_outlier"] = ( knodes["p_outlier_bottom"] if "p_outlier" in self.include diff --git a/hddm/models/hddm_info.py b/hddm/models/hddm_info.py index 43d179bd1..7490335a4 100644 --- a/hddm/models/hddm_info.py +++ b/hddm/models/hddm_info.py @@ -119,8 +119,8 @@ def __init__(self, *args, **kwargs): param: 0.1 for param in self.model_config["params"] } - print(self.slice_widths) - + # print(self.slice_widths) + self.slice_widths["p_outlier"] = 1.0 else: @@ -152,10 +152,22 @@ def __init__(self, *args, **kwargs): def _create_stochastic_knodes(self, include): if self.nn: - if self.is_informative: - return self._create_stochastic_knodes_nn_info(include) + if self.rlssm_model: + if self.is_informative: + # return self._create_stochastic_knodes_nn_info(include) + raise NotImplementedError( + "Informative priors are not supported with LANs." + ) + else: + return self._create_stochastic_knodes_nn_rl_noninfo(include) else: - return self._create_stochastic_knodes_nn_noninfo(include) + if self.is_informative: + # return self._create_stochastic_knodes_nn_info(include) + raise NotImplementedError( + "Informative priors are not supported with LANs." + ) + else: + return self._create_stochastic_knodes_nn_noninfo(include) else: if self.is_informative: @@ -163,6 +175,97 @@ def _create_stochastic_knodes(self, include): else: return self._create_stochastic_knodes_noninfo(include) + def _create_stochastic_knodes_nn_rl_noninfo(self, include): + """Creates knodes for HDDMnnRL class. + + :Arguments: + include: list + List of all parameters to be included in the parameter recovery. + + :Returns: + kabuki node object + """ + + knodes = self._create_stochastic_knodes_nn_noninfo(include) + + for tmp_param in self.model_config_rl["params"]: + if tmp_param in include: + param_id = self.model_config_rl["params"].index(tmp_param) + + # Perform some checks on the model_config to see if all expected keys are included + # If not, choose reasonable defaults for some of them. + if not "params_trans" in self.model_config_rl.keys(): + trans = 0 + else: + trans = self.model_config_rl["params_trans"][param_id] + + if not "params_std_upper" in self.model_config_rl.keys(): + print( + "Supplied model_config does not have a params_std_upper argument." + ) + print("Set to a default of 10") + param_std_upper = 10 + elif self.model_config_rl["params_std_upper"][param_id] == None: + print( + "Supplied model_config specifies params_std_upper for ", + tmp_param, + "as ", + "None.", + ) + print("Changed to 10") + param_std_upper = 10 + else: + param_std_upper = self.model_config_rl["params_std_upper"][param_id] + + if not "params_default" in self.model_config_rl.keys(): + param_default = ( + self.model_config["param_bounds"][1][param_id] + - self.model_config_rl["param_bounds"][0][param_id] + ) / 2 + else: + param_default = self.model_config_rl["params_default"][param_id] + + # Add to knodes + if trans: + knodes.update( + self._create_family_invlogit( + tmp_param, + g_tau=10**-2, + std_std=0.5, + lower=self.model_config_rl["param_bounds"][0][param_id], + upper=self.model_config_rl["param_bounds"][1][param_id], + value=param_default, + ) + ) + else: + if self.non_centered: + print("Using non-centered distributions.") + knodes.update( + self._create_family_normal_non_centered( + tmp_param, + value=0, + g_mu=0.2, + g_tau=3**-2, + std_lower=1e-10, + std_upper=10, + std_value=0.1, + ) + ) + else: + knodes.update( + self._create_family_normal( + tmp_param, + value=0, + g_mu=0.2, + g_tau=3**-2, + std_lower=1e-10, + std_upper=10, + std_value=0.1, + ) + ) + + return knodes + def _create_stochastic_knodes_nn_noninfo(self, include): knodes = OrderedDict() @@ -187,14 +290,21 @@ def _create_stochastic_knodes_nn_noninfo(self, include): trans = 0 else: trans = self.model_config["params_trans"][param_id] - + if not "params_std_upper" in self.model_config.keys(): - print('Supplied model_config does not have a params_std_upper argument.') - print('Set to a default of 10') + print( + "Supplied model_config does not have a params_std_upper argument." + ) + print("Set to a default of 10") param_std_upper = 10 elif self.model_config["params_std_upper"][param_id] == None: - print('Supplied model_config specifies params_std_upper for ', tmp_param, 'as ', 'None.') - print('Changed to 10') + print( + "Supplied model_config specifies params_std_upper for ", + tmp_param, + "as ", + "None.", + ) + print("Changed to 10") param_std_upper = 10 else: param_std_upper = self.model_config["params_std_upper"][param_id] @@ -212,7 +322,7 @@ def _create_stochastic_knodes_nn_noninfo(self, include): knodes.update( self._create_family_invlogit( tmp_param, - g_tau=10 ** -2, + g_tau=10**-2, std_std=0.5, lower=self.model_config["param_bounds"][0][param_id], upper=self.model_config["param_bounds"][1][param_id], @@ -260,12 +370,19 @@ def _create_stochastic_knodes_nn_info(self, include): trans = self.model_config["params_trans"][param_id] if not "params_std_upper" in self.model_config.keys(): - print('Supplied model_config does not have a params_std_upper argument.') - print('Set to a default of 10') + print( + "Supplied model_config does not have a params_std_upper argument." + ) + print("Set to a default of 10") param_std_upper = 10 elif self.model_config["params_std_upper"][param_id] == None: - print('Supplied model_config specifies params_std_upper for ', tmp_param, 'as ', 'None.') - print('Changed to 10') + print( + "Supplied model_config specifies params_std_upper for ", + tmp_param, + "as ", + "None.", + ) + print("Changed to 10") param_std_upper = 10 else: param_std_upper = self.model_config["params_std_upper"][param_id] @@ -282,7 +399,7 @@ def _create_stochastic_knodes_nn_info(self, include): knodes.update( self._create_family_invlogit( tmp_param, - g_tau=10 ** -2, + g_tau=10**-2, std_std=0.5, lower=self.model_config["param_bounds"][0][param_id], upper=self.model_config["param_bounds"][1][param_id], @@ -312,7 +429,7 @@ def _create_stochastic_knodes_info(self, include): if "v" in include: knodes.update( self._create_family_normal_normal_hnormal( - "v", value=2, g_mu=2, g_tau=3 ** -2, std_std=2 + "v", value=2, g_mu=2, g_tau=3**-2, std_std=2 ) ) if "t" in include: @@ -323,7 +440,7 @@ def _create_stochastic_knodes_info(self, include): ) if "sv" in include: knodes["sv_bottom"] = Knode( - pm.HalfNormal, "sv", tau=2 ** -2, value=1, depends=self.depends["sv"] + pm.HalfNormal, "sv", tau=2**-2, value=1, depends=self.depends["sv"] ) if "sz" in include: knodes["sz_bottom"] = Knode( @@ -333,14 +450,14 @@ def _create_stochastic_knodes_info(self, include): knodes["st_bottom"] = Knode( pm.HalfNormal, "st", - tau=0.3 ** -2, + tau=0.3**-2, value=0.001, depends=self.depends["st"], ) if "z" in include: knodes.update( self._create_family_invlogit( - "z", value=0.5, g_tau=0.5 ** -2, std_std=0.05 + "z", value=0.5, g_tau=0.5**-2, std_std=0.05 ) ) if "p_outlier" in include: @@ -364,7 +481,7 @@ def _create_stochastic_knodes_noninfo(self, include): if "v" in include: knodes.update( self._create_family_normal_normal_hnormal( - "v", value=0, g_tau=50 ** -2, std_std=10 + "v", value=0, g_tau=50**-2, std_std=10 ) ) if "t" in include: @@ -396,7 +513,7 @@ def _create_stochastic_knodes_noninfo(self, include): if "z" in include: knodes.update( self._create_family_invlogit( - "z", value=0.5, g_tau=10 ** -2, std_std=0.5 + "z", value=0.5, g_tau=10**-2, std_std=0.5 ) ) if "p_outlier" in include: diff --git a/hddm/models/hddm_nn.py b/hddm/models/hddm_nn.py index da3a5689f..fa750ec78 100644 --- a/hddm/models/hddm_nn.py +++ b/hddm/models/hddm_nn.py @@ -146,7 +146,7 @@ def __init__(self, *args, **kwargs): except: print( "It seems that you supplied a model string that refers to an undefined model." - + "This works only if you supply a custom model_config dictionionary." + + "This works only if you supply a custom model_config dictionary." ) if self.network is None: @@ -186,22 +186,24 @@ def _create_wfpt_knode(self, knodes): def __getstate__(self): d = super(HDDMnn, self).__getstate__() - #del d["network"] # del + # del d["network"] # del # temporary del d["wfpt_nn"] return d def __setstate__(self, d): - #print(d) + # print(d) - #print(d["network"]) # del - #d["network"] = load_torch_mlp(model=d["model"]) # del + # print(d["network"]) # del + # d["network"] = load_torch_mlp(model=d["model"]) # del # temporary network_dict = {"network": d["network"]} d["wfpt_nn"] = hddm.likelihoods_mlp.make_mlp_likelihood( - model=d["model"], model_config=d["model_config"], - wiener_params = d['wiener_params'], **network_dict + model=d["model"], + model_config=d["model_config"], + wiener_params=d["wiener_params"], + **network_dict ) super(HDDMnn, self).__setstate__(d) diff --git a/hddm/models/hddm_nn_regression.py b/hddm/models/hddm_nn_regression.py index dfe14bc38..f8c02d03b 100644 --- a/hddm/models/hddm_nn_regression.py +++ b/hddm/models/hddm_nn_regression.py @@ -12,6 +12,7 @@ + "classes will not work" ) + class HDDMnnRegressor(HDDMRegressor): """HDDMnnRegressor allows estimation of the NNDDM where parameter values are linear models of a covariate (e.g. a brain measure like @@ -117,11 +118,11 @@ def __init__( print( "It seems that you supplied a model string that refers to an undefined model" ) - + # Add indirect_regressors to model_config, if they were supplied self._add_indirect_regressors(indirect_regressors=indirect_regressors) - # Add indirect betas to model_config, if they were supplied + # Add indirect betas to model_config, if they were supplied self._add_indirect_betas(indirect_betas=indirect_betas) if self.network is None: @@ -155,44 +156,55 @@ def _create_wfpt_knode(self, knodes): self.wfpt_nn_reg_class, "wfpt", observed=True, - col_name=["response", "rt"] + self.model_config['likelihood_relevant_covariates'], + col_name=["response", "rt"] + + self.model_config["likelihood_relevant_covariates"], reg_outcomes=self.reg_outcomes, **wfpt_parents ) - def _add_indirect_betas(self, indirect_betas = None): - self.model_config['likelihood_relevant_covariates'] = [] + def _add_indirect_betas(self, indirect_betas=None): + self.model_config["likelihood_relevant_covariates"] = [] if indirect_betas is not None: - assert type(indirect_betas) == dict, 'indirect parameters is supplied, but is not a dictionary' - self.model_config['indirect_betas'] = indirect_betas + assert ( + type(indirect_betas) == dict + ), "indirect parameters is supplied, but is not a dictionary" + self.model_config["indirect_betas"] = indirect_betas relevant_covariates = [] for indirect_beta_tmp in indirect_betas.keys(): - for linked_covariate_tmp in indirect_betas[indirect_beta_tmp]['links_to'].keys(): - tmp = indirect_betas[indirect_beta_tmp]['links_to'][linked_covariate_tmp] - + for linked_covariate_tmp in indirect_betas[indirect_beta_tmp][ + "links_to" + ].keys(): + tmp = indirect_betas[indirect_beta_tmp]["links_to"][ + linked_covariate_tmp + ] + if tmp in relevant_covariates: pass else: relevant_covariates.append(tmp) - - self.model_config['likelihood_relevant_covariates'] = relevant_covariates - def _add_indirect_regressors(self, indirect_regressors = None): + self.model_config["likelihood_relevant_covariates"] = relevant_covariates + + def _add_indirect_regressors(self, indirect_regressors=None): if indirect_regressors is not None: - assert type(indirect_regressors) == dict, 'indirect_regressors is supplied, but not as a dictionary' - self.model_config['indirect_regressors'] = indirect_regressors + assert ( + type(indirect_regressors) == dict + ), "indirect_regressors is supplied, but not as a dictionary" + self.model_config["indirect_regressors"] = indirect_regressors # Compute all indirect regressor targets indirect_regressor_targets = [] - for indirect_regressor in self.model_config['indirect_regressors'].keys(): - for target_tmp in self.model_config['indirect_regressors'][indirect_regressor]['links_to']: + for indirect_regressor in self.model_config["indirect_regressors"].keys(): + for target_tmp in self.model_config["indirect_regressors"][ + indirect_regressor + ]["links_to"]: indirect_regressor_targets.append(target_tmp) - self.model_config['indirect_regressor_targets'] = indirect_regressor_targets - #print('Indirect regressor targets: ', self.model_config['indirect_regressor_targets']) - + self.model_config["indirect_regressor_targets"] = indirect_regressor_targets + # print('Indirect regressor targets: ', self.model_config['indirect_regressor_targets']) + # May need debugging --> set_state(), get_state() def __getstate__(self): d = super(HDDMnnRegressor, self).__getstate__() @@ -205,8 +217,10 @@ def __setstate__(self, d): network_dict = {"network": d["network"]} d["wfpt_nn_reg_class"] = hddm.likelihoods_mlp.make_mlp_likelihood_reg( - model=d["model"], model_config = d["model_config"], - wiener_params = d['wiener_params'], **network_dict + model=d["model"], + model_config=d["model_config"], + wiener_params=d["wiener_params"], + **network_dict ) super(HDDMnnRegressor, self).__setstate__(d) diff --git a/hddm/models/hddm_nn_rl.py b/hddm/models/hddm_nn_rl.py new file mode 100644 index 000000000..b48b96f86 --- /dev/null +++ b/hddm/models/hddm_nn_rl.py @@ -0,0 +1,174 @@ +""" +""" +import numpy as np +import hddm +from kabuki.hierarchical import ( + Knode, +) + +# from kabuki.utils import stochastic_from_dist +from hddm.models import HDDMnn +from copy import deepcopy + +try: + from hddm.torch.mlp_inference_class import load_torch_mlp +except: + print( + "It seems that you do not have pytorch installed." + + "The HDDMnn, HDDMnnRL, HDDMnnRegressor and HDDMnnStimCoding" + + "classes will not work" + ) + + +class HDDMnnRL(HDDMnn): + """HDDMnn model class that uses neural network based likelihoods in conjuction with RL rules. + + :Arguments: + data: pandas.DataFrame + Input data with a row for each trial. + + Must contain the following columns: + * 'rt': Reaction time of trial in seconds. + * 'response': Binary response (e.g. 0->error, 1->correct) + * 'subj_idx': A unique ID (int) of each subject. + * Other user-defined columns that can be used in depends_on keyword. + + :Optional: + + model: str + String that determines which sequential sampling model you would like to fit your data to. + Currently available models are: 'ddm', 'full_ddm', 'angle', 'weibull', 'ornstein', 'levy' + + rl_rule: str + String that determines which reinforcement learning model you would like to fit your data to. + + include: list + A list with parameters we wish to include in the fitting procedure. + Which parameters you can include depends on the model you specified under the model parameters. + + non_centered: bool + Denotes whether non-centered distributions (a form of re-parameterization) should be used for reinforcement learning parameters. + + informative : bool + Whether to use informative priors (True) or vague priors + (False). Informative priors are not yet implemented for neural network based + models. + + is_group_model : bool + If True, this results in a hierarchical + model with separate parameter distributions for each + subject. The subject parameter distributions are + themselves distributed according to a group parameter + distribution. + + p_outlier : double (default=0.05) + The probability of outliers in the data. if p_outlier is passed in the + 'include' argument, then it is estimated from the data and the value passed + using the p_outlier argument is ignored. + + + + :Example: + >>> m = hddm.HDDMnnRL(data, model='angle', rl_rule='RWupdate', include=['z', 'theta', 'rl_alpha'], p_outlier = 0.0) + >>> m.sample(2000, burn=1000, dbname='traces.db', db='pickle') + + """ + + def __init__(self, *args, **kwargs): + self.rlssm_model = True + + self.model = kwargs.pop("model", "ddm") + self.rl_rule = kwargs.pop("rl_rule", "RWupdate") + self.model_config = kwargs.pop("model_config", None) + self.non_centered = kwargs.pop("non_centered", False) + + print("\nPrinting model specifications -- ") + print("ssm: ", self.model) + print("rl rule: ", self.rl_rule) + print("using non-centered dist.: ", self.non_centered) + + self.model_config_rl = kwargs.pop("model_config_rl", None) + if self.model_config_rl == None: + try: + self.model_config_rl = deepcopy( + hddm.model_config_rl.model_config_rl[self.rl_rule] + ) + except: + print( + "It seems that you supplied a model string that refers to an undefined model." + + "This works only if you supply a custom model_config_rl dictionary." + ) + + if self.model_config == None: + try: + self.model_config = deepcopy(hddm.model_config.model_config[self.model]) + except: + print( + "It seems that you supplied a model string that refers to an undefined model." + + "This works only if you supply a custom model_config dictionary." + ) + + self.network = load_torch_mlp(model=self.model) + + kwargs_dict = {"network": self.network} + + if not "wiener_params" in kwargs.keys(): + kwargs["wiener_params"] = { + "err": 1e-4, + "n_st": 2, + "n_sz": 2, + "use_adaptive": 1, + "simps_err": 1e-3, + "w_outlier": 0.1, + } + + self.wfpt_nn_rlssm = hddm.likelihoods_mlp.make_mlp_likelihood_rlssm( + model=self.model, + model_config=self.model_config, + model_config_rl=self.model_config_rl, + wiener_params=kwargs["wiener_params"], + **kwargs_dict + ) + + # Initialize super class + super(HDDMnnRL, self).__init__( + model=self.model, + network=self.network, + non_centered=self.non_centered, + *args, + **kwargs + ) + + def _create_wfpt_parents_dict(self, knodes): + wfpt_parents = super(HDDMnnRL, self)._create_wfpt_parents_dict(knodes) + + return wfpt_parents + + def _create_wfpt_knode(self, knodes): + wfpt_parents = self._create_wfpt_parents_dict(knodes) + + return Knode( + self.wfpt_nn_rlssm, + "wfpt", + observed=True, + col_name=["split_by", "feedback", "response", "rt", "q_init"], + **wfpt_parents + ) + + def __getstate__(self): + d = super(HDDMnnRL, self).__getstate__() + del d["wfpt_nn_rlssm"] + + return d + + def __setstate__(self, d): + network_dict = {"network": d["network"]} + d["wfpt_nn_rlssm"] = hddm.likelihoods_mlp.make_mlp_likelihood_rlssm( + model=d["model"], + model_config=d["model_config"], + model_config_rl=d["model_config_rl"], + wiener_params=d["wiener_params"], + **network_dict + ) + + super(HDDMnnRL, self).__setstate__(d) diff --git a/hddm/models/hddm_nn_stimcoding.py b/hddm/models/hddm_nn_stimcoding.py index 9eb6ec883..914d28810 100644 --- a/hddm/models/hddm_nn_stimcoding.py +++ b/hddm/models/hddm_nn_stimcoding.py @@ -145,5 +145,5 @@ def __setstate__(self, d): d["wfpt_nn"] = hddm.likelihoods_mlp.make_mlp_likelihood( model=d["model"], **network_dict ) - + super(HDDMnnStimCoding, self).__setstate__(d) diff --git a/hddm/models/hddm_regression.py b/hddm/models/hddm_regression.py index 171014295..83b0f0d52 100644 --- a/hddm/models/hddm_regression.py +++ b/hddm/models/hddm_regression.py @@ -26,10 +26,7 @@ def generate_wfpt_reg_stochastic_class( - wiener_params=None, - sampling_method="cdf", - cdf_range=(-5, 5), - sampling_dt=1e-4 + wiener_params=None, sampling_method="cdf", cdf_range=(-5, 5), sampling_dt=1e-4 ): # set wiener_params @@ -135,7 +132,7 @@ class KnodeRegress(kabuki.hierarchical.Knode): def __init__(self, *args, **kwargs): # Whether or not to keep regressor trace self.keep_regressor_trace = kwargs.pop("keep_regressor_trace", False) - + # Initialize kabuki.hierarchical.Knode super(KnodeRegress, self).__init__(*args, **kwargs) @@ -154,18 +151,18 @@ def create_node(self, name, kwargs, data): def func( args, design_matrix=dmatrix( - reg["model"], - data=self.data, # Note: data is hardcoded here - return_type="dataframe", - NA_action="raise" + reg["model"], + data=self.data, # Note: data is hardcoded here + return_type="dataframe", + NA_action="raise", ), link_func=reg["link_func"], - #knode_data=data, AF-NOTE: I think this can be dropped + # knode_data=data, AF-NOTE: I think this can be dropped ): # Convert parents to matrix params = np.matrix(args) design_matrix = design_matrix.loc[data.index] - + # Apply design matrix to input data if design_matrix.shape[1] != params.shape[1]: raise NotImplementedError( @@ -181,6 +178,7 @@ def func( func, kwargs["doc"], name, parents=parents, trace=self.keep_regressor_trace ) + class HDDMRegressor(HDDM): """HDDMRegressor allows estimation of the DDM where parameter values are linear models of a covariate (e.g. a brain measure like @@ -258,11 +256,12 @@ def __init__( set() ) # holds all the parameters that are going to modeled as outcome of regression models - kwargs["group_only_nodes"] = self._prepare_model_descriptors(data = data, - models = models, - group_only_regressors=group_only_regressors, - group_only_nodes=group_only_nodes - ) + kwargs["group_only_nodes"] = self._prepare_model_descriptors( + data=data, + models=models, + group_only_regressors=group_only_regressors, + group_only_nodes=group_only_nodes, + ) # set wfpt_reg_class self.wfpt_reg_class = deepcopy(wfpt_reg_like) @@ -284,12 +283,10 @@ def __getstate__(self): def __setstate__(self, d): d["wfpt_reg_class"] = deepcopy(wfpt_reg_like) super(HDDMRegressor, self).__setstate__(d) - - def _prepare_model_descriptors(self, - data = None, - models = None, - group_only_regressors = True, - group_only_nodes = None): + + def _prepare_model_descriptors( + self, data=None, models=None, group_only_regressors=True, group_only_nodes=None + ): self.model_descrs = [] group_only_nodes_tmp = deepcopy(group_only_nodes) # Cycle through list of regression models supplied @@ -309,14 +306,14 @@ def _prepare_model_descriptors(self, # Find separator separator = model_str.find("~") assert separator != -1, "No outcome variable specified." - + # Separate model string into outcome and model outcome = model_str[:separator].strip(" ") model_stripped = model_str[(separator + 1) :] - + # Add outcome to reg_outcomes self.reg_outcomes.add(outcome) - + # Get covariate names from patsys dmatrix covariates = dmatrix(model_stripped, data).design_info.column_names @@ -356,15 +353,18 @@ def _create_stochastic_knodes(self, include): ) # Indirect beta parameters - if ('indirect_betas' in self.model_config): - for beta_tmp in self.model_config['indirect_betas'].keys(): - assert beta_tmp not in self.model_config["params"], 'Naming conflict:' + \ - 'beta_tmp ' + ' is ' + beta_tmp + ', but the parameter is already used as a' + \ - 'basic model parameter!' - print('making indirect betas knode: ', beta_tmp) - knodes.update( - self._create_family_normal(beta_tmp, value = 0.0) + if "indirect_betas" in self.model_config: + for beta_tmp in self.model_config["indirect_betas"].keys(): + assert beta_tmp not in self.model_config["params"], ( + "Naming conflict:" + + "beta_tmp " + + " is " + + beta_tmp + + ", but the parameter is already used as a" + + "basic model parameter!" ) + print("making indirect betas knode: ", beta_tmp) + knodes.update(self._create_family_normal(beta_tmp, value=0.0)) self.slice_widths[beta_tmp] = 0.05 @@ -376,12 +376,12 @@ def _create_stochastic_knodes(self, include): # create regressor params for reg in self.model_descrs: reg_parents = {} - + # Find intercept parameter intercept = ( np.asarray([param.find("Intercept") for param in reg["params"]]) != -1 ) - + # If no intercept specified (via 0 + C()) assume all C() are different conditions # -> all are intercepts if not np.any(intercept): @@ -420,22 +420,38 @@ def _create_stochastic_knodes(self, include): if self.nn: # If our current parameter is a indirect regressor we apply appropriate settings - if ('indirect_regressors' in self.model_config) and (param_lookup in self.model_config['indirect_regressors']): + if ("indirect_regressors" in self.model_config) and ( + param_lookup in self.model_config["indirect_regressors"] + ): is_indirect_regressor = 1 trans = 0 - param_lower = self.model_config['indirect_regressors'][param_lookup]['param_bounds'][0] - param_upper = self.model_config['indirect_regressors'][param_lookup]['param_bounds'][1] + param_lower = self.model_config["indirect_regressors"][ + param_lookup + ]["param_bounds"][0] + param_upper = self.model_config["indirect_regressors"][ + param_lookup + ]["param_bounds"][1] param_std_upper = 10 - - if 'default_value' in self.model_config['indirect_regressors'][param_lookup]: - default_val = self.model_config['indirect_regressors'][param_lookup]['default_value'] + + if ( + "default_value" + in self.model_config["indirect_regressors"][ + param_lookup + ] + ): + default_val = self.model_config["indirect_regressors"][ + param_lookup + ]["default_value"] else: - default_val = (param_upper - param_lower) / 2 - + default_val = (param_upper - param_lower) / 2 + # If our current parameter is a normal regressor we apply appropriate settings else: - if ('indirect_regressors' in self.model_config) and (param_lookup in self.model_config['indirect_regressor_targets']): - # If the current parameter is targeted by an indirect regressor, + if ("indirect_regressors" in self.model_config) and ( + param_lookup + in self.model_config["indirect_regressor_targets"] + ): + # If the current parameter is targeted by an indirect regressor, # we need to apply special bounds, and it is not obvious which ones makes sense # AF-TODO: Make this a bit more adaptive is_indirect_regressor_target = 1 @@ -444,9 +460,7 @@ def _create_stochastic_knodes(self, include): param_std_upper = 10 default_val = 0.0 - param_id = self.model_config["params"].index( - param_lookup - ) + param_id = self.model_config["params"].index(param_lookup) trans = self.model_config["params_trans"][param_id] if trans and (not is_indirect_regressor_target): @@ -461,24 +475,34 @@ def _create_stochastic_knodes(self, include): ] if not "params_std_upper" in self.model_config.keys(): - print('Supplied model_config does not have a params_std_upper argument.') - print('Set to a default of 10') + print( + "Supplied model_config does not have a params_std_upper argument." + ) + print("Set to a default of 10") param_std_upper = 10 - elif self.model_config[ - "params_std_upper" - ][param_id] == None: - print('Supplied model_config specifies params_std_upper for ', param, 'as ', 'None.') - print('Changed to 10') + elif ( + self.model_config["params_std_upper"][param_id] + == None + ): + print( + "Supplied model_config specifies params_std_upper for ", + param, + "as ", + "None.", + ) + print("Changed to 10") param_std_upper = 10 else: param_std_upper = self.model_config[ "params_std_upper" ][param_id] elif trans and is_indirect_regressor_target: - raise ValueError('Target to an indirect regressor is specified as parameter to transform for sampling. This is not allowed. \n' + \ - 'Please make sure that the "trans" value for all targets to indirect regressors is set to 0') + raise ValueError( + "Target to an indirect regressor is specified as parameter to transform for sampling. This is not allowed. \n" + + 'Please make sure that the "trans" value for all targets to indirect regressors is set to 0' + ) - elif param_lookup == "z": + elif param_lookup == "z": trans = 1 # Used if link is not identity @@ -490,7 +514,11 @@ def _create_stochastic_knodes(self, include): # If parameter is transformed and link function is identity --> apply usual prior # If parameter is not transformed --> apply usual prior # (Parameter should not be a indirect regressor, and not be the target of an indirect regressor for this) - if ((trans and link_is_identity) or (not trans)) and (not is_indirect_regressor) and (not is_indirect_regressor_target): + if ( + ((trans and link_is_identity) or (not trans)) + and (not is_indirect_regressor) + and (not is_indirect_regressor_target) + ): reg_family = super( HDDMRegressor, self )._create_stochastic_knodes([param_lookup]) @@ -509,9 +537,9 @@ def _create_stochastic_knodes(self, include): reg_family = self._create_family_normal( param_lookup, - value = default_val, - std_lower = 1e-10, - std_upper = param_std_upper, + value=default_val, + std_lower=1e-10, + std_upper=param_std_upper, g_mu=0, g_tau=15**-2, ) @@ -530,7 +558,7 @@ def _create_stochastic_knodes(self, include): param_lookup = param reg_parents[param] = reg_family["%s_bottom" % param_lookup] - + # AF-NOTE: BUG ? # reg will never be in self.group_only_nodes.... if reg not in self.group_only_nodes: @@ -558,6 +586,7 @@ def _create_stochastic_knodes(self, include): return knodes + # Some standard link functions def id_link(x): return x diff --git a/hddm/models/hddm_rl.py b/hddm/models/hddm_rl.py index fa861714e..e157ceb9d 100644 --- a/hddm/models/hddm_rl.py +++ b/hddm/models/hddm_rl.py @@ -33,7 +33,7 @@ def _create_stochastic_knodes(self, include): "alpha", value=0, g_mu=0.2, - g_tau=3 ** -2, + g_tau=3**-2, std_lower=1e-10, std_upper=10, std_value=0.1, @@ -45,7 +45,7 @@ def _create_stochastic_knodes(self, include): "pos_alpha", value=0, g_mu=0.2, - g_tau=3 ** -2, + g_tau=3**-2, std_lower=1e-10, std_upper=10, std_value=0.1, @@ -58,7 +58,7 @@ def _create_stochastic_knodes(self, include): "alpha", value=0, g_mu=0.2, - g_tau=3 ** -2, + g_tau=3**-2, std_lower=1e-10, std_upper=10, std_value=0.1, @@ -70,7 +70,7 @@ def _create_stochastic_knodes(self, include): "pos_alpha", value=0, g_mu=0.2, - g_tau=3 ** -2, + g_tau=3**-2, std_lower=1e-10, std_upper=10, std_value=0.1, diff --git a/hddm/models/hddm_rl_regression.py b/hddm/models/hddm_rl_regression.py index aaaf51aa5..46c335f22 100644 --- a/hddm/models/hddm_rl_regression.py +++ b/hddm/models/hddm_rl_regression.py @@ -289,7 +289,7 @@ def _create_stochastic_knodes_rl(self, include): if "alpha" in include: knodes.update( self._create_family_normal_normal_hnormal( - "alpha", value=0, g_tau=50 ** -2, std_std=10 + "alpha", value=0, g_tau=50**-2, std_std=10 ) ) return knodes diff --git a/hddm/models/hddm_stimcoding.py b/hddm/models/hddm_stimcoding.py index 14b6c13e0..7e5c67e2d 100644 --- a/hddm/models/hddm_stimcoding.py +++ b/hddm/models/hddm_stimcoding.py @@ -61,7 +61,7 @@ def _create_stochastic_knodes(self, include): # Add drift-criterion parameter knodes.update( self._create_family_normal_normal_hnormal( - "dc", value=0, g_mu=0, g_tau=3 ** -2, std_std=2 + "dc", value=0, g_mu=0, g_tau=3**-2, std_std=2 ) ) diff --git a/hddm/models/rl.py b/hddm/models/rl.py index 2bd158316..1331a3bf2 100644 --- a/hddm/models/rl.py +++ b/hddm/models/rl.py @@ -42,7 +42,7 @@ def _create_stochastic_knodes(self, include): "alpha", value=0, g_mu=0.2, - g_tau=3 ** -2, + g_tau=3**-2, std_lower=1e-10, std_upper=10, std_value=0.1, @@ -54,7 +54,7 @@ def _create_stochastic_knodes(self, include): "pos_alpha", value=0, g_mu=0.2, - g_tau=3 ** -2, + g_tau=3**-2, std_lower=1e-10, std_upper=10, std_value=0.1, @@ -67,7 +67,7 @@ def _create_stochastic_knodes(self, include): "alpha", value=0, g_mu=0.2, - g_tau=3 ** -2, + g_tau=3**-2, std_lower=1e-10, std_upper=10, std_value=0.1, @@ -79,7 +79,7 @@ def _create_stochastic_knodes(self, include): "pos_alpha", value=0, g_mu=0.2, - g_tau=3 ** -2, + g_tau=3**-2, std_lower=1e-10, std_upper=10, std_value=0.1, diff --git a/hddm/plotting.py b/hddm/plotting.py index a36a79841..0aac47dea 100644 --- a/hddm/plotting.py +++ b/hddm/plotting.py @@ -1,9 +1,12 @@ from hddm.simulators import * +from hddm.generate import * +from hddm.utils import * import numpy as np import matplotlib.pyplot as plt from matplotlib.lines import Line2D import seaborn as sns +import arviz as az import os import warnings @@ -12,6 +15,8 @@ # import hddm import pandas as pd +from tqdm import tqdm +import pymc from kabuki.analyze import _post_pred_generate, _parents_to_random_posterior_sample from statsmodels.distributions.empirical_distribution import ECDF @@ -832,7 +837,7 @@ def _plot_func_posterior_node_from_sim( if n_choices == 2: rt_dat = data_tmp.copy() if np.sum(rt_dat.rt < 0) == 0: - if ("response" in rt_dat.columns): + if "response" in rt_dat.columns: rt_dat.loc[rt_dat.response != 1, "rt"] = (-1) * rt_dat.rt[ rt_dat.response != 1 ].values @@ -1270,10 +1275,10 @@ def _add_model_cartoon_to_ax( or tmp_model == "full_ddm" or tmp_model == "ddm_vanilla" or tmp_model == "full_ddm_vanilla" - ): + ): b = sample.a.values[0] * np.ones(t_s.shape[0]) - if 'vanilla' in tmp_model: + if "vanilla" in tmp_model: b = (sample.a.values[0] / 2) * np.ones(t_s.shape[0]) # MAKE SLOPES (VIA TRAJECTORIES HERE --> RUN NOISE FREE SIMULATIONS)! @@ -1290,9 +1295,9 @@ def _add_model_cartoon_to_ax( tmp_traj = out[2]["trajectory"] maxid = np.minimum(np.argmax(np.where(tmp_traj > -999)), t_s.shape[0]) - if 'vanilla' in tmp_model: + if "vanilla" in tmp_model: a_tmp = sample.a.values[0] / 2 - tmp_traj = tmp_traj - a_tmp #+ (a_tmp * sample.z.values[0]) + tmp_traj = tmp_traj - a_tmp # + (a_tmp * sample.z.values[0]) # Upper bound axis.plot( @@ -1638,6 +1643,7 @@ def _plot_func_model_n( loc=legend_location, ) + def _add_model_n_cartoon_to_ax( sample=None, axis=None, @@ -1995,4 +2001,433 @@ def plot_caterpillar( for x in format ] - plt.show() \ No newline at end of file + plt.show() + + +""" +=== RLSSM functions === +""" + + +def get_mean_correct_responses_rlssm(trials, nbins, data): + """Gets the mean proportion of correct responses condition-wise. + + Arguments: + trials: int + Number of initial trials to consider for computing proportion of correct responses. + + nbins: int + Number of bins to put the trials into (Num. of trials per bin = trials/nbin). + + data: pandas.DataFrame + Pandas DataFrame for the observed or simulated data. + + Return: + mean_correct_responses: dict + Dictionary of conditions containing proportion of mean correct responses (for each bin). + up_err: dict + Dictionary of conditions containing upper intervals of HDI of mean correct responses (for each bin). + low_err: dict + Dictionary of conditions containing lower intervals of HDI of mean correct responses (for each bin). + """ + + data_ppc = data[data.trial <= trials].copy() + data_ppc.loc[data_ppc["response"] < 1, "response"] = 0 + + data_ppc["bin_trial"] = np.array( + pd.cut(data_ppc.trial, nbins, labels=np.linspace(0, nbins, nbins)) + ) + + sums = data_ppc.groupby(["bin_trial", "split_by", "trial"]).mean().reset_index() + + ppc_sim = sums.groupby(["bin_trial", "split_by"]).mean().reset_index() + + # initiate columns that will have the upper and lower bound of the hpd + ppc_sim["upper_hpd"] = 0 + ppc_sim["lower_hpd"] = 0 + for i in range(0, ppc_sim.shape[0]): + # calculate the hpd/hdi of the predicted mean responses across bin_trials + hdi = pymc.utils.hpd( + sums.response[ + (sums["bin_trial"] == ppc_sim.bin_trial[i]) + & (sums["split_by"] == ppc_sim.split_by[i]) + ], + alpha=0.05, + ) + ppc_sim.loc[i, "upper_hpd"] = hdi[1] + ppc_sim.loc[i, "lower_hpd"] = hdi[0] + + # calculate error term as the distance from upper bound to mean + ppc_sim["up_err"] = ppc_sim["upper_hpd"] - ppc_sim["response"] + ppc_sim["low_err"] = ppc_sim["response"] - ppc_sim["lower_hpd"] + + mean_correct_responses = {} + up_err = {} + low_err = {} + for cond in np.unique(ppc_sim.split_by): + mean_correct_responses[cond] = ppc_sim[ppc_sim.split_by == cond]["response"] + up_err[cond] = ppc_sim[ppc_sim.split_by == cond]["up_err"] + low_err[cond] = ppc_sim[ppc_sim.split_by == cond]["low_err"] + + return mean_correct_responses, up_err, low_err + + +def gen_ppc_rlssm( + model_ssm, + config_ssm, + model_rl, + config_rl, + data, + traces, + nsamples, + p_lower, + p_upper, + save_data=False, + save_name=None, + save_path=None, +): + """Generates data (for posterior predictives) using samples from the given trace as parameters. + + Arguments: + model_ssm: str + Name of the sequential sampling model used. + + config_ssm: dict + Config dictionary for the specified sequential sampling model. + + model_rl: str + Name of the reinforcement learning model used. + + config_rl: dict + Config dictionary for the specified reinforcement learning model. + + data: pandas.DataFrame + Pandas DataFrame for the observed data. + + traces: pandas.DataFrame + Pandas DataFrame containing the traces. + + nsamples: int + Number of posterior samples to draw for each subject. + + p_lower: dict + Dictionary of conditions containing the probability of reward for the lower choice/action in the 2-armed bandit task. + + p_upper: dict + Dictionary of conditions containing the probability of reward for the upper choice/action in the 2-armed bandit task. + + save_data: bool + Boolean denoting whether to save the data as csv. + + save_name: str + Specifies filename to save the data. + + save_path: str + Specifies path to save the data. + + + Return: + ppc_sdata: pandas.DataFrame + Pandas DataFrame containing the simulated data (for posterior predictives). + """ + + def transform_param(param, param_val): + if param == "rl_alpha": + transformed_param_val = np.exp(param_val) / (1 + np.exp(param_val)) + else: + transformed_param_val = param_val + + return transformed_param_val + + sim_data = pd.DataFrame() + + nsamples += 1 + for i in tqdm(range(1, nsamples)): + sample = np.random.randint(0, traces.shape[0] - 1) + + for subj in data.subj_idx.unique(): + sub_data = pd.DataFrame() + + for cond in np.unique(data.split_by): + + sampled_param_ssm = list() + for p in config_ssm["params"]: + p_val = traces.loc[sample, p + "_subj." + str(subj)] + p_val = transform_param(p, p_val) + sampled_param_ssm.append(p_val) + + sampled_param_rl = list() + for p in config_rl["params"]: + p_val = traces.loc[sample, p + "_subj." + str(subj)] + p_val = transform_param(p, p_val) + sampled_param_rl.append(p_val) + + cond_size = len( + data[ + (data["subj_idx"] == subj) & (data["split_by"] == cond) + ].trial.unique() + ) + ind_cond_data = gen_rand_rlssm_data_MAB_RWupdate( + model_ssm, + sampled_param_ssm, + sampled_param_rl, + size=cond_size, + p_lower=p_lower[cond], + p_upper=p_upper[cond], + subjs=1, + split_by=cond, + ) + + # append the conditions + #sub_data = sub_data.append([ind_cond_data], ignore_index=False) + sub_data = pd.concat([sub_data, ind_cond_data], ignore_index=False) + + # assign subj_idx + sub_data["subj_idx"] = subj + + # identify the simulated data + sub_data["samp"] = i + + # append data from each subject + #sim_data = sim_data.append(sub_data, ignore_index=True) + sim_data = pd.concat([sim_data, sub_data], ignore_index=True) + + ppc_sdata = sim_data[ + ["subj_idx", "response", "split_by", "rt", "trial", "feedback", "samp"] + ].copy() + + if save_data: + if save_name is None: + save_name = "ppc_data" + if save_path is None: + save_path = "." + ppc_sdata.to_csv("%s.%s" % (os.path.join(save_path, save_name), "csv")) + print("ppc data saved at %s.%s" % (os.path.join(save_path, save_name), "csv")) + + return ppc_sdata + + +def plot_ppc_choice_rlssm( + obs_data, sim_data, trials, nbins, save_fig=False, save_name=None, save_path=None +): + """Plot posterior preditive plot for choice data. + + Arguments: + obs_data: pandas.DataFrame + Pandas DataFrame for the observed data. + + sim_data: pandas.DataFrame + Pandas DataFrame for the simulated data. + + trials: int + Number of initial trials to consider for computing proportion of correct responses. + + nbins: int + Number of bins to put the trials into (Num. of trials per bin = trials/nbin). + + save_fig: bool + Boolean denoting whether to save the plot. + + save_name: str + Specifies filename to save the figure. + + save_path: str + Specifies path to save the figure. + + + Return: + fig: matplotlib.Figure + plot object + """ + + res_obs, up_err_obs, low_err_obs = get_mean_correct_responses_rlssm( + trials, nbins, obs_data + ) + res_sim, up_err_sim, low_err_sim = get_mean_correct_responses_rlssm( + trials, nbins, sim_data + ) + + cond_list = np.unique(obs_data.split_by) + rows = 1 + cols = len(cond_list) + fig, ax = plt.subplots(rows, cols, constrained_layout=False, tight_layout=True) + + cond_index = 0 + for ay in range(cols): + cond = cond_list[cond_index] + + ax[ay].errorbar( + 1 + np.arange(len(res_obs[cond])), + res_obs[cond], + yerr=[low_err_obs[cond], up_err_obs[cond]], + label="observed", + ) + ax[ay].errorbar( + 1 + np.arange(len(res_sim[cond])), + res_sim[cond], + yerr=[low_err_sim[cond], up_err_sim[cond]], + label="simulated", + ) + + ax[ay].set_ylim((0, 1)) + + ax[ay].legend() + ax[ay].set_title("split_by=" + str(cond), fontsize=12) + ax[ay].grid() + + cond_index += 1 + + fig = plt.gcf() + fig.supxlabel("Trial bins", fontsize=12) + fig.supylabel("Proportion of Correct Responses", fontsize=12) + fig.set_size_inches(4 * len(cond_list), 4) + + if save_fig: + if save_name is None: + save_name = "ppc_choice" + if save_path is None: + save_path = "." + fig.savefig("%s.%s" % (os.path.join(save_path, save_name), "png")) + print("fig saved at %s.%s" % (os.path.join(save_path, save_name), "png")) + + return fig + + +def plot_ppc_rt_rlssm( + obs_data, sim_data, trials, bw=0.1, save_fig=False, save_name=None, save_path=None +): + """Plot posterior preditive plot for reaction time data. + + Arguments: + obs_data: pandas.DataFrame + Pandas DataFrame for the observed data. + + sim_data: pandas.DataFrame + Pandas DataFrame for the simulated data. + + trials: int + Number of initial trials to consider for computing proportion of correct responses. + + bw: float + Bandwidth parameter for kernel-density estimates. + + save_fig: bool + Boolean denoting whether to save the plot. + + save_name: str + Specifies filename to save the figure. + + save_path: str + Specifies path to save the figure. + + + Return: + fig: matplotlib.Figure + plot object + """ + + obs_data_ppc = obs_data[obs_data.trial <= trials].copy() + sim_data_ppc = sim_data[sim_data.trial <= trials].copy() + + cond_list = np.unique(obs_data.split_by) + rows = 1 + cols = len(cond_list) + fig, ax = plt.subplots(rows, cols, constrained_layout=False, tight_layout=True) + + cond_index = 0 + for ay in range(cols): + cond = cond_list[cond_index] + + rt_ppc_sim = np.where( + sim_data_ppc[sim_data_ppc.split_by == cond].response == 1, + sim_data_ppc[sim_data_ppc.split_by == cond].rt, + 0 - sim_data_ppc[sim_data_ppc.split_by == cond].rt, + ) + rt_ppc_obs = np.where( + obs_data_ppc[obs_data_ppc.split_by == cond].response == 1, + obs_data_ppc[obs_data_ppc.split_by == cond].rt, + 0 - obs_data_ppc[obs_data_ppc.split_by == cond].rt, + ) + + sns.kdeplot(rt_ppc_sim, label="simulated", ax=ax[ay], bw_method=bw).set( + ylabel=None + ) + sns.kdeplot(rt_ppc_obs, label="observed", ax=ax[ay], bw_method=bw).set( + ylabel=None + ) + + ax[ay].legend() + ax[ay].set_title("split_by=" + str(cond), fontsize=12) + ax[ay].grid() + + cond_index += 1 + + fig = plt.gcf() + fig.supxlabel("Reaction Time", fontsize=12) + fig.supylabel("Density", fontsize=12) + fig.set_size_inches(4 * len(cond_list), 4) + + if save_fig: + if save_name is None: + save_name = "ppc_rt" + if save_path is None: + save_path = "." + fig.savefig("%s.%s" % (os.path.join(save_path, save_name), "png")) + print("fig saved at %s.%s" % (os.path.join(save_path, save_name), "png")) + + return fig + + +def plot_posterior_pairs_rlssm( + tracefile, param_list, save_fig=False, save_name=None, save_path=None, **kwargs +): + """Plot posterior pairs. + + Arguments: + tracefile: dict + Dictionary containing the traces. + + param_list: list + List of model parameters to be included in the posterior pair plots. + + save_fig: bool + Boolean denoting whether to save the plot. + + save_name: str + Specifies filename to save the figure. + + save_path: str + Specifies path to save the figure. + + + Return: + fig: matplotlib.Figure + plot object + """ + + traces = hddm.utils.get_traces_rlssm(tracefile) + tr = traces.copy() + tr_trunc = tr[param_list] + tr_dataset = az.dict_to_dataset(tr_trunc) + tr_inf_data = az.convert_to_inference_data(tr_dataset) + + axes = az.plot_pair( + tr_inf_data, + kind="kde", + marginals=True, + point_estimate="mean", + textsize=20, + **kwargs + ) + + fig = axes.ravel()[0].figure + + if save_fig: + if save_name is None: + save_name = "posterior_pair" + if save_path is None: + save_path = "." + fig.savefig("%s.%s" % (os.path.join(save_path, save_name), "png")) + print("fig saved at %s.%s" % (os.path.join(save_path, save_name), "png")) + + return fig diff --git a/hddm/simulators/basic_simulator.py b/hddm/simulators/basic_simulator.py index c10768568..33a3621e2 100644 --- a/hddm/simulators/basic_simulator.py +++ b/hddm/simulators/basic_simulator.py @@ -338,80 +338,92 @@ def simulator( n_trials=n_trials, max_t=max_t, ) - + if model == "gamma_drift": - x = ddm_flex(v = theta[:, 0], - a = theta[:, 1], - z = theta[:, 2], - t = theta[:, 3], - s = s, - boundary_fun = bf.constant, - drift_fun = df.gamma_drift, - boundary_multiplicative = True, - boundary_params = {}, - drift_params = {'shape': theta[:, 4], 'scale': theta[:, 5], 'c': theta[:, 6]}, - delta_t = delta_t, - n_samples = n_samples, - n_trials = n_trials, - max_t = max_t) + x = ddm_flex( + v=theta[:, 0], + a=theta[:, 1], + z=theta[:, 2], + t=theta[:, 3], + s=s, + boundary_fun=bf.constant, + drift_fun=df.gamma_drift, + boundary_multiplicative=True, + boundary_params={}, + drift_params={"shape": theta[:, 4], "scale": theta[:, 5], "c": theta[:, 6]}, + delta_t=delta_t, + n_samples=n_samples, + n_trials=n_trials, + max_t=max_t, + ) if model == "gamma_drift_angle": - x = ddm_flex(v = theta[:, 0], - a = theta[:, 1], - z = theta[:, 2], - t = theta[:, 3], - s = s, - boundary_fun = bf.angle, - drift_fun = df.gamma_drift, - boundary_multiplicative = False, - boundary_params = {'theta': theta[:, 4]}, - drift_params = {'shape': theta[:, 5], 'scale': theta[:, 6], 'c': theta[:, 7]}, - delta_t = delta_t, - n_samples = n_samples, - n_trials = n_trials, - max_t = max_t) + x = ddm_flex( + v=theta[:, 0], + a=theta[:, 1], + z=theta[:, 2], + t=theta[:, 3], + s=s, + boundary_fun=bf.angle, + drift_fun=df.gamma_drift, + boundary_multiplicative=False, + boundary_params={"theta": theta[:, 4]}, + drift_params={"shape": theta[:, 5], "scale": theta[:, 6], "c": theta[:, 7]}, + delta_t=delta_t, + n_samples=n_samples, + n_trials=n_trials, + max_t=max_t, + ) if model == "ds_conflict_drift": - x = ddm_flex(v = np.tile(np.array([0], dtype = np.float32), n_trials), - a = theta[:, 0], - z = theta[:, 1], - t = theta[:, 2], - s = s, - boundary_fun = bf.constant, - drift_fun = df.ds_conflict_drift, - boundary_params = {}, - drift_params = {'init_p_t': theta[:, 3], - 'init_p_d': theta[:, 4], - 'slope_t': theta[:, 5], - 'slope_d': theta[:, 6], - 'fixed_p_t': theta[:, 7], - 'coherence_t': theta[:, 8], - 'coherence_d': theta[:, 9]}, - delta_t = delta_t, - n_samples = n_samples, - n_trials = n_trials, - max_t = max_t) + x = ddm_flex( + v=np.tile(np.array([0], dtype=np.float32), n_trials), + a=theta[:, 0], + z=theta[:, 1], + t=theta[:, 2], + s=s, + boundary_fun=bf.constant, + drift_fun=df.ds_conflict_drift, + boundary_params={}, + drift_params={ + "init_p_t": theta[:, 3], + "init_p_d": theta[:, 4], + "slope_t": theta[:, 5], + "slope_d": theta[:, 6], + "fixed_p_t": theta[:, 7], + "coherence_t": theta[:, 8], + "coherence_d": theta[:, 9], + }, + delta_t=delta_t, + n_samples=n_samples, + n_trials=n_trials, + max_t=max_t, + ) if model == "ds_conflict_drift_angle": - x = ddm_flex(v = np.tile(np.array([0], dtype = np.float32), n_trials), - a = theta[:, 0], - z = theta[:, 1], - t = theta[:, 2], - s = s, - boundary_fun = bf.angle, - drift_fun = df.ds_conflict_drift, - boundary_params = {'theta': theta[:, 10]}, - drift_params = {'init_p_t': theta[:, 3], - 'init_p_d': theta[:, 4], - 'slope_t': theta[:, 5], - 'slope_d': theta[:, 6], - 'fixed_p_t': theta[:, 7], - 'coherence_t': theta[:, 8], - 'coherence_d': theta[:, 9]}, - delta_t = delta_t, - n_samples = n_samples, - n_trials = n_trials, - max_t = max_t) + x = ddm_flex( + v=np.tile(np.array([0], dtype=np.float32), n_trials), + a=theta[:, 0], + z=theta[:, 1], + t=theta[:, 2], + s=s, + boundary_fun=bf.angle, + drift_fun=df.ds_conflict_drift, + boundary_params={"theta": theta[:, 10]}, + drift_params={ + "init_p_t": theta[:, 3], + "init_p_d": theta[:, 4], + "slope_t": theta[:, 5], + "slope_d": theta[:, 6], + "fixed_p_t": theta[:, 7], + "coherence_t": theta[:, 8], + "coherence_d": theta[:, 9], + }, + delta_t=delta_t, + n_samples=n_samples, + n_trials=n_trials, + max_t=max_t, + ) if model == "full_ddm": x = full_ddm( diff --git a/hddm/simulators/boundary_functions.py b/hddm/simulators/boundary_functions.py index d1f837b55..3980ec1d0 100644 --- a/hddm/simulators/boundary_functions.py +++ b/hddm/simulators/boundary_functions.py @@ -13,6 +13,7 @@ def constant(t=0): """constant boundary""" return 1 + # Angle (additive) def angle(t=1, theta=1): """angle boundary @@ -26,6 +27,7 @@ def angle(t=1, theta=1): """ return np.multiply(t, (-np.sin(theta) / np.cos(theta))) + # Generalized logistic bound (additive) def generalized_logistic_bnd(t=1, B=2.0, M=3.0, v=0.5): """generalized logistic bound @@ -43,6 +45,7 @@ def generalized_logistic_bnd(t=1, B=2.0, M=3.0, v=0.5): """ return 1 - (1 / np.power(1 + np.exp(-B * (t - M)), 1 / v)) + # Weibull survival fun (multiplicative) def weibull_cdf(t=1, alpha=1, beta=1): """generalized logistic bound @@ -59,12 +62,15 @@ def weibull_cdf(t=1, alpha=1, beta=1): return np.exp(-np.power(np.divide(t, beta), alpha)) -def conflict_gamma_bound(a = 0.5, - theta = 0.5, - scale = 1, - alpha_gamma = 1.01, - scale_gamma = 0.3, - t = np.arange(0, 20, 0.1)): + +def conflict_gamma_bound( + a=0.5, + theta=0.5, + scale=1, + alpha_gamma=1.01, + scale_gamma=0.3, + t=np.arange(0, 20, 0.1), +): """conflict bound that allows initial divergence then collapse :Arguments: @@ -83,10 +89,13 @@ def conflict_gamma_bound(a = 0.5, """ - return np.maximum(a + scale * gamma.pdf(t, a = alpha_gamma, - loc = 0, - scale = scale_gamma) + \ - np.multiply(t, (-np.sin(theta) / np.cos(theta))), 0) + return np.maximum( + a + + scale * gamma.pdf(t, a=alpha_gamma, loc=0, scale=scale_gamma) + + np.multiply(t, (-np.sin(theta) / np.cos(theta))), + 0, + ) + # Gamma shape: (additive) def gamma_bnd(t=1, node=1, shape=1.01, scale=1, theta=0): diff --git a/hddm/simulators/drift_functions.py b/hddm/simulators/drift_functions.py index 3062704ff..c0e0522f5 100644 --- a/hddm/simulators/drift_functions.py +++ b/hddm/simulators/drift_functions.py @@ -3,24 +3,23 @@ from scipy.stats import gamma import numpy as np -def constant(t = np.arange(0, 20, 0.1)): + +def constant(t=np.arange(0, 20, 0.1)): return np.zeros(t.shape[0]) -def gamma_drift(t = np.arange(0, 20, 0.1), - shape = 2, - scale = 0.01, - c = 1.5): + +def gamma_drift(t=np.arange(0, 20, 0.1), shape=2, scale=0.01, c=1.5): """Drift function that follows a scaled gamma distribution :Arguments: t: np.ndarray - Timepoints at which to evaluate the drift. Usually np.arange() of some sort. + Timepoints at which to evaluate the drift. Usually np.arange() of some sort. shape: float Shape parameter of the gamma distribution scale: float Scale parameter of the gamma distribution - c: float - Scalar parameter that scales the peak of the gamma distribution + c: float + Scalar parameter that scales the peak of the gamma distribution (Note this function follows a gamma distribution but does not integrate to 1) :Return: np.ndarray @@ -29,21 +28,22 @@ def gamma_drift(t = np.arange(0, 20, 0.1), """ num_ = np.power(t, shape - 1) * np.exp(np.divide(-t, scale)) - div_ = np.power(shape - 1, shape - 1) * np.power(scale, shape - 1) * np.exp(- (shape - 1)) + div_ = ( + np.power(shape - 1, shape - 1) + * np.power(scale, shape - 1) + * np.exp(-(shape - 1)) + ) return c * np.divide(num_, div_) -def ds_support_analytic(t = np.arange(0, 10, 0.001), - init_p = 0, - fix_point = 1, - slope = 2): +def ds_support_analytic(t=np.arange(0, 10, 0.001), init_p=0, fix_point=1, slope=2): """Solution to differential equation of the form: x' = slope*(fix_point - x), with initial condition init_p. The solution takes the form: (init_p - fix_point) * exp(-slope * t) + fix_point :Arguments: t: np.ndarray - Timepoints at which to evaluate the drift. Usually np.arange() of some sort. + Timepoints at which to evaluate the drift. Usually np.arange() of some sort. init_p: float Initial condition of dynamical system fix_point: float @@ -54,24 +54,27 @@ def ds_support_analytic(t = np.arange(0, 10, 0.001), The gamma drift evaluated at the supplied timepoints t. """ - - return (init_p - fix_point)*np.exp(- (slope * t)) + fix_point - -def ds_conflict_drift(t = np.arange(0, 10, 0.001), - init_p_t = 0, - init_p_d = 0, - slope_t = 1, - slope_d = 1, - fixed_p_t = 1, - coherence_t = 1.5, - coherence_d = 1.5): + + return (init_p - fix_point) * np.exp(-(slope * t)) + fix_point + + +def ds_conflict_drift( + t=np.arange(0, 10, 0.001), + init_p_t=0, + init_p_d=0, + slope_t=1, + slope_d=1, + fixed_p_t=1, + coherence_t=1.5, + coherence_d=1.5, +): """This drift is inspired by a conflict task which involves a target and a distractor stimuli both presented - simultaneously. Two drift timecourses are linearly combined weighted by the coherence in the respective target + simultaneously. Two drift timecourses are linearly combined weighted by the coherence in the respective target and distractor stimuli. Each timecourse follows a dynamical system as described in the ds_support_analytic() function. :Arguments: t: np.ndarray - Timepoints at which to evaluate the drift. Usually np.arange() of some sort. + Timepoints at which to evaluate the drift. Usually np.arange() of some sort. init_p_t: float Initial condition of target drift timecourse init_p_d: float @@ -83,7 +86,7 @@ def ds_conflict_drift(t = np.arange(0, 10, 0.001), fixed_p_t: float Fixed point for target drift timecourse coherence_t: float - Coefficient for the target drift timecourse + Coefficient for the target drift timecourse coherence_d: float Coefficient for the distractor drift timecourse :Return: np.ndarray @@ -91,16 +94,10 @@ def ds_conflict_drift(t = np.arange(0, 10, 0.001), """ - w_t = ds_support_analytic(t = t, - init_p = init_p_t, - fix_point = fixed_p_t, - slope = slope_t) - - w_d = ds_support_analytic(t = t, - init_p = init_p_d, - fix_point = 0, - slope = slope_d) - + w_t = ds_support_analytic(t=t, init_p=init_p_t, fix_point=fixed_p_t, slope=slope_t) + + w_d = ds_support_analytic(t=t, init_p=init_p_d, fix_point=0, slope=slope_d) + v_t = (w_t * coherence_t) + (w_d * coherence_d) - - return v_t, w_t, w_d \ No newline at end of file + + return v_t, w_t, w_d diff --git a/hddm/simulators/hddm_dataset_generators.py b/hddm/simulators/hddm_dataset_generators.py index d0842a249..92d06aaa4 100644 --- a/hddm/simulators/hddm_dataset_generators.py +++ b/hddm/simulators/hddm_dataset_generators.py @@ -632,14 +632,11 @@ def make_covariate_df(regression_covariates, n_trials_per_subject): for covariate in regression_covariates.keys(): tmp = regression_covariates[covariate] if tmp["type"] == "categorical": - cov_df[covariate] = ( - np.random.choice( - np.arange(tmp["range"][0], tmp["range"][1] + 1, 1), - replace=True, - size=n_trials_per_subject, - ) - / (tmp["range"][1]) - ) + cov_df[covariate] = np.random.choice( + np.arange(tmp["range"][0], tmp["range"][1] + 1, 1), + replace=True, + size=n_trials_per_subject, + ) / (tmp["range"][1]) else: cov_df[covariate] = np.random.uniform( low=tmp["range"][0], high=tmp["range"][1], size=n_trials_per_subject @@ -966,7 +963,7 @@ def make_single_sub_cond_df_from_gt( for param in model_config[model]["params"]: data[param] = 0 - for subj_idx in data["subj_idx"].unique(): + for subj_idx in data["subj_idx"].unique(): # Fixed part if fixed_at_default is not None: @@ -1107,9 +1104,7 @@ def make_single_sub_cond_df_from_gt( ][key] for k in range(len(reg_param_names_tmp)): - full_parameter_dict[ - reg_param_names_tmp[k] - ] = reg_params_tmp[k] + full_parameter_dict[reg_param_names_tmp[k]] = reg_params_tmp[k] data.loc[data["subj_idx"] == int(subj_idx), [outcome]] = ( design_matrix * reg_params_tmp @@ -1336,7 +1331,7 @@ def make_group_level_params( if ("Intercept" in covariate) or (covariate == "1"): # AF-COMMENT: Here instead of covariate_rv --> just use - #print(reg_trace_dict) + # print(reg_trace_dict) reg_trace_dict[outcome + "_" + covariate] = param_gen_info[ outcome ]["rv"]() @@ -1382,7 +1377,7 @@ def make_group_level_params( # Make conditions df if depends_on is not None: - #print("depends_on is: ", depends_on) + # print("depends_on is: ", depends_on) if type(depends_on) == dict: if len(list(depends_on.keys())) > 0: # If data is None then conditions were supplied as an argument diff --git a/hddm/tests/test_likelihoods.py b/hddm/tests/test_likelihoods.py index 00f5b141a..bcacb61c3 100644 --- a/hddm/tests/test_likelihoods.py +++ b/hddm/tests/test_likelihoods.py @@ -160,7 +160,7 @@ def test_adaptive(self): t = rand() * 0.5 + (st / 2) a = 1.5 + rand() rt = (rand() * 4 + t) * np.sign(rand()) - err = 10 ** -9 + err = 10**-9 sz = rand() * 0.3 z = 0.5 * rand() + sz / 2 logp = 0 # np.floor(rand()*2) @@ -218,7 +218,7 @@ def test_pdf_integrate_to_one(self): st = rand() * 0.3 t = rand() * 0.5 + (st / 2) a = 1.5 + rand() - err = 10 ** -8 + err = 10**-8 sz = rand() * 0.3 z = 0.5 * rand() + sz / 2 func = lambda x: np.exp( @@ -236,7 +236,7 @@ def test_wiener_like_full_single(self): t = rand() * 0.5 + (st / 2) a = 1.5 + rand() rt = (rand() * 4 + t) * np.sign(rand()) - err = 10 ** -8 + err = 10**-8 sz = rand() * 0.3 z = 0.5 * rand() + sz / 2 n_sz = 60 diff --git a/hddm/torch/mlp_inference_class.py b/hddm/torch/mlp_inference_class.py index 52331841e..ba64e144c 100644 --- a/hddm/torch/mlp_inference_class.py +++ b/hddm/torch/mlp_inference_class.py @@ -37,10 +37,10 @@ def predict_on_batch(self, x=None): def load_torch_mlp(model=None): cfg = TorchConfig(model=model) infer_model = LoadTorchMLPInfer( - model_file_path=cfg.network_path, - network_config=cfg.network_config, - input_dim=len(hddm.model_config.model_config[model]["params"]) + 2, - ) + model_file_path=cfg.network_path, + network_config=cfg.network_config, + input_dim=len(hddm.model_config.model_config[model]["params"]) + 2, + ) return infer_model diff --git a/hddm/torch/mlp_model_class.py b/hddm/torch/mlp_model_class.py index e2f36c44f..a6d6d0920 100644 --- a/hddm/torch/mlp_model_class.py +++ b/hddm/torch/mlp_model_class.py @@ -54,7 +54,6 @@ def forward(self, x): x = self.layers[i](x) return self.layers[-1](x) - except: print( "Error loading pytorch capabilities. Neural network functionality cannot be used." diff --git a/hddm/torch/torch_config.py b/hddm/torch/torch_config.py index a9500db55..923312bdc 100644 --- a/hddm/torch/torch_config.py +++ b/hddm/torch/torch_config.py @@ -8,8 +8,8 @@ class TorchConfig(object): def __init__(self, model=None): self.network_files = { "ddm": "d27193a4153011ecb76ca0423f39a3e6_ddm_torch_state_dict.pt", - #"angle": "eba53550128911ec9fef3cecef056d26_angle_torch_state_dict.pt", - "angle": "248c94cca33e11ecb947ac1f6bfea5a4_training_data_angle_torch_state_dict.pt", + # "angle": "eba53550128911ec9fef3cecef056d26_angle_torch_state_dict.pt", + "angle": "248c94cca33e11ecb947ac1f6bfea5a4_training_data_angle_torch_state_dict.pt", "levy": "80dec298152e11ec88b8ac1f6bfea5a4_levy_torch_state_dict.pt", "ornstein": "1f496b50127211ecb6943cecef057438_ornstein_torch_state_dict.pt", "weibull": "44deb16a127f11eca325a0423f39b436_weibull_torch_state_dict.pt", @@ -30,7 +30,7 @@ def __init__(self, model=None): self.network_config_files = { "ddm": "d27193a4153011ecb76ca0423f39a3e6_ddm_torch__network_config.pickle", - #"angle": "eba53550128911ec9fef3cecef056d26_angle_torch__network_config.pickle", + # "angle": "eba53550128911ec9fef3cecef056d26_angle_torch__network_config.pickle", "angle": "248c94cca33e11ecb947ac1f6bfea5a4_training_data_angle_torch__network_config.pickle", "levy": "80dec298152e11ec88b8ac1f6bfea5a4_levy_torch__network_config.pickle", "ornstein": "1f496b50127211ecb6943cecef057438_ornstein_torch__network_config.pickle", diff --git a/hddm/utils.py b/hddm/utils.py index 592e1a505..c8bd305c4 100644 --- a/hddm/utils.py +++ b/hddm/utils.py @@ -5,6 +5,7 @@ import kabuki import pandas as pd import string +from copy import deepcopy from kabuki.analyze import post_pred_gen, post_pred_compare_stats import pymc.progressbar as pbar @@ -19,6 +20,80 @@ make_likelihood_fun_from_str = exec +def make_likelihood_str_mlp_rlssm( + model, + config=None, + config_rl=None, + wiener_params=None, + fun_name="custom_likelihood", +): + """Define string for a likelihood function for RLSSMs. This can be used as an mlp-likelihood + in the HDDMnnRL class. Also useful if you want to supply a custom LAN. + + :Arguments: + model : str + Name of the sequential sampling model used. + config : dict + Config dictionary for the sequential sampling model for which you would like to construct a custom + likelihood. In the style of what you find under hddm.model_config. + config_rl : dict + Config dictionary for the reinforcement learning model for which you would like to construct a custom + likelihood. In the style of what you find under hddm.model_config_rl. + :Returns: + str: + A string that holds the code to define a likelihood function as needed by HDDM to pass + to PyMC2. (Serves as a wrapper around the LAN forward pass) + + """ + + param_bounds_lower = config["param_bounds"][0] + param_bounds_lower.extend(config_rl["param_bounds"][0]) + param_bounds_upper = config["param_bounds"][1] + param_bounds_upper.extend(config_rl["param_bounds"][1]) + param_bounds = [param_bounds_lower, param_bounds_upper] + + params_str_ssm = ", ".join(config["params"]) + params_str_rl = ", ".join(config_rl["params"]) + + t_params = deepcopy(config["params"]) + t_params.extend(config_rl["params"]) + all_params_str = ", ".join(t_params) + + w_outlier_str = str(wiener_params["w_outlier"]) + + fun_str = ( + "def " + + fun_name + + "(x, " + + all_params_str + + ", p_outlier=0.0, w_outlier=" + + w_outlier_str + + ", network = None):\n " + + "return hddm.wfpt.wiener_like_rlssm_nn('" + + model + + "', " + + 'x["rt"].values.astype(float), ' + + 'x["response"].values.astype(int), ' + + 'x["feedback"].values, ' + + 'x["split_by"].values.astype(int), ' + + 'x["q_init"].iloc[0], ' + + "np.array([" + + params_str_ssm + + "]), " + + "np.array([" + + params_str_rl + + "]), " + + "params_bnds=" + + "np.array(" + + str(param_bounds) + + "), " + + "network=network, " + + "p_outlier=p_outlier, w_outlier=w_outlier)" + ) + + return fun_str + + def make_likelihood_str_mlp( config=None, wiener_params=None, fun_name="custom_likelihood" ): @@ -105,10 +180,13 @@ def make_likelihood_str_mlp_info( print(fun_str) return fun_str + def make_reg_likelihood_str_mlp( - config=None, wiener_params=None, - param_links=None, param_links_betas=None, - fun_name="custom_likelihood_reg" + config=None, + wiener_params=None, + param_links=None, + param_links_betas=None, + fun_name="custom_likelihood_reg", ): """Define string for a likelihood function that can be used as a mlp-likelihood in the HDDMnnRegressor class. Useful if you want to supply a custom LAN. @@ -124,19 +202,19 @@ def make_reg_likelihood_str_mlp( to PyMC2. (Serves as a wrapper around the LAN forward pass) """ - + param_links_betas_str = str(param_links_betas) param_links_str = str(param_links) params_fun_def_str = ", ".join(config["params"]) - - if 'indirect_regressors' in config: - for indirect_regressor in config['indirect_regressors'].keys(): - params_fun_def_str += ', ' + indirect_regressor - - if 'indirect_betas' in config: - for indirect_beta in config['indirect_betas'].keys(): - params_fun_def_str += ', ' + indirect_beta - + + if "indirect_regressors" in config: + for indirect_regressor in config["indirect_regressors"].keys(): + params_fun_def_str += ", " + indirect_regressor + + if "indirect_betas" in config: + for indirect_beta in config["indirect_betas"].keys(): + params_fun_def_str += ", " + indirect_beta + w_outlier_str = str(wiener_params["w_outlier"]) upper_bounds_str = str(config["param_bounds"][1]) lower_bounds_str = str(config["param_bounds"][0]) @@ -157,10 +235,10 @@ def make_reg_likelihood_str_mlp( + "\n data = np.zeros(((size, " + data_frame_width_str + ")), dtype=np.float32)" - + "\n param_links = " # indirect regressor part - + param_links_str # indirect regressor part - + "\n param_links_betas = " # indirect betas part - + param_links_betas_str # indirect betas part + + "\n param_links = " # indirect regressor part + + param_links_str # indirect regressor part + + "\n param_links_betas = " # indirect betas part + + param_links_betas_str # indirect betas part + "\n data[:, " + n_params_str + ':] = np.stack([np.absolute(value["rt"]).astype(np.float32), value["response"].astype(np.float32)], axis=1)' @@ -173,7 +251,7 @@ def make_reg_likelihood_str_mlp( + "\n for linked_indirect_regressor in param_links[tmp_str]:" + '\n data[:, cnt] = data[:, cnt] + params[linked_indirect_regressor].loc[value["rt"].index].values' + "\n for linked_indirect_beta in param_links_betas[tmp_str]:" - + "\n data[:, cnt] = data[:, cnt] + params[linked_indirect_beta[0]] * value[linked_indirect_beta[1]]" + + "\n data[:, cnt] = data[:, cnt] + params[linked_indirect_beta[0]] * value[linked_indirect_beta[1]]" + "\n if (data[:, cnt].min() < " + lower_bounds_str + "[cnt]) or (data[:, cnt].max() > " @@ -188,9 +266,9 @@ def make_reg_likelihood_str_mlp( ) return fun_str + def make_reg_likelihood_str_mlp_basic( - config=None, wiener_params=None, - fun_name="custom_likelihood_reg" + config=None, wiener_params=None, fun_name="custom_likelihood_reg" ): """Define string for a likelihood function that can be used as a mlp-likelihood in the HDDMnnRegressor class. Useful if you want to supply a custom LAN. @@ -235,7 +313,7 @@ def make_reg_likelihood_str_mlp_basic( + params_str + ":" + "\n if tmp_str in reg_outcomes:" - + '\n data[:, cnt] = params[tmp_str].loc[value["rt"].index].values' + + '\n data[:, cnt] = params[tmp_str].loc[value["rt"].index].values' + "\n if (data[:, cnt].min() < " + lower_bounds_str + "[cnt]) or (data[:, cnt].max() > " @@ -250,6 +328,7 @@ def make_reg_likelihood_str_mlp_basic( ) return fun_str + def flip_errors(data): """Flip sign for lower boundary responses. @@ -484,12 +563,12 @@ def EZ(pc, vrt, mrt, s=1): if pc == 0 or pc == 0.5 or pc == 1: raise ValueError("Probability correct is either 0%, 50% or 100%") - s2 = s ** 2 + s2 = s**2 logit_p = np.log(pc / (1 - pc)) # Eq. 7 - x = (logit_p * (pc ** 2 * logit_p - pc * logit_p + pc - 0.5)) / vrt - v = np.sign(pc - 0.5) * s * x ** 0.25 + x = (logit_p * (pc**2 * logit_p - pc * logit_p + pc - 0.5)) / vrt + v = np.sign(pc - 0.5) * s * x**0.25 # Eq 5 a = (s2 * logit_p) / v @@ -997,7 +1076,58 @@ def data_quantiles(data, quantiles=(0.1, 0.3, 0.5, 0.7, 0.9)): return q_lower, q_upper, p_upper + if __name__ == "__main__": import doctest doctest.testmod() + + +def get_dataset_as_dataframe_rlssm(dataset): + """Get dataset as pandas DataFrame from dict format. + + Arguments: + dataset: dict + Dictionary containing the dataset. + + Return: + PR_data: pandas.DataFrame + Pandas DataFrame containing the dataset. + """ + + list_sub_data = list() + for itr in range(len(dataset["data"])): + data = dataset["data"][itr]["sim_data"] + data["q_up"] + data["q_low"] + data["sim_drift"] + data["subj_idx"] = itr + + list_sub_data.append(data) + PR_data = pd.concat(list_sub_data, ignore_index=True) + + return PR_data + + +def get_traces_rlssm(tracefile): + """Get traces as pandas DataFrame from dict format. + + Arguments: + tracefile: dict + Dictionary containing the trace data. + + Return: + traces: pandas.DataFrame + Pandas DataFrame containing the trace data. + """ + + t_res = {} + for itr in tracefile.keys(): + if itr in ["deviance", "_state_"]: + pass + else: + t_res[itr] = tracefile[itr][0] + + traces = pd.DataFrame.from_dict(t_res) + + return traces diff --git a/setup.py b/setup.py index cd632455f..506a9c6cc 100755 --- a/setup.py +++ b/setup.py @@ -18,16 +18,16 @@ setup( name='HDDM', - version='0.9.5', - author='Thomas V. Wiecki, Imri Sofer, Michael J. Frank, Mads Lund Pedersen, Alexander Fengler, Lakshmi Govindarajan', + version='0.9.6', + author='Thomas V. Wiecki, Imri Sofer, Michael J. Frank, Mads Lund Pedersen, Alexander Fengler, Lakshmi Govindarajan, Krishn Bera', author_email='thomas.wiecki@gmail.com', url='http://github.com/hddm-devs/hddm', packages=['hddm', 'hddm.tests', 'hddm.models', 'hddm.examples', 'hddm.torch', 'hddm.torch_models', 'hddm.simulators'], # 'hddm.cnn', 'hddm.cnn_models', 'hddm.keras_models', package_data={'hddm':['examples/*.csv', 'examples/*.conf', 'torch_models/*', 'simulators/*']}, # 'cnn_models/*/*' 'keras_models/*.h5', scripts=['scripts/hddm_demo.py'], description='HDDM is a python module that implements Hierarchical Bayesian estimation of Drift Diffusion Models.', - install_requires=['NumPy >=1.6.0', 'SciPy >= 0.6.0', 'cython >= 0.29.0', 'pandas >= 0.12.0', 'patsy', 'seaborn >= 0.11.0', 'statsmodels >= 0.12.0', 'tqdm >= 4.1.0', 'scikit-learn >= 0.24', 'cloudpickle >= 2.0.0', 'kabuki >= 0.6.0', 'PyMC >= 2.3.3, < 3.0.0'], - setup_requires=['NumPy >=1.6.0', 'SciPy >= 0.6.0', 'cython >= 0.29.0', 'pandas >= 0.12.0', 'patsy', 'seaborn >= 0.11.0', 'statsmodels >= 0.12.0', 'tqdm >= 4.1.0', 'scikit-learn >= 0.24', 'cloudpickle >= 2.0.0', 'kabuki >= 0.6.0', 'PyMC >= 2.3.3, < 3.0.0'], + install_requires=['NumPy >=1.6.0', 'SciPy >= 0.6.0', 'cython >= 0.29.0', 'pandas >= 0.12.0', 'patsy', 'seaborn >= 0.11.0', 'statsmodels >= 0.12.0', 'tqdm >= 4.1.0', 'scikit-learn >= 0.24', 'cloudpickle >= 2.0.0', 'kabuki >= 0.6.0', 'PyMC >= 2.3.3, < 3.0.0', 'arviz >= 0.11'], + setup_requires=['NumPy >=1.6.0', 'SciPy >= 0.6.0', 'cython >= 0.29.0', 'pandas >= 0.12.0', 'patsy', 'seaborn >= 0.11.0', 'statsmodels >= 0.12.0', 'tqdm >= 4.1.0', 'scikit-learn >= 0.24', 'cloudpickle >= 2.0.0', 'kabuki >= 0.6.0', 'PyMC >= 2.3.3, < 3.0.0', 'arviz >= 0.11'], include_dirs = [np.get_include()], classifiers=[ 'Development Status :: 5 - Production/Stable', diff --git a/src/cdfdif_wrapper.c b/src/cdfdif_wrapper.c index 83da57b32..3815f394d 100644 --- a/src/cdfdif_wrapper.c +++ b/src/cdfdif_wrapper.c @@ -1,4 +1,4 @@ -/* Generated by Cython 0.29.24 */ +/* Generated by Cython 0.29.30 */ /* BEGIN: Cython Metadata { @@ -28,8 +28,8 @@ END: Cython Metadata */ #elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) #error Cython requires Python 2.6+ or Python 3.3+. #else -#define CYTHON_ABI "0_29_24" -#define CYTHON_HEX_VERSION 0x001D18F0 +#define CYTHON_ABI "0_29_30" +#define CYTHON_HEX_VERSION 0x001D1EF0 #define CYTHON_FUTURE_DIVISION 1 #include #ifndef offsetof @@ -104,6 +104,9 @@ END: Cython Metadata */ #define CYTHON_USE_DICT_VERSIONS 0 #undef CYTHON_USE_EXC_INFO_STACK #define CYTHON_USE_EXC_INFO_STACK 0 + #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC + #define CYTHON_UPDATE_DESCRIPTOR_DOC (PYPY_VERSION_HEX >= 0x07030900) + #endif #elif defined(PYSTON_VERSION) #define CYTHON_COMPILING_IN_PYPY 0 #define CYTHON_COMPILING_IN_PYSTON 1 @@ -145,6 +148,9 @@ END: Cython Metadata */ #define CYTHON_USE_DICT_VERSIONS 0 #undef CYTHON_USE_EXC_INFO_STACK #define CYTHON_USE_EXC_INFO_STACK 0 + #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC + #define CYTHON_UPDATE_DESCRIPTOR_DOC 0 + #endif #else #define CYTHON_COMPILING_IN_PYPY 0 #define CYTHON_COMPILING_IN_PYSTON 0 @@ -176,7 +182,7 @@ END: Cython Metadata */ #ifndef CYTHON_USE_UNICODE_INTERNALS #define CYTHON_USE_UNICODE_INTERNALS 1 #endif - #if PY_VERSION_HEX < 0x030300F0 + #if PY_VERSION_HEX < 0x030300F0 || PY_VERSION_HEX >= 0x030B00A2 #undef CYTHON_USE_UNICODE_WRITER #define CYTHON_USE_UNICODE_WRITER 0 #elif !defined(CYTHON_USE_UNICODE_WRITER) @@ -191,11 +197,14 @@ END: Cython Metadata */ #ifndef CYTHON_UNPACK_METHODS #define CYTHON_UNPACK_METHODS 1 #endif - #ifndef CYTHON_FAST_THREAD_STATE + #if PY_VERSION_HEX >= 0x030B00A4 + #undef CYTHON_FAST_THREAD_STATE + #define CYTHON_FAST_THREAD_STATE 0 + #elif !defined(CYTHON_FAST_THREAD_STATE) #define CYTHON_FAST_THREAD_STATE 1 #endif #ifndef CYTHON_FAST_PYCALL - #define CYTHON_FAST_PYCALL 1 + #define CYTHON_FAST_PYCALL (PY_VERSION_HEX < 0x030A0000) #endif #ifndef CYTHON_PEP489_MULTI_PHASE_INIT #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) @@ -206,15 +215,23 @@ END: Cython Metadata */ #ifndef CYTHON_USE_DICT_VERSIONS #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) #endif - #ifndef CYTHON_USE_EXC_INFO_STACK + #if PY_VERSION_HEX >= 0x030B00A4 + #undef CYTHON_USE_EXC_INFO_STACK + #define CYTHON_USE_EXC_INFO_STACK 0 + #elif !defined(CYTHON_USE_EXC_INFO_STACK) #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) #endif + #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC + #define CYTHON_UPDATE_DESCRIPTOR_DOC 1 + #endif #endif #if !defined(CYTHON_FAST_PYCCALL) #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) #endif #if CYTHON_USE_PYLONG_INTERNALS - #include "longintrepr.h" + #if PY_MAJOR_VERSION < 3 + #include "longintrepr.h" + #endif #undef SHIFT #undef BASE #undef MASK @@ -331,9 +348,68 @@ END: Cython Metadata */ #define __Pyx_DefaultClassType PyClass_Type #else #define __Pyx_BUILTIN_MODULE_NAME "builtins" -#if PY_VERSION_HEX >= 0x030800A4 && PY_VERSION_HEX < 0x030800B2 - #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ - PyCode_New(a, 0, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) + #define __Pyx_DefaultClassType PyType_Type +#if PY_VERSION_HEX >= 0x030B00A1 + static CYTHON_INLINE PyCodeObject* __Pyx_PyCode_New(int a, int k, int l, int s, int f, + PyObject *code, PyObject *c, PyObject* n, PyObject *v, + PyObject *fv, PyObject *cell, PyObject* fn, + PyObject *name, int fline, PyObject *lnos) { + PyObject *kwds=NULL, *argcount=NULL, *posonlyargcount=NULL, *kwonlyargcount=NULL; + PyObject *nlocals=NULL, *stacksize=NULL, *flags=NULL, *replace=NULL, *call_result=NULL, *empty=NULL; + const char *fn_cstr=NULL; + const char *name_cstr=NULL; + PyCodeObject* co=NULL; + PyObject *type, *value, *traceback; + PyErr_Fetch(&type, &value, &traceback); + if (!(kwds=PyDict_New())) goto end; + if (!(argcount=PyLong_FromLong(a))) goto end; + if (PyDict_SetItemString(kwds, "co_argcount", argcount) != 0) goto end; + if (!(posonlyargcount=PyLong_FromLong(0))) goto end; + if (PyDict_SetItemString(kwds, "co_posonlyargcount", posonlyargcount) != 0) goto end; + if (!(kwonlyargcount=PyLong_FromLong(k))) goto end; + if (PyDict_SetItemString(kwds, "co_kwonlyargcount", kwonlyargcount) != 0) goto end; + if (!(nlocals=PyLong_FromLong(l))) goto end; + if (PyDict_SetItemString(kwds, "co_nlocals", nlocals) != 0) goto end; + if (!(stacksize=PyLong_FromLong(s))) goto end; + if (PyDict_SetItemString(kwds, "co_stacksize", stacksize) != 0) goto end; + if (!(flags=PyLong_FromLong(f))) goto end; + if (PyDict_SetItemString(kwds, "co_flags", flags) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_code", code) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_consts", c) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_names", n) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_varnames", v) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_freevars", fv) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_cellvars", cell) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_linetable", lnos) != 0) goto end; + if (!(fn_cstr=PyUnicode_AsUTF8AndSize(fn, NULL))) goto end; + if (!(name_cstr=PyUnicode_AsUTF8AndSize(name, NULL))) goto end; + if (!(co = PyCode_NewEmpty(fn_cstr, name_cstr, fline))) goto end; + if (!(replace = PyObject_GetAttrString((PyObject*)co, "replace"))) goto cleanup_code_too; + if (!(empty = PyTuple_New(0))) goto cleanup_code_too; // unfortunately __pyx_empty_tuple isn't available here + if (!(call_result = PyObject_Call(replace, empty, kwds))) goto cleanup_code_too; + Py_XDECREF((PyObject*)co); + co = (PyCodeObject*)call_result; + call_result = NULL; + if (0) { + cleanup_code_too: + Py_XDECREF((PyObject*)co); + co = NULL; + } + end: + Py_XDECREF(kwds); + Py_XDECREF(argcount); + Py_XDECREF(posonlyargcount); + Py_XDECREF(kwonlyargcount); + Py_XDECREF(nlocals); + Py_XDECREF(stacksize); + Py_XDECREF(replace); + Py_XDECREF(call_result); + Py_XDECREF(empty); + if (type) { + PyErr_Restore(type, value, traceback); + } + return co; + } #else #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) @@ -571,10 +647,10 @@ static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { #if PY_VERSION_HEX < 0x030200A4 typedef long Py_hash_t; #define __Pyx_PyInt_FromHash_t PyInt_FromLong - #define __Pyx_PyInt_AsHash_t PyInt_AsLong + #define __Pyx_PyInt_AsHash_t __Pyx_PyIndex_AsHash_t #else #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t - #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t + #define __Pyx_PyInt_AsHash_t __Pyx_PyIndex_AsSsize_t #endif #if PY_MAJOR_VERSION >= 3 #define __Pyx_PyMethod_New(func, self, klass) ((self) ? ((void)(klass), PyMethod_New(func, self)) : __Pyx_NewRef(func)) @@ -599,8 +675,10 @@ static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { } __Pyx_PyAsyncMethodsStruct; #endif -#if defined(WIN32) || defined(MS_WINDOWS) - #define _USE_MATH_DEFINES +#if defined(_WIN32) || defined(WIN32) || defined(MS_WINDOWS) + #if !defined(_USE_MATH_DEFINES) + #define _USE_MATH_DEFINES + #endif #endif #include #ifdef NAN @@ -637,6 +715,9 @@ static CYTHON_INLINE float __PYX_NAN() { #include #include #include "numpy/arrayobject.h" +#include "numpy/ndarrayobject.h" +#include "numpy/ndarraytypes.h" +#include "numpy/arrayscalars.h" #include "numpy/ufuncobject.h" /* NumPy API declarations from "numpy/__init__.pxd" */ @@ -739,6 +820,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); +static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*); #if CYTHON_ASSUME_SAFE_MACROS #define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) #else @@ -914,7 +996,7 @@ typedef struct { } __Pyx_BufFmt_Context; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":697 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":690 * # in Cython to enable them only on the right systems. * * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<< @@ -923,7 +1005,7 @@ typedef struct { */ typedef npy_int8 __pyx_t_5numpy_int8_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":698 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":691 * * ctypedef npy_int8 int8_t * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<< @@ -932,7 +1014,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t; */ typedef npy_int16 __pyx_t_5numpy_int16_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":699 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":692 * ctypedef npy_int8 int8_t * ctypedef npy_int16 int16_t * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<< @@ -941,7 +1023,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t; */ typedef npy_int32 __pyx_t_5numpy_int32_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":700 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":693 * ctypedef npy_int16 int16_t * ctypedef npy_int32 int32_t * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<< @@ -950,7 +1032,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t; */ typedef npy_int64 __pyx_t_5numpy_int64_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":704 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":697 * #ctypedef npy_int128 int128_t * * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<< @@ -959,7 +1041,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t; */ typedef npy_uint8 __pyx_t_5numpy_uint8_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":705 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":698 * * ctypedef npy_uint8 uint8_t * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<< @@ -968,7 +1050,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t; */ typedef npy_uint16 __pyx_t_5numpy_uint16_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":706 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":699 * ctypedef npy_uint8 uint8_t * ctypedef npy_uint16 uint16_t * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<< @@ -977,7 +1059,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t; */ typedef npy_uint32 __pyx_t_5numpy_uint32_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":707 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":700 * ctypedef npy_uint16 uint16_t * ctypedef npy_uint32 uint32_t * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<< @@ -986,7 +1068,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t; */ typedef npy_uint64 __pyx_t_5numpy_uint64_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":711 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":704 * #ctypedef npy_uint128 uint128_t * * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<< @@ -995,7 +1077,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t; */ typedef npy_float32 __pyx_t_5numpy_float32_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":712 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":705 * * ctypedef npy_float32 float32_t * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<< @@ -1004,7 +1086,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t; */ typedef npy_float64 __pyx_t_5numpy_float64_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":721 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":714 * # The int types are mapped a bit surprising -- * # numpy.int corresponds to 'l' and numpy.long to 'q' * ctypedef npy_long int_t # <<<<<<<<<<<<<< @@ -1013,7 +1095,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t; */ typedef npy_long __pyx_t_5numpy_int_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":722 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":715 * # numpy.int corresponds to 'l' and numpy.long to 'q' * ctypedef npy_long int_t * ctypedef npy_longlong long_t # <<<<<<<<<<<<<< @@ -1022,7 +1104,7 @@ typedef npy_long __pyx_t_5numpy_int_t; */ typedef npy_longlong __pyx_t_5numpy_long_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":723 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":716 * ctypedef npy_long int_t * ctypedef npy_longlong long_t * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<< @@ -1031,7 +1113,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t; */ typedef npy_longlong __pyx_t_5numpy_longlong_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":725 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":718 * ctypedef npy_longlong longlong_t * * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<< @@ -1040,7 +1122,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t; */ typedef npy_ulong __pyx_t_5numpy_uint_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":726 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":719 * * ctypedef npy_ulong uint_t * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<< @@ -1049,7 +1131,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t; */ typedef npy_ulonglong __pyx_t_5numpy_ulong_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":727 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":720 * ctypedef npy_ulong uint_t * ctypedef npy_ulonglong ulong_t * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<< @@ -1058,7 +1140,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t; */ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":729 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":722 * ctypedef npy_ulonglong ulonglong_t * * ctypedef npy_intp intp_t # <<<<<<<<<<<<<< @@ -1067,7 +1149,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t; */ typedef npy_intp __pyx_t_5numpy_intp_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":730 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":723 * * ctypedef npy_intp intp_t * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<< @@ -1076,7 +1158,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t; */ typedef npy_uintp __pyx_t_5numpy_uintp_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":732 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":725 * ctypedef npy_uintp uintp_t * * ctypedef npy_double float_t # <<<<<<<<<<<<<< @@ -1085,7 +1167,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t; */ typedef npy_double __pyx_t_5numpy_float_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":733 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":726 * * ctypedef npy_double float_t * ctypedef npy_double double_t # <<<<<<<<<<<<<< @@ -1094,7 +1176,7 @@ typedef npy_double __pyx_t_5numpy_float_t; */ typedef npy_double __pyx_t_5numpy_double_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":734 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":727 * ctypedef npy_double float_t * ctypedef npy_double double_t * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<< @@ -1129,7 +1211,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do /*--- Type declarations ---*/ -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":736 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":729 * ctypedef npy_longdouble longdouble_t * * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<< @@ -1138,7 +1220,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do */ typedef npy_cfloat __pyx_t_5numpy_cfloat_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":737 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":730 * * ctypedef npy_cfloat cfloat_t * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<< @@ -1147,7 +1229,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t; */ typedef npy_cdouble __pyx_t_5numpy_cdouble_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":738 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":731 * ctypedef npy_cfloat cfloat_t * ctypedef npy_cdouble cdouble_t * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<< @@ -1156,7 +1238,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t; */ typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t; -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":740 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":733 * ctypedef npy_clongdouble clongdouble_t * * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<< @@ -1387,13 +1469,21 @@ static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, #ifndef Py_MEMBER_SIZE #define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) #endif +#if CYTHON_FAST_PYCALL static size_t __pyx_pyframe_localsplus_offset = 0; #include "frameobject.h" +#if PY_VERSION_HEX >= 0x030b00a6 + #ifndef Py_BUILD_CORE + #define Py_BUILD_CORE 1 + #endif + #include "internal/pycore_frame.h" +#endif #define __Pxy_PyFrame_Initialize_Offsets()\ ((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\ (void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus))) #define __Pyx_PyFrame_GetLocalsplus(frame)\ (assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset)) +#endif // CYTHON_FAST_PYCALL #endif /* PyObjectCall.proto */ @@ -1424,26 +1514,6 @@ static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type); static void __Pyx_RaiseBufferIndexError(int axis); #define __Pyx_BufPtrStrided1d(type, buf, i0, s0) (type)((char*)buf + i0 * s0) -/* DictGetItem.proto */ -#if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key); -#define __Pyx_PyObject_Dict_GetItem(obj, name)\ - (likely(PyDict_CheckExact(obj)) ?\ - __Pyx_PyDict_GetItem(obj, name) : PyObject_GetItem(obj, name)) -#else -#define __Pyx_PyDict_GetItem(d, key) PyObject_GetItem(d, key) -#define __Pyx_PyObject_Dict_GetItem(obj, name) PyObject_GetItem(obj, name) -#endif - -/* RaiseTooManyValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected); - -/* RaiseNeedMoreValuesToUnpack.proto */ -static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index); - -/* RaiseNoneIterError.proto */ -static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void); - /* GetTopmostException.proto */ #if CYTHON_USE_EXC_INFO_STACK static _PyErr_StackItem * __Pyx_PyErr_GetTopmostException(PyThreadState *tstate); @@ -1645,12 +1715,6 @@ typedef struct { /* CIntFromPy.proto */ static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_int(int value); - -/* CIntToPy.proto */ -static CYTHON_INLINE PyObject* __Pyx_PyInt_From_enum__NPY_TYPES(enum NPY_TYPES value); - /* CIntToPy.proto */ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); @@ -1703,8 +1767,17 @@ static PyTypeObject *__pyx_ptype_5numpy_dtype = 0; static PyTypeObject *__pyx_ptype_5numpy_flatiter = 0; static PyTypeObject *__pyx_ptype_5numpy_broadcast = 0; static PyTypeObject *__pyx_ptype_5numpy_ndarray = 0; +static PyTypeObject *__pyx_ptype_5numpy_generic = 0; +static PyTypeObject *__pyx_ptype_5numpy_number = 0; +static PyTypeObject *__pyx_ptype_5numpy_integer = 0; +static PyTypeObject *__pyx_ptype_5numpy_signedinteger = 0; +static PyTypeObject *__pyx_ptype_5numpy_unsignedinteger = 0; +static PyTypeObject *__pyx_ptype_5numpy_inexact = 0; +static PyTypeObject *__pyx_ptype_5numpy_floating = 0; +static PyTypeObject *__pyx_ptype_5numpy_complexfloating = 0; +static PyTypeObject *__pyx_ptype_5numpy_flexible = 0; +static PyTypeObject *__pyx_ptype_5numpy_character = 0; static PyTypeObject *__pyx_ptype_5numpy_ufunc = 0; -static CYTHON_INLINE char *__pyx_f_5numpy__util_dtypestring(PyArray_Descr *, char *, char *, int *); /*proto*/ /* Module declarations from 'cdfdif_wrapper' */ static CYTHON_INLINE double __pyx_f_14cdfdif_wrapper_add_outlier_cdf(double, double, double, double); /*proto*/ @@ -1717,7 +1790,6 @@ int __pyx_module_is_main_cdfdif_wrapper = 0; /* Implementation of 'cdfdif_wrapper' */ static PyObject *__pyx_builtin_ValueError; static PyObject *__pyx_builtin_range; -static PyObject *__pyx_builtin_RuntimeError; static PyObject *__pyx_builtin_ImportError; static const char __pyx_k_a[] = "a"; static const char __pyx_k_i[] = "i"; @@ -1751,25 +1823,16 @@ static const char __pyx_k_w_outlier[] = "w_outlier"; static const char __pyx_k_ValueError[] = "ValueError"; static const char __pyx_k_p_boundary[] = "p_boundary"; static const char __pyx_k_ImportError[] = "ImportError"; -static const char __pyx_k_RuntimeError[] = "RuntimeError"; static const char __pyx_k_cdfdif_wrapper[] = "cdfdif_wrapper"; static const char __pyx_k_dmat_cdf_array[] = "dmat_cdf_array"; static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; static const char __pyx_k_src_cdfdif_wrapper_pyx[] = "src/cdfdif_wrapper.pyx"; static const char __pyx_k_numpy_core_multiarray_failed_to[] = "numpy.core.multiarray failed to import"; -static const char __pyx_k_unknown_dtype_code_in_numpy_pxd[] = "unknown dtype code in numpy.pxd (%d)"; static const char __pyx_k_1_2_w_outlier_must_be_smaller_th[] = "1. / (2*w_outlier) must be smaller than RT"; -static const char __pyx_k_Format_string_allocated_too_shor[] = "Format string allocated too short, see comment in numpy.pxd"; -static const char __pyx_k_Non_native_byte_order_not_suppor[] = "Non-native byte order not supported"; static const char __pyx_k_at_least_one_of_the_parameters_i[] = "at least one of the parameters is out of the support"; static const char __pyx_k_numpy_core_umath_failed_to_impor[] = "numpy.core.umath failed to import"; -static const char __pyx_k_Format_string_allocated_too_shor_2[] = "Format string allocated too short."; static PyObject *__pyx_kp_u_1_2_w_outlier_must_be_smaller_th; -static PyObject *__pyx_kp_u_Format_string_allocated_too_shor; -static PyObject *__pyx_kp_u_Format_string_allocated_too_shor_2; static PyObject *__pyx_n_s_ImportError; -static PyObject *__pyx_kp_u_Non_native_byte_order_not_suppor; -static PyObject *__pyx_n_s_RuntimeError; static PyObject *__pyx_n_s_ValueError; static PyObject *__pyx_n_s_a; static PyObject *__pyx_n_s_abs; @@ -1803,7 +1866,6 @@ static PyObject *__pyx_n_s_sv; static PyObject *__pyx_n_s_sz; static PyObject *__pyx_n_s_t; static PyObject *__pyx_n_s_test; -static PyObject *__pyx_kp_u_unknown_dtype_code_in_numpy_pxd; static PyObject *__pyx_n_s_v; static PyObject *__pyx_n_s_w_outlier; static PyObject *__pyx_n_s_x; @@ -1815,10 +1877,7 @@ static PyObject *__pyx_tuple__2; static PyObject *__pyx_tuple__3; static PyObject *__pyx_tuple__4; static PyObject *__pyx_tuple__5; -static PyObject *__pyx_tuple__6; -static PyObject *__pyx_tuple__7; -static PyObject *__pyx_tuple__8; -static PyObject *__pyx_codeobj__9; +static PyObject *__pyx_codeobj__6; /* Late includes */ /* "cdfdif_wrapper.pyx":11 @@ -2664,7 +2723,7 @@ static PyObject *__pyx_pf_14cdfdif_wrapper_dmat_cdf_array(CYTHON_UNUSED PyObject return __pyx_r; } -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":742 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":735 * ctypedef npy_cdouble complex_t * * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<< @@ -2681,7 +2740,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":743 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":736 * * cdef inline object PyArray_MultiIterNew1(a): * return PyArray_MultiIterNew(1, a) # <<<<<<<<<<<<<< @@ -2689,13 +2748,13 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__ * cdef inline object PyArray_MultiIterNew2(a, b): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyArray_MultiIterNew(1, ((void *)__pyx_v_a)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 743, __pyx_L1_error) + __pyx_t_1 = PyArray_MultiIterNew(1, ((void *)__pyx_v_a)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 736, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":742 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":735 * ctypedef npy_cdouble complex_t * * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<< @@ -2714,7 +2773,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__ return __pyx_r; } -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":745 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":738 * return PyArray_MultiIterNew(1, a) * * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<< @@ -2731,7 +2790,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":746 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":739 * * cdef inline object PyArray_MultiIterNew2(a, b): * return PyArray_MultiIterNew(2, a, b) # <<<<<<<<<<<<<< @@ -2739,13 +2798,13 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__ * cdef inline object PyArray_MultiIterNew3(a, b, c): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyArray_MultiIterNew(2, ((void *)__pyx_v_a), ((void *)__pyx_v_b)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 746, __pyx_L1_error) + __pyx_t_1 = PyArray_MultiIterNew(2, ((void *)__pyx_v_a), ((void *)__pyx_v_b)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 739, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":745 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":738 * return PyArray_MultiIterNew(1, a) * * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<< @@ -2764,7 +2823,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__ return __pyx_r; } -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":748 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":741 * return PyArray_MultiIterNew(2, a, b) * * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<< @@ -2781,7 +2840,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":749 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":742 * * cdef inline object PyArray_MultiIterNew3(a, b, c): * return PyArray_MultiIterNew(3, a, b, c) # <<<<<<<<<<<<<< @@ -2789,13 +2848,13 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__ * cdef inline object PyArray_MultiIterNew4(a, b, c, d): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyArray_MultiIterNew(3, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 749, __pyx_L1_error) + __pyx_t_1 = PyArray_MultiIterNew(3, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 742, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":748 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":741 * return PyArray_MultiIterNew(2, a, b) * * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<< @@ -2814,7 +2873,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__ return __pyx_r; } -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":751 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":744 * return PyArray_MultiIterNew(3, a, b, c) * * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<< @@ -2831,7 +2890,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":752 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":745 * * cdef inline object PyArray_MultiIterNew4(a, b, c, d): * return PyArray_MultiIterNew(4, a, b, c, d) # <<<<<<<<<<<<<< @@ -2839,13 +2898,13 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__ * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyArray_MultiIterNew(4, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 752, __pyx_L1_error) + __pyx_t_1 = PyArray_MultiIterNew(4, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 745, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":751 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":744 * return PyArray_MultiIterNew(3, a, b, c) * * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<< @@ -2864,7 +2923,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__ return __pyx_r; } -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":754 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":747 * return PyArray_MultiIterNew(4, a, b, c, d) * * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<< @@ -2881,7 +2940,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__ int __pyx_clineno = 0; __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":755 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":748 * * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): * return PyArray_MultiIterNew(5, a, b, c, d, e) # <<<<<<<<<<<<<< @@ -2889,13 +2948,13 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__ * cdef inline tuple PyDataType_SHAPE(dtype d): */ __Pyx_XDECREF(__pyx_r); - __pyx_t_1 = PyArray_MultiIterNew(5, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d), ((void *)__pyx_v_e)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 755, __pyx_L1_error) + __pyx_t_1 = PyArray_MultiIterNew(5, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d), ((void *)__pyx_v_e)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 748, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":754 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":747 * return PyArray_MultiIterNew(4, a, b, c, d) * * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<< @@ -2914,7 +2973,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__ return __pyx_r; } -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":757 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":750 * return PyArray_MultiIterNew(5, a, b, c, d, e) * * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<< @@ -2928,7 +2987,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__ int __pyx_t_1; __Pyx_RefNannySetupContext("PyDataType_SHAPE", 0); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":758 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":751 * * cdef inline tuple PyDataType_SHAPE(dtype d): * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<< @@ -2938,7 +2997,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__ __pyx_t_1 = (PyDataType_HASSUBARRAY(__pyx_v_d) != 0); if (__pyx_t_1) { - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":759 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":752 * cdef inline tuple PyDataType_SHAPE(dtype d): * if PyDataType_HASSUBARRAY(d): * return d.subarray.shape # <<<<<<<<<<<<<< @@ -2950,794 +3009,45 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__ __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape); goto __pyx_L0; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":758 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":751 * * cdef inline tuple PyDataType_SHAPE(dtype d): * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<< - * return d.subarray.shape - * else: - */ - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":761 - * return d.subarray.shape - * else: - * return () # <<<<<<<<<<<<<< - * - * cdef inline char* _util_dtypestring(dtype descr, char* f, char* end, int* offset) except NULL: - */ - /*else*/ { - __Pyx_XDECREF(__pyx_r); - __Pyx_INCREF(__pyx_empty_tuple); - __pyx_r = __pyx_empty_tuple; - goto __pyx_L0; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":757 - * return PyArray_MultiIterNew(5, a, b, c, d, e) - * - * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<< - * if PyDataType_HASSUBARRAY(d): - * return d.subarray.shape - */ - - /* function exit code */ - __pyx_L0:; - __Pyx_XGIVEREF(__pyx_r); - __Pyx_RefNannyFinishContext(); - return __pyx_r; -} - -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":763 - * return () - * - * cdef inline char* _util_dtypestring(dtype descr, char* f, char* end, int* offset) except NULL: # <<<<<<<<<<<<<< - * # Recursive utility function used in __getbuffer__ to get format - * # string. The new location in the format string is returned. - */ - -static CYTHON_INLINE char *__pyx_f_5numpy__util_dtypestring(PyArray_Descr *__pyx_v_descr, char *__pyx_v_f, char *__pyx_v_end, int *__pyx_v_offset) { - PyArray_Descr *__pyx_v_child = 0; - int __pyx_v_endian_detector; - int __pyx_v_little_endian; - PyObject *__pyx_v_fields = 0; - PyObject *__pyx_v_childname = NULL; - PyObject *__pyx_v_new_offset = NULL; - PyObject *__pyx_v_t = NULL; - char *__pyx_r; - __Pyx_RefNannyDeclarations - PyObject *__pyx_t_1 = NULL; - Py_ssize_t __pyx_t_2; - PyObject *__pyx_t_3 = NULL; - PyObject *__pyx_t_4 = NULL; - int __pyx_t_5; - int __pyx_t_6; - int __pyx_t_7; - long __pyx_t_8; - char *__pyx_t_9; - int __pyx_lineno = 0; - const char *__pyx_filename = NULL; - int __pyx_clineno = 0; - __Pyx_RefNannySetupContext("_util_dtypestring", 0); - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":768 - * - * cdef dtype child - * cdef int endian_detector = 1 # <<<<<<<<<<<<<< - * cdef bint little_endian = ((&endian_detector)[0] != 0) - * cdef tuple fields - */ - __pyx_v_endian_detector = 1; - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":769 - * cdef dtype child - * cdef int endian_detector = 1 - * cdef bint little_endian = ((&endian_detector)[0] != 0) # <<<<<<<<<<<<<< - * cdef tuple fields - * - */ - __pyx_v_little_endian = ((((char *)(&__pyx_v_endian_detector))[0]) != 0); - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":772 - * cdef tuple fields - * - * for childname in descr.names: # <<<<<<<<<<<<<< - * fields = descr.fields[childname] - * child, new_offset = fields - */ - if (unlikely(__pyx_v_descr->names == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); - __PYX_ERR(1, 772, __pyx_L1_error) - } - __pyx_t_1 = __pyx_v_descr->names; __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = 0; - for (;;) { - if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_1)) break; - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_3); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(1, 772, __pyx_L1_error) - #else - __pyx_t_3 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 772, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - #endif - __Pyx_XDECREF_SET(__pyx_v_childname, __pyx_t_3); - __pyx_t_3 = 0; - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":773 - * - * for childname in descr.names: - * fields = descr.fields[childname] # <<<<<<<<<<<<<< - * child, new_offset = fields - * - */ - if (unlikely(__pyx_v_descr->fields == Py_None)) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); - __PYX_ERR(1, 773, __pyx_L1_error) - } - __pyx_t_3 = __Pyx_PyDict_GetItem(__pyx_v_descr->fields, __pyx_v_childname); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 773, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - if (!(likely(PyTuple_CheckExact(__pyx_t_3))||((__pyx_t_3) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "tuple", Py_TYPE(__pyx_t_3)->tp_name), 0))) __PYX_ERR(1, 773, __pyx_L1_error) - __Pyx_XDECREF_SET(__pyx_v_fields, ((PyObject*)__pyx_t_3)); - __pyx_t_3 = 0; - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":774 - * for childname in descr.names: - * fields = descr.fields[childname] - * child, new_offset = fields # <<<<<<<<<<<<<< - * - * if (end - f) - (new_offset - offset[0]) < 15: - */ - if (likely(__pyx_v_fields != Py_None)) { - PyObject* sequence = __pyx_v_fields; - Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); - if (unlikely(size != 2)) { - if (size > 2) __Pyx_RaiseTooManyValuesError(2); - else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); - __PYX_ERR(1, 774, __pyx_L1_error) - } - #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS - __pyx_t_3 = PyTuple_GET_ITEM(sequence, 0); - __pyx_t_4 = PyTuple_GET_ITEM(sequence, 1); - __Pyx_INCREF(__pyx_t_3); - __Pyx_INCREF(__pyx_t_4); - #else - __pyx_t_3 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 774, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 774, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - #endif - } else { - __Pyx_RaiseNoneNotIterableError(); __PYX_ERR(1, 774, __pyx_L1_error) - } - if (!(likely(((__pyx_t_3) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_3, __pyx_ptype_5numpy_dtype))))) __PYX_ERR(1, 774, __pyx_L1_error) - __Pyx_XDECREF_SET(__pyx_v_child, ((PyArray_Descr *)__pyx_t_3)); - __pyx_t_3 = 0; - __Pyx_XDECREF_SET(__pyx_v_new_offset, __pyx_t_4); - __pyx_t_4 = 0; - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":776 - * child, new_offset = fields - * - * if (end - f) - (new_offset - offset[0]) < 15: # <<<<<<<<<<<<<< - * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") - * - */ - __pyx_t_4 = __Pyx_PyInt_From_int((__pyx_v_offset[0])); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 776, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyNumber_Subtract(__pyx_v_new_offset, __pyx_t_4); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 776, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_5 = __Pyx_PyInt_As_int(__pyx_t_3); if (unlikely((__pyx_t_5 == (int)-1) && PyErr_Occurred())) __PYX_ERR(1, 776, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_6 = ((((__pyx_v_end - __pyx_v_f) - ((int)__pyx_t_5)) < 15) != 0); - if (unlikely(__pyx_t_6)) { - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":777 - * - * if (end - f) - (new_offset - offset[0]) < 15: - * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") # <<<<<<<<<<<<<< - * - * if ((child.byteorder == c'>' and little_endian) or - */ - __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_RuntimeError, __pyx_tuple__3, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 777, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_Raise(__pyx_t_3, 0, 0, 0); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __PYX_ERR(1, 777, __pyx_L1_error) - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":776 - * child, new_offset = fields - * - * if (end - f) - (new_offset - offset[0]) < 15: # <<<<<<<<<<<<<< - * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") - * - */ - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":779 - * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") - * - * if ((child.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<< - * (child.byteorder == c'<' and not little_endian)): - * raise ValueError(u"Non-native byte order not supported") - */ - __pyx_t_7 = ((__pyx_v_child->byteorder == '>') != 0); - if (!__pyx_t_7) { - goto __pyx_L8_next_or; - } else { - } - __pyx_t_7 = (__pyx_v_little_endian != 0); - if (!__pyx_t_7) { - } else { - __pyx_t_6 = __pyx_t_7; - goto __pyx_L7_bool_binop_done; - } - __pyx_L8_next_or:; - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":780 - * - * if ((child.byteorder == c'>' and little_endian) or - * (child.byteorder == c'<' and not little_endian)): # <<<<<<<<<<<<<< - * raise ValueError(u"Non-native byte order not supported") - * # One could encode it in the format string and have Cython - */ - __pyx_t_7 = ((__pyx_v_child->byteorder == '<') != 0); - if (__pyx_t_7) { - } else { - __pyx_t_6 = __pyx_t_7; - goto __pyx_L7_bool_binop_done; - } - __pyx_t_7 = ((!(__pyx_v_little_endian != 0)) != 0); - __pyx_t_6 = __pyx_t_7; - __pyx_L7_bool_binop_done:; - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":779 - * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") - * - * if ((child.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<< - * (child.byteorder == c'<' and not little_endian)): - * raise ValueError(u"Non-native byte order not supported") - */ - if (unlikely(__pyx_t_6)) { - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":781 - * if ((child.byteorder == c'>' and little_endian) or - * (child.byteorder == c'<' and not little_endian)): - * raise ValueError(u"Non-native byte order not supported") # <<<<<<<<<<<<<< - * # One could encode it in the format string and have Cython - * # complain instead, BUT: < and > in format strings also imply - */ - __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_tuple__4, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 781, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __Pyx_Raise(__pyx_t_3, 0, 0, 0); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __PYX_ERR(1, 781, __pyx_L1_error) - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":779 - * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") - * - * if ((child.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<< - * (child.byteorder == c'<' and not little_endian)): - * raise ValueError(u"Non-native byte order not supported") - */ - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":791 - * - * # Output padding bytes - * while offset[0] < new_offset: # <<<<<<<<<<<<<< - * f[0] = 120 # "x"; pad byte - * f += 1 - */ - while (1) { - __pyx_t_3 = __Pyx_PyInt_From_int((__pyx_v_offset[0])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 791, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyObject_RichCompare(__pyx_t_3, __pyx_v_new_offset, Py_LT); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 791, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 791, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (!__pyx_t_6) break; - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":792 - * # Output padding bytes - * while offset[0] < new_offset: - * f[0] = 120 # "x"; pad byte # <<<<<<<<<<<<<< - * f += 1 - * offset[0] += 1 - */ - (__pyx_v_f[0]) = 0x78; - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":793 - * while offset[0] < new_offset: - * f[0] = 120 # "x"; pad byte - * f += 1 # <<<<<<<<<<<<<< - * offset[0] += 1 - * - */ - __pyx_v_f = (__pyx_v_f + 1); - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":794 - * f[0] = 120 # "x"; pad byte - * f += 1 - * offset[0] += 1 # <<<<<<<<<<<<<< - * - * offset[0] += child.itemsize - */ - __pyx_t_8 = 0; - (__pyx_v_offset[__pyx_t_8]) = ((__pyx_v_offset[__pyx_t_8]) + 1); - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":796 - * offset[0] += 1 - * - * offset[0] += child.itemsize # <<<<<<<<<<<<<< - * - * if not PyDataType_HASFIELDS(child): - */ - __pyx_t_8 = 0; - (__pyx_v_offset[__pyx_t_8]) = ((__pyx_v_offset[__pyx_t_8]) + __pyx_v_child->elsize); - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":798 - * offset[0] += child.itemsize - * - * if not PyDataType_HASFIELDS(child): # <<<<<<<<<<<<<< - * t = child.type_num - * if end - f < 5: - */ - __pyx_t_6 = ((!(PyDataType_HASFIELDS(__pyx_v_child) != 0)) != 0); - if (__pyx_t_6) { - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":799 - * - * if not PyDataType_HASFIELDS(child): - * t = child.type_num # <<<<<<<<<<<<<< - * if end - f < 5: - * raise RuntimeError(u"Format string allocated too short.") - */ - __pyx_t_4 = __Pyx_PyInt_From_int(__pyx_v_child->type_num); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 799, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_XDECREF_SET(__pyx_v_t, __pyx_t_4); - __pyx_t_4 = 0; - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":800 - * if not PyDataType_HASFIELDS(child): - * t = child.type_num - * if end - f < 5: # <<<<<<<<<<<<<< - * raise RuntimeError(u"Format string allocated too short.") - * - */ - __pyx_t_6 = (((__pyx_v_end - __pyx_v_f) < 5) != 0); - if (unlikely(__pyx_t_6)) { - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":801 - * t = child.type_num - * if end - f < 5: - * raise RuntimeError(u"Format string allocated too short.") # <<<<<<<<<<<<<< - * - * # Until ticket #99 is fixed, use integers to avoid warnings - */ - __pyx_t_4 = __Pyx_PyObject_Call(__pyx_builtin_RuntimeError, __pyx_tuple__5, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 801, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_Raise(__pyx_t_4, 0, 0, 0); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __PYX_ERR(1, 801, __pyx_L1_error) - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":800 - * if not PyDataType_HASFIELDS(child): - * t = child.type_num - * if end - f < 5: # <<<<<<<<<<<<<< - * raise RuntimeError(u"Format string allocated too short.") - * - */ - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":804 - * - * # Until ticket #99 is fixed, use integers to avoid warnings - * if t == NPY_BYTE: f[0] = 98 #"b" # <<<<<<<<<<<<<< - * elif t == NPY_UBYTE: f[0] = 66 #"B" - * elif t == NPY_SHORT: f[0] = 104 #"h" - */ - __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_BYTE); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 804, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 804, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 804, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 98; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":805 - * # Until ticket #99 is fixed, use integers to avoid warnings - * if t == NPY_BYTE: f[0] = 98 #"b" - * elif t == NPY_UBYTE: f[0] = 66 #"B" # <<<<<<<<<<<<<< - * elif t == NPY_SHORT: f[0] = 104 #"h" - * elif t == NPY_USHORT: f[0] = 72 #"H" - */ - __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_UBYTE); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 805, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 805, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 805, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 66; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":806 - * if t == NPY_BYTE: f[0] = 98 #"b" - * elif t == NPY_UBYTE: f[0] = 66 #"B" - * elif t == NPY_SHORT: f[0] = 104 #"h" # <<<<<<<<<<<<<< - * elif t == NPY_USHORT: f[0] = 72 #"H" - * elif t == NPY_INT: f[0] = 105 #"i" - */ - __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_SHORT); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 806, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 806, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 806, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 0x68; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":807 - * elif t == NPY_UBYTE: f[0] = 66 #"B" - * elif t == NPY_SHORT: f[0] = 104 #"h" - * elif t == NPY_USHORT: f[0] = 72 #"H" # <<<<<<<<<<<<<< - * elif t == NPY_INT: f[0] = 105 #"i" - * elif t == NPY_UINT: f[0] = 73 #"I" - */ - __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_USHORT); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 807, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 807, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 807, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 72; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":808 - * elif t == NPY_SHORT: f[0] = 104 #"h" - * elif t == NPY_USHORT: f[0] = 72 #"H" - * elif t == NPY_INT: f[0] = 105 #"i" # <<<<<<<<<<<<<< - * elif t == NPY_UINT: f[0] = 73 #"I" - * elif t == NPY_LONG: f[0] = 108 #"l" - */ - __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_INT); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 808, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 808, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 808, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 0x69; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":809 - * elif t == NPY_USHORT: f[0] = 72 #"H" - * elif t == NPY_INT: f[0] = 105 #"i" - * elif t == NPY_UINT: f[0] = 73 #"I" # <<<<<<<<<<<<<< - * elif t == NPY_LONG: f[0] = 108 #"l" - * elif t == NPY_ULONG: f[0] = 76 #"L" - */ - __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_UINT); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 809, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 809, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 809, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 73; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":810 - * elif t == NPY_INT: f[0] = 105 #"i" - * elif t == NPY_UINT: f[0] = 73 #"I" - * elif t == NPY_LONG: f[0] = 108 #"l" # <<<<<<<<<<<<<< - * elif t == NPY_ULONG: f[0] = 76 #"L" - * elif t == NPY_LONGLONG: f[0] = 113 #"q" - */ - __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_LONG); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 810, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 810, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 810, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 0x6C; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":811 - * elif t == NPY_UINT: f[0] = 73 #"I" - * elif t == NPY_LONG: f[0] = 108 #"l" - * elif t == NPY_ULONG: f[0] = 76 #"L" # <<<<<<<<<<<<<< - * elif t == NPY_LONGLONG: f[0] = 113 #"q" - * elif t == NPY_ULONGLONG: f[0] = 81 #"Q" - */ - __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_ULONG); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 811, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 811, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 811, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 76; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":812 - * elif t == NPY_LONG: f[0] = 108 #"l" - * elif t == NPY_ULONG: f[0] = 76 #"L" - * elif t == NPY_LONGLONG: f[0] = 113 #"q" # <<<<<<<<<<<<<< - * elif t == NPY_ULONGLONG: f[0] = 81 #"Q" - * elif t == NPY_FLOAT: f[0] = 102 #"f" - */ - __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_LONGLONG); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 812, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 812, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 812, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 0x71; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":813 - * elif t == NPY_ULONG: f[0] = 76 #"L" - * elif t == NPY_LONGLONG: f[0] = 113 #"q" - * elif t == NPY_ULONGLONG: f[0] = 81 #"Q" # <<<<<<<<<<<<<< - * elif t == NPY_FLOAT: f[0] = 102 #"f" - * elif t == NPY_DOUBLE: f[0] = 100 #"d" - */ - __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_ULONGLONG); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 813, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 813, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 813, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 81; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":814 - * elif t == NPY_LONGLONG: f[0] = 113 #"q" - * elif t == NPY_ULONGLONG: f[0] = 81 #"Q" - * elif t == NPY_FLOAT: f[0] = 102 #"f" # <<<<<<<<<<<<<< - * elif t == NPY_DOUBLE: f[0] = 100 #"d" - * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" - */ - __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_FLOAT); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 814, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 814, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 814, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 0x66; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":815 - * elif t == NPY_ULONGLONG: f[0] = 81 #"Q" - * elif t == NPY_FLOAT: f[0] = 102 #"f" - * elif t == NPY_DOUBLE: f[0] = 100 #"d" # <<<<<<<<<<<<<< - * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" - * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf - */ - __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_DOUBLE); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 815, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 815, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 815, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 0x64; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":816 - * elif t == NPY_FLOAT: f[0] = 102 #"f" - * elif t == NPY_DOUBLE: f[0] = 100 #"d" - * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" # <<<<<<<<<<<<<< - * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf - * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd - */ - __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_LONGDOUBLE); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 816, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 816, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 816, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 0x67; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":817 - * elif t == NPY_DOUBLE: f[0] = 100 #"d" - * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" - * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf # <<<<<<<<<<<<<< - * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd - * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg - */ - __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_CFLOAT); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 817, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 817, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 817, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 90; - (__pyx_v_f[1]) = 0x66; - __pyx_v_f = (__pyx_v_f + 1); - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":818 - * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" - * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf - * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd # <<<<<<<<<<<<<< - * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg - * elif t == NPY_OBJECT: f[0] = 79 #"O" - */ - __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_CDOUBLE); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 818, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 818, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 818, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 90; - (__pyx_v_f[1]) = 0x64; - __pyx_v_f = (__pyx_v_f + 1); - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":819 - * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf - * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd - * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg # <<<<<<<<<<<<<< - * elif t == NPY_OBJECT: f[0] = 79 #"O" - * else: - */ - __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_CLONGDOUBLE); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 819, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 819, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 819, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - if (__pyx_t_6) { - (__pyx_v_f[0]) = 90; - (__pyx_v_f[1]) = 0x67; - __pyx_v_f = (__pyx_v_f + 1); - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":820 - * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd - * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg - * elif t == NPY_OBJECT: f[0] = 79 #"O" # <<<<<<<<<<<<<< - * else: - * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) - */ - __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_OBJECT); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 820, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 820, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(1, 820, __pyx_L1_error) - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - if (likely(__pyx_t_6)) { - (__pyx_v_f[0]) = 79; - goto __pyx_L15; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":822 - * elif t == NPY_OBJECT: f[0] = 79 #"O" - * else: - * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) # <<<<<<<<<<<<<< - * f += 1 - * else: - */ - /*else*/ { - __pyx_t_3 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_unknown_dtype_code_in_numpy_pxd, __pyx_v_t); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 822, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_3); - __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_builtin_ValueError, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 822, __pyx_L1_error) - __Pyx_GOTREF(__pyx_t_4); - __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; - __Pyx_Raise(__pyx_t_4, 0, 0, 0); - __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; - __PYX_ERR(1, 822, __pyx_L1_error) - } - __pyx_L15:; - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":823 - * else: - * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) - * f += 1 # <<<<<<<<<<<<<< - * else: - * # Cython ignores struct boundary information ("T{...}"), - */ - __pyx_v_f = (__pyx_v_f + 1); - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":798 - * offset[0] += child.itemsize - * - * if not PyDataType_HASFIELDS(child): # <<<<<<<<<<<<<< - * t = child.type_num - * if end - f < 5: - */ - goto __pyx_L13; - } - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":827 - * # Cython ignores struct boundary information ("T{...}"), - * # so don't output it - * f = _util_dtypestring(child, f, end, offset) # <<<<<<<<<<<<<< - * return f - * - */ - /*else*/ { - __pyx_t_9 = __pyx_f_5numpy__util_dtypestring(__pyx_v_child, __pyx_v_f, __pyx_v_end, __pyx_v_offset); if (unlikely(__pyx_t_9 == ((char *)NULL))) __PYX_ERR(1, 827, __pyx_L1_error) - __pyx_v_f = __pyx_t_9; - } - __pyx_L13:; - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":772 - * cdef tuple fields - * - * for childname in descr.names: # <<<<<<<<<<<<<< - * fields = descr.fields[childname] - * child, new_offset = fields + * return d.subarray.shape + * else: */ } - __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":828 - * # so don't output it - * f = _util_dtypestring(child, f, end, offset) - * return f # <<<<<<<<<<<<<< + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":754 + * return d.subarray.shape + * else: + * return () # <<<<<<<<<<<<<< * * */ - __pyx_r = __pyx_v_f; - goto __pyx_L0; + /*else*/ { + __Pyx_XDECREF(__pyx_r); + __Pyx_INCREF(__pyx_empty_tuple); + __pyx_r = __pyx_empty_tuple; + goto __pyx_L0; + } - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":763 - * return () + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":750 + * return PyArray_MultiIterNew(5, a, b, c, d, e) * - * cdef inline char* _util_dtypestring(dtype descr, char* f, char* end, int* offset) except NULL: # <<<<<<<<<<<<<< - * # Recursive utility function used in __getbuffer__ to get format - * # string. The new location in the format string is returned. + * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<< + * if PyDataType_HASSUBARRAY(d): + * return d.subarray.shape */ /* function exit code */ - __pyx_L1_error:; - __Pyx_XDECREF(__pyx_t_1); - __Pyx_XDECREF(__pyx_t_3); - __Pyx_XDECREF(__pyx_t_4); - __Pyx_AddTraceback("numpy._util_dtypestring", __pyx_clineno, __pyx_lineno, __pyx_filename); - __pyx_r = NULL; __pyx_L0:; - __Pyx_XDECREF((PyObject *)__pyx_v_child); - __Pyx_XDECREF(__pyx_v_fields); - __Pyx_XDECREF(__pyx_v_childname); - __Pyx_XDECREF(__pyx_v_new_offset); - __Pyx_XDECREF(__pyx_v_t); + __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":943 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":929 * int _import_umath() except -1 * * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<< @@ -3749,7 +3059,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("set_array_base", 0); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":944 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":930 * * cdef inline void set_array_base(ndarray arr, object base): * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<< @@ -3758,7 +3068,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a */ Py_INCREF(__pyx_v_base); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":945 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":931 * cdef inline void set_array_base(ndarray arr, object base): * Py_INCREF(base) # important to do this before stealing the reference below! * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<< @@ -3767,7 +3077,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a */ (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base)); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":943 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":929 * int _import_umath() except -1 * * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<< @@ -3779,7 +3089,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a __Pyx_RefNannyFinishContext(); } -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":947 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":933 * PyArray_SetBaseObject(arr, base) * * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<< @@ -3794,7 +3104,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py int __pyx_t_1; __Pyx_RefNannySetupContext("get_array_base", 0); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":948 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":934 * * cdef inline object get_array_base(ndarray arr): * base = PyArray_BASE(arr) # <<<<<<<<<<<<<< @@ -3803,7 +3113,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py */ __pyx_v_base = PyArray_BASE(__pyx_v_arr); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":949 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":935 * cdef inline object get_array_base(ndarray arr): * base = PyArray_BASE(arr) * if base is NULL: # <<<<<<<<<<<<<< @@ -3813,7 +3123,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py __pyx_t_1 = ((__pyx_v_base == NULL) != 0); if (__pyx_t_1) { - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":950 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":936 * base = PyArray_BASE(arr) * if base is NULL: * return None # <<<<<<<<<<<<<< @@ -3824,7 +3134,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":949 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":935 * cdef inline object get_array_base(ndarray arr): * base = PyArray_BASE(arr) * if base is NULL: # <<<<<<<<<<<<<< @@ -3833,7 +3143,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py */ } - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":951 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":937 * if base is NULL: * return None * return base # <<<<<<<<<<<<<< @@ -3845,7 +3155,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py __pyx_r = ((PyObject *)__pyx_v_base); goto __pyx_L0; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":947 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":933 * PyArray_SetBaseObject(arr, base) * * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<< @@ -3860,7 +3170,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py return __pyx_r; } -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":955 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":941 * # Versions of the import_* functions which are more suitable for * # Cython code. * cdef inline int import_array() except -1: # <<<<<<<<<<<<<< @@ -3884,7 +3194,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) { int __pyx_clineno = 0; __Pyx_RefNannySetupContext("import_array", 0); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":956 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":942 * # Cython code. * cdef inline int import_array() except -1: * try: # <<<<<<<<<<<<<< @@ -3900,16 +3210,16 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) { __Pyx_XGOTREF(__pyx_t_3); /*try:*/ { - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":957 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":943 * cdef inline int import_array() except -1: * try: * __pyx_import_array() # <<<<<<<<<<<<<< * except Exception: * raise ImportError("numpy.core.multiarray failed to import") */ - __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 957, __pyx_L3_error) + __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 943, __pyx_L3_error) - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":956 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":942 * # Cython code. * cdef inline int import_array() except -1: * try: # <<<<<<<<<<<<<< @@ -3923,7 +3233,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) { goto __pyx_L8_try_end; __pyx_L3_error:; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":958 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":944 * try: * __pyx_import_array() * except Exception: # <<<<<<<<<<<<<< @@ -3933,28 +3243,28 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) { __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0]))); if (__pyx_t_4) { __Pyx_AddTraceback("numpy.import_array", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 958, __pyx_L5_except_error) + if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 944, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GOTREF(__pyx_t_6); __Pyx_GOTREF(__pyx_t_7); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":959 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":945 * __pyx_import_array() * except Exception: * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<< * * cdef inline int import_umath() except -1: */ - __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__6, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 959, __pyx_L5_except_error) + __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__3, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 945, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_8); __Pyx_Raise(__pyx_t_8, 0, 0, 0); __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __PYX_ERR(1, 959, __pyx_L5_except_error) + __PYX_ERR(1, 945, __pyx_L5_except_error) } goto __pyx_L5_except_error; __pyx_L5_except_error:; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":956 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":942 * # Cython code. * cdef inline int import_array() except -1: * try: # <<<<<<<<<<<<<< @@ -3969,7 +3279,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) { __pyx_L8_try_end:; } - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":955 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":941 * # Versions of the import_* functions which are more suitable for * # Cython code. * cdef inline int import_array() except -1: # <<<<<<<<<<<<<< @@ -3992,7 +3302,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) { return __pyx_r; } -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":961 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":947 * raise ImportError("numpy.core.multiarray failed to import") * * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<< @@ -4016,7 +3326,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) { int __pyx_clineno = 0; __Pyx_RefNannySetupContext("import_umath", 0); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":962 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":948 * * cdef inline int import_umath() except -1: * try: # <<<<<<<<<<<<<< @@ -4032,16 +3342,16 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) { __Pyx_XGOTREF(__pyx_t_3); /*try:*/ { - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":963 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":949 * cdef inline int import_umath() except -1: * try: * _import_umath() # <<<<<<<<<<<<<< * except Exception: * raise ImportError("numpy.core.umath failed to import") */ - __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 963, __pyx_L3_error) + __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 949, __pyx_L3_error) - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":962 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":948 * * cdef inline int import_umath() except -1: * try: # <<<<<<<<<<<<<< @@ -4055,7 +3365,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) { goto __pyx_L8_try_end; __pyx_L3_error:; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":964 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":950 * try: * _import_umath() * except Exception: # <<<<<<<<<<<<<< @@ -4065,28 +3375,28 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) { __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0]))); if (__pyx_t_4) { __Pyx_AddTraceback("numpy.import_umath", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 964, __pyx_L5_except_error) + if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 950, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GOTREF(__pyx_t_6); __Pyx_GOTREF(__pyx_t_7); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":965 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":951 * _import_umath() * except Exception: * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<< * * cdef inline int import_ufunc() except -1: */ - __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__7, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 965, __pyx_L5_except_error) + __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__4, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 951, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_8); __Pyx_Raise(__pyx_t_8, 0, 0, 0); __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __PYX_ERR(1, 965, __pyx_L5_except_error) + __PYX_ERR(1, 951, __pyx_L5_except_error) } goto __pyx_L5_except_error; __pyx_L5_except_error:; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":962 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":948 * * cdef inline int import_umath() except -1: * try: # <<<<<<<<<<<<<< @@ -4101,7 +3411,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) { __pyx_L8_try_end:; } - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":961 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":947 * raise ImportError("numpy.core.multiarray failed to import") * * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<< @@ -4124,7 +3434,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) { return __pyx_r; } -/* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":967 +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":953 * raise ImportError("numpy.core.umath failed to import") * * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<< @@ -4148,7 +3458,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) { int __pyx_clineno = 0; __Pyx_RefNannySetupContext("import_ufunc", 0); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":968 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":954 * * cdef inline int import_ufunc() except -1: * try: # <<<<<<<<<<<<<< @@ -4164,16 +3474,16 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) { __Pyx_XGOTREF(__pyx_t_3); /*try:*/ { - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":969 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":955 * cdef inline int import_ufunc() except -1: * try: * _import_umath() # <<<<<<<<<<<<<< * except Exception: * raise ImportError("numpy.core.umath failed to import") */ - __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 969, __pyx_L3_error) + __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 955, __pyx_L3_error) - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":968 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":954 * * cdef inline int import_ufunc() except -1: * try: # <<<<<<<<<<<<<< @@ -4187,7 +3497,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) { goto __pyx_L8_try_end; __pyx_L3_error:; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":970 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":956 * try: * _import_umath() * except Exception: # <<<<<<<<<<<<<< @@ -4197,28 +3507,28 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) { __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0]))); if (__pyx_t_4) { __Pyx_AddTraceback("numpy.import_ufunc", __pyx_clineno, __pyx_lineno, __pyx_filename); - if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 970, __pyx_L5_except_error) + if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 956, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GOTREF(__pyx_t_6); __Pyx_GOTREF(__pyx_t_7); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":971 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":957 * _import_umath() * except Exception: * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<< * * cdef extern from *: */ - __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__7, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 971, __pyx_L5_except_error) + __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__4, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 957, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_8); __Pyx_Raise(__pyx_t_8, 0, 0, 0); __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; - __PYX_ERR(1, 971, __pyx_L5_except_error) + __PYX_ERR(1, 957, __pyx_L5_except_error) } goto __pyx_L5_except_error; __pyx_L5_except_error:; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":968 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":954 * * cdef inline int import_ufunc() except -1: * try: # <<<<<<<<<<<<<< @@ -4233,7 +3543,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) { __pyx_L8_try_end:; } - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":967 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":953 * raise ImportError("numpy.core.umath failed to import") * * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<< @@ -4256,6 +3566,180 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) { return __pyx_r; } +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":967 + * + * + * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<< + * """ + * Cython equivalent of `isinstance(obj, np.timedelta64)` + */ + +static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) { + int __pyx_r; + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("is_timedelta64_object", 0); + + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":979 + * bool + * """ + * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<< + * + * + */ + __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type)); + goto __pyx_L0; + + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":967 + * + * + * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<< + * """ + * Cython equivalent of `isinstance(obj, np.timedelta64)` + */ + + /* function exit code */ + __pyx_L0:; + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":982 + * + * + * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<< + * """ + * Cython equivalent of `isinstance(obj, np.datetime64)` + */ + +static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) { + int __pyx_r; + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("is_datetime64_object", 0); + + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":994 + * bool + * """ + * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<< + * + * + */ + __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type)); + goto __pyx_L0; + + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":982 + * + * + * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<< + * """ + * Cython equivalent of `isinstance(obj, np.datetime64)` + */ + + /* function exit code */ + __pyx_L0:; + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":997 + * + * + * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the int64 value underlying scalar numpy datetime64 object + */ + +static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) { + npy_datetime __pyx_r; + + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":1004 + * also needed. That can be found using `get_datetime64_unit`. + * """ + * return (obj).obval # <<<<<<<<<<<<<< + * + * + */ + __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval; + goto __pyx_L0; + + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":997 + * + * + * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the int64 value underlying scalar numpy datetime64 object + */ + + /* function exit code */ + __pyx_L0:; + return __pyx_r; +} + +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":1007 + * + * + * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the int64 value underlying scalar numpy timedelta64 object + */ + +static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) { + npy_timedelta __pyx_r; + + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":1011 + * returns the int64 value underlying scalar numpy timedelta64 object + * """ + * return (obj).obval # <<<<<<<<<<<<<< + * + * + */ + __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval; + goto __pyx_L0; + + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":1007 + * + * + * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the int64 value underlying scalar numpy timedelta64 object + */ + + /* function exit code */ + __pyx_L0:; + return __pyx_r; +} + +/* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":1014 + * + * + * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the unit part of the dtype for a numpy datetime64 object. + */ + +static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) { + NPY_DATETIMEUNIT __pyx_r; + + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":1018 + * returns the unit part of the dtype for a numpy datetime64 object. + * """ + * return (obj).obmeta.base # <<<<<<<<<<<<<< + */ + __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base); + goto __pyx_L0; + + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":1014 + * + * + * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the unit part of the dtype for a numpy datetime64 object. + */ + + /* function exit code */ + __pyx_L0:; + return __pyx_r; +} + static PyMethodDef __pyx_methods[] = { {0, 0, 0, 0} }; @@ -4303,11 +3787,7 @@ static struct PyModuleDef __pyx_moduledef = { static __Pyx_StringTabEntry __pyx_string_tab[] = { {&__pyx_kp_u_1_2_w_outlier_must_be_smaller_th, __pyx_k_1_2_w_outlier_must_be_smaller_th, sizeof(__pyx_k_1_2_w_outlier_must_be_smaller_th), 0, 1, 0, 0}, - {&__pyx_kp_u_Format_string_allocated_too_shor, __pyx_k_Format_string_allocated_too_shor, sizeof(__pyx_k_Format_string_allocated_too_shor), 0, 1, 0, 0}, - {&__pyx_kp_u_Format_string_allocated_too_shor_2, __pyx_k_Format_string_allocated_too_shor_2, sizeof(__pyx_k_Format_string_allocated_too_shor_2), 0, 1, 0, 0}, {&__pyx_n_s_ImportError, __pyx_k_ImportError, sizeof(__pyx_k_ImportError), 0, 0, 1, 1}, - {&__pyx_kp_u_Non_native_byte_order_not_suppor, __pyx_k_Non_native_byte_order_not_suppor, sizeof(__pyx_k_Non_native_byte_order_not_suppor), 0, 1, 0, 0}, - {&__pyx_n_s_RuntimeError, __pyx_k_RuntimeError, sizeof(__pyx_k_RuntimeError), 0, 0, 1, 1}, {&__pyx_n_s_ValueError, __pyx_k_ValueError, sizeof(__pyx_k_ValueError), 0, 0, 1, 1}, {&__pyx_n_s_a, __pyx_k_a, sizeof(__pyx_k_a), 0, 0, 1, 1}, {&__pyx_n_s_abs, __pyx_k_abs, sizeof(__pyx_k_abs), 0, 0, 1, 1}, @@ -4341,7 +3821,6 @@ static __Pyx_StringTabEntry __pyx_string_tab[] = { {&__pyx_n_s_sz, __pyx_k_sz, sizeof(__pyx_k_sz), 0, 0, 1, 1}, {&__pyx_n_s_t, __pyx_k_t, sizeof(__pyx_k_t), 0, 0, 1, 1}, {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, - {&__pyx_kp_u_unknown_dtype_code_in_numpy_pxd, __pyx_k_unknown_dtype_code_in_numpy_pxd, sizeof(__pyx_k_unknown_dtype_code_in_numpy_pxd), 0, 1, 0, 0}, {&__pyx_n_s_v, __pyx_k_v, sizeof(__pyx_k_v), 0, 0, 1, 1}, {&__pyx_n_s_w_outlier, __pyx_k_w_outlier, sizeof(__pyx_k_w_outlier), 0, 0, 1, 1}, {&__pyx_n_s_x, __pyx_k_x, sizeof(__pyx_k_x), 0, 0, 1, 1}, @@ -4352,8 +3831,7 @@ static __Pyx_StringTabEntry __pyx_string_tab[] = { static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { __pyx_builtin_ValueError = __Pyx_GetBuiltinName(__pyx_n_s_ValueError); if (!__pyx_builtin_ValueError) __PYX_ERR(0, 21, __pyx_L1_error) __pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_n_s_range); if (!__pyx_builtin_range) __PYX_ERR(0, 45, __pyx_L1_error) - __pyx_builtin_RuntimeError = __Pyx_GetBuiltinName(__pyx_n_s_RuntimeError); if (!__pyx_builtin_RuntimeError) __PYX_ERR(1, 777, __pyx_L1_error) - __pyx_builtin_ImportError = __Pyx_GetBuiltinName(__pyx_n_s_ImportError); if (!__pyx_builtin_ImportError) __PYX_ERR(1, 959, __pyx_L1_error) + __pyx_builtin_ImportError = __Pyx_GetBuiltinName(__pyx_n_s_ImportError); if (!__pyx_builtin_ImportError) __PYX_ERR(1, 945, __pyx_L1_error) return 0; __pyx_L1_error:; return -1; @@ -4385,60 +3863,27 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { __Pyx_GOTREF(__pyx_tuple__2); __Pyx_GIVEREF(__pyx_tuple__2); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":777 - * - * if (end - f) - (new_offset - offset[0]) < 15: - * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") # <<<<<<<<<<<<<< - * - * if ((child.byteorder == c'>' and little_endian) or - */ - __pyx_tuple__3 = PyTuple_Pack(1, __pyx_kp_u_Format_string_allocated_too_shor); if (unlikely(!__pyx_tuple__3)) __PYX_ERR(1, 777, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__3); - __Pyx_GIVEREF(__pyx_tuple__3); - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":781 - * if ((child.byteorder == c'>' and little_endian) or - * (child.byteorder == c'<' and not little_endian)): - * raise ValueError(u"Non-native byte order not supported") # <<<<<<<<<<<<<< - * # One could encode it in the format string and have Cython - * # complain instead, BUT: < and > in format strings also imply - */ - __pyx_tuple__4 = PyTuple_Pack(1, __pyx_kp_u_Non_native_byte_order_not_suppor); if (unlikely(!__pyx_tuple__4)) __PYX_ERR(1, 781, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__4); - __Pyx_GIVEREF(__pyx_tuple__4); - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":801 - * t = child.type_num - * if end - f < 5: - * raise RuntimeError(u"Format string allocated too short.") # <<<<<<<<<<<<<< - * - * # Until ticket #99 is fixed, use integers to avoid warnings - */ - __pyx_tuple__5 = PyTuple_Pack(1, __pyx_kp_u_Format_string_allocated_too_shor_2); if (unlikely(!__pyx_tuple__5)) __PYX_ERR(1, 801, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__5); - __Pyx_GIVEREF(__pyx_tuple__5); - - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":959 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":945 * __pyx_import_array() * except Exception: * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<< * * cdef inline int import_umath() except -1: */ - __pyx_tuple__6 = PyTuple_Pack(1, __pyx_kp_u_numpy_core_multiarray_failed_to); if (unlikely(!__pyx_tuple__6)) __PYX_ERR(1, 959, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__6); - __Pyx_GIVEREF(__pyx_tuple__6); + __pyx_tuple__3 = PyTuple_Pack(1, __pyx_kp_u_numpy_core_multiarray_failed_to); if (unlikely(!__pyx_tuple__3)) __PYX_ERR(1, 945, __pyx_L1_error) + __Pyx_GOTREF(__pyx_tuple__3); + __Pyx_GIVEREF(__pyx_tuple__3); - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":965 + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":951 * _import_umath() * except Exception: * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<< * * cdef inline int import_ufunc() except -1: */ - __pyx_tuple__7 = PyTuple_Pack(1, __pyx_kp_u_numpy_core_umath_failed_to_impor); if (unlikely(!__pyx_tuple__7)) __PYX_ERR(1, 965, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__7); - __Pyx_GIVEREF(__pyx_tuple__7); + __pyx_tuple__4 = PyTuple_Pack(1, __pyx_kp_u_numpy_core_umath_failed_to_impor); if (unlikely(!__pyx_tuple__4)) __PYX_ERR(1, 951, __pyx_L1_error) + __Pyx_GOTREF(__pyx_tuple__4); + __Pyx_GIVEREF(__pyx_tuple__4); /* "cdfdif_wrapper.pyx":16 * cdef inline bint p_outlier_in_range(double p_outlier): return (p_outlier >= 0) & (p_outlier <= 1) @@ -4447,10 +3892,10 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { * double a, double z, double sz, double t, double st, double p_outlier, double w_outlier): * */ - __pyx_tuple__8 = PyTuple_Pack(17, __pyx_n_s_x, __pyx_n_s_v, __pyx_n_s_sv, __pyx_n_s_a, __pyx_n_s_z, __pyx_n_s_sz, __pyx_n_s_t, __pyx_n_s_st, __pyx_n_s_p_outlier, __pyx_n_s_w_outlier, __pyx_n_s_size, __pyx_n_s_y, __pyx_n_s_boundary, __pyx_n_s_p_boundary, __pyx_n_s_params, __pyx_n_s_epsi, __pyx_n_s_i); if (unlikely(!__pyx_tuple__8)) __PYX_ERR(0, 16, __pyx_L1_error) - __Pyx_GOTREF(__pyx_tuple__8); - __Pyx_GIVEREF(__pyx_tuple__8); - __pyx_codeobj__9 = (PyObject*)__Pyx_PyCode_New(10, 0, 17, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__8, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_src_cdfdif_wrapper_pyx, __pyx_n_s_dmat_cdf_array, 16, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__9)) __PYX_ERR(0, 16, __pyx_L1_error) + __pyx_tuple__5 = PyTuple_Pack(17, __pyx_n_s_x, __pyx_n_s_v, __pyx_n_s_sv, __pyx_n_s_a, __pyx_n_s_z, __pyx_n_s_sz, __pyx_n_s_t, __pyx_n_s_st, __pyx_n_s_p_outlier, __pyx_n_s_w_outlier, __pyx_n_s_size, __pyx_n_s_y, __pyx_n_s_boundary, __pyx_n_s_p_boundary, __pyx_n_s_params, __pyx_n_s_epsi, __pyx_n_s_i); if (unlikely(!__pyx_tuple__5)) __PYX_ERR(0, 16, __pyx_L1_error) + __Pyx_GOTREF(__pyx_tuple__5); + __Pyx_GIVEREF(__pyx_tuple__5); + __pyx_codeobj__6 = (PyObject*)__Pyx_PyCode_New(10, 0, 17, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__5, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_src_cdfdif_wrapper_pyx, __pyx_n_s_dmat_cdf_array, 16, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__6)) __PYX_ERR(0, 16, __pyx_L1_error) __Pyx_RefNannyFinishContext(); return 0; __pyx_L1_error:; @@ -4524,18 +3969,38 @@ static int __Pyx_modinit_type_import_code(void) { __Pyx_ImportType_CheckSize_Warn); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 207, __pyx_L1_error) + __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 200, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_ptype_5numpy_dtype = __Pyx_ImportType(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __Pyx_ImportType_CheckSize_Ignore); - if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(1, 207, __pyx_L1_error) + if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(1, 200, __pyx_L1_error) __pyx_ptype_5numpy_flatiter = __Pyx_ImportType(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __Pyx_ImportType_CheckSize_Ignore); - if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(1, 230, __pyx_L1_error) + if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(1, 223, __pyx_L1_error) __pyx_ptype_5numpy_broadcast = __Pyx_ImportType(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __Pyx_ImportType_CheckSize_Ignore); - if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(1, 234, __pyx_L1_error) + if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(1, 227, __pyx_L1_error) __pyx_ptype_5numpy_ndarray = __Pyx_ImportType(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __Pyx_ImportType_CheckSize_Ignore); - if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(1, 246, __pyx_L1_error) + if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(1, 239, __pyx_L1_error) + __pyx_ptype_5numpy_generic = __Pyx_ImportType(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_generic) __PYX_ERR(1, 771, __pyx_L1_error) + __pyx_ptype_5numpy_number = __Pyx_ImportType(__pyx_t_1, "numpy", "number", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_number) __PYX_ERR(1, 773, __pyx_L1_error) + __pyx_ptype_5numpy_integer = __Pyx_ImportType(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_integer) __PYX_ERR(1, 775, __pyx_L1_error) + __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(1, 777, __pyx_L1_error) + __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(1, 779, __pyx_L1_error) + __pyx_ptype_5numpy_inexact = __Pyx_ImportType(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(1, 781, __pyx_L1_error) + __pyx_ptype_5numpy_floating = __Pyx_ImportType(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_floating) __PYX_ERR(1, 783, __pyx_L1_error) + __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(1, 785, __pyx_L1_error) + __pyx_ptype_5numpy_flexible = __Pyx_ImportType(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(1, 787, __pyx_L1_error) + __pyx_ptype_5numpy_character = __Pyx_ImportType(__pyx_t_1, "numpy", "character", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_character) __PYX_ERR(1, 789, __pyx_L1_error) __pyx_ptype_5numpy_ufunc = __Pyx_ImportType(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __Pyx_ImportType_CheckSize_Ignore); - if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(1, 839, __pyx_L1_error) + if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(1, 827, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_RefNannyFinishContext(); return 0; @@ -4796,12 +4261,12 @@ if (!__Pyx_RefNanny) { if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_1) < 0) __PYX_ERR(0, 2, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; - /* "../../../opt/miniconda3/envs/hddmnn_tutorial/lib/python3.7/site-packages/numpy/__init__.pxd":967 - * raise ImportError("numpy.core.umath failed to import") + /* "../../../../../users/kbera1/anaconda3/envs/test_py38/lib/python3.8/site-packages/numpy/__init__.pxd":1014 * - * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<< - * try: - * _import_umath() + * + * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the unit part of the dtype for a numpy datetime64 object. */ /*--- Wrapped vars code ---*/ @@ -6153,48 +5618,6 @@ static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject "Out of bounds on buffer access (axis %d)", axis); } -/* DictGetItem */ - #if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY -static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) { - PyObject *value; - value = PyDict_GetItemWithError(d, key); - if (unlikely(!value)) { - if (!PyErr_Occurred()) { - if (unlikely(PyTuple_Check(key))) { - PyObject* args = PyTuple_Pack(1, key); - if (likely(args)) { - PyErr_SetObject(PyExc_KeyError, args); - Py_DECREF(args); - } - } else { - PyErr_SetObject(PyExc_KeyError, key); - } - } - return NULL; - } - Py_INCREF(value); - return value; -} -#endif - -/* RaiseTooManyValuesToUnpack */ - static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) { - PyErr_Format(PyExc_ValueError, - "too many values to unpack (expected %" CYTHON_FORMAT_SSIZE_T "d)", expected); -} - -/* RaiseNeedMoreValuesToUnpack */ - static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) { - PyErr_Format(PyExc_ValueError, - "need more than %" CYTHON_FORMAT_SSIZE_T "d value%.1s to unpack", - index, (index == 1) ? "" : "s"); -} - -/* RaiseNoneIterError */ - static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void) { - PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); -} - /* GetTopmostException */ #if CYTHON_USE_EXC_INFO_STACK static _PyErr_StackItem * @@ -6508,7 +5931,7 @@ static int __Pyx_CLineForTraceback(CYTHON_NCP_UNUSED PyThreadState *tstate, int } if (!use_cline) { c_line = 0; - PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); + (void) PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); } else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { c_line = 0; @@ -6602,33 +6025,40 @@ static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { #include "compile.h" #include "frameobject.h" #include "traceback.h" +#if PY_VERSION_HEX >= 0x030b00a6 + #ifndef Py_BUILD_CORE + #define Py_BUILD_CORE 1 + #endif + #include "internal/pycore_frame.h" +#endif static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( const char *funcname, int c_line, int py_line, const char *filename) { - PyCodeObject *py_code = 0; - PyObject *py_srcfile = 0; - PyObject *py_funcname = 0; + PyCodeObject *py_code = NULL; + PyObject *py_funcname = NULL; #if PY_MAJOR_VERSION < 3 + PyObject *py_srcfile = NULL; py_srcfile = PyString_FromString(filename); - #else - py_srcfile = PyUnicode_FromString(filename); - #endif if (!py_srcfile) goto bad; + #endif if (c_line) { #if PY_MAJOR_VERSION < 3 py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); + if (!py_funcname) goto bad; #else py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); + if (!py_funcname) goto bad; + funcname = PyUnicode_AsUTF8(py_funcname); + if (!funcname) goto bad; #endif } else { #if PY_MAJOR_VERSION < 3 py_funcname = PyString_FromString(funcname); - #else - py_funcname = PyUnicode_FromString(funcname); + if (!py_funcname) goto bad; #endif } - if (!py_funcname) goto bad; + #if PY_MAJOR_VERSION < 3 py_code = __Pyx_PyCode_New( 0, 0, @@ -6647,11 +6077,16 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( __pyx_empty_bytes /*PyObject *lnotab*/ ); Py_DECREF(py_srcfile); - Py_DECREF(py_funcname); + #else + py_code = PyCode_NewEmpty(filename, funcname, py_line); + #endif + Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline return py_code; bad: - Py_XDECREF(py_srcfile); Py_XDECREF(py_funcname); + #if PY_MAJOR_VERSION < 3 + Py_XDECREF(py_srcfile); + #endif return NULL; } static void __Pyx_AddTraceback(const char *funcname, int c_line, @@ -6659,14 +6094,24 @@ static void __Pyx_AddTraceback(const char *funcname, int c_line, PyCodeObject *py_code = 0; PyFrameObject *py_frame = 0; PyThreadState *tstate = __Pyx_PyThreadState_Current; + PyObject *ptype, *pvalue, *ptraceback; if (c_line) { c_line = __Pyx_CLineForTraceback(tstate, c_line); } py_code = __pyx_find_code_object(c_line ? -c_line : py_line); if (!py_code) { + __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); py_code = __Pyx_CreateCodeObjectForTraceback( funcname, c_line, py_line, filename); - if (!py_code) goto bad; + if (!py_code) { + /* If the code object creation fails, then we should clear the + fetched exception references and propagate the new exception */ + Py_XDECREF(ptype); + Py_XDECREF(pvalue); + Py_XDECREF(ptraceback); + goto bad; + } + __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); } py_frame = PyFrame_New( @@ -7229,82 +6674,6 @@ static void __Pyx_ReleaseBuffer(Py_buffer *view) { return (int) -1; } -/* CIntToPy */ - static CYTHON_INLINE PyObject* __Pyx_PyInt_From_int(int value) { -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const int neg_one = (int) -1, const_zero = (int) 0; -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(int) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(int) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(int) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(int), - little, !is_unsigned); - } -} - -/* CIntToPy */ - static CYTHON_INLINE PyObject* __Pyx_PyInt_From_enum__NPY_TYPES(enum NPY_TYPES value) { -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wconversion" -#endif - const enum NPY_TYPES neg_one = (enum NPY_TYPES) -1, const_zero = (enum NPY_TYPES) 0; -#ifdef __Pyx_HAS_GCC_DIAGNOSTIC -#pragma GCC diagnostic pop -#endif - const int is_unsigned = neg_one > const_zero; - if (is_unsigned) { - if (sizeof(enum NPY_TYPES) < sizeof(long)) { - return PyInt_FromLong((long) value); - } else if (sizeof(enum NPY_TYPES) <= sizeof(unsigned long)) { - return PyLong_FromUnsignedLong((unsigned long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(enum NPY_TYPES) <= sizeof(unsigned PY_LONG_LONG)) { - return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); -#endif - } - } else { - if (sizeof(enum NPY_TYPES) <= sizeof(long)) { - return PyInt_FromLong((long) value); -#ifdef HAVE_LONG_LONG - } else if (sizeof(enum NPY_TYPES) <= sizeof(PY_LONG_LONG)) { - return PyLong_FromLongLong((PY_LONG_LONG) value); -#endif - } - } - { - int one = 1; int little = (int)*(unsigned char *)&one; - unsigned char *bytes = (unsigned char *)&value; - return _PyLong_FromByteArray(bytes, sizeof(enum NPY_TYPES), - little, !is_unsigned); - } -} - /* CIntToPy */ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { #ifdef __Pyx_HAS_GCC_DIAGNOSTIC @@ -7641,11 +7010,33 @@ static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObj /* CheckBinaryVersion */ static int __Pyx_check_binary_version(void) { - char ctversion[4], rtversion[4]; - PyOS_snprintf(ctversion, 4, "%d.%d", PY_MAJOR_VERSION, PY_MINOR_VERSION); - PyOS_snprintf(rtversion, 4, "%s", Py_GetVersion()); - if (ctversion[0] != rtversion[0] || ctversion[2] != rtversion[2]) { + char ctversion[5]; + int same=1, i, found_dot; + const char* rt_from_call = Py_GetVersion(); + PyOS_snprintf(ctversion, 5, "%d.%d", PY_MAJOR_VERSION, PY_MINOR_VERSION); + found_dot = 0; + for (i = 0; i < 4; i++) { + if (!ctversion[i]) { + same = (rt_from_call[i] < '0' || rt_from_call[i] > '9'); + break; + } + if (rt_from_call[i] != ctversion[i]) { + same = 0; + break; + } + } + if (!same) { + char rtversion[5] = {'\0'}; char message[200]; + for (i=0; i<4; ++i) { + if (rt_from_call[i] == '.') { + if (found_dot) break; + found_dot = 1; + } else if (rt_from_call[i] < '0' || rt_from_call[i] > '9') { + break; + } + rtversion[i] = rt_from_call[i]; + } PyOS_snprintf(message, sizeof(message), "compiletime version %s of module '%.100s' " "does not match runtime version %s", @@ -7903,6 +7294,23 @@ static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { Py_DECREF(x); return ival; } +static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject* o) { + if (sizeof(Py_hash_t) == sizeof(Py_ssize_t)) { + return (Py_hash_t) __Pyx_PyIndex_AsSsize_t(o); +#if PY_MAJOR_VERSION < 3 + } else if (likely(PyInt_CheckExact(o))) { + return PyInt_AS_LONG(o); +#endif + } else { + Py_ssize_t ival; + PyObject *x; + x = PyNumber_Index(o); + if (!x) return -1; + ival = PyInt_AsLong(x); + Py_DECREF(x); + return ival; + } +} static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); } diff --git a/src/wfpt.pyx b/src/wfpt.pyx index b65d8235f..0a8345cd6 100644 --- a/src/wfpt.pyx +++ b/src/wfpt.pyx @@ -14,6 +14,7 @@ # GPLv3 import hddm +#from hddm.model_config import model_config import scipy.integrate as integrate from copy import copy @@ -152,6 +153,267 @@ def wiener_like_rlddm(np.ndarray[double, ndim=1] x, return sum_logp +def wiener_like_rlssm_nn(str model, + np.ndarray[double, ndim=1] x, + np.ndarray[long, ndim=1] response, + np.ndarray[double, ndim=1] feedback, + np.ndarray[long, ndim=1] split_by, + double q, + np.ndarray[double, ndim=1] params_ssm, + np.ndarray[double, ndim=1] params_rl, + np.ndarray[double, ndim=2] params_bnds, + double p_outlier=0, double w_outlier=0, network = None): + + cdef double v = params_ssm[0] + cdef double rl_alpha = params_rl[0] + #cdef double pos_alpha = params_rl[1] + + cdef Py_ssize_t size = x.shape[0] + cdef Py_ssize_t i, j, i_p + cdef Py_ssize_t s_size + cdef int s + cdef double log_p = 0 + cdef double sum_logp = 0 + cdef double wp_outlier = w_outlier * p_outlier + cdef double alfa + cdef double pos_alfa + cdef np.ndarray[double, ndim=1] qs = np.array([q, q]) + cdef np.ndarray[double, ndim=1] xs + cdef np.ndarray[double, ndim=1] feedbacks + cdef np.ndarray[long, ndim=1] responses + cdef np.ndarray[long, ndim=1] responses_qs + cdef np.ndarray[long, ndim=1] unique = np.unique(split_by) + #cdef Py_ssize_t n_params = len(model_config[model]['params_default']) #4 #params.shape[0] + cdef Py_ssize_t n_params = params_ssm.shape[0] #+ params_rl.shape[0] + cdef np.ndarray[float, ndim=2] data = np.zeros((size, n_params + 2), dtype = np.float32) + cdef float ll_min = -16.11809 + cdef int cumm_s_size = 0 + + #print("alpha test == ", alpha, pos_alfa) + #print("\n\n---> n_params ", n_params, params_ssm.shape[0], params_rl.shape[0]) + if not p_outlier_in_range(p_outlier): + return -np.inf + + # Check for boundary violations -- if true, return -np.inf + # if a < 0.3 or a > 2.5 or t < 0.001 or t > 2.0: + # return -np.inf + + for i_p in np.arange(1, len(params_ssm)): + lower_bnd = params_bnds[0][i_p] + upper_bnd = params_bnds[1][i_p] + + if params_ssm[i_p] < lower_bnd or params_ssm[i_p] > upper_bnd: + #print("**", lower_bnd, upper_bnd, params[i_p]) + return -np.inf + + # if params[1] < 0.3 or params[1] > 2.5 or params[3] < 0.001 or params[3] > 2.0: + # return -np.inf + + if len(params_rl) == 2: + pos_alfa = params_rl[1] + else: + pos_alfa = params_rl[0] + # if pos_alpha==100.00: + # pos_alfa = alpha + # else: + # pos_alfa = pos_alpha + + + # unique represent # of conditions + for j in range(unique.shape[0]): + s = unique[j] + # select trials for current condition, identified by the split_by-array + feedbacks = feedback[split_by == s] + responses = response[split_by == s] + xs = x[split_by == s] + s_size = xs.shape[0] + qs[0] = q + qs[1] = q + + responses_qs = responses + responses_qs[responses_qs == -1] = 0 + + # don't calculate pdf for first trial but still update q + if feedbacks[0] > qs[responses_qs[0]]: + alfa = (2.718281828459**pos_alfa) / (1 + 2.718281828459**pos_alfa) + else: + alfa = (2.718281828459**rl_alpha) / (1 + 2.718281828459**rl_alpha) + # alfa = alpha + + + # qs[1] is upper bound, qs[0] is lower bound. feedbacks is reward + # received on current trial. + qs[responses_qs[0]] = qs[responses_qs[0]] + \ + alfa * (feedbacks[0] - qs[responses_qs[0]]) + + #data[0, 0:4] = np.array([0.5, a, z, t]) + data[0, 0] = 0.0 + # loop through all trials in current condition + for i in range(1, s_size): + # p = full_pdf(xs[i], ((qs[1] - qs[0]) * v), sv, a, z, + # sz, t, st, err, n_st, n_sz, use_adaptive, simps_err) + # ["v", "a", "z", "t"] [rt. response] + #v = (qs[0] - qs[1]) * 1 #scaling + #data[i, 0:4] = np.array([v, a, z, t]) + data[cumm_s_size + i, 0] = (qs[1] - qs[0]) * v + # Check for boundary violations -- if true, return -np.inf + if data[cumm_s_size + i, 0] < params_bnds[0][0] or data[cumm_s_size + i, 0] > params_bnds[1][0]: + return -np.inf + + # get learning rate for current trial. if pos_alpha is not in + # include it will be same as alpha so can still use this + # calculation: + if feedbacks[i] > qs[responses_qs[i]]: + alfa = (2.718281828459**pos_alfa) / (1 + 2.718281828459**pos_alfa) + else: + alfa = (2.718281828459**rl_alpha) / (1 + 2.718281828459**rl_alpha) + + # qs[1] is upper bound, qs[0] is lower bound. feedbacks is reward + # received on current trial. + qs[responses_qs[i]] = qs[responses_qs[i]] + \ + alfa * (feedbacks[i] - qs[responses_qs[i]]) + cumm_s_size += s_size + + #print("here after loop") + #print("-- ", len(data), len(data[0, :]), len(data[1, :]), len(model_config[model]['params']), n_params) + data[:, 1:n_params] = np.tile(params_ssm[1:], (size, 1)).astype(np.float32) + #print(">> ", data.shape, x.shape, response.shape, np.stack([x, response], axis = 1).shape) + data[:, n_params:] = np.stack([x, response], axis = 1) + + #print("create data arr") + #sum_logp = np.sum(np.core.umath.maximum(network.predict_on_batch(data), ll_min)) + #print("sum_logp: ", sum_logp) + + # Call to network: + if p_outlier == 0: + sum_logp = np.sum(np.core.umath.maximum(network.predict_on_batch(data), ll_min)) + else: + sum_logp = np.sum(np.log(np.exp(np.core.umath.maximum(network.predict_on_batch(data), ll_min)) * (1.0 - p_outlier) + (w_outlier * p_outlier))) + + return sum_logp + +''' +def wiener_like_rlssm_nn_OLD(str model, + np.ndarray[double, ndim=1] x, + np.ndarray[long, ndim=1] response, + np.ndarray[double, ndim=1] feedback, + np.ndarray[long, ndim=1] split_by, + double q, + np.ndarray[double, ndim=1] params, + double alpha, + double pos_alpha, + double p_outlier=0, double w_outlier=0, network = None): + + cdef double v = params[0] + + cdef Py_ssize_t size = x.shape[0] + cdef Py_ssize_t i, j, i_p + cdef Py_ssize_t s_size + cdef int s + cdef double log_p = 0 + cdef double sum_logp = 0 + cdef double wp_outlier = w_outlier * p_outlier + cdef double alfa + cdef double pos_alfa + cdef np.ndarray[double, ndim=1] qs = np.array([q, q]) + cdef np.ndarray[double, ndim=1] xs + cdef np.ndarray[double, ndim=1] feedbacks + cdef np.ndarray[long, ndim=1] responses + cdef np.ndarray[long, ndim=1] responses_qs + cdef np.ndarray[long, ndim=1] unique = np.unique(split_by) + cdef Py_ssize_t n_params = len(model_config[model]['params_default']) #4 #params.shape[0] + cdef np.ndarray[float, ndim=2] data = np.zeros((size, n_params + 2), dtype = np.float32) + cdef float ll_min = -16.11809 + cdef int cumm_s_size = 0 + + if not p_outlier_in_range(p_outlier): + return -np.inf + + # Check for boundary violations -- if true, return -np.inf + # if a < 0.3 or a > 2.5 or t < 0.001 or t > 2.0: + # return -np.inf + for i_p in np.arange(1, len(params)): + lower_bnd = model_config[model]['param_bounds'][0][i_p] + upper_bnd = model_config[model]['param_bounds'][1][i_p] + + if params[i_p] < lower_bnd or params[i_p] > upper_bnd: + #print("**", lower_bnd, upper_bnd, params[i_p]) + return -np.inf + + # if params[1] < 0.3 or params[1] > 2.5 or params[3] < 0.001 or params[3] > 2.0: + # return -np.inf + + if pos_alpha==100.00: + pos_alfa = alpha + else: + pos_alfa = pos_alpha + + + # unique represent # of conditions + for j in range(unique.shape[0]): + s = unique[j] + # select trials for current condition, identified by the split_by-array + feedbacks = feedback[split_by == s] + responses = response[split_by == s] + xs = x[split_by == s] + s_size = xs.shape[0] + qs[0] = q + qs[1] = q + + responses_qs = responses + responses_qs[responses_qs == -1] = 0 + + # don't calculate pdf for first trial but still update q + if feedbacks[0] > qs[responses_qs[0]]: + alfa = (2.718281828459**pos_alfa) / (1 + 2.718281828459**pos_alfa) + else: + alfa = (2.718281828459**alpha) / (1 + 2.718281828459**alpha) + + # qs[1] is upper bound, qs[0] is lower bound. feedbacks is reward + # received on current trial. + qs[responses_qs[0]] = qs[responses_qs[0]] + \ + alfa * (feedbacks[0] - qs[responses_qs[0]]) + + #data[0, 0:4] = np.array([0.5, a, z, t]) + data[0, 0] = 0.0 + # loop through all trials in current condition + for i in range(1, s_size): + # p = full_pdf(xs[i], ((qs[1] - qs[0]) * v), sv, a, z, + # sz, t, st, err, n_st, n_sz, use_adaptive, simps_err) + # ["v", "a", "z", "t"] [rt. response] + #v = (qs[0] - qs[1]) * 1 #scaling + #data[i, 0:4] = np.array([v, a, z, t]) + data[cumm_s_size + i, 0] = (qs[1] - qs[0]) * v + # Check for boundary violations -- if true, return -np.inf + if data[cumm_s_size + i, 0] < model_config[model]['param_bounds'][0][0] or data[cumm_s_size + i, 0] > model_config[model]['param_bounds'][1][0]: + return -np.inf + + # get learning rate for current trial. if pos_alpha is not in + # include it will be same as alpha so can still use this + # calculation: + if feedbacks[i] > qs[responses_qs[i]]: + alfa = (2.718281828459**pos_alfa) / (1 + 2.718281828459**pos_alfa) + else: + alfa = (2.718281828459**alpha) / (1 + 2.718281828459**alpha) + + # qs[1] is upper bound, qs[0] is lower bound. feedbacks is reward + # received on current trial. + qs[responses_qs[i]] = qs[responses_qs[i]] + \ + alfa * (feedbacks[i] - qs[responses_qs[i]]) + cumm_s_size += s_size + + #print("here after loop") + #print("-- ", len(data), len(data[0, :]), len(data[1, :]), len(model_config[model]['params']), n_params) + data[:, 1:n_params] = np.tile(params[1:], (size, 1)).astype(np.float32) + #print(">> ", data.shape, x.shape, response.shape, np.stack([x, response], axis = 1).shape) + data[:, n_params:] = np.stack([x, response], axis = 1) + + #print("create data arr") + sum_logp = np.sum(np.core.umath.maximum(network.predict_on_batch(data), ll_min)) + #print("sum_logp: ", sum_logp) + return sum_logp +''' + def wiener_like_rl(np.ndarray[long, ndim=1] response, np.ndarray[double, ndim=1] feedback, np.ndarray[long, ndim=1] split_by,